pax_global_header00006660000000000000000000000064146162527320014522gustar00rootroot0000000000000052 comment=f6ce1e4f4eed57bda68e6c3c86b304dbb2f8c133 nicotine-plus-3.3.4/000077500000000000000000000000001461625273200143225ustar00rootroot00000000000000nicotine-plus-3.3.4/.gitattributes000066400000000000000000000002001461625273200172050ustar00rootroot00000000000000# Classify man pages as documentation *.1 linguist-documentation # Include UI files in language stats *.ui linguist-detectable nicotine-plus-3.3.4/.github/000077500000000000000000000000001461625273200156625ustar00rootroot00000000000000nicotine-plus-3.3.4/.github/ISSUE_TEMPLATE/000077500000000000000000000000001461625273200200455ustar00rootroot00000000000000nicotine-plus-3.3.4/.github/ISSUE_TEMPLATE/1-bug-report.md000066400000000000000000000004631461625273200226160ustar00rootroot00000000000000--- name: Bug report about: Something is broken or doesn't work as expected labels: bug --- Nicotine+ version: Operating System/Distribution: ### Describe the bug ### Expected behavior ### Steps to reproduce the bug ### Additional context Screenshots, logs, stacktraces or relevant information. nicotine-plus-3.3.4/.github/ISSUE_TEMPLATE/2-feature-request.md000066400000000000000000000004321461625273200236460ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for this project labels: enhancement --- ### Describe the solution you'd like A clear and concise description of what you want to happen. ### Additional context Add any other context or screenshots about the feature request here. nicotine-plus-3.3.4/.github/ISSUE_TEMPLATE/config.yml000066400000000000000000000002601461625273200220330ustar00rootroot00000000000000blank_issues_enabled: false contact_links: - name: Other url: https://github.com/nicotine-plus/nicotine-plus/discussions about: Question, discussion or anything else nicotine-plus-3.3.4/.github/workflows/000077500000000000000000000000001461625273200177175ustar00rootroot00000000000000nicotine-plus-3.3.4/.github/workflows/packaging.yml000066400000000000000000000106541461625273200223740ustar00rootroot00000000000000name: Packaging on: [push, pull_request] jobs: debian: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Install dependencies run: | sudo apt update sudo apt install python3-build sudo apt build-dep . - name: Build Debian package run: | python3 -m build --sdist --no-isolation mk-origtargz dist/nicotine-plus-*.tar.gz debuild -sa -us -uc - name: Prepare artifacts run: | mkdir build/package/ cp -Lr ../nicotine_* build/package/ - name: Archive artifacts uses: actions/upload-artifact@v4 with: name: debian-package path: build/package/ flatpak: runs-on: ubuntu-latest strategy: matrix: arch: [x86_64] container: image: bilelmoussaoui/flatpak-github-actions:gnome-46 options: --privileged steps: - name: Checkout code uses: actions/checkout@v4 - name: Build Flatpak package uses: flatpak/flatpak-github-actions/flatpak-builder@v6 with: bundle: flatpak-package.flatpak manifest-path: packaging/flatpak/org.nicotine_plus.Nicotine.json cache-key: flatpak-builder-${{ github.sha }} snap: runs-on: ubuntu-latest strategy: matrix: arch: [x86_64] steps: - name: Checkout code uses: actions/checkout@v4 - name: Build Snap package uses: snapcore/action-build@v1 id: build-snap - name: Install Snap package run: sudo snap install --dangerous ${{ steps.build-snap.outputs.snap }} - name: Archive artifacts uses: actions/upload-artifact@v4 with: name: snap-${{ matrix.arch }}-package path: ${{ steps.build-snap.outputs.snap }} windows: runs-on: windows-latest strategy: matrix: arch: [x86_64] defaults: run: shell: msys2 {0} env: NICOTINE_GTK_VERSION: 4 NICOTINE_LIBADWAITA: 1 steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup msys2 uses: msys2/setup-msys2@v2 with: msystem: MINGW64 release: false update: true install: >- mingw-w64-${{ matrix.arch }}-ca-certificates mingw-w64-${{ matrix.arch }}-gettext-tools mingw-w64-${{ matrix.arch }}-gtk${{ env.NICOTINE_GTK_VERSION }} mingw-w64-${{ matrix.arch }}-libadwaita mingw-w64-${{ matrix.arch }}-python-build mingw-w64-${{ matrix.arch }}-python-cx-freeze mingw-w64-${{ matrix.arch }}-python-pycodestyle mingw-w64-${{ matrix.arch }}-python-pylint mingw-w64-${{ matrix.arch }}-python-gobject - name: Install additional dependencies run: python3 packaging/windows/dependencies.py - name: Freeze application run: python3 packaging/windows/setup.py bdist_msi - name: Archive installer artifacts uses: actions/upload-artifact@v4 with: name: windows-${{ matrix.arch }}-installer path: packaging/windows/build/*.msi - name: Archive package artifacts uses: actions/upload-artifact@v4 with: name: windows-${{ matrix.arch }}-package path: packaging/windows/build/package macos: strategy: matrix: include: - arch: x86_64 platform: macos-12 - arch: arm64 platform: macos-14 runs-on: ${{ matrix.platform }} env: NICOTINE_GTK_VERSION: 4 NICOTINE_LIBADWAITA: 1 steps: - name: Checkout code uses: actions/checkout@v4 - name: Set system language run: defaults write NSGlobalDomain AppleLanguages "(en-US)" - name: Create Python virtual environment run: | brew uninstall --ignore-dependencies python@3.12 brew install --overwrite python@3.12 python3.12 -m venv venv - name: Install build dependencies run: | brew update venv/bin/python3 packaging/macos/dependencies.py - name: Freeze application run: venv/bin/python3 packaging/macos/setup.py bdist_dmg - name: Archive installer artifacts uses: actions/upload-artifact@v4 with: name: macos-${{ matrix.arch }}-installer path: packaging/macos/build/*.dmg nicotine-plus-3.3.4/.github/workflows/tests.yml000066400000000000000000000110321461625273200216010ustar00rootroot00000000000000name: Tests on: [push, pull_request] jobs: python: strategy: fail-fast: false matrix: python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.6', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10'] runs-on: ubuntu-20.04 steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} cache: 'pip' cache-dependency-path: setup.py - name: Install dependencies run: | sudo apt update sudo apt install gettext gir1.2-gtk-3.0 libgirepository1.0-dev libgtk-3-bin python -m pip install build .[tests] - name: PEP 8 style checks run: python -m pycodestyle - name: Linting run: python -m pylint --recursive=y . - name: Integration and unit tests run: python -m unittest -v - name: Build run: python -m build ubuntu-debian: strategy: fail-fast: false matrix: container: ['debian:bookworm', 'ubuntu:jammy', 'ubuntu:focal', 'ubuntu:bionic', 'ubuntu:noble'] runs-on: ubuntu-latest container: ${{ matrix.container }} steps: - name: Checkout code uses: actions/checkout@v3 - name: Install autopkgtest dependencies run: | apt update apt -y install autopkgtest - name: Run autopkgtest run: autopkgtest . -- null fedora: strategy: matrix: container: ['fedora:rawhide'] gtk: [3, 4] runs-on: ubuntu-latest container: ${{ matrix.container }} steps: - name: Checkout code uses: actions/checkout@v4 - name: Install dependencies run: dnf -y install gettext gtk${{ matrix.gtk }} pylint python3 python3-build python3-gobject python3-pycodestyle util-linux - name: PEP 8 style checks run: python3 -m pycodestyle - name: Linting run: python3 -m pylint --recursive=y . - name: Integration and unit tests run: python3 -m unittest -v - name: Build run: python3 -m build windows: runs-on: windows-latest strategy: matrix: arch: [x86_64] defaults: run: shell: msys2 {0} env: NICOTINE_GTK_VERSION: 4 NICOTINE_LIBADWAITA: 1 steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup msys2 uses: msys2/setup-msys2@v2 with: msystem: MINGW64 release: false update: true install: >- mingw-w64-${{ matrix.arch }}-ca-certificates mingw-w64-${{ matrix.arch }}-gettext-tools mingw-w64-${{ matrix.arch }}-gtk${{ env.NICOTINE_GTK_VERSION }} mingw-w64-${{ matrix.arch }}-libadwaita mingw-w64-${{ matrix.arch }}-python-build mingw-w64-${{ matrix.arch }}-python-cx-freeze mingw-w64-${{ matrix.arch }}-python-pycodestyle mingw-w64-${{ matrix.arch }}-python-pylint mingw-w64-${{ matrix.arch }}-python-gobject - name: Install additional dependencies run: python3 packaging/windows/dependencies.py - name: PEP 8 style checks run: python3 -m pycodestyle - name: Linting run: python3 -m pylint --recursive=y . - name: Integration and unit tests run: python3 -m unittest -v - name: Build run: python3 -m build macos: strategy: matrix: include: - arch: x86_64 platform: macos-12 - arch: arm64 platform: macos-14 runs-on: ${{ matrix.platform }} env: NICOTINE_GTK_VERSION: 4 NICOTINE_LIBADWAITA: 1 steps: - name: Checkout code uses: actions/checkout@v4 - name: Set system language run: defaults write NSGlobalDomain AppleLanguages "(en-US)" - name: Create Python virtual environment run: | brew uninstall --ignore-dependencies python@3.12 brew install --overwrite python@3.12 python3.12 -m venv venv - name: Install dependencies run: | brew update venv/bin/python3 packaging/macos/dependencies.py - name: PEP 8 style checks run: venv/bin/python3 -m pycodestyle - name: Linting run: venv/bin/python3 -m pylint --recursive=y . - name: Integration and unit tests run: venv/bin/python3 -m unittest -v - name: Build run: venv/bin/python3 -m build nicotine-plus-3.3.4/.gitignore000066400000000000000000000011771461625273200163200ustar00rootroot00000000000000# Auto-generated files *.desktop *.appdata.xml # Python byte code files *.pyc # Pot backup files *.po~ # Translation Machine Object files *.mo pynicotine/locale/ # Temporary test files pynicotine/tests/**/*temp_config* pynicotine/tests/**/*.db pynicotine/tests/**/*.dbn pynicotine/tests/**/*.json pynicotine/tests/**/*.old pynicotine/tests/**/*.wav # Ignore venv files venv/* .env/ # Ignore packaging directories and files *.json~ install.txt MANIFEST .flatpak-builder/ build/ dist/ debian/files nicotine_plus.egg-info/ packaging/flatpak/build-dir/ packaging/flatpak/.flatpak-builder/ packaging/macos/build/ packaging/windows/build/ nicotine-plus-3.3.4/404.md000066400000000000000000000003631461625273200151550ustar00rootroot00000000000000--- permalink: /404.html --- # Page Not Found This page doesn't exist. Perhaps you want to - [Download Nicotine+](https://nicotine-plus.org/doc/DOWNLOADS) - [Get involved](https://nicotine-plus.org/#get-involved) in the Nicotine+ project nicotine-plus-3.3.4/AUTHORS.md000066400000000000000000000072261461625273200160000ustar00rootroot00000000000000# Nicotine+ Team ## Active ### Mat (mathiascode) - Maintainer (2020–present) - Developer ### eLvErDe - Maintainer (2013–2016) - Domain name administrator - Source code migration from SVN to GitHub - Developer ### Han Boetes - Tester - Documentation - Bug hunting - Translation management ### alekksander - Tester - Redesign of some graphics ### slook - Tester - Accessibility improvements ## Inactive ### daelstorm - Maintainer (2004–2009) - Developer ### quinox - Maintainer (2009–2012) - Developer ### Michael Labouebe (gfarmerfr) - Maintainer (2016–2017) - Developer ### Kip Warner - Maintainer (2018–2020) - Developer - Debianization ### gallows (aka 'burp O') - Developer - Packager - Submitted Slack.Build file ### hedonist (formerly known as alexbk) - OS X Nicotine.app maintainer / developer - Author of PySoulSeek, used for Nicotine core ### lee8oi - Bash commander - New and updated /alias ### INMCM - Nicotine+ topic maintainer on [ubuntuforums.org](https://ubuntuforums.org/showthread.php?t=196835) ### suser-guru - Suse Linux packager - Nicotine+ RPM's for Suse 9.1, 9.2, 9.3, 10.0, 10.1 ### osiris - Handy-man - Documentation - Some GNU/Linux packaging - Nicotine+ on Win32 - Author of Nicotine+ guide ### Mutnick - Created Nicotine+ GitHub organization - Developer ### Lene Preuss - Python 3 migration - Unit and DEP-8 continuous integration testing --- # Nicotine Team ### Ingmar K. Steen (Hyriand) - Maintainer (2003–2004) ### daelstorm - Beta tester - Designer of most of the settings - Made the Nicotine icons ### SmackleFunky - Beta tester ### Wretched - Beta tester - Bringer of great ideas ### (va)\*10^3 - Beta tester - Designer of Nicotine homepage and artwork (logos) ### sierracat - MacOSX tester - soulseeX developer ### Gustavo J. A. M. Carneiro - Created the exception dialog ### SeeSchloss - Developer - Created 1.0.8 Win32 installer - Created [Soulfind](https://github.com/seeschloss/soulfind), open source Soulseek server written in D ### vasi - Mac developer - Packaged Nicotine on OSX PowerPC --- # PySoulSeek Contributors ### Alexander Kanavin - Maintainer (2001–2003) ### Nir Arbel - Helped with many protocol questions, and of course he designed and implemented the whole system ### Brett W. Thompson (Zip) - His client code was used to get an initial impression of how the system works - Supplied the patch for logging chat conversations ### Josselin Mouette - Official Debian package maintainer ### blueboy - Former unofficial Debian package maintainer ### Christian Swinehart - Fink package maintainer ### Ingmar K. Steen (Hyriand) - Patches for upload bandwidth management, banning, various UI improvements and more ### Geert Kloosterman - A script for importing Windows Soulseek configuration ### Joe Halliwell - Submitted a patch for optionally discarding search results after closing a search tab ### Alexey Vyskubov - Code cleanups ### Jason Green (SmackleFunky) - Ignore list and auto-join checkbox, wishlists --- # Third-Party Attributions - tinytag licensed under the MIT License. Copyright (c) 2014–2023 Tom Wallroth Copyright (c) 2021-2023 Mat (mathiascode) [https://github.com/devsnd/tinytag](https://github.com/devsnd/tinytag) - Country flags licensed under the MIT License. Copyright (c) 2016–2021 Bowtie AB [https://github.com/madebybowtie/FlagKit](https://github.com/madebybowtie/FlagKit) - Country data licensed under the CC-BY-SA-4.0 License. Copyright (c) 2001–2024 Hexasoft Development Sdn. Bhd. Nicotine+ uses the IP2Location LITE database for [IP geolocation](https://lite.ip2location.com). nicotine-plus-3.3.4/CNAME000066400000000000000000000000211461625273200150610ustar00rootroot00000000000000nicotine-plus.orgnicotine-plus-3.3.4/COPYING000066400000000000000000001045131461625273200153610ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 3 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, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . nicotine-plus-3.3.4/MANIFEST.in000066400000000000000000000010411461625273200160540ustar00rootroot00000000000000# This file is responsible for including all necessary files in the source distribution # https://packaging.python.org/en/latest/guides/using-manifest-in/ include *.md recursive-include data *.in recursive-include data *.py recursive-include doc * recursive-include po * recursive-include pynicotine * exclude 404.md recursive-exclude * *.appdata.xml recursive-exclude * *.dbn recursive-exclude * *.desktop recursive-exclude * *.mo recursive-exclude * *.old recursive-exclude * *.pyc recursive-exclude * *.wav recursive-exclude * temp_config* nicotine-plus-3.3.4/NEWS.md000066400000000000000000006140521461625273200154300ustar00rootroot00000000000000# Release Notes The current stable version of Nicotine+ is available at [DOWNLOADS.md](doc/DOWNLOADS.md). You can run the latest unstable build of Nicotine+ to test recent changes and bug fixes, see [TESTING.md](doc/TESTING.md). ## Version 3.3.4 (May 6, 2024) ### Corrections * Fixed "Format codes" link not opening in the preferred browser * Windows: Fixed regression in scrolling performance ### Issues closed on GitHub * Scrolling performance suddenly abysmal (again) ([#3000](https://github.com/nicotine-plus/nicotine-plus/issues/3000)) * Can't access "Format Codes" link in settings through left mouse click on 3.3.3 ([#3001](https://github.com/nicotine-plus/nicotine-plus/issues/3001)) * Sometimes, Nicotine+ (3.3.3) window doesn't open on top when other windows already opened full screen on the desktop. ([#3002](https://github.com/nicotine-plus/nicotine-plus/issues/3002)) ## Version 3.3.3 (May 5, 2024) ### Changes * Performance improvements when searching for common files * Improved search result matching for non-Latin languages * Minor accessibility improvements * Updated translations * GTK 3: Restored X11 tray icon implementation for compatibility with older systems ### Corrections * Fixed a rare crash when changing grouping mode in transfer tabs * Fixed a rare crash when closing Browse Shares tab * Fixed a rare crash when initializing an upload * Fixed a rare crash when double-clicking a download * Fixed an issue where passwords were not remembered after changing them * Fixed an issue where number of shared files was only updated on startup (regression in 3.3.2) * Fixed an issue where transfers displayed incorrect "User logged off" status in some cases * Fixed an issue where chat history entry completion no longer worked * Fixed an issue where UPnP did not work on MikroTik routers * Fixed missing button labels in certain dialogs * Fixed some small memory leaks * Avoid selecting new transfers while tab is active * Remember selected folder when refreshing local shares * Windows: Fixed Alt+1-9 tab shortcuts interfering with Alt codes * Windows: Fixed window not minimizing when clicking task bar icon * Windows: Fixed title bar buttons requiring two clicks to activate * Snap: Fixed an issue where the file chooser displayed the wrong initial folder * Snap: Fixed an issue where folders shared from external drives were unavailable after remounting * Termux: Fixed an issue where connecting to the server failed ### Issues closed on GitHub * Bad user experience with Windows-like buttons on Nicotine 3.3.0 ([#2880](https://github.com/nicotine-plus/nicotine-plus/issues/2880)) * Auto-selection of new transfers ([#2901](https://github.com/nicotine-plus/nicotine-plus/issues/2901)) * Nicotine+ 3.3.2 displays user as logged off while the transfers are active ([#2909](https://github.com/nicotine-plus/nicotine-plus/issues/2909)) * No icon in taskbar when running in background ([#2928](https://github.com/nicotine-plus/nicotine-plus/issues/2928)) * Set 'Finished' status instead of 'Filtered' for finished transfers in case the directory had files matching download filtering pattern ([#2932](https://github.com/nicotine-plus/nicotine-plus/issues/2932)) * Refresh Files button not working ([#2937](https://github.com/nicotine-plus/nicotine-plus/issues/2937)) * Nictotine Hard fail trying to get pointer ([#2943](https://github.com/nicotine-plus/nicotine-plus/issues/2943)) * 3.3.2 - System Tray Icons Don't Appear ([#2944](https://github.com/nicotine-plus/nicotine-plus/issues/2944)) * Sudden crash ([#2950](https://github.com/nicotine-plus/nicotine-plus/issues/2950)) * bug on checking transfers ([#2953](https://github.com/nicotine-plus/nicotine-plus/issues/2953)) * UPnP: Failed to forward external port 2234: HTTP Error 500: Internal Server Error ([#2955](https://github.com/nicotine-plus/nicotine-plus/issues/2955)) * 0 Shares on Profile ([#2956](https://github.com/nicotine-plus/nicotine-plus/issues/2956)) * Crash when double clicking download row ([#2961](https://github.com/nicotine-plus/nicotine-plus/issues/2961)) * Nicotine+ 3.3.2 permission denied to port 2234 on Fedora 39 ([#2968](https://github.com/nicotine-plus/nicotine-plus/issues/2968)) * This option is doesn't work on Nicotine+ 3.3.3 rc2 ([#2969](https://github.com/nicotine-plus/nicotine-plus/issues/2969)) * Num lock state is inverted ([#2977](https://github.com/nicotine-plus/nicotine-plus/issues/2977)) * Random crash ([#2982](https://github.com/nicotine-plus/nicotine-plus/issues/2982)) * Found another bug ([#2988](https://github.com/nicotine-plus/nicotine-plus/issues/2988)) * Arbitrary Critical Error ([#2996](https://github.com/nicotine-plus/nicotine-plus/issues/2996)) ## Version 3.3.2 (February 25, 2024) ### Corrections * Fixed a crash when adding transfers while in ungrouped mode * Fixed an issue where dialog message labels were not read by screen readers * Snap: Fixed screen reader detection for enabling GTK 3 ## Version 3.3.1 (February 24, 2024) ### Changes * Added function to manually search a wishlist item * Exclude the Synology "#snapshot" and "#recycle" folders from Shares (thank you @toineenzo) * Improved performance when loading transfers on startup * Implemented server code 160 (Excluded Search Phrases) * macOS: update visual style of window controls to resemble native apps ### Corrections * Important: Fixed critical error crash at startup on rejected login (regression in 3.3.0) * Avoid a rare crash (log a FIXME error) when clearing a transfer not present in list * Fixed a crash when using up/down arrow keys in empty combo box widget * Fixed an issue that prevented the Now Playing Sender plugin from working * Fixed an issue that prevented the /away command from working * Fixed an issue connecting to certain distributed peers * Fixed broken scrolling in font chooser on GTK 4 * Fixed an issue where private chat messages did not load in rare cases * Fixed an issue where retrying an upload did not start it immediately * Fixed an issue where the chat room tab order was incorrect after restarting * Removed a keyboard focus trap during tab navigation * Linux: Fixed an issue where binding to a virtual private network interface did not work * Windows: Fixed an issue with flickering/invisible window when maximized with auto-hide taskbar * Windows: Fixed an issue where the file manager/audio player window was hidden * Windows: Fixed an issue downloading files containing control characters in the path * Windows: Fixed an issue where reverse file paths did not work for older downloads * macOS: Fixed an issue where Nicotine+ did not launch on Monterey systems (thank you @thep50) * macOS: Fixed an issue where window was not maximized on startup * macOS: Added missing keyboard shortcuts for text entries/views ### Issues closed on GitHub * Nicotine+ crashes on startup - BufferError ([#2850](https://github.com/nicotine-plus/nicotine-plus/issues/2850)) * Failure to launch 3.3.0 on Mac ([#2852](https://github.com/nicotine-plus/nicotine-plus/issues/2852)) * Implement server code 160 ([#2854](https://github.com/nicotine-plus/nicotine-plus/issues/2854)) * Unable to resize window in Mac Silicon app ([#2857](https://github.com/nicotine-plus/nicotine-plus/issues/2857)) * Nicotine 3.3.0 Flickering when changing tabs ([#2859](https://github.com/nicotine-plus/nicotine-plus/issues/2859)) * "Open in File Manager" not working on Windows ([#2860](https://github.com/nicotine-plus/nicotine-plus/issues/2860)) * 3.3.0: does not connect to server via tun0 (vpn) ([#2861](https://github.com/nicotine-plus/nicotine-plus/issues/2861)) * Issue selecting text on macOS Monterey ([#2862](https://github.com/nicotine-plus/nicotine-plus/issues/2862)) * Retry on uploads no longer works ([#2864](https://github.com/nicotine-plus/nicotine-plus/issues/2864)) * Interest recommendations ([#2866](https://github.com/nicotine-plus/nicotine-plus/issues/2866)) * Crash after clearing download folder with 1 file in it ([#2869](https://github.com/nicotine-plus/nicotine-plus/issues/2869)) * Bug Crash ([#2872](https://github.com/nicotine-plus/nicotine-plus/issues/2872)) * Cannot save file error ([#2888](https://github.com/nicotine-plus/nicotine-plus/issues/2888)) ## Version 3.3.0 (February 1, 2024) ### Changes * Enabled GTK 4 support by default for new visual style on Windows, macOS and GNOME * Added "Chat History" popover to view all previous private chats with users * Added generic file type search result filters (audio \| image \| video \| text \| archive \| executable) * Added audio duration search result filter (HH:MM:SS \| MM:SS \| Seconds) * Added support for phrase searching using quotation marks * Added path bar when browsing user shares * Added option to make specific shares available to trusted buddies only * Added option to wait for active uploads to finish before quitting Nicotine+ * Added function to send a private message to all online buddies and users in upload queue * Added a warning dialog if shared folders are unavailable before rescanning * Added dropdown menu listing all open tabs * Added function to reopen closed tab with Ctrl+Shift+T shortcut * Added option to show exact file sizes in bytes * Added popovers in the status bar for selecting download and upload speed limits * Added option to configure text view font * Added function to clear all deleted downloads that no longer exist on disk * Added function to re-enter search when right-clicking search tabs * Added preference to choose user interface language * Added wishlist results found notification * Added option to set custom handlers for opening downloaded files * Added file type icons to file lists * Added button to view personal profile * Added buttons in Preferences to open download folder locations in file manager * Added total size of all selected files to window title in the "File Properties" dialog * Added new command system for plugins (type /help for a list of available commands) * Added keyboard input with readline command editing and history to headless CLI * Added support for NAT-PMP port forwarding * Windows: Added option to bind Nicotine+ to a specific network interface * macOS: Added native support for Apple Silicon * Changed "Bitrate" column to "Quality" for displaying sample rate of uncompressed files * Allow search result filters to be restored after clicking the "Clear Filters" button * Restore initial list order when pressing the column header of a sorted column * Remember last sorted column after restarting * Filter out irrelevant folders when searching a user's shares * Allow selecting multiple folders in a user's shares * Insert new private chat tabs before older ones * Resuming a single filtered download allows for bypassing download filter * Transfer log files are now split into per-session download and upload logs * Retry downloads limited due to maximum queue/file sizes more frequently * Performance improvements when scanning and accessing shares * Banned users can no longer read self descriptions on user profiles * Moved buddy list position option from view menu to Preferences dialog * Removed View menu, since all options in this menu can be toggled by other means * Removed "Auto-join" check box, joined chat rooms are now remembered between sessions * Removed command alias system in favor of plugin commands * Removed some redundant user interface options and unified some configuration preferences * Removed python3-gdbm dependency * Bumped minimum Python version requirement to 3.6 * Bumped minimum GTK 3 version requirement to 3.22.30 * Windows: Removed support for Windows 7, 8 and 8.1, as well as 32-bit systems * macOS: Removed support for macOS 10.15 and 11 * Completed Soulseek protocol implementation of distributed peers, bumped protocol version to 160.2 ### Corrections * Fixed a crash when downloading filenames containing special characters on some systems * Fixed a crash when clicking a slsk:// root folder URL without a trailing slash * Fixed an issue where enabling/disabling chat completions did not update them properly in some cases * Fixed an issue where the global room feed was not restored on startup * Fixed an issue where important tabs (e.g. chat highlights) were not always marked as such * Fixed an issue where search results were not sent in rare cases * Fixed an issue where sharing a lot of files could result in messages about not sharing * Fixed an issue where finished downloads were not always automatically cleared * Fixed an issue where recursively downloading a folder would include unwanted folders in some cases * Fixed an issue where recommendations with a negative rating did not appear * Improved performance when many queued transfers are added or retried * Implemented monotonic timers to ensure that transfers are unaffected by system clock adjustments * Check file modified times instead of folder when rescanning to ensure shares are properly updated * Stop loading a user's shares after closing the tab, to avoid wasting bandwidth * Leech Detector plugin no longer sends message to sharing users with incorrect file/folder counts * Immediately show new chat room tab with no delay * Show message in chat room tab if joining a private room is not successful * Automatically resize panes and certain columns when window size changes * Finding in tree view lists now searches data in all columns * Enabled caret navigation for chat view screen reading and improved chat entry focusing when paging up and down * Only open the listening port when connecting to the server * Several fixes related to inconsistent behavior when banning or ignoring users/IP addresses * Several fixes related to accessibility * Windows/macOS: Fixed chat emoji rendering * Windows: Stop using 'portable' term for standalone packages * macOS: Fixed laggy list scrolling and window resizing ### Issues closed on GitHub * Sort by speed ([#373](https://github.com/nicotine-plus/nicotine-plus/issues/373)) * Bind Nicotine+ to specified network adapter ([#871](https://github.com/nicotine-plus/nicotine-plus/issues/871)) * Finish running transfers and quit ([#885](https://github.com/nicotine-plus/nicotine-plus/issues/885)) * Implement search request delivery to child peers ([#994](https://github.com/nicotine-plus/nicotine-plus/issues/994)) * Improvement ideas for the search result filters ([#1400](https://github.com/nicotine-plus/nicotine-plus/issues/1400)) * Force download a filtered file ([#1419](https://github.com/nicotine-plus/nicotine-plus/issues/1419)) * Reopen closed tabs ([#1424](https://github.com/nicotine-plus/nicotine-plus/issues/1424)) * Anyone willing to maintain an official Nicotine+ Debian package? ([#1448](https://github.com/nicotine-plus/nicotine-plus/issues/1448)) * M1 Mac support? ([#1475](https://github.com/nicotine-plus/nicotine-plus/issues/1475)) * Show list of logged private chat users ([#1509](https://github.com/nicotine-plus/nicotine-plus/issues/1509)) * List of GTK 4 regressions ([#1554](https://github.com/nicotine-plus/nicotine-plus/issues/1554)) * Crashes when sending emoji ([#1556](https://github.com/nicotine-plus/nicotine-plus/issues/1556)) * Leech Detector is bugging people who have folders shared already. ([#1565](https://github.com/nicotine-plus/nicotine-plus/issues/1565)) * Get date in transfer total up/dl statistic ([#1598](https://github.com/nicotine-plus/nicotine-plus/issues/1598)) * Determine the size etc of a folder / selected files ([#1628](https://github.com/nicotine-plus/nicotine-plus/issues/1628)) * Warning if no files are shared ([#1698](https://github.com/nicotine-plus/nicotine-plus/issues/1698)) * Filter for song length ([#1727](https://github.com/nicotine-plus/nicotine-plus/issues/1727)) * Split log file on certain file size threshold? ([#1758](https://github.com/nicotine-plus/nicotine-plus/issues/1758)) * An option to silently run command when a download is finished ([#1847](https://github.com/nicotine-plus/nicotine-plus/issues/1847)) * Mass PM ([#1860](https://github.com/nicotine-plus/nicotine-plus/issues/1860)) * Show files to all but locked ([#1870](https://github.com/nicotine-plus/nicotine-plus/issues/1870)) * Bumping minimum version requirements for Python and GTK 3 ([#1871](https://github.com/nicotine-plus/nicotine-plus/issues/1871)) * \[3.3.0.dev1\] After rescan complete, No GUI just crashes python 3.10.2 errors? ([#1915](https://github.com/nicotine-plus/nicotine-plus/issues/1915)) * I need file sizes to be displayed in bytes, not interested in abbreviated MiB sizing. ([#1948](https://github.com/nicotine-plus/nicotine-plus/issues/1948)) * Turn the ✉ blue, instead of adding a blue dot. ([#1954](https://github.com/nicotine-plus/nicotine-plus/issues/1954)) * Gdk-CRITICAL messages related to tray icon ([#1973](https://github.com/nicotine-plus/nicotine-plus/issues/1973)) * \[3.3.0.dev1\] Breakage on latest master ([#1982](https://github.com/nicotine-plus/nicotine-plus/issues/1982)) * Add toggles for global upload/download speed limits to the status bar ([#1987](https://github.com/nicotine-plus/nicotine-plus/issues/1987)) * \[3.3.0.dev1\] Critical error dialog on start up ([#1989](https://github.com/nicotine-plus/nicotine-plus/issues/1989)) * \[3.3.0.dev1\] Critical error on file transfer if not looking at tab ([#1994](https://github.com/nicotine-plus/nicotine-plus/issues/1994)) * Chat rooms go out of order and names disappear and walls seem inaccessible ([#2003](https://github.com/nicotine-plus/nicotine-plus/issues/2003)) * \[3.3.0.dev1\] Flashing Window ([#2010](https://github.com/nicotine-plus/nicotine-plus/issues/2010)) * \[3.3.0.dev1\] Value: argument child: Expected Gtk.Widget, but got str ([#2021](https://github.com/nicotine-plus/nicotine-plus/issues/2021)) * Nicotine+ listening on port before manually connecting ([#2025](https://github.com/nicotine-plus/nicotine-plus/issues/2025)) * Make log history font configurable ([#2074](https://github.com/nicotine-plus/nicotine-plus/issues/2074)) * Feature: Provide a list of all open chat and chat room tabs ([#2079](https://github.com/nicotine-plus/nicotine-plus/issues/2079)) * Clear deleted files ([#2084](https://github.com/nicotine-plus/nicotine-plus/issues/2084)) * Granular control over shares with trusted buddies (+ custom buddy shares?) ([#2093](https://github.com/nicotine-plus/nicotine-plus/issues/2093)) * Let other users know the minimum number of files and folders set in the Leech Detector plugin ([#2103](https://github.com/nicotine-plus/nicotine-plus/issues/2103)) * Save leechers persistently ([#2105](https://github.com/nicotine-plus/nicotine-plus/issues/2105)) * Easier way to remove ban from a user ([#2111](https://github.com/nicotine-plus/nicotine-plus/issues/2111)) * \[3.3.0.dev1\] Tray icon has disappeared in the latest version ([#2113](https://github.com/nicotine-plus/nicotine-plus/issues/2113)) * \[3.3.0.dev1\] Critical error (UI window with bug report) ([#2116](https://github.com/nicotine-plus/nicotine-plus/issues/2116)) * Option to choose language in Nicotine+ ([#2134](https://github.com/nicotine-plus/nicotine-plus/issues/2134)) * Bitrate filter does not work as expected ([#2141](https://github.com/nicotine-plus/nicotine-plus/issues/2141)) * Random hanging + zombie process on MacOS with VPN and Little Snitch ([#2154](https://github.com/nicotine-plus/nicotine-plus/issues/2154)) * Chat emoji scaling issue ([#2169](https://github.com/nicotine-plus/nicotine-plus/issues/2169)) * Remember last sorted column for each tab (Downloads, Uploads, Search Files, etc) ([#2170](https://github.com/nicotine-plus/nicotine-plus/issues/2170)) * Window resizing glitchy on MacOS 12.1 ([#2178](https://github.com/nicotine-plus/nicotine-plus/issues/2178)) * \[3.3.0.dev3\] Unstable Windows builds fail to start due to missing .dll ([#2218](https://github.com/nicotine-plus/nicotine-plus/issues/2218)) * Notifications for wish list results ([#2221](https://github.com/nicotine-plus/nicotine-plus/issues/2221)) * Save wishlists automatically after closing the corresponding window ([#2249](https://github.com/nicotine-plus/nicotine-plus/issues/2249)) * In the downloads tab, filter by filename ([#2251](https://github.com/nicotine-plus/nicotine-plus/issues/2251)) * \[3.3.0.dev3\] Removing a second user from the buddy list makes nicotine crash ([#2252](https://github.com/nicotine-plus/nicotine-plus/issues/2252)) * \[3.3.0.dev3\] Tray icon changing while nicotine minimized causing crashes ([#2258](https://github.com/nicotine-plus/nicotine-plus/issues/2258)) * Nicotine+ split-tunneling connection to server issue ([#2285](https://github.com/nicotine-plus/nicotine-plus/issues/2285)) * Error launching ([#2290](https://github.com/nicotine-plus/nicotine-plus/issues/2290)) * Add sortable audio properties/quality column ([#2296](https://github.com/nicotine-plus/nicotine-plus/issues/2296)) * \[3.3.0.dev4\] macOS: jumpy window with straight corners and unresizable ([#2298](https://github.com/nicotine-plus/nicotine-plus/issues/2298)) * Add dates to statistics dialog ([#2316](https://github.com/nicotine-plus/nicotine-plus/issues/2316)) * \[3.3.0.dev4\] Nicotine crashes on launch ([#2320](https://github.com/nicotine-plus/nicotine-plus/issues/2320)) * "Add to Buddy List" button in User Info should be greyed/disabled out if already on Buddy List ([#2325](https://github.com/nicotine-plus/nicotine-plus/issues/2325)) * \[3.3.0.dev4\] Nicotine+ crashes some time after launch ([#2341](https://github.com/nicotine-plus/nicotine-plus/issues/2341)) * \[3.3.0.dev4\] Unusual CPU usage ([#2361](https://github.com/nicotine-plus/nicotine-plus/issues/2361)) * \[3.3.0.dev4\] Crash upon download start ([#2391](https://github.com/nicotine-plus/nicotine-plus/issues/2391)) * Upnp Port does not close upon exit of nicotine+ ([#2393](https://github.com/nicotine-plus/nicotine-plus/issues/2393)) * \[3.3.0.dev4\] Critical error after clicking "close" button in "Transfer statistics" ([#2394](https://github.com/nicotine-plus/nicotine-plus/issues/2394)) * Visit my own user profile ([#2412](https://github.com/nicotine-plus/nicotine-plus/issues/2412)) * \[3.3.0.dev4\] Critical error upon opening File Properties of search results ([#2415](https://github.com/nicotine-plus/nicotine-plus/issues/2415)) * \[3.3.0.dev4\] Crash on startup ([#2439](https://github.com/nicotine-plus/nicotine-plus/issues/2439)) * \[3.3.0.dev4\] Nicotine crash on many downloads, all folder downloads. ([#2446](https://github.com/nicotine-plus/nicotine-plus/issues/2446)) * Uploads erroneously getting listed as complete, actually "aborted" at 99% ([#2447](https://github.com/nicotine-plus/nicotine-plus/issues/2447)) * Very strange bug with program interface ([#2448](https://github.com/nicotine-plus/nicotine-plus/issues/2448)) * Date format in buddy list ([#2450](https://github.com/nicotine-plus/nicotine-plus/issues/2450)) * \[3.3.0.dev4\] Fatal run-time error involving file descriptors ([#2451](https://github.com/nicotine-plus/nicotine-plus/issues/2451)) * Show list of logged private chat users ([#2469](https://github.com/nicotine-plus/nicotine-plus/issues/2469)) * \[3.3.0.dev3\] Gtk.CssProvider crashes Nicotine 3.3.0.dev3 at startup ([#2474](https://github.com/nicotine-plus/nicotine-plus/issues/2474)) * Closing Nicotine as a background app on Gnome 44 ([#2487](https://github.com/nicotine-plus/nicotine-plus/issues/2487)) * Rejoin rooms in order ([#2490](https://github.com/nicotine-plus/nicotine-plus/issues/2490)) * Turn off display of automatic chat messages ([#2510](https://github.com/nicotine-plus/nicotine-plus/issues/2510)) * Unable to Connect to SoulSeek Server when Dual Network Interface Is Configured ([#2518](https://github.com/nicotine-plus/nicotine-plus/issues/2518)) * Search filter: username ([#2537](https://github.com/nicotine-plus/nicotine-plus/issues/2537)) * Wishlist results - sound alert and flashing icon when minimized ([#2551](https://github.com/nicotine-plus/nicotine-plus/issues/2551)) * Default image viewer ([#2552](https://github.com/nicotine-plus/nicotine-plus/issues/2552)) * Auto resume/retry ([#2555](https://github.com/nicotine-plus/nicotine-plus/issues/2555)) * RecursionError: maximum recursion depth exceeded while calling a Python object when trying to share files ([#2560](https://github.com/nicotine-plus/nicotine-plus/issues/2560)) * \[3.3.0.dev5\] Crash ([#2566](https://github.com/nicotine-plus/nicotine-plus/issues/2566)) * Downloads appearing in the "received" folder ([#2568](https://github.com/nicotine-plus/nicotine-plus/issues/2568)) * UnicodeEncodeError ([#2569](https://github.com/nicotine-plus/nicotine-plus/issues/2569)) * \[3.3.0.dev5\] Crash (maybe before network reconnect, not sure) ([#2573](https://github.com/nicotine-plus/nicotine-plus/issues/2573)) * \[3.3.0.dev5\] Couldn't remember the password for one of my usernames, crashed when i tried to change login ([#2582](https://github.com/nicotine-plus/nicotine-plus/issues/2582)) * Its not possible to set download folders when they are already set to invalid drive ([#2586](https://github.com/nicotine-plus/nicotine-plus/issues/2586)) * \[3.3.0.dev5\] N+ crashes on startup on macos 13.4.1 ([#2587](https://github.com/nicotine-plus/nicotine-plus/issues/2587)) * Nicotine+ Low FPS/Stuttering on Mac OS ([#2589](https://github.com/nicotine-plus/nicotine-plus/issues/2589)) * Log function not working ([#2591](https://github.com/nicotine-plus/nicotine-plus/issues/2591)) * \[3.3.0.dev5\] Download does not seem to work ([#2595](https://github.com/nicotine-plus/nicotine-plus/issues/2595)) * \[3.3.0.dev5\] Share scanning process not working in Windows and macOS builds ([#2608](https://github.com/nicotine-plus/nicotine-plus/issues/2608)) * \[3.3.0.dev5\] Error message whilst exiting n+ ([#2610](https://github.com/nicotine-plus/nicotine-plus/issues/2610)) * \[3.3.0.dev5\] Clicking Clear All > Finished or User Actions > Send Message doesn't do anything. ([#2617](https://github.com/nicotine-plus/nicotine-plus/issues/2617)) * \[3.3.0.dev5\] Nicotine silently crashes/exits when disconnecting external monitor ([#2627](https://github.com/nicotine-plus/nicotine-plus/issues/2627)) * \[3.3.0.dev5\] When typing in "Include text" box and hitting enter, Nicotine runs into a critical error ([#2628](https://github.com/nicotine-plus/nicotine-plus/issues/2628)) * \[3.3.0.dev5\] Nicotine+ App won't open ([#2638](https://github.com/nicotine-plus/nicotine-plus/issues/2638)) * Read-only editfields aren't read by Orca screen-reader correctly ([#2647](https://github.com/nicotine-plus/nicotine-plus/issues/2647)) * Enable GTK3 while running Orca by default ([#2652](https://github.com/nicotine-plus/nicotine-plus/issues/2652)) * \[3.3.0.dev5\] Crash on the Upload window ([#2663](https://github.com/nicotine-plus/nicotine-plus/issues/2663)) * \[3.3.0.dev5\] Gtk:ERROR:../gtk/gtk/deprecated/gtktreeview.c:12838:gtk\_tree\_view\_is\_blank\_at\_pos: code should not be reached ([#2665](https://github.com/nicotine-plus/nicotine-plus/issues/2665)) * Download folder for remote user keeps appearing ([#2667](https://github.com/nicotine-plus/nicotine-plus/issues/2667)) * Can you swap "close" and "reset" buttons? ([#2678](https://github.com/nicotine-plus/nicotine-plus/issues/2678)) * \[3.3.0.dev6\] Crashing when uploading folders to user ([#2690](https://github.com/nicotine-plus/nicotine-plus/issues/2690)) * PORT Issue! ([#2694](https://github.com/nicotine-plus/nicotine-plus/issues/2694)) * Show total folder size on search tab ([#2697](https://github.com/nicotine-plus/nicotine-plus/issues/2697)) * Nicotine+ freezes for minutes at a time ([#2700](https://github.com/nicotine-plus/nicotine-plus/issues/2700)) * Remove "Send To Player" from main right-click menu ([#2705](https://github.com/nicotine-plus/nicotine-plus/issues/2705)) * Make banning user stop them from viewing profile ([#2710](https://github.com/nicotine-plus/nicotine-plus/issues/2710)) * \[3.3.0.dev6\] Nicotine crashing ([#2713](https://github.com/nicotine-plus/nicotine-plus/issues/2713)) * \[3.3.0.dev6\] Some 3.3.0.dev6 issues ([#2714](https://github.com/nicotine-plus/nicotine-plus/issues/2714)) * \[3.3.0.dev6\] Clicking "Clear Finished" crashes (sometimes) ([#2729](https://github.com/nicotine-plus/nicotine-plus/issues/2729)) * \[3.3.0.dev6\] Crash on master updating completion from "user_left_room" ([#2733](https://github.com/nicotine-plus/nicotine-plus/issues/2733)) * \[3.3.0.dev6\] Crash on DL tab CLEAR files right-click option ([#2745](https://github.com/nicotine-plus/nicotine-plus/issues/2745)) * \[3.3.0.dev6\] Private chat: messages showing with wrong sender ([#2755](https://github.com/nicotine-plus/nicotine-plus/issues/2755)) * Ability to set default Buddies tab list sort ([#2758](https://github.com/nicotine-plus/nicotine-plus/issues/2758)) * UI/UX improvement: move the buddies only option out of the edit subwindow to the share window ([#2763](https://github.com/nicotine-plus/nicotine-plus/issues/2763)) * Critical Error: UnicodeEncodeError ([#2767](https://github.com/nicotine-plus/nicotine-plus/issues/2767)) * "Invisible Border" Around Program? ([#2768](https://github.com/nicotine-plus/nicotine-plus/issues/2768)) * Launching 25-NOV Build Causes Frequent & Prolonged Freezing Of Win10 OS+Frequent Disconnects ([#2770](https://github.com/nicotine-plus/nicotine-plus/issues/2770)) * No handler for class \ ([#2771](https://github.com/nicotine-plus/nicotine-plus/issues/2771)) * \[3.3.0.dev6\] Network connectivity lost until a server reconnect ([#2778](https://github.com/nicotine-plus/nicotine-plus/issues/2778)) * \[3.3.0.dev6\] Copying search result filenames causes crash ([#2781](https://github.com/nicotine-plus/nicotine-plus/issues/2781)) * Recursive folder download matches extra siblings starting with the same name ([#2782](https://github.com/nicotine-plus/nicotine-plus/issues/2782)) * Critical 'TypeError' on macOS Monterey, N+ won't launch ([#2785](https://github.com/nicotine-plus/nicotine-plus/issues/2785)) * \[3.3.0rc1\] "Unknown search mode" Reopening a whishlist search tab ([#2798](https://github.com/nicotine-plus/nicotine-plus/issues/2798)) * Right clicking into the search bar or ctrl+v copy paste causes application to crash ([#2809](https://github.com/nicotine-plus/nicotine-plus/issues/2809)) * Browse Shares: folder downloads should always be recursive ([#2812](https://github.com/nicotine-plus/nicotine-plus/issues/2812)) * \[3.3.0rc2\] Some event causes text copied to clipboard outside Nicotine+ to be ignored ([#2815](https://github.com/nicotine-plus/nicotine-plus/issues/2815)) * Change search share behavior to classic Soulseek ([#2819](https://github.com/nicotine-plus/nicotine-plus/issues/2819)) * Sudden stop while selecting 'grey' files to download ([#2820](https://github.com/nicotine-plus/nicotine-plus/issues/2820)) * Classic Soulseek re-enter search function ([#2826](https://github.com/nicotine-plus/nicotine-plus/issues/2826)) * N+ 3.3.0 transfers not working ([#2827](https://github.com/nicotine-plus/nicotine-plus/issues/2827)) * "Browse Files" doesn't always work on the first try ([#2829](https://github.com/nicotine-plus/nicotine-plus/issues/2829)) * \[3.3.0rc2\] Disable sorting in search ([#2830](https://github.com/nicotine-plus/nicotine-plus/issues/2830)) * Notification on new results from wishlist ([#2840](https://github.com/nicotine-plus/nicotine-plus/issues/2840)) * \[3.3.0rc3\] SVG icons not shown ([#2841](https://github.com/nicotine-plus/nicotine-plus/issues/2841)) * \[3.3.0rc3\] Instant crash with Nicotine+ 3.3.0-rc3 with Apple Silicon image ([#2842](https://github.com/nicotine-plus/nicotine-plus/issues/2842)) * \[3.3.0rc3\] Styling of contextual menu in higlighted tabs ([#2845](https://github.com/nicotine-plus/nicotine-plus/issues/2845)) ## Version 3.2.9 (March 5, 2023) ### Corrections * Reduced memory usage when browsing large shares * Fixed a crash on some systems after running for a few days * Fixed an issue where some private messages were ignored after a user reconnected * Fixed an issue where downloads with long file names could fail on eCryptfs file systems * Fixed an issue where the displayed total percentage of folder transfers was incorrect * Fixed an issue where the tray icon could disappear after locking the screen ### Issues closed on GitHub * Messages are wonky ([#2329](https://github.com/nicotine-plus/nicotine-plus/issues/2329)) * Current download progress reflects single download instead of total ([#2373](https://github.com/nicotine-plus/nicotine-plus/issues/2373)) * Download I/O error: \[Errno 36\] File name too long ([#2375](https://github.com/nicotine-plus/nicotine-plus/issues/2375)) ## Version 3.2.8 (January 6, 2023) ### Corrections * Improved file scanning performance on systems other than Windows * Fixed a regression where uploads through the legacy file transfer system failed in some cases * Fixed an issue where finished zero-byte file downloads displayed a "Connection timeout" error * Fixed an issue where Nicotine+ did not reconnect to the server on connection failure in some cases * Fixed a rare crash when scanning shares * Windows: Fixed a crash when sending Nicotine+ to the background from the quit confirmation dialog * Windows: Fixed an issue that prevented viewing own personal user info page ### Issues closed on GitHub * Automatically reconnect to a server after connection failure ([#2168](https://github.com/nicotine-plus/nicotine-plus/issues/2168)) * Nicotine+ v3.2.7 crashes when sent to background (Windows 10) ([#2276](https://github.com/nicotine-plus/nicotine-plus/issues/2276)) * Error launching Nicotine+ ([#2282](https://github.com/nicotine-plus/nicotine-plus/issues/2282)) * UPnP: Critical error when network interface not available ([#2289](https://github.com/nicotine-plus/nicotine-plus/issues/2289)) ## Version 3.2.7 (December 1, 2022) ### Corrections * Fixed a crash when selecting a user picture * Fixed a crash when removing private chat logs * Fixed an issue where the main window could become unresponsive when showing it from the tray icon * Minor fixes related to UPnP compatibility with certain routers * Reduce the number of connection timeouts when searching for popular files * Windows: Fixed a possible crash when showing notification bubbles * Android (Termux): Fixed a crash when starting Nicotine+ in headless mode ### Issues closed on GitHub * Notification string too long (ValueError crash) on Windows ([#2233](https://github.com/nicotine-plus/nicotine-plus/issues/2233)) * Private chat, Delete chat log... >> Value: 'PrivateChats' object has no attribute 'history' ([#2247](https://github.com/nicotine-plus/nicotine-plus/issues/2247)) * Flatpak: uploading a profile picture crashes the application ([#2250](https://github.com/nicotine-plus/nicotine-plus/issues/2250)) ## Version 3.2.6 (October 21, 2022) ### Changes * Added F6 shortcut to move keyboard focus to the headerbar/toolbar * Added an option to clear all uploads with a "User logged off" status * Removed AppIndicator dependency in favor of custom tray icon implementation ### Corrections * IMPORTANT: Fixed a regression where uploads to slskd users were stuck at "Transferring" * IMPORTANT: Fixed an issue where private messages from offline users were ignored * IMPORTANT: Fixed an issue where certain uploads were incorrectly marked as "Cancelled" * IMPORTANT - OpenBSD: Fixed a regression where incoming peer connections did not work * Fixed a crash when uploading large files on a 32-bit system * Fixed an issue where redundant protocol messages could be sent to the server indefinitely * Fixed an issue where UPnP did not work on MikroTik routers * Fixed an issue where the progress bar would get stuck if a share browse request ended abruptly * Windows: Fixed an issue where network drives could not be shared * Flatpak: Fixed an issue where the GUI was not translated to the system language ### Issues closed on GitHub * Clear Finished also clears uploads/downloads with "User logged off" status ([#2081](https://github.com/nicotine-plus/nicotine-plus/issues/2081)) * Scanning taking many hours ([#2173](https://github.com/nicotine-plus/nicotine-plus/issues/2173)) * Users can't connect to me after upgrade to 3.2.5 (transfers don't work) on OpenBSD ([#2175](https://github.com/nicotine-plus/nicotine-plus/issues/2175)) * Some bugs in Nicotine+ v. 3.2.5 ([#2184](https://github.com/nicotine-plus/nicotine-plus/issues/2184)) * Search Files: Keyboard shortcut to focus search bar ([#2186](https://github.com/nicotine-plus/nicotine-plus/issues/2186)) * Offline messages not popping up in tabs ([#2189](https://github.com/nicotine-plus/nicotine-plus/issues/2189)) * Samba Share hosted by Linux, mounted on Windows Failing ([#2190](https://github.com/nicotine-plus/nicotine-plus/issues/2190)) * Can't exit Room tabs when internet connection is off ([#2192](https://github.com/nicotine-plus/nicotine-plus/issues/2192)) * The flatpak version of Nicotine+ is using the wrong language ([#2194](https://github.com/nicotine-plus/nicotine-plus/issues/2194)) * Uploads partly broken ([#2197](https://github.com/nicotine-plus/nicotine-plus/issues/2197)) * Error code 725: OnlyPermanentLeasesSupported ([#2200](https://github.com/nicotine-plus/nicotine-plus/issues/2200)) * Critical error ([#2215](https://github.com/nicotine-plus/nicotine-plus/issues/2215)) * OverflowError ([#2216](https://github.com/nicotine-plus/nicotine-plus/issues/2216)) ## Version 3.2.5 (August 31, 2022) ### Corrections * Fixed an issue where user settings would reset after an operating system crash or power outage * Fixed an issue where certain uploads were stuck in "Queued" or "Transferring" status * Fixed an issue where files did not download to custom folders * Fixed a performance regression when loading downloads/uploads on startup * Fixed an issue where Nicotine+ connected to the server before UPnP port forwarding completed * Fixed a rare crash related to peer connections * Fixed a crash when an invalid debug log folder was set * Windows: Fixed a regression in scrolling and text rendering performance ### Issues closed on GitHub * Settings are reset to application defaults when a system crash occurs ([#2147](https://github.com/nicotine-plus/nicotine-plus/issues/2147)) * Critical Error ([#2148](https://github.com/nicotine-plus/nicotine-plus/issues/2148)) * 3.2.4 performs worse on Windows than previous stable version (3.2.2) ([#2150](https://github.com/nicotine-plus/nicotine-plus/issues/2150)) * Left unattended just crashed on win 11 beta slow ring ([#2151](https://github.com/nicotine-plus/nicotine-plus/issues/2151)) ## Version 3.2.4 (August 7, 2022) ### Corrections * Fixed a regression where shared folders could not be added using the Preferences dialog * Fixed a performance regression when updating file transfer lists * Fixed a potential crash when displaying the estimated time of a very large download ### Issues closed on GitHub * File sharing error ([#2142](https://github.com/nicotine-plus/nicotine-plus/issues/2142)) ## Version 3.2.3 (August 5, 2022) ### Changes * Optimized performance when many shared files and file transfers are present * Implemented mouse wheel scrolling on tabs to change the active page * Search results from ignored users are no longer shown * Added total file size and duration of selected files to the File Properties dialog * Added text-to-speech toggle buttons for individual private chats when TTS is enabled * Usability improvements to several main window components and dialogs * Reddit and Test Replier plugins are no longer included by default, moved to examplars on [GitHub](https://github.com/nicotine-plus/nicotine-plus/tree/HEAD/pynicotine/plugins/examplars) * Various translation updates (thanks to our [many contributors](https://nicotine-plus.org/TRANSLATORS) on [Weblate](https://hosted.weblate.org/engage/nicotine-plus)) ### Corrections * IMPORTANT: Fixed a CPU hogging issue when thousands of file transfers were present * Fixed issues where downloads failed if the path or file name was very long (thank you @AtticFinder65536) * Fixed an issue where folder downloads did not always save subfolders into the correct location * Fixed an issue where the estimated total time remaining for folder transfers was incorrect * Fixed an issue where clearing all file transfers did not remove transfers completely * Fixed a rare crash when downloading files onto certain (latin-1) filesystems * Fixed a discrepancy between the upload speed reported in outgoing search results compared to user info * Fixed an issue where dark mode was used when light mode was enabled on some systems * Unmaximized size of the main window is now remembered after the window is maximized * Reduced memory usage after closing search tabs with many results * Flatpak: network folders can now be shared * Various minor bug fixes ### Issues closed on GitHub * Forcibly re-queue uploads that stop due to an error such as "Can't connect" ([#1563](https://github.com/nicotine-plus/nicotine-plus/issues/1563)) * Support paths longer than 260 characters on Windows ([#1728](https://github.com/nicotine-plus/nicotine-plus/issues/1728)) * UnicodeEncodeError when downloading file ([#1980](https://github.com/nicotine-plus/nicotine-plus/issues/1980)) * Nicotine+ always on dark mode regardless of my settings ([#1983](https://github.com/nicotine-plus/nicotine-plus/issues/1983)) * High CPU Usage pegs a single core ([#1998](https://github.com/nicotine-plus/nicotine-plus/issues/1998)) * Weird behavior when I download a whole folder with multiple subdirectories ([#2004](https://github.com/nicotine-plus/nicotine-plus/issues/2004)) * Don't freeze/crash without xdg-open ([#2005](https://github.com/nicotine-plus/nicotine-plus/issues/2005)) * Unicode encode error ([#2015](https://github.com/nicotine-plus/nicotine-plus/issues/2015)) * Russian translation updated ([#2016](https://github.com/nicotine-plus/nicotine-plus/issues/2016)) * Time Left for folder and user same as for currently active file ([#2018](https://github.com/nicotine-plus/nicotine-plus/issues/2018)) * Time Left column regression ([#2020](https://github.com/nicotine-plus/nicotine-plus/issues/2020)) * Clear ALL downloads, Clear ALL uploads not working ([#2023](https://github.com/nicotine-plus/nicotine-plus/issues/2023)) * User note saves when pressing Cancel ([#2036](https://github.com/nicotine-plus/nicotine-plus/issues/2036)) * Please show completed transfer speeds in the upload tab. ([#2082](https://github.com/nicotine-plus/nicotine-plus/issues/2082)) * Column headings overlapping in the downloads tab ([#2090](https://github.com/nicotine-plus/nicotine-plus/issues/2090)) * Sort similar users by interest ([#2096](https://github.com/nicotine-plus/nicotine-plus/issues/2096)) * Change the cursor to a finger when it's over links ([#2101](https://github.com/nicotine-plus/nicotine-plus/issues/2101)) * \[3.2.3.rc2\] Critical error (UI window with bug report) ([#2116](https://github.com/nicotine-plus/nicotine-plus/issues/2116)) * Lists of shared files not human-readable ([#2118](https://github.com/nicotine-plus/nicotine-plus/issues/2118)) * \[3.2.3.rc2\] Exception thrown when highlighting several uploads & selecting "Clear" ([#2124](https://github.com/nicotine-plus/nicotine-plus/issues/2124)) ## Version 3.2.2 (March 19, 2022) ### Changes * Show file size in bytes in addition to factorized size in the File Properties dialog * Disallow setting listening ports below 1024, which is in the operating system privileged range * /exit /quit and /q commands respect the 'When closing Nicotine+' preference * Prevent visual lag in chats by displaying new messages in the GUI before writing them into the log file * Simplify the Public room feed layout and mention the actual room name in text-to-speech messages * Check whole words for username mentions in chat rooms to avoid raising notifications for subwords ### Corrections * IMPORTANT: Prevent random upload timeouts of large files if the remote user has a slow or limited download speed * Incomplete downloads are restarted if the file contents change on the uploader's end * Fixed a regression where users could not be added to private rooms * Fixed a regression where certain uploads could fail with a 'Cannot connect' status * Fixed an issue which prevented uploads slots from opening while a privileged transfer was in progress * Fixed a race condition where previously queued uploads were wrongly denied during rescan on startup * Fixed a rare issue where a download could restart endlessly if the file is unreadable on the uploader's end * Fixed a rare crash when loading stored downloads that contain erroneous filename data * Fixed broken folder structure when downloading folders containing multiple levels of subfolders * Fixed a crash loop if a text-to-speech message with an invalid syntax is set * Fixed an issue where ban messages could not be sent to a user with a banned IP address * Fixed an issue where folder names could not be copied with the Ctrl+C shortcut * Fixed a rare crash when changing the color of tab labels * Fixed the behaviour of auto-away messages which are now sent as often as required and displayed locally * Fixed an issue that prevented automatic column width sizing when double clicking column separators * Fixed the sort order of the Time Elapsed and Time Remaining columns in the Downloads and Uploads views ### Issues closed on GitHub * Chat mentions with 1 character username ([#1790](https://github.com/nicotine-plus/nicotine-plus/issues/1790)) * Sort order time elapsed is off for uploads over an hour ([#1795](https://github.com/nicotine-plus/nicotine-plus/issues/1795)) * Just crashed on windows insider 11 slow ring ([#1875](https://github.com/nicotine-plus/nicotine-plus/issues/1875)) * Translations Bug when Autoconnect is off ([#1884](https://github.com/nicotine-plus/nicotine-plus/issues/1884)) * Crash (Gtk tab color) ([#1889](https://github.com/nicotine-plus/nicotine-plus/issues/1889)) * Auto Size Column Does Not Fit Username, Folder or Filename ([#1901](https://github.com/nicotine-plus/nicotine-plus/issues/1901)) * Transfers Cancelling Randomly ([#1911](https://github.com/nicotine-plus/nicotine-plus/issues/1911)) * Nicotine+ doesn't open: Value: 'int' object has no attribute 'split' error ([#1917](https://github.com/nicotine-plus/nicotine-plus/issues/1917)) * Upload Slots Not Opening ([#1933](https://github.com/nicotine-plus/nicotine-plus/issues/1933)) * Departure during the copy action Nicotine+ 3.3.0.dev1 ([#1938](https://github.com/nicotine-plus/nicotine-plus/issues/1938)) * Note editing no longer opens by double-clicking? 3.3.0.dev1 ([#1939](https://github.com/nicotine-plus/nicotine-plus/issues/1939)) * Nicotine+ does not preserve the folder structure when downloading ([#1940](https://github.com/nicotine-plus/nicotine-plus/issues/1940)) ## Version 3.2.1 (February 10, 2022) ### Changes * Optimized overall performance and stability related to Soulseek server and peer connections * Optimized performance and improve robustness of the round robin queue system (thank you @toofar) * Optimized scrolling performance and avoid FPS drops when scrolling large lists containing country flags * Optimized parent row expansions when adding new search results and transfers into tree views * Optimized loading performance of downloads/uploads history and avoid unnecessary saving of transfer lists * Optimized loading performance and reduce memory usage of open chat tabs * Optimized connection initialization performance when uploading to certain users * Changed the chat log filename replacement character from - to _ in room names containing an illegal character * Changed display of items in the Uploads transfer list to virtual folder paths instead of local folder paths * Added display of local folder paths for local items in the File Properties dialog * Added direct folder and file browsing with slsk:// URLs in the Browse Shares text entry * Added new Ukrainian translation (thank you @uniss2209) * Lots of updates to the translations (thanks to our [many contributors](https://nicotine-plus.org/TRANSLATORS) on [Weblate](https://hosted.weblate.org/engage/nicotine-plus)) ### Corrections * CRITICAL: Fixed a crash vulnerability when receiving a download request with a malformed file path (affects version 3.0.3 and later) * IMPORTANT: Fixed an issue where uploads could become stuck in the transfer queue forever * IMPORTANT: Fixed an issue where language translations were not automatically applied on Windows and macOS * Fixed a regression where pausing a download doesn't actually pause it if translations are used * Fixed an issue where downloads failed to start if the temporary incomplete filename is more than 255 characters * Fixed an issue where paused downloads started downloading in a random order when resumed * Fixed a regression where the bandwidth status indicator failed to update if the transfers tab was inactive * Fixed broken scrollbar when changing active page in the Preferences dialog * Fixed labels of UI elements in the Russian translation (thank you @SnIPeRSnIPeR) ### Issues closed on GitHub * After using Clear on an uploaded item, it gets removed, but then returns ([#1745](https://github.com/nicotine-plus/nicotine-plus/issues/1745)) * Direct Connection Fails ([#1748](https://github.com/nicotine-plus/nicotine-plus/issues/1748)) * I cannot see my profile info and picture like I am able to on other user's profiles ([#1751](https://github.com/nicotine-plus/nicotine-plus/issues/1751)) * All file paths are reversed (e.g. /home/foo/Downloads -> /Downloads/foo/home/) ([#1759](https://github.com/nicotine-plus/nicotine-plus/issues/1759)) * Logs mention "privileged" users not "prioritized" users ([#1764](https://github.com/nicotine-plus/nicotine-plus/issues/1764)) * Add an option to print full paths relatively to their share ([#1775](https://github.com/nicotine-plus/nicotine-plus/issues/1775)) * Can't connect to soulseek network - specified ports unusable (Windows 11) ([#1778](https://github.com/nicotine-plus/nicotine-plus/issues/1778)) * Windows 11: \[3.1.1\] Just crashed on Win 11 insider ring ([#1777](https://github.com/nicotine-plus/nicotine-plus/issues/1777)) * \[3.2.0.dev1\] Unknown config option 'show_private_results' ([#1779](https://github.com/nicotine-plus/nicotine-plus/issues/1779)) * \[3.2.1.dev1\] Crash on adding user to buddy list ([#1792](https://github.com/nicotine-plus/nicotine-plus/issues/1792)) * Windows/macOS: Can't change language in app ([#1796](https://github.com/nicotine-plus/nicotine-plus/issues/1796)) * \[3.2.1.dev1\] Occasional crash ([#1798](https://github.com/nicotine-plus/nicotine-plus/issues/1798)) * \[3.2.1.dev1\] Country_Code related Critical Error since update to Mint 20.3 ([#1806](https://github.com/nicotine-plus/nicotine-plus/issues/1806)) * Increase network speed update time ([#1817](https://github.com/nicotine-plus/nicotine-plus/issues/1817)) * \[3.2.1.dev1\] GTK 4: Closing private chat tab can crash Nicotine+ ([#1821](https://github.com/nicotine-plus/nicotine-plus/issues/1821) * When a filename is 255 characters long ([#1825](https://github.com/nicotine-plus/nicotine-plus/issues/1825)) * Excessive memory usage when browsing large shares ([#1826](https://github.com/nicotine-plus/nicotine-plus/issues/1826)) * Windows: Couldn't write to log file "/mu/.log" ([#1828](https://github.com/nicotine-plus/nicotine-plus/issues/1828)) * Windows: "String too long" crash on notification popup ([#1829](https://github.com/nicotine-plus/nicotine-plus/issues/1829)) * Windows: Spaces at the end of directories are trimmed when creating ([#1835](https://github.com/nicotine-plus/nicotine-plus/issues/1835)) * Connect to remote host? ([#1839](https://github.com/nicotine-plus/nicotine-plus/issues/1839)) * Error message appeard while trying to exit the client ([#1850](https://github.com/nicotine-plus/nicotine-plus/issues/1850)) * \[3.2.1.rc2\] Crash when resuming transfers ([#1853](https://github.com/nicotine-plus/nicotine-plus/issues/1853)) * Way to handle lots of small files on your upload queue ([#1865](https://github.com/nicotine-plus/nicotine-plus/issues/1865)) ## Version 3.2.0 (December 18, 2021) WINDOWS USERS: The installer format has changed in Nicotine+ 3.2.0 and above. If you are upgrading from Nicotine+ 3.1.1 or earlier, please uninstall Nicotine+ first (this will not remove your existing settings). ### Changes * Performance improvements across the entire application, including file searching, transfers, user shares and chats * Accessibility improvements to various components, including result filters, browse shares, wishlist and chat rooms * Several new keyboard shortcuts for easier navigation, a list of shortcuts can be viewed by pressing the F1 key * User interface improvements, including several clean-ups related to core client functions and preferences * Added an emoji picker in chat text entry * Added an option to disable search history * Increased the number of search history items from 15 to 200 * Double-clicking a folder in search results now downloads the folder * Moved main tab visibility settings to "User Interface" category in preferences dialog * Moved log category options to right-click menu in log history pane * The 'When closing Nicotine+' preference now also applies when pressing Ctrl+Q * Improved terminology used for various client functions, including clearer output of the status bar and log history * Removed a few outdated and obsolete preferences * Removed the option to automatically share completed downloads, convert to standard shared folder * The Leech Detector plugin now sends the polite message after a leecher's first download has finished * New and improved translations for many languages * Lowered Python version requirement to 3.5 for Debian Stretch LTS based distros ### Corrections * Several stability improvements related to file scanning * Fixed issues where UPnP did not work with certain routers * Fixed an issue where the password could not be changed while logged out * Fixed an issue where inaccurate bitrates and durations were reported for certain files after scanning shares * Fixed a critical error when hiding the "Chat Rooms" tab * Fixed an issue where column header menus did not work in older GTK versions * Fixed an issue where column widths would not be remembered if multiple tabs were open * Fixed critical errors when quitting Nicotine+ in certain cases * Fixed a critical error when receiving invalid search results * Fixed an issue where uploads could not be manually resumed after a connection error * Fixed an issue where certain special characters were not removed from search terms * Fixed an issue where taskbar notifications were not cleared in older GTK versions * Fixed an issue where transfer statistics did not update properly * Fixed an issue where the tray icon did not appear in LXDE * Fixed an issue where tab notification highlights were removed too early * Fixed an issue where fetching data from Last.fm was unsuccessful in certain cases * Fixed an issue where the scrollbar could not be dragged from the edge of the window in the Breeze theme * Fixed an issue where the preferences dialog was too large on small screen resolutions * Network interface binding can now be used on systems with Linux <5.7 kernel * Debian: the stable PPA is compatible with Debian again * macOS: fixed an issue where the main window did not render in macOS Monterey * Windows: improved compatibility with Windows 11 * Windows: reduced the number of false antivirus positives ### Issues closed on GitHub * It's possible to open more than one instance of Nicotine+ ([#1418](https://github.com/nicotine-plus/nicotine-plus/issues/1418)) * Nicotine+ database needs recovery ([#1467](https://github.com/nicotine-plus/nicotine-plus/issues/1467)) * Feature request: Option to not remember search history ([#1468](https://github.com/nicotine-plus/nicotine-plus/issues/1468)) * Double-click on search result to start download ([#1469](https://github.com/nicotine-plus/nicotine-plus/issues/1469)) * Consider bumping listen socket backlog length ([#1471](https://github.com/nicotine-plus/nicotine-plus/issues/1471)) * Generate releases hashes? ([#1473](https://github.com/nicotine-plus/nicotine-plus/issues/1473)) * Mac Intel El Capitan 10.11.6 ([#1474](https://github.com/nicotine-plus/nicotine-plus/issues/1474)) * Raspbian support ([#1476](https://github.com/nicotine-plus/nicotine-plus/issues/1476)) * The Nicotine+ project's title summary contains superfluous text about the function of the client ([#1481](https://github.com/nicotine-plus/nicotine-plus/issues/1481)) * Catch-22 regarding password ([#1483](https://github.com/nicotine-plus/nicotine-plus/issues/1483)) * Pressing Ctrl+? does not open the Keyboard Shortcuts window as expected ([#1484](https://github.com/nicotine-plus/nicotine-plus/issues/1484)) * Tabs cannot be navigated without using mouse (accessibility) ([#1485](https://github.com/nicotine-plus/nicotine-plus/issues/1485)) * It reads "(privileged)" in the size column of an upload transfer, but I've not privileged anybody, why? ([#1487](https://github.com/nicotine-plus/nicotine-plus/issues/1487)) * Is Python version of >=3.6 really needed as a Build-Depends parameter? ([#1488](https://github.com/nicotine-plus/nicotine-plus/issues/1488)) * Implement Ctrl-C text copying for selected elements in treeview ([#1490](https://github.com/nicotine-plus/nicotine-plus/issues/1490)) * GtkTreeView column header context menus are out-of-context on MX Linux Continuum 18.3 ([#1492](https://github.com/nicotine-plus/nicotine-plus/issues/1492)) * Search Scope button pop-up menu items positioned above top of screen (Linux) ([#1495](https://github.com/nicotine-plus/nicotine-plus/issues/1495)) * Filter bar layout issues (Result Filters) ([#1497](https://github.com/nicotine-plus/nicotine-plus/issues/1497)) * Text Entry should validate and execute upon input when focus moves away (Result Filters) ([#1498](https://github.com/nicotine-plus/nicotine-plus/issues/1498)) * Text Entry should respond to a zero-length string created by any keypress event to force clear the filter (Result Filters) ([#1499](https://github.com/nicotine-plus/nicotine-plus/issues/1499)) * Fix missing Alt+R accelerator for Result Filter bar show/hide button in Search Files ([#1500](https://github.com/nicotine-plus/nicotine-plus/issues/1500)) * Redundant Find pop-up TextBox in Search Files TreeView widget hinders Ctrl+F so it needs to be disabled ([#1501](https://github.com/nicotine-plus/nicotine-plus/issues/1501)) * Primary Tab Bar fails to surrender focus after second mouse-click (Main Window) ([#1502](https://github.com/nicotine-plus/nicotine-plus/issues/1502)) * Put the options for Tab Label Colors into the Tab section (Preferences) ([#1505](https://github.com/nicotine-plus/nicotine-plus/issues/1505)) * Scrap the redundant 'Clear All Colors' button from User Interface category (Preferences) ([#1506](https://github.com/nicotine-plus/nicotine-plus/issues/1506)) * General captions of General sections generally conflict with General category name, in general (Preferences) ([#1507](https://github.com/nicotine-plus/nicotine-plus/issues/1507)) * Dialog box drawn larger than small screen size makes OK and Apply buttons invisible (Preferences) ([#1508](https://github.com/nicotine-plus/nicotine-plus/issues/1508)) * Remove Alt+F accelerator from Clear Finished button in Downloads and Uploads (Transfers) ([#1510](https://github.com/nicotine-plus/nicotine-plus/issues/1510)) * Set default focus to the Username text entry box if there are no secondary tabs (User Browse, Info, Private Chat) ([#1511](https://github.com/nicotine-plus/nicotine-plus/issues/1511)) * Chat view context-menu Copy has no function when nothing is selected (Chat) ([#1512](https://github.com/nicotine-plus/nicotine-plus/issues/1512)) * Ctrl+F should open Find bar while chat text entry box has focus (Chat) ([#1513](https://github.com/nicotine-plus/nicotine-plus/issues/1513)) * Alt+M for Send _Message conflicts with native _Mode menu in User Info ([#1515](https://github.com/nicotine-plus/nicotine-plus/issues/1515)) * Alt+S for Free _Slot conflicts with native _Shares menu in Search Files (Filters) ([#1516](https://github.com/nicotine-plus/nicotine-plus/issues/1516)) * Ability to scroll when you push the mouse to the rightmost edge of the screen (last pixel). ([#1517](https://github.com/nicotine-plus/nicotine-plus/issues/1517)) * Swapping between gdbm/semidbm causes Serious [Errno 20] corrupted database error unhandled ([#1519](https://github.com/nicotine-plus/nicotine-plus/issues/1519)) * Edit debug error string: "Shared files database index seems to be corrupted, rescan your shares" (add 'index') ([#1520](https://github.com/nicotine-plus/nicotine-plus/issues/1520)) * Add entry to local debug log to identify Nicotine+ version and exact Python version being used at runtime ([#1521](https://github.com/nicotine-plus/nicotine-plus/issues/1521)) * Show Similar Users button disappears off window edge due to widget alignment issues (Interests tab) ([#1523](https://github.com/nicotine-plus/nicotine-plus/issues/1523)) * Nicotine crashes upon quitting ([#1525](https://github.com/nicotine-plus/nicotine-plus/issues/1525)) * Plugin System Expansion ([#1542](https://github.com/nicotine-plus/nicotine-plus/issues/1542)) * Notification badge cleared too early ([#1543](https://github.com/nicotine-plus/nicotine-plus/issues/1543)) * Feature Request: Upload tab when someone uploads from you ([#1544](https://github.com/nicotine-plus/nicotine-plus/issues/1544)) * Gtk 3 Bug: MacOS gtk_widget gdk_window ([#1545](https://github.com/nicotine-plus/nicotine-plus/issues/1545)) * Search issue ([#1547](https://github.com/nicotine-plus/nicotine-plus/issues/1547)) * Bug: 3.2.0 dev Arch Linux Error loading plugin libhunspell and libaspell ([#1548](https://github.com/nicotine-plus/nicotine-plus/issues/1548)) * Arch Linux GTK 4.4.0 crashes upon quitting if double login ([#1552](https://github.com/nicotine-plus/nicotine-plus/issues/1552)) * Arch Linux GTK 4.4.0 Allocation width too small needs at least 31x25 ([#1553](https://github.com/nicotine-plus/nicotine-plus/issues/1553)) * Moving mouse over the dragging-point of a column/frame doesn't change the mouse pointer ([#1561](https://github.com/nicotine-plus/nicotine-plus/issues/1561)) * \[3.2.0.dev1\] Always crash on leave Public room feed tab close (Chat Rooms) ([#1562](https://github.com/nicotine-plus/nicotine-plus/issues/1562)) * Uploads with special characters in path cancelled ([#1564](https://github.com/nicotine-plus/nicotine-plus/issues/1564)) * UPnP doesn't work ([#1566](https://github.com/nicotine-plus/nicotine-plus/issues/1566)) * Crash Report on Windows 10: 'Box' object has no attribute 'add_action' ([#1569](https://github.com/nicotine-plus/nicotine-plus/issues/1569)) * Critical Error that I'm getting after updating ([#1572](https://github.com/nicotine-plus/nicotine-plus/issues/1572)) * Still Critical Error ([#1573](https://github.com/nicotine-plus/nicotine-plus/issues/1573)) * lastfm: Could not get recent track from audioscrobbler ([#1574](https://github.com/nicotine-plus/nicotine-plus/issues/1574)) * Critical error after closing search tab ([#1575](https://github.com/nicotine-plus/nicotine-plus/issues/1575)) * UPnP stopped working with current unstable build ([#1580](https://github.com/nicotine-plus/nicotine-plus/issues/1580)) * Trigger Browse Files once when online for Buddy List ([#1583](https://github.com/nicotine-plus/nicotine-plus/issues/1583)) * Wishlist ([#1591](https://github.com/nicotine-plus/nicotine-plus/issues/1591)) * Remove - hyphen ([#1592](https://github.com/nicotine-plus/nicotine-plus/issues/1592)) * Failed to execute script nictoine win 10 ([#1597](https://github.com/nicotine-plus/nicotine-plus/issues/1597)) * Wishlist quick search ([#1599](https://github.com/nicotine-plus/nicotine-plus/issues/1599)) * Wishlist hot key ([#1600](https://github.com/nicotine-plus/nicotine-plus/issues/1600)) * Filters button ([#1601](https://github.com/nicotine-plus/nicotine-plus/issues/1601)) * Pressing enter in the wishlist when the line is empty ([#1603](https://github.com/nicotine-plus/nicotine-plus/issues/1603)) * Keeps telling me my database is corrupt ([#1620](https://github.com/nicotine-plus/nicotine-plus/issues/1620)) * I do not know if it's bug or not ([#1623](https://github.com/nicotine-plus/nicotine-plus/issues/1623)) * Serious error occurred while rescanning shares ([#1625](https://github.com/nicotine-plus/nicotine-plus/issues/1625)) * No idea, that's what I saw, when I came back ([#1626](https://github.com/nicotine-plus/nicotine-plus/issues/1626)) * Wrong password results in lockdown ([#1627](https://github.com/nicotine-plus/nicotine-plus/issues/1627)) * Cannot find gdbm or semidm on openbsd ([#1631](https://github.com/nicotine-plus/nicotine-plus/issues/1631)) * Critical Error on Launch ([#1633](https://github.com/nicotine-plus/nicotine-plus/issues/1633)) * Pop up about translated languages ([#1635](https://github.com/nicotine-plus/nicotine-plus/issues/1635)) * Nicotine+ has encountered a critical error ([#1636](https://github.com/nicotine-plus/nicotine-plus/issues/1636)) * Logs reporting 0 folders found after rescan ([#1642](https://github.com/nicotine-plus/nicotine-plus/issues/1642)) * Crashed on expanding folder ([#1643](https://github.com/nicotine-plus/nicotine-plus/issues/1643)) * Remove wish not possible when search contains parens ([#1652](https://github.com/nicotine-plus/nicotine-plus/issues/1652)) * Critical Error ([#1654](https://github.com/nicotine-plus/nicotine-plus/issues/1654)) * Leech Detector not working??!! ([#1656](https://github.com/nicotine-plus/nicotine-plus/issues/1656)) * Nicotine+ not working with latest MacOS Monteray ([#1660](https://github.com/nicotine-plus/nicotine-plus/issues/1660)) * \[3.2.0.dev1\] Critical error on popover context menu when disconnected ([#1662](https://github.com/nicotine-plus/nicotine-plus/issues/1662)) * Nicotine Critical Error Operation not permitted ([#1663](https://github.com/nicotine-plus/nicotine-plus/issues/1663)) * \[3.2.0.dev1\] Nicotine+ x64 fails to launch with "Failed to execute script nicotine" error ([#1665](https://github.com/nicotine-plus/nicotine-plus/issues/1665)) * Nicotine+ has encountered a critical error ([#1666](https://github.com/nicotine-plus/nicotine-plus/issues/1666)) * Critical Error "Value: 'Box' object has no attribute 'add_action'" ([#1670](https://github.com/nicotine-plus/nicotine-plus/issues/1670)) * Bug with user status ([#1680](https://github.com/nicotine-plus/nicotine-plus/issues/1680)) * Critical Error: Value: 'NoneType' object has no attribute 'get_hilite_image' ([#1682](https://github.com/nicotine-plus/nicotine-plus/issues/1682)) * Having several issues getting all my files to share, or share correctly ([#1686](https://github.com/nicotine-plus/nicotine-plus/issues/1686)) * Crash on Ctrl+W in Search tab ([#1692](https://github.com/nicotine-plus/nicotine-plus/issues/1692)) * Move to Tray on Exit ([#1694](https://github.com/nicotine-plus/nicotine-plus/issues/1694)) * OSError on Manjaro Linux ([#1703](https://github.com/nicotine-plus/nicotine-plus/issues/1703)) * Conform to Windows window-arrangement hotkeys ([#1704](https://github.com/nicotine-plus/nicotine-plus/issues/1704)) * Cannot Use App or See App Window (MacOS Monterey) ([#1709](https://github.com/nicotine-plus/nicotine-plus/issues/1709)) * Crash report on "About Nicotine+" ([#1715](https://github.com/nicotine-plus/nicotine-plus/issues/1715)) * 3.2.0.rc2 64-bit portable won't launch (Windows) ([#1724](https://github.com/nicotine-plus/nicotine-plus/issues/1724)) * Clicking in a result filter field scrolls the results list to the top ([#1732](https://github.com/nicotine-plus/nicotine-plus/issues/1732)) * Result filter fields cause results list to require an extra click ([#1733](https://github.com/nicotine-plus/nicotine-plus/issues/1733)) * UI hangs for seconds at a time in the Search Files view ([#1734](https://github.com/nicotine-plus/nicotine-plus/issues/1734)) * Scrolling on a Preferences field changes the field's value ([#1735](https://github.com/nicotine-plus/nicotine-plus/issues/1735)) ## Version 3.1.1 (August 2, 2021) ### Changes * Downloads denied with 'Too many files' or 'Too many megabytes' are now re-queued every 12 minutes * Leech detector plugin opens private chat user tabs by default when sending complaints ### Corrections * IMPORTANT: Fixed an issue where recently queued files were uploaded before older files (LIFO queue behavior) * Fixed a crash when attempting to search files in joined rooms * Queue positions are now properly updated for queued uploads * Certain special characters needed to receive proper search results are no longer removed from search terms * Fixed an issue where decimals were truncated before being saved (e.g. in the 'Anti SHOUT' plugin) * Fixed an issue where an incorrect user tab was opened when issuing the /msg command ### Issues closed on GitHub * non US locale float type variables in plugins cannot be filled ([#1462](https://github.com/nicotine-plus/nicotine-plus/issues/1462)) * Files uploaded in a random order ([#1463](https://github.com/nicotine-plus/nicotine-plus/issues/1463)) ## Version 3.1.0 (July 23, 2021) ### Changes * Added alternative transfer speed limits for downloads and uploads, toggleable with a quick access button in the status bar * Added an option to save downloads to subfolders based on the uploader's username * Added a dropdown menu in file transfer views to clear various types of file transfers from the list * Added an option to disable reverse file paths in search results and file transfer views * Added an option to show private/locked search results and shared files from SoulseekQt clients * Added an option to only allow trusted buddies to access buddy shares * Added a context menu item in file transfer views to browse folders of file transfers, similar to search results * Added checkboxes to 'Shares' preferences to easily specify whether a shared folder should be buddy-only or not * Added a menu item to quickly toggle dark mode/theme, available under Menu -> View -> Prefer Dark Mode * Added debug logging categories for downloads, uploads and chats * Improved GUI accessibility for blind users using screen readers * Finished downloads are no longer cleared on disconnect/exit * Finished uploads are now restored on startup, unless previously cleared * Spam filter plugin now filters phrases in chat rooms in addition to private chats * Command aliases can now run chat commands, e.g. '/alias hello /away' will create a '/hello' command that runs '/away' * Unified preferences related to the GUI, such as colors, icons and tabs, under a single 'User Interface' page * A single preference now controls the maximum number of visible search results, instead of two separate preferences * Added a basic 'headless' mode to run Nicotine+ without a GUI, available through the --headless command line flag * Added the ability to start multiple instances of Nicotine+ when a custom config file is specified with the --config command line flag * Added the option to specify a custom user data folder location (used for storing e.g. the list of shared files) with the --user-data command line flag * Added plugin notifications for started/finished transfers * Various deprecations related to plugins, listed in pluginsystem.py and logged on startup * Various performance improvements * macOS: minor UX improvements to better align with macOS conventions * GNU/Linux and macOS: added an option to enforce a specific network interface, useful for virtual private networks (VPN) * Removed 'direct private message' toggle, since the official Soulseek clients do not understand such messages * Removed option to rotate tab labels, due to various issues with its implementation * Removed support for Ubuntu 16.04 and Python 3.5 ### Corrections * Fixed an issue where file transfers did not reach maximum speeds on slow connections * Fixed an issue where incorrect upload speeds were sent to the server * Fixed an issue where failed downloads were marked as finished in cases where the download folder is not accessible * Fixed an issue where double-clicking treeview column headers activated the first row * Fixed an issue where the 'unread tabs' menu caused a crash if tabs were closed * Fixed an issue where adding finished downloads to shared files could result in a crash * Fixed an issue where searching a user's share could result in a crash after a refresh * Fixed a crash when attempting to show file properties for a user/folder row * Fixed various UPnP port forwarding issues with certain routers * Added a workaround for cases where Soulseek NS clients send incorrect file sizes for large files * Various GUI-related changes and improvements to reduce the number of inconsistencies * macOS: keyboard shortcuts now use the Command key instead of Ctrl * Windows: improvements to notifications to prevent duplicate tray icons * Windows: fixed an issue where closed windows would appear in window peek * Windows: fixed an issue where minimized windows were not displayed when restoring Nicotine+ from tray ### Issues closed on GitHub * Is there a way to exclude a file/directory from a share? + Some feedback ([#924](https://github.com/nicotine-plus/nicotine-plus/issues/924)) * Feature Request: Improve folder folding behavior + Add Collapse/Expand All ([#981](https://github.com/nicotine-plus/nicotine-plus/issues/981)) * Suggestion: Room wall improvements ([#985](https://github.com/nicotine-plus/nicotine-plus/issues/985)) * Practical: change share from public to buddy and vice versa. ([#991](https://github.com/nicotine-plus/nicotine-plus/issues/991)) * Version 3.0.1 and 3.0.2's Nicotine+.exe detected as a virus by Malwarebytes ([#1012](https://github.com/nicotine-plus/nicotine-plus/issues/1012)) * Quicker access to speed throttling? ([#1031](https://github.com/nicotine-plus/nicotine-plus/issues/1031)) * Copy/Paste keyboard shortcuts broken on Mac ([#1342](https://github.com/nicotine-plus/nicotine-plus/issues/1342)) * Don't automatically clear downloads/uploads on quit ([#1343](https://github.com/nicotine-plus/nicotine-plus/issues/1343)) * Notifications tray icons aren't removed automatically ([#1354](https://github.com/nicotine-plus/nicotine-plus/issues/1354)) * Download to a \*username\* / subfolder ([#1355](https://github.com/nicotine-plus/nicotine-plus/issues/1355)) * Drop official support for Ubuntu 16.04 ([#1360](https://github.com/nicotine-plus/nicotine-plus/issues/1360)) * Headless support ([#1362](https://github.com/nicotine-plus/nicotine-plus/issues/1362)) * Support for macOS High Sierra ([#1366](https://github.com/nicotine-plus/nicotine-plus/issues/1366)) * Prevent Downloads from Displaying in the Debug Logging Window ([#1371](https://github.com/nicotine-plus/nicotine-plus/issues/1371)) * Malware detection ([#1373](https://github.com/nicotine-plus/nicotine-plus/issues/1373)) * Minimized window app won't show up when called from the system tray ([#1374](https://github.com/nicotine-plus/nicotine-plus/issues/1374)) * Change close button position on macOS ([#1376](https://github.com/nicotine-plus/nicotine-plus/issues/1376)) * Change menu action on macOS ([#1377](https://github.com/nicotine-plus/nicotine-plus/issues/1377)) * Limit Buddy Shares to Trusted Buddies ([#1382](https://github.com/nicotine-plus/nicotine-plus/issues/1382)) * Critical errors ([#1383](https://github.com/nicotine-plus/nicotine-plus/issues/1383)) * Option to disable popup ([#1386](https://github.com/nicotine-plus/nicotine-plus/issues/1386)) * Prevent notification balloon crashes on 32-bit Windows ([#1393](https://github.com/nicotine-plus/nicotine-plus/issues/1393)) * ", line 127 ([#1395](https://github.com/nicotine-plus/nicotine-plus/issues/1395)) * Auto-Size Columns Opens File in Player ([#1396](https://github.com/nicotine-plus/nicotine-plus/issues/1396)) * Window Preview Shows Preferences Window ([#1397](https://github.com/nicotine-plus/nicotine-plus/issues/1397)) * Crash report ([#1398](https://github.com/nicotine-plus/nicotine-plus/issues/1398)) * Windows Defender / Trojan:Win32/Zpevdo.B ...False Positive? ([#1401](https://github.com/nicotine-plus/nicotine-plus/issues/1401)) * Nicotine+ encountered a critical error and needs to exit ([#1402](https://github.com/nicotine-plus/nicotine-plus/issues/1402)) * Middle-clicking user/share/room does not close it anymore ([#1404](https://github.com/nicotine-plus/nicotine-plus/issues/1404)) * problem with access to some users. ([#1405](https://github.com/nicotine-plus/nicotine-plus/issues/1405)) * Critical Error on master ([#1406](https://github.com/nicotine-plus/nicotine-plus/issues/1406)) * Config error: can't decode 'searches' section 'group_searches' value ([#1407](https://github.com/nicotine-plus/nicotine-plus/issues/1407)) * Transfer lists are cleared upon disconnection ([#1409](https://github.com/nicotine-plus/nicotine-plus/issues/1409)) * Wishlists aren't being searched ([#1410](https://github.com/nicotine-plus/nicotine-plus/issues/1410)) * Every downloaded file remains as "INCOMPLETE[number]Filename" ([#1411](https://github.com/nicotine-plus/nicotine-plus/issues/1411)) * Exclamation point in the chat tab bar i have not seen before ([#1413](https://github.com/nicotine-plus/nicotine-plus/issues/1413)) * Tried unpacking zip, scanner shows Gen:Variant.Bulz.495404 ([#1414](https://github.com/nicotine-plus/nicotine-plus/issues/1414)) * Crash on getting File Properties at user or directory entry level in Download tab ([#1415](https://github.com/nicotine-plus/nicotine-plus/issues/1415)) * in Download tab, the Queue Position column is empty ([#1416](https://github.com/nicotine-plus/nicotine-plus/issues/1416)) * Windows Defender quarantined nicotine+ because of "Trojan:Win32/Zpevdo.B" ([#1417](https://github.com/nicotine-plus/nicotine-plus/issues/1417)) * Tabs go out off the screen where there are many, they should use several lines instead. ([#1420](https://github.com/nicotine-plus/nicotine-plus/issues/1420)) * Search main tab: wish tabs always extra. ([#1422](https://github.com/nicotine-plus/nicotine-plus/issues/1422)) * Can't click anything when in fullscreen ([#1423](https://github.com/nicotine-plus/nicotine-plus/issues/1423)) * 'GeoIP' object has no attribute 'get_all' ([#1426](https://github.com/nicotine-plus/nicotine-plus/issues/1426)) * Finished Downloads Autoclearing ([#1427](https://github.com/nicotine-plus/nicotine-plus/issues/1427)) * 'NetworkFrame' object has no attribute 'InterfaceRow' ([#1430](https://github.com/nicotine-plus/nicotine-plus/issues/1430)) * Browse Folder via Downloads tab ([#1432](https://github.com/nicotine-plus/nicotine-plus/issues/1432)) * Leech detector logs not showing up ([#1433](https://github.com/nicotine-plus/nicotine-plus/issues/1433)) * Crash when adding to buddy list from User info tab ([#1434](https://github.com/nicotine-plus/nicotine-plus/issues/1434)) * How to access option to close only window (keep sharing files)? ([#1435](https://github.com/nicotine-plus/nicotine-plus/issues/1435)) * error ([#1436](https://github.com/nicotine-plus/nicotine-plus/issues/1436)) * DownloadQueuedNotification on end of downloaded file ([#1438](https://github.com/nicotine-plus/nicotine-plus/issues/1438)) * Shift + Mouse wheel a fall ([#1440](https://github.com/nicotine-plus/nicotine-plus/issues/1440)) * Convert organization URL to lowercase ([#1441](https://github.com/nicotine-plus/nicotine-plus/issues/1441)) * random crash? ([#1442](https://github.com/nicotine-plus/nicotine-plus/issues/1442)) * Crash when closing private Chat tab ([#1445](https://github.com/nicotine-plus/nicotine-plus/issues/1445)) * Critical error upon attempted chat ([#1446](https://github.com/nicotine-plus/nicotine-plus/issues/1446)) * Incorrectly reported upload speed ([#1449](https://github.com/nicotine-plus/nicotine-plus/issues/1449)) * UPnP does not work on this network (Windows) ([#1453](https://github.com/nicotine-plus/nicotine-plus/issues/1453)) * select ValueError: too many file descriptors in select() (Windows) ([#1456](https://github.com/nicotine-plus/nicotine-plus/issues/1456)) * UPnP not working ([#1457](https://github.com/nicotine-plus/nicotine-plus/issues/1457)) ## Version 3.0.6 (May 1, 2021) ### Changes * The message sent to users attempting to access geo-blocked content can now be customized ### Corrections * Fixed a few critical errors related to uploads and file selections * Chat search commands and the /ctcpversion command now work properly * Fixed Python 3.5 compatibility * Windows: fixed an issue where duplicate notification icons would appear in the tray ### Issues closed on GitHub * Geoblock Options ([#1028](https://github.com/nicotine-plus/nicotine-plus/issues/1028)) * Notifications tray icons aren't removed automatically ([#1354](https://github.com/nicotine-plus/nicotine-plus/issues/1354)) * critical error ([#1356](https://github.com/nicotine-plus/nicotine-plus/issues/1356)) * Frequent crashes in 3.0.5 ([#1357](https://github.com/nicotine-plus/nicotine-plus/issues/1357)) * Unable to search chat room ([#1359](https://github.com/nicotine-plus/nicotine-plus/issues/1359)) * Critical error ([#1361](https://github.com/nicotine-plus/nicotine-plus/issues/1361)) ## Version 3.0.5 (April 24, 2021) ### Changes * Replaced previous country flag icons with clearer ones * Improved performance when selecting a large number of transfers * Queue positions and failed downloads are now checked every three minutes instead of every minute, to reduce stress on the uploading user * Performance improvements for long buddy lists * Added a dropdown menu button in tab bars for unread notifications ### Corrections * Custom media player and file manager commands no longer reset after a restart * Fixed an issue where scanning of shared files malfunctioned if the UI didn't load in time * Fixed a critical error when a new room was joined while country flags were disabled * Fixed a critical error when attempting to add wishlist items while disconnected from the server * Fixed a critical error when attempting to use the /rescan chat command * Fixed a rare case where Nicotine+ could crash on startup * 'Send to Player' for files downloaded to a custom folder no longer fails * Private room operators are once again able to add users to the room * When browsing your own shares, viewing recently shared downloads no longer requires a restart * Attempting to download files of disconnected users now displays the 'User logged off' status immediately * Column widths of the currently selected user browse tab are now saved * Unified chat completion behavior of chat rooms and private chats * UI customizations are once again applied to the preferences dialog * Corrected the behavior of 'Abort User's Uploads' button in the uploads view * Text-To-Speech messages no longer overlap each other * Minor behavioral corrections related to file transfers ### Issues closed on GitHub * Download Folder function doesn't work from search when uploader is offline ([#511](https://github.com/nicotine-plus/nicotine-plus/issues/511)) * nicotine crash, ([#1040](https://github.com/nicotine-plus/nicotine-plus/issues/1040)) * Crash on startup ([#1041](https://github.com/nicotine-plus/nicotine-plus/issues/1041)) * Replace usage of Gtk.Menu with Gio.Menu ([#1045](https://github.com/nicotine-plus/nicotine-plus/issues/1045)) * critical error when exit user browse tab ([#1192](https://github.com/nicotine-plus/nicotine-plus/issues/1192)) * Version 3.0.4 flagged by Windows Defender ([#1329](https://github.com/nicotine-plus/nicotine-plus/issues/1329)) * critical error crash ([#1333](https://github.com/nicotine-plus/nicotine-plus/issues/1333)) * File Manager and Media Player events are buggy ([#1335](https://github.com/nicotine-plus/nicotine-plus/issues/1335)) * Filtering on file type causes crash ([#1337](https://github.com/nicotine-plus/nicotine-plus/issues/1337)) * The shared folders are not shared anymore ([#1338](https://github.com/nicotine-plus/nicotine-plus/issues/1338)) * Pausing a download ([#1339](https://github.com/nicotine-plus/nicotine-plus/issues/1339)) * copy search team Bug ([#1348](https://github.com/nicotine-plus/nicotine-plus/issues/1348)) * Can't save files.db: [Errno 13] ([#1352](https://github.com/nicotine-plus/nicotine-plus/issues/1352)) ## Version 3.0.4 (April 7, 2021) ### Corrections * Invalid file names no longer break scanning of shared folders * Configuration changes are now saved if Nicotine+ is terminated (SIGTERM) * Fixed a case where the upload status displayed 'User logged off' after the user reconnected * Action buttons in the file properties dialog now stick to the bottom as intended * Windows: Nicotine+ no longer crashes on startup when translations are used ### Issues closed on GitHub * Critical UnicodeDecodeError on startup: 'utf-8' codec can't decode byte 0x92 in position 12: invalid start byte ([#1038](https://github.com/nicotine-plus/nicotine-plus/issues/1038)) * You have no privileges left. They are not necessary, but allow your downloads to be queued ahead of non-privileged users. [Question] ([#1039](https://github.com/nicotine-plus/nicotine-plus/issues/1039)) * line 642 ([#1042](https://github.com/nicotine-plus/nicotine-plus/issues/1042)) * 'utf-8' codec can't encode characters(surrogates not allowed) ([#1043](https://github.com/nicotine-plus/nicotine-plus/issues/1043)) ## Version 3.0.3 (April 1, 2021) ### Changes * Refactored download queuing to use the same system as the official client * Improved reliability and performance of the upload queue * Added a popup that appears whenever a critial error occurs in the program ### Corrections * Nicotine+ now starts properly when invalid download filters are detected * The configuration file no longer resets when running out of disk space * Improved reliability of downloading folders containing special characters from certain clients * Keyboard shortcuts are now functional on non-Latin keyboard layouts * Upload bandwidth limits are no longer incorrectly applied when upload slots limits are enabled * Reaching a specified upload speed limit no longer interferes with max bandwidth/upload slot limits * Illegal file path characters are now replaced before downloading a file, to prevent issues with FAT/NTFS drives on Unix-based systems * Directly searching a user's files now functions properly * In predefined search filters, the state of the 'Free Slots' filter is now saved properly * If user browse/info tabs were closed, they no longer reopen when loading new information * Fixed a few behavioral issues related to chat notifications * Fixed issues related to incorrect user statuses being displayed in some cases * The correct status color is now displayed for usernames in past private chat messages * Leaving the public room is possible once again * Avoid unnecessary network traffic related to number of shared folders and files * Reduced memory usage on Windows and macOS ### Issues closed on GitHub * Version 3.0.1 and 3.0.2's Nicotine+.exe detected as a virus by Malwarebytes ([#1012](https://github.com/nicotine-plus/nicotine-plus/issues/1012)) * Username Wrong Color in Chat ([#1013](https://github.com/nicotine-plus/nicotine-plus/issues/1013)) * free slot setup ([#1014](https://github.com/nicotine-plus/nicotine-plus/issues/1014)) * 'invalid operation on closed shelf' while rescaning shares ([#1016](https://github.com/nicotine-plus/nicotine-plus/issues/1016)) * Complete file remains in Incomplete Downloads folder ([#1019](https://github.com/nicotine-plus/nicotine-plus/issues/1019)) * User's shared file list cannot be saved to disk, due to a mismatch in the number of arguments on function call. ([#1024](https://github.com/nicotine-plus/nicotine-plus/issues/1024)) * Deprecated messages related to privileges? ([#1025](https://github.com/nicotine-plus/nicotine-plus/issues/1025)) * line 716 ([#1026](https://github.com/nicotine-plus/nicotine-plus/issues/1026)) * line 707 ([#1029](https://github.com/nicotine-plus/nicotine-plus/issues/1029)) * line 666, ([#1030](https://github.com/nicotine-plus/nicotine-plus/issues/1030)) * Problems with new interface in 3.0 ([#1033](https://github.com/nicotine-plus/nicotine-plus/issues/1033)) * line 642 ([#1037](https://github.com/nicotine-plus/nicotine-plus/issues/1037)) ## Version 3.0.2 (March 1, 2021) ### Corrections * Fixed a regression where users could not be added to the buddy list * Fixed an issue where file extension info could appear incorrectly in the transfer list * Fixed an issue where root directories were not shared properly ### Issues closed on GitHub * Cannot Add Users to Buddy List ([#1011](https://github.com/nicotine-plus/nicotine-plus/issues/1011)) ## Version 3.0.1 (February 26, 2021) ### Changes * Improved UI performance when loading many search results * Main menu can now be opened using the F10 key * The list of keyboard shortcuts can now be opened using Ctrl+? * Away status is now remembered between sessions ### Corrections * Fixed several issues causing the status of an upload to be stuck if the user logged out * Fixed a few chat room commands that did not work previously * Fixed an issue where country flags were missing for some users that rejoined a room * Several improvements and bug fixes to the plugin system * Flatpak: added support for MPRIS in the Now Playing-feature * Windows: fixed an issue where root directories could not be shared * macOS: fixed an issue where Nicotine+ would crash on startup on some systems ### Issues closed on GitHub * New installation in Big Sur. Doesn't scan shared folders. ([#899](https://github.com/nicotine-plus/nicotine-plus/issues/899)) * Download speed after restart ([#918](https://github.com/nicotine-plus/nicotine-plus/issues/918)) * Pluginsystem related issues, views and ideas [Updated] ([#990](https://github.com/nicotine-plus/nicotine-plus/issues/990)) * [Windows] Certifi not installed ([#996](https://github.com/nicotine-plus/nicotine-plus/issues/996)) * Enable CTCP-like private message responses (client version) Bool ([#998](https://github.com/nicotine-plus/nicotine-plus/issues/998)) * Sharing a whole hard disk drive content doesn't work ([#999](https://github.com/nicotine-plus/nicotine-plus/issues/999)) * CTCP_VERSION broke ([#1001](https://github.com/nicotine-plus/nicotine-plus/issues/1001)) * v3.0 not starting on macos big sur 11.2.1 ([#1002](https://github.com/nicotine-plus/nicotine-plus/issues/1002)) * Make opening of Window's file manager (File Explorer) more generic ([#1004](https://github.com/nicotine-plus/nicotine-plus/issues/1004)) * missing python req in setup.py ([#1006](https://github.com/nicotine-plus/nicotine-plus/issues/1006)) ## Version 3.0.0 (February 12, 2021) ### Changes * Introduced a new design utilizing header bars (to use the old design, uncheck Menu -> View -> Use Header Bar) * Improved UI responsiveness when scanning shares * Improved UI performance when multiple tabs are open * Added transfer statistics dialog * Added help window for keyboard shortcuts * Added an option to set a global font * Added support for text completion when typing in the search entry * Added a "Browse Folder" option for search results * Search results can now be filtered by file type * Added an option to clear search and filter history * Columns can now be reordered by dragging them to the desired location * Context menus for tabs now include an option to close all tabs * Added context menu items for viewing and deleting logs (chatrooms, private chat, log pane) * Added a keyboard shortcut to close tabs (Ctrl+W / Alt+F4) * Context menus can now be opened by long-pressing on a touch screen * Context menus can now be opened with the keyboard (Menu Key / Shift+F10) * The number of selected files is now visible in context menus * Added an option to copy the file path of a selected file using Ctrl+C * Added file properties dialog for user browse * Improved the default color scheme * Several other minor improvements ### Corrections * Fixed an issue where upload speed limits were not applied on startup * Fixed an issue where UPnP portforwarding did not succeed with certain routers * Fixed an issue where enabling the geographical paranoia option would prevent search results from being delivered to others * Fixed issues where certain uploads would be stuck in a "Cancelled" state * Fixed a Windows-specific issue where the config file did not always save * Fixed an macOS-specific issue where opening a folder did not work * Fixed an issue where custom commands registered in plugins did not work * Several other minor corrections ### Issues closed on GitHub * Nicotine will not login to server ([#904](https://github.com/nicotine-plus/nicotine-plus/issues/904)) * File not shared ! ([#905](https://github.com/nicotine-plus/nicotine-plus/issues/905)) * Backup of the slide position in the user browse tab ([#908](https://github.com/nicotine-plus/nicotine-plus/issues/908)) * Save share list to disk => user tab ([#909](https://github.com/nicotine-plus/nicotine-plus/issues/909)) * Double-clicking on shares ([#917](https://github.com/nicotine-plus/nicotine-plus/issues/917)) * Fix viewing of shared files ([#919](https://github.com/nicotine-plus/nicotine-plus/issues/919)) * WinError 3, "the system cannot find the path specified" ([#920](https://github.com/nicotine-plus/nicotine-plus/issues/920)) * Replace usage of GtkComboBox with GtkComboBoxText ([#921](https://github.com/nicotine-plus/nicotine-plus/issues/921)) * nicotine-plus.org certificate expired ([#922](https://github.com/nicotine-plus/nicotine-plus/issues/922)) * Cyrillic characters don't display correctly in chat rooms (Unicode issue?) ([#925](https://github.com/nicotine-plus/nicotine-plus/issues/925)) * Log windows scroll back to begin after any new entry. ([#926](https://github.com/nicotine-plus/nicotine-plus/issues/926)) * Config resetting when quitting and opening again ([#934](https://github.com/nicotine-plus/nicotine-plus/issues/934)) * nicotine.po ([#936](https://github.com/nicotine-plus/nicotine-plus/issues/936)) * Bug: Browsing your own shares with "Share only to buddies" enabled isn't possible via User browse ([#940](https://github.com/nicotine-plus/nicotine-plus/issues/940)) * Bug: Displayed shared files count in Chat rooms / User info inconsistent ([#941](https://github.com/nicotine-plus/nicotine-plus/issues/941)) * Feature Request: Clear filters button ([#944](https://github.com/nicotine-plus/nicotine-plus/issues/944)) * Feature Request: Allow regular expressions in Country field of Search Filters ([#946](https://github.com/nicotine-plus/nicotine-plus/issues/946)) * Config Bug: WinError 32 + WinError 2: Can't rename config file, error & The system cannot find the file specified ([#949](https://github.com/nicotine-plus/nicotine-plus/issues/949)) * Feature Request: Clear Search Result Filter History ([#950](https://github.com/nicotine-plus/nicotine-plus/issues/950)) * Feature Request: A method to quit via Tray Icon ([#951](https://github.com/nicotine-plus/nicotine-plus/issues/951)) * Windows Bug: Can't bring Nicotine+ to the foreground if one of its popup windows are open ([#953](https://github.com/nicotine-plus/nicotine-plus/issues/953)) * Windows Bug: Preferences popup window is slow to open on occasion ([#954](https://github.com/nicotine-plus/nicotine-plus/issues/954)) * Now Playing ([#957](https://github.com/nicotine-plus/nicotine-plus/issues/957)) * Filtering by "10m" gives files >=10MiB, but filtering "10MiB" gives files >=9.54MiB ([#961](https://github.com/nicotine-plus/nicotine-plus/issues/961)) * Setting Plugin /commands ([#962](https://github.com/nicotine-plus/nicotine-plus/issues/962)) * Feature Request: Search Wishlist: Change "Select All" Button to "Clear All" ([#963](https://github.com/nicotine-plus/nicotine-plus/issues/963)) * Feature Request: Indication that a search tab was opened automatically by the wishlist ([#964](https://github.com/nicotine-plus/nicotine-plus/issues/964)) * Feature Request: Option to choose the search result filter's tab bar position ([#965](https://github.com/nicotine-plus/nicotine-plus/issues/965)) * Bug: Clearing all active filters requires double-Enter for next filter attempt ([#966](https://github.com/nicotine-plus/nicotine-plus/issues/966)) * MacOS 11.1 Open folder fails ([#970](https://github.com/nicotine-plus/nicotine-plus/issues/970)) * MacOS 11.1, open folder opens the wrong directory ([#971](https://github.com/nicotine-plus/nicotine-plus/issues/971)) * MacOS 11.1, wrong flag in buddy list ([#972](https://github.com/nicotine-plus/nicotine-plus/issues/972)) * New bundled UPnP is not working ([#973](https://github.com/nicotine-plus/nicotine-plus/issues/973)) * Replace GtkFileChooserButton with a custom button widget ([#975](https://github.com/nicotine-plus/nicotine-plus/issues/975)) * Windows: Toggle show / minimize app on taskbar icon click ([#976](https://github.com/nicotine-plus/nicotine-plus/issues/976)) * Feature Request: Enable tooltips for long strings that are cut off by another column ([#977](https://github.com/nicotine-plus/nicotine-plus/issues/977)) * What is causing the log "Filtered out inexact or incorrect search result ... from user X"? ([#979](https://github.com/nicotine-plus/nicotine-plus/issues/979)) * Bug: Private chat tabs closed/discarded without manually doing so ([#983](https://github.com/nicotine-plus/nicotine-plus/issues/983)) * Bug: Unable to reliably close search tabs via middle mouse button click ([#984](https://github.com/nicotine-plus/nicotine-plus/issues/984)) * Feature Request: Log Viewer / Context menu items to browse logs in system text editor ([#986](https://github.com/nicotine-plus/nicotine-plus/issues/986)) * Failure to report buddy shares ([#988](https://github.com/nicotine-plus/nicotine-plus/issues/988)) ## Version 2.2.2 (December 15, 2020) ### Changes * Fixed an issue where the list of queued downloads would not be restored on startup ## Version 2.2.1 (December 14, 2020) Changes * Fixed an issue where the file scanner wouldn't scan a folder completely if a hidden subfolder was detected * Fixed an issue where invalid audio metadata in shared files could cause stability issues while running Nicotine+ * Fixed a crash when trying to start Nicotine+ on a non-English Windows system * Fixed an issue where a "File not shared" status was sent when attempting to upload certain files * Geo block feature is functional again * Translations for the menu bar now show up in the UI again Issues closed on GitHub * No icons in FreeBSD ([#889](https://github.com/nicotine-plus/nicotine-plus/issues/889)) * GeoBlock Not Blocking ([#891](https://github.com/nicotine-plus/nicotine-plus/issues/891)) * Nicotine v2.2.0 immediately crashes on startup on Windows 10 v19042.630 ([#893](https://github.com/nicotine-plus/nicotine-plus/issues/893)) ## Version 2.2.0 (December 4, 2020) ### Changes * Modernized the default icon theme and several parts of the UI * Searching for file names containing special characters returns more search results than previously * Reduced the number of connectivity issues when transferring files from and to other users * Downloading folders recursively works properly again * Updated keyboard shortcuts, since the old ones conflicted with accelerator keys * Tray icons are properly detected in more cases * User browse and user info tabs now open immediately when requesting info for users * Show info message if user shares can't be loaded * Minor performance improvements when uploading a lot of files * Slightly improved startup times * Improved UI responsiveness when browsing your own shares * Added option to minimize Nicotine+ to tray on startup * Added "Now Playing Search" plugin for searching files based on data from songs playing in your media player * Added "Now Playing Sender" plugin for automatically sending names of songs playing to select chat rooms * Builtin plugins load properly on Windows again * Modified config backup behavior to not back up the config if "Cancel" is pressed in the file chooser * Shares lists saved in older versions of Nicotine+ can now be loaded again * Peer-to-peer (direct) private messaging works properly again * Fixed a crash when checking for stuck downloads (regression in Nicotine+ 2.1.2) * General usability improvements to macOS builds * Removed option to stop responding to search requests for certain time periods * Removed dbus-python, libnotify, miniupnpc, pytaglib and xdg-utils dependencies, as functionality is now handled by Nicotine+ * Multiple under-the-hood code improvements and code style changes, as well as smaller bug fixes ### Issues closed on GitHub * Brew OSX Install ([#58](https://github.com/nicotine-plus/nicotine-plus/issues/58)) * a separate program for database scanning ([#443](https://github.com/nicotine-plus/nicotine-plus/issues/443)) * Failed to map the external WAN port: Invalid Args ([#597](https://github.com/nicotine-plus/nicotine-plus/issues/597)) * After requesting user info put that user's info tab on top. ([#651](https://github.com/nicotine-plus/nicotine-plus/issues/651)) * Feature request: share and/or cache message connections to remote clients ([#663](https://github.com/nicotine-plus/nicotine-plus/issues/663)) * Search Now playing ([#664](https://github.com/nicotine-plus/nicotine-plus/issues/664)) * Compile pytaglib for Python 2 or 3? - Error Trying To Run 2.1.1 ([#726](https://github.com/nicotine-plus/nicotine-plus/issues/726)) * Follow X Session Management Protocol ([#729](https://github.com/nicotine-plus/nicotine-plus/issues/729)) * sometimes, nicotine eats all memory ([#750](https://github.com/nicotine-plus/nicotine-plus/issues/750)) * provided extensions doesn't load ([#761](https://github.com/nicotine-plus/nicotine-plus/issues/761)) * Enabled plugins are no more activated at startup ([#762](https://github.com/nicotine-plus/nicotine-plus/issues/762)) * Plugin properties aren't editable ([#763](https://github.com/nicotine-plus/nicotine-plus/issues/763)) * some users aren't browsable ([#766](https://github.com/nicotine-plus/nicotine-plus/issues/766)) * tray icon problem ([#767](https://github.com/nicotine-plus/nicotine-plus/issues/767)) * Connection issue ([#768](https://github.com/nicotine-plus/nicotine-plus/issues/768)) * Uploads Cancelled ([#784](https://github.com/nicotine-plus/nicotine-plus/issues/784)) * Download recursive ([#790](https://github.com/nicotine-plus/nicotine-plus/issues/790)) * not sure if this is a bug or something else ([#791](https://github.com/nicotine-plus/nicotine-plus/issues/791)) * Can't scan any songs ([#798](https://github.com/nicotine-plus/nicotine-plus/issues/798)) * Search problem? ([#822](https://github.com/nicotine-plus/nicotine-plus/issues/822)) * windows unstable build can't rebuild shares ([#829](https://github.com/nicotine-plus/nicotine-plus/issues/829)) * Nicotine 2.1.2 fails to launch in FreeBSD due to missing pytaglib ([#843](https://github.com/nicotine-plus/nicotine-plus/issues/843)) * Download Recursive ([#844](https://github.com/nicotine-plus/nicotine-plus/issues/844)) * Option to start application hidden when tray icon enabled ([#864](https://github.com/nicotine-plus/nicotine-plus/issues/864)) * Missing application icon from window list ([#879](https://github.com/nicotine-plus/nicotine-plus/issues/879)) * Python 3.8 Crashes ([#882](https://github.com/nicotine-plus/nicotine-plus/issues/882)) ## Version 2.1.2 (October 12, 2020) ### Changes * Contents of a shared folder are now properly sent to other users * Improved performance and memory usage when scanning shares * Large memory usage reductions when many rooms and private chats are open * Sharing downloaded files now works properly * Private messages sent while the user was offline are shown separately from new messages * Added transfer speeds and shortcuts to downloads/uploads in the tray * Multiple under-the-hood code improvements and code style changes ### Issues closed on GitHub * Improve code style/consistency ([#377](https://github.com/nicotine-plus/nicotine-plus/issues/377)) * debian packages ([#530](https://github.com/nicotine-plus/nicotine-plus/issues/530)) * running from source - missing reqs ([#531](https://github.com/nicotine-plus/nicotine-plus/issues/531)) * SIGABRT when scanning corrupt/empty FLAC file ([#730](https://github.com/nicotine-plus/nicotine-plus/issues/730)) ## Version 2.1.1 (September 26, 2020) ### Changes * Improved speed limit calculations for file transfers * Added option to enable dark mode theme * Added option to copy a previous search term when right-clicking a search tab * Replaced text search dialog with search bar * If multiple file transfers are in progress, the UI now updates properly * Auto-joining the public chat room now works properly * Copying text with Ctrl-C now works properly again * Added option to log debug messages to file * Several minor bug fixes ### Issues closed on GitHub * Please put whole search string after/before "results: x/y" ([#383](https://github.com/nicotine-plus/nicotine-plus/issues/383)) * replace log search function with search/filter thingybob, send logs to logfile. ([#387](https://github.com/nicotine-plus/nicotine-plus/issues/387)) * Transfer connection initiation following an unallowed (queued) transfer response ([#653](https://github.com/nicotine-plus/nicotine-plus/issues/653)) * Minor issues to fix for 2.1.1 ([#659](https://github.com/nicotine-plus/nicotine-plus/issues/659)) * Windows 10 dark theme support ([#661](https://github.com/nicotine-plus/nicotine-plus/issues/661)) * Wrap filters into one line ([#669](https://github.com/nicotine-plus/nicotine-plus/issues/669)) * Public room cannot be auto-joined ([#672](https://github.com/nicotine-plus/nicotine-plus/issues/672)) ## Version 2.1.0 (September 12, 2020) ### Changes * Major performance improvements when rescanning shared files and sending user browse responses to others * Several performance and stability improvements related to connections and file transfers * Several Windows fixes regarding memory leaks, unresponsiveness and issues when starting Nicotine+ * Reduced memory usage while rescanning shared files * Consistent startup times no matter the number of shared files. On large file shares, this cuts down startup times from tens of seconds to 1-2 seconds, depending on your hardware. * Numbers are now appended to the file names of duplicate downloads * Your personal upload speed is no longer reported as 0 B/s * In folder/user grouping mode, selecting a user or folder now allows you to retry/cancel all downloads under them * Added quick-access checkbox for enabling/disabling private room invitations * Replaced ticker banner with room wall, which displays individual messages from room users * "Send to player"-feature is functional again * Queue position of downloads is now asked automatically * The wishlist feature now works as intended, sending one search at a time instead of three. Wishlist items can also be renamed. * Improved notification settings * Improved readability in search results and transfer views * Several other UI fixes and improvements * A rare issue where all tabs were hidden on startup has been fixed * Using non-Latin characters in the Windows client now works properly again * The Windows installer size was reduced from ~40 MB to ~25 MB * The Windows installer now removes old Nicotine+ system files before updating installations * Removed support for detachable tabs due to low usage and bugs * Replaced Mutagen with pytaglib for audio file metadata scanning due to performance issues ### Issues closed on GitHub * Brew OSX Install ([#58](https://github.com/nicotine-plus/nicotine-plus/issues/58)) * Flatpak build ([#102](https://github.com/nicotine-plus/nicotine-plus/issues/102)) * Fix remaining GTK warnings ([#290](https://github.com/nicotine-plus/nicotine-plus/issues/290)) * right click user implicitly selects all files downloading from that user. ([#308](https://github.com/nicotine-plus/nicotine-plus/issues/308)) * two cds saved in the same folder ([#313](https://github.com/nicotine-plus/nicotine-plus/issues/313)) * Fatal error detected" when trying to run Nicotine on Windows 10 ([#413](https://github.com/nicotine-plus/nicotine-plus/issues/413)) * RAM usage ([#416](https://github.com/nicotine-plus/nicotine-plus/issues/416)) * if no close button on tabs it's not possible to close User search file notebook ([#428](https://github.com/nicotine-plus/nicotine-plus/issues/428)) * Question; what diff between scanning and rebuilding share ? ([#430](https://github.com/nicotine-plus/nicotine-plus/issues/430)) * notify sharelist is empty ([#434](https://github.com/nicotine-plus/nicotine-plus/issues/434)) * double click is received on selection despite being performed on blank space ([#437](https://github.com/nicotine-plus/nicotine-plus/issues/437)) * align columns text to left, right or center ([#438](https://github.com/nicotine-plus/nicotine-plus/issues/438)) * url catching stop to work since update of 2 days ago ([#457](https://github.com/nicotine-plus/nicotine-plus/issues/457)) * Font worrie > ([#458](https://github.com/nicotine-plus/nicotine-plus/issues/458)) * progress bar stuck at 100% ([#454](https://github.com/nicotine-plus/nicotine-plus/issues/454)) * Question : how to auto-join a room ? ([#464](https://github.com/nicotine-plus/nicotine-plus/issues/464)) * Every you can right click a user, but not in the chat, there it's left click. ([#466](https://github.com/nicotine-plus/nicotine-plus/issues/466)) * Tree view expand/collapse is not respected on new transfer ([#473](https://github.com/nicotine-plus/nicotine-plus/issues/473)) * application content is not displayed properly with tabs set to side ([#474](https://github.com/nicotine-plus/nicotine-plus/issues/474)) * Completed downloads are re-Queued ([#477](https://github.com/nicotine-plus/nicotine-plus/issues/477)) * search tab "close thistab" missing if 3 tabs are open ([#481](https://github.com/nicotine-plus/nicotine-plus/issues/481)) * close button in About Nicotine+ doesn't work ([#485](https://github.com/nicotine-plus/nicotine-plus/issues/485)) * Wishlist has issues with chinese characters ([#498](https://github.com/nicotine-plus/nicotine-plus/issues/498)) * Wishlist - Ability to rename wishlist searches ([#499](https://github.com/nicotine-plus/nicotine-plus/issues/499)) * Certain searches don't stop even after closing the tab, restarting the program, and/or disconnecting and reconnecting to Soulseek ([#520](https://github.com/nicotine-plus/nicotine-plus/issues/520)) * stacktrace: struct.error: required argument is not an integer ([#527](https://github.com/nicotine-plus/nicotine-plus/issues/527)) * something goes wrong .... ([#529](https://github.com/nicotine-plus/nicotine-plus/issues/529)) * Warning: unknown object type 'bool' in message 'pynicotine.slskmessages.FileSearchResult' ([#535](https://github.com/nicotine-plus/nicotine-plus/issues/535)) * regression on open files on OpenBSD ([#536](https://github.com/nicotine-plus/nicotine-plus/issues/536)) * Chat messages went nowhere and I got this trace. ([#545](https://github.com/nicotine-plus/nicotine-plus/issues/545)) * filter out unspecific searches ([#551](https://github.com/nicotine-plus/nicotine-plus/issues/551)) * Mouse cursor does not indicate draggable borders ([#552](https://github.com/nicotine-plus/nicotine-plus/issues/552)) * Network share issue ([#559](https://github.com/nicotine-plus/nicotine-plus/issues/559)) * possibly worrie with upload stuck in connecting state if folder uploaded ([#564](https://github.com/nicotine-plus/nicotine-plus/issues/564)) * Let user choose for International flag ([#569](https://github.com/nicotine-plus/nicotine-plus/issues/569)) * Search -> Right Click -> Download folder(s) does nothing ([#574](https://github.com/nicotine-plus/nicotine-plus/issues/574)) * Some weird characters prevents download of file ([#578](https://github.com/nicotine-plus/nicotine-plus/issues/578)) * some margin lines are missing (possible qt/gtk issue) ([#593](https://github.com/nicotine-plus/nicotine-plus/issues/593)) * arrows are missing from the tree view collapse/expand ([#594](https://github.com/nicotine-plus/nicotine-plus/issues/594)) * Nicotine Freezes With Too Many Transfers ([#609](https://github.com/nicotine-plus/nicotine-plus/issues/609)) ## Version 2.0.1 (July 16, 2020) ### Changes * Fixed an issue where search requests from others weren't processed * The update checker now shows the latest version properly ## Version 2.0.0 (July 14, 2020) ### Changes * Ported from Python 2 to Python 3 * Ported from GTK2 to GTK3 (PyGTK to PyGObject) * Support for HiDPI displays * Search results and transfers can now be grouped by folder * Support for transfers larger than 2 GB in size * Transfers and search results now support drag-select * Performance improvements in downloads, uploads and search views * Special characters (e.g. -, ') are now removed from search terms by default, to receive more search results. This behavior can be toggled in Settings -> Misc -> Searches. * Excluding search results by placing a - sign in front of a word now works properly * Search filters now check the directory path * Column widths are now remembered between sessions * Added option to open previous tab on startup * Added option to hide buddy list * Custom messages can now be sent to leechers in Settings -> Misc -> Plugins -> Leech detector * Plugins are now bundled with Nicotine+ installations by default * Nicotine+ now follows the XDG Base Directory Specification * Replaced deprecated dependencies with maintained ones * Added unit and DEP-8 continuous integration testing * Minor UI cleanups * General code cleanups, removed dead code * Replaced non-free sound effects ### Issues closed on GitHub * Columns Position Not Being Maintained ([#8](https://github.com/nicotine-plus/nicotine-plus/issues/8)) * Add "Group by folder" option to search results ([#17](https://github.com/nicotine-plus/nicotine-plus/issues/17)) * Downloads tab hanging when adding a lot of files ([#34](https://github.com/nicotine-plus/nicotine-plus/issues/34)) * NTFS support on linux ([#49](https://github.com/nicotine-plus/nicotine-plus/issues/49)) * Show network drives when adding a shared directory. ([#52](https://github.com/nicotine-plus/nicotine-plus/issues/52)) * send to player does not work. ([#53](https://github.com/nicotine-plus/nicotine-plus/issues/53)) * CPU usage spikes and remains high after period of usage ([#54](https://github.com/nicotine-plus/nicotine-plus/issues/54)) * Segfault When Getting User Info ([#57](https://github.com/nicotine-plus/nicotine-plus/issues/57)) * Segmentation fault on Ubuntu Gnome 17.04 ([#60](https://github.com/nicotine-plus/nicotine-plus/issues/60)) * filenames with ? in them get stuck on uploads list ([#61](https://github.com/nicotine-plus/nicotine-plus/issues/61)) * Nicotine+ Windows 8.1 (64-bit) mutagen attempts to handle non-video files ([#62](https://github.com/nicotine-plus/nicotine-plus/issues/62)) * Nicotine+ 1.4.1, windows 8.1 (64-bit) errors when using UPNP ([#63](https://github.com/nicotine-plus/nicotine-plus/issues/63)) * Nicotine+ 1.4.1, windows 8.1 (64-bit) Spurious error messages ([#64](https://github.com/nicotine-plus/nicotine-plus/issues/64)) * Nicotine + 1.4.1, windows 8.1 (64-bit) buttons not working ([#65](https://github.com/nicotine-plus/nicotine-plus/issues/65)) * Downloads directory is not shared ([#66](https://github.com/nicotine-plus/nicotine-plus/issues/66)) * Can't share directories ([#68](https://github.com/nicotine-plus/nicotine-plus/issues/68)) * Question: Is Development Dead? ([#73](https://github.com/nicotine-plus/nicotine-plus/issues/73)) * select ValueError: filedescriptor out of range in select() ([#77](https://github.com/nicotine-plus/nicotine-plus/issues/77)) * blurry tray icon in kde plasma ([#81](https://github.com/nicotine-plus/nicotine-plus/issues/81)) * Problems sharing files ([#83](https://github.com/nicotine-plus/nicotine-plus/issues/83)) * Choosing "Download containing folder(s)" from search results does nothing ([#84](https://github.com/nicotine-plus/nicotine-plus/issues/84)) * Uploads not working ([#85](https://github.com/nicotine-plus/nicotine-plus/issues/85)) * UI very condensed on high-dpi linux. ([#88](https://github.com/nicotine-plus/nicotine-plus/issues/88)) * Wishlist returns empty results for foreign characters ([#89](https://github.com/nicotine-plus/nicotine-plus/issues/89)) * New Commits - Is Development Back? ([#90](https://github.com/nicotine-plus/nicotine-plus/issues/90)) * Filter doesn't include directory path ([#91](https://github.com/nicotine-plus/nicotine-plus/issues/91)) * XDG Base Directory Support ([#94](https://github.com/nicotine-plus/nicotine-plus/issues/94)) * Port to python3 ([#99](https://github.com/nicotine-plus/nicotine-plus/issues/99)) * Nicotine+ 1.4.2, Debian 9 (64-bit) Downloading file size >2GB appears as negative numbers, files near 4GB download 0 byte. ([#100](https://github.com/nicotine-plus/nicotine-plus/issues/100)) * Nicotine+ 1.4.1 don't handle invalid characters in Windows ([#101](https://github.com/nicotine-plus/nicotine-plus/issues/101)) * Random crash on Raspbian ([#103](https://github.com/nicotine-plus/nicotine-plus/issues/103)) * Bitrate not shown for most music in search results ([#104](https://github.com/nicotine-plus/nicotine-plus/issues/104)) * Nicotine+ 1.4.2, Debian 9 (64 bit) : Can't get shared files + current downloads disappeared : since the last but one update, from branch master ([#107](https://github.com/nicotine-plus/nicotine-plus/issues/107)) * Website is badly out of date ([#109](https://github.com/nicotine-plus/nicotine-plus/issues/109)) * images seem to be integrated from the launch directory if they have special names ([#113](https://github.com/nicotine-plus/nicotine-plus/issues/113)) * Not working on Ubuntu 20.04 Focal Fossa ([#115](https://github.com/nicotine-plus/nicotine-plus/issues/115)) * Please update Nicotine to work on the latest Ubuntu (20.04) ([#123](https://github.com/nicotine-plus/nicotine-plus/issues/123)) * Compiled 'Master Branch' - Nicotine is Black Blank Screen? ([#140](https://github.com/nicotine-plus/nicotine-plus/issues/140)) * Question: 1.4.3 - Columns Hiding? ([#143](https://github.com/nicotine-plus/nicotine-plus/issues/143)) * info user correct extra typo ([#144](https://github.com/nicotine-plus/nicotine-plus/issues/144)) * select user transfer does not select anything ([#145](https://github.com/nicotine-plus/nicotine-plus/issues/145)) * clicking hyperlinks does not open browser ([#146](https://github.com/nicotine-plus/nicotine-plus/issues/146)) * left click does not work on users nickname in rooms ([#147](https://github.com/nicotine-plus/nicotine-plus/issues/147)) * Interest tab : text zone too small ([#148](https://github.com/nicotine-plus/nicotine-plus/issues/148)) * request : adding file chooser preview widget in info user picture setting ([#149](https://github.com/nicotine-plus/nicotine-plus/issues/149)) * menu separator does not follow gtk+ rules ([#151](https://github.com/nicotine-plus/nicotine-plus/issues/151)) * 1.4.3 Linux - Hiding Tabs - Always Opens Now Under Buddy List ([#154](https://github.com/nicotine-plus/nicotine-plus/issues/154)) * strace shows weird file access syscalls ([#155](https://github.com/nicotine-plus/nicotine-plus/issues/155)) * (world) flags missing at startup / and buddy list ([#161](https://github.com/nicotine-plus/nicotine-plus/issues/161)) * setup.py: DistutilsFileError ([#164](https://github.com/nicotine-plus/nicotine-plus/issues/164)) * warnings causes by userlist resizing columns ([#165](https://github.com/nicotine-plus/nicotine-plus/issues/165)) * Question: No more charsets selection ? ([#180](https://github.com/nicotine-plus/nicotine-plus/issues/180)) * my gtk3 theme gives checkbuttons looks bigger ([#181](https://github.com/nicotine-plus/nicotine-plus/issues/181)) * Question - Bug? - Log Window Issue ([#186](https://github.com/nicotine-plus/nicotine-plus/issues/186)) * wait a minute, only spellchecker is missing ? ([#190](https://github.com/nicotine-plus/nicotine-plus/issues/190)) * userlist for myself does not display files number ([#192](https://github.com/nicotine-plus/nicotine-plus/issues/192)) * AttributeError in changecolour(): PrivateChat object has no attribute 'tag_log' ([#194](https://github.com/nicotine-plus/nicotine-plus/issues/194)) * Add support for >2GB downloads ([#201](https://github.com/nicotine-plus/nicotine-plus/issues/201)) * IndexError at start on Debian Buster ([#202](https://github.com/nicotine-plus/nicotine-plus/issues/202)) * Speed up program startup times ([#215](https://github.com/nicotine-plus/nicotine-plus/issues/215)) * custom tray icons not respected ([#239](https://github.com/nicotine-plus/nicotine-plus/issues/239)) * Request: Modes Tab Placement? ([#242](https://github.com/nicotine-plus/nicotine-plus/issues/242)) * text in log aera in chat rooms lag to display from entry ([#253](https://github.com/nicotine-plus/nicotine-plus/issues/253)) * /now playing does not work after nic+ restart ([#255](https://github.com/nicotine-plus/nicotine-plus/issues/255)) * add grouping by path ([#269](https://github.com/nicotine-plus/nicotine-plus/issues/269)) * on kde LMB on tray icon brings menu, not app ([#270](https://github.com/nicotine-plus/nicotine-plus/issues/270)) * lower on an int? ([#278](https://github.com/nicotine-plus/nicotine-plus/issues/278)) * right-clicking file that user 2 downloads points to user 1 ([#297](https://github.com/nicotine-plus/nicotine-plus/issues/297)) * Private Chat tab does not get notified on receiving a message ([#299](https://github.com/nicotine-plus/nicotine-plus/issues/299)) * RMB doesn't select what's underneath it ([#300](https://github.com/nicotine-plus/nicotine-plus/issues/300)) * unable to download to created folder ([#301](https://github.com/nicotine-plus/nicotine-plus/issues/301)) * status never reach 100% because of filtered files ([#302](https://github.com/nicotine-plus/nicotine-plus/issues/302)) * twice downloaded same folder, aborted duplicate files, remove aborted does not remove ([#305](https://github.com/nicotine-plus/nicotine-plus/issues/305)) * downloading folder from user browse doesn't work ([#311](https://github.com/nicotine-plus/nicotine-plus/issues/311)) * cannot connect ([#312](https://github.com/nicotine-plus/nicotine-plus/issues/312)) * In download page, pressing Delete key removes 2 files instead of 1 ([#314](https://github.com/nicotine-plus/nicotine-plus/issues/314)) * invalid path ([#318](https://github.com/nicotine-plus/nicotine-plus/issues/318)) * Distrib message type 93 unknown ([#322](https://github.com/nicotine-plus/nicotine-plus/issues/322)) * Connection issues after search ([#329](https://github.com/nicotine-plus/nicotine-plus/issues/329)) * Window decorator close button doesn't work ([#330](https://github.com/nicotine-plus/nicotine-plus/issues/330)) * Question: group by folders vs group by users ([#335](https://github.com/nicotine-plus/nicotine-plus/issues/335)) * [#312](https://github.com/nicotine-plus/nicotine-plus/issues/312) continued, cannot connect ([#336](https://github.com/nicotine-plus/nicotine-plus/issues/336)) * Can't find anything from Wu-tang ([#343](https://github.com/nicotine-plus/nicotine-plus/issues/343)) * download stuck in a weird way ([#344](https://github.com/nicotine-plus/nicotine-plus/issues/344)) * Peer messages causing socket error ([#346](https://github.com/nicotine-plus/nicotine-plus/issues/346)) * expand/collapse all missing in upload tab ([#354](https://github.com/nicotine-plus/nicotine-plus/issues/354)) * AttributeError: 'Uploads' object has no attribute 'transfers' ([#360](https://github.com/nicotine-plus/nicotine-plus/issues/360)) * remove filtered files when autoremoving ([#374](https://github.com/nicotine-plus/nicotine-plus/issues/374)) * wishlist searches should notify on finding a result, not on attempting to find something ([#380](https://github.com/nicotine-plus/nicotine-plus/issues/380)) * Search log window case insensitive. ([#384](https://github.com/nicotine-plus/nicotine-plus/issues/384)) * Gentoo upnp errors, failed to map the external wan port. ([#385](https://github.com/nicotine-plus/nicotine-plus/issues/385)) ## Version 1.4.3 Unstable * Rolling development release in preparation for 2.0.0 ## Version 1.4.2 (February 17, 2018) ### Issues closed on GitHub * Bitrate - Length - Speed ([#45](https://github.com/nicotine-plus/nicotine-plus/issues/45)) * bug or feature ? ([#47](https://github.com/nicotine-plus/nicotine-plus/issues/47)) ## Version 1.4.1 (February 12, 2017) ### Issues closed on GitHub * 1.4.0 /usr/bin empty ([#38](https://github.com/nicotine-plus/nicotine-plus/issues/38)) * Configure - Directories Page 4 of 5 ([#39](https://github.com/nicotine-plus/nicotine-plus/issues/39)) * Configure - Username ([#40](https://github.com/nicotine-plus/nicotine-plus/issues/40)) * 1.4.0 Text Off Set Under Columns ([#41](https://github.com/nicotine-plus/nicotine-plus/issues/41)) * Make nicotine work with FreeBSD (PR [#44](https://github.com/nicotine-plus/nicotine-plus/issues/44)) ## Version 1.4.0 (January 31, 2017) ### Miscellaneous bugs fixed * Some files were not shown in shares due to broken metadata of these files. * Fix a bug preventing the offline help to open. ### Features * Windows installer refreshed. ### Issues closed on GitHub * Make proper release ([#26](https://github.com/nicotine-plus/nicotine-plus/issues/26)) ### Issues closed on Trac * File Manager / "Open Directory" function in Windows (#717) * Open Directory not working (#945) ## Version 1.3.2 Unstable (January 14, 2017) ### Issues closed on GitHub * Uploads stop working after a while ([#35](https://github.com/nicotine-plus/nicotine-plus/issues/35)) * Can't download from certain users ([#37](https://github.com/nicotine-plus/nicotine-plus/issues/37)) ### Issues closed on Trac * shared files appear not shared to some peers (#744) * Stops Downloading After About 15 Minutes (#759) * Browse Files from Friemds (#762) * Download issue.... (#903) ## Version 1.3.1 Unstable (January 10, 2017) ### Behavior * Displaying results of searches should now be faster and not blocking the UI. * Send a private message to users who queue a directory has been removed. * Hidden directories on Windows are not shared provided you have the pypiwin32 module installed. * Tray icons have been modified to be easier to distribute under debian (DFSG compliant). * New versions are now checked against the Github releases page. * NowPlaying: MPRIS should now be used for Rhythmbox. * The MacOS port has been dropped since nobody will step up and maintain it. * The pseudo transparency (translux) feature has been removed. * Blinking of the trayicon is not recommended and has been removed. * Menu icons have been dropped since they are deprecated by GTK. ### Features * Translations works on Windows. * UPnP support out of the box on Windows. * Refreshed icon and GTK2 theme on Windows. * Gives user the option to load more than 1000 previous chat lines when they rejoin a chat room. * Virtual share system implemented. * You can now browse your buddy shares via the Share menu. * You can now rename your buddy virtual shares via the settings window for shares. * Plugins: can now be toggled on/off. * Plugins: a reddit plugin has been added. * NowPlaying: XMMS Infopipe support has been removed in favor of xmms2. * NowPlaying: BMPx support has been removed. * NowPlaying: Lastfm support has been updated and require an API key. * NowPlaying: Banshee support has been updated. * NowPlaying: Foobar support has been updated. ### Issues closed on GitHub * Question - Nicotine Still Being Developed? ([#1](https://github.com/nicotine-plus/nicotine-plus/issues/1)) * bug in userbrowse.py ([#2](https://github.com/nicotine-plus/nicotine-plus/issues/2)) * Remove max length on settings password field ([#5](https://github.com/nicotine-plus/nicotine-plus/issues/5), [#7](https://github.com/nicotine-plus/nicotine-plus/issues/7)) * Randomly kill connections on select() out of range failure ([#6](https://github.com/nicotine-plus/nicotine-plus/issues/6)) * Fix shares build / crashes caused by bogus metadata ([#10](https://github.com/nicotine-plus/nicotine-plus/issues/10)) * UPnP Port Mapping piles up in the router ([#11](https://github.com/nicotine-plus/nicotine-plus/issues/11)) * Currently broken on windows ([#18](https://github.com/nicotine-plus/nicotine-plus/issues/18)) * File transfers are failing ([#19](https://github.com/nicotine-plus/nicotine-plus/issues/19)) * Fix variable bitrate detection for MP3 files ([#20](https://github.com/nicotine-plus/nicotine-plus/issues/20)) * Information On nicotine-plus.org ([#21](https://github.com/nicotine-plus/nicotine-plus/issues/21)) * Build fails on archlinux, can't copy mo file... ([#22](https://github.com/nicotine-plus/nicotine-plus/issues/22)) * Hidden directory files now showing up in file shares (Windows) ([#23](https://github.com/nicotine-plus/nicotine-plus/issues/23)) * upnp functionality is used despite being config'd as False ([#24](https://github.com/nicotine-plus/nicotine-plus/issues/24)) * userbrowse coredump on GTK 2.24.30+ ([#25](https://github.com/nicotine-plus/nicotine-plus/issues/25)) * "invalid operation on closed shelf" error on every download ([#27](https://github.com/nicotine-plus/nicotine-plus/issues/27)) * Unable to save settings ([#32](https://github.com/nicotine-plus/nicotine-plus/issues/32)) * Clear Finished/Aborted button problem ([#33](https://github.com/nicotine-plus/nicotine-plus/issues/33)) * Settings window slow to open ([#36](https://github.com/nicotine-plus/nicotine-plus/issues/36)) ### Issues closed on Trac * "Abort & Delete" button is mislabeled (#194) * No icon found in nicotine.exe (#512) * French translation and non-translatable strings (#524) * Limiting number of upload slots doesn't work all the time (#651) * Add option to override locale dir (#495) * File and Fast-Configure keyboard shortcuts are the same (#658) * Rescanning shares stalls/fails in some cases (#671) * Distressingly, /al is not working in private chat (#678) * tab completion of user name does not work in private chat (#679) * slskmessages.py:69:__init__:Exception: Programming bug (#697) * upload queue size limits can't be set to "unlimited" (#706) * Impossible to install nicotine without a mouse (#712) * Tray icon is lost after explorer is terminated, doesn't return after explorer is restarted (#715) * nicotine crashed with TypeError in PopulateFilters(): value is of wrong type for this column (#726) * Dont draw eventbox background for tab labels (#727) * Rythmbox Now Playing Error (#750) (#935) * Realpath / filename error (#776) * Connection limit (#802) * Disabled UPnP support due to errors Message (Can We Silence?) (#803) * English text refactorizationillisms (#828) * Cannot download from soulseekqt users (#912) * Corrected Hungarian translation for 1.2.16 (#923) * Nicotine+ 1.2.16 on win7SP164bit - German language (#998) A bunch of outdated bug reports have been closed on Trac. ## Version 1.2.16 (October 31, 2010) ### Behaviour * Updated most country flags (#599) * All messages should now be properly timestamped in the log (#602) * Saving user pictures now appends a timestamp so pictures aren't overwritten ### Features * Foobar support for NowPlaying (#644) ### Bugs * Division-by-zero errors broke transfers (#561) * Some packets were packed incorrectly (#570) * Recursive downloads didn't work (#571) * Search results were improperly formatted (#594) * Copying folder URLS didn't work (#574) * Mid sentence tab completion destroyed input (#562) * Portmapping with MiniUPnPc (the binary) didn't work (#593) * Deprecated raise statements using strings (#613) * Transparency wasn't saved properly (#615) * Shares didn't work properly with out-of-ASCII characters (#623, #345) * Fileshare counter increased on refreshing a filelist (#617) * Program failed to start with a corrupt transfer file (#628) * Network loop crashed on invalid DistribSearch packets * Private rooms often didn't show up in the room list (#641) * nicotine.desktop was missing P2P and Network sub categories (#660) ## Version 1.2.15 (February 16, 2010) ### Behaviour * Changed the description for our .exe files so it shows up as Nicotine+ in firewalls (ticket #498) * When using an upload slot limit, uploads that don't start within 30 seconds are no longer counted as a used slot. This stops a single faulty user from preventing other connections * The clear button in the upload view now clears erred transfers too * Unhide user info tab when a new userinfo is received * Transfer views update less frequently reducing the amount of CPU needed. * xdg-open is now used by default to open folders and play music ### Features * Now-Playing support for Amarok2 (Ticket #423) * FastConfigure dialog for new users (Ticket #482) * Country flags now have tooltips (Ticket #521) * Now-Playing support for Banshee ### Bugs * Collapse mode in upload/download didn't work for newly added files, wasn't remembered with restart (ticket #205) * The packing/unpacking of network messages has been made more explicit. This should make Nicotine+ less likely to fail on different processor types and operating systems (Tickets #486 #493 #518 #540 #548) * Double quotation marks weren't filtered from filenames on Windows systems * Ban list got unintentionally deleted sometimes (Ticket #519) * "Show IP" didn't not work on the userinfo page (Ticket #522) * Wishlist searches would stop working if the setting "Reopen search tabs" was disabled and the user closed the search tab (Ticket #552) * Incoming RoomSearch raised exceptions ### Translations * ><((((*> updated the French translation * djbaloo updated the Hungarian translation ## Version 1.2.14 (October 4, 2009) ### Behaviour * A corrupt configuration file will no longer make Nicotine+ fail on startup (ticket #483) * Multiple shares can now be loaded from the harddrive at the same time ### Features * Support for UPnP through MiniUPnPc (ticket #230) ### Bugs * Search failed to work on certain combinations of OS and processor (ticket #486) * Implemented our own filelist iterator, dramatically reducing the amount of CPU cycles needed to open filelists. Thanks goes to Nick Voronin (ticket #480) * Bitrates for Musepack audio were scanned incorrectly * Saving file lists from users with slashes in the name didn't work * Filesize was incorrect for files around 2 gigabytes and up in userbrowse. ## Version 1.2.13 (September 22, 2009) ### Behaviour * Download queue is stored independently from the normal configuration file (ticket #467) * Non-working connections are cleaned up more aggressively (ticket #473) ### Features * Themes can now use a range of image types, including SVG * Ownership of private rooms is now displayed * Search chatroom logs by pressing F3 * ASF Support in case Mutagen is used * The location of Nicotine+ is restored on startup * Rudimentary download rate limiter * The NowPlaying code for Audacious now supports audtool2 as well ### Bugs * Notifications failed when a user had <> in the name * Highlight icon kept on blinking with detached windows * Fixed links in the Help menu that didn't work (ticket #459) * A few different GUI related bugs that should make Nicotine+ much more responsive and use less CPU: Startup time reduced when there is a queue, queueing many items at a timer, pressing buttons like "Clear Finished" and "Abort User's Upload(s)" * ...and lots of tiny bugs ### Translations * Žygimantas updated Lithuanian translation * Kenny updated Dutch translation * Nils updated Hungarian translation ## Version 1.2.12 (May 26, 2009) ### Behaviour * RGBA mode is no longer on by default, to use it pass the --enable-rgba flag when starting Nicotine+ * On Windows, configuration files are now stored in the user's Application Data folder instead of the installation folder (bug #330) * The configuration screen for shares has been rearranged in order to make it more logical (bug #341) * Support for Mutagen has been added. This will result in more accurate information about bitrates and lengths (bug #259) * Icons have been replaced, the alt-tab icon is increased. * Most external calls now support pipes * Improved German (bug #394) and French translation (thanks goes to ><((((*>) * The dependency for PyVorbis has been removed in favour of Mutagen (bug #409) * Notification popups will no longer stack but a single popup will be updated ### Features * Built-in Webbrowser (MozEmbed) * Ignore by IP * Windows components have been improved * The language selection now uses normal names instead of abbreviations (bug #332) * When switching languages GTK will be translated as well * Hash checking to eliminate duplicates. When a file name conflict arises after a download finishes both files are hashed to make sure the new file is not identical to the old one. * Public Room support has been added * The amount of tracked and displayed search results is now limited, which should allow nicotine+ to cope better with overly generic search terms. Internally a maximum of 1500 are recorded, of which a maximum of 500 are shown. The other 1000 can be retrieved by using the filters. (bug #284) * Notebook tabs can be reordered and hidden, and these settings will be remembered. * Search results are now limited. There are two different limits: 1) The show limit. This is the amount of results shown in the search tabs 2) The store limit. This is the amount of results stored internally. This is useful when using search filters These limits are configurable from the configuration screen. (bug #284) * Nicotine tries to rename itself from 'python' to 'nicotine' for programs like 'ps' (requires procname module) and 'pkill' (bug #355) * 'Remember choice' option in the quit confirmation dialogue * It is possible to ignore people based on their IP address * Import warnings are now shows in the log window as well as in the console (bug #381) * New logging functionality, which means no more messages should get lost in the console * You can change your password now (bug #424) * Misc. improvements to transfer handling * Tab completion can be done by in-line replacement instead of dropdown list * Transfer views now have a 'Place in line' column ### Bugs * The Danish translation is now stored under 'da' * Fixed sorting of percentage (bug #322) * A number of typographical errors have been corrected (bug #334 and #335) * When disabling sound this setting will be loaded correctly now (bug #285) * Repaired sayprivate function from the pluginsystem * The Windows versions now comes with jpeg62.dll (bug #342) * The word '-' is now filtered from search queries (bug #367) * Handling of word wrapping of extremely long words is improved * Tray icon menu on OSX * Private Room handling has improved (bug #432) ## Version 1.2.10 (December 30, 2008) ### Features * Added support for RGBA, enabling Murrine users to use transparency and round menus * Tabs can be reorderen and can be hidden ### Bugs * Fixed bug #177, notification popups are now split into file and directory notifications * Fixed bug #274, cancelling and disowning private rooms bug (fr3shpr1nc3) * Fixed bug #226, file size dropdown in search filters are more readable now * Fixed bug #310, activity icon no longer activates on our own typing * Timestamps in private messages now are displayed correctly * Room searches work again (was broken in 1.2.10alpha) ## Version 1.2.10 Alpha (November 9, 2008) ### Features * Added last.fm to the now-player (gallows) * Added first version of the plugin system * Tabs can be closed using the middle mouse button * Usernames can be copied from the channel list (right click, select the username from the menu) * Added a popup that will inform users in case a local port cannot be bound * Connections will be dropped when the maximum is approached, decreasing the chance for "IOError" messages ### Bugs * 'Send to player' failed because of missing quotes for finished downloads * Fixed a bug with tuple error message causing a traceback * Fixed a translation bug, caused by tabs positions top, left, etc that caused settings dialog to not work properly * Fixed rhytmbox support with "Now Playing" (gallows) * Fixed Audacious support with "Now Playing" (gallows) * Fixed sending out the wrong username with search results * Updated all server references to the new server * A inverted port range no longer causes connection failures * Removed deprecated GTK calls ### Buddylist * Radio buttons now allow the buddylist to be toggled as always visible, in own tab, or in the chatroom tab. ### General Changes * The Edit menu has been broken into Edit, View and Shares menus (similar to Enr1X's patch http://nicotine-plus.org/ticket/231 ) Also fixed the duplicate Alt-B hotkey (hide flags is now Alt-G). * Committed QuinoX's patch for case-insensitive nick completion (#252) ### Chat Rooms * Added Server Message 141, enables Private Chat Room Invitations and thus allows those you invite to get past the annoying server message that warning when a user you've invited 'hasn't enabled private room add'. * Blocking a user's IP address is now easier with the addition of a chatroom popup menu item * Private Rooms: You can now create private rooms via the roomslist popup menu and add users to your private rooms via any chatroom user popup-menu. You can also drop ownership of a private room and drop membership of another person's private room. This feature is currently available on the testing server only. ### Search * Country flags are shown in search results, metadata dialogs ### Settings * Upload and Download transfer lists now have customizable double-click options in Transfers->Events. * A Backup config menu item was added to the Edit menu. This will backup your Nicotine+ config and config.alias (if it exists) into a BZ2 archive. If you cancel the backup filename saving process, an archive with the format 'config backup YYYY-MM-DD HH:MM:SS.tar.bz2' will be created. * Visible colors have been added to the Colour settings (for those who don't read hexadecimal). * Separate fonts for Search, Transfers, Browse and a font for all other lists can now be set. ### Translations * Slovak Translation Updated (Jozef) ## Version 1.2.9 (September 22, 2007) ### Licensing * Relicensed all code under GPLv3 and LGPLv3 ### General Changes * Config menu items that were in the File menu moved to the new Edit menu * Added credits and license note to About Nicotine dialog. * Disable many widgets (entries, buttons, lists) when disconnected from server * User tabs have right-click popup-menus in private, userinfo and userbrowse. * libnotify support added (patch by infinito ticket #176 ) notification-daemon, libnotify and python-notify required * Added a 10 second cooldown between responding to Userinfo and Usershares requests from the same user (to mitigate damage from DOS attacks and simple accidents) * Notification text on tabs can be colored * Notification icons on tabs can be disabled * Close buttons on tabs no longer forced to 18x18px * Close buttons are dynamically added and removed when toggled in settings * Added global unrecommendations list * Merged Amun-Ra's 'Country flag column in Chatroom userlists' (this is a new feature on the testing server) but works with manual IP lookups with GeoIP. This requires the 242 flag images. Additions to several server messages are used instead of GeoIP if they are available. * Simplified GeoIP module loading ### User Info * Added popups to user's interests lists (search, add and remove interests) * Added a zoom and save popup menu to the Userinfo image. ### Shares * Shares are precompressed, before they're sent (Nicotine will recover faster from many shares requests) * Unicode filenames on Win32 are now read and shared properly (should be) ### Settings * Tooltips can be disabled * Settings widgets will now be colored red if their values are invalid. * Your client port and server-reported IP address are shown in Server Settings * Added an option to Shares for the Upload directory path (needs to be set) The upload directory is where your buddies 'uploads' will be saved. * Default colours and clear colours buttons added * All Notebook Tabs can be repositioned and the labels can be rotated 90⁰ under Settings->Interface->Notebook Tabs * Added Exaile to NowPlaying * Added a config option for overriding the default language * URL handlers settings rearranged slightly, combo items in the handlers column * Rearranged the Settings tree and removed some descriptive panes * Added IP blocking and range blocking with * character * Some Entry widgets in settings replaced with SpinBoxes * Userinfo settings now have size data for image * New options to to determine what happens when destroying the main window (show a dialog, close to tray, or quit) ### Search * Search is now a genuine TreeView that supports group-by-user and has a expand/collapse all toggle when grouping is enabled. * Added a Clear results button * Added 'Download containing folder(s) to..' to the search results popup * Open a new socket for every outgoing search result to avoid problems with shared sockets getting closed. * Only close sockets of incoming search results if input/output buffers are empty. (this may still result in the transmitting sockets) * Added Search and Open Directory items to the uploads popup menu * Search results encoding improved (user's encoding, falls back to global) * Search results turn red when a user goes offline (configurable) * Added a 'multiple users' submenu to search results popup ### Transfers * Show total time elapsed and remaining in user's parent row instead of the current transfer's time elapsed and time remaining. * Added a maximum files-per-user limit to the upload queue * Added a 'Clear Failed' item to the uploads menu * Added 'Clear Filtered' and 'Clear Paused' to the downloads menu * Fixed pausing of aborted downloads after reconnecting to the server. * Added an 'Auto-retry Failed' checkbox to downloads (3 minute timer) * Added an 'Autoclear Finished' checkbox to uploads * Notify popups for completed files and completed directories (toggleable) * Added a 'multiple users' submenus ### Chat * Whitespace is now limited to two spaces * Show icon, sound, speech and title notifications for "current" chat tab if the window is hidden. * Notify popups for buddies with "notify" enabled :) * Read chatroom logs (and attempt to parse them) when rejoining a room. Parsing will not work if the logs do not use the default timestamp format. Chat room and Private chat logs are in separate sub-directories, now. * Threaded /aliases and /now commands (GUI no longer freezes) * Use the /detach and /attach chatroom commands to pop chatrooms and private chats into their own windows. * Text-To-Speech support added (configurable under Settings->Misc->Sounds) individual chat rooms can be disabled with the text-to-speech toggle button. Chat messages are read out, and nick mentions are announced. By default, there are commands for flite ( http://www.speech.cs.cmu.edu/flite/ ) and festival ( http://www.cstr.ed.ac.uk/projects/festival/ ). * URL text color is configurable (doesn't effect old links after changing) * Timestamps are now configurable, disableable (under Settings->Chat->Logging) * Log files' timestamps are also configurable. Default is "%Y-%m-%d %H:%M:%S" * Added a help button for chatroom commands * Added hide/show buttons in chatrooms for userlist and status log. These buttons can be hidden by Edit->Hide chat room log and list toggles * Username away color-status in chat can be toggled off * Added Auto-Replace list (applies to all outgoing chat message text) * Added Censor list (applies to all chat message text) * A popup dialog appears after closing the last chat room while the roomlist is hidden. * URL's are now converted back to plain text by the URL catcher (before only %20 were converted to spaces) * Usernames in chat logs and private, userinfo and userbrowse tab labels are marked offline when disconnected from server * Ticker moved to the top-left of the chat room frame; * Added settings for tab completion and dropdown completion list * Added a completion dropdown list (gtk.EntryCompletion) to chat entries ### Bug Fixes * Re-enabled the 'if i.size is None' check which should fix some upload issues * Fixed a error message printed after aborting an upload directory popup * Fixed a major slowdown in needConfig function (was reading shares data) * Pressing enter in Search Filter entry boxes now works again * Readded "/" to pasted folder slsk:// URLs * Reading slsk.exe's cfg files should now work on Windows ## Version 1.2.8 (June 1, 2007) ### General Changes * Support for Spell Checking in chat added (libsexy and python-sexy required) * Other users Interests are now shown in the User Info tab, with expanders * Send Message added to trayicon * Popup Menus in Private, Chatrooms, and User Browse reorganized * The user-entry boxes are now buddy-list combobox entries * Users with PyGTK >= 2.10 will use the gtk.StatusIcon instead of the old trayicon.so module. * Added a filemanager popup item to the self-browse menu; configurable under Settings->Advanced->Events * Gstreamer-Python support for sound effects added * Added Soulseek testing server (port 2242) to the server combobox. * Changed the URL Catcher's syntax. The ampersand "&" is no longer needed at the end of URL Handlers. The handler entry is now a combobox and includes a bunch of webbrowser commands. * Userlist Columns are hidable and hidden status is saved. ### Transfers * Added a "Group by users" check box * Added Expand/Collapse all toggle button to transfers * Added a popup dialog to the "Clear Queued" transfers buttons ### Private Chat * Added gallows' patch for including your username in the private chat log. (ticket #161) * Direct private messages (currently only supported by Nicotine+ >= 1.2.7.1) ### Search * Search now has combo boxes, per-room searching and per-user searching. * Added Wishlist and changed remembered search tabs to only display when new search results arrive * Switch to newly started search tab (ticket #157) ### User Info * gallows added userinfo image zooming via the scrollwheel (ticket #160) ### Settings * Changed Audio Player Syntax it now uses "$" as the filename * Exit dialog can be disabled in Settings->UI * When a config option is detected as unset, print it in the log window. * Move Icon theme and trayicon settings to a separate frame * Move sound effect and audio player settings to a separate frame * Reopen Settings dialog, if a setting is not set. ### Networking * On Win32, hyriand's multithreaded socket selector is used. This will allow a larger number of sockets to be used, thus increasing stability. * Added Server Message 57 (User Interests) * Send \r\n with userinfo description instead of just \n ### Bug Fixes * Uploads to other Nicotine+ users work better * Userinfo Description does not scroll to the bottom of the window * Fixed a few bugs with the trayicon * Fixed server reconnection not actually trying to reconnect (and giving up on the first try) ### Translations * Lithuanian translation updated * Euskara translation updated ## Version 1.2.7.1 (March 6, 2007) ### General Changes * The About Nicotine+ dialog now shows the versions of Python, PyGTK and GTK+ * Copy was added to the right-click menus in chat status and debug logs. ### Bug Fixes * The shares scanning progress bar now disappears after scanning shares a little more frequently. * Fixed a bug in the way total transfer slots were calculated * Improved Remote-Uploading somewhat (was quite buggy with two Nicotine+ clients) * Fix directory name cropping in 'upload directory to' in User Browse * Attempted to fix the 'interrupted system call' (which sometimes are caused by gtk+ file dialogs) from stopping the networking loop. * Username hotspots for users who are offline or have left the room aren't disabled anymore. ### Transfers * Downloads have a metadata popup dialog with bitrate / length * Right-clicking when nothing is selected will select a row * In parent row, display the current transfer's time elapsed and time left. * Transfer popups work better on parent rows ### Translations * Silvio Orta updated the Spanish translation * ><((((*> and ManWell updated the French translation * nince78 updated the Dutch translation * Nicola updated the Italian translation * Žygimantas updated the Lithuanian translation ## Version 1.2.7 (February 25, 2007) ### General Changes * Window size is restored on startup * Background color of entry boxes, text views and list views is now changeable and all lists foreground color changes with the 'list text' option. * Added some padding around various widgets * Tabs can be reordered on the fly, now (Requires PyGTK 2.10) Also, Chat Room tab positions are saved in their reordered position. * Per-file indentation consistency was drastically improved. transfers.py, slskproto.py and a few others were really bad. ### Settings * Added an Import Config frame to Settings, which duplicates the functionality of nicotine-import-winconfig. User can now easily import config options from the official Windows Soulseek client's config directory. Support for importing the ignore list was also added to nicotine-import-winconfig. * Translux (pseudo-transparent TextViews) is an old easter egg that is now customizable in UI Settings. * Transfer settings was rearranged and organized with expanders * Transfer settings has a new combo box for selecting which users are allowed to initiate uploading files to you. Trusted users are set in the buddy list. * Added several tooltips to Settings' transfer widgets in hopes of providing better explanations of some of the more complex functionality. ### User List * Comments in Buddy List can now be edited in-list by clicking twice on the comment column, not by double-clicking (which would open Private Chat). * Trusted checkbox column added to the buddy list. Trusted users are an optional selection of users to whom remote uploads can be limited. ### Chat * Usernames in the chat room log now have hotspots associated with them, meaning they can be left-clicked on to load the same popup as you have in the users list. * Usernames are also colored based on Online, Away and Offline/In-Room status. This option can be disabled in UI Settings. * "User is away/online/offline" messages removed from Private Chat ### Transfers * Transfers are now sub-items in a one-step tree with the user as a parent * QuinoX's patch, a download filter: ( http://qtea.nl/tmp/nicotine+ ) was reworked a little and given a nice listview to add the Regular Expressions (filters) to. This feature will allow you to blacklist certain types of files, which may save you from the pointless downloading and cleanup of unwanted files. * Downloads and Uploads popup menus have a new item under the user submenu, "Select User's Transfers". * Uploads can be retried * The Size column now has the current file position and the total file size * Remotely-Initiated-Uploads will no longer be accepted if an Upload Queue Notification message has not been sent, first. This means versions of Nicotine+ earlier than 1.2.5 will not be able to initiate sending you files, no matter what your allowed uploaders is set to. ### User Info * Stats were rearrange and the status of who is allowed to initiate uploads to the user was added. ### User Browse * The browsetreemodels functions were disabled, and file and folder treeviews were reimplemented with code from the PyGTK2 museek client, Murmur. * Search now works slightly different. Queries match all files in a directory, and switch between matching directories each time. * Tree lines and a 'Directories' sorting header were added to the Folder Treeview * Upload Directories Recursive was added to Folders' Popup * An expand / collapse all directories button was added * Recursive downloads in User Browse now checks from > 100 files and displays a Warning dialog that gives you a chance to cancel downloading. ### Search * Search has a new popup window for displaying the metadata of search results. This popup is accessible after selecting 1 or more files and clicking on the "View Metadata of File(s)" popup menu item. From this window, you can also download file(s) or initiate browsing of the current file's user's shares. ### Networking * Handle all peer message unpacking with an exception handler. Should make us safer from malformed data sent by users. * Close peer connection when userinfo's or browse's close buttons are pressed. (This is to save bandwidth) ### Translations * ><((((*> updated the French translation * (._.) and Meokater updated the German translation * nince78 updated the Dutch translation * Nicola updated the Italian Translation * Added Finnish translation by Kalevi * Added Lithuanian Translation by Žygimantas * Added Euskara (Basque) translation by Julen of librezale.org ### Bug Fixes * Various minor bugs killed * Userlist selection bug fixed * Fixed search results from last session being placed in search result tabs in new session that match their tickets by using random tickets instead starting from 0. * Fixed Big memory leak with PixbufLoader in Userinfo (call garbage collector) * Fixed large-file (>4GB) file scanning and shares browsing issue ## Version 1.2.6 (October 21, 2006) ### Interface Changes * Added a GUI for new built-in NowPlaying scripts and new /now command to use them. Supported players: Amarok, Rhythmbox, BMPx, XMMS/Infopipe, MPD/mpc. An 'other' player option also exists. * Added /buddy, /rem, unbuddy commands to Private Chat and Chat Rooms. * The Userinfo Picture file chooser now displays a preview of the image * Private Chat does not allow you to send messages while offline. New disconnected and reconnected messages appear in the chat log. Another new message is displayed if you were sent messages while offline. * Users' Shares lists can be saved to disk and then reloaded them, for ease and speed. On *nix, these files will be stored in ~/.nicotine/usershares/ * Display shares-scanning errors in the Log Window * Added Titlebar messages on Private Chat and nick mention in Chat Rooms * Disabled: Urgency Hint on highlight (Titlebar flashes, or WM tries to get your attention) Doesn't work very well, disabled for now. * Popup a warning message if the Guide cannot be found * Added 'Copy all' menu item to Room Status logs and the debug log * Also added icons to the Clear log and the Remove Dislike menu items * Enlarged number entry boxes in Transfer Settings * Added thread protection to File/Directory Chooser (was getting freezes) ### Search * Search's Close button also "ignores" the search, like the X button the tab. * Fixed bug in "Download file(s) to..." causing the path to be corrupted. ### Config * Use a safer method to save the config file. Create 'config.new', move old 'config' to 'config.old', rename 'config.new' to 'config' (from 1.1.0pre1) ### Packaging * Added 4 nicotine-plus-??px.png icons 16px, 32px, 64px and 96px. * nicotine.desktop and nicotine-plus-32px.png are installed to $PREFIX/share/applications and $PREFIX/share/pixmaps ### Windows * Added elaborate Unicode filename-reading hack. This should allow non-latin files/directories to be added to the shares. (Since this feature breaks in Linux, Windows detection is used throughout the filescanner converting strings to unicode and back. * Always load dbhash module on Windows ### Networking * Re-enable Server Ping (120 sec) and Timeout for Connection Close (120 sec) * Spoof warning now includes the IP and port of the user sending the message. ### Tray Icon * Hacked apart Systraywin32 from Gajim to work with Nicotine+ on Windows requires pywin32 which you can download from here: http://sourceforge.net/project/showfiles.php?group_id=78018 * Fixed a bug with the Trayicon initially being icon-less ### Translations * Hungarian translation updated (djbaloo) * Portuguese-Brazilian translation finished (SuicideSolution) * Slovak Translation Updated (Jozef) ## Version 1.2.5.1 (September 18, 2006) Bugfix release * Made TrayIcon not attempt to load on 'win32' operating systems * Fixed trayicon bug that caused error messages every time the Settings window's Apply or Okay button was pressed when the trayicon isn't loaded. (reported by renu_mulitiplus) * Fixed displaying your own Userinfo image on Windows. * Replace the characters ?, ", :, >, <, |, and * with an underscore _ on Windows, to avoid filesystem errors. (Reported by theorem21) * Made the Directory Chooser start with the predefined directory set. ## Version 1.2.5 (September 17, 2006) ### General Changes * Made columns reorderable (temporarily, they return to the default order after a restart) * Made the encodings Comboboxes give location or language details in a separate column. * Made all the popup menus have GTK stock icons. * Made most of the Main Menu items have icons. * Added three new menu options under help: Offline Nicotine Plus Guide, the Nicotine-Plus Trac and the Nicotine Plus Sourceforge Project websites. * Added the NicotinePlusGuide to setup.py, so it will be installed * Set Firefox as the default http:// URL handler * Replaced "pure text" percent column with a CellRendererProgress column in the Downloads and Uploads transfer lists. * Added option to UI Settings to show/hide the transfer buttons. * Added expander to glade2py, so it can now be used. * Rearranged the new user entry/buttons to the top left of their tabs, added spacing inside tabs. * Added more stock GTK icons to Settings and Userinfo, among other places. * Added confirmation exit popup dialog when quitting with the window manager. * Made the main window's minimum size to be 500x500 px ### Bug Fixes * Fixed a typo in transferlist.py that caused some transfers to get stuck in the Initializing state, even though transfers still work. * Fixed the Chatrooms tab hilite bug (reported by Offhand, xrc) ### Tray Icon * Made the Tray Icon's popup menu disable menu options based on connection status. Also simplified its code to match the way Nicotine normally creates menus. * Made Trayicon toggleable while running from the UI settings or at startup with --enable-trayicon, -t and --disable-trayicon, -d ### Search * Made /search commands modify the search history * Added 'clear search history' button to search * Shortened Search tab length and added a label containing the full query next to the "Enable filters" checkbox. ### Audio * Notifications: Now testing 'flite' support, a text-to-speech engine. This may or may not be removed. The option is 'speechenabled' * Moved Icon theme and Sound theme settings inside separate expanders. * Notifications: Added a sound effect, room_nick.ogg, for nick-mention in chatrooms (when not in that room) and a separate sound effect, private.ogg, for when a private message arrives, and you are not in that tab. Sound options are found in the UI settings, and separate sound theme directories and audio players can be selected, as well. Ogg files are installed into $PREFIX/share/nicotine/$THEMEDIR/ ### Networking * Added support for sending and receiving Soulseek peer message 52, Upload Queue Notification, which allows users to notify upload recipients that they are attempting to send a file. Also, a log message is printed when a user attempts to send you file(s) and an automatic is sent if they aren't allowed to. * Add a Bool to the GetUserStatus message received from the server, for privileges. If 1, add user to list of privileged users. * Added SendUploadSpeed (121) message which replaced SendSpeed (34) a long time ago. Thanks to sierracat for the info, and to slack---line for testing. * Modified CheckVersion function to allow for milli ( X.X.X.X ) versioning. ## Version 1.2.4.1 (August 18, 2006) Bugfix release * Disabled use of 'pwd' module on windows * Fixed bug with Buddylist tab not appearing on startup. * Fixed bug with double-clicking on a user in the Buddy not switching to the correct private chat tab. ## Version 1.2.4 (August 17, 2006) * Added new translations for Hungarian (djbaloo) and Slovak (Josef Riha) * Made Buddylist toggleable between its own tab and pane on the right side of chatrooms * Rearranged tabs to the top of the window * Rearranged Browse Share's progress bar as in Ziabice's patch * Added a Font selector for chat messages under Settings->UI->Interface (47th_Ronin's request) * Made Nicotine's shares builder ignore ALL dot-files and dot-directories (such as the ~/.nicotine/ directory) for security reasons. (Izaak's idea) * Warn if home directory is being shared. (Izaak's idea) * Added the First in, First out queue from jat's evil cocaine patch (without any of the other features) * Added gtk stock icons to many buttons * Added user entry boxes in Private Chat, User info, and User browse * Added new birdy icons which replace the little people icons * Added a theme selector to Settings->UI->Interface->Icon Theme Directory If any of the theme icons exist in this directory, they'll be used instead of the built-in images. * Made Copy URL popup menu options use the ctrl-c/ctrl-v clipboard, as well as the middle-click one * Split big Download/Upload Popup menus into submenus * Fixed an problem with upload percentages not working properly ## Version 1.2.3 (July 7, 2006) * Added abort, retry, ban, clear queued, and clear finished/aborted buttons to transfers. * Made lists' rows to use the alternating color pattern. * Changed all the icons. Most of the new icons are modified from Mark James' Silk icon set: http://www.famfamfam.com/lab/icons/silk/ * Fixed other users sending PM cause the tab to be switched to their message. * Fixed erroneously translated internal strings that caused queued downloads to fail. ## Version 1.2.2 (June 15, 2006) * Renamed "User list" to "Buddy list" * Added Double-clicking on a user starts a private message in the chatrooms, the userlist, and similar users. * Added TrayIcon from unreleased Nicotine 1.1.0pre1, and added a menu to it. This is a module and needs to be compiled. * Added Speed, Files and Dirs to userinfo * Made more strings translatable * Added Buddy-only shares ## Version 1.2.1 (June 10, 2006) * Added a bunch of hotkeys to the popup menus and normal menus. * Added a new menu for Modes (Chat Rooms, Private Chat, etc) * Starting a Private message via the Popup menu will now switch you Private Chat tab, so you can immediately start typing. * Fixed a segfault in User Browse, if you clicked on the folder expanders while shares were loading. This was done making the folder pane be disabled while refreshing. * Updated translations to work with hotkey menu and other changes * French translation: systry corrected typos and translated more strings. * Added a Send to Player popup menu item, which allows you to send downloading, uploading or files in your own shares to an external program, such as a media player. ## Version 1.2.0b (May 11, 2006) * Added a "Send to Player" popup menu item for downloads and personal shares ## Version 1.2.0 (May 10, 2006) * Added New Room and User search messages, and use them instead of sending out direct peer searches * Fixed all those depreciated Combo() functions, updated all of them to PyGTK 2.6 compatible functions. * Fixed the CRITICAL pygtk_generic_tree_model warning that has been plaguing Nicotine since GTK2.4 came out. The problem was fixed by adding: "if not node: node = self.tree" to the on_iter_nth_child() function. * Moved the upload popup-menu item so that it isn't incorrectly disabled from sending multiple files. * Added two new debugging messages for when someone browses you or gets your userinfo, you can see their username. ( Idea/code stolen from "Airn Here", pointed out by heni (thanks to both of you) ) * Fixed a little bug in a popup menu that caused a traceback * Added an optional client version message, which is similar to the CTCP VERSION message on IRC. It sends your client's version via Private Message to a remote user. You can disable automatic responding of it in the Settings->Server. So far, it works only with this version of Nicotine and Museek's Curses client, Mucous. Send it via the popup menu in Private chat, or with the command: /ctcpversion ## Version 1.0.8-e (March 25, 2006) * Made password to be starred like ***** via cravings' patch * Added a Give Privileges popup menu item (taken from the development 1.1.0pre1 version of nicotine that hyriand never released.) * Changed the Upload Files dialog from a textentry to a scrollbox ## Version 1.0.8-d (August 17, 2004) * 1.0.8-d is a combo of 1.0.8z and some new stuff, listing it all here. * Added GTK2-Fileselector (Works nicely for Win32) * Added many changes to wording of the settings dialogs * Added Remote Uploads (Browse yourself, right click on files, upload, type in username) * Added Remote Downloads (Added Checkbox in Settings->Transfers) * Fixed some of the many PyGTK warning messages * Removed the PING-OF-BAN # Release Notes (Nicotine) ## Version 1.0.8rc1 (May 1, 2004) * Added the missing handler for server-pushed searches * Allow users to have negative speed-ratings * Double click downloads in searches and browsers, join room in room list ## Version 1.0.7 (January 11, 2004) * Changed hate-list to be network-driven instead of being a filter * Updated translations * When available, Nicotine will use PyGNOME to launch protocols that haven't been configured ## Version 1.0.7rc2 (January 7, 2004) * Moved encoding dropdown-list out of the scrolled area in userinfo tabs * Transfer logs (enable in settings->logging) * Last 7 lines of a private message log are shown * Config file now backed up (to .old) * Check privileges shows days, hours, minutes, seconds * Changed default server to server.slsknet.org (mail.slsknet.org will be automatically changed) * Anti-frumin ticker update (replace newlines with spaces) * Added country-code filter to the search filters * Added a "Hide tickers" menu entry which hides all tickers * Added option to not show the close buttons on the tabs * Added option to not lock incoming files * Fixed /tick ## Version 1.0.7rc1 (January 2, 2004) * Added room ticker support * Alt-A fixed ## Version 1.0.6 (December 5, 2003) * Probable fix for GUI freeze (thanks stillbirth) * Bye bye total queue limit * Translations updated ## Version 1.0.6rc1 (November 18, 2003) * Files that are downloaded should now be encoded * Possible fix for a threading race condition * Possible fix for listport not defined problem and a million little things * Possible fix for yet-another-corrupted-shares-database problem * Translation caching * Whacked some tracebacks * Implemented recommendations system * Translation updates * Added polish translation (thanks owczi) * Fixed bug that made "Queue limits do not apply to friends" not work * Fix for the version checking bug ## Version 1.0.5 (November 7, 2003) * Quickfix for protocol change ## Version 1.0.4.1 (September 26, 2003) * Changed default server * Fix for online notify * Added french translation (thanks flashfr) ## Version 1.0.4 (Sepember 17, 2003) ---> Can you find the EASTER EGG? <--- * Show IP address now shows country name instead of code (when GeoIP is installed) * Fixed sorting in transferlists * Clear (room) log window popup menu * Room and user encodings (for chats, browse, userinfoetc) * Close buttons on sub-tabs * Translatable (see the languages/nicotine.pot file) * Window icon (normally blue, yellow when highlight) * MacOSX OSError / IOError fixups * Fix for minimum window size * Desktop shortcut (files/nicotine.desktop), not installed by default * Possible fix for the "ServerConnection doesn't have fileupl" problem * Userinfo is now properly network encoded * Bundled a custom version of the ConfigParser that doesn't have problem with semi-colons * Download to.. for searches now defaults to downloaddir * Close tab-button for searches closes and ignores * UTF8 log window fixes * Fix for invalid server traceback (in settings window) ## Version 1.0.3 (August 28, 2003) * PyGTK version check (Nicotine requires 1.99.16 or higher) * Hide room list menu option (is remembered between sessions) * Control-C doesn't kill nicotine anymore (silently ignored) * Fix for deprecation warning (PyGTK 1.99.18) * Bug-reporting assistant (based on work by Gustavo J. A. M. Carneiro) * Reduced the sensitivity of the auto-scroller a bit * Workaround for missing-menu-labels in tab popup menus * Changed PyVorbis warning * Check latest (checks if you're using the newest version) * Autocompletion of / commands * Some small psyco fixes * Browse yourself without even being connected * Default filter settings * Fixed searches for special characters and limit history to 15 entries * Long overdue enter-activates-OK in input dialog * Make folder button in directory chooser dialog * Change %20 in slsk:// urls to spaces (blame Wretched) * Copy file and folder URLs in transfer lists and searches * Fixed Hide log window on startup * Improved the move-from-incomplete-to-download-folder function so that it can move across partitions / drives / whatever. * Now really included Carlos Laviola's debian control files ## Version 1.0.2 (August 23, 2003) * Possible fix for freezes * Fix for GTK-Critical at startup with hidden log * Fixed URL catcher regular expression a bit * Added debian control files (by Aubin Paul) * Hopefully fixed the missing "2 chars search result directory" thing * Fixed roomslist popup menu * More UTF8 cleanups (and dumped the need for most of the localencodings in the process), should really work on MacOSX again * Fixed alt 1-8 / left,right,up,down to work with numlock / scrolllock on * Checkboxified all the "Add to user list", "Ban this user" and "Ignore this user" context-menu items * Fixed small bug in config loader (concerning importing pyslsk-1.2.3 userlist) * Fixed small bug in the browse file model * Fixed some selection issues * Fixed rooms list being sorted A-Za-z instead of Aa-Zz * Fixed column-sizes being weird when resizing * Removed talkback handler * Added handler for slsk:// meta-protocol and the ability to copy slsk:// urls in browse ("Copy URL"). * Should work on OSX again * Threading issue with rescanning fixed * Focus chat line input widget on tab change (chat rooms and private chat) * \ ## Version 1.0.1 (August 19, 2003) * UTF8 fixes for settings window * UTF8 fixes for directory dialog * UTF8 fix for private chats in some locales (fr_FR for example) ## Version 1.0.0 (August 18, 2003) (Initial Public Release) * Changed URL to the Nicotine homepage to http://nicotine.thegraveyard.org/ * Added Alt-H accelerator to hide log ## Version 1.0.0rc8 (August 18, 2003) * New MP3 header engine (shouldn't crash anymore, and should be faster) * Made the default handler for the http protocol more compatible (added quotes) ## Version 1.0.0rc7 (August 17, 2003) * Fixed check privileges (thanks hednod) * Userlist context menu issues fixed * Several win32 fixups / custom-hacks made for upcoming win32 release ## Version 1.0.0rc6 (August 16 2003) * Merged PySoulSeek 1.2.4 core changes * Privileged users in userlist * Online notify ## Version 1.0.0rc5 (August 16 2003) * pytgtk-1.99.16 compatibility fix (thanks alexbk) ## Version 1.0.0rc4 (August 16, 2003) * Fixed private-chat-shows-status-change-a-million-times * Fixed bug concerning GeoIP not being able to look up country code * Fixed email address in nicotine "binary" ## Version 1.0.0rc3 (August 16, 2003) * Geographical blocking works for search results too * Geographical blocking settings now automatically uppercased * py2exe.bat bundled (used to create a "frozen" .exe on win32) * setup.iss bundled (used to create an installer using InnoSetup) * Tab menus now show page title instead of Page n * More win32 fixups * URLs now only respond to left click * User-info description field in settings now wraps * User-info image no longer writes temporary image file * Image data now encapsulated in imagedata.py ## Version 1.0.0rc2 (August 13, 2003) * Fixed typo ## Version 1.0.0rc1 (August 13, 2003) * Nasty Bug(tm) fixed * URL catcher fixup * Server banner is now shown * Hide log window menu item * Win32 fixups ## Version 0.5.1 (August 13, 2003) * URL catching * Bugfix: /ip no longer shows None * Bugfix: CheckUser would fuck up when disconnected * Fixed date for 0.5.0 ## Version 0.5.0 (August 13, 2003) * Geographical blocking using GeoIP (optional) * Userlist only sharing * Userlist values are reset after disconnect * Small bugfixes and typos * Instead of printing certain bugreports to the console, it now sends a private message to hyriand instead ## Version 0.4.9 (August 11, 2003) * Python 2,2,0 compatibility * Python 2.3 deprecation warning fixed * Minor bugfixes (mainly in transfer lists, I hope they work) * Fixed the setup.py to install images * Added browse files to search results context menu * Added abort & remove file to downloads context menu * KB/GB/MB is now done at 1000 instead of 1024 (producing 0.99 MB instead of 1000 KB) ## Version 0.4.8 (August 10, 2003) * Minor bugfixes and de-glitchifications ## Version 0.4.7 (August 9, 2003) * New logo and icon (thanks (va)*10^3) * Generate profiler log when using nicotine --profile (profiler log will be saved as .profile) ## Version 0.4.6 (August 8, 2003) * Room user lists are filled again when reconnected * User is offline/away/online in private chats * Right-click on tab shows tab list * Auto-reply implemented * Added *1000 factor for auto-search interval *oops* ## Version 0.4.5 (August 7, 2003) * Page Up / Down scrolls chats * // at the start of a chat line will "escape" the / used by commands * Evil typos corrected (tnx SmackleFunky) * Bugfixes * Search filter history ## Version 0.4.4 (August 7, 2003) * Bugfixes * About dialogs ## Version 0.4.3 (August 5, 2003) * Small bugfixes (sorting, UpdateColours, ChooseDir) ## Version 0.4.2 (August 5, 2003) * First changelog entry.. Basically everything implemented :) # Release Notes (PySoulSeek) ## Version 1.2.4 (August 16, 2003) The final version * Workaround for corrupted shares database problem which many Mac users seem to have * Notification for incomplete configuration * Fix for a subtle race condition between starting transfers and getting a list of privileged users * It's now possible to give download privileges to users from the userlist * Password entry box now uses *** * Search responses are now buffered - less flicker, less stress on the client * If log window is collapsed, messages are now duplicated in the status bar * It's now possible to track status changes for the individual users from the userlist ## Version 1.2.3 (July 23, 2003) ### Added Features from Hyriand's Patch * Pyslsk will ping the server every 30 seconds (rewrote it to be gui-independent) * Search history (remembers 10 last searches) * Log window is now collapsible (state is remembered between sessions), rewrote it to look prettier than hyriand's version * Resizable panels aren't deleted anymore when made really small * Userinfo and browse tabs show user status * /clear /c will clear a chat screen * version in the window title ### Other Fixes * the default "queue if" limit is now 10 kb/s to avoid "how do I limit the number of uploads" questions * errors when decompressing filelists and search results no longer cause a crash * if locking a file is not possible, a download will continue anyway with a warning ## Version 1.2.2 (June 24, 2003) * wxPython 2.4.1 fixes; this version is now required, because it fixes the "crash-on-tab in an empty notebook" problem and handles ctrl-c gracefully * Ugly but working fix for the "cannot install idle handler twice" crash ## Version 1.2.1 (June 18, 2003) * Python 2.3 fixes * Python 2.2.0 fixes * Fix for "too many open files problem" * Aborted files are now not restarted when a user logs back on * New address for postcards ## Version 1.2.0 (May 17, 2003) * Tweaks for reducing CPU usage ## Version 1.2.0pre4 (May 13, 2003) * Fix for silly queue bug * Split the file index into two - primary index of files and secondary index of words. This should improve performance. ## Version 1.2.0pre3 (May 12, 2003) * Fixes for transfer bugs ## Version 1.2.0pre2 (May 12, 2003) * Changing options without rescanning caused a traceback ## Version 1.2.0pre1 (May 12, 2003) * Per user upload queue limit (specified in megabytes) * Switched to bsd db for storing shared files information * Contents of unknown messages is now printed in the log window * Improved performance of searches lookup (should help with ui freezes) * Improved the (*) in window title behaviour ## Version 1.1.2 (April 29, 2003) * Fixed a race condition occurring on SMP machines * Added remembered/wishlist searches from Hyriand's patch * Fixed stuck "Requesting file" * Sometimes transfer timers were not cancelled properly ## Version 1.1.1 (April 28, 2003) * Improved transfer status messages * Fixed a couple of potential transfer problems ## Version 1.1.0 (April 26, 2003) * Removed all references to wxPythonOSX - it's too instable * Updated pyslsk-import-winconfig * Pressing OK in settings now disables the config window when a rescan is happening * Aborted downloads are now kept in the downloads list * When there's a new private message or a public message that contains your username, the window title is marked with a (*) ## Version 1.1.0pre5 (April 19, 2003) * Fixes for two embarrassing bugs in pre4 ## Version 1.1.0pre4 (April 18, 2003) * Improved userinfo and userbrowse gauges behavior * Fixed a bug where index of shared files was corrupted * Fixes for some tracebacks introduced in pre3 * Old index is not anymore used for building a new one, as it doesn't improve speed * If a user already exists in the userslist, adding him edits the comments * Messages from the networking thread are now printed in the log window, not on stdout * Fixed the 100% CPU usage problem that happened occasionally ## Version 1.1.0pre3 (April 17, 2003) * pyslsk now switches to the new server automatically, if the old one is found in the settings * File errors when transferring files are now reported in the log window * If a peer does not do a proper initialization procedure, the connection is closed * It was not possible to edit userlist comments * Updated OS X instructions ## Version 1.1.0pre2 (April 14, 2003) * The new more efficient distributed network is now supported * The server location is now hardcoded, still possible to correct it * Files in 'Cannot connect' state are now retried once, just in case the server forgot to tell us the user status * Added autojoin checkbox in room windows * If the logs directory does not exist, it is created * Config window is now non-modal * If status was set to away manually, auto-return does not happen * Sorting the userlist now works properly ## Version 1.1.0pre1 (April 5, 2003) * Code cleanups (with suggestions from Alexey Vyskubov) * Added ignore list (by SmackleFunky) * Added autoaway (with configurable timeout) * If the server reports port 0 for a user, try again, up to 10 times * Fixed stuck "Waiting for transfer" * Rescan on startup now happens in background * Userlist is now in its own tab, you can now add comments to entries * A private message is sent as a workaround for windows client bug with "download containing folder" * If a parent node in the distributed network starts sending garbage, close the connection and find another parent * File errors are now written in the log window, not on stdout * It is now possible to download two files with the same name simultaneously * If a file already exists, pyslsk does not overwrite it with a just finished file, it renames it to file.1 (file.2 and so on) * It is now possible to abort a transfer and remove the incomplete file * Added popup menu in private chat tabs * It is now possible to sort search list by order of arrival and by possibility of immediate download * Search and browse lists now have bitrate and length as separate columns * Menu items in transfers panels were not always working * Reduced flicker in the chatroom userlist * Queue sizes are now reported more accurately ## Version 1.0.4 (March 26, 2003) * If your name was mentioned in a chat room, the chat tab will be highlighted with a yellow bird, not with the blue one. Also, the line containing your username will be red. (based on patch from Hyriand) * pyslsk now sends speed statistics to the server after a successful download * Fixed the GUI freeze when someone is queueing a lot of files * "Download containing folder" was not working in all cases * Reduced rescan time * Added /rsearch, /bsearch, /usearch * Status bar now shows the number of users downloading/uploading * /unban was not working ## Version 1.0.3 (March 23, 2003) * Fixed a few bugs in the new shares rescanning code * Sorting transfers list sometimes caused a traceback ## Version 1.0.2 (March 21, 2003) * Configurable port range (patch from Hyriand) * Room and userlist searches (based on patch from Hyriand) * Online/Away/Offline status in the statusbar (patch from Hyriand) ## Version 1.0.1 (March 20, 2003) * Rescanning of shares now skips over directories that have not changed (inspired by hyriand's patch) * It is possible to optionally rescan shares on startup * Rescanning of shares now does not freeze the GUI ## Version 1.0.0 (March 12, 2003) * Fixes for possible temporary UI freezes * Removed "user phrases turn grey" feature, because it triggers gtk bug causing a segfault * Fixed a problem with clearing transfers * Rescanning of shares wasn't possible under gtk2 * If we send search results to someone this is now always displayed in the log window * Fixes for "Download containing folder" * Added missing menu entries to search tabs, filelist tabs and userlists * It is now possible to refresh the filelist of the other user * Buttons on the user-info rearranged and some new added * Show ip address now does reverse DNS lookup * Unrecognized commands in chat are no longer sent as chat phrases ## Version 1.0.0pre6 (March 10, 2003) * Added script for importing configuration from the windows version (provided by geertk) * It is now possible to change the path for writing log files * Bogus config sections no longer cause a traceback * pyslsk now resumes files left over by the official windows client * phrases said by users no longer present in the room turn grey now * wxPython 2.4.0.4 is now supported * Sorting is now case-insensitive ## Version 1.0.0pre5a (March 2, 2003) * Fixed a silly bug with searching ## Version 1.0.0pre5 (March 2, 2003) * Banning (patch from Hyriand) * Upload bandwidth management (patch from Hyriand) * Numbers are now formatted according to locale rules * Total upload and download bandwidth usage is shown in the status bar * Various / commands in chat (see Help menu for full description) (patch from Hyriand) * Nickname completion in chat (patch from Hyriand) ## Version 1.0.0pre4 (February 28, 2003) * Config files are now saved every time a configurration is changed, not just on exit * Fixed a silly typo in FolderContentsResponse * Fix against potential distributed network attack * Fix for Unicode support in settings window ## Version 1.0.0pre3 (February 26, 2003) * Fixed handling of "Download containing folder" requests from other peers * Fixed stuck "Establishing connection" * Administrative messages are now supported * Fixes for distributed network support * Hopefully fixed the exit problem (where pyslsk waits for a while and then prints a bunch of tracebacks) * Fixed a DoS vulnerability found by hyriand ## Version 1.0.0pre2 (February 23, 2003) * Fixes for bugs in 1.0.0pre1 * "Download containing folder" should now be possible for search results that pyslsk returns ## Version 1.0.0pre1 (February 22, 2003) * Pysoulseek is now searchable; it does not however support being a parent node in the distributed network * Unicode support that allows using pyslsk with Unicode builds of wxPython, such as Gtk2 build * Reduced flicker in transfers panels * Reduced CPU/memory consumption when uploading big files * Shared files database is now stored in a pickled format in a separate file \.shares * Fixed a problem with broken VBR mp3 files * A situation when someone else logs in under our nickname is now handled gracefully * pyslsk now responds to place in queue requests * It is now possible to exit pyslsk when a server connection is in progress * Download directory is now created when the transfer starts * Inverse colour gtk themes are now usable with pyslsk * A bunch of smaller bugfixes ## Version 0.4.11 (January 15, 2003) * wxPython 2.3.4 at least is now required as the previous versions had trouble displaying user info picture * Chatrooms and private chat conversations can now be written to files (patch by Zip) * Fixed a problem with transfers stuck in "Waiting for peer to connect" * Fixed a problem with changes in userlist or the whole userlist being lost sometimes * Fixed potential problems with asynchronous connect() * Empty files are now uploaded and downloaded correctly * Fixed a problem with scanning unreadable directories * It is now possible to exit during the auto-reconnect * pyslsk was autoreconnecting when the server did not let us in due to the wrong password or other valid reason * Away state is now preserved during the reconnect ## Version 0.4.10d (January 2, 2003) * ID3 mp3s are now scanned quicker * Retrying aborted transfers if the user has logged off is now handled correctly * If a transfer is negotiated and new transfer requests arrive, they are queued * Disconnecting now correctly handles changes in downloads and user list * Clicking on column header outside the titles no longer produces a traceback ## Version 0.4.10c (December 31, 2002) * Fixed a few tracebacks * wxPython 2.3.3 has a problem with displaying user info, so 2.3.4 is now required ## Version 0.4.10b (December 25, 2002) * Backed out the 0.4.10a fix, as it does not fix every case; you have to rescan the shared folders through the settings window to upgrade properly * Added a postcards statement ## Version 0.4.10a (December 24, 2002) * Fixed a problem with upgrading shared files list to the new format ## Version 0.4.10 (December 23, 2002) Christmas release * pyslsk now tries to reuse the same address when opening a listening socket (patch from waxed) * Bitrate and length of VBR mp3s are now correctly determined * Length and bitrate of shared Ogg Vorbis files are now determined, if Python Vorbis bindings are installed * Updated subtabs are now marked with icons, like the main tabs. * It is possible to close/open rooms list, like the user list * Further reduced the CPU usage during sending the list of shared files to other peers * Added "Close and ignore" button to search tabs (it closes a search tab and discards further search results) * Updated Mac OS X instructions * pyslsk now uses commandline switches: --help for help, -c for an alternative config file * pyslsk now correctly shutdowns on SIGTERM * "Waiting for peer to connect" states now timeout after 5 minutes to "Cannot connect" state (untested) * pyslsk now tries to reconnect to a server if the server closes the connection * a problem with dynamic ip addresses was fixed * pyslsk now locks files when writing to them * colours in chat: blue for own phrases, green for /me things, black for everything else * picture in user info tab can be scrolled now ## Version 0.4.9b (November 24, 2002) * Fixed an obscure problem with reading config files * It's now again possible to save users' pictures ## Version 0.4.9a (November 23, 2002) * The number of the shared files is now updated on the server after a rescan of the shared folders * Increased the default width of the directory column in the Search tab * wxWindows is not actually required, only wxPython * Not all debug messages were filtered out * Away/returned/joined/left messages are now only displayed once ## Version 0.4.9 (November 22, 2002) * Errors in the config file are not anymore silently ignored * It is now possible to switch off debug messages in the log window * The number of the shared files is now updated on the server after each successful download * The main window resize is now handled correctly * Significantly reduced CPU usage during transfers, and during sending the list of shared files to other peers * A few cosmetic fixes ## Version 0.4.8 (November 9, 2002) * Binary RPM is now provided * Added RPM building tips to the installation instrictions * It is now possible to join selected rooms automatically on startup * If possible, the client connects automatically on startup * User's status is now shown in private chat window * It is now possible to toggle status between Online and Away * A bug that caused some uploads to fail is fixed * Added "Leave" button to the chatroom window ## Version 0.4.7 (October 26, 2002) * Added User List (Buddy List) capability * Fixed a few potential tracebacks * A correct response to a queue request that cannot be served is now given * Newly created subfolders in download folder were not added to shared list * Updated Mac OS X instructions * It is now possible to download all selected files and not just the focused one ## Version 0.4.6b (October 12, 2002) * It was not possible to create a configuration from scratch (new users) ## Version 0.4.6a (October 12, 2002) * It was necessary to provide a picture in order to connect * Self-description was corrupted each time the settings window was reopened ## Version 0.4.6 (October 11, 2002) Dedicated to the memory of my father. * All lists are now sortable * Fixed a problem with non-blocking sockets on FreeBSD * Fixed a possible crash when closing a socket * Fixed a few potential transfer problems * Fixed a few GUI problems with wxPython 2.3.3; this version is now required * It is now possible to save pictures from users' information. * Added locale-aware timestamps in chat * Optional sharing of download folder is now possible * It is now possible to provide personal information (description and picture) to others ## Version 0.4.5 (September 12, 2002) * Removed the Global Users List function, because the server no longer supports it * "Uploads are stuck in the queued state forever" problem should now really be gone * Idle peer connections are now closed after a timeout of two minutes * The client no longer crashes if it reaches a limit of open sockets or files * Fixed a problem with duplicate upload requests (the second one has no effect now) * Ogg Vorbis files are now uploaded before any other files (but after files requested by privileged users) * Fixed a problem with accelerator keys * The search results tabs now open immediately after the search request is made * It is now possible to send private messages from the transfers window * Retrying uploads now has no effect * If an upload is aborted or cleared, the upload queue is now checked for queued uploads that could be started ## Version 0.4.4 (August 27, 2002) * The situation when either the uploader or the downloader logs off or back on should be handled gracefully now * "Uploads are stuck in the queued state forever" and "The bandwidth limitation has no effect" problems should be gone * Fixed a problem with accelerator keys ## Version 0.4.3 (August 23, 2002) * When the uploaded file was not the last one in the upload queue, the upload went horribly wrong ## Version 0.4.2 (August 23, 2002) * Fixed a couple of locale problems * Fixed a problem with a notification of a download failure * It is now possible to get place in line for queued downloads ## Version 0.4.1 (August 21, 2002) * Fixed a bug where subsequent upload requests from the same user or notifications of a download failure caused a crash * Failed downloads are now retried if there's an explicit notification from the uploader * Reduced flicker in the transfers tabs * Binary RPM packages should now include GUI modules ## Version 0.4.0 (August 19, 2002) * Added files sharing and uploads * Updated OS X instructions * Renamed the main executable to pyslsk * Added download privileges checking * Fixed a bug where users with no locale setting were not able to chat * Added speed, time elapsed/left to transfers lists * Search results now show how much files users have in queue * Clearing transfers should now work correctly ## Version 0.3.4a (August 8, 2002) * Updated pyslsk to use the new server list location on slsk.org ## Version 0.3.4 (August 4, 2002) * Added Mac OS X instructions in README.OSX file * Reworked the INSTALL file somewhat * Added timestamps to private chat messages * Added network character encoding selection (users in Russia will greatly appreciate this) * Separated UI classes from high-level logic to allow for other UI frontends in the future * Added searching within a specific user's files and folders * Windows that have been updated but not yet switched into are now marked with an icon on the tab ## Version 0.3.3 (June 30, 2002) * The official client and server reverted back to the old protocol to save bandwidth, and so do we. ## Version 0.3.2 (June 15, 2002) * Added a few startup checks of the environment (libs versions etc.) * Transfer requests now go through the same connection * Queued transfers now work again ## Version 0.3.1 (June 7, 2002) * A few crashes have been fixed * Yet another protocol tweak has been implemented (on login the client sends its version to the server, as pyslsk version numbers have no relation to official client versions, we send a bogus high number). ## Version 0.3.0 (May 27, 2002) * The new backwards-incompatible (but nuch better) file transfer protocol is now supported * Changes in peer-to-peer protocol are now supported ## Version 0.2.0 (April 28, 2002) * The new backwards-incompatible protocol introduced in v117 of the official client is now supported. * Added multiple chatrooms capability. * Added global users list window. ## Version 0.1.1 (April 3, 2002) * Fixed an embarrassing bug where clicking OK in settings window did not actually change the settings * Active transfers are now correctly saved and resumed ## Version 0.1.0 (March 31, 2002) * Online/away status is now shown in users list * Added About dialog box * Added the list of official servers to choose from, taken from official website * Added downloads. Remotely queued downloads, 'Download folder' in user browse window, 'Download containing folder' in search result window, saving/restoring download list on exit/startup are all supported. ## Version 0.0.0 (February 10, 2002) * Initial release. Supports public chat, private chat, file searches, filelists browsing, users info browsing. nicotine-plus-3.3.4/README.md000066400000000000000000000057431461625273200156120ustar00rootroot00000000000000# Nicotine+ Nicotine+ is a graphical client for the [Soulseek](https://www.slsknet.org/) peer-to-peer network. Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) alternative to the official Soulseek client, while also providing a comprehensive set of features. Nicotine+ is written in Python and uses GTK for its graphical user interface. Check out the [screenshots](data/screenshots/SCREENSHOTS.md) and [source code](https://github.com/nicotine-plus/nicotine-plus).
## Download The current stable version of Nicotine+ is 3.3.4, released on May 6, 2024. See the [release notes](NEWS.md). Downloads are available for: * [GNU/Linux, *BSD and Solaris](doc/DOWNLOADS.md#gnulinux-bsd-solaris) * [Windows](doc/DOWNLOADS.md#windows) * [macOS](doc/DOWNLOADS.md#macos) ## Get Involved If you feel like contributing to Nicotine+, there are several ways to get involved: * [Issue Tracker](https://github.com/nicotine-plus/nicotine-plus/issues) – Report a problem or suggest improvements * [Testing](doc/TESTING.md) – Download the latest unstable build and help test Nicotine+ * [Translations](doc/TRANSLATIONS.md) – Translate Nicotine+ into another language with [Weblate](https://hosted.weblate.org/engage/nicotine-plus) * [Packaging](doc/PACKAGING.md) – Package Nicotine+ for a distribution or operating system * [Development](doc/DEVELOPING.md) – Implement bug fixes, enhancements or new features * [IRC Channel](https://web.libera.chat/?channel=#nicotine+) – Chat in the #nicotine+ IRC channel on [Libera.Chat](https://libera.chat/) ## Where did the name Nicotine come from? > I was in a geeky mood and was browsing `http://www.bash.org`'s QDB. I stumbled across this quote: >> **\** so tempting to release a product called 'nicotine' and wait for the patches. >> **\** then i would have a reason to only apply one patch a day. otherwise, i'm going against medical advise. > > So I thought what the hell and bluntly stole etc's idea.

Hyriand, former Nicotine maintainer, 2003

## Legal and Privacy Nicotine+ does not collect any user data. Different policies may apply to the default Soulseek server, which is not operated by the Nicotine+ Team. When connecting to the default Soulseek server, you agree to abide by the Soulseek [rules](https://www.slsknet.org/news/node/681) and [terms of service](https://www.slsknet.org/news/node/682). Soulseek is an unencrypted protocol not intended for secure communication. ## Authors Nicotine+ is free and open source software, released under the terms of the [GNU Public License v3](https://www.gnu.org/licenses/gpl-3.0-standalone.html) or later. Nicotine+ exists thanks to its [core team](AUTHORS.md), [translators](TRANSLATORS.md) and [contributors](https://github.com/nicotine-plus/nicotine-plus/graphs/contributors). nicotine-plus-3.3.4/TRANSLATORS.md000066400000000000000000000053351461625273200164660ustar00rootroot00000000000000# Nicotine+ Translators ## Albanian - W L (2023–2024) ## Arabic - ButterflyOfFire (2024) ## Catalan - Maite Guix (2022) ## Chinese (Simplified) - Ys413 (2024) - Bonislaw (2023) - hylau (2023) - hadwin (2022) ## Czech - burnmail123 (2021–2023) ## Danish - mathsped (2003–2004) ## Dutch - Toine Rademacher (toineenzo) (2023–2024) - Han Boetes (hboetes) (2021–2024) - Kenny Verstraete (2009) - nince78 (2007) - Ingmar K. Steen (Hyriand) (2003–2004) ## English - slook (2021–2024) - Han Boetes (hboetes) (2021–2024) - Mat (mathiascode) (2020–2024) - Michael Labouebe (gfarmerfr) (2016) - daelstorm (2004–2009) - Ingmar K. Steen (Hyriand) (2003–2004) ## Esperanto - phlostically (2021) ## Estonian - rimasx (2024) - PriitUring (2023) ## Euskara - Julen (2006–2007) ## Finnish - Kari Viittanen (Kalevi) (2006–2007) ## French - Saumon (2023) - subu_versus (2023) - zniavre (2007–2023) - Lisapple (2021–2022) - melmorabity (2021–2024) - m-balthazar (2020) - Michael Labouebe (gfarmerfr) (2016–2017) - Monsieur Poisson (2009–2010) - ManWell (2007) - systr (2006) - Julien Wajsberg (flashfr) (2003–2004) ## German - Han Boetes (hboetes) (2021–2024) - phelissimo_ (2023) - Meokater (2007) - (._.) (2007) - lippel (2004) - Ingmar K. Steen (Hyriand) (2003–2004) ## Hungarian - Szia Tomi (2022–2024) - Nils (2009) - David Balazs (djbaloo) (2006–2020) ## Italian - Gabboxl (2022–2023) - ms-afk (2023) - Gianluca Boiano (2020–2022) - nicola (2007) - dbazza (2003–2004) ## Latvian - Pagal3 (2022–2024) ## Lithuanian - mantas (2020) - Žygimantas Beručka (2006–2009) ## Norwegian Bokmål - Allan Nordhøy (comradekingu) (2021) ## Polish - Mariusz (mariachini) (2017–2024) - Amun-Ra (2007) - thine (2007) - Wojciech Owczarek (owczi) (2003–2004) ## Portuguese (Brazil) - Havokdan (2022–2024) - Guilherme Santos (2022) - b1llso (2022) - Nicolas Abril (2021) - yyyyyyyan (2020) - Felipe Nogaroto Gonzalez (Suicide|Solution) (2006) ## Portuguese (Portugal) - ssantos (2023) - Vinícius Soares (2023) ## Romanian - xslendix (2023) ## Russian - Kirill Feoktistov (SnIPeRSnIPeR) (2022–2024) - Mehavoid (2021–2023) - AHOHNMYC (2022) ## Slovak - Jozef Říha (2006–2008) ## Spanish (Chile) - MELERIX (2021–2023) - tagomago (2021–2022) - Strange (2021) - Silvio Orta (2007) - Dreslo (2003–2004) ## Spanish (Spain) - gallegonovato (2023–2024) - MELERIX (2021–2023) - tagomago (2021–2022) - Strange (2021) - Silvio Orta (2007) - Dreslo (2003–2004) ## Swedish - mitramai (2021) - Markus Magnuson (alimony) (2003–2004) ## Turkish - Oğuz Ersen (2021–2024) ## Ukrainian - Oleg Gritsun (2024) - uniss2209 (2022) nicotine-plus-3.3.4/_config.yml000066400000000000000000000002221461625273200164450ustar00rootroot00000000000000# This file is responsible for generating the main website from our GitHub repository title: Nicotine+ description: Graphical client for Soulseek nicotine-plus-3.3.4/data/000077500000000000000000000000001461625273200152335ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/000077500000000000000000000000001461625273200163465ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/source/000077500000000000000000000000001461625273200176465ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/source/README.md000066400000000000000000000003531461625273200211260ustar00rootroot00000000000000# Source Files for Icons These are the original SVG source files for Nicotine+ icons, which can be modified in Inkscape. Use these to create minified icons to ship with Nicotine+. Icons created by mathiascode (released under GPLv3+) nicotine-plus-3.3.4/data/icons/source/source-away-rounded.svg000066400000000000000000000141241461625273200242660ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-away-square.svg000066400000000000000000000051461461625273200241320ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-connect-rounded.svg000066400000000000000000000115141461625273200247560ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-connect-square.svg000066400000000000000000000043021461625273200246130ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-disconnect-rounded.svg000066400000000000000000000141621461625273200254600ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-disconnect-square.svg000066400000000000000000000052301461625273200253140ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-macos.svg000066400000000000000000000212451461625273200227730ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/source/source-msg-rounded.svg000066400000000000000000000141201461625273200241070ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-msg-square.svg000066400000000000000000000051451461625273200237560ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-rounded-16.svg000066400000000000000000000112301461625273200235460ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-rounded-24.svg000066400000000000000000000132501461625273200235510ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-rounded.svg000066400000000000000000000133351461625273200233320ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-square-16.svg000066400000000000000000000040161461625273200234120ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-square-24.svg000066400000000000000000000042261461625273200234140ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-square.svg000066400000000000000000000042641461625273200231730ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-status-available.svg000066400000000000000000000001771461625273200251330ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/source/source-status-away.svg000066400000000000000000000004601461625273200241470ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/source/source-status-offline.svg000066400000000000000000000003771461625273200246370ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/source/source-symbolic-rounded.svg000066400000000000000000000065061461625273200251530ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-symbolic-square.svg000066400000000000000000000035531461625273200250120ustar00rootroot00000000000000 image/svg+xml nicotine-plus-3.3.4/data/icons/source/source-tab-changed.svg000066400000000000000000000010261461625273200240210ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/source/source-tab-highlight.svg000066400000000000000000000001571461625273200244030ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/000077500000000000000000000000001461625273200176335ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/themes/example/000077500000000000000000000000001461625273200212665ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/themes/example/README.md000066400000000000000000000002001461625273200225350ustar00rootroot00000000000000# Example Icon Theme This is an example of how to create a custom icon theme that can be enabled in the Nicotine+ preferences. nicotine-plus-3.3.4/data/icons/themes/example/away.svg000066400000000000000000000003711461625273200227510ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/hilite.svg000066400000000000000000000001571461625273200232700ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/hilite3.svg000066400000000000000000000004571461625273200233560ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/themes/example/n.svg000066400000000000000000000014701461625273200222460ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/offline.svg000066400000000000000000000003301461625273200234250ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/online.svg000066400000000000000000000001571461625273200232760ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/trayicon_away.svg000066400000000000000000000020301461625273200246530ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/trayicon_connect.svg000066400000000000000000000015611461625273200253530ustar00rootroot00000000000000nicotine-plus-3.3.4/data/icons/themes/example/trayicon_disconnect.svg000066400000000000000000000021031461625273200260440ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/icons/themes/example/trayicon_msg.svg000066400000000000000000000017471461625273200245160ustar00rootroot00000000000000 nicotine-plus-3.3.4/data/nicotine.1000066400000000000000000000027631461625273200171350ustar00rootroot00000000000000.TH NICOTINE+ 1 .SH NAME nicotine - graphical client for the Soulseek peer-to-peer network .SH SYNOPSIS .B nicotine [options] .SH DESCRIPTION .BI Nicotine+ is a graphical application that allows users to interact with the Soulseek peer-to-peer network. .SH OPTIONS .TP .BI \-c " " "\fR,\fP \-\^\-config=" Use as configuration file. If does not exists a new empty configuration file will be created. .TP .BI \-u " " "\fR,\fP \-\^\-user-data=" Use as directory for user data and plugins. If does not exists a new empty directory will be created. .TP .B \-h, \-\^\-help Show command help and exit. .TP .B \-s, \-\^\-hidden Start the program without showing window. .TP .BI \-b " " "\fR,\fP \-\^\-bindip=" Bind sockets to the given (useful for VPN). .TP .BI \-l " " "\fR,\fP \-\^\-port=" Listen on the given port. Overrides the port range configuration. .TP .B \-r, \-\^\-rescan Rescan shared files. .TP .B \-n, \-\^\-headless Start the program in headless mode (no GUI). .TP .B \-v, \-\^\-version Show version number and exit. .SH EXIT STATUS The regular exit status of the program is 0. .br If required dependencies are not present, the exit status is 1. .br If the given list of arguments cannot be parsed, the exit status is 2. .SH FILES .TP .I ~/.config/nicotine/config The configuration file. .TP .I ~/.local/share/nicotine/ Other personal files such as downloads, shares and logs. .SH AUTHOR Nicotine+ Team nicotine-plus-3.3.4/data/org.nicotine_plus.Nicotine.appdata.xml.in000066400000000000000000000120721461625273200252050ustar00rootroot00000000000000 org.nicotine_plus.Nicotine org.nicotine_plus.Nicotine.desktop CC0-1.0 GPL-3.0-or-later Nicotine+ Browse the Soulseek network

Nicotine+ is a graphical client for the Soulseek peer-to-peer network.

Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) alternative to the official Soulseek client, while also providing a comprehensive set of features.

#D4E0EE #203651 Search Files https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot1.png Downloads https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot2.png Browse Shares https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot3.png Private Chat https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot4.png Search Files https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot5.png Downloads https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot6.png Browse Shares https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot7.png Private Chat https://raw.githubusercontent.com/nicotine-plus/nicotine-plus/HEAD/data/screenshots/screenshot8.png 600 keyboard pointing touch HiDpiIcon ModernToolkit Notifications https://nicotine-plus.org/ https://github.com/nicotine-plus/nicotine-plus/issues https://nicotine-plus.org/doc/TRANSLATIONS https://github.com/nicotine-plus/nicotine-plus Nicotine+ Team Nicotine+ Team intense mild https://nicotine-plus.org/NEWS
nicotine-plus-3.3.4/data/org.nicotine_plus.Nicotine.desktop.in000066400000000000000000000006501461625273200244440ustar00rootroot00000000000000[Desktop Entry] Type=Application Version=1.1 Name=Nicotine+ GenericName=Soulseek Client Comment=Graphical client for the Soulseek peer-to-peer network Icon=org.nicotine_plus.Nicotine Exec=nicotine Terminal=false Categories=Network;FileTransfer;InstantMessaging;Chat;P2P;GTK; Keywords=Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK; StartupNotify=true X-GNOME-SingleWindow=true X-GNOME-UsesNotifications=true nicotine-plus-3.3.4/data/screenshots/000077500000000000000000000000001461625273200175735ustar00rootroot00000000000000nicotine-plus-3.3.4/data/screenshots/SCREENSHOTS.md000066400000000000000000000007511461625273200217200ustar00rootroot00000000000000# Screenshots [![Search Files](screenshot1.png)](screenshot1.png?raw=1) [![Downloads](screenshot2.png)](screenshot2.png?raw=1) [![Browse Shares](screenshot3.png)](screenshot3.png?raw=1) [![Private Chat](screenshot4.png)](screenshot4.png?raw=1) [![Search Files](screenshot5.png)](screenshot5.png?raw=1) [![Downloads](screenshot6.png)](screenshot6.png?raw=1) [![Browse Shares](screenshot7.png)](screenshot7.png?raw=1) [![Private Chat](screenshot8.png)](screenshot8.png?raw=1) nicotine-plus-3.3.4/data/screenshots/screenshot1.png000066400000000000000000002426131461625273200225470ustar00rootroot00000000000000PNG  IHDRb6%bKGDE@IDATxU=ozgv|ܹs{rۈQQEEDQ (YQ1c$$% "dQ\O~>UV|V! !B! ` B!B6B!B! xA!B!0f!B!˜B!Ba B!B!!/!B!”)NB!B!X2PtB!B״ 4`B!Be0d0`DA!B!/ jB!BUN sR#B!B(V2'aT4!B!ʗ1 S`¤k%?A!B!Predk@MlG&B!B!W|#y6aDD/Q !B!U9!Mt фI׀ɵ#B!BUS&1C&. &&!B!J)Y C&ȁe$5` !B!B3IMt Lȁ 4 &B&B!B!27d"f20a0q˟B!BUg)l̘7a~a_.cB!B%2nL(̘"1IL?I`iOH?A!B!P⌙0C&itL/S&L?ś~B!BXy?0e5d0c lĜ fDExB!BX2? 1e L͘0b MKHB!B!jɮ_2A2ٚ1DA o/~=B!B3(S&,:&hR:bda fi7!B!BY1d4 ̘lI#!Ñ&LR|/?%_"B!B(V޾}3!?!*&G0A&̟dh8GΙ/?J$J3e\<3O``Q[~ 4k„0|x!B!կ_շv/S&3&b0b v( Ar?) 4܍7:pGn9rA!B!P2/>cW21dܐ83&ֹ!&!I~槾Iy: F!SıgϞw4!B!Pv!U}pt_&iԄILj 'h 3 #'ߗ.]ړ́B!BO{^{3'>3&hFI1QH4̏$06lx B!B_'0cC~qsI KJ }0nHT_T`J8<2B!B!TxOyU[ՇQoR\T Ó|[R60ysݣHlݺlڴ !BU?/ڱT{v7B%{oOE4׈gHT_z$ ᗎ<B!S0CFO_WE?˻!J?M7bj|TL!%Ex*?֭[7D_:„A!ˆ)C;K}sѫ+&.*Iy0b8$?, }SUո:8p`t#(A!ˆ)P񥾹U}_Wޠ䏊OQI{1bLLaI.1u|\;z=0!B1D T|o>zU_ݽ1ިI1'aĄ1Iq&׈K ߰$=;_:AB!S,G(x]vm۶͛720bN꫻I<15ڈ&h0nXnn]2[1f2<[LNLnСCr7!B1h߿_5Pu\y\G*2F}wxlbj<11('F̆ 3kk;9!B1`Č?Ԯ];eH\rI^#c8PV͵vܙ_i޼yEmܼ |ҙ7 |s`: #&I'UR0b~U,#f6_~9M&M̵^kfϞZLuw&ޟ{2:tUjF9fΜ9h3cpBI3`ӯ_?㏛s8p/i!B#Œ %6Vnل ltڽm~EL L=oݺ5~KE7tSq7JɈG4LQ1!F̯0bJ߈R2bTs9VZ뮳.]3<Ӛ11 ȗ^}UݰawŊOl0Qe_}UI1o:u*8BaĔ5a?TTHٷo_>l׾2OnE]d?|pyه4bW\ڵ+xСCMzjsoٲyͶm۬iѶ__m۶*˖-Zˉ{4b#&wD1?Јe.2aL3sFB6F s,Wk;MdӧO7O}Ó"f^x3h ,Yƚ"ZhÇm ENO=]&];Z*ٜ vɌqQ,cǎM{SO=\veړK/d.W3ݯ>ψ#lZjݺmgP^z檫ܠC:I2>;|[NѐfĨ74M3cd^X`Aw]#?1? 0b~^,#FQ0ނWZn kӦOF[o㶗4Ν;[l1۷dh?2eL(3&&L1qI+_͘2*dZxߺe_ UN2Jf̘aM˗{W=OҥKZmTje-DPӏ1av:omUiEMK4B!TRC̘LM\14a4́ɀQD(*AAC~D(LQ3ϯַ>W;:_=sUD{!{avzYI?fԴiS0;y+ƈyS11\F̸qBNT͜9~~衇RR [m붿ꫫղxNdZߑ/&_sXH1zh[IQWN}⍲=tM 2jԨDFL9#xjPJõB!$E҄ɥF,5Nory.1a-$I\gуja2 :_1l^]s5Fn}㟌kժUsĸguR(eZN5criIrߵ^oJI^(O(zG&O6^Euaf(cd̘1B#& 2~{j'4B!Tz͘lM\12a}'|%{Z[a˜r)vQ;6>t4btC9ФaL5uhҞFrݙI11^"Y&O\mLM곢 7 or.bFcB^ \1nRMFJƙ12KTkgjNÅ2eکpѰ o!`2YXH١>ǒ$"&Έov1!Է&= &Ffy 7eÇ[Yfv"X5jdgrrq'AsNfkĄQ`z{^ļwHΌѺN֋Lk\$7}=Rn+<7nl'rfch iq<"˩+DQs79G1c%ͭ3X%H_F3FѶ2u4U0nhL-MqoTv4mezz M^#W^,se(xGw(5%B!j~W[ڄqr:u |;.WA K )i[=3b*I=_E񸗇s__-jm7EZ7E;fSa^_S$#hHUVM{%Xʪ-w[>s ׯo ͍?o*Fnpn~zk2str3bCt][v$ gEٳgb3FFLly,q꺹c4+a1ֹ!LFwdE M4Rx.%#Fi<_c /#E( HOSh_E,ѸD!PM3bQz(kFCBWnt !a~6r?$ݯ{swEUJsȼWr`bΈFߔcIfL^E B!|1e;wi2bM0XkFho1:OH&F$0b #&ވ9 #Èqfݻ7B!1+6~qyu)(s}|i:-:EktaJ9 #&}#'11af-=!B1|}5*m]y啩9lPuٳ'gI24b~$B!PMܛDN[FFÈA!B11LdL011#!Ba TIg_mɜ011#!Ba <m۶l޼9_i]. T$mݺF B!FLv(q/T`޽F B!FLv(q0b0b0bA!B1D ;3!B#P&L.@a``Ĕ0% B!|0 GB###!B!ˆA!B!F F F B!B!B!B!B!B###!B!ˆA!B!F F F B!B!B!B!B!B###!B!ˆA!B!F F F B!B!B!B!B!B###!B!ˆHs5ݻw7guSi֬g}F&AС+5P0<-4ibhǵA!B##&:x۷~l/wϹ5O= y\iF>7[l:ғkeeBiaҶC ~a`TLN;k׏̆*Xw F6fQ /3ekCGeeBQR2##B Gr&̂ ?~ʌIgn:ud;r7_~O )xsa^|E;/ZuȽOL|_Zu&iG/mCezFwu-Z߹rJw^h"gsnX&>ILjEZ*>}^O#FrBYÐ[jUZM틚)riXiF) 3f`)$j,\=zt57'yvۇz(r^=E)yr(uvU$.I/*BSh8iӦf̙k׮JIOa'dQl٩m$ά{A/I};Zlέ˄\'1·SP?ĈKoGR kzmW.\.(fwab=ꪫR@^캖-[ 5 P8#[h "iHιk*ܞ3d*(v6!UqҞ曭{cz|&uR\L&q'(NyQGF#)7y/Γ-Y*]3i]UgRTRy9LqKn auI|\}R)>im_ gױ`DiQsԭ_>%);1b9= 긨S%LʒtQ{`W"}4wc)G +ܽNO::n^UB̵S .(SL֭k$et2U{ڗL11/2+#ժU˾e)IA{igV>}=f6mɍ]֓VՔɢuaPsxG4Æ Xri$-IOb%-Ž\>vh*S]3IɻNc˽OnTظ:_p_~Uq^wK^;#5HL Ul*)ayqŶA}*$IO{|t$uI2 sutJI̘y<{7#z9iMLj)P$n 2 Ӄ]/Ẁ$Qٔ#nĕ 1$ʈ^UB̵S ݛ6t}7wP\ ?}Ȉ[ 0b0b2VSfގ QO,ԁ zwH*|쫯ePf-zʪz噷g@=uDÈ-^)R׵-%'^:ӝ>Zj):g*55}9r5n=Vɾd$qǍJ{r @B15Olƅr 2QZMWQJڧb]6uj/YRU9;TΓ}|t͓QuI\n}R 幞z'mMNڈIf1b9=|}( y˫m9UIeq3혦{nP&d^u5WG'ݽ*Q@iC2:IStU';_z&uKb ywS3:L)QU!Z {:n߾ݾ-#ڏ\װךʈQ&-*ߝ&+fL&&Zw+Jş}m}xbWHҕ UQ$]ze21{wܨh,rqƥ&r ڇ&MSh54؛\z]+>.3L Kʧasd:YXMDafR'No j;z0bpYWU *irJ垢WI[ 0bEHꞨhMUG'YW?e (:^y3\'LA&}LRFǭOLj)d:)hĄ{]fGLa.ްPR$iѤ\T;z˄\-&jwT^ˆ)XĄ3cڶmK櫀?WWФ׸cyB-'1cd#B5L)8& F F FLb3Fs<(Ԍ̇*GI}5N7n^Bۃ\=:``` B!B###!B!ˆA!B!0b0b0bB!B!B!Ba`` B!B###!B!ˆ)-#PB!B!0b0b0bF B!Ba`` B!B11Y1V2+VEe*#B!*7Lj!F1111111111111111111uYf͚5#x>|4o̞=; >3;v0]t۷oY_rY5gV2###&qtӦM39rHj_p]W1rH}Td{55d2͛ 2>m'U+42?#2##=z\gنylCQZ6wkTB4Ri֭;v,5rEQӌL5e&3O=UV"i[1ǎn޽e^{2e34={4[!JNj!Cqf qK¡C̜9sRFXThKPhѢygE]d6mjl=} j{?޽.kժU`|֭k׮I&+v*vi:#F(顇׽oO6lh:wl;4kԯ_mٶm[GJL# 5\{jMF7|Ͱٳ''EHr-6_|q+Q뼤kf򡾿vڌM9/rs{sWKޥLo.ː{/'^\Wfb  7#FWzʕo'*|rX0a {: #h,bݺu=c-[̥^j^z饬KsM7قFO5Xn vWN!uJug}6K׽UI WIbҥ I'nOoU]u,ԙ{=.MUbi۶YjUӧO7\rI6v[Z8(o$ W_}5j_N:/馱b ߸q]}]FҜͺ6\pA숺7SN5mڴIm[o52$}Tڋ+Rו~21c25a0b0bjĨ3fرcsذay7ba.t_I&:d}_u2?*D鉰w;tW zGuŽ߽{wDۑpՏ:uz4UiiDO,Ywe 艺Pg8(D]㠼tAF78dzQ'^uq'*E'uz5΁nrI$Yzu&@ PG}UUuLj}q.,|] oh.L1 仏? KϧϮTFꫯ矟}2bf͚eF1sLӾ}{6Az]_q%s0?5Snu8ՑJO#I{9;|AKg.$a1AAi[Juq&*']G<}n4莖-[V3i8҇]\!Q{tRו~1c5a0b0b2bj׮m6lAW^ =T/w31bWk Jԙ+&j:;;u}2b߸q'd7_S_^oͭI'/]v ׵ɗSNi{\e˖y=>ӿqX-h1JgvxZlQā"/7dj(:IҘ"T&Olᆲoʐ{=Fwqef)JK&0\011YI4) EWC;F)C gwjLիڄQ3 _)w!եfhF]W5۵kg55ǁAOFsnn !N5:Th߼yAif҉1c}hRM=ϧSNi{\{\7}~ߠnEԺl#&L +tM9V;S(*OC$s!u>廸2u%_1bňYxmiƤ-9؆j+qn5rz}ysQ3>}r[8/oݧ3vBN5Հ?sjMcw]SN"pYf&ZAo4h8\vey3bqT\z;zQ؟^f~31b&<"b4'nܨu1aI .?HDLM9]C7Iܽq-_FL\wt]\Y0b0b`@trСCO*eGB7Lj!")8ǎ34{1;w4۷o7۶mKK}h_'@Maffڴi՘1cJ~9pF F FLR>lvޝL}b0`x ###& e|0AL\(Gi”4lXS04&L)1R0%ɾ}1uh3bb0b0b0a0c&L1F F Gb````Ę41o0NL 1111E!ߎ۔0b0b0b0b*Ç s),XÜ}SO5{իϹ81111hbʐZjY)) 7~|fرc\fĜs9֐s{=sYgU[+#.3o~c``n8Q`ĤѣG| s駛gylذF[2527xcmg]tiذٳg&H΄/YpرٻwoE_ռyΝ;Ro6b&رc1b0bjrZ7k2 Yz뭦CsϞ=2 ~ؚ1|O߾}#ִ17TDEyg6nxGg]#FÑSFXdI,T4o<}UNIdlݺ1#Seѩ2U)J}-{m43^}3f$:+yKM|13gδWdCr0Zhmk.{>.fy&(yh8yF.]E\wuy*ªXr0bҍa^5b4fS\lǦML׮]m* E8<vE]d >dfނ_t֭Z+8lal߾= b "eʔ)vٲe?ЬZ̞=ۆ(R?jÝlȑs2b.Rݱc5@^k4h`*{&UZq1##y饗O?m.[hxD /xԨQ@-2Ϸ0Pfx't 2EBf櫯 wf'xš'kf6olktۼ[v`'|ڗ"lPl3+.*(N9Ѿ}{yݿ48Iݻwfĭ RXVԴN-4^Q2︇vڲ zԡqeę0:OykR9_㌙8#&hQ{e~;#/i!qz3CT`._~V kwa'ud[л}ʈQᦨ-<15Z$9~곢ed CRyd0bψQP)bZIj곆;8㌔ޏΝk;zŮP䃖k}+ 츇v;w6͢M6BҫW/{~9b8:G%MVES$s(>5b2Oڈ+ l+̪9AzsS]&O?IAoáI.E2Z4Nm#Edhvwya5keo&Cph& j󺎲䙀9`QVF3ptCL1({X[9sk :RQT~SLRrhR~WеtS6bU Fw^&aĔOk,Pֹ͏&ӬhInyW(2IA&8n&]MenR__eh|<`CNoQQde( Fߕq4tPLbNzj7vtz }ܰqs5Ar1BB7!„)K.~WXH?IWTÈa^W(@pkժ}7SճgO0;U L2j Y,*tu\_[.T@yؾMVUŪzq&Ƙm/)%-IZ߯_jy}5@1n~MnEm@->}+F+v} yLsĭ7wf;.W hKɈQ_iEʄ)K6FLG #&T> 5c ihƈ)y#F\μ !7"E4PzM.RT @r;ud':3Uc&W2Bׯ`Q <((Ecr5/"_C~7jF{Ȑ!l:w?'NU_4\4֭[۷h2Ti7yڑj5 uq7_\/jIV:amR2b8SA*t_}քȬ9UƈItS6b&{E5s``T*K)<-J( rjnEMqwČ,Y"adxߖSA޽M#`]#|%Z#PFd8-K\1ڵK+0bhF FLQa^FL:_*ɈQdehȑuA1b`bf/U#zS1$}R!ś####bٷo_dL F F F F f & @"ϟѷ~)1 *cxt0!mJ:!*bhy5doRQH1͘R0bd=|LjǎÆcvioߞvw]C>L T CF H11P0b0b######0b0b0b0b0b0b0b0b0b######0b0b0bYre:.p_{ ˆ={/* **`P6@/ "=F _eep0b0b0b0by 0b0b0b ٺuyR/vL/,l op##&k#fǎnݺj?#3}tr `T2uT3fYf{VߊPsAf195~qkqƂC!?F F F PŞ={̨Qlꫯ̒%Ķ~j=ZF̴ilw\a 0~Yv-F FL]213f0k֬1_~Z>j.Lj*ްXbEQB1 ,0 MIlvW1_|Ejw}g&MdÇ|3gahFL1ǎ )nɩ|v?6;w֐Y|u0bĉm:Yx0ay=9I);Vѓ'{u~ Z!A .~סeAT~_h-OTV΅e̙3͡CB*U֨ reȤƹ`E(j-[6lԦgE[E!yݻ]$mà2## FֹyfF&}]3|\ X WB*x(|+UF7ZeWF2bS#H*mU2n۶m'tΟ(+g(#&i~wLbW^Ou-[fP*{]=u,gu.d̊:>eCy5g M6e2rňQI1vVTymQ=ExaP|C'JB %N9JߛA0bJק*UX.: *GsO6Ty+bMR9='5~wΟ(+khR$*/=MU@Of]=ϕ/-@P.WE(ڵ+D#F391vVXyk&yaX#03'1 .4 T@Ȍ:e*yT#pyTyߟ_] 5*G/0GT6+)1wu\#]saQAs:pU? R4]7*eQT&g8#Ȉ񶳢[g̞=;N6 *1b0b6bCe~ JJ ×L7,I3[ƂLri̜ չ`ĔUh7Hy?4I3٫Lpa]oMR%qj(U*4bʂHW'JO`uԸĈ+g(ʷ6Yj8 uݐ,_G^"r;ʈ*oݽuaQmC1T5a#fyWc```p_()(C 0b0b0b =p0b0b0b0b@(11TTT 0b0b0b0b@ޣllF F F ``````F F ``````F F F F F F ``F F F F F F @r晽cMF F F @M4f-{ر@=fXWF F F rYg5k"=z4-{ԭ[72B筷2]t9w}Zeӭ[ó4 m:t0<@כڵkKÇ͛ٳgsWiذرYhQ8pnTLtuIov̜9s"ozݩq?y'G>e˖8tHVߚ/gzݽרu֩~'WK . F FLM2b͛g^xĚ?~h 7#&O4jj(-ѣGX=LZBچ UW]Uzכ[d+0#F|X;v8a]߾}:׹9r=Ӫ:M4vγfͲ˦~f۶m˛2Mfʹ:t~~ꩧ:7{-r1b®{5R>2e -XjĨ/?z=IC5FL~hРӿfl2.3Ux#lmr9nFɓ}xΙ1Qi5h;ҏ"KFLuOLjIN^$0b0bJ܈5jD-Xƫ}< j@0jd{55AѮ];7BSkĨӫjH vԹčQ?VиȵJш_M 7xFy)j>o9&5:W+J7PA\TB ILjQ W^y>W JQF2ߩkF:͛7O>>4s-ݼT7[#&+L|%9Cap2OZkˆJQFnUu]~^XI)OԈIN^ߨͯS=ITZ j{ŋmVsh,&&6<5:BAoL(T^ГjF޾P.x+D] ɹ{M:hiMݜ{MHT$Z}¯7t4FunD123dhRO7u.uJas1ޚqn 4EcǏ;ӼT7[#&Zg+Iv|u&۟reĄո{#E[]r)#wƥ͓ }Uҝ߈_tt ] 115Ȉɔ>\&h\ Gp\:ty'fFԡG0b0b0b0b:9d&\~}EX7S-zV|Bu;C6e11111111111153m9r<#YfVZtgaÆm0b0b0b LӦ=ͬY";v,-@q:t _>( 0b0b0b M=fXWElYp >Td F F F -guYfMٝgt7ӧ/{ѴTlo{1Snz\tE32p@wߥmٲt?3͠AB[<nvfҥæyf٩իg6lh:vh-ZT7$Ed>)*ԩc˩ ۛ^{-Ȥŋ 7`i]vپ}3Zli6mژShlٻwyMVLMNBpXM2})Hg LFmf/Iѣ: qahԨԩ J3QZ*&*Uv2:Ǐ7[66l⫮Z~כW\aFѱvqº}uj#G}G5n4iRg͚e(U#ƕc*/Qcok}m6kؚF3ƍ RgæMoau`]ĝ;@1aFR޽{ݻi۶mZm4sMT&6$qΝִaSP#: t5'ϋ +1cƘk2b@>\r9mXQz_'Qp'<ԳEVQցjI7jPIe|է]yEs"#@ʗ}%n]r%/HT&6$2'N$"##&) 5VִiST RoFk͔)SgO=Exwм[l UoHb 5\cE2due<`T!s;"tb^x!t s?jlԯS{T D1'| ѹk͛J rF6U)Ҹѡ7 ҐkxӉQmojV짟~JɈwy՝[NL0M/*Xd 39/jʠmT F F FLVXa.lV560P!|=ܸKK/ꫯ6Fk`F̞={Rߕjժ2Ksuc"jP#t.rWհol#{5aOǒq/W#СC9W1j*=U_q57nl?>}zd@&"fp*)55$97rOk!(vkFK\1t5 ]9 .:^j CAu~7dSyY&M4WM~/# JSN9wxmݖVM-kĵu4$LsvGoňILei,vR3oNL4)5߅ MXb˿?ea:W5:35br5b&kԍʚ~~}=g^}VzT@)rc]l3Mo]6jÄCL6-IˈQy\VX njZsN374)yD?wR:E(cH QFaz̙3 `DǡCcVl&9ʌrjk(3eJ}W 264*yQz2Ik?jji]UFx󟫌UsSاz>2bwa^~e龟4LV%}Ơ|5 *d \{-q54ILN- %}ZdsfdS+>: ጷ&厌E+MFi͡0y`qJ*{o.14Ɔt*@5ѕf23q?:-wBݔ:1J]vs̩ 2b3_NϹJ݈zBi@ GTzm49\NT9w.t?xɬ A vBC"Tк=k;* !V1*:}h\Ia*~O}N<γpì4߿f8<7Zh&wvҜSiIqQk߸SzF}/F:/j+Ao%ˠ2C>2+n}zB'⊺IRwFzP Y2Ue{q,X`a\OBI_s:a%>[#F5*+Uwqug\]U_ڷ Ix'St_gd24)l2[hNL ھ. OyIC_6",po5k߾5O x}Ĉ3:\&!g;ׂyC'Ʈ.\oĭ?F F ){s GV ?4Dh``````F F F F F F ``F F F F F F ``````F F @Eq晽cM#GGy4kԪU>l3l0 F F F @iڴ5kYcǎ%(.C=GBF F F @iܸՌJsqZ⢨- .fE=c=f֭[o.vFhԺ-[nݺgu4hPoСy׭_Ԯ],]>|4o̞=;=czLÆ Mǎ͢E}v&L'EX:ul9ՠAӾ}{kUt785n8{>ц(Fd>lٲڴicNJpFmׯ>MR.]LF̥^j&L_ٻwyMV=ԩSdն7;wiAe1b0b0b*ƍÈѨQ7SfGTƀ*=zNFXg`ufÆ xUWUدz[9Y|+̈#B:֎;NX׷o_N9r=G}dWaI&y֬Yv;R5b\9R5o2boW^SM67xsƍɔΝ;m']&GQm*Uu6Bs̱y'"SLJqݦwަm۶,Yb'OiAe111:*1bӠAȿQ13fYv=(#F)ʕ+駟nB իWֿO>/Fߓ-ZXFAT_x_q;&@15UwpUGXoS3;;^{gkvss &c &`Ɍ1`L  $@$Ip~wM)離Kz~7t9BH;0v~Ifi&W7?9`sJ^" }Grrrжund$ 1bh*Tl v1è0о}{پ}Ϛ5K͎a;fWD<=zPkhTͪ( M3+WT*msoݦCѦV^]6li[{k–B |ùsT]K1^bԯJuE… u۴i#WV#@¶PV/\`|c!8\a8ROlܸQFd^sjR!@x:&{8y@Ё+b=nkۓ>l&ya <(qQ 'co+1NA]1F_U/6V=Ǧ=[7T 8(+l. %WaB*c[3f1/ ߔ04B q uM:qHe3L F Č$[!܅<:]B DZwشiS1N!Sw ^#yhKnbp"y5ÇU\+7yܛ(f~\`$9z޴ܻ=o.A9 >cE/Ϭݢ}uvS׆"ĠG[h/!棏>REypuN ?{k l? %4ɶ%~  ˙5 1{ͦ€>S`Џ^/HEA=, !k[ܣ}K!B '̳`DԄb3ʘaܢE bry~׼IhB^(P![u?sw Rt aO4;y:kVhƍeǎ|sO>D=%K4U7Nԩc}gYmsg_;צSNʾF[gm)P`ݺub,)S;E~LP%'U۷o_e: 1?ԭ[W1׺u뀎O?U:͚5;Dp[neX6|p X|:n˖- s̑y޽j=BɭBnr_l4m4y8bĈ &s _ՎRLINN6C 3+SRR*UJⲼ^W^+V>D ^r @6ӢE 9p:?pp 8P4i>"_??vɓ'ղ[*P eb(PyABL JuOoELI֬Y^MAa9;/^\s\lll?x`GAJl]5TFfr/ӧOWI5 !$ 1n8}3k۶,YD>裀ukժe&{Hl9ܹ@ϊ+-gH? 6ǏKMh@wYisЯ;[n~zah 1AtRոUPA xp!ӃWw۷YT9q=ThU* Ckz1N4Iy2mԨQ:| DqZinBLɒ]"]?YիW 680pMRo8w0'¸3~W*rn4jH.\hۦMe)pճY^ .\0ñcU0eӦMxv2$ "N3:~n>㰗.HlUV*dI<À8:(WF(c?i=G.B _w:>D$& D'UV}dѢEESoM`[Aٳgg0CBHfiТ]IjkH`Y 1 7d!*v[1d|y.Q_$'ԝ3|̪ឃܵkW^B:Lޘe,_/y>lQO ln!!DG bf]gfy-N!m1fSѦC\xvήmDuPu!@!dC 6i}u|wH l"8ّhp>QoL~1{An!>]p 1g_~JسN#;l.>NHf1X69Ib(ĈktQӫH̄o!@l.fbaTؽ / B}I5$#h 0 Eċxtʕ+yhKnbp%<f8|{w3 xe6$-siw{ !{{s|r&Y-x" -姝ǭobr{sΉ`u1>a4V*7As[ tMu`?nv}o(INvӧqzrx@r&_l{Au 3'ⶏ찹7nƶb?B@ ՎC!xWu w!g ! -ЃⵜdH< ϙP%ΚI(IB  1$@o{!yB@G~[%:ю$PC؁B!H(poDڑ 1b(B!B!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B  1B!B 1b!B! 1b(Xqg9A !%%%E&O,+W *UԩS:B 1bf*T'{vӠ !eʔ)k"B!B Brk ۿ(+T!bѣG3,;rC!PC!Y*U$/^s.[DEsTiw/l:b3gN͛ϩ]?7n,;vMOr^J,麎`'uI]xǏ6ɼmsPC!u(X(S*;vnJNxN?ʨmݺu@駟*#ٳgYf2|GǺuVeÇW`˗l٢þ|u޻wZBrcmOSիWeŊ/1r o|ܾ}[ԩNx\'OT֭[{J (is~ ?  1b^ xAHR;CaSr5kȥKT=:&M ?^/Z666Xl2$?!$0`lڴջ֭_"~ 1b(ĘXtj*T .<^)Y[f?ف̼=!Y pOb4nܸl.! .f.TV\$s==C!B @|@cN#i6 t0p+` / $fdȑ*ܨz,Ay^.5 uWbvtո87T{ry?lQY#ڋ/V fWݞCB{s6>6kyV 1hw)mVBB,DZ;i~ˎko߀m(^v"8OhVZOԑ) \`ƌw 7<ȑ]6 mvOB  1sS@xf=@D&xb,f D % - }`6L' VAcR<8K6m**C}~n>W\7g _E^rkfw$r3'Ĭ%}dV>qq4wnF7otxN{Ӛ9$H~s r,s<얣8 "L Sbm!oǭ Iv#coXUV_Ü#Ʈ]9&9OOV裏WL:Jrͅ{>'&+l.>ۚB  1D < ,pLDM!V ibYOWC!Аyp DOK_~ܼySkVmxƍeǎH¯t}7nԩSGJ,[l.6k=\{\MPC!uQPLOUv8l%2AWo߾} Inݺ:֭[t~?^ gϞf͚֭[ >\-Q/_۲eÜ9s|u޻wZBrj*iРA1Zr -\zUVXs 2`@q|$Vx^dҤI\gs̷y^hB8 C!&9d 1*]n=V0%'Yf\tIM`Vϟ?/ŋW@k,_l <(`^8bQ*(n39f6#&!6!Ν;RP!ɋ EbCܦd$''*dMg^aÆrq 1b(ҥKUVBT  #o߾]g͚?n!=z4}PhpoWmV}OI&)O/5h_~zCΝ;ˍ7ԲHԆWݭw^6(KYTP%7&Z~DjժɡC{2ѣG :w(ǵQF>XW^={\CB !t)`mf~or|Lxnv;ao dݪ-E~Y@aƌROH~![ #"yW.6llѮPC!/ΝSFv+_2~Wj 5 iFV^G|`2e޽{ƶZpQ4p]a\|6mRڵkה6dqSwWǏv!g+ZR!Kܵ\rpr""fo i'[bCB=[B( ŊS}UhZ*S!K1]t3gjc&..γu ')&}ر1XˆLϠ%Dri_[ܹs?i?Yesصy8 ;qgۈk a,mwSC!70Xɯa56ollSfI{`vɓƌ)lucw|U!f {B̙3gg'ڀGfMﯮ3DrnFSݥc۬ٙgϞ Ē%Kw?s9$ovj?%3Eׯv b1B ,ckPu{m y sfØEDHJH~![IL0x1~"٭Q<&ўîC!BP,\b 3J 1׬YSbCC wȟdsZY-d]7' V;p.`eֺk]a$>7c3nFӧ,ZHhl \0{  mDk ZgH΋0HLnSC{v  4hD #A u `m%=0d'l."!yDi۴̞b(Pq 4 t0 o3`߿?ȴbn=^rp-1i6&0]vIZFFQC;`%00qz !faTq[ Ӭ8+ p`YpYbl;Ч'E&X[ ݻwW^kOV\$xynM8QRC!@h\ѐj1H~A 4pY>7on$r[ aÆ}9hB r̔4ȑ##qX^<7y ӆF!QwΘ&9ڵq/!W.q1ܿ1;#_5 #` 9sH| h3.ngu~oMCGxF=!{nvEqa "6$e+?Q"޸ykr}AB{ ;|(oQC!FS?0PWH̄|=ɶbi؂ f!$ }Gbm hq,d_oڴ=Swl|oῊF!+ >2V9cpq4wnF7̆ xNt{Ӛ9$_փ/ i9^n`ZMͺC /V.&90OVG}D( ˙'l%g\{a]]l.[gnA\ǸOEJl&C!&pf2]HY`cIB0 k*x-'a!$@!B Yvyo 0B(P!4b!BB 1b!B! 1b(B!B!B  1B!B 1b!B!B!B !B!B(PC!B!PC!B!B!b(P!B!B(PC!B! 1byH޾G${E+/ (~c}* ,nݺyyHWB>G+Vھo߾|9CZr'BkyX.{axTB!B 1 M#dV E}5 ԨQCϟ/Ϟ=Sz-ӦM3Ų 3HMRtiuܼySz!UT Ⱦ}~zWmֱu֕Gz ^CJnP !B!P1c.\e"8wdɒF0aӡC3gUΞ=+UVU ذa4kXuj(!W8hӦ^Z1L2r=iҤ\p,@YhpV/GL^!B!B ,Ik'ƄK #ҥKʃu@ܹJD{ܹsG5j$K.aÆJ, iܸ'O,]hP:O|ՋBLr^!B!B ,{kY --ZX-Q4}lڴI%ERbbT\YMJLLDx %ܹSڵkzǏ3gԱ/_.7o \(P@nݺaղ&ĸ^^BC!&Oʂ [ne޼y9QŊ۷25ZQ O .hձm۶lbB}Ks`w|gz!CulРL6-{ 5jP% 1n=+k!B(P$?bLfEP۷oADϗgϞe{0l 3LM)Rti5 GRJeݸqKzm۶[=zԳ^B=Pr8o^HbljO=gO> <2eȵk/ʕ++Ν;xؘci Enm۲?X>7ocJ.]2N/~<3L4I]t5J-Nᅲ *Hrrɓ598cqu12svpu޽/_^5k~bλߊs YӾ}{پ}ҥN}ҥ !B(P9b`.\0Dm"/ j]&L(tAUΞ= } T 1iݺ>**Jtڴi#WVCL1P&Mȅ F<?`"[1!^ȋ-E! 1brI^;1&\"L10r1ciQ6d1p{J:٨Q#5c8l0<""Bi3TYPx͜}Zظq9R}wq:ac@c 1nmW&=loVZoߺu :ԶΡ 1gΜQFn`>V^A:IwE! 1br6˜f0РݻŜt0duBE;|"d gB^? #b~;QjuWɹpč*]{l$IN=Od~$!.Q&}#"I&}_A{Qxq t[k.i} )򀘅s|[Y!ƭjy^x7;5g  V kzBpGH:ӹv^7a9ꄺX"oX1 ߍ]/B!PC!&H CxfᒎY>k֬ɰM͚5egl՜1K= ih%:[Oz;;OJČr 5Xv"o,yӽ[dx(WP|YޱG%f#'55 q ̀'fqomtjo~3+x]ny^ ؝>$t[! ,VE+f/kq ;ߚߚB "' }3qY緂'N:aMg1wୁ:$|ޝ·!B(PɇB !N9/ #%nle}GXy7-^l3JR=c^n$1\'2e~CyA0gϻ!B(PCA|m6y7?:J9ڻFc]fO[͍[yR؅"tB~3 ^IwB!PC!B@G^/!BC!B !B!B!B B!B!PC!B!BC!B !B!B(PC!B!PC!B!BC!B !B!B(PC!B!PC!B!B!b(P!{$jOWd7Ӵ4NI=ͰEe{$qTBaRRRdRre)P@@RL:UC!PC!lrcIJ#OU˯1o0 \ӳO$X,g-˗xR !$2eJZ"""x!PC!Jr}DI޹WvE_w }'/@^ymJ7JjjZ?Ev.%ȣXY;yR !$ ĖGfXv3BC!BL.e˖Rpa)ZQʕ+g,T\x1WճlٲҵkWWFRO`\!wnI.%5u[Ō )l+fyJ]i|/B!9z uy0-%JHҥ]vrر~'3|~zi߾ {o޼)Gڵkkиqcٱc-:uJ:ulm<Ǐᅲ%K|(={TX;6}/ձ=o˗`^Oc[WHgQ/̴I '{&9s ,ZH"cxL0AF` v~YzFuj(j8hӦ^Z1SQ]p˜1cIwn|^!d/;ѧ+VL[ oۘ0 Mw%r5% 2W.]vqqqؾ}ԪUv@~TȒɞl9Z~'5XP`+ALyq#l),zcǎ2bĈz}WJ|B. \ Ї~Brxٹs4lP *g͛+5;!ADIsMG8؉'<3bz|6zSC!&1ha80t ݻꁅatR6lZj`؛g0{8U3HZ cLC^oB̙?{!}`0j?eCXdgX a+O0)"ׯ_Wb/vI~ 9P fAɺ͛kIgIn! *7x@cʔ)vZV!f͚5CMhժD݄L|/ޏG][Eė7 s΅tq ^PB}{ 1b\hiѢErh ,4遡CiӦcT梓;ynS$`͵/2Axoh"@E[vx]g;pѶSC!&B H8fp[_P0mۦb o?zW~b&卷f¥$/rHY"d g[bkȑ=ڙBo'R*9 Skw$'ܿov$%J¤oB"d/B!1݇ȂA=>#w ƒL ~{19ujB @^lcm8U(:>"6fx#A Ub(Pw`R@`h1Sex͙f`tW~p?QP?Qwe:"Ew*3˝#'$`9ߎOn/Ӎoo{e(oxZn#We3wkB _9 >kn9YȌ]PxqZ T`79%`;L YL!7g [0\.f X ;{&63fhh)$$&Ź}H,gRS{(ם>|Xڵk{, 1V܄؃[{X_!% Q)) m'$  1b9/ #%nle}GXy7-^j}tXI&}-gI%l3A_ⵜ^BH~B B<}˶goF+!kBu=w>!?m9+77nI%B(B 1b!BBC!B !B!B(PC!B!PC!B!BC!B !B!B(PC!B!PC!B!B!b(P!B!B(PC!B!PC!B!B!b(P!$#HԞyZy%o,iir坒FIK{a=H1<äɓrR@RJ:uZBC!B !)xGٟ.,_kb.a1z^ghIXnZ$/%BH3eʔ DDDDBC!B !o-iЉs슾&N^~uIKM,n4 \KG1 wBH-GͰȑ#g !B!B \N˖-pRhQ+WX^R%xbgٲek׮ hï^TV$vZ>*B&ܒ}ӽ]Kj%%%5&R:w.W͔ɕҠc_Br`HNNK&MxRzu5jT<ƈ#dΜ9[a|w}S0ܼySF-kז%JHƍeǎ|HX^J,]bbS+VcǦO:8/_ ʩSɓ'RjUٷoUԵtҮ];9v/dqsشiS|6{/[Lh7h@yTEQ*Zq`3֬YDw)u{ 1b()@q #gϞe{hD $LDBFڣGώWc_^ի'm۶u'\u["## 57AYŹ+B!b_c `D>3&MR}6d61x8p'fֵx|СR~}܎yu޽c*ĸiM0A ݻwz–ԩSlYf}WPAo ?JR|-~{ʠA nbڷoBYp?zUЁ ܷ-q1By n^x2Z>ذa{B  1!1p'D :~'cCʘAWC MT֭[;C@6md)eʔ{Ϩ/\`|gnlax,ZH=Zq3-B!${A߉>XbҨQ BP8s振VOG1x6xM.]d̙6 Bs;fV 3ٳCb܎Mu!0gYdVǎW_}'.\OFȅSP|csl޼ܹsVA( &Sw̡vc𘁈 WVM 3NB 9 C#/BN8ޠC!BLzf~vh4aܽ{W50.]*Æ SZMF3Hg0sɀH =Я_?IHHU&ĜCB!Ν;_Qgy?~\r#xVԩS/Yp;m;cb&xxw M2&c=Hp7oX ge#!*!vx'!vZV!*߿z bMx cSHP2CٴiSQ snjS [=+? 1 s-鮆˟BH6 I ϛ7/@hZ*P>} 1ӧOWJ<"۹&5Gq~!~7`jB&$]v< ^'ᑥ 1Xf<܄ЧO$mENq7(PB ^\cMMj*v_^-0mۦ `ío>zW~b&卷f¥$/rHYN:\H7v~`tBxĘs;&B~6ABq~wv 14>㷸 H1cޞ #'o:ArX1Я/<@l`t1I-E*m;c&hذZ0!8^pM7 8 1!tM4(ù@Α9! zz`,rNYSv 1Hqża6B  1abV\$ݙ]11V kM6x0F܍7!b9 c(---$!O`!T JČr 5Xv"o,yӽ[Dx(WP|YޱG%f# !d#ABDs| vQ6qj#0p ӭ^ GQ9vnD_$[ov Inq[fgw&PE&!)푧OVu裏"LjJ̸'MvکlcfqM&/^\AA<ƽE#&k C!B 9/ #%nle}GXy7-^k玾Q:v qڸ̜U<3 *x-' I,B+PCH'pٶp P^h%y]@3-gƭ<BBC!B !B!b!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B  1B!B 1b!B! 1b(B!B!B  1d$yړ Y+$%4-MS(iiO3~ѵwI0'BrEEk-BL%!F/- 3Y$TBaLA(B!b(P!$y9m\:Qw]B˯.W^[ iōO vI1(&VV~wA~rTBaѣ9r!B(Piٲ.\X-jr+U$/^U,[tUbccymիj.X+GE݄[ңot|IMw]V1{DJ.ʸr{2W4bBH΢^B] 2~xiҤ/^\W.Fujdf1b̙3's[ppM=zԮ][J?;:$N>'v8N5}?; w0`LT1 `Eo L`S@MI x~^s7;ڝ]~ιGڝ)wny>ҥI&sNV"55UNǏg\^Zʔ)ck޸r)RDN>->իp-ʕvɉ'cǎ*|t&/99YƎ+uUa@A 1bBRٶmk#'7\gRR=ZAs{nݺb8H~g{X7n-$-#~>LVc~L,wT"B !>H-|4h)POFJ*w(6eVHN?xBBD/%<<<[%X}rN 1n$? 1c^$5k(6Y \lٲ#aÆG,hZTBBgCѨQ#9yd3C! 1b,@ن #T'Om}hD  9HψMA(ިzRj7C}Km۶>^zuEDDj~7 z"`>`6}ĉrb,у9_}YjbJݻ3nm/^4370$.\*-]GLԛE!,;ѧ,YR7nIhqgϞuשu3F߿CͮO;I5Znmy֬Y ~?tPdz+K\\b<V}Co燘MȢ':w~W_MHHPehDŽUpa)ZhPYqS.P[h!C QB/k֬_B 9 &qA!!ݰafaYXdd~V̙#pi 1AcAMtwQ /:u|7j;^ CǃaLfnN:!5 0@]]W 1g(D!$صkWT(p=m>* 퓭} 15zl\77y rO3}𛴌`n/e=dn]1m߾}z8PqS.Oiڵ'P1.x/ލG <~/^%a|!sڿ@A$Wc 1b(YAC&3F駟YCY!Tf͚)6 ;UsnjuvBImp7/2XQ!$ $hΝ!8mL>qZiӦJv}7j5W7y1AL$}=񇷁kٺ?<, 1nl}s[!WycY^Jvioހds9Q,|}5 1bаB4! Eʕ+_|alؾ}Z_ 7C"!uO2k˂%'$)'6`_uBR3bs 1nkĈ2p@wVyiJ5뭔Qr} &{m߼Bb@|CB0S7I̙3*jԨF)lgbʅ Y)PFJ*raWGG;TR\[1#9CVB !!aÆj&\,jR)+B|gA(N_[o͚5reeט_߇:nW]cǎ^lm@̃ Yjnݻ3iӦ5Ngnl-\PZ䱻. 17=BYwO-Y4n8=+v׈-f͚jF9jt}>]ѭ[7>}z6111#ƩfG}lrsC(0Dop.K0tPB`/@Tx-c4h4ܹ >eEvNybͧPbP ]…hѢ>6Z'qo?g<IJHWsC!BL\À$>>usBAOBr]v|Ebtߪc/hW7B zhi fMV!M͎GU`%,,L}ceʪGz0 2I4;)oev 1S1#F0ʾ-ۧy sD$9SC!& Be˖۱O?U3Xg4!!Ao֬DEEQL9cƗawn+M?_Fr?5+ ! p@ܹs=b@߾}\ K6lؠvxL`>j#M 9B̴iR%}m7',kGfyU!&W-8ݟ/a@_| ocO ` İXǂ'CnIE"~+Xi 1bb ` tpGӬ\R30o߮&6N7JB̯~?H. ȟڀ~ Ip?Brbo0[e[ VX I敓`wA3vcbP^Q&u`c 1=-WyvU6jԨ<6,Lz8ͱ 1JR% 'ҟL!B 9{&VEH̤Yҹ 1܋?'7cfx))鮱]өFI+#.bUdqN!(P!$ol_]~/\~QG)!ث Bu?wﶝgB!B(PC!B!PC!B!B!b(P!B!B(PC!B!PC!B!B!b(P!B!B(PC!B! 1b(B!B!b(P!B!B(PC!B! 1b(dx{|G;eL!WbXOL%gLZZL4IU& H|}! 1b(\ZUn,I ң Qe՟vi#A>/̅rr3B1'O$XӔ)SQB(PCHNSzH=ARv=ݢ߾2_uzuF]&˗/W׏AիՀ3#D\xO ʰa61ֺjgϞ-*U2DCׯz:7o,SlРAҴiS 1b(W!uaWGÁ;T:L\[1#9CVB !Fu֭mV@tmG?@l߾}˞m6l-QV-c76xnk֬˗/qY/6؞B!B ` 1oV D4PAظq'{xҘ.QC!AAa_BLܹsʘAPQaDhڴi~{n`'|"VRCL)_ܽ{W} .;sc d…0"uI͊EY$BH΂}jɒ%qƙ큂a ~[lQJ\\Sjj" nqf[y8f' GϚ5Km;V[?>xS7 bʃ U 0a{AdUy3|pkꫯrlAx ,8&D… KѢEC d?_ؕ=7u B+b@@o͚50K7ǡ=$X8\n9s.\D!BL=b`p`f\PYaPF;w$11Q ovV  C.YgD  aBM9F'B!9Ǯ]|ruኾF͓/vBu^kfcxS0?^`7]{` ;g7pz*O\+ooݺcѾ} d#FT.yE{ٻ<5ڀŋN &b(P ~iٲvhqOլfЀbI͚5(uTbHƮ:\xqJl'O*TxCy?vu\ov1 >KB ȑ#;v61c=!]kYȈn^:uvЛ嗈@!B  0t@\T:-A91Eˆ[!M,S/Oq^,Yq_!ur5k! *լRG+$fxtI~DIXBov$HrqBtq,B!1Xot|FpX7D?.,tEPG4)Yݟ[';:]S B ,g\EMHlׁ|;6t+,YЄ@3Ұ}5jU"`[Cܺ,ە=ʥYJbE\b7!.wVcPC!Š+'b- #^gfp 7p `XWqs]0T -ϼFL ?$"%5oK2[IrFp“gw6ޝ!7;ɵ#eOaE!*p9 > oۑO?!H&kП+ك R* 0%v9X\5"ĀJ*~ 1 :!! 2$\~@ Kc7C9sF b 'lgRņg-GlW)V!Ɗa d~h9Y-oB Ƈ[,C!B 9Ξi3it>ãe< ͘<^FJJkltQb$nrvJf*!0"Z,,NI΀X 6ms zL! 1b&l _nGzQJ9FcmBH׮]3^O x `BC!B !B 2Gx#$z{7BC!B !B!B!B B!B!B  1B!BC!B !B!B!B B!B!PC!B!BC!B !B!B!B B!B!PC!B!BC!B !dx{|G;eL!WbXOL%B!PC!o\ZUn,I ң Qe՟vi#A>/̅rr3B!B!B BQzH=ARv=ݢ߾2_ur܉%v'iir`I#gxDHn;r{R{Gf?utҢE 9tP3;%0XL0A[߶m911Qԩ#+W <>իʋQFyv)R>}:Kymb2{l|Ϯ{3 B 19,=zT"""\~! $LJJѣGˇ~(s{n:N1c?XV=, CɃdK1Ȉ~>LVc~L,wT")躉… L2rƍbQsJصkkS1fsmS`ߊi2S'sL F)q 99YyNx;?ڶ޽{СC3mذL:{ jR) 1vJ! 1b$7bLVE@۷oAD͓'Om}0f Mψ)R\95#W^(#캍s_^ׯ/m۶yՓǏ;^pHEX kѠ'B Գ}HMMK\\_Ukvac귯޽{7Km]k}?f:֭[e̘1ҭ[Lm} /A}|'g#GTXzT\YRRR'M A[!]ٕ%puٳTTI7oU 1v^W(cgMeǎ%Kkqp˗/g*B!b(10,Xm"6B FNǏ)tAUΝ;{ NƍiӦݻE/'|"VRCL1p=M6/ߙ w9X#]? yoK.}oΝҤIcNyX "D<#<'_ydȐ!J蒧%5kTbY{N ,@`qbͩoݺBy֬Yb-ޫ/!Jܺzul~B!b(`Ę`0z,yx`Ν;*dƍ,7|O2E8 h3HOx͜:uJK`cpk0`ǻ. 1qBAO$}M dɒnw= @l0NBZ%v̩CO?4QXlYٿ6AtH߇9y'aaaB~~vkG-N='u+ө,G+ܫQ}_ ֲjBC!&5,SWe˖< #3 C2̼5k&QQQ80h1lN:\mX_e$SS1S%{`P Kqɜ9so0 6H.]sh#B:aYO416y;\˓ j͹e4ҞvB̴iR%;!F ;@Dpt,zNxfns<+K޶c廛{uZ|aY9B!b(Wl[g|@Df`5k׮U5x*\1ѳ0.… jPn]?$#Vp,XrB"kFU'$5m4RJJxNR$nY6cx+8$LjDMn9sFشi1B}wI:ace׎9q4^|3fHڵw: 믿ź 1gϞUyQC x?1vTbnb|廛{}Uֱ^ &A'ΐSJݦc/Ġ(UsS7`?ٳGyWpf!.oq)صcNmy㞰ׄk 1ͽ,E Eb DA:B!b(P7a<"/l 1u͚5~Gɗ_~i|o` #pmo ^u ;\'8a2%$Cd׼m?fs/n'4OMVېzwtFn'wʫ="oMB`n3=Y\e".6j|oq)8cvi }}xoNCXf` 1V^"v <55 %E5{t*K(V![W Gl=KLj7y|BC!&ĄB|qLOIs-cNn 7RR]cާS'qcW2SW&O,~m9n0@ |'B 1bQ&l _nGzQJ9FcmD--E &x}4^'MBC!B !y帄B!B  1B!B 1b!B!B!B B!B!B  1B!BC!B !B!B!B B!B!B  1B!BC!B !B!B!B B!B!PC!);}k= -ǏwѣǙCzZ9t$|9J!Ϙ44iTVM *> SB!b(P!$|1YGCB?'!&F}>_ $f*!ٶm[;u$k׮l.g7vÇRzu9x`^͛7eԨQRN)]4iDv̐!C<H^?}tEx'OQ>7\"EQ籖ׇ+WNڵk''N`gW2eܞ*SNUcmAj"`(P97 1:TE޽{~׭[B,sKq-ٸ咤etdo7Çi݊c0x܏YqB!_Yt4k㻹sbmo9sy!&beԠ>;v,_\'99^z5xbmNRn2Dm ~oeذajky0k\'^J2 Ğ۷oKݺuKsׯzݰaԫWObccsiӦOQB  1@hT"v{4hCӴMſ3B̳cǎ9g(¢$pƵW^ʍ D^~}eN(zuEDDj~wZ4BHbPmXØ[j˔@||ySnw1X4hZfdǏ~eXR͛7WGgI>p@cz}}q|]#o3 k׮r <8q#G]~]zW}|jis-ȫ3gT\Y ͛lٲjPnZxCmᔧ(sIII1[PQc.r}{8 VY7nxf!G…35kѣG)PF+*N|u:tP,:/dʊP4~3*%>YjbJ8\VA̍-:օ *JW~zH!}'Ԓ%KJƍ3 -NK&Lߺu-,A6 5v}Վ֭L>]jbILL~ N ``P'w:w|#Z($̛cz}}q| 1Pa&K\\bcƌsA11Hׂs?k,FKͽ×oy@|W< ,X0,Zh،vy@(C]/s({vF)1 $(Jc@aƗoxåI@iѢ$&&fb "##} 1ܽwXD!B zĠ̒C[7ܹ*5:%KuD6 ^z 3XwjPH f\W 1g(D!$+l ۷o?XtN=(9a`̠jO7Yo@M?n WSO8]ZqsLo@vi<j<,,,c`{V&a'SѼ]i߾}*O(61bdz0Xb b@(7O˷x+LǬRJɓ6 ]^oBٳgmAyQQC!& Be˖ƍO?U+XS@E(uTdؘvc] %!=)HNcE!aXs=+`* ) u̜bRtO<ҏ[mk< 䴈tMvBkW }ql(\Ó$~0?뱦M*_1bࡂ_|1vD~G>By @CVu m<_yb@߾};en&h=kb0`c(PL!3Y502vYrr1E'gdQc s+*;:uO2k˂%'$)'6`_uBR3:ӯH))v9IKcdٌRpB9GA'/n[/EKŲe,ESpF}:Sx#M?7y.Ɠ'O*cx2Cyyv" X%zK}9rc;|(իW|UʥK7oޔQFI:utҤIٹs'[\+IMMSJ% gI J*2fIOOWۆ 7B IxxxjJmf|NLLTaʕűPWʕ+'ڵ'Nx޽{j\7!B!b(ĄsQp~\]-[`1׮]˗%''իL2rU^z))!_~JH1 1:uq)ܹsҼys7o0+V(/^bO>k}3cΞ=[*Uq]PB!B(ĄAGiܹѣ|]B7:v!@rʚ5kJ 1 K.U0Xno6-ؽ{CLRR)ReڴiƂJ!B^F KݺuՒ ݻWc)C.]֭[5ap O ;vP/YDjժ%+WVǀ*` 8h Ή{RZ55XڵܸqQ6o,e˖ .ȥxŠ'KB [VeۗuV[ns} 1xc˕g|U !BC!&Ljm ",q8}B4h,oܹ >Q9r!gbeiii111[lQK\\b̳ބ^zI…hѢJ!^zʋB յmV-9*V޽ol 1dPG| 1:tPb ⻈uӤIukzL!B 1!כHVO>*:~#tk@s`PYv8f"0b7[,9ňYjU$pzkB DH 3 gby:}$*-M .TˢY2>1!B!b(Ą1,7Iv 1i$ bJ7ڳFK,z'OT߽s|!5u+`@j!7g]>x5gfqeƌ긺b֯_ |cB!B(P )!FrDvB hܸ YrI1={V% ={4ρX&x ` / LK6B DǏ9XnԨ5\OyLA<$,A9Eمg MZh;xXM;!o߾*nzza-Z6kv1|p={v7BC!& 1G~bٲeJ@ Ơڵk|rudYz)SF^ʖ'ȼKAO# `맄өS'7n<Ν;'͛7yc E߃ӧ{'}qL ,+Uq]P=k׺pBU'oܸcBѣeݺuVصk-9(nʴmذaj[^bw_!B 1\`kңG4w\yQPN;v?Ը?=V֬Y#/_VBUm|^tĀDq޽{СC]ZGeڴi oߞcm4Uh o!@DN<dž *03ujժR^bw_!B 1!4ɍ ^Ǐu몥߻wǒ.]3& Raj0ܱcɒ%X\=A R@ e@v>c*_x3 '}ȑez- CIII14izf1N6)ͮׯKϞ==U 1滷W:!B(P1b`0/X [=a0xA l04h J;wV3NBq᯾>F/iii111[lQ<`03ބ E4N{ᅠ(`9Xrx"w[,[`e@Cj0NujB +V3ƈ<€@^6j8D?6ޮqa:aMfZOdժUǏ{}F8vB d Xb׌,G @$Ip_=E!˖0 >p@U.1fĈKP\﷭A+fO:/VƮe7[dI`` s~B0Ah ^i Ο6*ĸ=G < viO?u;Dxh@>9WB~f:6^gckt*?u;,~O_T!B!BLxkY vLqi^_`8j#ii҆ 1d̡.oڍYE 9ňu:~񋠧&``l^r~̄K:z`Iis&Ų(WA[=u0mٲ怗9so0xB?m1$yp?(sBumԻe~ە a9tL;!qTNۇ~h}ص)Oʏ>|JgG! 1b10̣7Iv 1jl f1=[#;pIΝ;3^} #֭c<[NDOyLٳgԮ]cx{`xdi[=KF1c:.n,0v/cĴi𢈊Ru`ڵji̙3*&ǦMWQ m7!q* <\v{acW&<{}.q D9{oR-=_m]^ݧS'u7}ƟMY B 1y@zq 7nb(ěd`C `q9=c6-0S  v1.=byk#GԠb `a5I8Y ) 1mҢE a_Qx D 1fѢEj7(տbPWK* A7a?m<]c ގU!ou??mSx7)neab0yJw,=_m]^ݧSvz?,6ie^po֬qN7nTܘQ 7d=?؞B$~ʃ1b P>QnQTx`iSD!fb]: 13 /KuFzI;x`?<谌#xM^@X4YbbgA/a&Oc@$s[&er,!Ɗ9XݳãuBtNqrx}Yo+!B(P a!>d.(p^d b@0zܗ|VB 1by2dOo |yYo1"7! 1b(BHCy+%B!b(P!B!B(PC!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B  1$(X`!gKZZL4IU& H|}! 1b(üAOB-'O$XӔ)SQB(PCHN=Byb3m;vC!PC!&yT^]<1V*.]R߼ySF%uԑҥKK&MdΝhJSn&55UN*%JǏ'$$g}&*T*UȘ1c$==]m2dߜ0 tVZɶmیω\2Sƾ8fr]vr ݻwO&h@.__.Vj7t]A$1eرRn])StgBqq)R>}: nGk장?4 1b˖-Su0k׮0^Z5 W^eF?套^ zʭSׯjHNdܸq9w4o\͛X\xVy<}tۼ/9{lTu8p@G!Umb.]dܹynbt$G?P yEDrKo6ԵAIӦM}K]nʴmذaj@l.Yb(PɃ8FPf ?!)f5[ځ0t.]T)XnopDZ{-CuekC39fiӦ[c]vU8DFÇ!ve~ģ}JIIZ/6l2UJZ"b1Yb(Pt n ػw20PrA֠رCdXV\Y^3 ;6׿& aݸqQ`$-[V.\/$y` Aل+ѺukU|[nUKu&=)Z @1}}ByVBL>}dժUІ9fES';]&N(S9rde=zP-Z={q7B quyl fΜ) 4P}Kkims^2^3e<[`Gկ_bH`v4,x nܸѯgigOSC!ƋK.@gΝeBqWX͍&XցWl111[lQN\\2v^ބ^zI…hѢJ!^zʋB m۶U9b޽ol 3^C0뾄=0'pczƮBBY,YR7nIhq.YvΝ;3d& vѣJ`ڮ|!0b6FCxP!Ϛ5Q.\Pģmڝ+P[ `W_>B hmsߜ9s?Y/^ZfM%bl.XY:b(PqXY0u:APLN $av0̋̕_:)/ 1pUyJm#l ]<﷭Cf#ɓ'r)5Xx~cWo!ˮ]|~z% hM6 N< ``%pχno2#A  B;&ʊmxezSA$q[?&:ދ^#ƛEfG{Y:b(Pq00#c6`0jii҆ T+E3?s HN-\saAM5ftE\/Z O,@enᱱ1`V1M`ˢfizC ]M`B暅YZ@ǽ~vS|%Ax˖-=~kIv6?bkyٳG" e̺&,6ۥIVW{ni 1b(dQA,s%3 1(@#e"J~I5Kݠ:aL: 1 `Y&<ցٳGj׮ܻ:1bF\w1c:.n. NƼ9>]!.Z/nKZ6ۙAǒ$x.Z}b9~Jm` 18ϑ#GϰHv㶌Rkl(z1fOqzni 1b(d8:eì=\Qia PA ,Oc ^p! 1ӄ2ևc ؁!0AeǾPÕQF>d<ց`=*((+U 9o w[ 6팂De<#:1xBG @Ϻ s(_ !#Vv]"b.gZpT1Nu!x[!Ox!sA3iƮ˶~X";-w1 18B"YgƞC!BLmB#[R%|"#F ?t 3lxjܬY3+VP9sjjԨfDIg`.'~Q &(W(o(7XK@0w!?c#h((U\F6HPwk !$tR^4~gGv$s@+\+h O=i},4x``/}T1f{6.q0;$.EsDD2f.vi/> K+vB/dI9;=K4 1bHO$̟??KA!<2 qP"P)6m$iB;b(9'e o r5OC!b(P!B!AˣijZj/J>[6N!b(P!B!B 1b!B! 1b(B!B!B B!B!PC!B!BC!B !B!B(PC!B!PC!w'@rUAžAP$Z|}EEbQ@)2ʢ%@D @A [X7ܹ힞$d3+"""""""E(b1βkw mzzz׾ۧ_v!]zeDDD1E|Κku""2׿ޯ)7E"F3ow1w}_vmf͚}Ϧ . niM7M_;Ѕ=DDdh^ly}73FDDDQHE̓O>~d/n)?>pCײ+wpܹs7ʹ>OO<1mimM_Wқo}._oCI~ϙ3'++q]QnST6mZ{W-"R5Nn/d㏧ zqկ~5QG5# 7ܐk򗿜<>YM.)'?nocI[lEw}muűS<;G?1Oχ<1EV:R(,r]7Es\6`(1Ӆ^?#頃JW_}u*=cM_=e]Vh,^6+H[ou{.'"2\9裏NW]uUZix-{gyw-=#.sa5$.,E7>GɑW{gsŔ)S7NuN;sڹ瞛}-NZ=ǁ"F8H袋'剁=ܓ Z]10^q;>.쒶fwъ*/||.xB0aBaG:{:q]df3f3W᚛o9{ @̙3}ҤILzx,7:@N:)}M&`+cv+?v{ウkWiKRqb=8P(b1 ܢ|wI.(cY/|&wy-G}4+rwO|Z@cfDOdOQ>k5= cgLw饗<϶>+ҥ8cbviOay=^Tz|/ώ5!%iosىY,1ʓ=|?a6ʏbV<.e@%.~GbE^Ĵ{%S|kwNzkêE"F-~8}-_FѬ$i$j`\GF8:QE8P(b1D csE)bo`h)b1"FE"F(b1P(b1Q(bE"FE"P(b1Q(b@QMo}aҝwީQ(b`D ze>)b1zҜ9s_N8lg?>M4) @QС_=]qi-7Ph$.i6drj=Hm]:kVr|ph`6K~x\_.3wyiʔ){7}Qt3_vrV&><{zGOSO=5+ztGiӦunm_}+dE=ܳ>>lYҎ;.E"F0R͞=;uQ;,8N>l&>yV7y晴neۡ?r!HO?te>OC=eӟw=͜93=Sٿ/}n7wj>wߝ]ی3ogRKǏO=ذx y}}ͼ5msiu]>m]#;wnA'! \|-.2?ʝO?=pUS7/Hٌc)}r3b/ebLqN;eK;>g}ԩSogyY1%HOt]QfXjv*ʨ{,ӹ ߷ItT.bo{qekaY1#4 /,bZ10̆/2XR3(c\q{g5kVݙ=X3\ͫfy-]z/Sz衬h(,nAK/~8[nR{`&f>جWa`P,$.'?I6w9Z;f\|oW f0aIQ֛o|0{gk>o\nٲ|&R?~i՟+~س'%L;u9Cr-~=!s9fELY.zV,bKӿYZ@ zɗ@uO6.~p8kRmW>?r|ό#8".OH̚%+1R+fLA?WX鴌q_ ҤXmiRIb,U2%F1}g2y֤1Yb4tAC\Np|| b;9ˮ~(KWbIS|٧( }lX6<;vl%U~ bFƘ}yqsq֛}m>s/Y)V.zl"1Q16̋4N[1)lWl8[Lq lFbEqp-%g,+ bL?״iӲg6z*lS/&NQݨ8붶~666qJ￿aR.b,n~\':+Q"f E(EL1t [-13"ω=b X6v_6_6֩1uʘEi5jSԦ:}3ӃNc^amEb'-`yjeIl9sn/eI떖%6,i ˒S II˘ ˓V-[{z6çv^0Ř<1{kc5kc ˒V(0y{"fP >1"<+X4Z^L:L0X<䵱yeI =@^fl[^TI̙3//1-$U'ZXTFf| Qm,ni6L,i%٨w7mOLIхY1k֟S;4? |Ƙ9jcujc aFfTYTuEL"f ˓͊ɗ(˘zm`Kmy&11vkcr /Ii4f˒FT}bZ-O7+^1ɗ)}6=jZK7צڼf |<6Wk)/a]:SRqoa]^tȬj.7+c_kB&N>R{~qGjc Jw4XlE SeV Ng1瞧|Lmuju2y1:˺1:1]骗os6aXtio3(KV.͌YڵE>C&/e2y1̗|g* S r%Iԙ 3Mz1]\hVLb2&wfǬUk犥L>SX}|K|yOY6](a 3aFL'U+DUzϐyw큲VaҘB9U),=.̀yga)RђNYt0{VL%J2&3XȬV(dR8SX}̗5 ) S.aZ-I2KEL7fŴ[cBfR)za/5~X:_Z(`V)iJNf,TE`.O_2=coRȬR{n`uU0˗Y}a,KIUg,Q1[_oYi:3eZ "팉QS\oOO]Y4滑Q pVL%JKw&|L[TT(_0٘w6$Y4g,ޥ2XgʬXx XR.`Z,n6ϊYY1͖)˘zLRXТ|W+ahc_)ISqVLeL1BY)ժ|Y4/0(a1ðiT,]z@4)h)ɍz %1(c:)dZ2X+_R v 3"lfeLYT4*fKYIӬYI c60Ӫ)2*2ZR|b(aFT3?˘N V PxiQ,eL;̨6f(ieKՙ/:,`0ìiU4Sy{BfT3@\IjLF3˘n2bfж%ZY(aHӬR,3^)_0Q(b\,RiUT-gZ6hw|l]y[F 3 ˘VLV!#Q}Q%-c]-X| %LVeL;K:1#tY1we %"f˘b).Z Fnms,eLLmd>@qӍ%L@K0 A3Bކ@s!,cU(hK %0+d|Q 2F! GY ,f!(d30B\(h`h /c6(W(dxE2F)(_D1QQE6\SyIENDB`nicotine-plus-3.3.4/data/screenshots/screenshot2.png000066400000000000000000002613131461625273200225460ustar00rootroot00000000000000PNG  IHDRb6%bKGDbIDATxTU=;=3s{ }{ҝͽwןJPT0!`EU1 s""[#JKƄ" s>uϻc1c1nȠz0dD1c1Ƹ~ *AD1c1c`Lc1coLB"^0c1҉AEaS1c1:[ s 04L%ic1c\Aagc1c1uL] *0 x>2c1cIg 3I_1c1c88 Kt #I `r _~1c1 era`1c1cqRX mt 0ILxq/0c1ck?I el` IE0c1L\L J&)/c1c1.g)l`LCDKO?c1cq"pe¢dc1b@?Ka<O0c1c80dFDŽq@L@MH?c1cq}G@@S`sL!Lz& c1c1Ʊ2? 2A@&[s &0@o+]B c1c\'~d"d c)AQ -a1c18cojLXtLT4 cbօ 04xϪc1c1Li `L]׋¤At$/I `s_B%c1ccK17)0 CTLa ̟e asgՉՉVWUG1c1W/?s;(?IS~ 4 a/N@Tc1cq/}kf~2a@c"cxR@Lua0^?UU*: c1cqv6}K{uL]`Lb1yz:RqSW%}SQQw߾}:c1c1ɬ[] edܔ8h\G $?oQ޿ QRصkd1c18wV_>?:o}4d3EbB4 &l]xag#/U.\xc1c1ΟV/ Z/&)9hD8`JR(Yvm?2c1cx(8$*GyaZRk8 ooW7ϟ?c1c1.^7_>?*u\+,'eZRh⋆qSQZ֧Osc1cq>}}u?EǾ)JqQ1LOӒ _=ݹsp?ch=uVi&~zn:k{ڦ\\(s1.]/_L>|g|ɥUUɸel7<ڿxo]bI񂘸hz$]MgJҿ<>c={-[nX;.0זqIwH'WG?˻)J?M1eSiIa0޵aիW?Ack[\@탆u~-s}B1Ɛꛫ^W'Z1qQ1LOӐh$4II.W߾}&14\7Om~-ҙT@4WK$%Tzҏ, 0ـiI.Ɓ:th#c1wؑƵ͵-|ܯ;D4,CTLyZ}sѫqxb'1bALa񂘿_%i$x1Ƹ\@}A` aȤJcfÆ zOr9 V}꾺wz/< } f1\G &hZ=@̯1cK.>}xĉC}+̰aLMͳ>kN>ӢEi̦M)buf?sN{-k+/Z 4@|7[n@L>Ob~)~W1ƀ܎=˼W_5= "k,( 5j*{s=מoAL.YE7/yGȑ#wR4 &c\\ E诠L׈tbkZ}9rm۶fܸqfzMgr[c [sWµ 10Q Y_b0bj["I˖-3˗/Uu?mIs5I>Ok;ydzv: Yfywl̇~c Ĥ)zUNzH\9}磏>*taÆ{1w\Ӻu k;7D~WĔKi9 cqӧjkYfمe5ο\wus ,(pȉ[ d u.\j[!SF3q &zݣ|^ۯھl[x=q1žFPWDE J)ڣ׈Ir?0F3g^ƀ@_bb1Ƹ\@";43fQ4i}ٻwoa1na%,2e׈2dH"u<8_}QM `@ bğ0RWS* FPՑ7nԱR}hw͛PA̟b1cKZC|c?vXLƍ{#P{6Ĵ*a5d'x.lt[Cu hҒ%K2ku]@ S0n F- b$M7NMI&EMc*שI :ϭ #q xj 1'oQH:޽{ۆ:ƌc]tQ&jFOˉ 낲!-;ۊi8uz-ҷo_$,֋qMM> zg^¼dcb1cqrc,zʍwq{nݺَ`ߚ={'hhNp5@L~ (Pg_kDjGmW'1^kM7qmpC#=ZiGӓ꺂_q10GTĨmV$*ӽgx|u44_/zM_ 'C@ j5촶\`;j: +E$J;TE<:fz6@1 '18.J}kugXo>\ Fcǎ{N,AO1uc r\2-*h1 bpM 6 11ƸA,ԗːe-c@ odL]b0c^yr=ז1 s1f_}6c I΃̵c 7o66l{ږHK@ c1Ja0n>}: ʛ6m"=11ƘiJLiӔ7/_S;w1@ c\ȹx\w)5C4 c{ ;.0זqZ c1@ c};EOFPcyƳ^=mgYYnm42bT1 b1c1c1b1c1c1 c1c1 c1c1@ c1c11c1b11c1`1c1`1c1ƀ@ c1c1ƀ@ c1c1@ c1c b0c1c b0c1c@ 1c1c@ c1c1ƀ@L1_뮻L˖-M&MLVwmf̘A&+#_}զcǎ\2}O?mˀO?ٳk1c1 K߿t{챡ٳ9עz{5O=alܸ넳JO^= Ɣ YׇY߿? )5 ̉'h^xb W}mѣ K{nSOjE5."` Sz{\:zt((@LMGro ̬Y20&4ٳgΝ;ێ'l 3ye3<,]4gJӸqcӴiӌO;4MS34M˝{#^K:7|8p%7Kތ94jԨVAwi?m۶WTT}Jgi9sf_ayR=i֬9S5\cp]R/sJ\%͛777tSR׮]ux̷~kƍWT:zi U޾}j{%gm!KLu}WG{CZ}HL9{SLb1A0؊|?o?׭[D]n]c?5~&L`VZU 棏> [obR^K5Uaoy着"0ڵ )pWK5fuMZhQ/4@Lƾ:1 ĸ4uV;MR S>zm*++mzzh!?ނ3I;zo*6|𬾫wyw~wffܹ?}˹52!Iy}wx,Q]bB eMCScǎ5W]uUf\BuK xG!UO4 s~UcIpeĈ5L6m|`׉9묳g|z1:P|رI\]I詆b8>3W_}>oND'Y96mZ3 5>h2(%ɠ!Ck|Au9X&>I bJS='|bӑڵ]W̙JloVy 3ajs=}uB쥨*<oLpmm۶j<öY8-Xo5%sα# .G#^Ͼ޴i-ut} dG(;0 |W^ Ba7l`Znmx ^E7.-bAmZYslNIuQԝ򢮏@#)7y/ΓY*]3i]UgSRy9lqKY7u/m:w$(#8V5-Eٔ%I}j/իWUWOC~? ;R_7>u^{Oqۓ?s b!ӧO-lW_mHtz=qD{ҥmw:b1I27Yj"Vc}Z2 5U1Paᾧi%Kލ7h+vU&*uwU/\ОFW:{dDߢZЯ\A!qں.R3Ý$wx*qiOΆl2{_|n+{$Y#ٝ:u ĢA1qut:ݫRȟ1Ő޽iC\wkŕIpӇ@Rtd={f` Q# hF1ZDRc/2(3jE_<: =^7IDL>@LoZ*ԶFu]>ZjnL3ގÚ:t7-s#*ؗA{wܨ'nrxubd 7/\\P(BFj]7^F-+kz/Fċ?u>_I_}`^e> IΨ$ H[ByQ懶lqAL44P FRP$WrUYeq혦=P&5D'j+ ^5YW-ӆ"$et2<-)T:bI.bFÔ1ܢnI`;j&H`*Maʨ a6 况cidu˖-iQ g}_ ~~D]k+-J[Tiߝ+0&㿖݊|_~935XҬtwDUT:HFaRWqǍJ{*Rlh]0zBA)uFJh&uԞƃ x2 WQǍK{"b_->ih:(+}-tۆQlݧ|vrtm5"ĹO5;O*syRcH 4S ]MT"F]3M]UdS4ܿC٤CT$Iq T|vrbtYWU *irJ垢WIٜ[ 1Q"$uOTk}-덪lޫ?GDƨWLI}A r>&)㶧1L@LA#&v9q;hLa.P,.C4hcYi:=ܰ˄\?-&hwܰ ,b.W Az +Oca+1b10Fk<(ԌcX/ c1nAE q1@ c1c1@ c1c b0c1c@ 1c1c@ 1c1b11c1b11c1w1c1c@ 11c1b0b0c1ƀ@L@Ͳe0aF1cq[}s@LB!Bz B!B!@ B!Bb1E}?ȿ?ik %B!" pb1QQ"AHk1@ BT?ȿ?ik AT?8?ȿ4 DE b1QQ"D" !@ PU{5Æ F";?&""#@ [Fիk?~x_kP(=jӲ1c! ,:O:DZcǚ+V7QM6/Œ9Ҍ7ݻws1)\>Vvz@ t&Nh/_nMf?7N3f0/ E(rVj߾}O>1V"o̿v2Çm3U ,0SL1 y2,3 ~z#F?l۶Fcyɒ%6~駔 믿#8۷oyԨQ_}9pȸ7vΝ?~gD#1rVˏK. 1qܹs3x޼yƍ A(tj.#44TEoٲž^vn_#Qm@T^ Ƶ>nzۼyswPĠem:?5ڥ\@LV F\arJ >̚5˾Vs)[BͿCJs̱14~MJJn]V@ oUWt_5bTD;aZ2!,k.WB5袎P.ҩ`ҢK$AuX:/ ĄQy6U @Nu5EDi+;( bPڲ۶К1.֭)*沎bjIbUa9yd9ggȳ+$UP+굷#P;r$iZ'nNI j4ON F]Xf 7ш/Ԥ(g$5V&qT՗_:>BοJW\Tii(DXM2W,.7SP]Ncǎ4 h( ]oYHSV*X$'5.]F RM6J]: CF|4V*sĺcu|]u_q\/ k䔶PDAAiҖ4ho( Sg#iD OR*ku I]hQA*PCͻSUHKTL m_72ԈB Uj:@ _ FSJU4!U&1QG(WCiNm3MPxҠ\Psp ĄQ7CK4m1(mMc{/QY'eJB5]h)zG;T=>vQ4TL FFN~UyAm*ZW[8b1G(/S6ʄ4 &*k&ԡy: F裏l>t & dWt:M1(MXK1h D "D@=BWb1QQ"AHk1@ BT?ȿ?ik AT?8?ȿ4 DE !D@=b1QQ"D "D@=B@ !*J1iq A!B! A!B!1@ B!B!bB!B!bB!*#5z|m{%a1@ B!B@ b1B!  A!B @ B!bbB!B@ B@ !B!@ 1@ ʓZliV\Ʌ@!P*oޜp iҤI>uVsM7vMsJsYgiӦbɏfV~W6kƜtIN3>h 1|s饗O?G}߫Ν;'|rs̩;pk֬152 .=_iy3s -׹{{nӯ_?Ӯ];{:ﰾш#gsڵM*xwb1@̙3ͫسf*FN>}ѣ1!*Zs;a„z;~߾}mgѣ+þe@L=̪L塚 A̦]-[zYd裏joe˖y~iӦٴi &Fݺu3w\UW]e,h?~ j??{Ǐ@W^ył:u_J;Ν;̓>h.Z۶m5 aZ`6}>Ma PbX^us뭷zeٰQ!A! &X̨Q%bk Z+"%C#ESO=5_"`N}&%ȑ#ͪUlg \/ 袋lWw9 ! ($07pqSx|Ǒ1귎3&-baSWoۄ|gW P4N:eK/d.B=:tFM֭mN e .\{=^+Sh^ӪU+V eE]ti" (i/xmwzM2eJTTTԚrhzFń]MLW Ąp)y0 GTE 23~a;P%\bIsRn_k]2U83X ݿ TCapxAy&$"&ɹ{@ B!bҶKLa:un$;"}_ĤIUe~E9 AmӒnŜv g  +*=(}::W$Q# 2wygX}Hwb11\FUV iAŋ^ }WZ {V9p 3Ϭ@TZtbB!ϩIui Z񞛎'U=1)}7q^i3p=ˀ ud=Xw-hq)3yd u_ &w /-<${Ǽs,btG~)2-n}Exw3ij)y:[Q䋿ȖƍDž݀@LW+#fZ'*E-jv@L4cƌ6w}g348*n-bնm[c@LԹ@ B! bҶK &]br^KbaHwMA@Lzl}8c'~{nӴZc$24Lksv-3ׂ2ZGyuu11O=Tࣜ@BڧؤZK.!>،E:w-*%>m卪c5}N+1 &R%-DzMSO ZJ^įZм@ܦ:Lj d b&MdGU;vXAҳgOsQ?VRB!o.j3E &4 FQߧ["b&2 ֐Ѻ0JAKMC Jj:/j~15)7 F[$Yp@yVBA")J^ aHh  ["ևyw}6A%D7K/MoQuGMԤ|n@ ^AW/vPRs׵PV -ЊZ BT(Le\7*-Q\BejKs /#>ӬP5gMrc޳;ЄB!/.j3Ek{- V^m׃PL- -i}yu. Q a0J_tOt`'|Q^B0d{h'H$5kf!ҁmT)j};6mjY}@7MSt1a(߿WB!"=RVQA] _]\bB!P#Gk/ZFh ?inՂ1@ B!*1ijNi:jJDC 1@ B!BA B!b A!Bb1b1!B!b1!B! A!B&15 !@ B! A@ !B!  B!11@ B!B@ b1B!  A!B @  -[+Wr!BtW&MN8tI+4ӧOo{-Zy۷c޽{a^y啒Ji~S񪲲ҜuYfڴi9=|!԰Ծ}Lpר+>֭[M7dݻS֕yt6h;\s5MuiG}ܘ?K駟n{:t` I 5}Y9W;wO>̙ݻw>֬Yc5jd.\X+?{]ݼyssuיsn?޽ϴkΞ;7b(\vjӥʣ'x"}]  ̜9Ӽ꫉=k֬l,nj=S fݛoi |V{m{!4uT{\@R1q/56lْ#EԹ0aBo߾3uQ[JZi:j!Sy&j&ia V^m,Yb>pofٲe:o<~jڴic6m@nq.auUW:Q;SLKPU$߶V;J-|OJ;Ν;̓>h.Z۶m5 aZ`6}>Ma PQ{ͭÇeI21 AS۶m^{m(4Qi,OC,?Bw5j7@y{Ma[kE|dyhĶHqꩧf\Ԥ9rYj{K~]|$ig^tE6+; H"t\={x0qdDcƌIܾ.b:5) +ym83l!HUFUHSN2 }^2^xB:T#~u6#z:}\pk{" wիW9{ヲUVPx+ ]g2Ǐ? &;"D=3mרt=_|xAX~}{k׮T &(FmB,L_Vv{n^huRGi4"*嗸Tބ]4FzFu\-Aiǿ_BbҶ'ʴQrJlYay˺s۸qmsj R17ٌFxAL^БYϊHr QWL0 a0bO.](i/xm{D o~O;#8S***jMR4C=dKa FC3Fwb1y_#F7 QX*\eLA8L9/{N:|pZs&`}Waq˗/ϼc)v6 Sӹ߯ tuհ|Y2ܽǏ? &9{l믿6tosD/ Byw'4ߠs}'3ۃjTڎڦKR;fJ/rf{Ե7nm;ETOmtaQ+zF7D&9oj )ݩݯ! 1iQeZT*oUDWd> ̯4gVA? vZmC?߮5apV{KkF>l}MHr)Wcǎ m# >#v hs9P vY#|Oa4hP,Xݾ}{$QWiĉ}JX֭ l HlL9 wD]OG(FM;?jhiF[@=-sFү"\TwPc7@EJTڎKFލ0];o5wa+PP>v3AL6WԹX"l$kSvGn~j7k+AL.Yq {nIv@L/F3u?.1mwZuk;n c $4h}zM i]tm_{(6{z]J`ɿQuz Ϲu 1\KeIDӻ v^aD^L^BU:LIS$O]3-4iUhކ: NJۿUQ2kլYLئF6l`g5jc|s:'Ai hu1Qi;j*0pzyVF\;OE۵Shƿz7&1ڗFt&Ai]QeZT{brJbT]Vbs+_D]fA2ZF 4 ) t(m > SrbW XEg~pzHcikުHO޶}gQTGx /]?Z/4jjR~7 S F#j( wY:UzT*^9D"R(h*T F$pбԴ ȑ(MbXqz߁&3V`0mUR*xh@4= JA+Ka۔jAYͯU:_]3o6ɵӔ@=v5s〆zF7D&Q[(kv1l@L\UEǂk;+ *M4ּ:y(ZUUTX4җ=#-'brbն SsOGS$ l WР ҁ[jK3v~GӦMk-u}A';fӨQ#pZ兾i޼ܹsCӾ}u[1@LO>fрPYg^j ]xkYyfsgck[I&uѺu̻k#FQw@A:tMI䳀1f!G c{A÷[l07T_I]d> `|rٶ3z*?裏kfΝ;̓>h.ZS9/`Э[7[z0D剾ίݻm[ \(_~&SN) bJD*pTbBbpXPc._e;v8(aT&)v 8@## `bl8hn%%/n45]hus3×D(a[dGiCU7'0Sտݿ~Q[7IQ نO1w{P{)nQm"m"5b )kN=R˵n}"U /Zw8d.1^hgZ>4{VbB$Mp/=a=c|MsfFNב]M既և) b$: ʼZdiڵ0C|ƌmze6ͷiu $E5b:;vO>FG&DXq rNe %_ߴi2:WΪ\{Ң~dRDiPPy\5- & &RF1 b,TvƂzўG-\Io 3Ҿij_Z1ZS1Rt*$x}jAuNk?^NhM.]:*և) bƱ2P[erzͩVAaʌ^̨t+4ƍ3.$MnAl@QTiEz={4=SԹu"4!L@Dk *lUGSٳgۑ2E$)עaAlF_ji!?~76ƍ硆: j%1auͰahdQ :$1Q}DޕYmST&M7=nYi_T֙IK7ڝxߊQT^kvn07V!j_&h?p#ApB떩SP]uT,1ʫiK40[oՂ, [~+ ƨa М54ªyZ 3 Vֺ^L6>TxE҂$>Qұzm.#So9&9w?j}5BHcw~vmb*4o\W!oYh} 5^ȌGv(Iauӷ~k"isi=QR>D`m{Ez!@Lyv]= I%vo4'(iEh; &wE5_ <)8Z6LQpBOd%m>K0[1@Lt>CQq,quBxALNz0$@ E!D݄bPޤyz h"nBb1b1B!11@ B!BA B!bB!B! B!B B!d1@ B!BA B!bB!B@ B@ B!9tƍ~;si3<:t(}͚5榛n2zKG}Y~< ӨQ#pZ僾Fepu]gΝz}ݻ~; )nj=*+3~xZ85.Bsw7β *{Ĭ[μ޽;p([jU%, @cYHт}^mfC3L5f{o?Y3\g=bf O9m۶vَ~tbx [.Ytkƭvؾ-9sfhzz֭unrGQ>>CHNjSĔuf @ BAN|q)/Ν;G^r1Nyd6ssL@̒ Cdōf派m9b{٢}E3l+SD6ol꫙kŝQ  {1SOaes\92'#s*UO< Cڵkf{1/bj)$z׮]Y $i뚨-n}gFw54|A{.n@{z+!~I]y)\S־;@LLڊj?m:jmڴvmvXybg?L9Z^5>~aͱs|bk2)fƃ1koC=d#C`R| ZMWsa凢 ٓy_ODTT#僿gÀ;SL)bl2hp{X~6.57Qsxg3|pZVze]f/_yOҜF SaԹ~z~GMXDLs?nPKy:m9-qsTG6l+u8p6(TS@n|g; :GY`":z̝>_1.hNa=7|7 5XzuVsxI]I?4n8 $M[Qg΢D;vEPM`Gz)\(e#>7j$mwWl?l=Y s{[L77[6+W+4۷oTy3G_}.PT|?s,zJFM )b ̭EԘL 3pO?saJ  -X 2Wtd b@ B(H'N }Du1 e*4]wݕi9uN!4*\MM_X=nѽr9r;:1 jdꘚθ7\{扛$*ѣU2dHc̚5+r}R@ ƣcQSSKQش fŦM6W_}e}z j\ӼI {Qa!T_?jPQYγF\m$׉]qesrпn^pHChck6 &$ujS![ a=(j405wlCDlYT6=̰FL1Z\W:wͩG`M۽Odj!ElE0+L'tbϊ1K.$qIoa&*`jos=7s$}WSR[؀sv@  O5iPQ,]6fQ1cƌ62»U`JQΨFRvǎs+n Y Oe -_ߴiQO?KGS!Oq*Ӗqo?Cӳg:w/K֣6#:c!0@ H DջARČlYTS"kbXPuģ=ZdZf~E}}Ӑ-fqbzbo˧֕Qdw=~I4P{> i*jg~DӦ%>Lv@ S-50L#δkhTjeF/Qf"sڇ7θ4eSl@ D`\GQ\o\|8NQ?Vלn21.CeWyd{: ={eWMXU6Ǖi$s +?:޲7걸N>j]c8ZOF[;SZSDQ7HE\IALX+@mtj|k_]rd΢҄>m)n{vv!ӾJ-37o|;v 5`nZCfc"$-O)(鳊Xֵ*'PYH Y0BoZz5}WQ,I(TJFcԸTcSu9ϟSZ 3jj]/ iSH]ZGOPAcie/Ȕ[+tNk2$9wk"Qkuön{#UQ'~ڰ9(Z@Jeou~QX\'϶ _5h&ꔻj!à&9sd35)U~҅, 1uIgQm"E]zJ A9֖-[um۶9餓̥^j⋢۷?F> z.[n57tM[ݻw>+++YgeM)LvٹٺygnsBF3f#ffȴ5[[i6:lƶ? I#FO>9t{Νmg5H S]i͚5QFf…򥾧ck͛77]w;wn۷~~޽Ww63ڵo}d@ Dѣ11Ǐ2w1_~ylc=j㏛A.s-ZN=TgϞX]qn۹s9Sի~^֭3̨:CE;t`&LPo۷=zԦ\iСb iXҼO͂J3?”m{xIQ &$JTIU $QPrW+ ^PAs%ԏ[ife9LtJOz):>l:O;Qh?llLK7SN'ӧO[@?֭[5k+矛M~B [nv.BKewI&1†W^ <8cQ9wy> J+$&NiظJtұ}!DY1a,=4kժepz詏+ |Džu޸qaJpQ;s?m4[X駟9.̓={4sεSzRM{]%ڵEm2A13aD=Ie_Fjk׮2#b]ǨCx i4rEc;vҥkժڵncU3kECf͞ȓj7ojnڍ[v/x ZxF8V`*i=Sʴ8CܱcI&(k!mѕ~Pҥ~ |GP+W|AsyAmJHHfΝvx$3H|H!ߢE 3eʔg۵kg+@Epcw ۽{w=E+Wlŝ#p,T`(9b+H5Ls/#bUjUEK∘xoڎ|W_ 04hŕi"3Wm_t?0#*n<=Ae: u=swY"u,ےqۘȔWJ4ԩSdIe< RJ4r(m= :ƥl{5\^=Ϗ?^"&˅aDfޞ#嫓uMÒm޼96$}Tꇔg+b}!D˖-|Duw3"&ޯo+ ҈~ɼ *oiƸ rh$QG0bpR`sgT& A:!s1m۶M{]%h#aR*xDJ3??A\C^\#&r,+":ƥJmϞ=E=oi(Yt;a=nO]2 oGTC Q46fܞcfK̙s b)"rg gԨQ4E>'bQ']jUVy u󟸡;i"DțIä}aBaҞ Dт$v%q111XQ(2Kls"f۶mQF6eBeXIBmc$tJ4Tيm_"F#Ap:ђnM-e&a>qeA[G}BoQgǠAB`l~{A䮅;-i@;G/~cwx05 ^ M*N= :=$bc Kk/.(ڷ'u3{nOCaonGF_UJLdepym +\1" &Y:x`̠"2c,]E$M("RzpPC&L{p_IۗB.RJ<-C2fǕi'e *~M~Da|'0(xlJwtN.ےϹq?2> "f%=1Qi'(bqe#bҽDL ޫ7|1UCxr[أrȹ_f}Ih_=_HĘL4Wp~07b! 2D3<Devر>KQdsD0S(󕈑ROƘp@x+1$Fz5-Zd\H GM^S9ɵb ;EX=$zDSw}%mYpG!p/Fw01 z'_f\qzʂ<6;`Ix!K? /&7Y0ÐD fI{]%1ͤa"&G{rr!Jc>Iq1.EL>lD !^?/,J/uGOM9;.BF|Dt ~May-+o^=̱s744)?Oy ]|14`N ^2'O&hwRn\ʅmJHH Bz҉pdIZ/LHHL\$Oy.@QLe/S*b'Oj~DDP%M!DCDDE_#/2p̣nwJ$b$b$b$bB7;# n"C:Ű2""#$b$b$bB!11BHHH!B!E"FHHH!B!$b$bB!B!DDDB!B!###B!(rb儆& !B!DD11B!B-لDDDB!1$1B"F"F"F!PPP`FiԩcxBKݺuѣgBHH!##BQF0e̘1B"F"F!lٰaCuׯD!B"F"Fj׮mݫBzu}}Y4+Wμom7p@3a„{'O!C~<#3nRʑ#GL޽M L͚5믿nl٢{Z"&o_|a6lh|IGZi&OԨQÌ7к_|̜9S" _MNC7n~^0?n^~e_En.]~k}b#y_ΝMm'D\0=ֵkSO=e~]"F"F"@wI!*2?=)ÇͬYpBr|!ݻwZjiӦӧOǏI&jժ+WꞖ)W_YGcs۶m_1gx +`vi7n/]4jޗ1 Ώڼm۶?m$͛7C?zj8ȿy+9r=͛7[iJSNeJ9PG3A `9HdDDDL9/2!DL~Ptt!S7||Eޟ:umDh랖Ip͛7/z͚5RJ6t=B4!&ACJ?-[,k.+tq"Ν;g#H"^tL{g,Yt]t1 ,HuCfرcM0"/l]"F"F"3f̰ ] }YIch^yL6 vB [n6DW*dM41۷ajGa 6;cBBFDx+$&NiظCұ}!DY1!X &֭[E>m̓`-sq>[ܵkW۫y9VvaÇ=샲_ƑTŋ{VzE遊?C@%\eCĐO6|ƨ{}Hwn 0G9F"d\C 뛵k&=zDn;qzDeEy%b\'bxb}vr"Ư3d{111!\ʩ /=EI B>;رcEfʔ)϶k̝;Ϥ ?>]-=5l0s}v+EJ61߈4?i1B(/_nTUV`P$["W_ <$y*B"G,,"c$$IyO}hӦM,|~eWB\zV"Y/4;udIeȦK݌u CR]!{I(;"!K)Pl37ۓ)} l)gdB"OID` APEEPfjʜ9s&V$# eLg`mAv8كADl]"F"F"T~I܄A9wyD^!z!8Ĩp=,WK! b4ECԯG"sIy#sI]@Tٕ4gϞ%HǕm>#z2MP &x +ݻ~/eG@dU}ٳgg^Ә%YjC  ?{1AH ,"T77Ӌ|vݺuÌ5̟?OAI:F0o߾d:kDG^P41I.##c OD {VĐ0P]/./Llc$!1bp$*b}!D!"MahIZD yp֭ G+ \E''qdS<|aeW n gx˶05Z6O6I+y :c[Wws^{Z ػ'…1|ED,Z5Grm1̉FDLh3C֯_84ܙĂ cqĉc$%_BDgX'1ЫW/{LJӴC]"F"F"&  T4dd?Ȭ}#"bqgϞB 0w}%m_"Fy -/T>1TmBCj!bxLgS %xQV*+ b(0㬎!D_# 71tD_n6"&%b$b$b| fI\IPٳ&F_Đ)@ D裏6yOYbRa>=]{EɠAL>} e(qW-a1S!5awKP(GpxzaC<ޑmYs`<;.3+.ǤaŴ"&lCX1!]с0y/N+$ݻ|/eKpA2tgK B￷NCJ'fͲQcz"ɏ؏1D MVs"9>Q(,璎O?1 5"b.I&%VDDDDL`a,6md+ 8x0 ƾ")žA&NH=n"lE cɄcx:x4+i}WBs~aYH>'륷Qq1&&2&  eAp,3|<=Ÿ#&baRA71q.Cʶ?=|ӣ\&#D&䱭\z BܽiQD QWL=z +ܛ?DL)hKʨ<AH&ťq>q$`9tϽʽF@A$NĤ9w<:BOD ;*I,I6aJcYDdɑʪBmBG[Oۓ !*ۄ"#$b$b$bB!11B"F"F"F!B!##DDDB!1Z$bDDDB!B!$b$bB!B!###B!0IB"F"F"F!B!##DDDB!1Z$bDDDB!B"F"F!"_#G:uxRn]3zh!11BHH!dԨQELp3f~(!B"F"F!(.D [6lPd31B!$b$b"ڵk{B$^r]:qyW^)yɓ'͐!CO?mysϙ_~E7(‘#GL޽M L͚5믿nlRqf„ XeT|aÆ'49zh6myT5l{̙3%b_iڴH:tqF^z%7/믿"{eK.Yw1ӽ{wSzuSV-3l0s"p3lf͚e oV<:Odؽ{mpL6͜>}?~L4TVͬ\R"F"W_}e%m۶_Vy7ٹsmnܸѾtRӨQ#{_JĔ~.\h}YsA[m6RV $~G?􍈻yfW^mFǎ'|b%ۭ# xb>v9ӷo_Ӳeˬ㎟:ʩS0`]6"}r111z $bAĜ9sTT۷jSys@!74_~eNjTQ11iye^Y'x"#_:w!L& ~]ԥ3 Nb(@1{ɼFϤqŬ3v"$%,0󖈑Ì3l"t=Dg2>0=iHݺu!|$h7iĴo޾Gxۈ#lF3cxwSHL/vĉ3 ׸H:/#(m"=ZT4y4'BRgÇ泔-o%\|TMOc=f+B|0@O- (tU{@D׮]mO1?G"FE^^sh"DÐhShבç~fڵBrGgOT 79W\I}0!W&gHS^'rAr.ٞDDDmbºKOQRE^XhL2%vڙs^g]&tؽǾHA*خҳd[00AMTDLc}!D˗/ U|0(Z !K?3XmO0Lz!v,שS'H*_.czfD({lݺ5vBlN1~ڴic bN/3~x]2&b~a.?6p]H9Sp֫W4nnO"t̐%q|R"#Cy5P\:rʶ>.z뭷r 13tv;xBDl["F"F"TVf+~(}z@+D͛cCDZR*b}!D˖-|DuŁh*U^Un* Y6FTYJg{왩;}W ID1P&xlC$.crD~Z#(" *>y$t4fVZe#1Hh6(ey!ߓ)02ՄDu>!nݲ ӧu"=էO{ D6 0~vA_^P41I-##c OBE ^lE eBF=L#OB %baP!"MahIZ_\TCKHryv\J_k( )&i0&Ĥ :c\WT:=ֵnh/bhw}V}^Әe"a-Zd9d y6Ü31:8HӔ>'M2wb8P:0*aD"s sݎ1ЫW/{LJvhRyKHHĄ@A!A,1CxXEL?Ȭ}#vȸJ=[<ٳ^!&b=K!LDz.&R%n=Co\H T Fd/Sĕ/a1_ IV0"gI\=&LO?ߑDLٝpP<y)Y?RFXرC"BYNaC„R9|(YbͯLq֔ L+SDg;C1Q-##s*$4 D*LHٶI!1R *6,GmG"LX2z vw}%m qBaB"biBFk4 NPg.<ȣ9PJfRgPeްZZU hhp\T"Yn޼#D/x|55![̉N1|tJ:ak -" "q4>OG> : M*aBT&ir( iӦ'DDi.# "Q m9Ef+bTx bo&D3^$c cmc}By5Ä/FDgqM") ixW0!Ib\Mv uhRTh$ʬeB@a$]t5 W"hhиHJ'q\Gīj_"{ $$)?ܛ?DL)GmuQeB,F9F~<$n~?\4c%N,enahPvDL8%b$b$b!?u40CP$*_)e1Z$bJɓ'GSё( !P"y ?B/B-1B"F"F"F!B!##$b$b$bB!11BHHH!B!E"FHHH!B!B"F"F!B!111B!BGh& !B!DDB!BHH!###B!DDDB!BHH!###B!DdDB!BHHK/d*Wl~Of׮]ݻ'8Wn|MgB!(u<쳙zՃ>X7ߔ豜:uʼN7`lڵk橧2DL 33UTuue߿ :_""fڵfĉ21r}i18ϝ;g   # |SP!% ܟذa?6nݲ |Aɓ1%,bf͚eƌcmfvmzaLb%K.]}WDļVܹ6T7nh_tiԨ9~DL|VJ'\OtsMAl:D0]'?a{DիwhݺYfMJJH1,'Oh_7nT(~ZjNd$T!B$bwnϟ QN&!d.3SN59|py'2sΙѯZCd޼yw W^l5kF 6lh'&OtfMHѣGk޼w]WW"F"&thRS\ 9}HIl ٳPa}~MRnLݺumBC[ L&ML#⎋!%!BTl\p;N:6D~c#Fô\7c [Y' A:В%K2 laQ:Uұ!ުU+ӵkW[-S|YAot1|,#hK 3ϔh4GLpFĴi,^8F iŋGiK`s%a4l#`&(brlEWXyIaKUlӴiS+hL/[6|$bJN 4(rH/&\F"ai?}"`Ѩa̝6΃6( QҺz11˘|JlE ɘ|)y:;}yvȔ0BLԼ4qǙ$bBQچ&;$3wGNl13Áy[zjɥ^ܱ(SLsA;1.JаɣDøHv:|/b@z& իCKdi)GAP#Atr11_M0Z/Daa v;̙ch~L O?d®])u4Ls\1B!("",6ҊmB"&zXqDLX=M"x";9Gan)㞼\1*UM"N~`rf鋎lS7pAFƿo'dDDLjcJiDA qD1W ƛ͚2,x=/C4*b!p}B!Di1+VQ04yY1,@]ȟ 7(brGPOkq^1D חȖ vӈK ӨEP8Ф20IOUńxlmb#6mZ3ڂHa >˱0=+j]i=_2!bfϞm#YȨ02BfI`$QF˼;dBXA-fgD!Wي4EJ1U!4-}*ԽbXw1D FUdÊ#b` 5j԰y:_|! BݺJ*?OjC4 ׃Ä?D]1I&uAVF<D81QZ5+Y̛vhp6mɿ/8NZWZW"F"T!B!J)KD -@Ĕu&O0!B!4DhGkoݺ3J"FE"D!##B!DyY b QV111B!B!$b$b$bB!111B!B!$b$bB!B!###B!BHHH!B!L!J$$b$b$bB!11B"F"F"F!B!##DDDB!111B"F"F"F!B!##DDDB!111B"F"F"F!B!##$b$b$b/\y3˓O>Y_vmwRuիW7oٳgrRrMyӪU+}~L˗>.]~f„ %~ f朒~k׮zoy=޻]!Dg͔ >`o)c9uym^=`ueXPԫWTRC֭[٩SߴiyL5̸q {̙3%bucڴ\g~O?4>:dȐ8ph;fwn_j2Æ 3ׯ__HH5vZ3q yq?=izΝ3C5 4Kw}]&dTȼfsI}Yzg>Ey1IO*'O,;خ@g[nr6_TԼ^Yf1cƘm۶ݻw=zXΝ;Mm57ްXݸq}ҥQF1y!(ݻ(ND$?㺇G5u` o!袎'M=gBħcǎO>g6_4iRd$G"F"殉nɓ'.]$._~qF17ʮY&0I]xO?Tb Z"ѣ%br}] =|]r84 !s}}zk_F<ҹsL )Ф1o<{mpz?:}^yhflaÆvq"K'5.*%M=3K,)kW_}e~HHաIidLq%L."[J BbˆS={,XG&zqccIIݺu3uֵ e ,0M41۷3~'#GwyԩSfd®kvϟ?}ٸu@ʕ+3ڵT|itF͈# )|xdCW_0=()aѢEh۶ˍrڵkgΝkGee˖6Ͻ'P qe}E ٳ5)((H&͛7llF_&}']sRIСC5]ds܄j#߸h߿?<. 12")ǰlOa$MT5ʼk4-ZCq׆oi=371CĐru(2:\Qu #xY>W^̙3"V"c37HHĔda2&_&ۈ `z`DAC KhgϞ^>Ȯgl,9 63ա7&8DI1ѣK"@ ׄJ Vj{v\_ &/CIݤ>xݳI3B\>m7z~/㇦fM9Q!`e$ds4Xu Թ JB"& dSvyZ\1ԟދ v9Gp]|a2h 3m4;BE [bWZe{1+b6mje˖/DL1\׸!AN\zE> !ڗ4N0}"g ]>CgwP0:>}E[|7%u>11%$_Sd+b[n]h=v+O@ay[2/zhy+3qIĘCEl{k__|.\Ў}ԩ&F6sDm8C٤CmT΃1„皾M9y>7Q=lIX +w]-gFO?.߆㣢]*Jgi*٤ktN4N(nǰ'öO;zor$b+.ODL.RQyDLz&'%ib]:7"b{4l/tB!44dE "y<柍`:# ogEkR6Qcu n7mgmڴ)t\.2,O/_W:K٤kwNT*ipMXN &6(\!D."&)ӢǨz?GĄ<}1ى&\(,n!k5b~A"E i:{(QrѤ Aq$N\d!r5\EճҊ?m}(_HHĔ+#Ľ ¨f G!LOԅDLTzֽB"F"Fa=b( cvs 8G!$<=Z{֭W111gIHHQaªvBC:œPDDB!BHH!###B!DDDB!BHH!##B!B!B!B"F"F"F!Ba$-111B!BHh111B!B!$b$b$bB!"#$b$b$bBg ȑ#M:u|G1?y_<;6:t`ƍW W^y^'O!C~^{/JeNs5SO~-q;i?:̈́ tKy|!Ŋ[-;v"l߾ݼfҤI4 2` Wߩ.##SE k֬I޽{یC!ʋ1w4=UgD̙3gLJ̾}ˇȥ,DŕiDL16M5*"b-0f̼n1s>p,.4#_r&h^sNihmtb+3K,)k?2?`;v FB6l.NFdS.! +KHHC`](#AH[nu={,YGC F%ݭ[7;g ߷LI&}fc;'fAE, !$bg#4&bwޱOrB믛'N0~4'@m /}H߻q>TSNRл8|p{hC믿A$×Gn6mjj֬i?xbc]v): ň#l]bzqΘ17N@ro^ F\]k׮mr1gAT|玜a^|"q{}-S?"fKv(0;J#ƶ^i ߷eNPF0T!7+WĊsI/^̼)(r9wV\Y!]"F"F"&d[FW_}VFEƙEʄm۶˗/׮] k׮;wOO˖-ݻ3 3n*5.;.!D!_#ZiѢEђ>4&*JaCx^2ˑ#G߿f[o1ƞ7eʔBۤqڨ -eN} 4P?gwi%~7ndA^ F\]M6a[ǏE,"so܆Ï޽>t<15嫓6쓦ff(bH ˖-3͛7iYΰ0[je4dC3WõId)Q#t [9%#l"FKHH Rw ٳgm@^>ȮѭT:iSD%c$}M&1Pw㒈B*IQN>_y6n<J04& , iQ7):!UT=*i尼>W'[n멌Fs7]Eh8B)KO&dliיyn=<w.>"bJ+EE˺J\^킙ya1s1G ٹi|y \pʙ(bM&9:a5̟?߸ڠ7oӧ-8/7牋OV.[.r~~111ŨZʴnݺzhbxl,x/Tlb#bJa%qBo/=Iۈw҇)"u!~ܞxV c^pNgjgSA*!tC箃 "6e#(#p QD'#W^l ieޢ).##SJ T<&m=I0ݷ~;Ie㧟~㫁d"fLs\1B|AEeɅDĭ> _y6 nn?ܸq)D)TW!&4:鱙Q$wC0iDLRyqA+9+VE ъT1_?c\kQ{(`)"J M.^eJa6f}Id\1L[߇+a-I!GEi-c-^kt3D4elEL4h fdBar/dkǤY<@HiӦɳ-BaDD8C^w|ts`<p'80pG6rX^̫ \dD+_ކCs<Ϥaƴ"2!WH,s~S*J +bhtzm#ᳬs $G[ YtY_vmwRuիW7oٳg.T^r] /^4|iٲViР_6Wq^|~ҥK%b$b$b ,uӸmy+|:vh;/۷oɤI"SNY7`27Gy\F s^~DDDL1@Y&{m3!("3~=("&L(-t!liz:KyMqGMAG L'3[|v\)e;j=˩7M1ȗm!לST|qɒ%E"CxGW_~yHfرcMaÆvqB".Ә(`ċcܸqvv1111XW*H%f֭[v]Ϟ= %`pa[Iݺus&_`ӤIӾ}$lw\'N4JSE[! Tp%˦qb?nvj{,;WuQeB9 >&|^_'\Ν ,R.}v5kִ ^xy̮]b&?;c { v\cE:)%(b)* >TsG0L>޽v㖩?p%;h L%J|߶BW^nHW\!Dੈ-h8!#³r w111G(-T.*(P$̍ -Zd+mﻐkfڵkgΝkG<5wμ't*SN'y("FgVjZhQD$υm۶7oƩwm*~7x|g4*ߟ^аM6-?~|N"&n?qʄs ~ↆQvw :uʵ>nqSL)M̅SR%W%PIgwi%7nܓt sD -., 1$)i{} y?bfkW'm4L'Mǩ'Sͮv{1EVZ3g΄ б|Q! CD Ώ[A%$?D$F̧1E󖈑)F~"sx3 ٳgm@E^>ȮѭT:ćɨ\O7o.IHd2ûk=$bdٲeN>W6nh{Ʋ1ImP0܅Kw,B}._\"bwi&tD+?tR~1A{u#X{0a&B^{'b1sJQѲDy翧׻3~`od^̜=G "fCvn6_7rF"&]Ȝi76($͛gc$(qBµ-ܼ'.?MdcHӧO/uօ%b$b$bQiYjiݺuBkqLH"*?ٱc ^1qǙ$b y oz¿B%i} Sl[ƭ3\ yiD}׹N#bsJ:9P#D'I "nir1_ph{$bar]xlHGDxeᵛ. dC1 !)fD_|a% '^3V;CC<~C#{'#{q$n޼,\0+Ήf"ְhZC ^`^5@ЉoAH!b^4L\`]wmJ:H[3dsu*=ab3eՅ 0D?^~<3y2nO[&'B|mBTy `[`di mTDDDLٳgۊ0 %%Q20~-ߡ7N8aCGHC亂.[渨0T0;oB\as߰,.Tcb2` cţl`c(y: ( `'>Ԥĭ +ΉJ3&eh rOիWFM2١41D4|@U@"ފ?4$$Kh& JCd +q?>Ilח qB"HV,t;yiӦayKHH! ҳDAɒ^T,:WTE]&O0 !B!$b$bD^an=O"F"F!B"F-1B"F"F"F!B!##$b$b$bB!11BHHH!B!E"FHHH!B!B"F"F!B!111B!B֜8qBK1!$b$b$bB!111B!B!$b$b$bB!"#$b$b$bBg ȑ#M:u.^h>ӲeKSZ5ӠA3xRˏ'4&L7)-eY>8y2dy#`7|Sr)nykSO=e~7{ bojz!s1޶mL߾}Mz3ϘyަMlQ7n\u/9sDL\tɌ;֦7o~ӽ{w^U6l~zV۠A>Ɓ}e˖"]ܼ毿<˗/sLi5o5>hl;$W"F"F"&~pΝ!m24N\QE F١P3W^˗\_I'sa3k,{.\T:x?=? ?ܺu6\vDLɊ)SXҥKs}eD | !CTb6nܘoaΝ;mCխ[tͷ?.:$@޽my%Q:vh<"c6?4iRV۠zj*(go?wzjKi+ &q8_2.b^fMq!DY1O+,)7)O"&:Ė1% ׅ('"fԩ?`_Ą-Wf^?ҹsL _IY@DALQ_}ׯ_V:6kFoذ]kyL4IX ?sMSF.Y$1"$W"F"F""J% B0={,YGz 7J֭3ڲ &MG'an>8qbT+B+bK G\~1桄n3U˰|9i?I"&k׮g &b&~h6mZ;cxEE!%~$K{a>4iUTI[J}\Za1{PR:ޔ& I_07g]ʰOO=iܸɏ:!/6t7AIC׷"JLȌp q#QǙ&Až9s&+##S r*~"Sqq ٳgmHoG}dV*lM!z7o\h=RD8w}=z4qI!ɲe"Qf}NWiàa_\㿎+X6֛7Is>L|:Γ0)((H"H]eh?Oz<4MxPQċEԵOo}PR {/:6eMC19x$ާaKz_jͫ1HX򂼀N"&?"a=D}f."ƕn&BI0iEnݺ|=q&̛!s7W"F"F""BuօcL8^{5k)hHV(brGĄݷ1%#b7o龉a"&zOqD  iH"&7CG9Qy4@a$?A'~VihRn"oi =׹NDtp=o6"y4VL0U}ڴi|RD$=](xq&"nDDDL"f6U)hd\+qA{'_)&'qd I1i 1W!r0I? ]+IqMԵ7zOqDLXbDLD Z!Qxzy&Þzp}H?DL"&qw5iK\DL81QZ5+Y wgӦMÄg\#b}111B!=QaeP$d1JD^Hh)"<\BIT4$b$bB!$bD h[H_Ih0Qt'##B!# bO/C!*11B"F"F"F!B!##DDDB!1Z$bDDDB!B"F"F!B!BHHH!B!111B!BAC44IHHH!B!$b$bB!B"FDB!BHH!##B䃂3rHSN읇UE$]KD% d!#d  dA C3sƺsI7tg=]ڵOf͚fԨQ7B!$HBB!"KFYH/G֍B 1b#!F!^[mVh֭[S1B!$HBB~۔-[֔+W.TZ5zȑ#%[8xuǏ7K6whw1j2ׯOͅ LΝm[ѿbiJ Q#װbŊBwyG{ 3f̘si'u뚗_~ٖLDQ1`3a<b&NhիgR>}̙3g ߹syK/dƎ[`]-̬Y$!?yWʐ!CCm'v_4*U2mڴ1۷o͛7ﱁav<۷@Ȃ1nܸ۞? 4B\jUVOHZ%HY,B;+WXJ_y/İ?!˦I-)C5_}yuЊ]n:s 2ժU3ӧO7/^4Ν3SL1˗7k֬#!&~}oaotb?vNwa_|_-b F'N6w .v(?֭DE9 ˩Sٳ^vB ɓY^?!k#!FBL 1@ڸqc1b!w!I&"pe)?0‚OѣYyDL4ӦMl 1b.#ʫL}(Sʕ+ėN:"`!BS͛&9xx8l'B6%A/hGB(% pm6uo>mԷHZ%H&FBG*00αw@mbw͆QsqƦu֡Ic1DɓS", !$djbS&vg yD+WgΜim%s8T{5lذP'@m]ti=IۥbpĈ}`:͠A 8=W^MX"2QɅwÇ 6ў`F]_.&7{F/UT`iWa|)q%C}gmD{/u}bqhqI ugOu17oݻ(τع-gK1B\]޽ Yfl:xsDB$B t]x2]^nBX5,A(^O#0cƌBݲeK`~B5apf[DE] 1bbhPzQq6UitgϞ#F 8`Aa̻ 6<!DyƆHs>B F)8MOI:5Q<.%WD\x/֛4s$qSDs)0Jm{OL!QG=V^sPw}3} G-qFAB&n(7CDuE{vAY9bSA{glG=.,qL+}1 qFBLɆe?Q9SͶnݚvVqqBJC I!*+hPR"njRԵJ#!& !RBk89ΝkÓqhȯj翛CasQ$!r ȅ?|z"s)0J~SSB `W0: ._m1IqBLuE 1=DXB'lذɽb/A& oѤe˖vgP=t;"YBL&Etu vDߓqG!?+" 1%A(NASl'SN~&PIыIk#!FBLB %0)(ji# k2e%DIr^}g !""v0:T|d}-< rpɭB4yl&ID]_G 4t.P=t;%Hvӧ<bXb=e &MHDP/!S(˖-G9=] vK$w'qa„"5Aӕ8?Rke-:t| Z%H#"'@ǎ(/"Kz!)Wz_*$h8:ujDO b$!B!$HEɼ`$!FB!B! 1BH#!F!B 1Z$ 1b$!B!$HBB 1B!BH"!FH#!F!B!#!FBB!B!$H#B!$-$$H#B!#!F 1b$!B!!F!!FB!B! 1BB 1B!D޽kSF sXj֬iFe#BB!$HB!dȑ2zh(!#!F 1bBl!e۶mmݺ5#BB!$HyyMٲeMrRKժUSWn9RγJ*7B\K듲sNӱcGk+VhZli֯_~ܹcjժѶyuEM ̋/h^{5j*U"O>1u5/ܹٽ{w: &a3qDS^=/ǜ9szu^2cǎ-Ef֬YbѼv@eȐ!*J*6mژ۷͛7n(}߾} X!ƍImǏ7Kv&{b$HU+V/IB;+WX#K_y+$WVB\p^ڜenŋܹsfʔ)|f͚5b$do>oX1.]X?;v/_nׯo˥a…QFĉ֖;hA=G{A׭[g1 %qIۘtvO:'h{tWB 1y.gkƍgt !*,YĴj*mnwO]n߾}d+2hI&~ڴi#6-!FBL҅rO?>㇖)Sʕ+ėN:"`!BS͛$9xw7+ Mxq ؑ?-ڶmunҤ3fGYJ#!& !&gD*%#M>zQ )ܻwώ RufCްs`ӸqcӺu1tkɩNPIbe۵kWu8zombċΩLI7߻#FXtAy;{ڵ9d|P;sLF0eNѣG >|iذ=ưaaOF;j;~=T)hȋ܂_T~eNyy;QtpV\Y3,2RL9J?!;ڈ.}i?ЊD`SJr4ض<]_QNt=tLIǠGQmL\y1Cv kMvBMNz%H0-8aBLv󀓹~4âE tS}]3o}zߑ̸0o\*oǵYQmL:WnKW ^ 1b$d 0HT2D:s\ƊstmT }c!FQ41]!&ya}$Â̴{"L؛>zQ(˖-'=} W#B_'{! {fE1?~!Oz%H#"'EB~%n( sQXZkY-bSNMiBB!B)NJFn%!F 1Z$ĔH䭷I#B'0i z!$h#$H#B!#!FH#!F!B!!FBb$HB!BB 1BB 1B!B!#!FBB!B!!FB!B!$MMb$HB!BH# 1bB!EB#!FBB!BB!$H#B!-b 1bB!b$ 1b$!B!$HBB]yMٲeMrRKժUSWn9RγJ*7)!_4-[46l(cEy͛7n\?`3a„bEYӹΝ;VZf9=__!ӧ'|b֭k^~eӹsg{ueĉ^zӧ9sL;w4y饗رc kѢ5k<4Y2d~_|J*6mژ۷7۷osϙq֩S''6lfA(V =w~Mҥq[,!FBL 17o6'ONlٲ%N+K,r5`8G$_~E@= iL \<׸:k֭[gY"?88 TدСCZjfŋܹsfʔ)|f͚5b$d֏o>oX1.]X?;v/_nׯo˥`…QFĉgywB MG{AV~BþٵkF[A… )ԩSf]fϟo'O;b߿]m5KSdB nԩk׮ˤIB'Uq'iƍgTK}&Z믿XZB NըQ$dx!n0@g*KBO??[L*W_Tp0D]IC D*)[n6< Z1176[=Om۶ŞQCKIT!g"IϞ=ͷ~CA(x^L5N(A>߫WfU1F-#h}Vǹz\9F:FaOA 4SqS5͜9p=z4s4ܽ{5l0%db_AQT(vۑrȶ VB ̳>k# FᏸϔC:Zhڷ #! uuԱ R|ݻ7ѪU+dɒ@}>*Vh`й1w||i'x}tYB"Cc㝓Gg-Ç휵k6to;INA]hu ݱnܔ+:ySe9ҩdT 2.r!֭[fΜ9ܽ{7P&6mF>e~ҥG_& o6u hk׮m^y? 1% a)K&` !#hNBѽ`K~7CsD`1% 1[a}*|Nc0(D'0!&k#!ؒ1aҍx+NhtZ/_l.]d5kfGg׏=:ϟƍ0\EBp~Mj$ Lp /g&z&_ P/qz8!&~өU~6ByCF8sU񆲦SףS5 PO:獠>H鄩 Ȏ7|ӊQJT[vqUCN"ӎ2>ә%uڵ6!d PF8e; 1%r+H_J2cƌB 8p`%!QL7# X~#aB\$"&%H)ַ&yŘ\0 14oV8 {Ϫ4T::(\J~pB2..G S<{ڑŋ[=Iib~M֙gEd_v('sQ+cWQIzoyzR*Qh6'as\ssUwM74zO.#İ/'FG'S !F:$"&}cOǖAǘb'TL"48N/ ӑE|f NSJ6WSDחK!2d ?M{(2n8[ƈa:6/6mdlSEA+{]ڂtk#!bJ0ī`h>gY 4*3#nUBL18Ԋ);$ӧOB$zoU`Bkcs7ׯp*av8/ r[\N]{NQĨ. χ8a'Hoù(L샄!S`)hhs-<gެ:o2W]% GBx4- :'JIrb$|XPQ"pQ/OvoذaۿQŋml;VXQ:Dc0`0aBZD;wZjחg~i'u뚗_~t޽Dc&BBLY&Nhիg>}3gXsNk^zɌ;-ZYfI#~Gꫯ!Cr)/TiӦپ}{~o޼iƍ۷@v~ܸquO8}x9w2e)_Yf 1Y/aO:3ocҥ`O9ݱc~~\J.\h5jdN8am;*Xxm9u1_n&}k.+΅ R"ɩSٳy_v̟?TPS~hAa%9FBLa̳tG:u͛cC4$zZ2K, km_bŊ;3L~z{uf9!kӽf 1b$gs Sծ];< l9%vѢEpr!x7o17@Vt7Fpt:/!Da^xӬYBBKL!D믿:ˮc@eo6o־jcX۷F[B ;v,0}*LLDLܹĵq,y}KAe0!ҥKm爼'1_~e{>tPs-{,΅h*~?~F4c 1_|xq{LM~sV63.WBB_~!{2e}vUh=|P`$jI) X $ #LY2%"dMӡ]"&(Yژ~4mԞ+"7S #(B<&? NBtB bҹf 1b$dCV.*4Ρ8S/_6.]3g\[qD #F˘DSTn駟Q$%!FKpz^Qd}674.sLC _3h߁Jbcr"$3)JIr.F$gP.$D$w\;υNM#JI3zB B4#biCg:zIg۟#G=w9d[g=9"q:t:qd|a^۝\b22O9^FYJSϒ 1 9Tfr%p<9Iɕ)tHD8aaB?tɇpraA%lf]i 1,s~ `s/^l:MM*g^9N}&H' D2}B SОTvkkǍg1L'o s9LM- KW f 1b$d 0ǜF "LJ+`\I NF7 1 zJ+$9/ (17W!2)<~pg  g1jb~>#0Et;QgC5) .pDZAs 8GX1ߤ" # M=%wPQ 1t((/.1q&Sȫ0hr`WR^裏@Jvig\'lf].uŴ{"L؛>zCP6-[&!&`16 KD-'" sgs#qa–ZS)OQ'ݻ!E4k[?QBLk#!FBB@;:L,q&9bLWz_*$h8:ujl~ 1bB!& 1Z$ĔH" 1b$!B 1BB!$H#B!-b 1bB!b$!!FB!B!$h#$H#B!BH#!F!B!b$HB!hjMMb$HB!BH# 1bB!EB#!FBB!BB!!FB!B! 1BH#!F!B 1Z$ 1b$!B!$HBBLs玩UY~}^9rfA_4YjB!J 52ʕKRLٲeS\ptS/1,ǎ3C 1K6gϞ-nΝW~饗رc kѢ5k,۷on3ƍ+k׮4lTPo>տ>-ܲm۶B{m_(Ǐr{Bu?J*6mژ۷^͛7oܸQXԽqb$b6ol&OxٲeK6Py*m.SNٳgQϟo+ɓ' !AwʕCڎKI$d|Vdڵyg 1]t̟i;;v/_ԯ_ߜ;wNB tժU͡C |d3e[g\bzm7oZ[o7qB+)uVX: &ز[n'^]F 1b 1SZL4ܿnBL( !BH~ @!fڴi? 1+WN/:uJEP&GMM*~Ӷm! (\~~nڴ}VI&M1c_zD vb%ިQ]sX_,^q\ 1S1a>| R6l?F9h;5s ~:\ι9s/ѣǤA`z25j԰*^&İ/Պ+3B!D17 ,076[Fa= 4HoFx? [tiCӭ[7SfMN1Ww?;7|WF[li>;Z-!&7Kô8: G߁h| BLVl$"HF uP^o'Q'Rx_ݻw=z֬Yy.q}{qb$Ą戡`rX04̈/o߶W_ tǎ̀bBix]Xy+!~{?Z//#2eX1G!":!XiFn2ﷂDaA17o<DNpA?:7ABxw%#@ySj׮m^y;%FBLPUf9qL8|Gψ,Ե  1c!E;L:uh&Re݂$0>aT$I\_,^QBdAbL.#E=z {>%P٨$kW8w ͸>h$"bhQjqTH$B/B ǻv"W:An  ;ÇzECG~ڵÀ+B~3 13pDy\xƨ#g[HIrP4$"䋢>cf̘Q N_,^]q_ 1ޚcrpm r˨ #Q6c),)2 SrĠgv&B&t!r80Ȼmb["+sx$"7%CG߷0-e14k>k 1CĉQ`J)gϞ6OPݺuS$N%Ւ E݋$_(!FBLW#fZK!GJb}q5Tw5W]|~ްau 1u !B?b0C.F۝PD F!LKSBw_n֬Q|>O$dܹsmdH )kk>"Jطo^&O:t(t 0Q}{%HI,Ębz#QpxjJi!$l|O"*TVPK M[z N aӦMr[U}kc.B 1EQ~_ү_?[>,#9uI)^!rtb_/^l2MM)4(͵"P+1x%H$幧+R\tFL>XBT]X~$}{v}b$sN[x';J']棺 =N HDeMJ Ԑ_OsΜ9{{ Lr1ǡ;בBB!)CQbG!O÷ zB. ڵ#y# :%CeOl2 1Y`B]GwY @>󶎻3 LSӘʇ0D%R/_ފ,$f>E凉닅݋/k#!D1B!B' CB'ԩS"!FBB!y {#LEBLɂz 1B!B9LbS/|E!!FB!B! 1BH#!F!B 1Z$ 1b$!B!$HBB!B!BH#!F!B!#!FBB!hj& !!FB!B!$h#$H#B!#!F 1bB!b!!FB!B!$h#$H#B!#!F 1b$!B!!F!!FBΝ;VZfzȑ#ϛ _|ѼkfժUя~۔-[֔+W>-[ 61e!WUy߼yƍ `&LP0W3k?)Ź_!D~ѨQTPTmſb= .Ν;[[ݿٺ'L9v2d)]9{lu;w>K/dƎ[`]-̬Y$dI߾} ,=7n\]v|WaÆB }|'>-ܲm۶@ߓ>LǏ`݅(9_RJM6fiTQ}{w%H)2!ffɉ-[hCGcAEgԩSfv[pIyAYbEʱ6m}E_~%s/֭[g IbOmJX~OtxW\؎?tPzmgK_&!&￷"K׮]3^]F 1bLM:eҤIOtYD-N3Pb+ |5%]5j OQiBH).>C?A܆UR 6Уc9QPQTR̜9V_~nB=Ǥaaz25j԰,a^#Yd_+V4QB]ŋmgZj\3={4~mj; -Nӧ(,^z5-!-X4nشn:ՈtԬY62ްu@5kRO]yE{ףG n޽{Ro#F~4肿nE7]S}?wM/ $ۈ8gӂ#^;t& k q c#&LaZVG'vGӪU+ۯѸzB=p@"(WoBu"}V~۽{} PQ%H)1pB2۶b@꫶Gc߱cG;':I[|]Dz_ 7q/2R *SFKs-3gl]vYCؿup#G]Q a :w|^I$$Ӊ87o^'j 4ppSƏZu-Zdu;c nBR/<C'۰gqM5Eهyٔk sBH bmD}iQ1("& jۺ({K{^I)!=Ƿ"Bȳծ]ۼ+vJ3p|(&NXDD`-\0oF8% BnN:V)߉nAB|*?q}{F 1b-YoH⸎E 1TZ*>I4RoG3,"PxaT^x:hYcyV@ȻT g7,;ICDɮ]R9?B$g46Q!\]~7̛u#qc}es%ӬY3;گ_?~ѩ}z7]S}ߟt;̦$8!bniQ/ĵ7A]X$>i%CG|ڵ@)B~3 13pDy߁jcf̘QA>UQ}{t}b$[bLs`^*s&&1G${ G%wb[ACG<d&LN"b(<7 68"PctBPg:lNMs.ޅ蓨uȡA 7z޽{vD nj '3믿 _ A$ {6qe')IEB"I~$o_ko+sKb%CG߷0.6k>k 1==qDxA}#m$v D }խ[7"`[ E/k#!__M 5\ 1$NVNc#I*^]q_ 1OsN[iy3 )]:C=ΆRFyTёdz$|O#D$e`Th#DfoM"yW>}DNM駟 Q?ʂ'- n&=2_:l 1%̒Nʡ&4W${wI]^`d8A?l)>ݟt"ylJ{Tv$!2bcM򟂒FEbl;odabX,y<-[&!& LK~u /0C}toL#:a6H'J` _9̧2>TؽF 1b(!Fȑ#?ϼo t>m!D~A> "1$hy^_-@B!{T~3zB+DlWkٳǎ3JB 1$H#D~B f1ueC"DB#!FBB!BB!$H#B!-b 1bB!b$!!FBB!B!$H#B!BH#!F!BQ\ysYsQ=rN4&3\⌄`֨߹> Bk0HJ]uOԝ$">4vv`ƌe˖I^ 1b$89TJMMZpMňj(c*,IMP_`3ڔiB 6[Hg^%n}60=‰,nLsHצ^- Lܙe;=`ڵ歷2I`ӉNW6`gׯ6*υo?u f 1_!.T\p,']}#Gkޛ\cZL8k;酁'%DԶ`A]$m-qS {i#4I囹&lK?D%$\ 1bbHtĉ@!Ɓ6nD LD̎;H ߰aCKh䓔RQq '/Ll$xb!ʅ"cl/F򦸷ۙ=pOɕnK!lڴ)60TBLr4` h(tꆄ/XQ uyd!7Γwg7%rŐק$DԶzǴBr3gK0؎NQMG C B\~'z%H\x[XvNE ބ|h. 0ktN[zd=97uq]F_B- /M6"0|k$M>S}A~:ڵKۦG^Dg{3"fqB-k7΋ANeR!($>EF=BL&h9O~v|vI~)uCBLb/dN\g=zRկNn^K޿ CT 3G9d>JI#ʶzmz'ĦI @"[0q%n{s90OJ#!&BΝ;m'?s[n#c{g\q#ޤB zs̱ݻڵkۑa2@LB !D&0͒x/|vyTֳxdC?WI71DqvK>}̒6!*N-k7΋QL&acQOԿ ɤ ;Q6\_ݠ~I)B ˨Wl]ކȒzo4 |%Yz 1#ʶzmzh;\77Si ?QDBo 'x?I^ 1b$! Dd SCiy/6ObESNM+?Ӏ 1B!NJwϞ=^-!F!!FB96= 1bBQ$0ui5j԰ 6Oؔ^! 1BH#!F!B 1Z$ 1b$!B!$HBB!B! 1BH#!F!B!#!FBB!B!$H#B!Ԥ'~믿r!!FB!B!$h#$H#B!#!F 1b$!B!!FB!!FB!O2w5|Qy ,5k4FB!!FBb$!Y2rB=znBH# 1B!Dزm۶BnݚB!!FBb$Ĉ"Ν;VZfzȑ#ϛ _|ѼkfժUBNJzt}ѣykoܸaƌcʕ+g0?0?lf 8Y7^2g]of=Z?q]?b6m> 1YؽǏVreӬY3dɒiG)n 4y1ÎQti{Bu?YR%ӦM}ky=m`ϷFuv 1b$3fͲ5B̩Sٳp؝a9ynbpVj:ud&M6ۍ3')S]r4o<… mĉ7N1jҧEfʕCÇm}-)n믙JCNw:ynj\?1y͑LgLw̬ cV6xfC#Zƍ/bچ L*U͛Sy뭷ƍc@{Auv+VH&L0/R]n:M/^&$/]u'Wq^ 1b8g!x҅`t8~Fy0*ׯψ2Qу[GIbY bnyhL%O[o>?stu>ٷgͭMRI/s3C4LϹ45) conĉ{M6K"4iFjۡzʼn $a/cǎ ҥKCX\w}K#!#ÇJ)JaaBqu(2m۶mٙ9s/ޅ{a7wU˾m#A9싎HŊ3.OӣG3o<+N0ȡצ1F` T@8{ڵiٲ֭S?coh5W^-`o{F?% # ԩ8 o;$Zj"򆈅ᄈӢhh/ݻuۚξe'P&,X`G[nĕ -W9t^Q%kqu]BLeӑfV* >i6mz_ Q~PJ7m|C;ʼna2 s]SF9bb{ԣ7|ws̱Q^zDB 7g'oD=.:1[b DLYfMz"f~L&$*k#!FBswm[888 ;v4 bOAy ۥKR;fBpi}嗑B y2e#n;^/Zg L˗/ӧLuٿ`z4Oߏ?>wߵ"0މ-D0G߱lٲqOWa>2.vOV씥8!]vkMA/"\uۚtjbDU:tȖ8#y4Sw>>0/s=s]? 1&-HC]rbuQHDTP{ G߾}ɓ[؏8&F-AmAXmҥH$u'Wq] 1bbUFZ]4w g%8)(q}x"bp>PqH$%o$aNcܹ6OJdn >|`ֻQrC|sFg6sٳg;eaOWqm^طouږ/_:?5}N!i׮]v^A%kqu]BLOGBɢG,(nqwg[-D^Sf>1gͥG9bbkդsfKVcҶ{#F/NzRM]@(evڵbk\7]'ITQ[3 c˖-aFQIuv 1b$8yj*sJ&04(zAx7%Tag)08!Ȥ-cM sBKl Ě7?;w.^2 IB/^z.nS.;ƶh)BQCbp96[-I|]Pn[ݷڽ&ty{BL\ :ﲩbG T^o$'.T\pj.'K}&]7͞Sw{3 bL gm^~S}90𤄘,H0HHnaڴinݺiIےQiaLĉ'Qם%HC&V$8PSƍcP ;$t.ԞKa&BNq?>IFB َa=L]g$X?;IF-g_ lDn=kL{ 6mJ} s6bٷڽ 1ak!&KI xw9_;rzo]ěZ%h(;8o=J!ɯWczaشQ(11[l#^СCc 凡cnB5o1%!ay\!7"%1d}`:to9C{弜.TϮKn<'Lb駟ڤAӕ!R"oo@ jk;sBdKpF>y.Z(=RդBLؾD(/խ\ 1qu]BLQ֤^vk<IRX/dN\g=c~uʬ>p|Z>!*{M1g{rȜ}WSL[10JJ^ޢ#?]1Mjo67@\7 Xҹ}K#!&BΝ;SI&#x~G(Fq1,I PC믿nYt޽A]mgJX"(l/.Qٗr]_ # C Y(`y%HH$IIJP@$3 90~g>}o~Uߚ{o><,c/{*ڛ]~X&_[1:e!1K6FQ"NZ-9{}ߦ Hl &SwQ~If1xτ ۮz/~vCP$}34}.iw꼧d^[b1O|@PRī^'Ւ"ab"b'&:krAL}~nϩ]oh1d/:aDVa2,,1wHPitGt b1@WZH'v吥BЬ/.mc f,8Q&u:묖Ot1-iˬMat'Es:ꨞ*mx׺E3ɹv'0eʔ)7&گۆX [1b11@#A A  Fb1@# Č 'ȦMF$I$d1@G F F#A A F F#A A F1A A A F1A A b11A A ?}{6xlʔ)s-.A F3n_|vءehӳ>:[r%gwE|;  Lg[mUK/yufAA&Mzio  x Yf82:a1O:|0[km9Zk]4mY6yl59'Bo~+\s5 +P8fgEo_Ζ_~젃u[u[/H_rY#*ƶ馛// /P5SN9%/W_}sOQ bbtIّG-ruol< Cۥ0ĶqGy嶏?xꪫ^{>?TpK,D&uƌ8WSO= 묳NG_~1v^%|A FӇ0&XoJ{oӄ boί{C1p{ɵ\>l-γ~wTN;eK-Tv]w;~M:n牃t>E1 fKg^z1 p 'b17 _I [z뭳;3߮~:>?cEq&ywzW_|{hytM79#`pWTG5So³y⠝ϴ bSP<Ϗ8Ϗ-|ɦW9N X>h^gy4EfK m63)&>zb16mZNttvg}vvꩧEn(o,M _2##ս|%d? b#8"HǛˡ}K_iw[o1<){LJW|E+c|0Sn?WA؟)P|뭷f\[l1SdlVqۜ?ZV $oAL߂x'b+nV 4”6{cˆ.@&`M-#Io|yenظ^MűM;0&Mƾ_U }n?WA؟͂:a {7G_ŕW^9m@NGq?#-& fgs by~ ?UWv1JVYe<`ixcԕZcA;)H4<7M߃f!L/A !L#:01v0q7}AyWo:?vSlIT=UHDDk^0P~vh,~x6s&C:mEzGRo M&MV͞ 34iC|f8CCa6]^u,su=x_sA;l؍v*U#".M)Rho'DΔyWX.4wzѾ# b܇4GLz( ~:>?cݸ'C%/q7>VcvqWymI q]>ZV_RWA٘8Yo;O^1U킘V7 Qv3H1B1E|,iԁuf/`];c=ֵa FSO*f n,8f*EBMG?ʃxAtAhO1QLGo1Cw5$iu{R=# gJ33ݎx1iY }.M[|(>[V_O>嫋罃~> |]FXØ&OvX_Ѹd"D6n&MT'>Xb?ŇRƇf|6m`Pxg򥊣n !Lb<`Hb(2T1ĐI&0BA Ⱥ3gL:Ƅfі1ݜ0 bb1b1 bb1@# bb1@# b F#@# b F#@#A Ạ>=$I$IOFm. A3$I$_1$I$)bH$Ib1$I$IR#Đ$I$)bH$Ib1$I$IR#Đ$I$)bH$I F#!I$IR#Đ$I$)bH$I,^s5ꫯٵ^+bH$I,bk F#!I +\>K/?矟oc_ F#!DŽ=@8}3VXa*c6v|<묲*Gfkى'-R6plV;ɭ:+~u]7yu 7 meeɖ[nlvnYslvXn?z衕=EK,aowqǵifow(1 #½1P~XD'LUΘw=;gOVu* b(Đ$IrTΏRqB&[mU&DLq"y~W*fDbM7fE_,Ef,%Mq&S8sS;8GE>У[o㏎_y<0x,_W i[Θ8uWE Ajsn+¬xP+!Bs$:#f LALv׍+F Đ&& b1$Ic(NSH3@y"YqI& tFØ0͂(cNfãbI˛_W"|"1u*.tFn'ݗ4hڴiM :͎{Q/yPW,o3r 1P~X}1ئm}yQuyU)f142we b]7 /09±kiz1 c1$I肉uY'zEI?ek[8 qf)I,{򢬼]t@D!fA '1,USx;3v_SLɇn>lT=(T#&KyJhcfBN瘍q{y,1|xۺ` (iV uq<Pb&`OYbH$ǖmY^6~H<Щs[~! 1l2T1rz뭗r-m/*cxRrjhR7#ϧr,sDD [> ]MP~Kg>^0 c{z}:_8 MaR<7Y-VJÔ' ')^7Ѹq66}bALw' bH$'1@w( byߞzꩼ.6pWKi6Yo<NTtUE'_ZU K.Wcu-&ai4yae])N80c4mݞy$ǬǡױH'뽷yM>|8{\Hò&v1탘9k1 bH$dž܆_6X{|JK=H4 bbiF v~CO~ALхƜ#mQ,#Љ-qjB7ޘ]pqP-5׽뮻kz&Tyln^_Ǣh,Q]œ>튎n;ȇi>}0Xn ZALux1>G6Ayk1s b!!IAL6?A2i?5 bhyub(:o#-c]bb՘(c(4Xێ7u'l4C5("ՑbΘ0#u S4Rc|0M9 iĜ$ibAdzljp91$IENN?<̦9xUWA@1}߿XL,4Y FC$I1hqUN?ԝ4\qp,1A $I$UK+7o=IJO& bz6AI$I3jQ bfČ,]b>8H5B3T` sf{Oz$I$gQ7jhj 6jy~ b.1s bČt Xg|Ɓ[xpiӎ'I$IFm5zV_Q/ܨoZZ$G,hmZ_rȗ=I$IQGިm h~: a&t3{I@clYqxR=+$I$7jưϖ%}Q7ÒfČ|ybRc>97ZpoO$I5y5'5aI+0P !<1 S b'}nKz뭇z$I$9zF-5y6,H!HAadf'}~_zǎB I$IF x&oZRaI&Äu'_T슉qh=åtƐ$I$9*0K5jϖaҰ1,D=jI+fBW"giA ͓:蠍MK$IO5wcrjia,tTw~AL f$Ób\1iR9YlKx<#뭷yދ$I$Ɏ|>jꨭƎZQsC4$) S 3aI*<1'5i6WL˜4L)N3\ $I$IrSݼlܨkڟ/ GJ!̧K+%熩 鰤AHbm̺*F2XF'N8I$IT7QK|Qs abHR0S+fSZ6fjL&L fH$I~IFFͽhT!i\<vØfAp'mRRg… |OI:dR(:eR0C$I$gsΗE5"9a04wnL+𤪮bR' 14ҹb(:e I$I9xI/ '5j^^tL ۫'ՙ+x,Rh!!I$I]- =J 0( EjT I0Mfb(Ø4gL1YȤP)S fH$IKeB}PNLqNrnHn.14I1),TK'I$I,rNfH a 3^O3_ܥ9cix]…H$IVzz<9a`^Òz<RzBꔩD$IDN ^M[`0}b 'i M$Ipoe$LC +˜r ϥ@*!I$IK1Lf!niƔ9k2U I$I4 _l3!̄ bF3N .!I$IN!c: dSFHC$IaKΗ9a,iTu4 d>T٦c$I$I6^̇Z0`څ0Q c9I$Id~MF f$aL@N(a I$I//u^0.1ƴ d3$I$Njǭj:k0B c2`[ I$IvK}6!1d$I$Ira-ޫF ]ɐv̐$I$9CهYs _FbCvI$IvZ^3aLL$I$IfIFc1$I$Iv>H3˜2&%I$IF-><} chH$InF3`LB$I$ٿE3a@$I$aP#!I$Irl/BqfH$IE3 I$I \0<ڐ$I$+$I$)'*I$IdH$IF(C$I$/̐$I$)x`$I$I ^ !I$IR I$IzLdYHIENDB`nicotine-plus-3.3.4/data/screenshots/screenshot3.png000066400000000000000000002335411461625273200225510ustar00rootroot00000000000000PNG  IHDRb6%bKGD7IDATxU?{gvz̎ٻ{wޙ;o{xo4#ih +ƒ!$BŸ{NvT(3"TVV>TeFddd|?'GRJ)RjIDsE)RJ)Ҵ RJ)RJiЈƋRJ)RJ)1#/J)RJ)ƌh(RJ)RJSF4`RJ)RJ) |QJ)RJ)LRJ)RJ)5!#nx#*RJ)Rk04`DRJ)RJ)Z"20 RJ)RJ 4dF cċRJ)RJ)5|"fME0`~G)RJ)RjՐYD3fx0/U3*RJ)R#Pet”A0a5`2)RJ)RT2f5d&L;K&RJ)RJ)W虁\GF؄SdeWJ)RJ)T̙V vcdMf N/RJ)RJ cuÔ SӌSdCRJ)RJTլ!jtt)2a0eKTRJ)RJR͙L3L+ftSŀiMRJ)RJnȔET1d:5UI`T5`ʌ?nRI)RJ)j?jLc5cz܄&Rtg(RJ)RqSϔi%S3FL*0Xb3ҟ(RJ)RTeL#CjtL#_@#Lf |K6#}W)RJ)RS`4khtوYMSHRJ)RJ)JȔL=CU3fiń9L)RJ)jON|!S/B]3ƨ.0[DŽ&o3_FϕRJ)RJ)USϜ7jLF1*5fLFLٺ0L?`||f}TJ)RJ)TWǘg|̘v׋фi"wLGʚ0U ?EE.#RJ)RJ)JKE.bϚ4dR[0cP4L=Z4a#̗e5}k}?e 4ě)zubiqJRބnnQR' E;w4J)RJ)TD_ϐ_}}|t-fL+SFtTLU#Ѻ0ɚ0˘08qɓ'͡RJ)RJ {]ƌ^3OrfLb1ht&D|Δ&OPJ)RJ)^+1)Ji㴤ֆNh?Kп[o'Mt7RJ)RJ)=[7>|>*;m3"'3-j4Eä)Iޗ՗?E;)JeQ1NOjiIDM̙s_)-}[3fw}W)joGR]jDoo%ɔR1J)4b4bRܹs[.'lF̒}}wc==ub>̟yle%ZM)RJ#F#F)EjnY10b뫧IW1ubFS>L0aҴ$wio6FRJ)52ۇvkHNEGg'׉i'*fĭ҈iRov+èQ(FFL駟aV kя~>:=?<}oMVK;=k,xʚ117-i=1Jd`.{vPRJ#F#{„0Ym#Ό?8ٳg_<{\sZg>(?iΧyYF?4a4;=i>=шQJ 5#(~5u F|9o{^ GR11%J0Ǐ SJ+y7AYgz{o '3p衇g}J͍]?^2b"ըFh5bRو5bRJ#F#f:1c0+u1og}6,ae ~x8#±.䒞1br(:餓JA;fmgaZ{5` wfΜ6a_>g]_%lᥗ^/:n½M1Y#s1ߢ1J25g?FRJi,SN9%v}5b7b:?k`z,_1Z*`4#L5Xug30\ݳۗώ1UtﯻXo 0>˱;duFW4bшшQJitlުFw8p'?61eʔpWSO=5.f7q~ &:+\tEN;-.|GCѲ믿>;q<N]vY<~:],?|N<ĸ믿^ۿܔRj$FT1cZ1a4b+DMP0Ehɞ{zS'Gж:n9sԹ;c~ռ{&"W~_gYoxP#sޣ}Bgh67SsZzy҆׍%2&g{矏Z2c0UW `܆!CEW_ cƌ ^{m 7?KYɃg.ؠLRJԩIEfL&FL#&#U^{{bhԛ6d /;~"D*`Pc駟c=6z1bx󇁘;/~)n~>ma0~ B5bY3*ᩧxQbE#9#5b3b~G#F)5RFψavۭ6-i}:exGk ABC/9ys-!8馛GK2 C .tnJ)5׈!&Fo;s΍ |I o߆6/ مrbk0_|q|v2#;g1Lt(~S1bt'|+55 NHVT+jT0S8b-O(bD$$k`v,1R$!SemN1_13bC{¼P2cz5b4bRj`#U5bhU9&;4,F#,2#), FҔQҬvE8 nՈ);7Ll$pldžn>ֈjİ-*z1f IէQ'$ekV<5\A F 4Ui޼yt~'aQc8bn&q?OB? /g0uDr_>}||u1\/ .=Z#f׈QJ#&&Lط1Y$714ܘ“M}Ii䔵YҴ'4]uU1'Y# s M4ZTvn<~0G}"eO)S$ :ULODUѹe oW{G┏FL +G{jSXK1)N;B& a>q076Vʾ;h^/`+78v19#*1jF_و9(FFLT;zֈQ5{k)m6="'kf4#&Mt1= F̟W0bH#܈YD#F)[M0 þvVRJ#F#f`ł1)2L;BeC#92DhF<̀ƴ~"*h0bшiވpy|RJ)4b:/W5;el;U^pVΡE#O4bڟ҈QJ)걅{z5b4bR1J)4b4bR=j$FFRJi(҈шQjDʚ011J)RJ#F#F)1dj4s=u€шшQJkƌv*RJ Y#z\)5҈шQJ>NRJjPY+4b4b4bRF(҈1F)Rj(JF V'PJ)ԠLSҐQJ)F ӑR111J)RJ)FFFRJ)RJ)4b4b4bRJ)RJ)RJ)RJih(RJ)RJ#F#F#F)RJ)҈шшQJ)RJ)FFFRJ)RJ)RJ)RJ)RJ)RJihh(RJ)R111J)RJ)҈шшQJ)RJ)4b4b4bRJ)RJ)RJ)RJ)RJ)RJ#F#F#&N:蠰j%\2O>7ovaYgˀW^9r)a޼y^RJ)4b4b: ?>|oO<16k1ty-ttI^.O? ?OOG>:(e`Лu}#gizih 7#&0?…^xx׼N8M#F c: U+צKaVtM5cT[6vY&X&n]_$11Ĉa:R2ay智<53iJ>l}cGn [ouxᇻvS^nXbRKմ+mL`V:f;$ݷf<|g]-VG_|Hs[n /B~iΜ9qٳg{wމo:5izꩧ N4YfeðN;Ų}(\dǝOYq9Fv_>m5^{q^~pwt,.f%߆ }Gqo۳kVnލ2IY yiҡô{| P_?#1110Dw=J}ww}w [oճF]wpW_{=&%x*̍6(x1=jl +SO=U#@u}IckJ+ Aڌtb~IҡZ=&8~.pg~LxmSJdPM7gu]7_=|'w_GҽseBfN䥡^ח;ƕW^ r2Ӑ:ujSnA):it8܌($C=.Kc sogzoĬq38p^Rl:Pt>㞾&euFLsQDO E#&ǫJxG[>~W؉.);$,t>DA3H̚c=R4ReEK=b6PuP;6˄N'1é=F`z}ڗsFFFL^<,UKeO8s=бw}caM6;Ct !κiwUGqDܶ G}tlh>KX^#̈ZoALY{.y#шAi1cF,I#Ϙ1c%8pg>weI~Xc5駟C4ΧU= Ғ6z9-›DŸvҸ.Dq/r}0HGө3^+'Q NݧyQY.)*[OSyމ9㭤q_Volet $a`4*j~Ȗ yÅz%mijz+eItIו?_⾝6mZ{5-)RT)?(۩rѹ z[yøq*e۫恡pvڈި|x'J*iӆǹ<Ә6{11]271tjT4v/_*Ö́BA@㈛"}1W_޿NJʄBsM]v%V ҆n/2暧J:f|G:W$Ν[7iUeyH2eJ.(n/:Ϫ4?#ӧO\qSq>)S^ډ7*;KVV*xi\7K$ĝV86gEĔ1C5?˄zSR gntIua6|ٽZoJ/VjS NF7Oʌ:=:N1߳e˵^ۯ|(+˶s\-P,zrDQuͧ3k`tA~FMt]G\o4J3̎rsr֋t7XQf1EO!KM=oVC$n4~6()OCn̙ӎ}1LI#ei^Eyc?w&^e~O;SfNݏatr몫[v>mt͛%͖ep)i{wymwxiyw30B^d~aU);1br~hT&qSt^W"Ҁ2Tv;U"}X͔#CiT&n)O:l{6i#SK/t/UKNz=vZ@#F#%n9.37Ң.ꢠ~x\Y߹[SH+e,lktHv{QAs9i,4b^S 1ۋ4KzЈшi]./Fø1ҢnU _q SHF0 }#vY5kV|ZFQÙg(umXN1PiQB!:OfL+&LZ򻉺b^Z5NH3}vD**!-aV5biUEyrm86%̒m)=ZZg nBЈшi[,ۺKĊʙBR' /c1 }/ kҜk_t:ꨣb'kˈD7w(sDciJZp]R4ai5oTv6S'C<ϯP$Z>㭦q*ÿ.@v:aĤ鲩)WY; DU-?kQNQ_"C%Z9^/:a'DH&ìBiޢ:lZ S{x*k f~W> 7X.ތ|Ո4=VWja''52Djac@w.:LՙhВFFL"&[z SzfcI+b`#R#LЈ&FFFLe355ӈQGE}[XFRJ)5ۃ^:hhh(RJ)RJ#F#F#F)RJ)҈шшQJ)RJ)4b4b4bRJ)RJ)RJ)RJihh(RJ)RJ#F#F#F)RJ)҈шшQJ)_T]y(R111J)4bFRJ)4b4b4bRJ#Fi(RJ#F#fS)S(ai8FPJ)kČ#&Ƞ#"""""""111"""""""111"""""""#""""""#""""""#"""""""111"""""""111"""""""#""""""#""""""#"""""""111"""""""111uxxKaɗu'~rfV[-曖ܙO&OX+|>!nyXs5?O8peuw\`k'|'~|+UW]5z/]DDD4b4bFs鴻ªYWc޾G#xφ/?sq[ä+ן|SN9%vm]O뮻.̚5kD1淑i t{QG5uk6|=cp駇O?4am W^ye9EDD4b4b4bBHF&LR/F-⧞z*6ĉ{62!)F~|;C)2m1淑i t'彃 ?37{_[.Lc9"""梋. .h%FFL׍ 1LTdرa7;sOaV_}{̙3k_s5au J|뭷w%M6$nc1MX6h8믿m'"bԨQ1l}M77U%;Cݔ` aܹg}xZ959{;S&mBW\qEpvJI;.+'tRt;蠃yWۏQdT$ o,qd<}3<3z7cƌ~W^9?KFLQ~f[oϟ=PohTM*)C#mk~g|}W}8^8ӝH-/yxm~;MYӫ>:3†nꔇ~8ʎګ_dMQ(N>?{{呢5EDDzՌińшшN<ԈY}K-2L:5vXip}ݱA{2eJl;5q>b^opye믿7pCmN;n?!Y%{fmV;]w<C\\DD͘VM1?9Y|n0aBCMǘ0eȌ7Nj:E[n%.>G&[lQѬwhXF:8Z'*ِ6"8R8ѩI|8sJӍ/?8|GјcTzs=ɒc;}tmOg#r/k:(͊.7GqDn]}` 55ƴ(c7#tlYn5guVwW^y%z N \xG q1cFw(yzOO#zGvxf1~:T%=xYfRtoV^+5b߷vۅ5bK's~Q@Q^6UoU˒i3FLYx≡ tH&=I\R}1YqSf1FR#&Emi.""KfL&FFLG`!2#汏^iوybdžH  Q4%dIJe]H"i;L*fQ^~Nĝwt'駟8F퀅Z<ҎYSnLa\NHtzQ}lCv|QผS0kڹѦ/KELۯjb,aFLY&}0z4=yDuZ3bsf4z8-g90mlpNs#Ӕ:ahht QȄqm=-'#48Y8LK f0fd1Uvm:!!3T`F'o&3m:M/iƈ:e5BQNޫe ;LԱ0.W1bҍuJDHd^#Y#4k/uOMq鈳^ re[5:)k&Mq,JgLc2bY1_0a-_zꆏޖꜲ#(!'|!Z+_Eۇ{_Ft$֌ALGj&h P03$E$X񌘳Og4zҡstZ+v˔%>y IHQo2#Nm$Aόkx  묳NPdGyd5f:[L%hֈiӦv->5?O2bqSN3@l~ ֈiT\c䖕9U&M(yaY51,פ5ȃ#QӑX31Hzg1EiVy晸6>(."""11#̈5#\p< қ`0/j!l0ʴ y@w?^DDDD#F#F#f1&-fϞ6|syK/$Üd,2K. ӧO_|ExkOf`pG0yatGFm_6l/j>FFLCV^y7SO=U}q4m&J܌cƌ zjW\z뭺E8)~^{>w_8~;C=~ӟ뮻nT^p 7>;xs Ǐ/w}7vm/駟矏ۧMns mQ|<@O>A?0y;#f{i0r-1?kj7N]^N]vYWSi?XR^ö _[:F {:/x趮=э`mNF[ne~稣v@_N\ MOGJ& /PwɌiJos{VZi&u-W^yeOK/4F}VfL2ghhVjg; 9#FDNc=Ms=7;6xLhqD[o cΪm7n\<<8lx4Ɉ(#75:*XΙ߅'x!ug}.R|瞋 1=>`4qL4H  YfiĴh oU)K4bqK0NY~.cRSr.y6܍Nkֈ! kobT:uÈT@#L4 7_N&DSe뭷F)`?U>FFLa fЉ:mѭ{t*gL믿W_ߣ ȹ;v"P~_E"5aĔFs!1f~7L_3,\'ZoE-Yce'$)>뭷^Xz饣AU ~=ϗIiLa0:L4Ȓ@ ǻ;kaO2<0k0;;PFLor6"\~/㲍)ZE~\sM]#`BW6 yy{ڈH)|Mm;i,F\l!үCÜ$CU;aN/ T=WaF8 vmc퐑F:t87N~*pʂ:DAIfi9B9QqsSggdjeMu;X1zr!dFB6pÚ=&aR]vDqc3t}YhFywO[=ei?^1&'MiTTKe^QtMF 4-X_Fm$ΟHTQqP"۞"}vm<Q.EBpN\Ðb-1!<L<%6kXQ^s_Xe=*fH4a_6Mi#ň>P(ڏ5aNE#F#5bRAL]v8堃+hYgO>`Xa }HB.T<4yM /pj-*_RHu)S!E<~ߚ0iR (#ojtLJsB_;R fO2($%DLdH½D^{WcN,`JS}e1뮻 ~{LvUH!osڥCgcrg6$5sؗ04@&1$y9}xq Ҽ,1e׈Aw]+cg;M4i bD+kp믿~d-҉4#ϒ&d &suޔ*K`s18kdĴFEe[ѽTgn+-`O-ڨD})yMJ##&u|S>w^Bd'0f1?\W:t;)ׅE-w~LQEFLo.k92H -kæ0W^yet*^Y.KfO'{7ܲ1#ՄF`VabT?~ K/Td+FLQE#F#5bRxĉ5=3lňO#laDaLÉgV( M= ,5~vqhİ.F"9KiR3T #ojt4衒APoQd$%ϕ1G+ ǔ)DvLd>[Sڠemf@LQٍ҆-OՈ.KfO'5 emٔ,HIMֈIFV6J#ff *KR*NM"K=qqh ^Fg磦Eæ^&c*%\2ncd|S`& 12F )vD#0@1US9CHiv'~{sNeFLv_\NMMjvi CnvޣєgDdR,Y~zS}hHQAiCֈtA7`S)Sڠem,_L hA/ZJ#zeitҹ@z)+i6,kƌt&hvAVEi$9+ ԤSE;rjFLǍ/=8n7v҉O0 Wd?Dpe!ŕQ͌b$!EG0guB6U\#5biQfLv)"i _+ȶ'|6ҴY#sZf #@1D?1=c]z34;L*]v ip N(׀^\]lEFu›5bʎ704xBHJ?~YwM[5bbu' Ɉi5mE,VwNbLڰM}Em$HӄE;;iж0y#<M4: \-ks%#ɗM҆1'ڹE+Qtҹ@5(CpC`Oa\'LrM#&kd͘Z74Ozl} R\lFmxNrTϳ #4|(,OR3MBc).6yU(P6svisE6(-q)Sh/ >pTf PI3i$~cSڈ)M΁ʕeFl2aꪺACߝ1I:=λC;Q:uLڭW#ns#h4&#S2K 6z?Afbl AavfӍs|d#Rt\қN&3-r~+ŵ%?E[5bʎ70kjK<\38#v5bĤNhGqDߗ?&e>Ϣi-"&i`q JZ%N+ai .Y~D@JeLN1½Cވi5mE,VwN׬jL60Mc*?I#&MJFL`֠Fh1G$?= V ;%E ڠemf<.]Ǣsͷk2 8v>]W>.KfO'Y#iL+n*0;1D$L"-m SǺZI#eO%I{>FFLOM&FNv-:@ rJ͢}?5F 7lWPq84>#yhT(c i,Z'S9*^~3xҤII "D6b~Ss agOG% z bЀa~obx3Uaۉ "zeQ=TF)i$'\$Jg:E䃐Y 3b6 FLXpv4UX 2qk*C:eDNsѹ2ZŠwJDV/\!_P[5bʎ7װ,/!p bԻ?Ou)sRtzǤw hR$0UoczOMLt`9FWZ,uO'Xo+iTTβ<[ﺝy#{ҺQ) tڈ u!m; W:}<BiZpo.k9٨ֱ!SU+D {Du׭=3b LN?6B{Јᯝ6bBC\BÔF@Kԛp6cƴ4X2~m!>NGGшш F Mir """""2U(11a*3|""""""bo0(11#fӻru}_>FF̈d޼y1CXHhhx3jhˆ.Q4b4baj1NGhhpjH>Mi$1 󊈈HhhHs懒!3҃t_'(11믿es gf҈邸\o;ןt@Q4b4bDDDDDDDKhhĈFFFFFFhhhĈhhhĈhhhĈ }/hhhĈhĈhh Q#fĉ믿шшшh.p嗇;TDD݈y׽""hh o#f}Ռ\s{1DD#F1=4b4b4bZ3b4csuׅYfy!DD#F1=4b4b4bZ7b4cDDD#FDĎ111]4b:mƬK. lIXeU駟V[-;6law͞=;zaUW+7|S|sV nmoe]VxL"XFXc馛Zt5f[o|p.vVX!̝;DD4blXOGK>:(oyꪫmr-ԩS[4V0l^}ո& JbmYtE(:N;ns=W3LLV\q;mńj~ֈ0aBb-j{=8DD4blX3`1ɴH7.)_>⋵+Dd͚,{w7Xh/"&L3'  Q*=-\4UFgF+M?C½[}""16ZED,CMшшш5bF+[o}Ѱv;ĉk'p MMdzꩧo=&j嬳 }Y|q0_xRht駟nFC#F#F#fx?5 C'f4y,udnָJeF  -Hi8sW= /#|Ə;ODD#F+kacEShVt|Λ7>;S/=f̘opwzO>W7יv[Fi9nF@=- #Es)?㸸.a#ӄ)GD” :,׶̙g QdP`=:~i]Ή(`[Z]v٥f8}F1<@l%Q>wQkĠz>fF4ɓľ1ڌ,@e y8FC}F楗^ׂRߧG_#F#|d516`O@ʛ0}^{ŧ"abgaMe}b33gΌk0}h6Oe7;Є:Xo~$̠5ODD#f`gy& Ԥt;3҈4cZ5a4b~ Zb#ӈOGaO+=; O<5ˆɛ"'qȎat-i5{қo9w}a Ϩ!ۄS35by}TZZaizj>}q;#t fIDӎ \O]Xꄐ3))ia'`Ą> f͚oj^ɒՂSTswJu&RL311CֈhˆywkiuM-""17xcx4Sgcc(1 M"t}i?i׿$"Cjtڄш1f76 @g֌p{*cUĵ);v8c`5n}'k+FFFL&dꫯN4 -"Ԥh:R=#RQ8F5bShM#z4@LHFm.udjtV='~fL'L|kx|v]։l.F Q(b`„PgjRg@KQ0tb^FFFL14Sv'#F]wU[3cXMC-`gT=#?з.ZjV=' jRLPNuE\&=NC4:.1gdM:01?xݺ]ˇ5X04b4b4bDDD#f1<Ŏ!kvN(5;Nhzw捘jIN#LM"b$"S e+fz"0(k)[yb 3{i*{ՈቴD)ԏF`SgA:aZu'uq~j]8LшF 05ŐY 1bsU2bBb5b48iHbT='bͬM:gReTvoyꪫ)SD#wމ6۬v+xQD ߱[SsFS{c=?FΩ,X^}h}'A_|E4_MiM79hĈhhhDDL6rƍ~?&+&LG^uUct p5cˇ_|9p|m9眚DtNO$M-¨шшшш5b+[oo=F]rYg>,1ciI ɨg#w {g4uFqd5-BBW\_a뭷wyg8Cbyc^lA'x"G#faVZ("_;(шg׹e Ӓh`31ۆ;#n52ot ]vYC $0e8744VzÚ4,;T6b8D0]R5z)B->l-2FDDDD#F#f1jLc9&F`p\y55b0I0MA1r3Ͳ:xB4 O="(=7pCKcyZ` uO=~NցN7@*?ObW7i=~ϼyiYfɋ>]vc >NC<7yBinv>ޫZC>yYr]v ? Tf҈yw~VBoшш6FĉfX#&4~Xh4eN0<0逶r.?pm,϶bйa/13m4kLjᘬqGCoܹ0FƺFW\1NIi42ʹ0ʷ*kt(FY;?vX| L f"rEFLFudm~01iom`M7DV> lB׺eӬ}OE㻋(;^Q4sEB=3|VEc2Ղ(lyK.Oe/rnk?0C>|ך YT-ae_L~ilaf13zF Oez+FFFh4t~7|!l{;Fn)yvih $u.X"q=F9ɳ`FFB5ij(F{Ml$&6mZwׇ=k~c>hi;#f֒k4S }W_}u{cZ]lqU.;^Q4sEɟfJFEZ``psmtGܟW]uUcb-ba%X)"|,~{gƌ<}'a855i5dZؤI .šo111""Qo*5b=裏F! s:D$Eٓɑog#ς)0znzFLL=iv~c;1?~GiF Y~c#|/NOL)LDLQˈdvFjLoogX~J8y܉)}E׺e?[4{G\0U#,V=cp|￿ӉYufVO!b+U( UӨgHd?FFFhĄ1dkxW)#0rF>weء5G#5aYXДN1=P` 6H28O"JXzG72b~'[F%Ym/녰xk"&sNKF Ӑu≆bWtYU~O3ioo1c0C8&S&WwY@pNeU#IFeZL4|NUŧ9Ѕ0;tɣ~x\|l͖q:%iu$>Q˪z111""S MX3 Sgvwʈ }mֵ\ic0$쓕X46'X/O q)*d`4`뮻?k3<3lFaW 'tRFu]z0|KcĠdK/>h|a7W]uU%#mzjX`AxWꫯ뮅_Ç~h)#"#"""3r#bӇƍ~JFL|8snoa #"#"""3׈ɛ)JXoZ2b?8U){v!l,H1_|E8묳iNk vшшIO>Y{ɲ׌_e#_ mY\{FDDzψ92`:s"""3zZ 78̘1#|am wqGm;kƜq>Ӌؿ#9,;vXK3bzl"cDDDD4b4bF3,9c!tWo}ҤI1eW{wy睛6b-\1bRK۫c{oG}n}}/'\woA'Oܱ:Pp .k͋Q[neXfe:NQ]+g05kV̳3.lb-„ ,e k`*FO?4wy i)58†nD7/|e]?oUj; OQep:gΜpQGE8[d LB]SVѠ#m&W#F#fX1#!""ψ|c=vЮ馛Qܼ1At( F̑G.Ž!Qdm0=XJ7,PeI[n%!Y#&1}N^|Y@ MFST`d{ƙ1111""1=dČ7..> M!8jԨ 4z콇Uź{#&l8dEPWA6wD2Hp p'( N3M{ƘZ5\欮e9s}S^=sΝaۦMk&{MԤרQ'GG43(ŀ7nd YI$x;"NL*'ܼyӊx mȐ!v՗GʚĉI3bѢE{U_q+ڕXuOg[~pWҩ v|g*n~p&ՉO1C=]Ns9u7TV;qB R>q /ro,\TQ'K|b$!Z턉`5l@В^ӷo_;DL ҫW/zjNltǖ-[2mPNy b"x 1*/LYC@0}5kf'nrV|vb|K%D"fr~ҥD!&@ 0 LU={f(3ө07ENT} 1A¹M!!T `p[  &{K,YoxLø: ʻJ*jժ[ } }Ν;mHDCTb.\h^P|FyFIKqB 6hwiZ%HB!*:j4 1o߾4 }_#:`&FLԣ,/s̉3@pi?ABrsVpVxÄrcLZ?~ܶEqU ƈ#250߉:+,pB#8Bظw^{oTbB[&X!@scP}B(,]\˗Mn0q/l7Xpy 1b$!@2AVٕZҋ%` a X>|ئ3 d>N 6wҥK)s6lX/2߿?6dWNza5PXzT-'weBv /W\lvE\`iG'qM3++Iu'0ʑ+0:`5/Jb|5Oǹ&=F#MD;8{%XI#!F!V,`}cq(I7Z2o߶7緙 'O+0٥ly(E:عXĕٳvUҏ n:knZh ˎ"]rb꫘B sС{D71㷉OqB\5 ʤ:)D{(babmپ؏Y$pbZa̧1rүt휦}ݻw>T~<b$HB!!d[¤ݻwO^,!<+}I2e]q j1p V?M`H#P!fN!Ļ!F \<(!&L`X4ڗEt5P&݀!.u\ǒ)W_}՚5.qUl!#1t+EH<|Ikk&,nR$:lXh޹WZe۝IC!/Dƽu " ;0!cǎl5M$ܺu ˖-S&>~;X^"Jt,cxAB! 1~Ὓ쇥sbnKDk׮EDg%L+bz`.]uqIX^`\ʉnPF}CbwO@#İIfĈٳggGzqbTo(.QUl$~R@I9Cbh 1~y@ry ) \̼:uNӦM;f&~D-%1O?pz!#B!!FBbuٷoѣG94:uo-hճgOφ 5B!ʟuYOds̱!BH]JA9{x-ɱn:3tP2 4CfƌQ1bfϞ]B sU !BB%ĔnIA!VGYe߮];gVN KO?Yw%ZW\1ϊ+#| 1X =zDڑ#G21B!b$T!4r!eݔ֮]~iĮJ͚5 5/0kΊ?# 1%˼uue]jU^_l0y䓗^{-4'*ki/$ժUԩc]?2q/.6x\agVZ5|ǎD/>q;„z5k>OO>}cǎSp]ooi7<8L{lYyJS >!HB?l߳_!?PNj*+#G,8o ׼%巬zYr >Ae7oډ:H>q.}" }aÆ 5oJMŋm]fܸq1@۰aiӦ]>RT#!bB$0H6l4i#;Ҿ}{3o<F 1&CL_GX>65oI5B,'!XǏO}+b6oޜe}o_ AT&gK<߻w/e|KsΙ5kZMB 1B!$Ĕ!f֭ffРA%̗f r^zΝ;Y.[vu8eӦM\%/x?r33fQI͍7VD>N*y /B<6͐!ConlY-ɓ͛oi돶/پ}{lY-Zo\si|XB 1B!$ڵNkԨa:vXBhIJ/d߷o_;GL ҫW/zjxNla-[d<"I"H\YXĤm<|7Vpu_y ,A1;̄zDf„ 9sdɒk"1ɩZjbD"p`Iݻw񾢄4qھ :\rg…fm܂K؉'bCT {FB 1B!*s-Ӥ*`z~߾}Yi |_#:`DQFeăܷ` 9gΜ؁?b.3>BTn nؠ?J+ˋ=&.?tX11ĉ qeEIj< V1]sZ!&&f#Fd&au>b~Qq޽ he &Xφٳguߥ188"A6]|f 2\c MZ#!FBBJ) "0ejm2&n=,P-YR[ :lrV|_ <_.0&Ul] Mi!b%p]gD}oBv[sr 1˖-SC&@[; ,do$~K/WB 1B!*; /wt^,!< صkL[&30`gDP\%1  .R]t1K b %] @;pJ*'VA1!k׮V*bVRXI5'I޽{gQ*\ =o+!Wfq+-쳨k kIYMu);M6mX+0e/{;$yh!qBL.q.}APad \*E<vs]~;ǝ ~?7#!F!л&1f t!DaDm- 1bB -!$! 1bB 1BHB 1b$!bB!$H4BtJ!!BH#!,`[LwB!$!BB 1$ <Řb/\ΝVC l+)BBB! 1V)k1XBLg}f~g3h [!bB!$H)BLY1b~7Oڿ0c 盛B 1B!b$<BLŘ?дh4jt\xb ӵkWs}s]3fOڵk7nD^iӦ[=\~i۶ݻ7C5M45_|EnOݻwO~rB5!BH#!Q 1۷o/|_o{: 1NV?`?g͛7[ڵkV4iRo<f޼y=)zƓ9sW^fѣGMz2i=VA@w/G\zR9~W!Zq!BH#!19s挵ٱc_M:O>#.\Œ&e˖YKuf$!lܾ}w{gy&N:Y򄵊ԩS3/Iq]!#B!!FBb͆  fX 55j=wYIäkL2.0رy뭷l.Iq]!hB V/9rH2F!BBJ#Ĕ% 1b $8Fa~QBbk.]^_e IϷA|fl"ѣGgҥKo߾aÆ/qrĥ'#w" 1% pgnݲVzX\GqekW_E6|VVgZfP3"WV-XqBd^|EO0vGPg7ް;wq{g8;JI.mW` ǚ5ku$H0B#oxͰa̧~wBH)!OaŊvRO^(ЇU!̷sUrJg&#nvBDC F'qlڴ,^>cXS2k W͛ґX-x:5b$T!Fܠ믿It!SB 8I&=:%/۷+|&`)$_B Z49Z޽{E돃c|gu0Eik ]QB+b6o, 1b* ۷oU'N.bVٺu>}4hP wOCh;#GfYܿwΝ;b;qڴiccM6-reʇ?d(VqeĘ1cUDj IGT9UEVqfA^v~ue՗4E8wޱv 4h`w.>w̙i_6سg_Q,X`ڵkgۙц שSBóŦh[K8G/EbVƍ&߿ߌ?#!FBB 1ڵN^kԨaB&bW^f5Bbx8lْlrî}@c;*/ 'NHЬY3;p!\v %"XM$pDD ʀ .JL,B$끕Mi?>ǰς<&guSpkm+" u߿k!}„ ^C^^dI5ĪTbVф "\rlذ!;hdB`7rMCE0!ob$HB!!&;wFnQ&P!sJc` = N 9r rΜ9,S\|g}CVpVxÄrC@p SҴ҄@IpBNy3I (OXc{z&0"Mqy|t ۨ#8"K˗/W#ܭa(Jawu׈b$HB!!&& b)|В^1L `u?>lQsVh]}℘~ۺ* tRk\[?`qː f9v\0#;k1XPO+_פ0Yeou1p{Nݻw[ J'OR_n(# nY$i/1PH٭2NKyb#XWHCW^.M 1#~]IUV|LSԥ;!vL1CFdY^;Oْ?NbSغl25T (5#!F!xp!8nҋ%ĘAv qW& K eW$.Hu. wMbUתr^rź0!lC3TQ V  a ># lQ.Xq>ID @u)[M6g)SK|+"yhAYagm- 15kִƳN8qm%H#BBL&1h: "KR@ܕO?7I!DBB!B 1B&W^͸h}7$ 1B!$HB!$Qd =q#ɇ!#!FBB!!F!BB!BBB! 1bB 1B!#!FB(.-(|ƅBBB!$HSV>|,Z(_V(!_7|!#B 1b$Ĕ>nx|PBѣ͊+$!!BH#!1a>CӢE ӨQ#ӭ[7sE͛7 Ҹqcx$=ݻ vJxg[oeڴicׯoMf~2diذMsB >\Mx~zӶm[ӻwocƌc֮] 8ܸq#?7n^֭3ŽM>ڵ~l]!!B 1b*Aċ%K7Xoٷo_+o̙3V\AI#Đ6}t]ĒM6eٳgڈ{8ztٜ?ܹsaV|vb&M9РAw5ͥKڪU+?$օBHB!#! c厄H5Ɏ;`@iҤI bG!&3uT3gσ&=5nݺɓe X87Dġ .$օBHB!#!1Ŏ akiR^=3k,?}=zdwAөS~ۺ*AصĈ B `o](߿?:L"g-!ԄՅBTt!>ڹ!]B!$HtW#`fQ -gϞ%9֭[g˓O>i\I1Ǐb۷I|WA1Xt̘1#. 1g.!s!B!!FBLbJDӧO"J] ,CX!sڵ3{|cǎf̙ji{wB̫j^~IGwV0|X8!t3\㧟~~qAD"&{UBQх^?=Z"ȑ#!B 1b$Ęc ` hp1ŠP%Tvڬ8q *|Dv2J#s w;~,ܠ7onvzMvE" kftIGTqek֬YI_|>2qu!YqV/3}Y[eU/bӗoqekueZZ-Jgjl@|w?-anI[V-ӽ{wk((sqB&Np;v_ @?woM;폃}>s}$c;,(ٯI#BH)e!kJ޳]! 3'/Cy*SH> b2Zt]a'Ċ*\zլ\ޯ[f-0ˎ&$d6m-?S,g1"+V.?`?s"oiqHŵu15 1bB 1(0H6l4i#SҾ}{3o<\%ʒCBL1VT? +Ą/}"D> 2 BΝ35kִq8/:…/fGU,ڋŵu15 1bB 1$lݺL> 4 3rg~>r,˙[s;wdM1Y ;V_M2J^X#x{2mv5?1cX޷`,hݺu 6N*'ܼyEy6)$'N.vj+R/2wvnLrCE<<ږkxy|W\U|`kϽ}F:uF.a.E<{UTV(>>g磏>\!q #%hB!6nܘ$HB!*k.;Q -IL d5lrޫW/zjNla%sǖ-[2mPNyGiѢ=$!$!BH#!摈10Nغu>}4hP! :4iĊ$hȑY373w7z˴iԯ_L6͖-*/k֬152|>k,xbӶm[+ܽ{׌3<ӦvfƍG3n8֭[[ $!&pM3zhӸqc+buu3dӰaCӭ[7[V 1B 1B!#!FBc(,YD'N )AzeV^m_=z4#رt)sޖ-[E B D<<0gΜɦM"2qDr.͚5Œb͛7[ڵkV-y~W+\t)Q*'P?+-3ٳg&ŋzf!$HB! 1b*S,ƉթS۷/+ 1 'r5*#rB<2gΜX!1"p8W%'A[kQfu%ĕſ6?t(!!BH#!1a|q$@Ο?ICsYp!/BIo[W8! ;K.5͛7 6[!ϼN+ĕ=zd5PXb!BM, ћsB!$HGT|b?iժ}}9%Ǐo۶L<9y1ӧO 1.[l|8p 7h 'r={Z`Xn'*%!B={v &x̝;W !B 1b$Ĕ'|q(}I2e]U=:>CU~w%ݻw[+K'ĐOO])N+'1:]vfϞ=:2Nȋ!Di 1X*ȑ#G21B!b$H)B `ҵkL["zAkAq(bz +D\t9k&=䓦jժתr^rźAaiC֮]/З9?~!D 1%|OܺuZ%Z*J_>?˗/>>,Xe-- ,|GjSO=ejժewnTU{>h0ĝA3?9rd|wɚ*+7ӦMXV~޽Թ23fQ'tJ?.䃕B߅5j UNpőI\b|ݯ_n bW} (ki 1IyIobK#%p/21/Imk1¬^TW2Gm1+a3 h̙$3f̰ \9 lp#TթSNEłCq㹋tsOWR%өW~+*UA14gAX+@_Abٍ7tO/H#BTh!f׮]v"VF ӱcBKRz!~_18GL ҫW/;8W[l A9yDy݉I/¸Xb'N4-L,D0cȤڵkv[ (!dI8r/e`"~w[Yɤ/ !&)/I͵裏MKRRgL@dֲe˲̵ն#|pW3&a#i)r?S6Dg*4a[>4%Kd] 8(*+t3F ½ 2)z}o?2 1%ĉb b$!Vٹsgi b0=gPo߾4L}_39RDw $̙;gҋ/LsWܰAWNz h)ciX$%/\S^C/"0M^(:CApHi׶cpʓ'O]|yhk7D$u>l~l޽ **g6֭좄6y B\'N s_c=ϵ}qELҳ 1 b$!R 1V F -Iň3i VMÙsVh;sb쮇CpXL?g&踦/T۽N+pĕ4[YGځzr]3./IK^ؾ}g!M^(|`E^ܽP2cXq!I ^gRىRczEL\9ba`o&^ZzTaE\ ŭ'%r3}}0o>qm[2Iejb"}K*s @C8$rTNiڴbg'1 +|γDiSwaBLԳ 5)QD1 1bB +ĘtqPdIJ"駟"1AF! 1bB -Q\z5_[+r!#!F!#D!+n[&ĉ 1B!!FBB!!F!BB 1B!!BH#!F!#B!!FB Bp [nأ%ŋ [LqeNe--U iŋMp+ZSbB!!FBQB?l߿]sŊ+/ AH,B BJ ̀|6}to?ӞWvBHB! 1bD) 16l4i#Kͼy>GLhѢ=*C>zٴi֭[VڿۿuBBB! 1bG!f֭bРA/! :4iĊ$eȑY373wڎz˴iԯ_L6͊>QyYfiԨw^YfŋmZ!ݻf̘1vڵk[ƍG3n8֭[[ː$!&pM3zhӸqc+Qׯ_7C 1 6 e-T1bYzz\z~Aom~z[G{.-fX$c.m'!B 1b$ĈBL߾}W^VGfĖ;vN:e۲e <<0gΜ~<2qDh"bAfͬ Dk׮YAPB$_rҥD!&@ o ={f҉B{シ䧟~۷{ʷl2gXӹsgsLvz̥턐#B!!FBRN:f߾}YiL|_Kq"ǨQ2"/X/s̉b3L! sUrBLD!Z0ˍ(!&./&Ap SB,byyO>V[9ydg$sm;!$!BH#!F7$@p `>|87t 1ouwbtRӼyL^_ٰa d`g^bIZ=?x`(,=*F (ԓ;p $U sE*J ֳY\Dcm'`%Vfv.'!BH#!4|ӪUK̹smf&O:W9} j8Ŷ@: bWγgZk, ē\vL&w&W!&NQB'̞=<Ν B! 1b*CZ,Qcޓ>e:{\u|*J1w-N@ Xoל8!&XzMvڙ={d;t`D:y"/ 1!%>'fjb$%QzB V/ZjVZ{*Q7烋=aceC7gⳉ o<#L7%ƌ32i,1>$->>؄,;vL6y76mLmi΋$H#BBL9byx^L& er1|NGdl Y(:Y`bTh!իfʕb…/,wE8L Ee3}/NImbc! !6:J{PX1鼤@B 1B!$Ĕ!Aaògv3yb5,`矗yv"dWaQ h }I <ޅ 2L8q@(zA@?޽K$H#BBL9bAeljGàܭo9s}ޝ;w&ƬئMk"=mڴȕQ?'XsX 3(Ă oV۾id6'3 /r[ݐ!C/"e--!&)/IktKp5"Qy /Fو#ի}V#~V樶-f3g<`u@8{&Ĭb"ۼy4_vN}K%D"3 'FWUN~3Q LFbktPfi !m6ʥΘ ֲe˲̵ն#i)q_DgȤi„ 6ψcwCkR,\ ><ӧvĉb$HB!!0`ڢ:MzB g 08gr9d&qHΙ3'v@_D! +a(#./3iw SҰIKR}㒐K^C/"ۥ0M^(:CA0΁?|2ǵm1#!FBB 11]&nZҋ nP@`?>lavmg ]]v)sp rFLf:kX"XFPO+|%sk0۷ol29ŢG9yh½Պ,3a]r85 .nP"E@B 1B!$Ę MrիǦP̀7ZʸFh |6WabJɆudKe'J}.1q$.~uY&^ZzTaO+V(n5<)/qmK}su׶c>B sС{*Bi0H%#Z m36X޽&`iýȄ>8U;6dhGbSayI 1bBH11y#0=TӤKag>}O2Ů3up_|RY !\a? H#)nM> ܶQG\9tXq$i/+buS&Ħ4$7'IڼA|5kf$FnHaa>qm[HI'(pD4UBϲ ɳDM&)yyT;6G 12Ods/1FH އϰBXDE$-wO?UE1AF!#b$!Z,Tݹj}J!!F!$HB!$Qd n=q*EBBH#BHB!#!FBL9 %bB!$HSM|B 1B!b$H)%!f&uݎnժUy]= -^\^b2˗/,vz(ki2|eZLݺuvǎ+ZNUf/pB/!B 1b$Ĕ!_w}kX|y'0?CSڴ"ĸ|"lp ƺRIB믿n>TcGo޼~A/!B 1b$Ĕ+!47f?l03iҤGVVҾ}{3o޼ϙԷhMqb@?)FmŔiܸg$!B 1b$T(!b [ӧA."СCM&MH\NFe95Dz̝;w&[M6֍eڴie͚5QF޽{g͚e/^lڶmkw1c-:k׮mhnܸ%\7uQ!N*'ܼyӊ A?̤_~ 2Zt͖B H )ׯѻww}g ݻۼ'O6ڵ+&-GQMX=RGf%zBBB! 1bDؾ}{ф}ډs-իYz}Dۉ-;v0:uʜe˖XO#G)g\~xO}amE ndK.nT~^)Hw!$!BH#!汴N:f߾}YiL 09ĉFL}Q hUA9s 1X(U 1ADoZԄYD 1qtyHLŲɓ6˗/܍6Ib挈 5vج j%NIHw!$!BH#!汎{V XY8fpc}pA~ a~ۺ 1N҂ .x/lذ 0ߺ/ؿuZ!&#|b8k1XPO+m>_|1RpOR#Ġj|$ջVnX $9G!BB 1|פVZ۷oΝV-a?~~۶m6H;_!vRpB U@:Qr+ٳg @ux2L0z~% 1a}TBL\;%#ޅxٳg`ܹsUB!#!FḄbJC sO>v{ҧLbWgyˈp9СCEb 1w-nO>wC_v])N@+'V^D {ɤwtD^)ܺuZ,[,Q!?;vOR_ Vk|$ջ ς psȑeB! 1bSZ"Lؤ]fhqW%IoR,!&]bAtEK.aҏ@_$Zj*W\5Xڐkf89%fǏ_SfM*nBXp=WqBLX~.\ZA;w-$SR>]UqV/"ҟZ*~JO> ˗/۾9,X!A1,UfӿK6WiG!mVV˽YV-bBTX4$"B΢7"P3f)=8=sJBƗǎSlYlySXf,=#!FB .FnV~*BJ, 8b~"ĸ|b)@;lbGmVV\zլ\摝ݤY Q~G`06n pR_`MJϷ?rjyJ:ئMH>󑂘͛%{FB 1B&q."HJ*%ڈ Ҋuƍ3iKO] 1b$!B̮]F6vPhIJ/dO(&a/z2WŠU-[2mPNy_dI5˘-n>!*CCD>#vb&=8,cp?&%L .K!nan񔾵{6 1bBHQ[TI/T}e1f 'r܉qDΙ3'vτ_D!D*'.6b_}7N ! -mˠk;6X„GG8|**{si#FL6:K-?݁w^ BBq)DD'BrB(,]\˗`#8L={Ynq 1bBH& b .xВ^1LzbI@7LA;{b$HB!!&G<1Pr իǦ;$ fUVƙIn1y uB p軮?Ո2lgEL\9ba*a$^`:*{!xn Bŝ);2~,}!*!}oHcoF_~j@"́'`X#Rp3~7$HM9zs?֡C:ۣ U&XB qV>1FX=SL+w]:'b7޽ZjFVX@>wCK}(QG\9bi/qN:҉@H'O䥴' 1+L\=`ӝ.69K+?&.(%תUlpMBY] >s}~\4.9鏓<T-[Lʕ+% K/E>#!F:tHicM9\z0_׮]3Z ڊ8+ _vwV"(npW,!&8 :]pҥ]Z,6תr^rź갚Lԇ89Y f 1Xz f[er}=D`PVS:uʶIӦM%62 1gωs[R$ 1l#gyyKE@ږ5%HC:t 8K,Hs$($ 0X!ģAB:tСB 1BH#b$HѡC:$!!F!$HC:tHB!#!FB:t#B!!FB:tСCBB! 1bEn3?޿4Ycj{}2hB6;gQ|HZZ_GL6^k3-;Q)SaS3pT߭^dϙRiҮϪKdz,{R]!!F!b$HȄ}g~mnAל6woiOiA6nnFLi=kۅrѶĈ)nZEib i# 1:$!BH#!b]o0:Q6fY%: ٣216c-fڼe枓CBB! 1b*-hyt98S kLj7kke?03ye^:}fͰqoM5Ukk}{LZ k|fMgZ[!x~HT=Yt|Yw{mXW ֋Aިv b%윸98b"JxӸy;3(BٳK0cܹ% !BB 1]!)(m:]ޓ?;ܕ[T![]*!ļ6kAڎM3ӨAB~|}ӺMʉ-;agش͇.i3L)[_y)D1kv~m_:.&#'ZB՗;;s8!&-ѓO3x2:t<*!ĖGH;rH2F!BB 1\ʂe\0V"JÄgY;+sk?nG7D\i)+-(C_g o1q{d[#We89%f_rABi蟂EAcx)+003^n/Y6[ܼU_H6Υ~vMJj`qo =:^MOs=g>[ng}֬Z*/g1_|E^yyB._l|IW_7'N:uݻg__Zݻgf̘a:wlj֬i7onMs/)&߸kժe:udvء(WL8ty/?>|4h`Ο?y͛7M֭ɓV4ٶmӿD 䕾aÆ@ossѶ=\o#!F:tSB aÆI&='yi߾] -ZGEb6mdz^B+ʞ$!/="D|'^H|7o\"ffZ Mk׮9/o#!F:tSJB֭[͠A^b=tPA[=9rdMz̝;w&ݬֽ[M67"yaQFEQ/6m۶Vƌcwb1p@kIǍg0IBLT92+X0 /g&fȐ!vշ[n 1.A\' k׮GLz\{ĕ_egDFAq0!ܾ}{% 1#;sLۮ[Ş={l˅O{-XkWo. "`ΝӬO[jWؿ?~|!gZjo ig9_GooetƍYm%ڷIC:tTh!&5j0;v,!$"NXիYz}M`7sǖ-[2mPNy|xbON \ZBL."8)&,mMl, wggɒ%YDRZjF< L1bvi *K%CT!xEU-Q'd#kb;zƚLH>$gD6|}ntKN?3ȥ>j͔5R \5| f]M?ʎ^P l~ljի"Hdk1݆A"Fitv_Ef?YµJĘbʪpoUWrFG]􇜮俲+_Wuɐt_5IJwUq1(7Y}%CN,f%nK{E([O:F͓˸ϧJsi~ЏpQf CKCj;Ḑ~jIT?#i '29bGW \ZWmR;EEECY ~6?q"Fϗg^?1aNq2+騫Į~@Ԉݔl̓"&1WVeyY5G%裏LA bN]DljA bG\@ b1@ b1W"` b1DLYt.X *@ b191ndL7o޴53AYe.]4ϟ&uXE𒛙p=3uTӮ];{ 'Lg.D "ډ|x葽={^sҥڵkB ƍg^kܸTٳghܟ}YVE SYɓ'իWD "ɇqrBuh `F]ncU_ZjefΜYJL4j bn~ZĐ!CD b1DLd͔͛)SL߾}K$HMz$qG[ 9SzusΝI0ӦM3͛775j԰kŠ/+V0k׶GsӧO7-2-Z"ݻfСTR\z{۷͈#l?5k扅(6Nq +(ԩcesʕ+_~VZcǎv!,1 e̘1e˖IUc_fݻ7K,c\ʼYp:R߷sґ)]JUϫVݻ6A b^hضm[DLϞ=X2%HndM۶mmڴf7K<|;vn7l QFY)6 4bƉ 7 Kfߟ#$IT\\l˹sbEL8Gbɓ'v ]z -=jePzYkl^+Wl˜:u['NXrE{:,#F%HIHIh~{eDD/"Aļ61: TjU{6m%HHH:(I{/bGhTeƌ"F2C2B!1A$]6ʶHu&b= `ƘiF̡CZ7T9|pHHh$LѤ{ 8eBHs D/"AļV5bty`,+{CߺuWl㞩 w/bĶ}ck֬VFL8?n3lXj'cJ<}m|2~$Q\K"&jmA b^( *@L=zXj;v=J*߿?"Fp˗K;wL 0j;z77^M05N ep({Cmڈ>պ֭[1]}R_1OT$c$?:$rBî&L0Æ K(FZ@ b1FK$ СW`UEW%gtFA(6+BU"#R۷7*jHTbE/t*n:&6ʴQV\/QA_ב#Gf-$2$bo,?0'"FY|~>2 3@"27o6SL1}5O>-%Aoիg%;r4hР̙ի;wu3guLiڴiyFxOX_VXaj׮m8On-ZdZhaEݻwСCMaaRӧz۷o#F~4kQ"&lƍV\ԩS ^+WL~LZLǎX31:ڥ#Xcq} "@Ԯ]xUfzɤ>}Ǧe˖v='Ok͚5vͻw<8y} D "*bzi7Ò)Auf/_n?x𠷙ݾ}i۶M6ٌ)v{m%y>|h;f76l6F@hޠA+fPظq݈_tn<Jڄ[pܹX6NXH$%wtkQ"yܹѣG#Oq,#&jz)d$W^6Qre{˗M6m'|r|9uCܚc\[5'"1D QUݻw'IhGEDhe8ɡ '9")2cƌH#!mQ%'bH )3C\xf`$˺ 1Qt}D{n]c4#СCv-S*1Qs2':4aﯬ+מJes9y+K6z/!Im6~D "^1(+BeB(‘(KBx83k,{d&J8xb{ w/b֮]k(CnKٳ>U5Nu9EEE^6P1< R_.\fq}Jeރ"&n/FW g5{2xϟo%i!D "/U̙c4ibnݺeo2Æ ƭu&"FBƒ':u2֭˸Qk&bF讀7D "^(#,WUQ%gtCZeR3Pr%bHt1mԵqW_UtE+zUq1!Qrʄ~NϪf92+#$$bol?kSܼK(~ر#v29w"51c"W01RH^}G, b1@eL:@ bGTsFG1D "A bA b1D b1D "@ b1D b1D "D "@ b1D "D "yK.f˖-7oMe˖ez?67{ͨ/&MJvySPP`9ǛyeJ*ʕ+UΝ;%KgϞ0|Su5gΜ1D "1=gϞk.]\v-TP\~T۸ql"b\?߿oV˖-͠A^L> D "ʋe[ 0=\ҪU+3s̄%u5jdu1I*U={|"1D "17o6SL1}5O>-߿W|#Gg}իW߾}ی1Yf6C'NĄSܸq 2ԩSJ^+WL~LZLǎXs-bĘ1c|;91'C={6vj➣5OjǦq3^k͚5ݻwOk\@ b1P&"gϞvc.[nfzem۶6md3jY :"Cs1ްaCh_I5jYpO  kqFAtݬ3y$A/..sŊq ͏ʓ'O$wtkИΝs#!79?qℕ3/^ɷ9(uJel1|8q bA@Ո$e 73*r䀊j y5k=6%bYxiذWֿ_vݻի=~ Pqߧ*8Ʃ6]OQQ =F>4O.ŠFMr6T\:N[\t&cMa D "Is1M41nݲuCڨ'СC[n f8SsQp Wvܷo}P{͚5ʈm2V5GLII=zuYq5t\-6񢸵.uYy {:@"21*@ Xm;cmWաl=~91Ba/_\jsN)6|UYW?U7D5Z_]C 1Q(P2GԦ.%k.uvLjWԗ\e} ,E?n%8$O\Z:ōM߫z$k^TS&l D "Tet+3:J#ᠫb\ _VWQ6:"վ}{q kC&+zUqpͺP$~Xב#Gf-bTtV۞q'jQs 77ZZ:=74Æ _7nl~󟛸[:.D b1D "D "@ b1D "D "@ b1@ b1D "A b1A b1D "1D "A@gϞ1D "oΝk,X`>}d b1DLE̻ロ7ӥKe͛7MӦMͲe2zǏ뛽{fԗI&%m;)((0GXͼygJLʕMժUMΝ͒%Kʌ[9sLcy3uԄ;f*T`vڕp͏'9@ b1ɗˉG۳g5.]j]Q_~zqٶEĸ~޿J-[AU4۷OO9ͻgرf@ b1WWCƸM- `F]ncU_ZjefΜpNFln"!9UJgϞgڬ;wxu0ofc4iZ bA b^ kM͔͛)SL߾}K$HMz$qGϜy^7:4m4ӼysSF 3q#6ˊ+Lڵͽ{On-ZdZha7w5C5VN\z{۷͈#l?5kf3tDL8ō7̐!CL:u R_?_rԪUtю5"F3|׸׬YcK"%(>4:tkD۾}^gBc1%XO\1D "r&b۶m˙ٳ@'ۘw,_~AOh޶m[q6m5MH<|n䵱߰aCh_$@Fe.\ɀ X1DDƍ|tL %Ib+XΝ;+b)4?O|^ڊӧO~+-#$Ĝ4۱c%bȑVƘLQ b1xk(AY ZpH(3A 8pm$TW"C$N̚5U1N,^4lkך޽{^z#1P }#jjUy@(;G"n$a$RtE/)H,\Qu˔r1(CR??Qq3D "\5iΜ9ʭ['Oͷ68t}֭[$HT=zzJ(~۷>Vf͚ieD6F@e)s=zuYq5(񡬔֭[DuqG?QO"b1D "10M *GvSjץUoEuŏϩ*{R"fΝ6 DmPh_]YǕDL8%tmjFL޵k.11]}R_r%be>3 '>.\`&kQߓA] T'?Iœ9@ b1ɗI&'! J蘊6˺:/*M?%W"&X,Ij߾8eHNHVIXԮ]ܻwϻfѢEEVܽ{ :Z9ѧOsUo6#Fh֬쇍Sܸq 2ԩS ^+WL~LZLǎXs-bĘ1c|`ϱ-_7ٳg#!n@ b1\5)9s&M[n'O'СC[n =SsQ DWvܷo}P}5Ǐe9VZeeQWg Քd(cEǺ!n< 縵Mw^&.k~…EL1D " |HXPңG9m;{mW֡"zs*b jPܹfgMiU Sn4o.꧄mƩ i6mt)]vy[cRJ(?}g 8ǒ$Vnl<čO<ǭm6M6߷DǍ>T>@ b1ɗIfC^QVjQmu_T VWEDL^] H :"վ}{q*j'*V腎VōS: aʕ R *cE_G\.%J5bX%j QK/kQݻ$bQRq^{1D "C0. EWZ~=@ b1믿}6Eǰ1A br0VaacN@ b1D "D "@ b1D "D "A bA b1D "A bA b1D b1D @.]̖-[7o4M65˖-?~lׯoݛQ_&M󦠠9r$gcǏ7˪*U2+WN|n@ b1ֆѣGٳzͥKk׮eԗ *ׯj7nm{]DL9ydzWJdYC"1D y0`=ztUVf̙ kݨQ#2dy 1D "R0o޼L2<}߿W$ȠA2g,ZȴhŠwCBSJӧOsUo6#Fh֬' @8ō7ȨSAϽ+W~Zj;ڱKč}ɒ%Cٳf…6H_1qk֬s޽{?&}iٲm:uyIB?x9j^7@ b1Hi߳gOL ҭ[7|r=ٲ}vӶm[q6m5ͱ6<>4ǎaÆ }FyԨQV8РA+f~ƍV@\t&$Qqq݈;w.VpSh~A$wtk@ИΝ՚&DÇ۶8qJ/Z1۵kgN:ݗZ:QV?{=ټ|iӦOd}c 1D "R(PժUݻڴt#"Yͫ2 \2_#GZ*t+jpV 8Њ(SiT:cǎ1귞JvŪZsn@ b1RL b1D bA b@ b1D "D "A bA b1D "A bA b1D b1D "(**2Ϟ=c"1D "&̝;,X<}@ b1|w}7o2K.f˖-7oMe˖ez?67{ͨ/&MJvySPP`9ǛyeJ*ʕ+'Vԭ[ל9sQF ;ӧOg9@ b1|x葽={^sҥڵkB ƍg^EL<٬^:qܾ}>aÆY}N1D "LDL>d,̀ѣMyfPj̜93~m5jd∘!CX8S{@ b1/ɵfyfʔ)o߾^W^zV$ JȜQC͝;wDL64oO8qbhaeŊv޽{ӧO7-2-Z"ݻfСTR\z{/FaѬY3OD q7nX <krׯUرkY_|~fj֬i:ud7QkpBCơ:x`8G*@ b +ضm[DLϞ=ӭ[7|r6Nl߾ݴm{ܦMlFMPh.Cs1ްaCh_$Fe7N4h'b ߸qݬ_tn<JDVR;w.VpSh~$/֭f̘1I7ΙGZ qp"Fl } J:1Q<~ͰQcժU&Q`{YMEcYl>D "210Ͳ *Gvcj;v: GpTU٠ٹs͚P F۸wyS߿o+EqJ(;CզX˖-ͮ]֭[1]}R_)b$-\۸i&oQM0 6,0n"&~ĭ"EL$LͲ2+:tKUUpP/*M?%W"&XLIj߾8eh3ͽ TPP`*V腎Vō… ،2mԇ+W&KurT0V5suȑY`^;駟q[.I͟?ߓQv>:c;vXdۏ@ b12wvgtѕ֯_D bA@믽Y_~͚@"m6{L~/D b1D "@"@ b1@ b1D b1D "@"@ b1@ b1D b1D "@"ҥٲew͛iӦfٲeǏM޽{3ˤI?#Glbf޼yYRJr "1D y葽={^sҥڵkB ƍg^M?3@"21Ϟ=3 0G.׾j̜93~IF@"Aļ"ffʔ)o߾ӧ$HMz$qG^ 9SzusSn]s{L64oԨQL8JXԮ]ܻwϻfѢEEVܽ{ :*U>}Wz}1bGflHq2dSAϽ+W~Zj;ڱSĨiٲS'Ox @"r1={{ɔ ݺu3˗/䓤"&l.D "I(PժUݻڴt#"Y" }Wz}1bGf<q㆕uԱ2H}y~ӯ_?SV-ӱcG;|yb͚5vwn:߷f)먱3ƴl2:/_6YԩJW,YĮ>CZgƮ/"1D ٳݼjS[nfz۷mz۴iͨ ny9v옕'6l6ȣF2 .I4h'b߸q/.]"Ɵ#$P\\l7ΝԇSh~$ ܶE{zڵ3N}guhM~򓟘IsHuLg5T+j.{ +~.^hoQsD "e*btjժf mJ:,&Z Nr(I8Z/3f̈1ڜ+sAYawG "9V6D05NIRH5|eĄ{DjÇ6 eɜm۶|4)ӧӚt2b$}$jyKe}1A b\jpx1ᐘQ2)qۮ+阎jJ6MY챕(ŋMÆ ~vZӻwoӫW/+/gT7QT[Ν_TTe$k͓ 3D>$JVKeԩfX^ɋTDLpS]t+I\h,H(nn1A b\Ι34iܺu>y0f6ߺus)bQ "1D QZenu[cǎ펲8T W߿NEP^v ;w,0j8~ލjp5C6QQ+Ԧ ڵkWI&=n„nCRfذa s%b4_mڴIyBB]bN}\T>@ b1P.Vր$\[ĕmڕ-ῲj#vlDL^]IY.:Ӿ}{qڌKH֨ЯIbŊ^O8/\`A)F}XreBTE}UE_G U_a50͓ d蕎ر#"&|I(T&s駟ulv[wKs D "y?4}QAu< A b^YM+JY_{žK#fD "ʢ:7:S2:BTXXh~, b1D "1D "A"A bA b1D "1D "A"A bA b1D "1D "AļltlٲŻ}MӴiSlٲ^Ǧ~f޽eҤIIΟ?o ̑#Gr6|1~x3o޼YR%Srܖ٬cYSn]s~A b^.#{{YҥK͵k2K K7ζ.",u̖ɓ'իW#bA b^]33`3zrKV̙3 hԨ D̫ϐ!CB"Aļ"ffʔ)o߾ӧ$HMz$qGU 9SzusΝL64oԨQL8JXԮ]ܻwϻfѢEEVܽ{ :*U>}Wz}1bGfͼM}q㆕uԱ2H}y~ӯ_?SV-ӱcG;|;^xy뭷lԷ?شlԩS͓'ORj͚5vw^Jph};ZG]xUfz^Q '{F"AļT"gϞv/[nfzem۶6md3jcm%y>|h;f76l6FrMx q"F7Kܟ#$aQ\\lsbG8GbERCcHptk?{ܹsZՄtp1|pۦмk/^hE9]˗/6mژO>$1ڵ3N 䋎i ' q^l&P*fĭ7"1D "1: TjU{6mn%HHH(I{ÿ1nUeƌ"F2CAc%8Q%'bH )3CHN($YM$ $sc>&}嗶:uJBV^+nBY-6aG~=p@O T+3w4ɿވ@ b1F6ZPFCbF ʔǁlpc:ʒ]'j?k,{,%J8c7 6EڵkqebȐ%}:w"/(Y{Xeh\xW5b4f9VѣGMƍSZd2#jcԺ99{?DLz#bA b^ګ&͙34iܺu>y="ђCoݺՌ3& |"FAyq'bĶ}<)5k5Ǐ UV'BGk.{{Gܹsw`m۶1e.EL'bD "Ҋ|U&J=Xm;[mz_BU|PVTW5Z\ThQ߿o+E qJ(BզjPkoݺ'%_"Ff|6_{Es:nݺ1ZĤ^Ą ̰aüQ-$iTA b^*#СC Jh/lTWbJDL^]IY.:"վ}{?ͺ6*jRAAX:Z7NeX2Pԇ+W&KurTW5suȑY`^ӈɓ'۹psBɮ5\t+/K۱cGz~'1D  b1D "A b1D "@ b1@ b1D "F|)s    )7Gļ&"AAAQAAAAA b   AAAAA b   AAAA"!   AAAA"!   AAAA"!   D "CAAADկ~e Mz1D AAAA+$ax71D AAQln޼i.]jo7 +Wg~_0WAD "  0=zd͛gWmBct~Wn$7on֭k&Nh>|q:u2TZt׿Nx۷c5>?۷/~ٳZ~ǦQ6gWΝ;g dCZL޽o۴^N:{Yk׮m6{,~fǎD "  uWz-?я񫯾2׮]uzi{\r4mnlc]t1wg._X=}k׮]ji֬9}t} &n7lm*̙cj֬ viNs:t{ :Ԭ[2b[jW9qۦMuVﶄ67n܈ ߚ[ny͘1L6-2*Rرc~|6nڸ:Ev0a42ccΝ[E T1"CAAIsǎ8QH>1z ח>|po6] *، :wͿ2Tg ,^4h("[6H_m۶ \_ߧZd:'b17גҘR˅AJ2JuLgԩMDƍKJ wߵZlBiID AAtcG6ݻw甧1J٠z9ɎA8JSn(ɥq5I={>sLL=ǿ&Kבe=43"pXǤZ#]I0ͻ2ܹc9bvڔDLs%~/9&Y̧b"b21  "/,m5jdnzTA7lжS7>0˗/$OyMD( ޯL 0YǏ?{ VXD ƿ뿖T>fj&%֢EL}cRz7F̐de̘1 GDLsu3(;+51"D AAvMpwDT^/E0#=/xU&Mq53~gϞ]N&tdEyI-eL#AitiLKd*cXMv4I2Ic*Nru6]&qLDc>hZyդAx"  i6 3Yr'Mj,76+芎$qʕ+էUĉȘ.VXԑT9P1r%Q8"  (.)DE0?HvtE%,Ybqp6Z#[į(¿9ץu,ywe I_o*.Щ^J\MREvKTIg6ZYinUWuI_ס%(b4ǩQzk*b~?11CAAB(U1 eF~j>h#rKp+hdjk j0`@+j?OQ&kZ%uu$ՌQ8R:0PVJ߾}|&(CD/K{*W8US\R'?=̪|WIAAAx4I\m`G9R-[ؚ#k|PY柵 _bD AAAPӧOg\mu|'kZkA b1   R  rcu掵 _&!b,bU"ɓ'!"   H| >{%,&d17?<    /7dKZ݀܈l/aA}7ݒ3gμχ    /7dݒKPե1Id̷T'%M-Iu#Fh    /7dݒT[iJZ'ǐIXrٱ±IIaub=?,9['&[I_6%~   (О\{=+ٳI}ǒ~'a1"߼"&ub"&1aǓAAAA]h/=yD a^IɮWDӧOAAAA?^dOjIKPo9Mx'bt&Of AAAAI&KȆqǒ cIcް:1aǓ\VbSrKҠTOV%   ՞8,ًy;l?eär,)0DL6Ǔ²b\wD)(cMT:th'ONg|`CCAAAi[{=wP¸#I6LX6Lǒ^+:1qǓe$(9)UIzJ,*DNAAADp*%{7J+k80R6L0K7ɥ&+K.GɘQb朐eooJ>8 AAAA o__칣$r$)lDLĤB.gd̟\%I3AAAA$_'/Q=wK0.W̆>L"&ӢQWPrGs 3۾wɇe8)2e!   "1җˀnɞ;0Lr$wddSIaY1abyc_vwJ_ʸL!   "Q|>'%{?I0ȆymDLJ8_J> .CJ>(]OAAAw}G~|0;%aŽ$eR[)묘#J~j2L!oޒ02m(t`Talq͜/GV/͗58wMx)}6L!ǭ1x;8ȼDkLy9p=Ȅh-{0F)cLneHxi_j9FCL1b) 2LiKz>Νk14LA֨4Ԝѯ0cz20Fm<5a:11哥7f`3w2e1Ĝp Gn`zF1 01g)< hscAf_ Y|1 \z0F 2s2 \c91(9a.`128bYcr2G 2(_dË 3E0hI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I/vw"IENDB`nicotine-plus-3.3.4/data/screenshots/screenshot4.png000066400000000000000000001574611461625273200225600ustar00rootroot00000000000000PNG  IHDRb6%bKGDIDATxEwfaf'λ;;Hs " QrP1EQAPrs9Tm:s<ݧۿ/B!B s!B!´ B!Ba B!B!1/!B! ` B!BS0`B!B! |A!B! LY4B!B C݄BD!B!״Jh!B!Za` !B!*}aTQB!BD@0`%B!B!b!sfL0`5_Vo B!BUPeÔr0a0qB!B!|32P&L.Ƌ"B!B!+iLi#l$2_*7B!B!8s&C&(E&o[!B!P%VY2y4a`0IMF!B!PFI͚|2F@(&gJ7!B!ߜIjʤ1d1c &L($LX B!B!!1ĐP%(&gmJoB!B(m8H`c tWo#B!B(qdʄEDE`ƔĄ&_ǘ/B!B*Θ 3dFDŽ1`¤5`/ފ]B!Bۗv)֐)c#M0&*[B!B*̔N)ddkƜS0٘0A0Jw>!B!B *u!!CTL00aa oGB!B}fQeʄE UJ3/fLFLܼ0a&_'0aax+!B! S ̘N`:_ &Lho G0I E|W~B!BXyECJC￙CTLaL҄q3_W\I~P\y~T!B!Տ=_vgcU)10oD G0a3_~1^~R\~V_B!B!Zܷv ы,8 Q1U~޲}-5UH5B1!Bkݻ7ZшYWUq'X}=yb >[Sϰ .4F Ba :jf+3nxO>cy'J1qd  KRbCa F BjI&iӦeknF[s9tؑ{1B֭[ǚmڴ)|S0Fń1?ƈ)|#0bBmLjAr6b/_n."[nݺٷwu][nɈ/t=!ÇͪULzu~UWaÆm۶YZuF7-o[sכEe-^tMv]>'MiFL應2bCPYMz70bBoԬY̚5+p}FLEbs~%~kmy@gyD}3vZvWVjKTT\~}k\q֌ ӠAL&Vovfi|3sF F BM֛Ԉ1byꩧL=C{3իpnӌ;׼vY޽tz[>lذSz-_}UKO裏2Nj~ŊBe:U?x6Έ[]g}l;k֬\r93v3gδ4y{2b\zG93LÆ m;? /ԽDbx߿]ZjΑ"|10!Nmo^͛#sZؙ12/|WU1ψ[#1B|u#fXd[Z2zhe{=/\0L4h:2&LҥKkf{L?V7f52yd7z3G !Jˈ9rX۱FOZB[l1zym[wYgYCȀvOldĄaF̴iJ%^=A =ʗϮo߾)'CG+ؿ?Sͻkֽ 10PW/a6mڔN/1Ia#iا|1Fň͈KP!1zSȑ:;#3,Ii|1zHVG`FCT"Od|̙3zEx8y;HC/ b&m7iҤ51HE#&ۯ'xq_!jǒ1_Mycdvx(}QI&I>,mڴ+ITjtԙT;MQFwpPeyW2W!sСRkv1Ĉɟ7 ˆAFbAG !LjA}zꩇ TOI534dji]vUY#FҜQnf|$0b)71Fi1fČ;6#FґB!Behި :r䈍Sԯ|HЇLEǪ~J#*&m4L1aĤ7b*W#ˆQuD5󁪚6mw ޽{n+l܇%a 0bBa PMܛDi'@FˆAa F B6##!B#!1i&ն ˆA!BchyLkÀAUHA’fQ!T5bڳg*0mB111!bB B###!8X* & ˆA0% *H!B!B!B!B###!B!B111!B!F F F B!B!B!B!B!B###!B!B111!B!F F F B!B!B!B!B!B###!B!B111!B!F F F B!B!B!B!5bOn:t`.SfMs饗̘1 I&iӦ*}6 /4={4 B!O:ttw Unv\l_9UO/)~97e~ar͖-[8O($ZƹA660aҶ< Sٌgœy楗^2VZ]vbÈAX_~)7;sSF҃YԃXF0cPNI87t&&>JZb`T#FÑ W_n3k֬fٳM˖-mGv榛n2'N,/6˖-K-bjԨa8㌌?|NC34L=MUшK7lz-s2?,Ν;?U6C 1իW?ﮃ ٳns7l`˟rJ'i9sf2_dyu29묳9c5kfp^%=G}J+Ms{{ɹu-u]<3w\3z輔{.ymB'i|ԥ~{>/ 111!!EmrT СCͭZE>4V6#R 0b$zX0` ?Sn]SO=9Y/FL_{RLyr(uv]$^.*BSшqE]d&Oum۶DTvLuΦNFQzI̚'x"QT;3o|A{_+{P.ymB'i]FLy>/ u$]qaZ}tuW8ܜ9sB{vLx\w{]T5 mݖ}l}*cYE7mڴFR>rYM뤇s0LƝ;]:?2TS~l:O:ڵl[u3$~R|L̙ϦܽDۺ{iА$22gڢZmp}Xrֹٴ%IŝWEׯDuvkյ-\$i?87_HX*dQ7q/2=:n}:P|1PڇiӦŶI_ϐ)ql;e]0b0b$"&D'M׃nzvyA歋I=׍Y  ;1K.kwmo캙QV^]CFpBw]eĄƞkNBz 2bԘnyƪ:Qê7Obz>s*1>\^&w2U~~|r_~ٮ+WsgN#ׯ_o;y)24bt6=|NyXۙ^gs?lyJrg[A?^J:ilPDLSQ냿M`tMZ.5\{t}wO~,X sk.HEgq$ΈG'YF+o#껷}P{hʻqC>lk(-RP)0b0bJuڮC뭩4i&]T ˻nAo3tӖ}3K.gPJ`fu,j@@ +㺆^._FB&Fu5΍׃ܶm۬3NN:bގĕw}~Vr(VK>(ѩ--#_NyL>"FoԎz7|]a<} ^T\?o-:o;k<2ή}ň[n]h%i;1> 긨S%ٴ%i{^uQ{aw;IEhcӴ# k\YDO{tzoYU3FL!+QU_$i+:W:>,|Y##&+6\f]H~R>Cvf}6nܸeiUh\M,Zvj瞳Xi$9IoMZRN74Iқ-ZQ>Ӡsv&$iO*C{-A^!Ϧr/'i\ʺ-»LCbFKƪ E]_Cf@\ڑB7bڄ\$ʈG' gB޺2Aqmt6ܟwU=Zݺu˘1:.`B80Zqwi%GRcK,e 7Wo[UgFꍎ>$"4cJjm!ɽ7יvvs[0u0{;z8_qeͷgM% i{7U6lB,kbj} ꫯ.a(BFj7?&땔b]6v/Jʔ)usvT~'qR>Ӡs팺ĵi'=[q:Ƴ)|1Il#"ׇB6bt]* E¸!qת:ZNkURhl;iVڄ\KD㊺ΈG'g.GZ} E+$mt6<SV##&Nw;6L-#䣏>od(Fo00F] a: DÞ7۷o_ˈzpJGkgMeĨrE1wc<ߌƄK4^7[㉵^!ͪWzN&4-qԈU~~s[Yj+ϊVO?43c4OT*Md%zx`꓆\)UFT~']2ޠk)_i9j;KڀО C $i]ٖq$u6Έ,wsǒ&B:똹1ꓮcg]likgnކs9#$iVڄ$QOt<2It^{tzoYUSl$XuCm^+6:Iƈ)zthl5j԰7r99kIOb̛7Ϧ7iG޾9S2Eվ.B}I. DQnr*9a[sNmi1xJ3pdرaK8BTY /&z:or罍7% {T4:qjOà xfTVQ{$bѿ|u!DgqhU:gIUN>ꍄ&N9<-Γ2UY輸h 5i9k;Kڀl'=%m}Ƴ-|1IlSYˇ˺'Zv@qIFj)[*24ɳD6y+6!FLD*݇5&ZwFݣUE>e M{$sg}j4!1I>S##L#&4KTyWt&ňA!* ^q0b0b0bB!B!B!Ba`` B!B111!B!ˆA!B!0b0b0bB!B!B!Ba`` BzzF F F B!ˆA1!B!ˆ)c#fʕf!B zPŕ1UĈ1P``F F F F F F `````````F F F F F F `````````F F F F F FL{M4+g5 ^fܘ/zm}Ve[d@gh_̉)f…殻2O}˷onza*sgƍcRoʸ9rԭ[L:v(t!SN3cƌ8-[M^̱cJnl^3cSvma FL*hP޳i!pwZVmҥK7l x}e.s*o(kHvňIw̙!XlP@C'xs|^}#eZwxr[ǎm4nYis>,-[4#GF;TPȘ]jU SNW2( ^~es'ň)s#FÑF-b ~wME]dY&cd;uo&s:ujs'N؋G -Z1cSo۵kg5jnxNJ^J|̇6ӦM<apBDQǏiݎIQSO=e4h`Cwĉl=\;ǽVy=K/{l۶ͮ{3+eA!\r Y7={Çs9ǬXz=裶,Uw٦O>kl}޽lu &T'(p̅KJň7o5vmVX\2sA%!ވES'O L/,a6QoLuDxrζ,^G矗0c1QQ\u>Oڡ6&MfS&L`笕Eŭe`qR>Lyū&̖%NGK,ɄKm6pb= 3ޯ9]wtQʤYSgwS2_d¸mMC }6F:!zCQG2>8EEMج<+:FtqVcPIdzzcbTh۲R4k#ʈ*lCo;6+=JESv(IS)3#FWh[nŸW20|##a(eW1#xy=XҸ{u&|`;Æ a= #fu9:43bQ_HFQ|WN=XhDiX}Ds5H t{Eeѐnx,k/<әZT8EES\vev_ꈹuPZI6lh Uިz2QOQFLT9gS'dUsr%m)dQmLrͦN}Wy6Ztqĭ*`Te}Y/r"*(2F4tjDuԱ@Dih('?`*־}{k.N``````F F F F F F F F F ``````F FLj#z 0b0b0bF F F F ˆkךիW Ӣr*B!B7Lj!" dSNӳgOs̺^xԪU˜8q4n،;69&.]/M415kִ?M6m̪UJWZA[T^,\u:t0wK̖-[C'{b~==x `8ȑ#tG1u5SN-8îJiò.Ҡk׮W_-͘1ö111E :4lЬ_voL\&:;v4~)&)Sl^ > 0g裏믿ܹ$I^T$z>}z9޸qye9gÆ 8 2bsN_n/^iرvŮ 3b&E}q菦́+ttc-:~iJGF621:eY6h䣎9sڵky(+V:v b֬Yc3=\`7/G1#FBI^T$G\{f޼y/FEҨswEmF1Bi\|I5jdn~VIU sGi8cJv_Ո)o>C3w܂4bugXSe ժU|/33g4P yfҤIi+*?F/=D 2?4߹%Al24H'Æ 37Êa:a8QFLXaFPF袋JV}EW_}u"#6Ʃ͇ws7׸M=d~⚡v'#&u0l\Cve_wn5fnڄ>EQ;J!~9c~F̫v١l2CX}][gtofk"y[fZֽ{@^s[nŴm6/rO>~1ygX::^PuNytޱc̹{JVLp\P A@e}}sغu^xwʫJ4^zm m۶xX6nI 0b0b:~6mZSdhkfڷoök׮@#MzIm^Ҝu|e~Hqu4gߩ"cFa߇1Q1̾[:ZTNlud:ɘIjČ߱ c 4ь>?y\0!QL"ٜgs~;>yb w73=6ؽ,ty'[SFƘ31i:ެ"b5kfl/Ksݻ,_'7tLTTz22K.foUZo;ھx ;T-(cϰtYA@3x7l1u_6GF&swdΝҐg% ih~mɔ̛oY J[2_6mdՅl?6LfI*m,Y>@oG"5kV`u0VVOdz>k>䓌7?Ҥ4%QGEj aRZ'O=)GM$%6a:4~-C=d6o\#/#F4׾qsQ ISoc=aLf97[dcf%ָa㌘ߍ1.z`s1`Z1 MR\he[uuUOd.:IUfzaCO MuL&fߤ`{nkHPPΝv?|Dϻ޵kwr]G(cV;!TrQ'МUqF?_~e=4CkQ(HǦ$*kĨã{7aCagώ465h EhYj*w&6/iE_k\qm}ݗ7#&,ݨI#؈ +pCAr1b,#Mvvalh)zG_jiȐ"i–1as뱥d ňQZezʦ-OþMg_)i8ۧ&6 Ibӏ:|sw M +P&KT5%h`51hsyd,dkdsrA&W\~hwum5D{(͓ͯo9g˗dӻx0GLFnc{jS#_FsKP9a`teP(;'H>ǔk:VCb~`J6zh;Jy׫j :wp|1I]#Fۂ]DC5qP$VTdj$Mf˵)"ͿSeEͩ:ߦM @&{p=G& %K^Gs*h. u`t 22SFդN+JgĉkKގr1a$I7#2[ÈZۉs\^&%_ah:r^?v+?\/2W~4MδJ1a;|⨩5>QIoj,ӭ[7g:WRCj4HXèZPןNξꃆorS= 3bO?#qh Q]syĹZd|6F'3GwJ[mLU;Es(:Ih&յ|pg2~ꩧh*ch3́&1]&LQ0ZaCOkĤ~ۆ_M SSe uR41\Яm8 kl8iKmza%/iΏ:r6Ը/h{5/e]f3cWöInF\h853ٯi "^jn5k~1vpfWtxػlͅE;#&wjϢzLKsuQ]h׸q2PXe$N +)]g>/4&Wq1$I~15Fґ;:6RR#EzkEyh#U\OsuP;߫5^bh&VdOAC_sF }MJm~+u4um```do8KeGI1'?VfP!+9111)ѤA_)lM }YoƽC*nlܸ1YE|uBAC4'F F F T 4DEn4LNj ` V)###0b0b0b0b0b0b#########0b0b0b0b0b*3h s5ט:uꘞ={Ǐg8p VZĉ%~wA\۷4hԮ]۴lҬ^:pO򝏼$=?J[yVNs)۷=zʜ}٦qfرq$ׯyUSٿ<1bD`J򝏼$9?Bo͛bT$:qO<1֠(_1QF6BׯooĨ㯈m۶1"pb8Eu{d^z0b0b܈PZ5kxW9sFX͛7 j{Fu IK\lٲS~F46lXBQ9Sb>IEӦM>1B?n8+J碋.*a\F]}ՉM^0LC3Zf $m[{լuh5K&`f|/f3[V ,cjʈQӧyB"LO֮];;,Nw(&5TfW;v!Rē '|iԽ{LSͥ^j=ܓ1Y^u=>YkCofE=3uiѡ+)0b0b׈PPG^aQF&о}?wz6rٵkW&6/iΏT=\i(3SRN5N&cyҥ}X#FUEn:ZQue>ɘIj>2:~Ǭ_1C$v-/2[~j:Ϝ8~8Nqtʭf_q:I'9_a 4_ikw1[Vnxbt;6bdJM81ֈiݺymɀXv]ެY33x`eg޽ohѢ kh?Ǐ+_nO5t_'-İP4G@È~`&=zIbh}iӦٺԈq(J sKj{ct8<``Ĕh+v4B6mJ2 ԩћnuZܗ٤\f?`g uՉ~5:İ:zk(-yO~4ϊ3fLތS s;sp"ӣټfWD ֳQ-]4)l;qr.3kiٿ@#F52q Y9^`%%#o|\3sF0?c`nAgsv'C1N'Oʈ|^z;2vI{hV&dp(~c'2ף &(&ּH^#FC~L~HPezz{cԹ4Y0F FL1+(jbQu$Ф\493I47H6|璗4Ge q_yu`]P˨Yx5.2;NcWYԈ31~1vL5K&X4D_esIp5hKCG4=gD͢1x_33go'Fxkif "WEn`$IyֈY 3#l^Z/CMdleީS}A(/ӧ坿(Q=WTTenhȏDh [<87G;I*(,nhTر9F3kl11bĤ7ވӃ'ʘx###&şBKǘ'TP5g11ecF F F F F F F F F ``````F F F F F F F F F1 2\sSٳ9~xf݁ /`jժeN8Qw˵;}L޽M LڵM˖-իmM/,K󣴕g4gΜ߾}ѣꪫgm7nlƎU~n:s=;\wuf4iԬYӦu6mژUVX<T^,\u:tK̖-[C'{b~==x ـ8ȑ# a$_ٱct]tr7B)B((kӵkWꫯȑ#nݺfԩS{Ý6m5XfΜj83AH_n0^eΔu.̈=W|hMâ?+>2 i1&EYeKg,I=Wg/(A ^zY#ɓZ󒾌+K9y/z]SlBewMz;[,(zY$(:ƈ*eȠFgXœuY02dYf}2bg{t7/G1#F|&|#/IΏkͼyR_lw'lZv7Xk/ֈ*ۋ/8ch}Fl4\֯_*sWa4 i.FLM= KRO oвBO o/Riˣ^W#ro7#~ ^ʤ2F̄jժ^z%")Œ͛I&hp&E0^xa"#F( szE\tE% }h#E$1biaN{.|xi1y󛱭۴[s@w/jOhg~29kRΆ5Iiw^C߭޺CMTּ~(jGi]5/G77v̏5b4{5\p[L۶m3_^G=8]d ~d=C|/dkBv ailOɟ+b;v,6Ai+Z͛?V8H:ڟ"5sSO#E)_'N47|9s]wݕS[K/Ԗl۶-zgl(ݻ(|h:ؓ>F{Xyv[W K7#=C}yu5u|ZʏVNi :uV>]gIr}]{Qum ipؽ{F^/iVع嚊Iڱ^ʪ}{Ji\y'u'eT}7')l$s^u0MΧ}_h'K11ƈOӦM퐜(#FԈ! B۷}a{۵kW`'2MzIm^ҜeHqu4g$cF%TDǟNԑ K.ij8#F7z,]'CuԩL(3I;dLA&Q'O Rd4]|Pw- yw8ӣhhӌB1a;z5edмai0N#is1ۏ5btpt?[1cƘ+2p8XzGy>f͚ˈ>$JC&ʕ+ò7z7N;(;Ȕ =dћ::ozPyW]Vu[jeu*A6mOٔIQwеWq=ΙzK8;mZs5WKk<7=(E4$ymI'mr]I\İ6;i]F.IPٳ#Ije4 o<_w"Ӥ4%~hrJ0@74I?3$zwԃ"f4Dʽňyh 6yZۅ6EH/}y]!C [gĄïǖ1b4|*#CL)yTN2Bs'=0<: Kbĥ7ۿ^W\u~ \4zP:e}TtBUNzXNOKa)7 L<ؓ$T:KF# n\]7GL>J󼧝#ooeȄ.D 7`˸r_صWԹ$mUR#&|Iꖆi(Ή:|zFIVD;mZs5WKVP" 2;1te|ҖI.4M6DQǕkf'K11f^= Dh؋wP?jT1u]6$%/iϏ~(PO)gkbČ6˚v#(p!Σ̟6O6*._~`Mbew1A}O9lu #sDLaeK='ӽ1ʻL;:a$FL\qFcƌKYg*P|1,[m'ZJPHCcOb$9IQ}k4ݤQ=!|jG5/{ѣrJk? rskeD]A%[:vݣFeɦwڴt3>Ɲ$<7xb;nud1II'mZt枘ƈɵMj% c(ZDot6mڜzk5#N[{MzQ%/i1SA7Qut~5:Yzަ*JG;!o:Q&L7>9f1bL̕|129{\k;qDR^׽*_])W#D q1aw@G *n^;L^+2sv8ff.c>#0b0b#b sYgY`Ȑ!f͚5ȑ#FL~s=f%?#fĈiҋw>k̛7/Ũ(יOFcNr\^#Fl/!5PsY~}F _*41O}q;67l]Vڔ1Vd Fƈٰ㰹,#zktVӢ۶ziY這p撼|F:ժUFzꙙ3gf3b7on&M_Τ{FlIK\ȐXl)*E 6rE(bsαFJ4s 2bmܐ(WE]T۷61g0Nu=no>˴Vm-|9v  5'3?Ԝ5ygꤴ;/9.JGblzm37cut SmB[Q_w{ ܌1?3+ hBQCQtB"$׉ Zf'n4)B0'<Ӣmuly]=h(ᷗECZoÂS;t)o\1:kMEà: \VTaF FL6bdh~?M6`{w^E{8s>o?}nwsUqEqlPVAQDDAnqA00y @C .RJjIPj׮7*Um+,3f֭[3gSO=eš!A&wmiҤ UPŊ]JSx6m]tqaJ z#8mK b4h„  z?++zmcǎMS ~ b&CI vša?%“6뇻6\ZQ~V@601iM邘וWwO,ki^? ϞHhp9bܪ2yuݮ`-65š;{vUoJZaGuxy⽜jkmSG'D?X[%#7CmhP!g=&l #LcIueWx:w%kT>}١ bTjM F{aӿ_+kdZ;:1ULZ^CMە|͸qU}aǡf}v6~ž?& GStim)@CsY1[nu ZHe6R1\,EmÇӧ' }hAZ-iCjkŊӮ^pm#N_~.:zѣT jhj=ztrR ƪb~K]gzoO?c>hB ?*Mu 3 b8@Uj@&}nELY_*[xdZmlg%UA )KQb:ԧŖy_]׼NW= u:11M ƽZ=Z5'''e3jԨ\4Cz4C|HHI{q]۾d>~[S)SX׮]c/|I b܀{wW1iRu b>ILQա李uzm,hT]1n:1;G~_](^NTW2d H`¶볷_=rvpw۸ KjMQB៪f25)s {*>AL1^`d質E9:vvO|6UhuTEm=&x,yA !Ueܹs_A)2)BaA\Tѹsg7wmCWi{q]dz|jC I{f˖-3j#U_2\1Q[p.A̜.x-o\rY=]PBcu ebWtܞ_vȵױ*x) Y#&u ׻罗1HV^EW58Wx4#>LضA9I"F#OSQt fӮ"%,lJ%1>-(>Ĥ;qA3&>`{֤$z>z ~4zs׫zFӇbbb2jf͚)('NN:ٰa,~?Qȡi20B4E.֨M{]d>G3fXII .ދ0` +֬Yc'OvSTl2w$MFsu1*bV}1 9gn>ۿHVۿtulw{^}"EO=ںsUjALT[e]gqӓdYn-hp9,?ۦAĩsn!Wo^ToW$ZU-- Fi0ΞwӕbhhW νK>c *Tm~eU ':.8׭7cNZ V b8 >^{^uA|u2b^޳z4oC>wsj>֮Ѵ)Uè,j=4 ?&-ƪ;h!V E0\tg=aÆ.Ғ.$m{QK_29>HѴM6ZjeK.MHWȒBݽIw'ҝN6➫%D-־FB @N*f-ssa/淵m'Dnu`~fQGWiskb1`/I:5Ik6_-lo%h- uw#UDmS;ZCM_J ;衩) ET-u;km$]oWՠJF3 ?o(JgXUՇi 4$**;zᅶ{ጎVuvQFLUphc-ԟCjsգܷ΍.^ڮSen^}fi^'ny|2 b b25~\.IR봋) v% j- A A AL k׮MRl?nHlu]զ2] 45LqơA*x?bb Q13M}Ҕ6Xϰ[A @CCA A A !! @Csi1&M-Z؝wi 'و#QFVQQQuNrRj[}Vc^_XXhxz{lѢE3m޼:vhrq6dȐO۵^Sԩڵ~7̾}kq+7n銳R_W ˻[?_~\:fgϞ˲ܗlbto]A A̜9|Aۿ y \!|]uU5+WA̞=ƍ8~xcǎ0AڠLKKVZիSĉxρb3s5|dEu0Am)\{]VAs`H1hd_=il 񕕝?sY#3 st+of}f馛\~ b4Wgرî:L6~|A^sj{is BɤT9>#ƍ32צgz饗lƌ^bDoOAJ{w}7ybݻj箘D\, J\*xה̵k{gzh?@CsE1 js=ndaALvlm#8I/p%,^~ץ/qB۷xRTe2k֬jUJoх:i#?M5 3n#{ӡ_U;v[wU9=P A{ܵ-L=u-u<ڎ+K=3횥]km->;(r:/jG?wQ>jO Yzig㞨Q>YmJh:&MSO=e;wѣG'kjJt8q…]]tqEU5ym;}7_ݚ6m^x=Zvw|:m۶ݻW뻮Q/4%߷t+2Q5BZn bM; Œ3ƺu̙3npZ\\~d^~׶/ olڴ): 4hРZA&m}&U-iZŋ]ub4%*]G&Lp~/~{vto@JL fIQn2th/`++m_"}Uh@쭋iϴah 5:6=>%H`O*/4.((((Q: Jq?/=v!˺OkG$.邘-,9Vҽgo/;5IX# *bz뭶w^]U&jSU;~&*&ne˖ߢ*WTyPbLM  T1)Ru b>ILQա易uzm,hT F]9 bDAy:KዾcjCQnI +UHWpuT;aӝt7.UdzM}DPuܹs_m)2)BaAu\rJ iG:_BCw]:thmfTeBTQI5_j[%QU?K3h 9^`? J4]sԾ.XaLr:V/%!kĄn^zvN9j(S]1ZYYwӧyS *I'n5\RR~^j;u b'oy drQYfnրԩ 6̂ 5eFhh0\7(XRR.}}2 WA ~ZBŚ5klnJ*Z-[ =n>ȑ#]}[o{ި ƪVU#Q?_t EO-{gۨs]/ W~:i֝zU b^w-j?4 Otk&9yGݵ /}g47]L^Nmgo P Fao-]U?Z(ZE1a1Vu/Ux < !ɀd՝{~0\tg=aÆ.֒.m{QK_29>4w7=_!*}nSݡHRN6}&]z 54 K#[ӉZ}ݍHShYUZš_okoNnU~I'͢b^uk֎muZJiÉݵ bDkh]?h OT+zДnХ bh-MӂHkZ5)QOmWɓն̙ZI{]}s|DA߸qc_FUxҗ^zf̘Q%,{50U,i?*sϫN8ֶm[?y, I*vR=WUf h% AW_} Z[vKÂvCVGp:*^z*Qw](ؾ}{ת"E%fͪ]'ع]5=(a鏦BF8cUxS_;v[wU6=P 3zʿچّݟ"qwt]ٝnfy5~xm醴/ ˏW{})k[?ak|;Bс!Gη<3MA/U,IAAzVYY~־>}g26`j׮.]i S q(I൩1J1믿 /`GMF\Æ sMX_1cǎuR?wVצzEmO\}11()u֮L?Um)(u@{ꩧ84Ȥm_29>M4qVXiΦMӠRAJ Rŋ֊t`;qi~)YdũP#MЀ z__Uh ~ bNp?XiH.O-nl$fVVZN @Gvb[O;ǺG޲;ѹ:tQ(h=z]wvS(QxiӦM2]n8:ܹsgr[[yy A?U)|Ѵ1꛿ZH_X_R|=Oot1%깪bb%ٺuXHe0dgg's Z&݀ÏLڋ%hu\4TZbE1׀UU?j 6pFj{Vt2U3R@!axΫ=z YA"u79vp 0gI-+Ct۞6λ)Μ]mSǷdĔ^~VKeY++~޿eP_٦&n`{'hyI΍2˻æ&)i;?-UtMn!O'Q,]㺮.AL~+5Ԥ8AL׮]]( { ĽY= bF:RРkqZt!sXI{q]۾d>~[Sp!0M|`{׶Qft`ZAq]U8hKmb1ҽ{w784)AkdsԞ?XIʔ[7뿪m0gUZ1Gv1H={zpӞ(ns*Ur(Xu,U9r$2I# t ?iצ{-hmUتJKM?/U_Ĥukg}1 j UU6hPXAYp=UtV34\d^~ץ/?MCIuiTei*U6ޚ!qtZbGOT]U1rl*/l#M<=\ʖw#M_Ҷk bJRW̭zt NL5 u+?MUSp)iQaA048^*h|>]a"F Qj*w\ &nU7u>][11ĨZYfn@wԩ@*hD nMoVԦTK_2yQ5HgPhz_-\5kl.Q l279rL:FZ2~뭷k']>{鳩Z@Ե"ƪngv3 bNߜ=Xx7/UhvTsŖ=7cBU(Y5_lgK7Z34SMO*?sg ]=~<;;2q s:/FT1u-D6=ڧo9.*S*wUh:by7 S[7%^z6N & kÎ@CS/AUݵD0M *^-b\Ews6lB0m{QK_29>jʎwGVZ7PH,4aFwџ(jRv✯uֹ5c .ALP (˶cbJB[<`N\Hk\M5]4y Cs\)Xz3fey-민U5IkdDH{7 wMC}z5҅ ui=c#@oJ-ntmZDז/kN=(0sR[kxCulÞ5}{@CS/ALƏ ~\ >/ hLcr?UUs%41}ƍ !111bbbA A !! \ fҤI֢E ;mРAv侲21b5j***ԩSnSZZj͛ 7`۷ݻwԩSs2m/їGmj{_ m_o=-Zs6ol;v[n2dHTO۵^랣ԩڵ~7̾}kq zWov?|v⬽Wvwre_~>ټyBQ6ځӗq;S^a^gV\6>QX^*s6iz?%]dÃ%.=ն{ne԰ǡqym{E^qoģz߿[(ۖߨGdyqUAL{)VRc{0,odiVl-s`윭?^# ۶>2)=}^J;zP 8Q@رc]wu.06mٳΞ=:>mW^sj{is BɤT9>#ƍ32пK6cƌ^t+,=oOJʚq#nĺw0]1^A{Sw"ݶi]l3^t>Mt1{_&A̴U]uB FB% 2 b&\}nw=ڵk?G ۵kg˗/m[1xի ?uKPb5^U̚5vUbot4{j']3 bDU?ޔ*WumV-z]C=+y,{wzm/8SlnEwd]6ʒhLfiZu_,ܮNj//D;æҶQ{2gK;/DՎx4ςvhS FaV>}46M0`@s K.n.ՓBq:m۶Mk`k}8kn ٛJՊ{01 CoPmvNTm~}7kh+qIp-=|nsUviwE} UQ0n N'4XW,0{>rfSaSCW$L+;}ń^@vRm*1BpPt}zΤ5B*Jz_苎5u1{KݴCelJ8x Fwe\iֻf߳ww4_nOA 11Z @Ơ֭[)9ڦ@0cƌnݺ%>s=SV\\ d^~׶/&MPEUxu4gӦMiP`AnQ-^UV31~4a7 נw6vd(JL fIQn2th/`++m_"ZVE j ZbE1?}y·6lpֱ9t萕5h{.|:O bh뵪ѣT j($~7zTAUUzɟyr[e'ߵt#kLVVHtALmtۇbg+Yn^ejo+pvl6{U.7t[+ȓsD07 <1 @QK`:}5ۖ~U73ꃶ+LSnT0 &s T%ٟdWϗ5uTĘE܂ PA/q> NA>B>֗񟏺~oy띮z&' A*4 ih؜QF碠AMСc d^~׶/Կ^]vu/z6:QՌB}Ԥ~o߽{wW10u b>ILQա易uzm,hT]y4l0ws:'o[w574妮AçW,- |$}mKgor{bhMGS#}mĨCk)T1* MCњ.;zUMfIcO}f[A &s 15||{M~Dèk>db`8zXKbbjPHf4?ѩS1j`@SvainXD%GmK%9z[`} Ut%kU`fۿHVۿtulw{^}"EO=ںsUjALT[e]gqӓdYn-(TqչU~5TOuMi6lڮjmSE]5ĩsnp-«U!*-`[qUoۖItUNΞwS]4'ZDѭ5qʪAGT~eU ':.|8׭7cNZpU 8 >^{`>|5/t:QF]2Z}36j`Mm6q+U bv%EwOT-'j)Ux箶Lbb~ F X5p {-\Ewps6li-ڶ%MѢjUVtm|5yyy.ݢC>䵣?5-K5 XALP]ٚNb;nD*DȪm2=b~[{pmv@vZK:out6&T]voPON(Az/ tM(uS]tj: j=n׾;ߨA N/zhzh -̪u8}m${뽼*U.1P1CP q~@ZӏD IT(-\QkmUYrB zkĤ;qAXEzOM:_H ]?a{f^=((CѴ[]ʪŋA&-1qiKU2 լ*|o3 b !L?>t=K=8R|K]1LI(XycxiN[R5P!?ڵbbb2Cɥ~BV*ӕ@S7n|1"ƒ 2 b쏡hjn?vA A A 111 @CCbbb !!11M4Zhawy 4Ο?WVVf#FFYEEEם:umsJKKmּys}{:u{NPE>mYmxW{}aa 8xE}{v?*9rd~D8}~ڮZ[n:udv_ o>kl5+v7wa<,Sϋ/g7o^>`^}c_힣G]uu11F}YG,o11fΜw3<+뮻^s@0YrٳmܸqǏۛoi?x;v H48 ʤTyiժ^:1>xM8ѽ^!8psϞ=kM4;wE>xA (T{]WEEE5^ۯ_?/* & &۲eK[pomhk֬6@CMW!;v뮻ӦM={p ,>mW^sj{is BɤT9>#ƍ32%l0ݳ>[c{s 6nd? =bbb.P(*)?999bb)L [v4‚vCVGp *^z*Qw](ؾ}M#RɬYmW%*vnFnj#\D!]cUiiLگʛnZh z(vsh˙[=_mwOC8; }eؚi?Of۶wˏW{})k[?ak|;k܅k%o{-QէO7M <^ukڴ&_x;zh򵪈6l;gO>d?w׉έP/BCu]TVV&=]0Twȑ#ֹsg[{y &gԸ^zU=S=:F3fpr۶mAc.]CԢTcر?M0  FADaak' Œ3ƺu70*.. ?2i/nkۗL| UP]Jy6mڔ|{ v4hP7m67-//l#\D!UG&LpO/h~ Bn`TẢ.Pqtg+-Z]#ӥm>=l[JډTVOl˒~vxX[pU-ѹ{]@A霪BKCkOZSuMӟuR=sƹs\(؈Ĥ뿾W^ YQFet G! dԿ'Nmmڴ)S+zGڗ|UnٲA AL[ATHaz.RZk>|M>=ÏLڋ%hP)LjkŊ\PUhPpyȩYE>h`V=zXAAAA `_A7U)ns `lj[V&*&·"鞷=mwS"9>=~C!C=jɓ''+ D! F@z1rl*/l#M<=\ʖw#M_Ҷk bJRW̭zt NX?"JJJϫVr FZ9TUM=K|.Ӵ*4 bts7QIz>CX1~ 6,Jw>‚=7մ/ĸjf͚EԩS]_ VFhhp*$*ڴuK&#>7RZ4j1RM!Rβe`?@oڃwQ"UX-LS7'Bg /Vn!͋qU-]4)y\ye'vغ F5 qVMۙ.zM}9 lsӓO}}ܙB'C=*+] fҥB\:% Fh=o] Dz jqϣkNשQ]ڴ谮gϣ>j 64UHĨm}'1k~ ?>ha]}u"·Ŋ[ !,n$ZU`xkz.ӰaClxMoI~Զ~ץ/Uh wWMͪ Pvn0ی׎BS<6E>5 ĔeLL)[hw˒ԉ h-F F>/XR|hyk35Zofݬ9}7&imi~xVV!IzO;9}7y6p@{'2bDQBF& *{]X#& y4UGaVOe**tg8Aݻ-O̿FLTmh='-֝ 3wP}wUfFӲ4}oV+@CSƏvQ=|K`0jݕ@0}|I@Csy1Z2xǟK=*+TQt45}ƍ_Aft+mu4 !i0iT) @CCA A A !111L4Zhawy 4Ο?WVVf#FFYEEEם:umsJKKmּys}{:u{NPE>mYmxW{}aa 8xE%>|^~e[ow}Ν;ڗҝ@Eҽ0o^_TTTsJ b|K%9z ԗrwN.] ;)pRxꫯ_~\ZA uƎ;silϞ=v~h|Ah 'OV޳gO3gNhJ&w}%Gy6nܘQ4QL/w5^u>ҝ@` v5w}A(lݺ%AGᓾ[ xK"QpW=ck׮M5o׮-_ 'onaSTm2k֬jUAO(ԑg}U٨O҄u>2 bD>T*WumV-z]C=;9}FvdHyWv侃[Y޲Glʹ'^3mۻmǫ>}ϔ˟5ru@\#_ Fמ:1tTڞ8qc]tqSM70777/[׏#kt…CSԆUs)~o_|dV+dž@Csi1 ~D~)9ڦC0cƌnݺ}?=sƭQQ\\~d^~׶/&MPEUxu4Gtx4TӠA74ԥmۺŒ%K_l>U L0 I5 V5رca'3q+\lVZF yKa˿7[3}z(ٶV7(5tБݟؖ%zαv{_ 瞳ѣG4%Mf̘ Kk y;ڵ{6mlʔ) Ѽ&HH][|MuRw&AL~~xSR~絯CQ]SΝ?bb. f֭nd!)H5Nb!(iÇӫMˤm_29>ZVEO ֊+"*^T /pjj֪y7\E;wFQ FkJ=zXAAAAA*_iMU;8۳$–JHmjmݔb~fgNOϩ[2 bJ/p?⬕lr?2(f[ͯlӂ]pSAwJᜮ Q@r뭷޽{ݻww MD-{w; F!']ZƓ>WpԴijS,éI^)A A%Ĩ"D`ٿBQF碠A!Z֣;{nˤm_2}?ݭiTᠠHaF;IoொM7Qc͟lՔ+)RyfW՟j[ Ȯ5g7`-ܴ'/ FazZ=*MWS .:zαk#lJ*HH(DLޙNMRXU8o~ j_aøw=J55Ia"@Cs,ܹ֫s_Ai6)Ba|\Ti2`;hp=ԖLۋ%(ttԦ_t'MS bT R&kȹEV:, s\47p+[ލ b4}Ivy*)I]S0"fpq8?/;.b U.*-M_hh7|(Xt9 ;2xb{o]?U'F״gϠŽ]: RUEA A%ĨZYfn5:udÆ K9Wȡ~T-*ڴuK&[k]bh  pŚ5kl.`Ql27oh_~GUZ,^;?dcUV2 bNߜ=Xx7/UhvTsŖ=7cBU(Y5_lgK7Z34SMO*?sg ]=~} 1&Zpa:(?zow1b:6̟??9SzK/493{|Yg\{9眓^tUW%K.^r%駟L:5}\k|_W_}u:vzTS[|;nezx?u袋].cK)~>I$I+ōy#K~C~_|Lw4xFS.Ƙ1uMc=bbL9餓;/;KfΜOG/SLI~_$=\#cDamiEW 1_}(kb|#8裏I~iU7ps/N+bω#I$IceIqK=cqVLƽ1ユ#L^5?˯6bzIqǯ~̔(n㏧.>?|2u?ϓ_1ϐW 1ӟ4,1A(F8(U\>Ζ9H$IXb'f4S1g}vz^C!:F/<9l Qxruץgįm=b7x,V/3n8:Z}$I4.M3LJñ4qyGs1w7M\?\d!&?+$. HxRb KN 1>(ަxfMqOCO91įrfCݏC$I}~NX*㬸<)n9qqǍz'O<3ܤIYf%nk!&?|q%K9aK⌐'#߶b̚ym>6.}jvvfW#P:^\E=3}m!&>Ԩsxl <,n&K$IJWex3fr&6lyӕ2;ӛ]BʼnĽPbX4]!&%.ob>[bLc}ʗW{%v!c$I$[ۧ}#1b 1$I/_\~QG,.i#<2>}z_+I2b 1$Ifߓ??c=cmZ/;L4is玙[ Sǒ|)ok}s_wɗd޼yC?9}LᤓNJfϞ]뮻җaߋu#87k izꩧ>:%_W>'?xqw?zkzY҇?o7b 1$Ie˖%r/~1=x|G^x!-~/;ӷm?&wygO?:(?<-ԧ>| _hk6G?,^8y?O<*M2f͚5+}\;… w}YJ>?ɓE_5=|S_yq ;_{d=L.dҥɳ>\pɮQb'пنC$IV88V9sfx|3M{${o_|~4;Џc6?[n}Uq?~;&ӟ_v9$g}v[ۙgu>)Sgu8PϿQqٙ0U#Lެ6Ό9C;o_tELVC 1I$^z)q6K~9Q .x]<&og4{{w~Ձ~1{Hŗǥw}w˃8C S|L\"S3ayvΌYq R!Ϋb̊Ϲ8j!Fqg}3o 9+<mG^%M5c$IRq~I 4F=yOzEgĥ6ƴ;g6Ľr]s *gP1pߓ$O>d'x6Gݏ+>8_:E{bxLuGcGD/bCowubZmW\qEb3VY!fc!F$I]+΂}'ꪫC:n׵sgy&=׸D#VҦ~c3D<@zpW~yIQ< lt/wK%\,nZn~-Y$z㊏!nF|/FwW\k^@qfHOrV!Yz}V8b!F$I>Oz/%SO=5'~9L|}Ϫ~%siy9L~όxVԩSWOH5Yg/ILp?xZ܏[#pߋ_?ֻ4)ƤcZYǔ/O\n4!1߯b.S[9>5i]CLg.O2H$} 48ӓN;n;gcw}_(%&5\>T:lb۝viK.|\50lLj׍'^ x7}{N5W^^ژb}t+e+ݬC̿bZ1j 1b$IL>VOS:}4). z,J{)/qkdz$wO_8Ӣxp_%g>r".i?~:@э>xn׾DȋgG{Dq9R;gR;vצ<bO>SU~cCL>ǿ=oXYo|f[Ϛ4!f-C!F$I=4):uU ^Qo9H;C|B+z 1I$I&/A\?cT+ޫC2b 1$Ij7zZFcY~||/r?k!C1x_"I$IzW!fdC:!fAM8m>V7mVXqzI$IzW1zv}X~~X?b+ 1b:3Č)y7ɾq[ @o|zI$IzW1zv>1;v";$;SWb1kt>1[d6MNuz7C/I$IRc8Fώ'f[t0k9Œ!f'Mkˊ'ŵg;-_j?$I$~qL]m鲤7f.Kz]˒4Čʗ'U'&c6(\ivmٖyd1!|VLq<8w$I$ic8&ώͫ.Kj4Ĭ[!a䆽˓={;ŋ/$I$I/X<;&olIu/KrܰI.O*ס@;;3F$IQ9fX|0eI $7 {SuyR~Vfbή?&; *мӱ{J$I7c̎ŷɎͷ. Yl:%ս?!3˓Ί_Tchc9 K/Y/$I$Im4:X;;.0%IaΆeIj}bZ]謘F/Qǘ2wdGmt@=kI$IJqXzzXˑMgJ*0^>trY1fw]n6Ƽ-[A&F?zW I$IV)?n~Wv,]ay{vlyC%I c}b~YcVsOԼMñmQ&f$I$Iжk0lcosO̎*0z6φq1ýiogP/Qڨtf{C!220#I$I™/31;޺pO0U\^aFr^CL/O:+~1 glsQ&?S8H$IK~Kq|ysa2;߬0TgÌ!ϞT^1KZ1g? 2o~P.\40H$I. o*¥HFKso53gT]Tc{M L>ϔ)3$I$iRlRe6/Kؖ$I$it~|IaٸHas6̘byyRŬWgMbU$I$I㰪MKY¸,˗'=+fTg)?gVڸ2uT$I1T;o(SoT8.?=uf1pFCϊ{: n^Af|Ly$I$Iۨ4lX_ܘw6/IrY(VƘ ScuK?ΔI$IRqrf!cpVp7I$IVFzh|f\ 18+ |1A浥Aj$I$IKqymV0}pVL1bZ1Ug4d^S1Lhqƌ$I$Ij<4`Zj1ČA8L$I$ImvcN0F.1#c 2uF3$I$URgccLA8j$I$iqc:̫k 0F>cZ 2aS$I$IVKc50;tz)3kI$Iaf`0bZ1\43f$I$I˚<3d1p)2`kJ$I4mapiw{$I$Iz9fF@1I$I$ɑf 1#dW$I$5#өA@#I$IRgN0F>d5H$Iލ/>c 2$I$1FI$IV3Ì$I$I=` c$I$f1FI$Iq7a$I$IJ$Id| #I$I 0FI$Id|0#I$IÌ$I$I2`$I$F$I$ tOIIENDB`nicotine-plus-3.3.4/data/screenshots/screenshot5.png000066400000000000000000002457011461625273200225540ustar00rootroot00000000000000PNG  IHDRb6%bKGDKvIDATxU?;=3s{ttn$9 QĄbD YAڊfTT09?uJ;~>UkWOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaV* C\@\Cx@^f0@`d0@A)412XE "@qEe  L SCE<^*c+Af,X2dvA &S%i@ $_L.D"LL\%WL V`&ūQ'L>`yaxD/QK8 w G&]&˯*B2r(y#$YR$kr!d@a 0q‹TřL:L&b &L&B 1DR%"LR&Nx4?@L=e^S"/"Kş Q&K&;1BL_0#3o 8a&LI Ĕxf@,ޱ#DtĘ 1d)„ 0Q^/ތ 0Q7!L  BL~a2a<`?|!@ $lu !WLD_0aLZ wjD0JEB &k7~>@ e~@bLbaEr$T/|Ow,)ȸ/3cɑ7L/0Ns22;3SUcn'ʸx&b̿AA$"&h9W `G T{uv+Rj,]jl턙?zD0A/[ [ $ _q`ʀeL&cݪMֻDlĘt &HQ"[z(knjӦSm۶ݼ٬1cW2<['D:^1xd$/`2DcGFYӢE ӸqcӰaCS~}HSkl1UL1;}A|"dDF{$ab a~aA͛ϔj׬Y3 @X[cn51c~c$bvAɍ7̯Ba~$)T*ua֭MF( y@cn5O x(:+WyaYRa~ _U ?URMwr'+# K4X*nLݪ1j ubjl%%?>o$wU Ǫ֪֫Uk\(gkl^5FK՘%J-QayRoK׽n1aJ.jCK.PEo(1kly?xo6^15I 1q0,I]U"ɳ$I0P:( BLWyUcyD bBL)IJ0oolUJ[кH"01c56j^+&+Iyb9ƿ, }Ssպz;hCy{J4'r$:%1eJEcr5Fשɳ<ɽA_A{bDLeI 1u vfG`ͼ) oB ^1W묝Z BL$>aBz?%iY;Eh&tHbqk׮ԩSmӾ\Y\cwy=BWL:qbj@b%UNv!!bT`@7iѱ 2UBLzIS:>{[ZkVw!!bs3-GټJX5V_5v5aoO"NL0ZeIMw !!b*b:UZljBL\|Laaܲ$%ngbFiJKx\qv;Rb6mjcӠAE_6/""Ǟ0b:Wս˓qbqqbb 'Bnf͚e/_oS*BGm #{7L޽]s1w,Y61Ąi2n.K%Gb ĔD'xœzf[nfk\@'!$)SxmڵyiܸqY7״n:̗-[f>Գ3tLV zoZ'́S' !&ITRb\,!Fk䮹ꫯ|g1#FH-ZeLvgnεJMѲ#'xhcY4dI3o`_oO b*L aK#ldv&L`kzjr-Am۶ŋg5>СC ?xUJBL>a2bSB#>駟67tYdٲe9蠃bbF<_~w':o>} 7`>`]{Zl.I!N0cǎ1%.xE{ڠZBJfbquu.Mc!746l̟??BLGyĬ\㊆ ZѪW^v,&{w̤ILv,_d:F;.z#S>֯_?b /W{3b!&wa_f(XBD0~xđB 1gN^veybW#EeJ:N|C5_|qQt38uQt14KjWa:,GM (ǏOtѣGx!<4A6a6nXpaꫯ$o~ݳ~j5MQ*Nz뭷#FL_wu 1PeB!f b\0(V~;w6w]$n-tgJN:͛7ڪi1&[&#I`JqDq:>y f,X`_>l;!8nѣEثaQ'xڵN"^.+ބc}\{dХ^jfiIGJ#&!F}6'(vIq"̴iyo5?g'egy^nV}ܸq)a5p9s{gϥA:Nc-on*~n!yLB 'N˧sر'ONhWMb4*#Isb̺uRqvo1*BLe 1b~ XB`dкV{n ƃ*7[fQ*C/`ZeO>߱cG&}Z 4s4i%BI#F/I}}W&(ȣ}ֳz( yt/MR{I"ݣ>u˵"ZyRɥFZo^{5]]&բ DvvATqz'ĝ8!&\$u$Ba*i.A!b*Xq*S+D"K۷oƍD0Ӳ-k=_EYw0C^)sM'h u1PoM$(&3+xx 4#$D&e,2MЅrqY5+A1'b(&XoyUzz(`^dHP$Z7AŋSjl>S)ǪL暔78ZN_.^ rJ5B[4 %y(X{1H;0Eb- ̃ ^&!1Fo^b}Uj]_t&~zma+!Fz^\"йje Rkqs~6.QDɑL78ӱb*IΫ}nܣ~{yH__HQ_W€Dcx}uWKp ѥ0F)rb۪JYvZJ$u[>kp\_~zٴijRUq0%DZZ)1 1A*7!ƻI1cUAW"a䮻J, 46.ĒS*v5tɳE^9FwI!F<[bTi_cyZCy󨱒K)cWKt. 1^Ms- eK4*CgJBW)ňؖrTD!1b-Rb ?BLNYpab)"& dO֭S5-;6,1ZBФ~TЋdr .o1B.1!Fx=cċNBL 3>~qQ\ytxδ^۴OgtaJD!&}!711abqi|Jůq1l:Zvs{, d, !!bbJ,po [fBBAA!!b!njI'M7& B B B -5j׮ԩSmӾl(":tSSp?P\bbLCBLB B B ^17 B B B $_S(&W-!!!)! Ka9B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B BLFx77o6ٴi@AA_Y@7nl*eyf͚lbbrIF7ll8 \gQw*&Mk a~[jر# 2O`k6 uuBiaI/Jb_K.^z.馛(p1P;59Ϧ@Seob dg@uuBQ&e!B BL1ZD/aÆĘt) :,_KꫯC9`C>}$:vʕ~0~m> -ryk}JW^y5 6,ogZr-/4͏?SA-ZǴnݺ]'C!ëm"&ʥDum /`rx.QmI~ӶtΑ2M[wٴ_d۷oVTYZt}zׯ4iRAJ襛.>T1hժ]jvZ[~vҽuBۓ6ڻR!%Ibw@V{}# 02yDw饗/^輝;w1&Əo~f=(Y!f„ 8 b{m0z-"Ĕ;6sE)pɕKufL>Ӣז {^ g2I (tOSM LӦMYgeUڀܛK$xEx}7Cen3fȸyݻi޼uu]!eO^\᧟~2-[,gז Ĥ!rby[n5F>*=?y8w5#FH#/hMTC(ItI2ixgEv-_mP6VuBۓtJgC)v~yG# ۑdqn9$Uc/!C*=<)7CuTUIh.bSo3{> ,]n;r[^Z'x+-[hH_IBPZ\:tVwyvRz!3gΜ?|{?N WN:7Z@n\ҥng}sPiי:d; ME^w*NR:N){ LyȺ5W4G՝Iےz>sxd3i$\[g?yd[I 5?x"QFp%I=Wy^ve_|awZV/j'IHӟsU[% q:3ƍKFOʡ|Z)V?(F\d7pC߯رcmϱl2(d>@A#FyxͺzYkˍ;ҶO<[ q6mlEΑ '|q5{=^۴>yٶ1tw0V]ZJǡD -쳏$ }=SbT>g}6JUiԩSb^z%̝[ȑ#5ܽM2,iuݸ'u]S:AAxe'pBVtz_7{.T@!&hMh\ӨgVwӖD'VgK2i=D^rq`KC 8!\NZ`Kb{GyΥ<ǕՠY$@~k6H9y3ƉkO℘6:~o-k!~O=T[?8//SjVPR]{V<9yQχ1i_ʶfMItQ 85Aj`R;3*\R9 CG f1QE*R Q?LLJVC\Q.ݩȵkδoڥhvmv\tEػ?QyOWrROk3gVKĉSbTx.Uug֭*aW+lW7tpf<WV<};# Ą .m{ړ(!&MJ(bJ!_ޣD17|cۋ$ut:Ε|1Ǥ11 ;,o ?r-$(… ?oFmf͚jӦMeR5Q bxGU4W^yUs)$- Ib#-Ž\w;ۥIjL&%>-Β=SV_sWk'JcZ]7,}׿n A&o(e"hT?Rumt*$gy&0rYNy\ݙ-IRӞTB}-Δ1Ix&i#v9iMG)P$.wibFKª*_Cb@8#. 1$Jk.*|Z)Js}{ qqK!B BLV,X %HZ$P3Iiû.]8>{[20HlfYYEǫb𪶥djFoZngs7 u}>䓭+֓oU % i{]7*IU7,\)ʇ|vA[ #=C=75r x;Nj젃J}Vҩx'>Ӂe)4';ڒ: sz'L8BL<SKC0IRV5r-Buq3{oP'd_ ZF'i]Zs z{UR{Z~ yI$uxBL!B BLփ4o;i6L2-#㏷ 5!O`Mn*raϮPkifUUoˈ8VʑbL&"Y*u%5{֬YsK:jt.HfдMaR!ƛVq׍{@A jtJmlCj/-UI" 4~W3ZG@oNT^ku-Wg\/I* Drqj)Tp/ER/!F4Ca{_BKUJgU`.^Lz]c=7JThDnf .u3Z,icVQ׍{Q1y诂zgq-{A)ANwu ;Ft>xR:CrU*-ŭ[sQNyXݙN[UdҞ{}e:6iU3M\ 1IlS){>zbrYWĕUŎMi#7)H?/NҗJNȅ՞CRivX=kj5˧Dt9[n5-2o裏lSNk~?7O}sMexY;_RW<0itE7lذ*\xfݺu?6]wu]Ns-]weAۛG}|'W^yZNC϶^nkM~!bϵm6tRӦM{~~͛Җv{T<>e[o>w}qoҤ/LN?㠲v͛)-?~|o#KC}=ȨTJsY,V27L￿ZEǻievz2*yquf)J̿1011ybdcݻwo{N8!wTQFf &Bw:ӺR;swg۱cGvZsgf.qBO/䱨ԧOg.]]vM 閛Js7lذ!%vDرcm>h)CΟ^\Wgb w!FEov; yW]svD[q̊+N(!FMa4#읩VڹA]3ށ~4ӌrйT0 9kuHf 1ߠsh=FRͮG+?Qy,O<.5,{T$^^]78q!37N 2]ߋ;D{6Qy,<:ꪫR-)7ݱ~jE\h)ߕiUvk˨rWgr 駟8@ꫯy^uQӗI Hz/ITQNc`Թu;~%J~9/u o߾;[2D 4Zli?]/!&yq=&Md,X3*aDs=JPl} ԓ-:ŕ:5 Ad9s.l ?@Dz^k^B B B @٢ZVQ.B B B B B B B B B @)J( B B B B B B B BLQ=zD`J(;#x B B B B B B B B B uF͛VZmۚvڥ:ɳBn̰a̘1cرc ƴi 7nBsc̆ m˕ꫯ+K֭["CJ%QND\xfwݻw7\ros9 U5UqD>~^~}΅m;!!&/B'|l?U"UQSnܸ=c =+07xGqC 1{-g}c=R?ps饗}~z}A <^{͞gٲejШtY^cǎmGu/̓O>Y؛n>m۶Er$' 4(}YӬYxkÇ7[nbLb}G}dNSs׼⋭jyf<̂Vd?YbEl޼yB2l0sUWY13^{́:fȑћ={$Ⱦꫲ$ba}γTyPtSb`*^~eҊBzE_6tP*[oe BiTȣD^"ڞnEuδh =wH(@9q)pvI'dg1_E>ԹaLZMadKw^( . 占k&MROH$Pxߏ7Ib-uW[qCؘ:FK%e{X_'S =PAII$at]vY꾵L/Ib8a&N :ߏ^!$<9V^mAx5j ~=[t N .OzYq@8w%+nРAY_Ĉ9 1A]^!&T BaSQK8Tv UwqUerP,ܹ\Y+J,E1jXMq=zm'x"KpiD('4iR` ~ Z~Jj]}MD`Sa}~a˖-M "")W"L)_r4)Q+hZ\ 1aeB:3eiBL 1u\kIU0W5P„6FI*2)q6XoЛji\j^km."FQXM;בGj P^B`d4s̱/aS]]?:nIٸq[V#> 2:hW.!FY7G7"L9_r)xG:|-M򾢺B zb"Xif 7ܐ~m:9zgBh-ZȜz6Ί S%JHr*]]WjR˵Mq ;w,__=fnW^M5ڦu hFDVޒ0ZoD[x}5@1.>z;`6Vo%&nmwb$hW.%!FYgeKr%”%!&~Wx*B[WTCQ^q~11%)ĨKW%䢫SDk UK_|} M^.sR~i̭IT.0ѺWo M]G>wEFԹhԨQB"5r}ҚR﫪%pk_o#OQ&OUJ 4 n'zfU?R}ZFP͛Wߏn 6p+ʼn ̔@2ǑyU:~FIzttSb0ĈAA0"{Z {}5DK"y睩7$cx$K6lؐgmI111~05=bxە9(~L晕` XD-+s%ļK| /4 !!&HQ/u!Ʃ5Mg%(u_'EA+o@AAA(Z 1p1111eO7(ޔ1111KӦMK`^H(wƌSb " T Æ CЪU+RZr$$uq111BmJyb¼abbC*ܺ*yS)!F"LݺubbbeC͛7m۶i<}G9tBP˔$:o1Ö#! @@A@AA@AA@AA@AA w5@PBAA@:=({  b({@z! @ * e ]({ @z! = bbb С9RL&M ^@]\^WP7P6H/@AZiݺpt޽:ʌ=1DرcͤIȑ#Mf*J]V+D *'O6zB~Ωi寋NjQ.] v|111@_;͛773f̰e{64F2kE 1j{"15C 7nlƏocuNMb=PӣG>gmzNë!!!hkxBBBۏI1i 11*u!fРAmu5ƍU r~My#1I1'ԩSv\9ZwGz}:u{#vdk/sGc!xtٖ &ڨQ)ST9+qtMiӦ'T3fiq߫ӌW!6>..O!&npO>uA\yY,Alu'11be;22qg f+ e`f\rR2ʥʮV {;U璫sbƈoiذmDuOj|թѾv4>.1o߾oA@~lJus"W58mu}w&mHq@.~1Xuf!ϊo5.ֱr(POKü?I0GAZiժPN\q=CI1ʠRU1h2˜R@Ee.㪀PBL5X:;UΣ 5d4Iq+&E 1IʻUU}.' .$f}V]꟨O]^7yũl2D!46M"Yam$O7 bbbׯSDʠfb4s$uNbW֭[j6)SC% 1+**YT)GI-!ݓ5?>.9BL:](7k9QrNֵ}WP7TFK˘4rC\SiB[?ڴiSQ H8!&I0GAZ¯AUoR2%), LvZ D  Ĕ**WEz)OEׇ}7TȻNtbHmryHհbtSuq 1 ˍ]ߤAGLu}whڴxP$WeT[>~g׼AaBLT}+Hbx911yb#. ƫBJۯL Bб*Dni`y0BXFVO$0"R=mdy>5jW!~kY뷫#?}Ր?uPWT$-NQ#G瑫1q,uC‚2_BCN9%Y:?%Dގb[z~z{" ] T= jjH/:PH/@AA *P({@z! @ * e ]({ @z! B B B B B B B B B B B B B B .}ʖӂ 111=<駴B B B @zhY|u_b^isd˖-G5yYlU~!-4ibfϞm[SnN:$n:i&3o<뮻u<>3[n5sέˊ+̍7[n47 407n4#FH}OW_m۶@z 47nlo*3ս*m\xeQ6Os~^{QG>jʬ_ޜp ]ǟ}Ij6[M7df͚ܽN?\-/wq115I͹瞛aƦԩSbD-K +m#-{=X;{,L5jd~isG>剣ҴiʖoE77Uj=+|XBʳԓ-Ԯ]yHh/LN͠ ͛7OK긨}V2N7n]O-|⋫-SslLj\):,YG=#ڷoo}Q1|k:!&ABL\|~+tbbJ,F:tguV^D>}]tvjqOy5qXk׮Kܱ/1cȐ!?Zw/o^z4рV<Թ0aB?v50S;cw_Ӆo܌\QB_T._z%dIwKD1%F)R(>wL I͠1aMwi:Qu\\zIŽS]_+ŝO`LGD 15Ӽ6 M$:F埠1a=_Bƥ+tbbJc;z;N ;ίzcL+S sO;6LWze˖^+ 3w_ӅGw9.ĸ@_䱠j6lPxyȴlݺ̝;~/+V07xcnݺ4hlܸь1"=W_}em۶93hРjoܸ=FrIqSz/O;4SNyꩧl=k\2U2m۶57ׯ5kaFYfn0پ}yCpXM6}1xVF}f/Icbbbj4NG閥KW6={v&L<ټfw_|Zþl2s^{e^ysgDd[i7lSϧrQGeWa֬YO>69蠃qa(U!c/5Qgk{ڮ];#<ƺQ{衇.]φΝ;O>ٶwrcĉsαyE殻2ZZ}4%p@:'_}.Qٟ>q騴$ TSݧ'x9w}=ӧOP~H!F3cǎmk)gu{ꩧo=y7_ӬoqPE1v/5RPM0dt„ _.Zk4?M&9: /cu]W͕M#J,!>0&MJΔ`S+}l6۵kWۡ3T qk׮5gyf^x̘1_|i޼,w5)zJm)VZ.fŴOUu:ud;Yv[Xܽwrb;sM 1R_z%~\OmѣGGv / \åFJNW_g5Rn&QQb4ybΠՓj7lPMR Zm~&\aÆ>W,E M*)VM7ݔ:>#4 Nc?|GSKPYtBVUz~l̮tTX^ZBAAIDi-vR1/N7.B5w}sA4OkAÖm^T ~UyISB{mE?vy8aO\pMg)P˻K\pAm6Lڵm~S8aÆUVf3f̘WT'ٟ/!FqmgX[/aE-%Aoֵ; -MJrQx 5t12uTNj&(aHFP 0VQ:}4 ,AUSQF$3{J9siӦU[Š0Po0OfB kW^Ґ aÿM3T{r̔otG\vRb׺| w(!Fw}vSnIdeP_BcP9~ټ꫶N0zΫ&$aڦVU(lm;&dӆ>6@9xo'yL *Wq e>gKG-WR%S+ u@W$fȆڧZhdBCֲeKTwkŝ\Gw9.f(38r2 yC;t`ϧNFT@mN@1 /_nWVj6jKenʾT㮷t=S4[gm~mxBLT'G^rC>]mM(&SPW ‰3}ץV1(=8^kbbbBPEגUu*dTB, 1:sh] $@Ur=>{;9 1mF&BLXG͉'hE⾂JtR䦂a/^xARPMTUV;k$;sDN:oG B BL1r޺uEkQՁ8+hWP0-}9TBT`V5:*pl/]!F]we JaթcUys(E͚%w,3gδoIprFsN) 1ʯُZ7k(-]yP^_+ozNNrIp`CDq݇?@T9B^g lU]MƵqmV}e}?ߺ ^zioӽҤO~l]S?(u^xމ9- hzfW$Ego:guNMB s 5{:@~ٕׅE@@A:"s5{7h#@!!!!!!bbbbbb!!bbbbbb!!!!!!bb*>}Neeis(.3W]uټyۦM̕W^iYB B B @{y#Ois(.s1qvW!!!ueՁŋ-zE6dȐ :4ó([lbzQvݳqfٲUᇴ(ojҤ={oMݺuC;餓̺u`d޼yf]wMرyg}fnjΝ[m+Vo1p_n̏?ho4h`6nhF񫯾2۶m4hP7nD98tRTW=_ϧvSN<+op|9mΑ>D1%m۶57ׯmۚ5kaFp=X}q}*,Yb vZ3a„>uUW̚鞵{zM'i%;$܃+4Zx,$Hp{p( /( W9w߭wU]볞\s>߳qɛ7̝;W]?X8fUG͙3B  1iT{cbžݻOU 6_^u2섘=zիWlٲp|ӁiѢZeR]DF}վ!TR2h Ρ;KfL=n' \llٲIӦM`Ӹq$H\u&#GT1zj9{llڵk+cǎY(\4oޜB  1itaP|޲c1ׯ_DrO߾}}@c$`>3X^x GXR%c!CdŊFKdʔ)qFoݺF9v/ARMaBHJb3ԡ)Ĥ/!Aw$uwI׮]=bl*x/>ˏ3Fy$Eyaʓ'OO?$zbh 1WcTnD\1ʊe7n('N [EC|-ĸ]p \CVEvq^8 &xot8N πӧOpWrMvFVJ4UVrN6>MT*Imsw݆AWKԩҽ{wW#9 1b2Ov--Sjt ԕ+W>|Ç; $8BY\&ĕk#G <%K*Ce1nnݿSc)]BѣG[vFypmֱ#w|@ӆ3 vF[q0lh]9a@A˗/U[kZ[A'g۶m]bBC9T::w#-2… >.?s1b[-"Yms1a9CVEχ؂h/dرC N5(_qîq㆏b^S/ȆNO@,i;vLu"B;v6et&cƌyCꫯ~O~rHIO,!! S?vӦMFgL-ބQs!u'n@15u` De5m1}tӧO8SظM9`#["޼aP@tԶFYxAPF /SC! H΄B?( 1(7oT[l6?@b9TB;m? 1 6)] &62㵮hhM#NFv \5^dօ.#UhWY?9uꔪyF6zhm~b&>: O³D@㳫|$Dm Kmb4o0r:vC@UVUϢ5/]=J?sk"@XE]coͶ狵&x>:H!BLdtpE+d'f`2g=C0*mdB V PuldB1Ǻu_nOB\eNJb%F̆aiFq/^"')&w F(۷O}ccWY/A[I1ӛ7o#z 9F!2zSh[&ԨQC@ &8YnB ^k@xq'{y`,!ɶZWI ύƜ:6/Mzg wKl­[0$lkluDfQCB  16Ge̡0FAWLf!bb6 cHR\t&~ @T%B2tq .t}mOzRlRO@>FHy on W!_GҶc}Ɯl*twڥrI>@Ɣ6=yY5#po ǎC!x '^ׄ_&&+Q3 dt8bTosBێC!Nl^"&$[&!$aoVUy=hB(PƚB!$9Jx-hB(PC!B! 1b(B!B!b(P!B!B(PC!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1bqOrJ!K֬Yeƌ))""BM"B!B B?(^p|]@BH2}tqNkE!B  1$5+Pw'8r@BHL׏3Ag ! 1b(ĐT˽{bŊ+U{3&&& r-'OW^I̙m./_VK,Yy%J͛7Ǐ2ow]8 O?oժU*T& иqc՞&ž)U;z9i߾=2?mP^=e+sΕk׮X{Fb\ǽٽ{|:tH+}ϲ7n['#BBBxtIv)_|:u*Q\j0JT#\p!`H@uis?/vO?$zbh 12tPU=x@y` vA}ǏWXn-[А/0Dz)W\Qs̜9Sy2 .Z1[N!h8EUFeq;vrz7oH $^jD?F/3gNep3 0g %3sb5 ,¡ۆlV!'BHJbFaPe̘ѱ׎[uz5ldɒj ]aÆL&M+[slڴI `~~r?“IǬY]1gC{dG;f7N*UX$1aaaRjՀց}myFb\$~bVxx as#SC!&C 8DeʔQ rJ97Ο?/Ç7=|2DF \wh aT\ruc FF0E׮]C mGt܎ݺV!,R<=B3 Xh۶QdxhՆ- vF6FN1`rH: ٗ/_*Oc뀎WaЖss@Xw.]d͚5edر{>}n3">y&0 @779'+VL "v ~sȡE\,>wJfGB\A[PIl%sgORN <~xes0?\%KH:ulp%kNy?Aj)P4h,1Ҕ5kVb՘a]-Q#T ##jrtׅec_!Z.T^]} SVbnڵ>;vLNF?Fn^Fg0: ea!!$}n2?1=bm)[PO2mF߭sbw;:i:\'ȅvn 0֚AAt0@)䶟 b?z ҝi9ّf 0{^HZ ނhee˖h6"yX3-;< SC!(Hʄ,0͛7wTM3:4ğa3jk>F0pPAH*ۿS(& 1 T`}…~ BI{I~~r?:_hK9sHK&ޮcMmFb\^狵߅:l.RnAFF o'f`Bu^ v@ (ҮM612aH]Vݎݺ/V!fk2A' 1#kfupoӦJh^xj{hַtb`t߾}; bs~rz0F|bz`$WTAtaPAx[=gmRt&:|6\ۮ?lVa<胎-b} ظ7'lWq#vCZ_'PnݪX⻍IJ;?u~7'_7Au 1b~3*;|jBN뢲D`2 11*m8qHBJ68jH gpC6B;u_nۇS^Ti(.qQ5@޾},!NgWa@xDH4X 6gw* ::nt6?) Pcކ:ǩ׎[tNsɜ&vݺ/ax@ɂOHؤ]!_!Ύ@ !m{O›pp` q3:e6lNH g-vHf1)CP MC!%G 1Lhb4,f NFf / BmpQ@ t}B0gG/r9cxjNJb%]'Ԇ/%sdnX6lr~@ųin蝌+NFB 9% HMS9$_Zhb~kq|Lr$0tP?"'z_;nu-&-昽40sNڮ[`hzL-۷8'#_$;;Fj> M8N"I\Pς~{Y{8m#)l.Gw?۟k{,{!&>v, 15\'=~5|׶ ! :-Н6$۷W3ߧQsx e# !j 1b(Đ !{po~ xy Ѓ`N# !b(6B!׽U?'hGB(PC!B!PC!B!B!b(P!B!B(PC!B!PC!B!B!b(P!B!B(PC!B! 1b(B!B!b(P!B!B(PCHjOrJ!K֬Yeƌ))""BM"B!B B?(^p|]@BH2}tqNkE!B  1$5+Pw'8r@BHL׏3Ag ! 1b(ĐT˽{bŊ+U{3&&& r-'OW^I̙m./_VK,Yy%J͛7Ǐ2o3X^xZQ[R%c!CdŊFKdʔ)qF-oݺFu=m;f> &0!$ 1i 1}BNvfsOҫW/OKL$̶Lxyf(PcbСr{P*tE 8`cX~͞=-[ŋ}o_={+WȡCwܑ3g*pJ6aݺu (;wEyF2NmԹuNOBLr=\ٛ|@rj,p/FoߖF/3gNev(h3b(Phٳ2T@T7oT[l6†?π;cd .^|w~jblRzc%F_vM#x͉&LF/|߸q^߫,wV_9dDH"&tQ=GhqXB yxФI%W1nv875Gzٺ6І-ooYjժ6 ul.xXqx˟X6ImLPC!&[v**cF Y7nlC,3 ]G2P!:^X@iӦ>F& <۱[*lU&#7# M6r /G'2&y F\ۧ2燱+Iߠ-Ť͛7\ݟP"N8nv&P{üxX.YSd?K^ax5Ns BB8ޜd~ 5^3/Tb\$a33C!B ߀ߡN#i6 t0pLf!"a PR\t&~@ta,! $fd…*\;u_nG#S^Ti WW8cpG۷qxq@x~&;A$zu^x.D-mkB3}/_^嫀OÜ#_lmsdg?ըQC?g70BS wbc}1vMb\)PBH: $%6 믿MDM!V pXE!(P!4$: I$ BD!B BCB!!PC!B!BC!B !B!B(PC!B!PC!B!B!b(B!B!B  1B!B 1b!B!B!B B!B!B  1B!BC!4' qDוBYʌ3$22RSDDL6M-kE!B  1$1?~\BCC+W}Vj֬)ٳgwJf͌pϟ?Oz u+W. Ή=w~gUZի8p ͶH"`~ϝ;'۷G^myܹsڵksO)6Ix=Mz(PAGwb,TW{ @ӯ_?_^u2섘=zիWlٲ8rOþw^3g@U&'O#F *gŋ<=x`?^Νw ƍJL[hc&4!//i!TR2h UҥK#Rndȑϟ_V^-gϞMq6IxC&MC!BLzsT b|)_qӷo_ue(@Lr>/^FhTTɘ?dYbQp%2eJQ[n)Q`]O r옽_0ڌ,Ä&,XPyAVPNjg…Ӵc!d Ib+Y#LyIQ6I:ϼ܅ D!BLcСr{RaxIw^ܑ;t蠾cǫ7{lWCT[lQ!Uk޼ֳgOr:tHw9sdxr}J6aݺu w)EUFes;v rz7oH $^jD۷QFƳ ̙S5":u5 FK0gHj`Y$ VZ9CObݻH:m߾}껗vnrv'nm]`Κ5X6I֭U]PY@ra̝?{LT珤;wFK)6.|Xﯾ#`TT˗OF *Wl q/P`xuUh%KTm=b܎ݺV!lR<=Bk%G߶m ;b1zO=v`$nBBBc9Gk!B( /_TmUhq_І'! d)>B̎;dĉ)_kd#GU'~ȂoϞ=h"cy7`0 > AY$-\ūdf̘1?k;esop ,Y"uqq!M!B ``A( $bҥaNYEtR-NժUэva8VbiUّ\IBLՕg'ڀGFM׮]cǔ(dû 6cǎ5fd̘Q=o(_}O?ؕCBH]v2?#o޼bŊz b1B 0cۭS:e7mdtt sdØEDHg0(\v"Z[6y $>]۲eK 1b(8ЁFbyB 4CC ?.ck1FPɛ*ۿS(& 1$`(dk]a$97'0a9u2 }ƍj.z}n%ߑHڡWY?9uꔪ *^=z6?Fr^O;65m.p!zVF=keنbI/j+9ʯO)6G:i9MH!B No٩ tpF+yƟq<+< BH* ^V@iӦ>F&k۱[*lU&t!^btlMa@mڴ7n,_xq=NF uLF%yt~t:a!%B0c'&x8VrufBȐ7E ukhL!Ɇ!i@m%x@lݺU$d;esZ9-]ȿE!B `w" bQ 9& .Ɖ'DNp DtRM6H 11R735 *GGt}mbzRlRO$Ӎ3Fc0d}vYBqo$o _љ BjSFaÔ"s6rHIń 3এIYn PCΚMiH: 4[dX1v6 Bg@x-Ip,Gmذ!N2`s~TrիW/UKZ % 1b]$2qպL(`>THe3L  ,Y,@­1*h|4P!޶BpcYtr}mnxÂ5cxJ燜NJb"F?2&xAÆ Uotlz'QP..ȫr ǁgӚB/ARD0c yYkiP/Ëխu ~|Bl5jvۇx I8J2w:ur\8y{^2~~  v&C!&H: $%6 믿M8I!0[6І! b(1 K^ׄ|!І!B!B C!0B(PC!B!PC!B!B!b(P!B!B(PC!B! 1b!B!B!B B!B!B  1B!BC!B !B!B!B B!B!PCH"z~ٻ?B(`RyQwq(cy] !B!b(P!7V$GMñb!Ąg/k!FD,G˭QB! 1b(.i;pW_+B mLe+cV '{!cj5KB! 1bRs؎ozѣG{IŊ@| ;w}KxxʕXwެ\CycD"}#?ސ7,% ^~#VȡeX,_}9 fvx] !B!b(Mɔ)1Bmѣ%sJҤIO_^ %#^X20p[ի׼B! 1bEI!PBJԀr-u3fT6m$SL19r`ʞ=%Ky.\X)"[lx4og={+WȡClիR~}אmV0I˕Ń+!B!B 爁_'䅉65k~7nUU&wQ u]N:e,{~۶mƍÇ;Ĕ(ɗ/9wT\,@t>|pez\I^.g(tx] !B!b($J^bLD@=b*Tč;wyU"J`ry:t,]T͟:u;VmBy?^5kkVZ>_*׋=`Y||Rvmc;v0J*ʳ%G;3x`V.?Ƿf)3Qiiy,K!K}7R'+flוB!B!BL 1mDVT^=C IHHd͚U]|YZnm,$B],s_hh_,a;m^b… eڵ1$b8QQr9B-Z%a#H>_4I=3Uٳh|KDXDL%צ.u%B!P&!/~-[Vv-=RbK߾}sMYf`BhѢqF+… aã%P!q! Ěpi׮+$O"SCg$0ٳ`d/8[7-ȳ؜@|ӧ<%,ٴ<ڽ_ -g3Ou%B!P:B%bz};G2N?o:A~|~Ȱrw 8w +!B!B  1#|ٹhd(D(! X9 ȶB! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B  1B!B 1b!B! 1b(B!B!B  1%z~ٻ?B(`RyQwq(cy] !B!b(P!7V$GMñb!Ąg/k!FD,G˭QB! 1b(.i;pW_+B mLe+cV '{!cj5KB! 1bҷstzѣG{IŊSq~Z}Z6lg]tyɎ;Timᅲ &3PܹsGfΜB:,Xد_?yɓƌ@to౸zjuدȜusz~@bd֭C9yڧbsE 笗'KCcv *y>"B 1) G 毿:Dm"/ j 턘+#jժ)C޽:uXȑ#jm۪ߍ7VÇKw)NܹsRre?0q#&~\P,m!&gΜ2p@U6fZ6Q7\pVn~Pu_׮]U :fo7Z.yرcyavq>sQc6 Cy.]Z_LCH3!B!BL IO G F0biQE6dq)PJ:yy5btR5ԩ`LNNnZj u#x9. 1_^״ǵkTD˗/x&:&u m`< 1^VY"˭^C^]v?={&-[=<@t@:usm OM(`y3x2^Zp7%pOv<ݞ}8GcwݽQ_z;.B!Pޚdc)*Ġ=Z4baR$΄Q[D 5 s8sTZUmٳg}@b4N(΋/qp - ^4*:Z6̙#cƌQm3SۣGٽ{ٳGmuD 9b춛L˭^CgŽ9HIye_0# /O{: 1'OVJNBvu:Y7-ZO^5uz~7q^-4 NJ{& uwXB!b(ĤWCh߾m|R1Q`t >}~{M9 j׮m;*UDmzIt^ 5ɂw?50LYD9/wMN{x/ /IH;tW>^״#!{-5jP2ڸpB_ݺu$X˷&Tq5D׋7r ݶke˖= 1իWW37q`>^Gy=?Jη 1v˹}-[֯cAXszbB!PLi W!a$2$$D.#4Һukp!*bEBBBGlڵ>Ilj ȕro* 9Ez,INq <{o{IR:c[i_A}(xy)\96mڨ6zرc>B^r*&Tq5ᝁ>/CW,[b[ {! o$CZ;8'GH5Gur[RJjb DA獄z;]}\C! 1b(7HAcj߾}sMYf`2@@Gt: &:znDž\0~|VVSdjay|&{lg{&ֻyVˇ<}LY͒M/ȣΠѲ|ny?T^t֤QVZ΀'ފÃo:Ah]dWMVw9yAa?:oݶ7'a2{JKbq7RA]\w$՞J>Kbbb f=t{~' }3xB\N:꘰}۳t}o !ynw=q!B(PIB !v\.C%9ҵǦXq?͋pQQOz{(awrq^Wӧ˷~j_zz!B(PCAsNQӿ?QB@.rm/Ƀ;x]Iaŏ?8Ul7x4=;!B(PC!I} #lB!PC!B!BC!B !B!B(PC!B!PC!B!B!b(P!B!B(PC!B!PC!B!B!b(P!B!B(PC!B! 1b(ĐEw/Q~Rå[۷,>*Q./BH25kV1cDFFuiӦex!PC!$ʟXz}y8VTY,{;e z_%hbu3וBӧ4uT^+B!b(P!$ 2 vX ({ʾw%_?/߿PHX211o2V^^.^XJ! ^0կ_?μ 1VB(P9~xlGƍJLT/ŋqGnwJJ*% R :LStiԮ][ ;vܹsK…y*TH^{U"SZ59y1¶mY-^X̓߃VeK]Eӭ[79rS^ZΞ=}FN+W4[lҴiS%5nܘB  1iUd7iׯWMzr$^fY!t(wީUR 1 T*T0 D th`V#$O,u;ڵkO 6{2DVXa[\tIL;֭[ -RW^x}/ܘ1cXN!B DbˆvƌռM6TP[1Ao$u -[T<;F̊;ٳgO:t8Xy5jaa)1xaY!)Ġ=5v֭SorEt0ڊufkļ p>}گ+B$`K8}yIvM2qD 7|p%ܹ#fR爐ٳgK֭Y<±?^._,!6! 믪s e$&(Kj׮\pA *oy<'NPky' 뾀]_y_1ToVŒVWo~Pq,Y"uqQW`,M!B {=F9 /]i)P*0,*K.UZͱcǪX2NѣZjG:Lp 0ƴ1v\M"AeBt&/e1쯾5>SeNqJ{MlbŊ)1`_xmV{&_5 = aݡ9̂u.]UV꜐e$36(ohoӧK>}Rӷo_!vZU';vL NB 4s_^^$^ `y{ 1b\-[1k.5: (Fz`hP:sTZUmCiԨt^+= 1/^p&6)l/XV!$ w)&t51zhm~㯍ѣ9 zv GAkpwGHϞn6 y9][~Osg1l]zrM[!$C"'ƄAUQQƼ,lyws=<%w'LĜ|߸qod3zQ?p!QC!&B $s3TR Pnʾ aaa7Q5qz9.^ŵ[ΔENKԙrg(ٴaY!m$&t4!/aDf1EOX[3`6"6f0* 1b( Mp j#Uu^f$Lp!a@eGbbaiSdjay|&{lg{&ֻy3ˇ<}LY͒M/ȣΠѲ|ny?TBIBփ| o>&a-H"6vv䔀q<!HxojOs;ַr1yk/m?{Ÿ=`g9gϟ $$&ŵuÛ0TF ll`@a"$1:ӦMSQ1f;3AoذDݕgŹkx] !$H#FaaY擔ScBIoPCH |ٹhd(D(! X9 ȶBBC!B !BC!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B  1B!B 1b!B! 1b(B!B!B  1%z~ٻ?B(`RyQwq(cy] !$ɚ5̘1C"##:EDDȴi2VB(PCHscOrd|,<+,߽BLxb|L/HDy4{ܺJ!m:u*! 1b(|uN;,O=e߁Zݟ_(ocb$,[jU;ٳpD+//_Uk_ru%d^/ׯg^ ^+B!b(PI?~<##^2x1޽{Rbs_'OۥRJ~?*6&n{ʓgXoZ͛XOPc?S_.ßHۍmBH 1bl*Ν;88/Wa\<{>g9ʚG$r7Cq y+f]R7mI:^^՗c`leB҇͛*B #G j۶mb̜:uJ:tgw$MUT)4hy5:ΥKf" zN *dݫ\tЫU&'O#F-ŋy{}4(>L2~3׫kOHqz6O!B 4"TP؛4ii}T@=א#L% ܖ5 !!モI&%gGjb)Ŧ?GE׮]xs}Ȑ!b [ҥK2eʔ8[Zq`ݻwJN߾}U-[lw} 1b((@q#3y6mDG $TjK"\ .*-[x/J}ٳgOr:t8Xy5ja$#(xaY!/ĠFF<I;w̙3UbGyZz&e˖˗bŊ֭[8F 1Nggw\YfmҺuku>vޭ)v`ubtمg ދG w@ꫯx lPC!&-[iԑk.+u@1*DgΜU`:{5v:N/Ǖ‘lϟ`Y!$&t0zhm~| ezbmf *,E0O6A|sĸ鼽1sr;9jB._zut|0↿<BI:FbI'͛7}m'HU M7\!tGy=}"jWqڏy;Sp! <XވxrԘ!͝;Wڴi#7nYxjxS8 11b`߾}wI X 1b(YAHPzD^&D,7Bn#y9q QidHBCC A!K~@/ǵpB)M 1`\!Sg/$ѱnggjVH4KM],3ŲB!I[LcƌQ" 1!' o:ArX1jW AmY|p.UN96 Բ;bvsBMu8 1!xtM4(2:°pܰsb}> i#}ma>Of!&oSz 1HqذaA﹗:B  1Ab2ԏ,TW5k&WhQ~XN 6W 1^ yd iSdjay|&{lg{&ֻy?2x%6_G˝Ae~,+ d ~1  F2`/ agҦ[@xsj/H⏷&ovo^8gw8D(~@|B \E5jc;0Hf&>qzNϧ6l(TC 5+NB'!!zz! [=RPC!{.^cSG8yߟ6X>oԘ׏vW!u%$AFG6/ bBHTt 1bI!;?%Ĝ|?r Gٶ<ؼוBC!Jӿv;v36^L49c`0`1`&U2 D0lX$,H(~?=g׷uow߫PxWRNO6 1b!BCC!B !B!B(PC!B!PC!B!BC!B !B!B(PC!B!PC!B!B!b(P!B!B(PC!B!PC!B!B!b(P!$#);"ewdNϷԃ^]*O?k! ?~a?Fu/"R⇎cB3H"2k,'3fP0!PC!,w?S%1|5@X?bb4} +qKrJ"B13ge+B!b(P!$Wd8 7FL]dX)]ypypy&Ek=V@ ˮ=8uIV(,gB3^/X7oa[- ! 1b(ds>>Oܾ}~ [nIÇݻuVW0EV[R:1f܍K{,GJ{„I^;ڄr{A\+-o5|%g^̛7ON:%ݓYpaeѢE2~$KbŊ.]$;uz(YL:U *rѿIII¼ۚja ciܸ+VLbccuqHҒ$f͚/GޯTRŋo/vB <+tŵYLY`2J(xߧO!|Y*iey.f]*\GeQ6AGHʨt/%a]!!`u5N:A:tڽO*!M&!Zj2duhtYx<֮]-R.ʗ//.\Px; n[xچC[iP`|~>ѣ5J=V\)'OC!BLnbٛ7oj<:tykȖb*N?xuBɓO*!M&!כs;{rѢE=@Nn=bΝ;'ӦM ^zU'O(o>Gw9sƕ̰B  1AbVÀqȑR@mÆ (R,P^pa:XBUQ7mڤ泟={V>k[Ο?/N(z]FmP T:+טv2{lOc:13Ծdo}u;[7ߔ͛77GUi&ĸqٲeq5k0 ݾ}TTu~6L~-VxX<3gsΕ۫a{ܹS_zo„ *8/mҠA<\iFVXʷC_C]@s ƍ ::Z~mS0gϞYw^ډwb(İ??t侌HenԨa8a*cnj}<׮}?p 0@1%11QJ.֑;_񛹱E>beTpJW^fa]!}'ߗӧOgZO7\,ϗŋ wn'{$qnś6ODDD){ /UVUB u 6;w?jԨU06z9, HڵKyg;*U2|NXч)!bܖ #GHr\ 1|r%jڵkJ%A\Pio^%KHӦMm2vX95B `{ KR0(t ClٲE8K.UYqƩ0_Z›&MxlG`0,hȑY1&]yM9AuB>'lжMkDaƌ}:u;[۬F 1n=ر'>8H"/e=ձ0owcbZvTz8BrxJ}5^bt ލG <~7|~. qm S۶mb1 SC!&B *F6z}ǎE[!'NPnm8s2ӲeK&]yIlI.*8ퟚzuBxb@ cƌZ ^`Y}~__T%>zL ױ,l o#MgA x`ZOу6p~05{-[wT@b_"N\G97Os#u),L{NM8qk_@2{ιڨ@Zb(Pq0,аx0B톋^4hr]~{5>s5Kٛ!&]0[qEfˢe%i>xlXs\Rk RRReO$%6^bsvK¡a]!}$tb΃uإMer$E|TXBGM}7ʿiX)jvK\tM#/b]!,onXsP^=[oUnn\'![l=u6u *W3FN!B / I'{cQvFڵU\|5 u_B_~GJYrUWBb`KAVi;!L"g 1 b틶K7Bw1փ^6c -[ɭۘBBC!B !B!b!b(P!B!B 1b!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B  1B!B 1b!B! 1b(B!B!B  1d$eG쎌2Uz«Kr-O2ިNEDJqWBy)RDf͚%b]dƌj! 1b(\g9z$ߑHU^BLLbvO{%.tܞX^IdB3f̙L>yE!B  1d5,ƈIk++?.Ͽ.$h j(Q{G'.Ɋ嵐WByK3lkѢü"B!B lÇi۷ooܸ!u6|ܽ{Wn*3¿hj\ _'7Lq wto\)RѣtO0k\0[n/k1weƹlKo¼ja:ciܸq@.VJ֭]S|yپ}G/^%Ov=t%w}(4l%KԩS.Tyo|rzL<؊+… ҥK*NN:eͱ8d߾}ҬY3>;Y)P#ώBNg2ed#%Jpu<ӧObs,U Jfbrm班׿5_v*ZX{^m@Y~}߫U&C QuTR|)))RzL9\~KBB,X0@gsC!BL.bٛ7oxt$h(3ś%[8CBCB̹sdڴiފ^zU!_6ntaBLAbYX{^m@ڻws/^lm@{3`yc]FmEXz/P9谮BHbV֭[M[7cPܹذa?y=*u`W`rJt .[n}/;­t_ׯ_ٳgb: h~}kYF} o1RJAb 3g~Ν+۷W 6Ν;ajMޘҭKXpͧ܂S:tHw8ѣ$''K nsuZ~/[a~ֳgO9SC!K94h|JFTDŽPY;f{Au|G}8  PMLLҥKus 370*F l͠úB!Y N ߿/O 8mό] -~àڵkjFiذܹspOQ꟭vŶmdҤI׮]ەGS͎pk8 1X0]x Q8 0TZU =0S^a7osDEE)[ d׮]h"W!j9卷g T7~7 ӊ2X.j D.YD6mYyb(PɄG f :9n8u>3fI& :>oI1IW^bba]!>j7ۃ!ĠF VՍuǎ3 Ҵ]Ӡ*ĸ򈱊#a1c  ĵ`yĸ+5ݬoK4;)obɧ"ĄeڵSwms!SW լYIm6ijQ~$__ ֳtF!B ({1@gw4>h :N3KttZǼAFtvt.t΁DS ^-2[-;.'NeÚ㒚^+o*~:');l,[8 !d#蠓ѣG`=B;CkrExf,XhПcts zĸ3#8ݗ}O+XoժY!&/6h y֣!ٳ ]vjq#`ݞ={؏A06 1b(!Ġ| oQ0pX+3[!M [XX>b΃us&]p[zG\+ļ4IѸ*9'7QӤwߍo,)ANWY%.:^&ϑKksBH#رc7},Gq=XBL~ޭE*׫WOPa˛7o6xA7>}*ĸ3#ݗ}駟* 2b D $ 7ޞ[ϭM_y'YEWs!.$x~2wVeͱb0Çg?y?Brbo0WeQ Le$I``ڠNy 1((:1BJ^+<{wU:GkSx1kWHcb0%o }zeY)PCr3173L̓n6{^?):Abb]W?I|tN%g]|%,p@ⴝB PCH fHپh{#T~c=xűJ9Ji1@HPٲڸJ!BC!B !B!B!B B!B!PC!B!BC!B !B!B!B B!B!PC!B!BC!B !B!B(PC!B!PC!B!BC!B !B!B(PCHFRvD8)Su|8} &<0}ƍRnl·ݻwe֭R^=>C/afȥurct }MvY(iɕ" =JK vȵ sWZjJ!-M6]vɝ;w$99Y9"[<Ŋ؀fU:+V ʥK$55UN:%:ub!|rq2ydeϟr ?,̻Y?ƍg8id߾}ҬY3>ç~,YRNPBRJɷ~+/^_7Rg.]ܞ2eȂ $&&FJ(xߧO!|Y*iey.f]*\GeQ6AGHʨt/%a]!/TTInݺ%_|7S|yOzCU꣝nәV 2DgF[/iׯS.acAn[x!ZWcq񒐐  s r!]V=-CFlʕrI 1b(V!y|ǮGÁ&/㚽{}… \yt=0P49_ra]!/ĴlRݻ'M4ɰ oK׬Yڄ7۷oW)v?c7K0o~̞=[ }ʕ+?<0 jM>l0eSѣRN i5̙c\cܹҾ}{?줝;w*[IM0Ay?l*o ސ@Ws*qm+qQWcֱݸq#Y&ⴘ->ٳOB  1s`i`b"##QFʘAmǎ3=x:Cj>R!$&&Jҥ:҃9pԿ[.#FPt嵷bQ :+r B@ U4D ~ݺuSJժUaj"c7u^o62|)^' Gch!aÆ*VvQW˼y$$$D 0a{Ad} 1o-ZwߩUTQv~7O7XH0@@+{n% 6 T-^vM 3o]+ d˭3vX95B `{L AM8e˖r)Co.]㳚ƍSPb"| ooD o`̹IW^bba]!>j73˛o<\!!ر1d'M4y1ycT̘1CX lB SpvW5Q:~qm]zl@Ʈڦn:)1:x۩I" _=C_B D{(P @Ddv۷rg Rׯ{ϸ.jțq&]0qEfˢe%i>xlXs\Rk RRReO$%6^bsvK¡a]!}$tL` 1h+ Ә2B  1`8px`%\n157Eˆ[!M,[XX>b΃uA&]p\z\-ļ4IѸ*9'7QӤwߍo,)ANWY%.:^&ϑKksBH# Cd>u=P0AL0?] ,4DxŽBO⭟: n딦@vu {1b 4a ]ŠA & 10 s4!`[i>gΜQeudx8@zlW)f!&??b\b7!m"El8 1b0x`_wpOk13wYu.7!r£7L 1n҅82kꈷe/dzs.nbs/MLn(n d .=G6l<#wF!c$bNytBBڴi' ޶c1UF5 ɓ'ʕ+ <\acʱ]?@ܤ)M1v } c _ QD Idc?|RK^efPDs:\ʞ?*Xb0$˾{잓&`|5~C!B =#q3$z_~GJYrUWBbEpXE$k@,]BH\l 1b )mbocϽ8V 1G_)m!ƺ)*[[1_ !tUf|9yv%B 1b!BH130_DoC!b(P!B!B(PC!B!PC!B!B!b(P!B!B(PC!B! 1b(B!B!b(P!B!B(PC!B! 1b(B!B!b(P!${#RvGI|K=xեcR'oT['""%~8+!B!B  1xw?S%1|5@X?bb4} +qKrJ"B!B!B B2 q@n$)ɞRj+8-M0HK{]{$qr?꒬X}Q^ Y|%B!PÇo6߸qC֭mC{lݺUիF)/)"ɍ1n\7e=z$WT7x(-&Lz!&̖ "Z]i~q.k܆ʑ#GUVOO]rj Ŝ9sdʔ)^ߥKc\rr%8p`@)VJ֭ʋ0V-LC|,7T^ih"?~c?{3 B 1Y,ĴlRF?I,S,X@bbbD}a# ;dZpPO7͗Q(vpUɖG%~#+ҽ`x;]711bHJL F*q>{^?$$DO4)S:tTX1R| /^4!.ߟ !B!BL 1 #Gʖ-[3f*T(O 1:n޼)׮]+C a#>%cb*N?x˅ <9>,bQJ(U*Zm۸qDDDk[Ο?/ .H!da)'p@|B Գ֭(Y$&&JժUe͚5koac귯.]:Sm]k?~\> ڵ̟?_mۦK0|ׯo~jΧׯٳճ΅ ~W^_nݺ%YC@aླྀrJ\Wevymove 曲yfIHHGkj!.+Z,gH]8p@ b$!=N w#]ݴK=b#*AŋU,RcDp\=zQ}ݺuSz2=DY Of̘a+`ʒNy;,w7j'@B߄!B(PɆ_M21ab08-h17 CJ*+ĉo`9yR+.]:ݤBܻwϞx #R 61mݜ7o;V/l^dΝk.uNĈv^x!`@iڵcNmvӏ1= Noo f,v̩Jtiĉ;e˖yMsB;C?sv|t*KJn 1ͽ}ԬYӫc]=I]~B!B l*deM딠144T]Ԡ(i߾GEwxAub΃u_!M0[zG`G ļ4IѸ*9'7QӤwߍo,)S(NWY%.:^&ϑKks1_sPsS7[@5~Thg:!Ę%m=o0v̩J}CXps>L! -U{NH'w!H/ W~B!B <&⋳gb$nfDO'zmHh/ϽRz,c$&&>_~GJYrUW╙3gʔ)Sryb`@O/=;!B(PC"fHپh{#T~c=xűJ9Ji1@HPٲڸJ2 L]|뭷ry >I0 !B!B B=ry !B 1b!B! 1b(B!B!B  1B!B 1b!B!B!B B!B!B  1B!B 1b!B!B!B B!B!B  1B!BC!B [숔ݑqR:y>R^xu>^K\\̘1Cü"B!B B,7GO;b+C)VBޮ7pą.s+WBy̜9Sӧ3!PC!&_e61IRv={ctWqZDaXm%*|/H~%YJ!x`i޼ym-Z0w֭[^z|^ZmKƘr7.AڛP=+E?))I'͚5cK,)SNU]P!m'QQQE pb(P F眝2eʨ#%Jpu<ӧObs,U Jfu+q((Z1kƾ7ndmڴ+Vv,@LAտY1@oٲ% 1b1pECӠcFFFN 2t|cǎ= wAGz2`?ĔD n7scbĈʰ]GLT7 !d-;1>}:=P0@]vUV1X7n>jGl۶M&M> vڮq,?eW0Mڵc]3g(1 $(4G z3o]BCC30!A9r䈔+W.<\d4mԧ;wd8/LYC!BL=bԩ,TxAǭMe˖Uܰab`P)i(c*͟>)|g&cܤ_!&[Fx5Xoժg'i+#Xb`^ܹ3fy_^`:#겶SxJ,@ ~!~T+ou% xz^od 1b(x7 _B+""8 h~u1e 3Wq.W^g琫&)X%Ƣ=jQO%%<_e S:x|8?A`kk%e6 /ʭ[z_ 1b(dB0@Ih1A$E젧%@CyсGq-|u/1%9M^Rk\>b7/ OZ+vB #N Bɫ-BYbsSu7C!L )[ -OJﰎ+cdl|O+foW1_ !$8ƀ*8m'wDyPCH fHپh{#T~c=xűJ9Ji1@HPٲڸJ! 1 1b(B!B(B!B B!B!PC!B!BC!B !B!B!B B!B!PC!B!BC!B !B!B(PC!B!PC!B!BC!B !B!B(PCHF)tB! 1b(B!B!b(P!k+!B!B  1^(VJ֭>Ǎ7nݺ+… ҥK*NN:ƼA';oɒ%eԩ)T{*Udƍry̟?_ .-_\oɓ3ҥKc\r> 80C}þ8JRR۷O5kq%J}nWB!B!BLbZl)Gv͇~ СC !Zj2duRJI%%%EWΆ#K/z(B֮]{n7o<5j$G#G0o߾-׷bBBBI78%!!A ,hߦM*!BC!& 1$aeGƌ1ˍo/${q:^jѢE31 իgy#{M+h'a3=V2eȓ'O<_3c UB!B!BLޞF su3g\pA޽+sΕ۫ʰsNPO}<;wV6L^*nRשS'ʕ+o&[p5kH||n߾]*U( z!ҠA6ٔ/t={bPW0/^\ _|:$ݻw)tUMmڶm1[} 1hS ޘtv1!B!b(1c׿>UO,.)7VBHTT/_^Moصk,ZQiذ}ըQ 8b>A׮][gnݔRjU%Ę{b6m$l4//triuWSPn;tXL[3W"##X.vdߺB:Q絇]=&B!B <כHVcÆ *^lja'`]ǎ3 50)8;yo!ԪU G6triK[z*z&<1!B!b(WCg_;j!FO ,hp>=k50 2B>-[VjJ b 1=hHBN&|re}*WgmРAfqeĉ꼺bz-{QC4LJDŽB!PYE";!>}Z[r|  y4l޼8~VcSTxTRE|L0 1i}G}X>s挌7 Gvb/4!0eemrb6ԣu)A[L&S\9 3|p?^_PDŽB!PC!1M6UGBBzs:F̯*7oT ֌aڵk*.je'Nx@`)D(cɉ1b>"s(e̞aS DǏB̽{ 5!Z.X맵B!B!B Brs|<;eB! 1b( :ӲeK~mB! 1b!B!B!B B!B!B  1B!BC!B !B!B!B B!B!PC!B! 1b(B!B!b(P!B!B 1b!B! 1b(B!B!B BrE :WB!B 1b!B! 1b(xׂB!B!B Hb$66VZn9nܸ!uUWXQ.\(.]T9utԉyx嗃Nvߒ%KԩSRP!*UƍΝ;rM?.\Xm[| ɓ'g8ÇK.zrT98p`z}q.$ٷo4k|%JP 2ߐִ4#GVZ=kۄ`]swΜ92eDVHKXXmjՒǏKƍ3{}Z,ZHƏp:B!b(r!e˖2zh|ٺR :T (tUVM WT)߿H^z)d{E9vڵJH1 1wy)QFrQ9rρ0׷I&y'}qN ,`mڴQ=뼳uĈNVT)˄ H>}8g޽{.YXʗ/aŋն&ホ!B 1\` -[82fAcn/%~^tOEfb *ԫWX믕'@ 5Ӄ?oxDDD)SF-|m;~|~ _[~o󘦦Ϝ7hgϞm(f*kZϚ5K=3[vfW~o)7oVc(bwoW:!B(P1b`0}0X00aXGEE)]F'!aÆ*"TF ø5 `bOkV٭[7ecқ~S'ľBɉB a)G(o:tz,-a3EFF$v^ߺB:QW]J!BScy- lC^9s86Ҏ0K z;!i2`=m8q*ױcG.ߗ_~iuyN(Dlx{A!׮]SŒb6I7~Wc;Y $߽O_tOBC!&&s:u@aN @T_D TҎs-G @$}ɉB --իU׋0SP0\m۶A+7iD @Maŋ*0r}\x0  &=iB:yyq><>D `mӱGvL؝-rH{iY=s>!֋2gx?#T%-=6W^ݧSi5o=1NeB!b(䀯&Ř`DŽc\MMիk~V16f!跅01*$᳼YlYObq+6-'AN&|re}YAo'NTeލ{QclcW:FՀjnWM-ѳgOUH!:Ey3+ <\v̱G{=We|#˖-9-!wQmjg㫍kt*?z:y7}O_,B!B  Ϣj< L|I 0ޱ<#x>~VcT]UTQS?̃.>R^싁0%"u>? |A' 1,qȑ#m/(:-uZ\9 3|p?⛿dWZA]w/^@| 1EMzk>0Ps=- SA\7B Ώc.]z6sx)n·)sb0;*=_m]^ݧSv}:B 1bj^{|%g ^4o<ö-Z1+B!b(P+VLbccuƍRn]Ŋe…r%IMMSNIN&^~堓dɒ2uTy*TJ*qFsܼySϟ/ Vۖ/_7eaҥ^\9U|c_ e3))I'͚58_%>H7+!-z tXBN:9n贴4yܽ{Wn*jodWhR+U|rEIII_~gB VZciܸq@6 ܎=Ki 1b(<`1ժU!Ca߿jWμ'/RɮNyڵ7w wyQFrQ9rOR~}[!&$$DO4k6s?^`mڴQBĝ;wʘ1cr`'6L2`QyNbhRѣ5JmC][rw^[;a„ o{hᦌ9/%@Y78Qϟ7m. 1 ނ={Yb(Pba\PAhqڞxhʖ-'wM˖-X5v ph! }^v,nwĈrY6[vtjk r; /J;d%n˘Ǝ+?z/Z=z!^vM 3'nG%KiӦ=M!B i?x A=/PdzbP`Xt1C`ԩ9`\:yg#直>D!xzjU{n;UxӶm[:d6 ( M4QoFzć7g}ng޽{+]:Hؒ(=%j4FDc{;r)Mb4Ҭ`E X{6pߟ~fѢE>; kO 5#1[Ou($n bwT:4E!Kimy֊FeFPnYN>%1:#_|qT,#b\(%i[ bbbR:#7`t`tӦ&tIv 6: -R~WCsܿ_ڜm f(VnI5}Ph?~={=>a#FH]S@ a=f8I&+:iQZT@JuZ0Zn/*̯ q5hР톴wRԀOi=)AZx8?IImk0=J}hν:*״hD6B)I w:[2j p_~E)uzWOz^Ȩ4_ }Ʃ1,B5ïXkem7$}+|Q-$ "K.p/4im"-yĨQHvufB%ct?75nKt .m.ckĸe[fiOh&d׭[gO-ֈYx hpÿҢ^zJJ8+Ŋu3ΰC9蠃@vZD*Ym5$ĉ EگԘ~lURÆ?B.[np`ƍ6p"jԻ;!IKSy_ޭu_g 5b>#eNi|*|͹Ѣ .ѿ:+*$im):;_$-\Yfv-i=Fi^t:* K b\l⯚sڶڞ&!!AbnQr; ^ @ш PWpȒv{Q\m'c L:A A %J׵x<+W6l欯>`;bIhM\z]E@[ڴq !!111@CCA A A !! 0{G@կիMz-3w\R7oI+ @CCStbVZeMVcYƌ5~^{뮻μ>0O?9cx=ڵ+9^W,zQ?m&Lk !!9묳lR fذa3ϴ׫W/ؼfցmۖ\S\q棏>2;w!Cwa~mvZ/>՜9s<O^>}_WSOI'd^|E3b{Ev[JI.o 9֫z)bjjjԩSI)S~,vRn{B\h(K:bbb"ꫯowy\s5#Vj 0W>?c_s9^3ﻳh~CŽ3M}du mGL{==߾uƌv@8Ѿ4z>l;&q!}9z}k͍7ޘؘCAy/:;E5W4 ㎳:tfz%}>Gzih>lܸ^ۧ1[n1?bGh좋.mN?/ཀྵ~ &o F@_0~@CCpӨANJ ?S*7… _Č;֦׿k~C{ﵣ gAZСCmF5tN_O?Ԧl/zk稆M Ϻuf\D?;R&!nhNICg?LTs3gچlGL'p~_םq?=x`s=5O>뮻jѯp s,X`fϞ]oݻq6g|ݢnWFm ]oɓ'1j;i긮πv-٥^jaLɱiQyNylNrU7մDq޳˖-38ÎFXQX/0@W{D.\ͅt1P!믿n~111uQ$1R3]ٸƐPC"팓:*Er˒kA:> (;ꨣ"W˸˾j衇l#VUW]U<>qgkLM,}~v}8hIut۷^{nG>uhV?1Se:6 !.lgξ}߯Tٴ7ܿug{uLgv~ZJ禰O|:C7t:gڮw^'Ҳ>6'%Z /)<o]}Y&cc}ѨeQ_C~3qALZ @v!z<̲4btuu@eoNS%A bbA A A 111 bbbA A A 111 bbb@{y뭷̪U1CCC@(qo43gy;믿n>CK˜uY>V@CCu\|w1i3f?i6l`}Ys'm=4s5}QC /`V^mܷ;O>94hYr ze;_GqD}\6nh}]cI&{>}^fԩkּ>0=;vl};0ji<۬1CՔE.1;-n{4aPA>xݺu83nܸ\f͚6^jS4-74wbbbx.hYhtA!.Z?m|AqۣG/3g={?܆8ӧOoŋͲe̐!CR,__wiَ:*{ꩧ^zɌ= 6?o bzm+nn#|_u,gϞm֯_ovZw# !iAE? bj&)ձM#Jflv jR!Af11HNN&rt Yhe;ujwk_.Z @-$:f̘~WM93xZv`[͔4ӵt^nEuUbĴj fu\KP^ꓫoHAL+ₘ-BAL/.H;}݂ٵVZku[VK}rG]nA_]з! M(ق 4ALuw6\Zk>}fb'W\}^;}}.]Mƴ*:1M5P>D]ꐝƧ>}ޡLôTuiI[LO%[OOܳW^hDꋫOLKkЗuiIub\7=i`nYZ y۾}IZ[nhꃫ/>AKgw%m0I|-%٤r1Q1~7=WYp%j~$WLY7<=)Ik ]r|#aV\}OuӒX f7=yh{4NCX3ү >w0fh %\$-ソqMOrbyb:ϺàBiXVnetMs, [}xo  eZRab21LO֊qSàZjw){S_حQj2[>c!ֆ S촤 bJNLQ1QkŸ)J.qӔzã)Z#j]kd`hÃۛBN+%kd wZ&-=)eS̨U˜A2]F_#{\З0>wRS̔abʸNLQ1\څ1* Vj=#BF/=>v]wBUos4 ho1|v 7Bƅ2n f@}/.|q#`j>wgoM$Lۘ)Im"FH/AL 'ō[/ƅ1JvFt9?q#e`^?| `:}v^.L9FTMS'eY+&;o}aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVh! 0! `/(! `/(SPA] ThL@ A)PrP9?@, 2 4,a& V "LL\'%[LEE/^B>Ig*3 V"L/(%*bg2d*UmgyLU2eQIGI*3H*dC;˂%$`b3IEtL, "LR/$L  sA&c& JX0I8g)lĘa~!_.sH$2a^2Q11 $a)1?#bf1aBL0 0~oF%KaB̿y%iYSN((TQDCu0"Cy<6mjZhz>_i[hl1zXݻ<7!|B+&81#d3P"eI-RW%4C%3\#11PQFt>/[QATiV:V?t!&ly?x|ުޖ}m5UB#6;م:Җt@A<_*4/*5aoO"NL51Aa-z%5(B @JO[}HV; Ę\z}zu[.bZ^coYSBL\|Laaܲ$=ܖtFiРAuunҖtb}*ym&1BLұwy?NLEb .N B 坑k0x_e˖>_qo)]6>8[xqN 1k6&M2W]uܮ]5m~mڇ0u ӍS˒kbjy]duR(iKU#8s"LQQ,1&B¾ۯ*&M{fʕ ,kƍW*z ̛N,1!Ĥ<|_ Bb:ԩ+\}5kc۾} &D:BLrKq0+Q&1b)W&c1;vLQ_:tiڴE;ѾM!z uNH}wǛEŊk@WŇb~[@){ʤ>:^|y}BwHbD/"-:vf(4sB B 3rHwߙ]vΎr޼yp;a̘1W_5[n5guVqhٲeFs9/´k*!ƥܹsCzF {*]wu;y̴o.Mtl;lRǖgD. 1 ՙ>{%o\pEϢG=tb򒋳s)DVF?!_1F\bN?taw6W_}e\sYpOۜ:F/B?NصeA馛_KV) ㄙ8!&*ÞQeif=zڵ=[qD@ 1`(1EyJv&oByxիmg@uKb*&#B sE{9;v>lwa4hX;vl?OimJ!#nH$DwupCoꩧ"#=**#1Y 1 BL0Joӄ'\SDAӽ{wf{キL\m5eiRTzWgjQ"Q.]l."B Kj㖆T ֫eJ4IxK9ҤeL4餓NJQL׶*\oQD+&ހyz:9Rq?8 (+2eږKzㄘ"Eޔ`4b[8zy-y`11^#z߿?%h]9s-=Q0w}4lv waY=5G !&8*eWBaD1pmBi[kQTzWGڶmcHjDuV e{$x_{sR!"@ME; NAq8$ާOK/Y۷7|3)HYvoa& I:\/mIj!F(Fʵ>*#moSSNA{{)tb0Ĉ Fv͟?ʟu.ňѤDey6S"!1b%1Quc.m!;@!1nY:Řb$d+ xԩc,l2yN۴%ͲQL:bT bb!!!!!!bbbbbbbbb!!!!!!bbbbbbbbb!!!!!!bbbbbbbbb!!1~yg͚5k̞={իܹsiFA+ }Hzwm֮]k֯_oMf6lH du|Dٌ3~iQx?\H*~B>#Ӽys 2O`{w uuBnau=bbMq"̎;̝wi:t` zǎg}/9s&!\?6U:Q#@#m1УNNݶ>L" HN9SݻwJIgR^̂ @n֭f欳ΪHNbk׮6m۴4C˴ܵsBbi?ON:U~/f͚e㎼xv+޽{5qG}4iR֭[sJ d})0<\Ꙩ.߲eywl^%-]:VH[{n_yӹs SeW_? :J|\}qvҥKmb ; oϽ*l'qmw{.zI-jbرc~sItܖ-[_| 3p@Ӯ]bo^Z _~i͛_O:!^e \TgViqjH!-AALMb\UG$55ezLcvڦAoqm@}KIms+3C;{w9M=l=^kuBۓtl䥚ϫ;ȑ#k3CA!UZ߱V}饗EU-!&xg!U}17 2|27|c*'fʕng=#ϭjg(/4iRwG rmѢYj ܃YE7.jʼKvGRvrYuι&N:HSNe Az<씽LOJ^x!nV9 K3i[UgҞS}v]/K9LqPǵ%*n^yVq\r$΄E55?x"QFp%IKWyu]e͛M۶mCmV湹瓤P}l#aזuB\{x뭷̠Aqۓ恚P>-B~ #N])SOwy~GU {(0oYW/ k by^kVC|Gڊ@#z5̣>:~ZإKqDӵNUC'JCQ]U8TГ1ar 'J¹зo߾FyU/…aUгQŪ]ve 1wMsVygskd3?=29gWvWW:T<vc9|gfԨQ<*b֤vTfFyXݙN[UgҞ[}^QLqP%򪔋[$y 155?넠%H ƻ(]!&sqzmXϣ|\Y OR($VI1ĵ'qBLTdm!&~? ~qutv߸%W۶m"]ɋ*|11#F3g}6K֬4i.U9h6CLYjwfTK*gPws#&^T=[4ru?LLJVC\Q.ݩ5m}v.EG۵sgwިcsA?kk̠s2dHJL9UGfT馛lӰ4OkKҭړ|U.'L`˽wmI$)>c;L#ʋQצM痤HG!NE3BgR\Fn瞳ʪ|<6z&1au{=QIFm>|(br!/_^D1Ν;m{NR]޹q _VU>@A_@aO=T[ߟr-$(SO=e~ms9s.Y n_n]ˤj*H@nh&Nhl 1IEU!)X\l%z_+zWtiSޤݦY^{*K^JwUΟ~֭[gVq {A[g f2d4zM:aeNBS-M~7Q6iP՝Iڒ$u@:I>přC1&i-H]Ngbjr~$.;-ČKª*_Cb@8Gr]**ۓ(!&N҆g3BL.wo3]져::IvTE>@A3fH1z;)I9ԌpadK?ߺu*AAjf[4˪z噷@Ikʼn)** jdٲeey( nj<F (";3S8;T}'e)4(͓֝QmI\n{fZ\@tx&8BL<SC. 1*:BΞΥUݫޖqW!q4[B*(y 9̰{Q%w >ˑbL&"?-u%5{̘1gtK:jt .HfäBYŝ7*rwrM{޷]ȍr 2:5Yu:RZ-O.?iyJnxN7x8*1L *K*aiUw&mKtۓ|Ö!]cƕLq$y6Nɗ \t<ގYQ!T9v}\Y}衇3#xPMhl111111qG:A|y@A|p} 11141_ i1114/=B B B PP>>/J/=B B %|y@AAȱ~ꫯG]e(@bbjӤI۩m۶m/Bs9Px4tˎaÆO?ԭ[Бaqgx%;R6`Gm;ZlioCڰQGeoݺG}7}֌qT Kq}C9$anyȠALӦM30B [wz'xb.dGAX6W6ov]G2{Ty3vS!@U TQ*Ӻ#jD?ec[7?c wEoܹ8p_ Љ1js퐷݋SK#uԉl_+C7(#lF:m^ S#hyHEo&AEN~U^lԨQlEAuί@UrtߩۖbF[R7cqZP5rVE*B,ctWIRM7:Aa:퐷#U'#D [CmXӡ7 Ks^0_C'D0LZ"O]-q^Uay!ҩ;6!!N |y8W# P P~<= PP>( 111@C @(@bbbh(bxN @C @(@ bbbh(b(@bbb!!!!!!!!!bbb o^U bbbb!bbb!!!!!!b!!!bbbb!!1111111PI]ִoߞYh)..6vJqFvfժUo߾Io6-3g4cƌ9"3uxi~Kmm2[l5-F+vcPf2#ڀSBÆ ͔)S_mmfxв6|pOuf^}U?r{!ӧO֦Mw^{,ߩپ}ٲey뭷LC^zv}# ĔbN=T3jԨݻ iӦ. !rR C_wu樣Jt$"s܍V$yFb{zf}1a:vfoL;VYaF|]"Bb bFiGaq駟ۯI&櫯b@رN:$+V8#gZt\|n #u 6>8vs~aDņmL ?/]##oҤ45hРO>#=C^z%3lذu_|aƏ_ QuD}xq7L8!!&piR1"_o3͇~hڵkg'+o…fe˖M<ze /`V^m>2J:^z/om[r{*7x Z~if[_yӴiSM@\#:>B TgDu?lhALj}_:!&wb)K>~65X}޽w6G!fR&y,[4#FL(Z2w.3Wc=f8 yihbZ!Z?n;NԘ :_h>n *qb ߣ>j6o,]tM}ysW{i6ol?pYjK,1;vL}':u[ҥEGZhaGy$#&;>B TDQC}ψy 뿹c>Z1h^t,GB[6Wn%ˏ$)n\iЏ̒ͰG[oᏭ7=||v=B=z7o^s:u|`7n)Hliyιk>3+*fJ˖-C?={vEEEV$]o|o`AbL6#Va9aX J)G‡ I'xbZ5Kt#@Ux[1h&/~B̙ט-; -JDyrCv᷷~1JbHYji9Ʀ9wZ3MVAW<5$&Md.T0ABcochXeXkof ʨ&lEzQkf 7@TBL!CAcDѴ?#FLn 1 +k;#y 6vL/^r2k\$>qSQE/cM;ܹGx׆ Ue;~a+HsU+VHMDGz*qabbZb̀Ҏeŋ[/_A9@1C֧O6}2k $ "iz|rӨQ#O 1Mk+1kBLP-Q}4yh2!&+l,.PWo<ڶkWl0|^W+VvseA 1*C[|Tzz tuzݲ<8 M~T6t \`AsHLX6H0*0С^!F_At :thL`֬Y+Ĝ}ٶcX4JP2c SO)Q?W%уN:FTMY۠}YfĈBl2+6^%oUxJ`N3sF^1_|w7='6CJbȬ) [KTF9sN^ykƎkC!KDKnT&3j+H(&or<}# TfS}sϥ 'ldEW[a+f(pDξ[+(\ȴOPu3, 1*ZKBs0'}o?%vڷ8 :[1hm۶_!&16ކ$%^o~7()NL!YG@AA@ B B B B B B 4 X11111111C~@@A@AAvZӾ}{"Ebk.}vO?F<;6nXi]^={n9s3fL^t).}Ԯ]۬Z7[Yݾۈtꊤf.!ve.3 1%4lL2|f۶m7-kÇD[nW_5?-h2}mmڴ1{Woٲż[{ibb*M9SͨQӻwlPMf.2j^xᅩM7d+MV34x*839s+BL\QG#j*Z%!&n" 02s7M Mױ̇6ݖxd`:ݱlܾ 3~u/3d3rH[8㏛O?~M41_}ŽuI'YϷǑGi8:D=v [,oذ|ibb*MQ[c[!R 35br.F !9)V֣ 1_c.>{ט{cV&.6lgOQ|)y\&Ae'_K/aÆ%C 3~r-N{$۷/c8i)!!R&%c**\@_|ᇦ]vx2.\hh~Ylɓ͡Z f?/q饗/Ҽ+W{תrw{Rꧮ駟6k֬+'3ׁvYGUyhI `wݺu6(?tAvܹs͝wޙ*͛7-Z$~&Ay 츇~xZ젼 X6/UUnގsT=se8x4*rԌET Q+/qT߄O:fzwJԽqu sڷ8$*T=۾U1ژ7F_s[j^su{n~b}.e7̲5{L3bĄҪU+{2'y y~&<vܠkW~PRۃjTގڦK^*mt?2o9*j/^wߵ{>}TWPzF7DSX}>\_W+)iҶm{ WF9(-IꫨzPT}cD1q #;oq#-I>mk?0dn3fcE3m(6_cwF]_XNqƑʖ{)T1SZlZ(ٳ䏛***E v=Op11U7Hr$5*tw^jD {,.fOmc=dױH.!V_5z5wRMk+1uTDFU{Iyw7}]j3cƌ?BLTގjw5+Oo9I]s5֍g=)Pw}Q&ꛠI՘땲~q:IL!&:FTN !XQecqzѶ]dņh`_b+ ZQPz[|Tqzo>ׁc]0AB2M=AB˪,Xۿ,FAr!&h0h[KZ~l! 1*D ch}ΕLIK$tL}v,b>ll/3( *SD]\qנGt^vTV;v)QLZߩ wF!<묳CMԻtN偠VTQԀiӻ~WiS>Z]ӟ$ E.*LM>=MϸF={ o'%IR:8rMAy!*KwE#{!7dVl*6Jުff­7b*ozN\mĐYS䷐&Es̉K!2';.ɖܨL*nfYlJWtMxxS7B BL^1EQ7Ez+'|m_1Li7x2 )W41TtUZARe8lMA\\qWY M"_^7Q_b#y&itUW\qEch6P/g[Q!&.omS~ ZZ_|J3o9IiIO뺓O>ټkfӦM|۷o?:<fffɒ%f<[>7nj׮mVZ(&73g1cs@iw[`]4Q6-{w#~U(owOm@aÆfʔ)믿6۶m3oFh_7n9=zOOx6mژ{nݺ/;_͖-[[oewzOճz^bbbiӦ. ! J S/u-[f}J6mj֯_o.I&6Z"lҌ1 2>vFݵC~ 1|qu|XIE?!榹H§;lb{zf}1a:vfoL;VYaF|]" 2Č9Җ#8o{6[IPްaCəgiS'Q! Qq$aAʪljf 쐟BL.brCqFsʤզrBgO}>5fØ ~_tGF0W?Ix<4hP+–Zj'>D^O 3~r-N$۷NjC, _SU4v+Ӭo…fXnC-S`_x ?7gqF˥^jKoV\i^W_~;UO۷h+YYm5jTj`:Bq?b16w_z_{:t}GU{SO=رÜxTgr^6~\۠欳βmܟ_}UsGk=2jiձK-0!ƛף}K~ݺu)#OtG_|똺܉b$/֢2ڼ\0c]vy۸yoK lӌ1i#ݻw}ܹsD&*^CoH[l o}ᯇ?z-߿A+B B BL :ukv֭m5NP裏NzҥKM7ݔw1W^y_A+7ol?pYk6cǎdSN5u5]tvͼj:3_|hvyظk?19cO;w_h۞큦:?ϏׂaWשo^H82$ᯏ3pu:uΟ vbȃ6 ocHp"㏇ A/]x /c(_+#O{YEyd1+Ȼe}[\HKⶻE(,Y {dzsуwWk!3zh3o޼AFIj.DgϞm'$qQQ+ 7AOT~111àyI 81hРԺF}&yT]@'bgS:0<]6 1A:>B q熾:b|z-AdD%r]ztu7Ҥ$6K="s5fBˢ}~fk̦1bcZ,iΝ֌|ngb=D!4qBb>KUVׯ_8ʫbvm;ID: ֩.ʝwށmU>+B B B i1]!k׮o`tL/ri6i\(t~JW :b ŋۺF€fo2BKZqkNzPY,O:6LH9lo2qbR1D|#&ו]v d]\qG Tɜ+]g*cٸqcgm۶kNX *xiPP}\5]!&m B3^@bKqLjFwyBLn 1VTX\&xm~+$Ga>)m:k$دW|JTn_顇78AmW/`rDET||WR9VArU!wWAUAn2(t>0CM@Κ5StUގ3SO=e㾋v⎯AD=@4iDT&ٞ:]zu^%b+ưaʝW0SSNB^: tK*ĄMh{-YT_Nz.g8!&u>&5k֌15@MfŦbӫJo_i,if.ܚxy+F+fHI 5%A~YT3gNW$ۑ qBqƩ\KPmQ zW85jG'4Yo"/0t111+{WhͿ:a:zf $B~{B/61TytU$?QҹT|'} @:$GkoIpyD+Y2=[HUi{ܸz-VGLo9lPqat~-;vl~^[3i.M k?xkiS߱ !&w><|M_{ !&Dž16ކ$%^o~7()NV{plܸ1uo1*~6㨣2|ٶm[͛lڴɬ[L:z衩mڴ1ټyYt{ט{cV&.6lgOQ|)y\&yx'_m:tH}hfϞmg\fѣG[//0Ǐ/y[Uqf߾}/ƍ bbbJ; 뭊ڮ];s!؆G3kn ng`ɓ'qS}l,?ܜqe:,^zUh~mʕ+ͽkU~X;UO۷{]ӦMQF6#wG!j#~as}ֵaus\=:Zuu:˶rC~W͑Gi;w;SUGL.ч~xBLc^nJUmqu_;#Q:?NMx[3}uA_:ivd b{11y+7|':͋/hguL]BLĈ 1S|n}kQVmk..v{~m܏B̼ۥLYfiF2^#=Xj!l?U4[/MMwk֖C^* 4H}7"Dm#Ѿa# ĔЩS'ܗ[nm;vqbݻͣ>j;Z57tSjwy\yv^;vL}'ӚFU rS׭aTgFj:-ZGy$#&;>B q9Ν;m=Zg{Cڰ9N:N jkٙ|wϟ}Y͛xFD$u}a혻n߶[3}=_$oA۶m\ڜo咦ivWh~E"P!LjI}+ϢD^t,GB[6Wn%ˏ$)n\iЏ̒ͰG[oᏭ7=||v=^ 1?ӸqX1B35XPyEs9f/r_yh EEEV#;.C˄t?a#|111@pwy3T JsaGI3}'xb[!Z5T :b s=7IW#W栺.nN|R4'6@Jͦ5+l-M^_X;mIr ^ĝSqcP'Sz| ƽqq epxD}\q3gQN%obrW9segyeQ?On>?V3wv5fSI 1KW1-G4N[kF>Ɋ3*L4\~eކ[dO=2uʛ& :^`W>nK-IrAWen(w޽{GƇ{GAAp%O?*r= ӵkWgcz9SC;nRkf2bu|bŶY3zk%n{e-Mr8W7SXuuӛL jǒ-'tƝS.[^zQl`i!L\ ]#䳨rm1br[Qp]YeɃe۽odz$ҕ{̐Y"156x|Ǐ˜Z**8!sζ@ W¸ʤ70_%XDn<WX:~9BR!9T&bbbPaRO(1(fȼ+lZ uPrFubhJFϊH`]\qGy2Z={DnhʅY3^%2n{Tݜn='v]СC͌3*jϔ wNGdt~bsj2@1E T@ŠNlR!&ݕ@s5kU[As1b2gQNGzNW !&dVl*6Jުff­7b*ozN\mĐYSߚ$kOSKTnTj_yyZ.!",>W ^+FhrDb7X^ŒBt111P+uW8O>ԚB5W (@N(3:r2BʥMu9sf|bTht.U>|Ij_@g)&Ck+.$/[^g öl#UY'qڰ9DڕL޺7ڱAJ_-v{^yfzϩt!k~%tiRX+$=K_B˫/{!bBLEYTHloޒBfpWoCȒv7z'F5ڎS^קr} 2f㦩 *@w)O'JرcY$«5FXLfRG/mgl"X!P!U7|sh|B!!@7޸WB11# ]oCAACQBZ B B B B B B B B B B B 4 X1111111afnfիW'}H+ 2i$g&L bbbb*^d={,W^) !!!! kךۓL'eѢEڵ+ƍ~_~e3y2uYgUC Vi޽{׮]cMV%:ꨣl._l߾,Y 0 #|Ԯ]۬Z78Ifޙ9s3f i1n+2Sl1淔6j&|]YeVbdzO|b>ve.3 1!Lo۶-E=ӰaC3e_&9KOxmڴ1{5ݺu+WWw:-[zt=իg_^Vr ,%KtQ"$*H+̋|9KFp "C891Lӧ93ä]ڵF_ 1b(Ĕ|3B !\ 1C )vwɍ7͜9S#:7oYfmsCZf͚~ktO8([m[ڵ%99Y5kVըQ#8qd?^97.QBS4i~/-'LݟD7Ӕ=3 1$ȣl(JϏkO3e4%! Jc|,P=zpfĈ2}tUwaw)7o z;,u (۴i*0aFvu:>>^*Vhy޽{}RC!w^R!Py6177Wjժ[wy%<%W:/z)拀A4׻95Ɂ۷omݻp€=}TaծmV/`,/ 1baɪbɵk(bJTh!Vcsʽ{~M\_=|ʅpի2j(rر.""B/_.<ϟg٣BQ78*1cc!k7b!QB>66ViӦI +k>8p^Ö=y0M 6lFp`lL`?~uaʌ9Wρd„ 9T^[m1=uXwh1u 3!Tn]ԩ7:E4N֭KcN~#VuoٲE}_Vpի'GQuP)99bB ĔMfm#ou-ן3s゗BRT&D܋Βȓ'Om۶A탈=|9l Pѕx;"P{-LmaCٞSy[nB  1iF}!M4QΖʽ}v5A&SNm{8#CUVuX֬Y#իWW;SX ̰aÔ g֭[mG ݮ|~S!ѿyJOOWv,i.gΜQ[dQKal_~X6@dvu~c~6 9B"r:t ez})Ĕ\!hy(\Qsk|쿞*}VEKb~1aYhzM3`mL? 1@O>!10*`AO!یvv@By0e~)Pc(:ag1 Vi߾<~X4K;aüs%*lFNÉq1& V:)B@,BIjV:.=$CЩ-"i>V쯣R0Plf 6X^"Lpn*,:BB/[m"߳u6qj@G(a%Q1Fr:t ͪ^2GLb\KYS2x]kLGEdɈͱJpwuJދm{9ͩp 1mAF-ߖ10߯"={拶:U`_2=^~)Pct: Aw}R ueį#gvsB ! ݙ%++˱ūb07}cD`zS[`ec@N8=}CVGtB಺2\1 ߣvX[mqoxyBbx+1c)B]q:(sS%$d%R2 rT'wA߶?FPqʼ ~駐a& H0SNB]~xb(P8hpTT8-[T(Ġ2b Ǹz9 WltPuV7CYňݻOk7ptB':X0" wz)B jD`62"F#DOqj lՈFX9C|cNkoiɂ1 JH@Gs69FW-D!aUk!uc6o_ք:t EY#1([[Z͍Sedf yuq!Srj=ZGH|'vu y ec8 M Vx뭷TdfvvaRC!4Dq0o\N:)1#F1"7]otQ҆0uAܹS(\0:7C :CN/n<[ҮPB{VJ >kqêUNb1 qyj l8fXtG8=Xk>?bAA5a r"q\蟜un- mMG_a:N$6C8> f翬 1NuN[f͔,S)B Xx,I%ې [nA"_:A ybYr 1IQP!j츎P5&톝t:0aIHKKS" |ÖB6IWÔC!BL!:2ڹ1,n4hq)+EP6P!eujRi~*?LYB B'BH) <ʃ{T 1bHу%sb(PC!Ƴjժe>q5bO( 1B  1B! 1bC!B !B!bB!B B!B 1B  1B!BC!B !B!B!B B!B&qj!b(P!B!B C(PC!BC!PC!B!B!B !b(P!R"R,]TżDEEŋ6!B B(P!B Ȓ%KmYh+BC! 1b!,]v (֭/2!PC 1#-ZwAqE/{˓l篾ڽ7ʜ9so_^>|(r-4hȕ+WHHHPeDFFJϞ=]u¬/Sg˚S/$3;OL/q0QfK̋v!YNHY*_2qw<ǏmȽ{`ڵkr~;v'NU]jXneYӦM%''Gll ڇ/^ȹssζ믫kԨQB  1e1cP! !enC)ҨQ#8qdx sܸqc>%P2dmIX^SHrfF!fҞy-]EIril6"$!5W 3X?tc/,ԩS7a͗_~ywU}x񢟠(>SGݺuW^ k.۴i*aF8>>^*Vhy޽{}SC!w^S!P)J!Ov)Ĕd?BLbKDIBݨ,-hIʓs"<\[X/0_$? 61*}~$--M믿ѣ=ۏw… ">}bݩ]F,X@%/N!B )BJ,,^O6M*T zee6ƛ7tի'GQjhjvϏsXwU~ޭm3:#Fdiݺ5R&uи3Wcb n23oȤ|Ck'b2!^tg;v6Ni0ݻXjU5kі}0l{!`N߾}SC!&6mHbb/I&t3233ej~c $,,LN… 2a?V&%%IZgAmժo5kHե]vJ>|*35HÆ PuV\k7b!v_uӕ4 -nE%Ĝ9sFu`aSل5" l&x#N9}p%=cTJ\jժ),:pl9>y@ۻmj٬%SA[[AΪ]w{N\AsNJ薤܀O?”$r9<1GR)Ʃh;M$>[dW!vի[o9A4G´+L0`ܾ}[1~ ɶm`< n@#yYlꗘac1RB  1!mUT,fʼnC9b=~s؜NQ1p؄*Xb!V[QzGa#!2:5hlm;s広jvM9pϹj1wjیӎL|H`Pz#b]̅Z_ܞsR+Ezr%_DɲzY-9b ĄEfI*7̀12@gʫd;v/Nh߾7"N "i,;wW_DaIQ%gMT5Ps|GaSC!Ɣ͛"# *lB Ǐ}QF"g'la$BBbt| 1; : 9sV^TB lѣ*m7^G0m{0ΰj܄1p;ضY(P¯Ib xyIb\KYS2x]kLGEdɈͱJpwuJދm{9ͩr'ĴmVvbF5¥[n*/@t|-FgϞz/rρ:n7\B  12!E3H Vb?Wa< S5 }7O>į#N1BsXth1br,bAP6N 1)6N6km @:ƶBSf"fl 1v\%眔 !F* ~ uƣ<%x)7073#7ɝdbNAdƘlÏ=֟19~x{п bƫrXSX#0%ԩSb; 1b*2qx̩вeKUB *#8rH_H*͛1+O9*~BɆ d~r;> \.]B@ˬYÃ],^ʋJφ F82 I1lMv`9pώط~~3.DD"Q*صmhV`jO\#~Wև/8K眔L!fYbtRr^l< a7#;O.9d&$U7Fm=:ȿt1z<|&#BmPiz䵰V?eCAT7 {C!Bi4 `6 :uR2c<0d3 "œ'Od~N<" q}F|b`p0Fq_>t:: ^x.- 'F̽6.r,vHa&ED [b$ ӸqlaeC:N6H0m͚5Sao0戱j ġLMk:t蠮G"Xo0 eWq R_sR2XJ!Ad  Dux b?oz?m 2WvBY0$FY@zs>S~|b(P)8]B^F!jNVNضBJS^Vta;b(:BضB(P! um{b(PJ!m#B C(PC!BC!PC!B!B!B !b(P!B!B C(PC!B! 1b(B!B!b(P!B!pj& 1b(B!B(P!B  1B!P!b 1b!B!b(B!B zB!F*Udҥ-%**J/^wE!b(B!B !R@,Y"nˢE]B 1PC!D`ڵk@Yn|1!B B(P!ĆiѢ B+z O =z={L۴~[֯_/>Tu 4ʕ+->Tk&ҳgOxݶ0ƍeΜ9K|v9B24alļȑm;-eG]~!wS ȡC$11Qbcce͚5Rrx YzߒJczmC֭[gYִiSɑ;{ŋr9ܹj5jC!BLaڵ2f 1r!|rΝp2m5j$'NT +dzq|_gbȐ!&MRϐcyٖBLbOP"ifI{Q\tY%GʵbrpV`̋\%`Ѝwc~ʳȪUXѮ];vL6-`#FU}]ܹSn޼q RNM62fa=+PbŊݻڧ7 1b{U9BHybz-5߼ysQ5u-w6 NnB!4ER)B̔} (i2#<@%c>X-YyrNr+_~ KE ]dm[˖-};ٶmJ,5k 8!wޕ ӧ -H8#/ѭH_B  10ydUJ RJcQoܹs޽{j+W>|XBm^QFj]DD,_\Z?gI/L%#_Sh۪W?u?DJfff=l".Q׵VDD 0lhUk}C!BL>mڴQsuXw&Mȣo߾]baXXL:շ d„ $LJJZjϘCyZÂ90?|pUgfذaаaC!غumD۵v| 1;:OP}53C4P~M~GZmt5kjljժ):}N<n @6//OE!<"1w&Y@ jݞegN>ѥKc#0e)Pc/TI0B3Z+Ĵo^?~ӧ4ҽ{w[aüs&*lFcƘ*X!NǧC@TH̙3y1+DF{]4l'n΁ߕ.:(hB!˳l,܎c- .f!er'Ȓc1h۴rSVfL;o<UiDz1c hA߿_Ee>{̷):b:ve)Pc*at0:$K#?alQ#xIjgxUo>'~1tk7b!vbłHrL)QB$=kP!\],L!Ʃ}3hBJ܎!"1-(Q%!/.x/fFx8#W 1 1G_M DE'6hXSڗ:LJyx;b%c8DH}UWwǎbJKR w6$,a׸oPBD֠ۅaGmJ5&ޝ&Hq$ҔȂmh0P`nF;)M!B Bu!eDF1,n ! 1>oE?`Plק@Fdĉه2~x%<4nXF!ӧOWeܹSn޼iy|>3%|ԭ[WzeQ\q s4 Z̙3GbŊݻztVZR a6m=zԕ3gJJʕXϕ~޽h!$BHyb:$cǎoQF1Y234yZ6(R[X/0_5&"BSԬY3_ѣG{ݽ{W.\pO*08k,X /,}mtS ?{l/ 1S1aBbLBԀJk 8Wac"ϕ+WVabP|Q>,QQQr?5jܿ_Ο?o{ڵu!jH/%EX"BHbF#jӉшY|0##'OV>P\\\vM7o1@Æ uhie'F^*GQb'<1GEX]z!/HiϤp5髝~d)L__oz(aGLrrn:Q2H`o^#B QYt^jaX/'l a<ӷo_˲'OH۶m.Ë~)P~(288oŊB̙3gT Q]vEÌ#G*gCo{E?v0abJRRԪUK}`%B:cł2uT8ht]!BHIb>%6lP 1[nmӌW|6#ӦMILLT?|nҤ"bì}Dk~Ӱ 11wnBL(~:srr 1hD4LnSӑFl~)Lٗ .g~>ˢߒCfT*Zs@#D@ GDρ$h IaD:(2 ,; cKAJD!è}9s.? hРBLӧk6lB OoM21)+ĠB+(r֟w5y,=ܸqC8XqN/E!B!%mjH2FO<:qDӁb{D ZjBL(~:k6nH!ry+m8$cG"#7$,"K 8\ @P@d A!D@A{{łAl߿d^시6s>:#f82D@}w]_ 1b<B^lb )С ;BoF/*>2#1Jv8&N ؅ B!QrD#?Y*#^pNobB "Xib M|0 iTX틷/aR `?GtQqgС5<ȁO?nm zҿy-3^s\ ۷WQF@SN]~+bʕAh&RY+z8=evPkJw=OY# D7b~<㼘ೱVr]۽{q#B)n!_~J@41|CD*xb ޠ ᚅP10q>$e0?R&M55 ^oQj_iJK'K#c6ISwqJ6 J1}ΩI wSDoB  1B!PC!PC!DpΖ  iѢELy;vLZlISBTz|'Ezzݞ_WQeƍeΜ97,=}?F^{5={q !څ<⫯zRN9~՛6m+BLrAHϕ|>Yw-U2 ߾F_2%E?︗gb o-ׯ*֭[2h Uoի9}ԱcG9q고Z]neYӦM%''G\o_x!ΝΝ;?~? ȡC$11Qbcce͚5Rrb 1bL޽̘13}Q:C )ZYvmYv<{L/c1c,uԩxel~C]ݞ¦w꜅!ZE!13i$08.!puP"g}uJ^lQ,]e_@0[+>>^*VkBq$Kvڵk2mڴb 1bLCѣ̜9S*UTAѣݫ+ˢMF* U 1 ,ŋS ) h!%](رc[!揻2yomݥG~SroaiD|+SDXԬY3_ѣG{G޽+ . 8ӧOZpc!Fx~g6lX@D >g!|wm۶b 1btj1"L(B Nt` 21RU<(Xl3ne%wSqQF նk׮ׅ!a 1Mto~}&%%IÆ eϞ= ?B ][V{3:X`zrcdߛQ(z!˗/WGx,Bn o96n4ydu̸8U޼ys'#SXM0k`='Bcn#죛MhArko.uF[tmWKLd8(B "\sɌpO???+9yqK!_2`%#s &99YZnP(K0a:6A7:K.U~ .b[v1YV3;vPY9{ ի+q?/C!sĠ!L1CӬX¶v44hQ6rHm/^߿.\ &LPCL1vq=٪U+:c48 9]G^aooRJ۷}BcwAD#Q֭[=G7tzfFUҥKV=Âv>8: Ç~6NԦM5 >7i7 7%CYf!qB!J1nɦ9G`'uf[doў8Wb(5-i̶8r W^dhIȏ~ilms|SnEdq*f8bS<ϖZӘ`f{M0;PjC`.Msf!&j]$0ɶS΀1LZ l0켔"NX%?gU$爁%+~ Q3b IDo@Ys4 |`""uOAF4  G!>|Ah_q؆>V~%K쌕3n81{ne._ 1b^[bLa0 1} '@ը`!6FWp7nܐm۪`A+#HRl:\FI^~$ˆv@K5zpIuLc24/9b[)yNϬ ("X}7|*UϬsjmI!!D#0VO0׍PZdy 1S~J0m٦Gڼv 1@ s"|Z \|A\(*(;r3M"dX%@۴O ǤSp}f"uήO,4 H;T ^D':`_L2_2NQ7 1`w͛'sb~(Py寯F P 6{ta 1p.,>oQḿρO~Q8B W.ļʄ)A]tAQƜ="駟%-E(*68HuXb*F' X!uC:+#H s3&g11|8}8άyt]-:AHq^.\]l4V=S~{B 2GNh#Xp,|8FoB b!1nmMVBL(SARLbcr3_|LA]@Z} c0ӏ0|% :SsP_oAVTuDL2%@17uׅrD!Lq 1JAVdGt>*j/* yڵ`A^#5a#. 1^ 9#1Cxh,gʺYjcl0Fl4ljc<k۝YN:YEBYߙѱ-z&hS~{B 7x'H㱑 NGb(BBb죓Mvz "Xv})OiT|$.9G 1nd#\/-LuOU9AD5| C^ rAx%++E>}/7T Cc' 3N?! 7ִ`d*Ā?P{(C!L 1'HNvr B)m@= R, 1b!"Ҽ{⸡l!0BZ)/ 1(PCHGϽ--%BSx3r`Ci 1b 1b!B!b(B!B B!B(PC(PC!BC! 1b!B!B!B B!B!B  1B!NM*ky#b(P!B!B C(PC!BC! 1b(B!B!P!b(P!RR,]TżDEEŋ6!B B(P!B Ȓ%KmYh+BC! 1b!,]v (֭/2!PC 1+WHvvdddHHHH-JufffرcҲeK^B-Nʋ/ܹsҹsB^qiY`AѣGٳgoÇ7u 4u4DFFJϞ=]u6n(sXeͩ' 8(c%El, Wia,S?ܯ ;BL>;v'N(lժU?^RRR5h@:$+k֬ʕ+ڏuY5mTrrru[l_WרQ; 1bLoȐ!(]]V={1cBJm!"tbŊTΝ;}!Fĉ oƍfҤIr,/R){B J$9|3Ml3iO<˖.H4S]L\JSLy1VpOyb>ϔXQn]ի>uԑ(Q?PBӮ];vL6~`e6mRe#]6ӻwoOyw 1b(Ĕr!Cѣݫg愐"ha:777zKE4ooP]m5QRr|†BLbKDIBݨ,-hIʓs"<\[X/0_Ԥ|~W]>? 6, *}l۶~ܽ{W.\ S#i  SC!B R8AP)VPA8pO>]5bPHp[}a3F5jܿ_Ο?o{Pu>1cTR%B°ٰuBوسgzǏ;0ܹS{10ZF"tv^u:uS{ael]{?ixSNU ""BVX+WO?TM}#\ܹs޽{ /1bINN֭[2}GqNa c8:.] + %)-7`ӏ0%ɭ\Ȏ?fnEdq*f8bS<ϖ1YxQA]Ԝ۷ B]zҴ#~䊂};'Wℝ.Ah1RB  1=]hf8z7QQ͛7ruxpȍ3?a+GbD,028v. 1N⥼l6"?`+aO{שTG#_V<-T:%EG[F!栳 .[zvk/r8F)ћj1 Jj9xj➐̐ut4yt9?xΝ-1]Sr+Ezr%_DɲzY-9b ĄEfI*7̀12@gʣD ?uQ_d;7Pk#ƍvޭڿ˗/+I*h/Q!V>6?LYw 1b(iӧO@8F`ģb4<7nH۶mqܼyӏݻv$uQ!ÂF!jA@r^LyVl rn1i4o߾}{yJ(6)YB 6`նGxтP}DٵS$l#D ^Zn|#ӑDaY2bs\ ]b^Nsj<# 1]0 Sm3N5p@5&7ot#UۊN1FPÔ{C!BLTz8ƹPb?7*L_~Q9ɓ'3XhGK;r]p>N) `błrLy) Hh?11Q' 8TWBz0gv_Ojvk/}]%^W(B L՟1EɩDČ4"eS1FhYUNpzvecbJDlxQJFWAnN~_\1HLjr'ĠN>Ŀy}2^l(2A1իU}ׯADqj0b]6*?Lyw 1b(ҥ/F31,栬b$Ԙ!mh qc=΋)K8>`/׵ag6d,tc5kYcT SL pCd"=%k!8:~NC`nT1^첕7j"r!Z[n*׃r 1h0 "~7@ӹ0,~c֍)@D$Ϗ1]<7eD!d 1([[Z͍Sedf yuq!䷼5iEȠ!oFňQ!3l6f/X1.D8Q; 1bBpZr7h'9ϡآRb4ԼBw7bzG" 3}Fb\S0;ooO L+8C&S8~xIII[נA9t$&&JllYF*WlkC֭[gYִiSɑ;{k}⅜;wN:wl{ھF)PcxC )qu֮][֮]:0d^cƌoN)B ǏP͛7jժ)eN1ru6|^(=S%ȇKɌ!nTcygI9A|Jt^R|-,hwsjR"aÆD1モm۶ڐw… A>}Ђqnnn@ċf*yo 1b(@R "*% *UӧF )>#akuU*g;wW^~5jܿ_Ο?o{Pu>1cTmB`-Ex0Fɂ:ۈY|hH;wcb-^nٲEݻg9ի'GQfqCbcWf&ݓ|o+V}o+WO?Tڹ'NNoviܹqqqj{q'#Fdiݺ5V4nϾqɓ'~cDG=0 1S?7]dR|!ֵ\ɓ ^ 1JUS s/:K3Gm'."dǎ?`$Ξ=fJzJmmPP1 X[ѷ@D Fa=ӂ Sx[B  1P6T^ K;̙3Q0782MP6rH,m/^!/ … 2a?Ĕ$UVZ+:ԩSSSjUbD !]C)==]Pml-Çoɏ?^Nef|mݺUM霗.]k\'P8Y nd!zjNt>{:yp#ձ1o11a׹pzV>۳mӦʱ4i'z@!D$lw=$92̭L5NEÌ'_l' &KB7;|Uy뭷, L.E8ƩV6O90 ;Ae˖)|]pNQ#e)PS#`#{q_o*GH7oVxuٳ E'~hWUX`dp {쑆 z. 1dR*H`7{km0\K1+i?slo(By$=?"B 0io~С `$O{r,=bO2Z^ -WEZ?o9,JUђ#BLXd4r X#$*qB7icǎ ֚qƩݻw˗/^'ABQD#D ">}/M!B 8-} 0BsL?ŭc,Ǝ;CB0f߾}`/ׅ<2kf !);Hg\YVXpA@ 6]H sv0=0HڧHs:'":xCzTf&8fܿN$$Aoq o"PԵȳ9{cyBҝW](KR w6$,a׸oPBD֠< 1Nvl a="p\$Hq$ҔȂްOvSNa}SC!BH_,#bYIjRr ~*?LyB B! 1PC $(PCO! 1P!b 1b!B!b( 1b(B!B(P!B  1B!P!b 1b!B!B!B zB!B!B  1B!N$B!B B!B 1PC!B! 1B C!B !B!B B(P!B *UҥK%::ZKTT,^XmB(P!B B!,YDܖE" 1bC!B)(zҵk׀nݺ"c]B 1PSιrdggKFF_yLLhѢ\gff<\;&-[oH)%`YZJnݺ%iii3Y~}NGAړ7ʜ9sBNJJ[V>|( zӼk)={t=m r{)ļ:5^Hfv4_6`<͖9B4\y׳LU>sˏ3dx 16ԨQC,XuJ dǏ/)))dݺueM6رc~>\ˋ/ܹsҹsgj{[y_ 1b(Ę*ސ!C^QXYvmYvranjߜR8a?VS7o.ժUSQ ^ ^*!wRFĉ}>qi\|I&˱lK! 1S'(4eB̤= (.[,#Lv1s98z+M 0mEHBjf~X;_1 ?b'$@ػw]0=S~)PSʅ +=z?  sBHib~g?~KaW%xNʒcӧr4&BLbKDIBݨ,-hIʓs"<\[X/0_$ƍZժUP!ڌaÆFܽ{W.\ ?}T '\ˈ$//K!B 1PJCA6mTPA8pO>](\reVn]U>r&ܹsGzwQF uWcp3f:Ae']!sY|0g=zeg/y܄v^zr5v5uVT q˖-r޽{ƾ{Qozqyw<'OVԵ"*|~|+V}+WO?TmvĉmxsU׋b{V#$99YZnM&ƩzI1 1S?7]dR|!ֵ\ɓ ^ 1JUS s/:K3G+N„{;v(&L uS_zmB-LmaCٞSy[nB  1P5TN E;̙3QCخ];9Gȑ#m/^/… 2a?Ĕ$UVZ+:ԩSSv]!6k>o;D' K.ٜ(\fĕn3z!r뭽$TOܧ{'g|d1;]PhY}YDy.w8n=i:#!fs搝67M ̐8#!&8{H{.թDpeK0.?Iԛ؁8F۶mzb$HiرcA o=$zғGƺuLƍ~֯_FvB\Gg#D1ѐ'|ذaiBKlAf]v:I2F!QҿM6'a@оg$'IW^vx)fs.ImYh¸酌;zp4ib]QلK 'Þq>!Đ\GDt/vL /'޸9m\czwM:aN0ei`߽CN?o<GB\2ۤCum?=CJ^ 1b$PqPa(ǹ}a|{SxGo1b l$EBB|bre:w\rzo& [&bҿM6@;wO⮙.wSYtoKB ynݺE:D̸(4bžq>K)~!Ɗ*Χ%G'\J~ nYS͗?bH]b&!gW7ڻ)L 3yf"L0uҥPJ^ 1b$dj*5^@ ƸpЛ6 KfH&32d;Q&Ol̙`Q!iVd!|IB lRP Z_zؓøho8;`ߛ6mIJjժEψ'qܩS'(&`ժU)!&:opZ$_o\ҝ2K6S?xa9ɴCf$/LDCBr"IsL R5 80mD}]J^ 1b$d~)9}![(§?oa:$E$qsz2bq #"[ I]Mgd|%c:j5$DL{aHCd % Qos&D N" I$~ܢE0WJ#!F!D^ (\LR !!FHr4hPl~ 1bB!$!!FB(4Hڭ/I#B!!F 1b#!FBB!b!!FB!B! 1BH#!F!B 1BB#!FBB!B!$HB!B! 1bB!ФRR7!!FB!B!$H#$H#B!#!F 1b$!B!!FB!!FB!W2ʕ3Ǐ7{5iϞ=fܸqv+!#!F 1bByM4vX+!#!F 1bB\!ꅩui&{%b$!!FBUի͙3gR:t(|߾}~%<Ϟ=k9b+ӠA=C!DM.N81pY:u̅ LfͲwݻMos뭷EٺbԩER/G/0o5=\ޭX=ztҥKi?"wQ.)bÏΘ/g.#w+yvm^/waԨQiǪUL߾}%$:ruQqFӣGX{B/SL2ŋ[sywroe8ɓ'ͱcM˖-CϵB v}9u̜93~&/UV5&M2۶maӵkbV 1b$$pK[n1&L0;v+ !JDCϿSB :oI̻kZsI$!tԻý{s_v֭[ݻ(ٔO 1gM) 诎&v;_e|ls.m/66lhe֭[Mj$$oYBj߾9|" WG"mfx[oN#G뮻.8>&[wyg5k~T߉'LZZ%HSʅ߿Lja̅]_͘1c |_\L.,H)An&?oeDb \hhR۾sdܙGEVS0Dü,,>|-kQ/`|g)o;/^D?8'e˖MEub$HAA)řPٳ<쭿Mȳ׶>䓱8'k׮]7ߴK9ˤ}{*b[o6?}fԧS&|Mro2i=\BL8} *Ga"S'lwqFNz׬Yc.\h{%dLƮbns%S}ch=c߫ XߘrEo?6Q +lA{!IL_6u#yzQ/j:zi?nbV 1b$ cp@8}aw}g+rD:8 ,{ꩧc$tW^y:2ΘF"bFv_h[fl6ci2Ν;DiԨ vwq~OkfCiD֭[7Q=I8!a!7x=6 lICF45jF3 1k{Wܽb" 7`+زey&K,1SLIt}1z7=$pa 1>)Lyw.]wm$dǑS͉3,^zCjtmvϓh 4zx }v+#K ʌI+I C}:wl6mdLlR&7x#PHQ$QB z:l{`7aEub$H!"zr=.8U8.8T\TR6>-6m]Χ[Ga=KD/_Ӗh c9ЃӔ$! N\ؔdy>(v>쪋FL"aKtRys6%]3op&A6>_1~q.; q-_1ID:'tqח)Qnܽ %A{ߧr/ټ{A s#bh6zr1dynahڿ93}t3o<!3 qFBL4`$_`x-dԷQQ"D8R) (pmI*L<9pX[n_H[*!FB;0Ǚp3^[zuK3n:ӸqcקѮ]P6<!DDĥÆ KZC{H%ԫW/kwa$ Lsa$qCD)02{Oy0' 1+_iw}K8ʎO>$+ {S\}*GA"w/n^ܻKI:]gNw K$!(.146Atb2fI  ڃHmp`[AR„hlk׮4t(UB 191(8).p4ysczqLAvr/DzÒQ:$'bre:w\rrSiҤݯwhsIuмFp}H4"&=EiuDorbWQBL?$Z:BLX9l\wKBLy2Oͧ>W<) g+a<7 1ɡA?Ayp_if>͕i}D`ҥK 8*?LCAݻEJ#!&C!UV)E(DŽ1Vāޞ6B(Ψr<}zs\,~{L$Eޜ9s BdN _l@d!|IK}ޒ gwrcS8ZOzx:|sc7O^Iq.BLu5N3{:ud_z^toͽb/Aܽ zIb2U"'!wroG^ɎLJLo]z+J WlIpaB Q1O_cCC&ECySV`T"Ì_ 08u41 L~9׷Q8p`PCTyyk8g&Q0 UB 1Y8d$(^e %Vo?0mu0Q;wn`Ȥw^%̎zBlaaމ߮Η,T7^3rĬ\~;AG¾hq8W!&캒D0dRВKHD)[zl齊b/Aܽ zIb2UE~O.B 0$ea 1rnņSf 67/;Κgf9h_Jb/b(K^у*# b!a5C"g6"O΃ DJ.!&LɤN" y?9\]&:#pp%w6mj H Mc6̭j:udjժ ߿u ~Ɲo&=ϒH͚5M~WTۜ8q"3swo76N2= 19Cy?lc6?m4{/laÆsa8ժUSիMڵ-CE o{тr~AsumtJ.a1?vӿlԩvur+!FBR.gO=c#=s!Dibza{S6q{e˖Eֻ"{6lXmHbK_ }gN>m}e7(р_"`/&2$ҥK7.F\{/xq=&;޹>:&lͻ=f̘7%(0#!FBLB J)3"k.?~Z2dmxn?܆m޼<i|ofVXz8U.CyBꦒ", !$dJv׼yp?#&z0f(|owe|MkJص獞/2 j…i ޗ_~DГ]^1z1~m/^l1>{Wm:e?GϞ=K&_t)»HL26ht-v; 2w:'`xLj(gƣ>0{`]Sz][ƱsN[ŵh|gg(Oh=D<:7Č:&Ἁ馛R$@oJ#!&`,#η4LIH&+N3˞z)vԺ#%Wϛ:ʻO8:#[e(J{'n+W1fVcbJ6i,u`'A]0/q#u$ ['IRPwavt8wa&Lz%HCD =89G*vW`q+WlTbQzMf#F!$G*0X4!D>ܹs',zT>'x:Q#%b26Ά'=ߠs AQ<ޱ.3KE9cSW;߿~#IDCB短@%DnDzR!('l>O>ӧO7ͳ?h#b/#@SiҤ߂"Y"T*"ϰ  (n۶m凙)cn:ӸqcקBQ$!L4Ή 'Wh[/h~ᇩq1l zϰILI78%0Jau?ɹXrMKΪ7ӿ>z&t[;Ln"sn=u֍TlK^!DC;F~1 ?10b! @BU 1%:!r6m$7]l@B DI9 [GD(KޛthRJ#!&!sِ7B?%TTfl"Ap6BLW8"`\81Ν;!,ð$"۷O~lngÓo9e#a ^tVabM< %bq$à Dr"1D2Io *Qv۹aIKQLT5%h}|W:"! "ݒS~n o%JА .]Z`]:>ЮF'! [bL`D ^ 1b$d(`|ZjrBPGX7!8$1f&~<7s\,~{L$EXߜ9sR$قDO;L4, r `[6ixYh{D!RSlngÓo9e#Po΋Ľ\M8rȗH9I<VLFÑNi&N,(ғK#D׸xOȇp6&w;x/ya(]B D wo6"l})Q1O#W3q M*I#\׮"a~i!:]ꬨ:&+u7e*Ą] 1bb_pN%=AZI| l"f&s*o#(̝;7[05T !q{'~;7h9W6)ȳ35j8fg϶Pzlq腍fm Orq甍Jqb.2|] K$q )N\jڴ7 o_NYOMD ]KBB $$HB!D~Dr3}[Bb!!FB!B! 1BB 1B!B 1b#!FBB!b!!FB!B!BH#!F!B!#!FBB!BC44IH#!F!B!!FBb$HB!BB#$H#B!#!F 1b$!B!!FHb$HB!BH#$H#B!#!F 1bz!f̙3):Zo>S~sgϞ5G1_}iРN ywN*Bz&W^yŜ8qP+`W̓>hY"?NB._s!NN~3p@s뭷o <؜:u!uOl 1b믿3OGCE:C4̋/IHt}H~/4_e ,%H)ԡIIĘ\ElN- &kϟV bOM~nJmx͛S;O?m~7bŊjݺuy5䦒",]B EhE=y^{-ѣ6>2{j; k~oʀ}zUzZ.\h.zĸ^:_en׮]7ߴ'0SoOC&e!9]/lI?իz29o*ٳgyĕl qAqҥ(/&oCFNn"lKb[EbgxLj(w 7 lBCwABL進vcΝvD_g7ףG@믿>ѳgOsqs]w;3w7tSjuK;!sezb$z *4;&Ɣ㭷 m}wҧG(%$,{ꩧڵkSvn/Yw#1A%:Oƽ8ފ0>y]cmY{Nqe}Uoyzߕ\탄!j?ĐN( ڐz4vQJT]vIl(B L4dpk47CѨEpA!X:4^S2:4۴imH 򛂆[bHwo^!%( :*.yoҡIQ,!FBLF9bh&{ldv`+ SHk|%IuI΋R9bpTi$'}&M6= AwUͳG| Z?ǿa(8+d: 1%|ݻ~K!EA~)é.]WW|jOI|z~ozC$v-D f 1b\)ʄ~ѪU*Ϙ=R׶lb~DQ\%ly3m `?62b 9s{BC"2<`,*}ԩu4}bߨeTtDx+]犰 WK"hdR֣S5!P9?s9'!}ز/>H5 '{B<z !I r8?'l(]B D wo ְg1,:-DjhRɆ?&_f2Q~)5D 87ӧӊGN3+D0 "14 [䆾 1@>#T f 1b*!|e0C~ aʐ5PΝTIr^>cTzUP8Χ~jf͚]!/x+ƨӨ(} {Qo2>A4/ ru\IY{NQD. x>p"O&<}Edc$quCt tu cqzUOd]\}!J 'b5" ZX4 ѣy9SD'H)x^S~sgϞ5G1_}iРDl'oͻ~~O=cYRl|a?x~yJ9)S#GfMQ|y{nӡCkԨa>ccsh"ӬYu< 1%C[1c Sz{_QF-[j۷RK/dlb;S&L`ʖ-jiGqeu1.\LYB 18%Iqy-XCK=?zBR+_2֭K7l0_vӦM3Ç/BL[BL 1п엔;474zͩSC=$!FBLO?نw/66lh;7fO9GVRB^nj׮mmݏ?*Xxm9e \ĝ=¾n!}ږ7h-_u*h_|QCJDt%q aa#ΖqLxq=&;޷/<3gٲe λ=f̘.%ȧ%HRcBkϟV b("l 0͛7[w̧~ov8U.CyB+= _q 1}sN! _i¶buC3h8go6'jv>6։ Q6vez- b}¦^.a;\bT/f?a裏3!6ކ7LsBнD,\о <˴uL>݆#N}^8ٖ K.6Ch<ш*S} )9ݺu|7._BBLû;FDwHpF=,X`a8 ] 1:۵ct|k.ggOH==z56\={Ǐ+܉a8M7ݔ ,'x~,!FB8y0'ᄈ?N?NIvԺ#C?#Fhm{kOmӰ[n"ĸn:k%4gɒ%iç)."&\8`WgP4/ 1O>m!!Đ{{=s7c!x+W΅g̔i㟉c2 8aBL > p hF%sw3,$?\`>!KA7ްÿ.b\vq:9(JsfӦMVFfHw=b%DՕ}a N]F b2f 1b$S^=x{èxp]ɬ\Rm|6Wt+ sw\'z˚7oDSL-΁Fi#'8=aS@?JG;&>Ϛ5+%2[@%9Ι q%$9L#b3^v?I& v\;\&y%d>k9;F F *QfYH)~r .'a|޼y6 y|bVu5l 1%&MX-(%(Bkˉc>_m۶L<9t6(V-`O wÄgF:$f 1b$ tر G Ά7^3Rx$OI&7nlô~4\_CuIKB"_DÒ|0 -qs)iqDЃEI-eccv۟ELƝS\2by'~וN"Hɼǿ/ 0T)\»O#!&}ȗCY`rChKjDDxE *Qfe,Db`!O _qyFGtDpA!X:4^S2SG6m$o'/]\~e[$ ZλIDEQ{AC7Eq{Mf 1b$ z~#@31ť7ci0pH0<|X8BdɅܹsPq|rP&DdHG$4/xmwsTeshPLݾ}41/J$qsGbk`xqCe͚56y5g"qw3,$Ĕ e}g>eHg? 1%l0Ào"Gɳ4(Ȗ34uҥE\C*,t_i>%7kFV 1DƘvb$HPj*儠308|۳FH/>|ː%oÖ3gNaB0ӎ3F. $s 7Wx`ǹt&4I%S!& ~αSNOd)~ IAߜ &/IR! G="5)"D#D('' 4Tl׳S2 ‘H`Kx֧1b?6-DkhRɆ?=%/ym`-'ȐP:᷵|&aȷrs"P04[B'.S!&%H'*> "LBHmVQ;wn(S!&ya@q<g/RA˙ĂLb;[D|-!N.%f:8۝I^_ؼl9iA8p3a 盞" = K=%wPa 14(x_\bl&a0At tu~jPçy78eV%knr,&O=9 Ɓ+ 8yE}Gf޽>5aB u殻s BR#<~3+V|͔oOo:nxO>dA矛={͛7x 9,܈/m5k… mo?>}c=c_`JJCoS =sq8S~xVxBP(^cHu"E E ;G 1Eí(PIG ݖij&b. "Lo'H0*$-@H͗5J7Hp$1 4QB ۥKw샞*{Z7B!Dib̛7@Cٸqxn;w3b&⩛[1lΜ9,=D \(#FH I-B(3v`AѠ0&O:)5JI^1&9a'/ފBdhR^l%zU#{ *Ll0("p(rУMؙB!DqM7Cp`8w ?/tsa7/8Q7%  1A F+|D` b4b e ^Q2MLێP)W^1;vHmt-àǠl&#vډAq\ 1?_ç2O!c[Bm\d;4Zʕ[!ӽ{#!B&d0?/Đˁ'$rb7nlE%x%|wH]n\1OJBL ԩ?S "JhҤ]ϥT ҥK !8.?LT[>|߿߼{lٲĉթS\p4k֬@e;k;v,_ܴl2c* 5s4xAq\ 1&Ĵk :41m۶-F磱XfMӯ_?? C޽QUbbc+gQ_80aygs:̇hq% 1q'6%~Wk׮5ݺu+Өtך믿eb~#Gl/lCaÆa/4U&!ٳ2d-/r={Y~}j~ky+z}槟~2=XZ)eo[c[t!ffܸqb?ABBLQAOs=gq1/Yre<-Zשa^|E M*n&!A׿ltI믿1c_eq"Eϊr(L|6U}{P(!FBLMJ"Cٵky뭷l(.JC ~Ypu(+7huϟVKD Rn)of|]𗭨ƕӸk A')q9 !!&Hq1ΦGک'|2 ym]Թu_q c狣Jb~gӧOy W{ ,= ]\ 1E#<D7h{,o& r1Əo}ʨ)eﳲ."m9}0" ףGD8QBBCE8hРBa"nb˖-Ced۳'4jȎtmwqGjP.Wݺuu``i̘1#R qc mXB =58<[}wY= \gge<ٴiSZ'NF?!lAXTw[2D~ ֭[ Fٴ(U]A.RDWbr<tb0t;Νg32 'xl߾ hbÇ<3NJ$ yD!:xΈa"7x#SkCaR?w%H)dAbL>#bQ%Ph)]t)Pp1p2(q>i@!ƢL8LO=g,7:o^]pg3ٍ{!y!SDee}aܬslǺrʦJ*fƍ7uڴivرc͈#z7]S}ߟL;̦$8!U΅TL.M~!& :yascEmf͚eO>F!:ֹsg98#!ha9Oݼފas̱eg%R8Hf5$Z^3v`SՆb h"0X1 h 1Ⴒ%(ĴȂ( #;vHmt-àok׮5JS䟯'2O!c8[8Bdžm\d;/$Q~~ dﰀ8!{i=Oxr0DpDÙ$nڴPlʠ*0~K{Z8ޱ.{o.ɽc9a|&%Q&dra6%= zw$!b26->&BL-_PڸYh?bHYI)x:u2G<"Ù-D&M\LE Z/]4߆¿ qb$ST_MbHriʄAc"1O#&cȨ瞢{VZ_`$X#GbarѩSAG%) \u ׌3cx#q=f*c @mI4ߑB"&}v39E6 ^ >]p3y\.܄=2V:l 1cA%cV)0l%h.Q=$?4~a6L'43q&C$'Ȧ$A!D6BL}iQSPި(BLm, ;$v#pE.z-Q b #sΥ}a3,nc)^!J%RщB :Om01Ն"!({P(!FB%Q?Oo)W?BQ@r⽄q}5I>UFB!DPJӰaRl #Ok3$HJ#JB 1B\eB!C:E0^ 1BB 1B!B 1b#!FBB!b!!FB!B! 1BH#B!B 1b$!B!b$HB!B$ 1b$!B!!FHb$HB!BH# 1bB!#$ 1b$!)W?~ٻwO{1ƍ^ ! 1BH#B믿n⦱c^ ! 1BH#B Q/L[.M6+!#!F 1bDR|y{nӡCo>S~}ժUͤI̶mɓ'͆ L׮]uŊ])fͲW^a^ڜ?ޜ={9r|WAuAIEuTޡ3gΤ8tPnuNN2Ō9Rϱ1F4-=fΞdN_6tamy3Ɛ̖]>#iVysPBL5jJ*w}lݺ՜8q,[,bK&NN:… Yflaw8cM˖-CB v+^+!FB"PCYׯwָԪUKZqU18B4./^l VlzT#r-f„ fǎQ--Bb;뻛d] 1WʼCV$|)kBL?71MF6?uDņSVi]ɋVa~)_mZgϞfȐ!vuٳCm ӭZ`ԩS2 ju]x|ns\ 1bJq o%WcE=zk^h￿1JS' {=採; 19gy 7.#w%ZO\4-W|zT 0/~xPC tM7ڒ_Ռ36 Q6ŋ"^G#!FB]vz66?駟l=v]L2{ӭ[7/l .d8Ey}Gk#40::sj?qmy}rbJNr;L[o cg/\2FWYI;h-{ϙjўĶƭGu( [Bt e+\u~-%Lxmg}z y衇#!FBq;n0Z Bp ,Yb{i℘FÇB㎔c-_yg\ݺuOZ'F֡1cFcs%;9=K!DQ#ӧƍ -q˳^&tʕodel]vъLwm"uKaJ"pm^wqm=8|2Uzu|9WQ%C!_ЁOĽ#n(w!h?MAѣoW\lH)~!薣.XoG I[~<|x̆]g33h޳'77;g'! Imkn,XjKȃ2sL3tTΝ;P&L omب+z%HVKO+.F 18 .]X%81(q}ЀyBE'(ܹs',υ~ w>}̏?M. I :x%wa$%!&a.a;"^Y 7K=~ꨒI}0ӻ>4i,!!k.(,cW7֞4k_q9SsN}fVLRk F dĈ;I"DZӼysk Pm۶ #!FBLLt9&&LJP6z !UX(%»^lz Bl&2XG aWh[ pba8 |Eaɉwgwر#FtroҤ?UGr!x7a?y!,Ӳ!!2>n.~iDw3= bC{Y;̩Нb"Hj[!XPIeKܗ͛gI&lK1(I\ +!FBPznHTv@!(cP3gPۧ5Xz#BQX8ąܹsҒq G9X8{}^eژmܸHS%dZoSa޸ԁQN/7A G6^ɤlH)~!Ɗ*Χ%G'\J~ nYS͗?bH]b"Hj[Q'L 3yf"LɺtǠ!.?̕tb$He,SP!&gڴiv;~{s^$-bJ3f*.ti3㉗!'Lq{L9d^NIפu VMZrǐ׹s~^+LlgD*UlM|H s] 1b Ĵhp3qŊ1$ {g\G(JaP=G5u֥ٷo_۴iSkPؖa2@LW/0Ky'~<*A˙yVD>… 6R&aLv̚5+, 3"iD{낸z#꼨Cvh 8!Cl#egׯoZ4iٶm9yٰaڵXqS3e֬Yv+6bŊf̙3L2v^J̻knjN8a-[^zlٲ [&L0e˖;J3zjsyN9:t|cSL1#Gs,BL;{K/ӗ ]pl;vḩ1$-68kHڲU1w޶.[^Nh"sQqFӣG8qbq.\`5kV>|1|rӲeTPOx] 1b[G2BL͚5M~p؝aUbph\.^ w'PRUD5!" 8 sP#bpB4Ĉ(5DATP(JPĄgvgL]U]-:U~\/w`g bc doe˖橧23gάK/̙3x:SL|LaDpwMFBO^ϔNCCS$Ӹ/( ϷӯiӦǫ_~vH? Q5k~n>;̬Y𾗻 Ob_3` sE怛l^}bY'yY~tTo6w25U0ꆹo˙5j#;9y1}j߻[ /mٳw߽n0"n6nNP-_;A A Ag…I_~i fN?t3uTbO\۴ice;i$s_wul2e?Pqp{OO۳h'F۶mtU̡PAرcMm8n:1?W5d]v楗^5?~|ƍg̚5˜z>2dHjChѢ>:%1ߨ^i& O<1qOԁtR^?4l0(2jZT66{ by׍:seĈvFɆ g_XASծWߙ4r6_ T&u|xi1պF4WA~T8܅3"@(.8ӻw bbbx4nؾ"^:x4IAL.]lKk>" wa[tt=hQRC69rdlk.ZؖҙgiOk׮sAK5OnժZn>2M41~ y:h`OgWUﭷ޲!]آ.u]tEU[>:g{E3vRRoVo_ve/W O}v8iotAx; žIUwݸWn#䞷qEWlz*iJR+3z י_\fa~E×y79K+ FM}P>pW)5>2r}Onj2 '?Xw_t:FJo'!!I8P'yqAvz`]!KA֤nC<)Q@D I=ԅ:+i. Ļ*NJRs] tN'' s ߧEg,61cߟm34Gq= t1,::2 /{k6^:b47azeqE_kb̓w+CߍZxzUf̴k(vm ҆3 :۷S1.@飏>Oh!s ܖ #Sݗzkt4]!wiaKE Nr>7G.v}U46An!{TOԿΰSǽ'tRUOa>6{ bU㛨[)鵈 b[O=R˹/I?#ʅ?\y| \~p]W:ӜiA1]vaCRN;5-Fԕ8lN ƣ>( F 0laAϸO XNZ?`I bɡAZUׯ\Oj{ԴY t tk|9awwyv] n1Z;z>z)am} IMCHllnbon#."/ʊ v W\af,Xg̬~E~ޱuu|ğTA73* i6aW'NP8>L111P4ViǴQi.vkJZ$i`0]p}ץ~YU?\_ZPT2}G]W:E4Hkmˑwݢ۴l{H]XQu=OK.UP؁j &y+l&6^OziFQA-ϯ4Wn0+ϪyB3IR_nuZ .2}*אY\o5Ij 1 !ΝJfF{S v ^UB 9c#jɓֈs:h>ÿ҂ڱLJA(NfƌVW;J@mESnvׄᄈ2IKFpU˵hڒ5[zoOu$Uejh?ﺋWk,[/iN8ljtzR &wՒ9j;}v 8}/{97x7jwu PMQq{< >}_|QogD&1q_k׮aO3MEkk׮W F{_bEՋ?o)ů7 ݪ CЎOkL8yvǢL(IE@VsA6PE/Ț1qԃƍѵלX\a}tX?.en1<&V[_T٢U=ԧ#'~!I[\ח|1QǫIAL񬦴Xg҇.DS,QfYנ<) /u8QaYv11ZF/HDW:Sʕ:zƢRGO1Dכ.S x@*:F!x"bPԍ]0FaEoS' !  Gk 6.hT56iM !! @CCA A A !! @CCA A A !! @CCA A A !Oӽ{wӥKP ĔI P bbbA A A 111bbbA A A 111͜{fѢE/0sA A A Ղ bbb}\}fܸqffڵǏo{+ !!@ 5iz/4IܹyWW_}e>#se{oPh'ŋGy$˝{Wz3sεYO˚5k_mz-ӣGjײeK{lG}Ԝ|[6?Oի͛oitRu^zٿ^'liW1mF'gvzS]=4_n렃2cƌ~[nYƒ%KR}iI .4guA A A @j۶8qbU2e;;#큸.so؟ݽ̙34kۆ8zjoyML>q׻+MA?۷׿e:ud:vh_ԗG1-Z_u]U0FX2ĬX4nܸgq^6af4 _r-1j(TZzEw4s LMY>CU,b/j~?,]x㍦]vf77| &ZA A FS%&]3ϴUM6-z'p1cF Uv,7p:uЉ}O:~&kD-Bw΀Bƣi&hi& _Ok6r) c`2K |i5wh;",ٳgcpuUo|9sf;a\gSmV!*t FӔܖ,~qJa4W gԍ7|j]I :gxtٳgŔ&ΚDCPipGJDi5 H>h6l(xgD0hih[zFtyؠ~ҤIvuE>wJ~i0tquQ(HׇrHh7~&n^=uS 0nt;gj;_;>{JbSRqgÏ%Q)Fm &gB_uU ǴkӦa^11eJ]0y٩7]v1,u-)\p48 b9;( ^O%] :5-,.;1k/sOhE^7|cn:.nuq(L߯h q|Э&۬.CUm FSW\y1 &g}m`T讘2 b f G1t 5A2,8(%1]%*YTa褓NJW 馛L,ĈN/QGtyԠ;4}YU%1guvnCtjVɂ.^zv D=Z7Fumzal|o4P)6u+Gw+9#l( *X7A$1[b' g +:SGBk!é)uhz\Y㦹;L<4m41QDŽ0t_?u[Mo,Ҭ`E3k-Z:zhV[׭[7iEN{EkޯBm NQyٝ{vo݆LZW'uJ=zD- F!։'uסȑ#]JK)S1[.ي <gkvnK 'aAAh EQz[p1ZGD}-⪁m ^hP]5>l4:㾾߼~z; vSqt{fuޯb:E)itl:a|J0a}c CM`MS9kBQYP2iKI5 b"!@$ rr55 S(MHC,kݑS[{/v`[-KC ܹs~VM9SxZ(v`[4ӵt}nEy)YblQGA⨹ 4&ؼ-bjlbd6kٸޕU.[-56=3Vo7̌wɌό]m ن &7ALmOapWڣREfnٲJ<(56=3VȌwόwʌsuj0f<{"rv;A:@Ә\cs3c}<E!LY1[I;gӓ4]֭i޼9/g%5 LK-3Ӓ$ӓ։qaOI;g5g2-OvuZI&k,11^1{~goZO&n}$1+ &AL+b'5Զ4kWp3(P3%i 䙱yԴ G^և){ӓΞԢRŁ gagKJ;-z `oI;yӓCyJŚ1~M302cfn7-iLKb<.NL$GfYLVhnW9?D-u-Ӝ)Kd?Icj5X[c-3c񦙱^7.^7LiIiׇ!IfzRTW[+MQ 1m*u|rlѢŝO+%J@jK4Zcl3c`$aaj;-\4=)+&l7EɅ1nRL{TLJ+͸q/2c3c6v o: aΔ &iI+&ALmbϬI\ hSu#͸qsX4όB#$e Cubtlq:k4̜"Rs̓YH(P]Yf43Ȍz!L骷˲ajt޸3()J? t-̓uȸPuʸ`T|q뀩Ȍք;a~1%iېn,KIQ]1QŸ0Fn^wte\|×=Af D n br}4k(%1f CQ扲7u gB oO7:`v"Ņ0QSj6uWL%?qk^ BSf@|_ꍻ]  a$ &]1ن1;2;B]d| fe,;y#+I7LI1fmklyv+e(jOlXf,օaZR'af# csfB:e͘xx;xz4!61MBZvŤM2yL0~_—fېyrJӒ+f1~ wD7 `jlE7LbEWL4%? dB?~0a!XgJ"IS0&;&ą2ǁ1x0ECSaLT "S&j*"j- `a "I 7,|M,|t- 2Q ^bfn"I c)B` ^—`") .Ø2I Hd0&@f,:ei|ٺ !L1IaLTwLX @f넎0I]0I! AL1d`fk&s1MȤ e~H8@dK6K&! ALØcLR`@v|7N|?ECSaLR  frP—4c-a7u 3[2˱xB1IaL6Sj1@.[p̝&|MCS0eC[Pr9"˱c DBĘbbJ ;R 9 Jf͆lu]._,טZckD ,%1q[[+o<$E_O\ڪp.(7tѴiƴjʬ5Zcl cw2BgR]{Ťa1Qqa~y"ڞ#%jwHv۷("kk̭ cu<1f11&,^LZ!f-x,!K"EծR3:wlZnP4[cbD^1?+W ˒ o_5do"5!ۭVRA` @,i xCܘ c?4nb~^`\TȲ07 $!CאJ:3TQx3Fcq56oaۆ1|pKbXTnIx;Vn!& .GfM6d뭷nV;v3Fcrͽ{ ݓ 1I0$!-I70Enr(0P B/5Fcrb{Za,(2WLP{r,Kc4kP:BtmER&81vJk0Vo1 \wJr0lXwb5VԞ~(r$PB`56an$R+&`oøݒm԰lմYF111s' A٨a~OmvO"NL1aa;dueIV!b!!D cu[!b!!gy3Ǐ=}57˖-3+W4={{77'~=_|a͛Wy׿5Qܸ~_$Ĕ&!1/B Բs# 49a&&w1|櫯27|"1cF1?I(qw{ުU+ӫW/ӯ_?4|7oufzOst>1^xlVl}Y{X{b !xa℘)!jeiԩSbbK.I=~#A)e"o5Cͽ/a@KhVZee*AɂD>u4*\wo6:W-a*w믿n0}ﭷފ]$!y 1?M)Ĭ1E ֛Vg}xu:ܬǖ[niN:$3{lsQF>nff͚egz6ݥ^j8馛c?~N3irw=}g1c\vef~qP1iĘ|DŠ[8{m;to5ݔp v'gawkYo;_ߧ8\9ꨣr;jɓoP%ĸvmMfy7nFiBkk7zu;O8qbݕ={>n-KNYdI.vmY]! 1 b~}u!fذaV4h}~]JQM3g!CwM2FA:첋=&AFhN>dAtϪϪїX[laE 1s@.Mcab 1Eg|:O"3MBc4Ͽ/>CŬ;R1 b~b!0!_b^'w 4,Iz)ξDwܱǍ͜Skȑ jsGi>{%Z5D3<3սsykSAAɓccIן4i=WQ&L;h"vQ;|9NXQg2!&5˔&OqK>}FLIג"]￷m?0vRA|DbǏ?h94]!_!$1ÉOL*iw‹pb1X/B B @i-GJ+hmxkjvG3ZF/+N;dKq~y(@$h-Y.*Hр@A (+$ݛ=qtgn­al_Vym[ NvO$Kjkު/pW{^cm$ȴX0:*oފ_mc5_C>B.)VCh:j{uº1/S{;4.E} etWo_-CsRFi"!1PB& ]f\]W͜*6)X2\)u\ ߬Bc'wiRҽᄊvlRK+U}^D ı|r;UP*sD@>Cv+"A*+W;-uԩѮIעk#
BL{Qh&-A裏eR:W!aHLS-&*!FDRqe"OB̯bڄu 1gS.im*}ňh:wl{$j)03y=y_̪7!F(s ]3=b~Bd!f-@_;#F Ĕ2|KMIbҺuksUW8+y+Cfٲek4+W$mʄ:qꫯ"@AI6 Q'P'Tn[gZ& bbjDr$'lvl91&2#F~^xe{0߿s{9wߙo&NJ+1-2-wY[Bޜp UVe-̫s38&\n|hsFǎ9;wnnj|ʆB#G6z_DBOz.'˿ Oں%-/hz/5ҖZ ̀ tk_VzY%؇j :ud.^ց|/GP$WBY*U>4Ք^N111a(L/quYy楺olcLvo^Bĉ#7!dK 66;b*Ty7"9s Ĕ+=*M>&HԖ $ {iSMB+h|k\vee˖]vOqjm@vyDŽ{m|^-v}|Cͻywr-M̶nkb{!VuBۓ,BL1RI.1m4W_U}! ĔDq#ŝ[d'Md}&W%ĔkXkB? x]vAYi~V\9C 0o9l gώ ֋Ϟ\~0naEIR[+BS( >c3nܸy=z˓ĉ,o3fLyAkD@BiRKI;.r-]+UTȽUcP$SKR1M]_>111A;,ɭ]3G2j6|H{﵃^{-fΞrU˅WQf.]GirM7cX B뮻v4>+(>I+`[hH_IG!F(/.b=l>+>rԱ;ӜwyM>ޏ$*gϞ>b=,yIeoM61wQ^;A%uX^gk`O04,:!HH>g4cb=QiWwmK|ړZծkߒo`δx>yImgt/kU;߽uęZ˃_'D 4:斦S=?;Y=S˟4#`-V=uo\'$'KL0!Ut}bR 1L׿{1۰L(oTcx!}駟i*ǎkݫ$8WqߛT>k\:,lʔ)gAoў߫W/+O>|*&]uauk1Ӹ4;%q|>I煒7?-W\5P>e6#&I– 9/IQV!&mtk1w->Y OS RTGL)c$Ikj>-TBy]c2ſqKK+(.=+CA)y`ϟR5k%MZ@`aP-ӽό`;TpD`[To]4r:Bg*b2)5Z ﹢J]SՑ֭޽KѾkq-9S<{ʞu*=^8̎[NYI"wv&FTn6̿4uG!CTf…ϧ.ɚ/~0mg58K[G.RTU'ĵ'qBLRtϫZx>-TBy7=JE::MwySǽhy~k%/ *_~ 2$U*{^g+9fьR>f@U/I UgaiTwiKYړZ5R%C1&3O'-.-Yj.KOi&f^V'Mܳ?$XH=RBLRPlO℘6:Mb 1P<]젤::M`[Qbb +ȉ1I˔jB802b{ZAY2aͲ굶<+m#BLo|նКLhMkF:KK͘Y0 :_ZOfU9+ؗyO޸'U=٨rz>'޳ jdɒ%y( nj<=أNjlw̽VOr}GBb>aikKꀬI-NkIrOZytKʕ:~D5TK3hzOaZ!ϫ+{~k~J,T^R"Ĕ 5R:~w!k5Ί▪cfYk;9Sx w麊=|i$X$=WPa[R 1 <B7-} cbϪ\|J7~%*4S"Gy3iʌ mL*{ʞyDL=,Nu >hjГ>jsY0(nvqIun)O =WyP ;n-sQug$ȧ=<!tn!7-Ĥ)IBLCqe]*vhyĥ?F#I^ު8M_"{:BL\{"IaPA7NsfQg3M,ar+Idz1*11ePL% 9ScX*}[Zhӵk׺b(o)TkԳykCsL:cLΕ1iC/شm 8<椓NJ}!!!& %88BLF4CNì;`5jTz&b1ޭj:ꨪʷjb(o)TcF˒Ǚ){.-ZZXӱ;We/4}m$]wuj3<Ӥ38!!B]  &M2y'L-b/_n; ,0ݺu˝ǚe˖O>n?gCތ3̒%Kٳg7r[tRhuGwm_}U3v{ {nf0?sӡCKdF0̴jժ"+,- k^:s?(U]s56_W\i.Tvs9'w޴i쵕z_.]4> /Ж޽{̧~j˟sBL\C8/iӦM^@RY#. "iK͛u}C3\\쬳Ϊ|r$-^ZiRV+9ӳuE);S-;.\h4mHTRPeSrh@-cǎ5Wǃҹk=[BLL˂$V 2Ċ5I˃>h=, mVw}Ik5*QGAA)3/šC=hv}w;50VgXɽ:ε„ TkP^|v 9 hic=u5A +-rwnmypT灹SԥIW]u5kVbinh:ud9Jϝ;מwSO=uH>v':2*Ag ,SҕuIyi4T poШ|wB#u]6ᷙ%B.J4BLR)\kjW'B_AQpפ2஫EL<9g ,S]'.]yY.Yajs,BL\E!OoA1-_qk=aj0ϘNvw$3f5Z&΅nPy-h-#q Z ]ck0ꮣm=5K? _dIF57o^h$!F3z\TВ?$"Qw ℑ|o1ZfdbD޽ͣ>jwM߿/k1aep*.Hg MYUyv IuN<[o-*; N3\p }`=件2%ŌZ&,&=gY<+Cmy=Hg$k&:b*(aܜwyϦҩc(-@AAb!F3Z-t@"#g$*b\ҩp@劤wyΞ@AA@AA@AA@AA6. m@@b fPQ Z&mp46G#AA@AA@AAi7onZnm:t`:udvjuVq 4"+_Jo_@yb믿}(E5!& 0+tYoJ'!ƯOW_cGe*NԓP~QnRY(11uMvZG!F((P),cB`W1 B B h1,Se e`Z"]J%Qbbj !&>R9*e4FAA1O|-1DZO(d33~o|`nV3b6FAAA E+&%O>$B Tқ/e]dK2+V0I_nɴm۶=z:B8r϶iƞ+E37|u*0RƓO>\|ŖN:ls1梋.2\r:u0`@sƏo:,{;ѵwnvygs#3{l[يK/ԦӮZ;(IyWlv+Ayg{]5>̚5ˬ]磏>2}NWҰҸ+iV*w)VN:tʔ)y]e˖}}̘1y݋ڇc{3dȐ )wWԦm/}B,.r-ywӡC5;ֶ_}Ai(G_>.Z7p.4J>IȾɉ0o˔Te״>+Oc$}lٲeO4[m=ۛӧO> 1Yc?63gl&lRuB:i\SzC=Ԋ Qgy<@saنZ2w\H z%l\qFmdn N(A$ѣ#;~ϴiwH ͶnktMo{/He]̤Ir3lذԿ/XJO_t!&O P>KbJ.ĸbjʾV;T5>h[s/2Տce.#_}!F?ln*wuѼ;9d\ {GFQ=w}g>+>.\,X ]wevBL1G1`SO?ݞ_riK=QG}ԞK/b(11\)&h0 wG(Qg#Ƚ''ѡgϞVhᄜf0%B8BLo}N2v_HtQgVNoD*ZO}ģP 9O7@ɏ.]؁K>31MJb]-13kݵ^ۤukf}:U.#_}!F\~~M8!O UQSIuoS@>Bvg]@1LdZw^޽y!&OFQܹ:.Է|(11 1*\$Ukfܹ}m~lc&7קz+}{m!wnZr}6|YdWu lE &jC [nˋ [oĉsђ'xh6AbDR 1I)=ߦkuuLK.<; 1%5(i"ܬ̪3 OTsF"-Ik֬Yks[q1n̻:z^HumUoҥKmV0< Jp \R{i4 SٺmGGk%cNy|W\i KT])',ĕ!} Z3MWwgIb( cQ eI䴃L׋f֍3fQbb2Ljq:~=OXEw]|W#-iq_}pגIp; S' yTЏ5 "\G jܲSO=5y;viF1a4{RIA+C^0Nq4lq8&JqwcNBϚzvKYC KXN^2W?u \lUGH;iUiGQ? ئ:Ik /4_:]g%k>wHCGT'$!&)48K0`ᄊIb1uR!Ҍ/^z-;IJB)F*O$08hoaeL͝>AaPJʳHܿpT{=+8!&<➥2ܕ;_ߒr:Ը>DC#=/20bߕ E}- U&I 1y;xʎT>Q'o`b~sR4ϙ=~VMqv?*δT\3Oq勍Q靔Yӧ=ݷy(VU!1*1 xzbҌ\uy;b(11cĸ2wukFI*`ūe8NwkU,\GH &3 ƺ^볓vI;w‰P'FAwRu.g4%@! Nk9)$hu#NqCIB̸qlz׺G„zݺv=giϤDΦ:nNpgET'Bv ޫGe ٠n Bpi>/'Pp:=s~5E&yRJbHǥL p*amMQҢ#k)fUocYD1=jםȡ zŕ0!SpKoEmq3̦)wWJL<gsQ-M S\zEwR>gMbk 6pT&-=%aňQ:͛SIRSԥIriFĽw5 V<_4ul\69V̈́k_$u!SܽK視 IpB#BP'0WBLߔt瑄?vI=9u^;HIk54I_ͮ3MZWBi~@@ig5#\)gS~iܥN)V-p4>~w3>ꜪG_" }< eb4JJ(!&,]|]ۥ:.u- QPgyȤ2s-3Ac,aBvdX3n /Gqu[L*i]-MR;,M H:.IאG%)>'ĸڙ-sy$j4Y$I}`e߂AY\`4},BL\zDwR>gIbkB.^IdjS"_vMxD}I KsQ)'8qM4yĸ] Kb.nkVUKѬ[urwvkUN5( 7Њ!!W~Te'68!(htL3}Ⱥ%=.m!&o C$]C`_-Eo1ucgb$޸W &]*!FO*: W!lY-/z_D*uU}yW3* 4s5,}f5[5*$])0jIeH^?CʹBf 1/]jZ;Y"|DyȳFϻꡤp˄$>A;)hK]"LPq DT0@v=I}`e-'rv\>A0b$Ds+I%}=_4Q˔ -P;1FeB˔4$1LbD[TB/Tz]X$ ?n7B(11y 1HkFj-HpFA3"Pc@W̚VLkڬAqX ņ2uuqASl_XfH gm cQtAl5èΏ:` iTq1N.IztBzvإb~S=qU^iCCNyɍVZ5vnqBZ*T:rm_,ljb4H,\ RϤ *Gz]WR ~ |PLD3kTHdowJz&δKi:5tHC_2$ՠQK|di][B7zC3u:p<&uM]Ce~qѠU9TťEBu yHҠ'MS[BP| 1QT;lrW|Gq-0Y.ZpA!yF(ޏb>ʓN`wHZI¸>hR3+A$_mUsK<5:BmS0_+I5}92A6qM!_Dy^R]rI*$])0,$!!VEi(}i_h@:Wj-w8vMuEꌪ m*+n@_Gb>@Ror'$M*c.N@pb1Aomq3&rkPQ-pq|H3/Sl!&l'Ĩ*  =j˝0<% h Q`ݲߜMsfEeJe)/aap>/Q?Q&O1A֗I*/L^T})K@.ݦbtJYv)vYv|B=1 B BLݠN`1I`` Rt*Sd]_%T'LS< f4pg^_^# <[◼IBo5DaZ q]飐 qMdY5FAA+VBʠe;ʪ%XoEMͰhbyd1YL B4Tme)3 _mQmFDM;D(sK݋1FAA+&Y_e] B?_-Wg!.0vݫhIb(nِPbhYơSio=`UK.GJ3FAA+Af(PI㿤1 B BL]FG r =FAAK전S]*ifSk!QQRi(11<10LcԪxR= 1,GJe @CjMyRQbb`W SBCBJ:FAA7on:t`:udvSJo_@ybe!!bbbbbb!!!!!!!!!ZhH@AA@@AR!fԨQfu!@AA)5v9SLyPɅ-ܒ%?!!{1&%-[4|3f 1tZ>tڕ: @AA_A@~ ĔQ)l23c d'ٳg[/w>2&M2y'{;w6zO:$ӬYgza>g{s=w]S,w}ͫjƎ;cߣ{oߧO3|sgӦM矛:~B VPbbb{V2_)ԩ_x:uj7|c-Zdg 裏`3p@[a}g "󅘰k>C><'߬Xl&ئnj/{>殻>*C@ @J~B B BLwZ۶mkLBSۻ&F{=~x#D& 1Y82tu(>پk*Ĉ]v!fȐ!q:!&Q{mÆ ^ۆzbԞi|V[ٴ{nSl4F]GAh![VK̛oiy3mڴF; E ѫW/pB+DqdQ@_gL>=ݺu1\W^1~Moîd~ܚa1m]I&~((8PZMW{O@pߩIS(/ B)7v*lvͶ7֭[%aB.5[z!%;wf u#wj Z~ݱcGZJ+vq\g}nkgu\3;r Ŝ4+" /oMω'4QUj`4,F}\ B2!'\u]ciDNiXO\N;5J[맿Q}U:tcǰs뭷FA !ԔBQ1c,1>8!F;lD<غ3B::.MuNuq+Lykud?p{Տj[AicJ[W/koTŬEՎbFK@tɓMd鯴"AG]sbB B BLCeC˗/73{lz{{onn6sgi۶ga}GO>4iyO 5aBL;u.\h|A+;Ο9s]wqF:ƍg=itgvT~aдSB/ İkRF{-ϖGyd$ Ol^|E+z>X!fm1op ѣGH# 2|gk[lawP;$ٹKB BL} 1-I ݻws=gkyȸ{ޏdmͽ'Qo6͚5VveAgI->y{yhגss:&z)V؈#r19 ԍS-%z\wuCEǴir"bt/]vY6|XT\y啍&H/c,k.VOi׮]:~_m"cm^ߪgꫯiP|98ԏwB;^r%7ްg/m}|9݇ʻQ>l*3L№v+5^d;w^EFK~M?;Y!BwHPRSjrwS}G ܠ| P,Ti|wvTcǎlXǬ1=~iIMDζ)Iiݺ%&!@^Q8v ^q4p 5'!gϞVT=y$(iykݻwD!&wGz 4P4iRw bVbw '$>AL4,} (trq ޏbڸeT ,(|Am 믷_ԩS]SЏ?h5v(Z(On>?3}tswTC .dq5k?W_}zc]E1bbb!&Q4 bzqSZ:k+'((ӄu}O5kVl_k/SO=5w}$ Ir b~^| yHp o,Dȣ{}Gz*eIk?Ϧ=iG$Tz׋˛,tw*KQ?N;ٲ`ԗPGf=|\GyspС;ȧq7q/)lߓ6O5{.իW&!ƿ^RL{I׉W4h P{R (5y *nYcq$*64y&hy/# BLno=%5O7oVnIX%}V{ic| Lb4 j;`wGΉR:.,1qSZ~4j[~<^HX&pܩDyK4?dӇzWI*i;:1#G^?>v)F(sxE($ i4B~a%%i(L'LKCAA4(i-D˴;b 1r#c=f;zsεH:H^Mu?-N~z.b:3<t ZW b~E1tLU/D[qo=z#FːRqi6ɒ}o%hGG]S%qK*i;:Ȼ+lPVQٔǒ.=. ]3nS=ԗP,iɶV j `DA͛t8IQibkuŊHOG\*wMRY3Y@njb!!!!!b!!!!!!nQFt b!!!(z)bbbb({U)ư!!!*jcbbbbV61!!!!b1˖-33f0K,1|={Yo1}}{13~xo.BtRrJs7 , 1G}yM6mpbbbG{GQj*s[DŋSbds1[64˗/7'N\Coҥ B B BLzM0<쳩g*3k֬F>@ӷo_*S d~3gڥJ~io6@ 1-Z0̓Z]îIE@6rk,<_^~ӫWCW^yƞ|F!!!nRnY-뮳ˇy3m4ӬYz|f',1cƘ/zPT,iQ;SN2eJ^kٲlϽ\ve6l3ߛ!C+ Fv_l-Zdk]Y\<*W{]|3W_* a\pUφꉰڶmk|Mn\r콇E DHO$@d$HDDs@aaG#FA%:#$A "I(Iջ {{?}]ZիWUO[q?{&ٳg͆ L-v)H>Ie˖ǏM\b$\BL۶m3.K!Sʒ?|^>|(UI#}]J*]v_HC_qqΛJ i'?a:vݶm=z 1C)˃!Oa ڜ9sZݑ{ɓ'&:d) Bo^xᅂ!1h/DѰ}JnV\*3s-d1a/xꏃ}-ԆًQ wӟd=-$H#!F!$\CBL=U/3\|Ggouɒ%fҤIy˗7gΜ1+VvQo>kJ9u(yaeĉOvb5i Y\`Q'.wygD:"NL*'"7w&ۊ+/+fB +ȘwF6;vw?J:׮GlqGuzw>sϙʶ/{- }Y{=a5T'~ अsΙF?J$ 1XP\|94=m|F}" >YcF;{ʕ"M%H#BBLN^xd -I1֭MĔ`Mk;k׮/ݝ׳gOos 0Dwޑy!+wgȑ#v"9z]we%Ul^zBLT9yO 0 L}w^:Ui07Eb80}wnSbV\c͚52ȝd޳Qb^׮]E$(b*_NqP_( F>hJB͇~W|Fy<^~bY8ICOlb6l(!FB!bl߾ ή|~%)?\bA!p,O֭m:α,`֙ 1NSl,?۷] z hءCaBL\9I N fiңb`mā{ !fpԩS'͒%!&beooҤ HkmO_qK8!&U\1 :`Ń_L#0yM|c:ҴOTC1Vb$HB!!+.!9~t\& kĉ́Lʕ{m&Q+|۵kRcEL\97nlLXpgL7X/;^7*=]„;' )pi{&fX/> 1~+~2NbPs mپ*I:Ĵ%Obp\v1e;i~s?f͚x$H#BB̿aā?8" [nM^(!<+L YfW'Ę?sZ!oO7gAc̮C>wDO#X2^#!F!(B !޻~X:K/Lw% . 4  ?0y %qI`tΝo .Gt \ LcƌI,'AM89i f͛V0׿ڕM4#FL:K3Mw? 6hM$HB!JIXyblPdIJZ&ʽHyBk 1bBR/!!FyB 1b$!b#!F!!FB!BBB! 1eFi۶N !#B 1b$ĔD7n\!#B 1b$G]b|BBB! 1B 1B!!F!BBR#\b!#B!!FBLb - |fƍU ǏCѣGoNJwg VD>|ٱc)_:!#B!!FB+c=V_t޽4lTX~n:7tѣGX㾳j*ϛoT^ԫW/C֭9pV:!#B!!FB,bgϞ5͚5ׯ_;v,cl,^V^m_}ĉSO4h@BHB!#!F1bt|mZCf׮]ڼyoݶB\'B ֍ӦM"z@2e=Gu.B 1bkR117/% `/_n_?ɓ1X|^S"ׁ3uTtKs!BHS-)(/lW@.W_Gy[9=x|ovV:u̩SLչ!5.`Ikժg:B! 1eF)-öFHO ) 80# ґ#GIk=̈?#bܑkzZp{}'UTC zz\2cƌдu+WX Bx8!|6psg}6#N\qQmp&3gδX6h" ~;ZlAr>OO 6-Z Spw7x߿߶m=駟,ؼ^b$\B YJb@$BBLI 1v}|\䅣jժEyVVO,\0^dIyc@N-)%EZ& LY Q") ۷ϊ">!7O>f̘1.+Udϟ4鼾}ڶgs>HQMBNB!J yٲefΜ9Wuw^3y"5!?bDp|pB;Zmmޒ{-J~eoza}k_ ~+*PBVaԵkW/{1.\⛄ 1bBHF=zӧUV1_fG`x̛cڷoo?:cҤIy˗7gΜ1+Vp=zyWӧY|(ya'G=ں2g0`իW;3c !wD>N*ApeA^kԨaVXaW}mfB ̞=ۼ-?^~֭[lYƎ7a.ٴARpuR~߸ýG}{ G~pݻZj瞳G"XFXlޑ\yyn$;>N /EWfJ/_-BÇ͓O>{}jub$HB!!O.]ŋ/("$3_n"7mdl_8؉-ٳ79yʕ+gc!;2/̝;N/<H&nJ/ b<JWȞI{zrAXaRN.\:(! $ qeIc pCڵ=A#ۼ}wX[;̄)Ś5k;{gcQFe\I1|\,>!JbD"}/'aqoݺbi`f#W43~x߻k7o{/s?uH#!F!Db}-Ӥ+`zcǎi 1`p 'r,^t=tP )Sb+z&LL?BTneܰAWN,9ȋߊa}7NK N+K6BLR 1I׸!fュKzJgF?݁ةS'{T(-Nj v88"A61b1Kk!lgs^&M8. #-Y5℘`PN|uU\.Ղ]s]}b0Tul8$ĢQ~-)>VyXBq-\aUVb$HB!!@3/O?+E!wM8q9p\}O~Itw q+Mhsbs'ngv jɄR_.VIWN_q@1i3BWn&5k4F VFb,9/a" ѠAIm[o> #p.m2&n=,6o⮁V0CLx\`LCں`yxX%}3Q-b Dd͑#G- -ZT$sXZK?8 1bBY!w'޻~X:K/=ر ~qW  J waW$&. Nw靇 ΢cAJǘ1cˉnPL|3 }X/+\tɖc%9l$&16nYĕ9.ʵ  6[6oaE]ߠ] \\Lj26mj6E&D!!5)AYH8!&8 (İU2nyBѳ ¯v9*q1Pl7k.+m%BHB! 1bY!ŘB 1{1O<̪Ul!!B 1by!$ŘB17tr^{L4IBHB!#!b -<СCĉf۶m~EÇ;v˛;,X|4W6wyg9bZha˱o߾s~lܸ~Vzu|rs1k]Ӿ}{5k+WZ[Z'~'MzR9~W!JoQBB!$HsxkN:envڞbuf8`Uf?g^zY⮻Ɯ9s"c_Iqtٽ{iذXlӦMf>hΜ9}~3y 1qI]!(i!!F!b$H-b>k ҵkWs7NyꩧH "w K9r9{lKR˖-Mʕy͚5#=z4~ k'$Ǖ#wY !$!BH19ӷo_ӦMVb6ol"w>f&g,n%i;#6\!6A,駟~1sX}7m:߉zaL2]mlڈ!PQsAHSjmf,[<9 !bp?5n'չ䅃Ł`9ʊS|WKU6l37pH ! 'qnj3>c*Ua1%}B/dUtm#G ڶbh}YFBR#Ĉ4z߶IB!!s̹{ɓ' {k<+ˣFʸ&دjFdY.o߾!F#u^_~v-ۈ:|w3ÄcwbI#!F!}-Ӥ+`zcǎi 1gp΄ 'rH{r$SLs>)0agABrF 1q_͋ߊ  `:e,N,Mԟ dG}& 146p6D5?݁pשS'[U#D<ߣofӃaudGY~uĈja(Jawxb$HB!!&۷ہX,ؕ/$"F b@pi 9u67#Y}#h'Na\NR3l,?g,.`c 8IZP(  K]&1>bץ=oҤo#ˊv[Nq継o|xOji0!4qk 1bBH A f_~)67B4qDsSre6BKw q3{vB tD ]8vl׮'J~61qdP0cJ#3U)^zbc\}ZhӦMFܸ :Gb7)91pqIi\9׮]vII6 bv=5✄ 1bBH7L49Gd4b( +ׯAޓ>k,o 9AZ9?.sÿקw 1v 'A+/v8ʉ;/8 *@! KgD:Aq #B y$KTiZl(*lV p=Or :`꘺~W#D4w߿} 6 f ̽hѢIB qJ[GJA\߸`"FB!bBn %ĸ ;v2GI1Ce;'qb?NvEbptΝyX@],r}Q%c̘1SuabC6ԟ/З9eB0ׯL06lž3С:L"o)RauQQڅg<p.Z!b$Ĕc{ KBȱ}vqV 0,_/bԩIaB [℘-ZX1r}v줁<9ydE 5_~yB 1SN5IK/B! 1eK)14i⭈@A뗗_~~N <#w ꫯZ\|81\\f͚Ebļ[>Ștٹsg+0=l 1\\ob "uDQڅ^8|"iZ,cB!#!FBLbHtR+ZP%T4p6o *|Dv2J#s w;o޼ у5A6>h5vaW$ 3Ν;Cv~~ B,ĸ#OxTb- nVwپ<̘1#4nݺʕ+ֺPe-.O07=ٺulWu6`=O`>N\+̝;7/^x!~."ԿpgֿiGq{! żڲQT[_#!F!SB ֔gw|@0pTZH9ʊO>b25j]a'*ԪUƿ~%ޠAlŮ<XzCH}م[>S,g1n+bަMcGxY-0l.T&!FBB!!˖-3s̹juJ^k&O\dСC 1%#8XQ}KƧ~Z"B Ȱ4,iԽ{̅ d?쏃HJl KY?kBkb$!bQѣ>}YjUt={ϗ,Yb&MW|yk^bŌѣG,+wOQ+䅕;bUPݣFmWs3\`QU>LV q%/N*'"Lz\d|רQ0cw۶m7SIO;l{]C%n΍IA6uȵE=\!pVw>y} ?s7ӧ9wiԨ9qMB0"_Z?'@֭mƳO{g3OcF="^GYx'ۺP 1B!Dbtb'/^A%)=I?qM7mdl_8؉-ı"ٳ79yʕ+g~!D% / &!'K&nW^V|!p=BߒA *LX$pDwʀЯ_?2s;>6!"''JA9p@H%^L6q$$!믿n]D"{͚5֢Ɲe{+5#'C7\Cq$F3\lƂ@MqE(|`F#ap#wߵ@ںP 1B!DbuIWղ;f1f4fp΄T'r,^t=tP-0eʔ؁?cj߄  ^6qE |uĈj,Ҵu!5 1bBR-l߾NbLj?nܸ %)1b2DصkWαL` @& 1NjSl,?g^w{V+'iI{۶m=k&Xk0!qޕ(!RĭJzuq~7[!dSa =3u>o6+YaxlD`mժUwxVpuʷ?sMKcGu. 1B!Dbpp^rO\rפ'Zוʕ+-a%#'ٳC' 1L9.&n"*|HgGl,bٸqc+Hc 0|]7)?QB Ҭ% wf! Vɶb8;ÐI!ZaСoa/rXb(Π^q!Ƶkתs ?ʶs$HB!J,Dá~B 1O&LyOYlLw!`*'b@tΝ;ۉ;iXuB  +9{wD?s(8LA@T2qQ6m]~MB!J%+LEt! \BH#!F!!!#!FBB!!F 1B!!FB!BBB! 1bBHQ!BB 1B!!B 1b$'(Tb2dHN׻[yqeƌiu5W\+> EpL! 1B!#!FB5L֭iy衇 "Nvm?WnWS^8VZ$wޱibbB!$HSP~ߙѣG>(qƙye̜9su޽{ɓ3>G9tEBBBB! 1bĉ=zӧUVn|rs1gӾ}{%K̤Iʗ/oΜ9c*V ѣG+bgN>mfΜiA'N *xO6_m;,X|4W6wyw~Jm>aÆ% 1Q,t.\h?n XըQìXf۶m7%!$!BB 1סD'N[ )M6>'t޽;gϞ֢~!\rI޽#BlsZ+>Ct9rfCˊ/wub<JW|V`W^UNS?+Tq_~w7oSn 1B 1B!#!FBL)c %8qWsΙ;f!* :?C|A,Atĉ/6ݻw/"_X/SLb8N0sUrBL{BX5a%ĕ~6/~+,lwQBBBB!$HS ĘB0~q$@6l!pڵ+ n:e[n%QyRㄝQFÇ{{BL߾}'|b֬Yc:t^bI߶m[(,]1b%!`&ћsB!#!FBLbc=_l'Nh8`*Wl7j`Ah n-q3{lB1M4 D ~-]>۵kg5'O"&7B?v΀l<^L#( !fԩ&x饗B!#!FB̵_`%뭰{g͚eWUyUߦM 1@^ 1;wi[lyA+oݺ+ 1qD_iĤꫯ#<嗶L׬YS1b%"`A\`ZV<B!$Hs 1UȎ;E! âE2?9oS(!&bvaW$X]pڹswV*e#>ܻ/b~g1c$N: K0p|'y$!]qGRJ2dHN#q}\^f̘Vn]sʕXbr&/t9ٺuRZu_?EFRWΞ=k6l`-|;OlZ8gfq kѥ2#ǝOۅE7|3cl駟{k8ZlsֳP`9&dE(T !FBB!!z޳3]>D g K^8\0?Jsuslۍ>%]g> &,OZbuy,,CP^%b!c$!l-\qvO_#!F!SB e˖yWkw^o7=ޡC,bU-J츒3vndG޽{۷_B TTZ鲲]õp^zZ`=c.\`'2dVD> 1B!Dbtb'b/^4_|E%)=I?!7md'&p[Xqe՝׳gOos +WbҋUC\,s皱cz &LI6+L oɃ{A֙+I*'&L~)~y%nKugR^kͫ?\gB6=./ImM1avSZ3̵ն#|`#l_ݺr?S6D&Sܯk֬U޳MM&&qD{^qn_N:Use\xˤa#> "w}4o<=o !FBBQG}4r4 13(رcFk&AwLNp"qI Nl)S9Vu'L~x<+a(#%/~ ,l)cq1IyI d{ yjl qq½:t{qm[<wl֬#F6b&5׋: 6SN ~0uT3`-JiҤ}^0׉Z?8"&Y酘\| 1bBkV ~C &cz/$"; 6sڵ+g f\cvCaSl,?g&/˙jirYGځ l&|tֳ&/Qmm>p;ס4e ǰ6%.C.π?N|&~m3\AJȸI7AFDVZ~7Ȱʥ?sM{DnBL6D> 1B!uC.B\I.9~t\ uĉ 6BKw JcB M ]ƺ|H>r2e*$&߼&^\zTaF\ K\eSg|@;7'qm[4{ QrWDܡ\4BLԳ rb'r$HB!Jcv7i %`Ϛ5}pwrX!oO7ܹ$a˖-|-ܖQG\9qMʃKxWuBBHub$%>E5-[WĵQ6uRu1j׶cX]a@Gi'RXMZ 1X!ܻۨ1f̘r֩SǺ0a!l/qr_vWgR^;WbG %%"A\rZ$9m GWWT,&=<܇.q.IL{E6mԖc90`d 1 +|γڵkg} O&D= jvM s=Q~AB!T 1nun78,IB1ۡkp#% 1B!Db( jժjJD/ 1B!!FBB!!Fb@m@L͛^$! 1BHB!#!FBB!!F!b$HB!$!BH#!²J*v;!Ct[o|weƌiuֵY Q"]e&G3>gKիW[wy #B 1b$Ĉbn6Ç7իW)/ 4" si3sL+DeРAĉB ӦM3G6_b`E?h;;RJf6ar:W Ǐ[1`kԨaVXa~m6 1K.5peSV-9׫W/ׯ73N1BBB! 1bDJ!fݺuV`@L oڴ ~=k׮fy={A\r~N*܁ TggquUٶb҃e.X]OQ !BB 1|פ'x.15BBKw[ha㏛ٳgNsb4ib'%. 1.[l|kΞkm(r6n 9 ē5.;|R&܌;Gw&[!&NQB'L:$/\!b$H)B hDY~xOY,}r~6m *{'tيqomٲB~kNWN\~ymT+#x_~-5k+F nH~iωC\:G 1B iZ,cTB!#!FBL)b;vxA[ 8+ âE2?9#PBL'`@X 0"sN|w_~cƌI,g:uV%a"N" 1s;o޼Dgy&4͕+WLBLT$գ!GqGUTVpC z 5ˌ3B֭k`$&f֭*j79˖Zl״ZCꝅ{Lk7C-[ =>(;Yl:uʎl!jq{ 6 u16y7ma}[ 1b$!s 1g|d2p.ow p 1Wg1(QubܸqZUu3b…/,wE\%`y(B8,UfڷorX|c8`3"1VӧOK]VT.oL:/>#!FBB 1׈ RWcw^o<ABճ4ܗt";l߾T 1Q=!Xa*Yr߿d:^ ӟܹs  ,Ԗ[qTP! 1b$!s 1숇U3#8h㭪n]*V11ƕwEba"E(yaT'Gj\OX`Qt[!$ b'pDX^p5gA^٭nŊv՗f~$71c]kX>C=6ʶΖ.]jl˗/[ն#ꫯzk8q| ,yXs=ga."Y>w4@}lp6Hr ŕNyrșOC"+8; !]b|b$HB!!tN.^h"BKRz>~V11DL oڴNyM`'tƮpl< 1gҋUC\ 0Vh >&Ĭb"L{e'GgAP½ L‰ѕ$pDp&ʔIw~[˥S|'3)/I͵՟Gl2 mz\^(:cPvZ3̵ն#.q_D*5kdȤ޳yMģ_N\;Q6A8Eݾ} G4~ђ7nJ\??<"lR͇~h_Si޼yyi 1b$! 4 13رc=kgL39R2w+q؉-0eʔ؁?cބ :;a6l08" f͚gpĈj,a_vfu^@B 1B!$1/8BN0RВ^8 Lp 9u6fXL +b`?+¬1Agv!4aWN҂df:kX"XF0!qޕm>T5nݺzvq%Znw:qpC\klM41~msE;sVڅ+X0gN{)[qIwqRۥȹfs^} !FB!b|9$?Sl: :qDs6BKwYyo%FG$3W!).Ac]>RىRcvEL\9cm׸Ӌ+XoR^;i K\eSg|p;77+s\*1mڴ#tMTJ#"3U>v̹4Hcҹsgۿ\4B Vmk׮Uۥv$6nHtH#!F!?oD̿9&PB 4V> `Ϛ5ˮ>; fTBE P0I&nM> l$R_n(#`A0f@.?|D"I`>Zli.\`=)/qmM&P`L׶hZ! egr/&)yW[ ;p/l6Bb>| "p%'C"x4w폓*Ugxȑjw hѢ"Amw^} !FB!b 4t޻ImX:^I?;v2 @ ?` nπw&. Nw靇5VM.)gULcƌI,g:u @(@Λ7/o!&*IyI`^7l`7[$Q:C#HpX\+WXK2Gm>yDrsqM"*96V6mjB0j1Q]^BBB! 1bY裏M naYJݐ!Cr{weƌiuֵY Q"e.d[ϛg[hQ:˗ӧl4hw !!F!BB 1׌S\b_>k>T^=pTZH;cʊ~Xl|ؔ/_>BBB! 1b)!87fl23gΜVVw^3yϙ:tRք'v/o7%… ͰaR{6Y!!F!BB 1J)äGffժU榛n*",_;vٳǴo~d3i$]'* 1Q,t'ˍ7רQìXZl۶f!~/ƍ+5k4+W4'O4[nyr̞=|WEdرQMX=R|0#/Ito$ջbB!$HS"B O?4RpORd#&.MT;%#ޅp ,x @"Hr\!b$H)&M88pT\پoԨz@h .[* `*4iNJ\b]2\>۵kg5F"&7?v΀l<^2L/t^%gڵBLX~sb(_!&TB\BԩSMK/΅B!!FB)%Ϛ5ˮ>(h۴iSP!8!svN֖-[ >C|D}ќvJGR q 15=QdȐ!9]]qy1cFhZݺu͕+WBccIX=/_}6WqG>mVR?ڐ@ Cx>q}c_=l`#) _b6LO?mYly7V ӌsg$HňY4ՓO> 1gG|9p_~QVJ*ف8wخj\۬UKF)M:5w9&y`^Z5Ӿ}!yJ:' g})9h#=#!FB!  `~kgP+0HFo_Ґ{z!:d)kBszE=cwܒhO!6Xb̆q+WG^')qBLGm ~ s=:;իWEL{FB 1B0ݺuYB\͛^(B ;M>ݬZ 4n`c"gop;uadŊ3\ yq'dSxKVF xčP9Gs=e@`1dz\G\vxbVYUD aA^jԨaVXaW}mfع&N N]mܸ>k@WL$]?W_};^1]\p`EޝO{9kO8?$b>}̹sl };7F;i>&q."/_նsB(K+b֑~ vv%II 1bBy!K.vzEL;($3'N0חM6NlaοU|Ϟ=P΁S\9 ~޽cc͝;׌;2e"LYC H7bߒA *x#+I*'Dʀᾋ)w!35jP'tڥaÆ^]{{6]'t]? .oDDY&cCb{>9>k"1QaBseM}1DD:MzqX Dz4 }tsD)}֭[ml7 1b$!wGib0=ǺcǎEAiLq"̻wSLs>) ܙ~x nؠ3J+'#o n02#A5BQ$\Kf͚'\ REs~6qE G#FP&ФIaԩS̀<^B 1B!$d@I*Z #I/@,)\ Ǯ]2Dt񘝳*J3y/Įx;XC`EU rfuZ!&b8k1X0!qޕK,1r>mmvNǵg`Q3)o# &< 1% c.IqIw6uMV2>kܸ.b$HB!!& ׯ_o'}֬YvŔ =X9?.sÿקwي1P$ 턟R_.&JWN\~!i焠.x 5k4FL' 1+L\=`ӝ@+YZ!6&1yvA)jkO,h&ʪ|^x\ӈ侟K$`偠:rHa p}X|}Ǒ}"FB!bw|d?,åJqvh%h+ 4L|-ZaI)b?J0Dta`sNۨb3fLb9ԩc]uXM&l qr@Eq 1IeblqloOE}@ƹ&a~q+M6m H[\ԎMB!&<xZIaB -HYgS=R>vuulo 1b$!y1 R d"KR;QB<b$!^BB!#!FBB!!F 1B!!FB!BBB! 1bBHN!b$HB!$!BH#!:`?4׸9p6vJN׻nks_'#}甗[ְo[<`e-.fofҴwF7g/2_\x_N4U,mTCseSϦvIu!!BH#!F\5!b#{ԺKNyM)6e6,1+oPO.ۀQ93| mTBL>m$!FHB!#!FBu!VYzyoGW5/_?h90q ,j39#XcF+='!FHB!#!FBLb of]lVٔUO6`7w??\r5gh>c'k|`8lN=gk}?^4?:c]s篾7ywb6z,^IsE-~OU6=qrBܵ3pʊAֻSxԬ\ќ-weUm,ʘd5_Oxiqsr$wRgS?IBLR[ 1Xg_HB! 1bUboa'a϶6CGOtOl>/拯{ ֢&8@Ti֡{#Bܒy>a 1L{Zt3_%ÒA #qUNS?ke@x$[ۺ-ͩ=ugŕ"NT}9;ڈ0>7f-ғ"J1xw殦 1B!#!FBB @~봓rm瞌;YG@Ł{W,8fI풍W_~;$!&-,r ,Ibnf3m4ߛq13e{B!#!FBL)5WgY;wc~< -Q|5s *S;)aҝ2v{=פq61q|}_k1Gb]~s Mlިv bvN\}98b"Jy@oY ̋kB:uI:^z% B!!FB.Kﴓ]ޓ>gr? OpW 1@:ZDԟUi[#l [A;~7ɏ+'n0_Ƽ6n23ɧLn Aoc>.XR w>.{hP۸rwRg[?qBLR[ gΙA#s/ ǃ>X$UVeB!#!FBL)b+ vqX Њ8+ %#cg%vN( 1XoV!Hڳ/#-(C_g Ws/H,'xr!qr"Kuy 1`K[SL~4~ ԟ&zUp񁣊KT}9;]"Xv޸}q5w䚞?<*Uo 2$z3?pNy1cFhZݺumom77oܬYƜ:uʜ;wlݺի_뿊-*T0ٽ{p9|9sf̧}>H!^-m{1M5ܹsͥK2xb7h {,ŕ|F00a$h7 6nG`"#vR@K h̀w ͆~{2#vUf2'#*Wf2YEgG;tv==ϳSz֦M2GM*Tӧ>/QDV1D31e˖uϧMkE[ -Yĕ"f͚v-ӧ޽խ[7"Fc?eq 6t׃>(򸇉Lloژ1c\=*UO\xs5i$18{pҤwnoXΝ3>~߳ o߾mŋgݤϵk׺DL1DLE~$oڴɖ/_~|.N3f/^t"fo߾1W+{D\#2l0۵kWgy"b[կ~*UHN0~n1b^-]tw"ɡׯ͟?߶nj%K,{.ɓ'nذNW|yU\9f}^29gB./r-Qƍ3gθ ߚ5k4ضm$ _jW1uYqy|.Ŋkժe[lq=x{tELݒ֭[G îׯ_ɤI7am ]K ԷڂhBثWBu1^#:vܹͳnݺ~2-_5^~>}]W:>& rK6m^X$j%lwV\龷"F7iOT?߳:VK?OKIZ2:x`0w"ʋ-d~Ǐ-Q噈;w &{QFJM{֝{QM\r֢E 'OM"TPN &}_|M믽/uq"&#$)= 41کMɀCݻ/We#f?ݻ_[ɏAlj'}d<ԮϹ1EF)lJMIM:5ʭ$x_~m}6;vlkJRuT-&χĈsR/by2=z LK-c8g?~wZX$&w\.(w"J0NRQZֵkט2t|яsExCk5!Wn3g I BTz5$џLĄSRT`"l$sLDevk⤉[)9#YѸqcxIXۂLS1EFݸq?I9 {HW%"e/"-J4|p?/(bפ\тؒ9>h8YD"ݧ7aw"JCQP/'N-Q "% %f=z4-Q~+\0B&ٺĎ"% 2dk" $ T//,{ k'yyy~4Pd9b wE~XW~N"pt7݊O\C1\V^.b®cZ׏>/ɎoٲKHbsw>͛7w߇%Aȗϯ"[-(¦(aKU1}¾Rw"JX%3Կ+\.yפ)S.UVuϵ\-ђ\U˖-x 2W"«gǎ})rQ(1aF' $_|aÆ D "Ʌlڴɖ/_ڪ:uf̘QHL\x:իWۿ˿[ڵkm̘1|1A b11֭[dɒ$͛ڵkvIܹۿa:u\VrIp3g={ݻ$K>9nݺxg͚eƍ3g8SR%[f]~=zd۶m5kWRVZBIN 7o:+V/Umٲn߾mt"-RÎS]-[fONدjСC]޽][ת"o&L`?sp޼yV:}v{7ܱQc}"Aļ"F|Y1;wtcɔ={بQvgϞ.w\]DM_$OrEn>puQ+V8)M/_Č'b$ &uq`$W*U  DdsAJmݻw_vkKW%Ӧ6kǏ4io7.͚5wZݺuzp"b)_DJEHJcc&}1D "浉RZ׮]c4it^DhExc֧OB"&~ r̜93TxEL4_䉘$]ǚ+"Q$1aTĆ6`΍/W1mڴqcu\T*Ru ϑLQIVE-M7L 4mz&}1D "IQW&1ѣ1oޕk9(RBw)]t>}[&b<3vXw /yoP 2-Q4ċ]t*bکxɐG%*O#F#>Z"իWH"&_ Ss-*bۧ1;t<؄/"AļvwM2e?ުV7mE0$,+zC+I4qOWĴl oKP}um;vtܹSv6oɄÇ|2^G|yz?1h I/E"FwWJWĄM b1D %br!a*e׮]N,ʗ.]ꖒyD^ \u|*b'>޽*ӵo>z^p[B?'I2N-9Rٳ](?z'NpmRyڵ3#7nJƼuopX&"FD/%h"cEĄM b1D #br%a E>|O3ZJ#nݺ9I[{!bDBwERH9rĂ o@WwR_/CS+((?~|d;LHKmi:1"^ʓʙW\`ꫯ\O?L>쳬`|1ʉ#%a=z( @ b1#Ivg@ b1@ b1D b1D "@"@ b1@ b1D b1D "@"@ b1@ b1D b1D "@"ٿ^Z5;w=:+S]z:uV],X~kժUښ+/^l'O5*Vh;vإKl…\D "󪈘e˺ӦM5FiE[ -Yĕ"F}?g}f 6tvY_|aÆ 3D "C/^6md˗/u9u͘1xu1Wi׮]kcƌ3D "Z~ϟo[n%K 7ok׮ɓ'sn lԩq˗[ʕƍ֨Q#ʕ+6g;{ݻw-IV#Gڭ[oYlܸqv'b*Udk֬ׯۣGl۶mVfM*UتU\=p1)#qqM'TbŊjղ-[۷=1Zڥ%XjcqQu &*zs_o޼y֭[77W>S;}Oz :ԍݻ#"1D D "_h)Çk׮1e i+Y "@<ɡ>}1^3g/I&K<"3nݺ.D)/M kr.( r1]ӦM7aD)~1a}6n2OtT(֭['':^קz3@ b1bDY($f=z4ۻr-wђEINIK1ӧOwKfD'vAy{"fȐ!n9"14VK.TELX;U "//ϏJT,G"G$;<+EiW^1S*/b:ۨq;tPoٲK@ny2;Çmh">D "/QTEڵM\K.uz?UVtgC% N|<ӽ{w7W}r… Nr0N-Qٳ](7zE6v7v q%c~m[:UT]b믿Fu:"FDƒ'pB$y2#46i۶-w@"KED(K䨒3ZJIub"t$m|1x"F.+"8$]Dȑ#Lx#zzOZAA#۩eBZHaĈ1R%UrʌDꫯ\O?A>3Hgi.#sHEԘ'1c: b1xeI&F5W@ b1%ݙ1D "3Zbx"@ b1D b1D "D "@ b1D "D "@ b1@ b1D "A b1A b ߿?V;wF)SƮ^j:uJ. ,HXV~}{䉵j*km/ɓ'gTς{=|=㏭x/5q ƍ֨Q#>@ b1/)[{>mڴ^3??jԨV]U^Pْ%K\"bzVPIӧOۆ ^k&ㄈD "yE-6md˗/u9u͘1#fŋxu典fr9N@ b1WZϟo[n%K\o޼ٮ]f'OΝ;Θ:u\Vr+WlΜ9vYw-\0eȑv-X֬Y6n8;s挛WT֬Ycׯ_wrb۶mVfM*UتU\=cƌ1Ik͛7dP]+תU˶lbo߶̶˖-sF?ϵIP? 6g5NQh TN]鵆{" D "ٹsKėٳFkΗ-={cǎEG-h)WhM.Zb 0aۧ˗݄ߛk=`7AS#y$TRnޠAHzXR$4ݻw_vk˅o"͚5wZݺuz˗oa})IZ}… 1WGe&M.D b1x&"FKLk׮1e }jɻ"@<ɱ~zӧO!D9DfΜ*btwҤIo";XA%JHYpS"K0B޹jcDիC349 id1v?n:v bA3INr%f=z4ۻr-yP_)tґ"fnLرcҥK~RȐ!}v۱cЫ^گ*TGX;U@ʓQԇGaKMT\xiYSQ_-SJV^v bA3kҔ)SVjUiӦ.zBDiƝ߻wo' M1-[thI ܛ}um;vtܹSv6oɀ`Ç#^I|y.^RX:СCnyQX?qj۟Y~I D "QZE8hĂ|ҥn߱F:CY1B ao߽{w'?Tkk߾}d]TW$1aԒ#E̞=ە)on%ݭ[7ĉM*]vVs(wu8q>CD "EFh)vڵRM4,фY X~ӧ$;~­̙3CEWdj-UDLyBu뺈DLpaÆ.(EH~xƗ1WmxnݺRaÆ9ָqݻwo-b r{asW\dGOX}"}@ b_1~P2mG}\ˌ$WwJ*]t>}[&b<3vXt钟7(b b۷o;v8zirxSaT G%*OD9>ɒ-M^7Y_>EXa׏"~g:z]Ai,D쟰x҇D "5iʔ)nJժUMɷ&mӦ;_Q&銘-[['b ^=;vc߹sH1al޼9Q>n_d0񡨔'NEu-o#A bA b1A b1D "D "A bA b1A b1D "D "A bA b1A b !yyyVxqA brɓmĉVD A br-b曜ɘ[߾}ժUsѣz2eիWSNie ׯoO|~dT&}< g56@ b1ɕ N˖-O6-Ϸ5jUmիW/TdW*TpӶaÆD ")\ohM6˟[[USNٌ3bK8\xɩGY.]^kD "҉lMgϷ[Zɒ% I͛7۵kɓֹsg_SN+_ݿ*Wl7nܰFW\9sٳg޽{p¤ɇU#Gڭ[bŊYfٸq̙3NTT֬Ycׯ_wrb۶mVfM*UتU\=cƌ'k'A֮]k7ot2Hu)V_^V-۲eݾ}<3"F,[ΝX˖T/޿aÆ~ۢK؄Wmw]W^)ձvڝ;w:]@ b1~aDΝ;W2%|Ϟ=6j(]vlٳ;v?.&^h)WhM.Zb 0a/._Č'b40`uq #UJr DNS?I*ACݻ/WBH@h}ܬY3{խ[뭷|Qc[~ F:}v]"A֤_Kk׮1ej'"Y"O>DLe̙"F+AIi'M/UDLyBc E$dv*Du FQ(DR;7\m̕YzuLJ.(ZE} FƶQ1aulܸqhî 1D "1MK1ӧOwKED'vƎk.]E̐!Clc'T/WqvL'˅M=wS]n_O˸4!=$稱-JDMX}*bRǨ1D "&e}1e;UZ=oڴ>ѹmڴqIDtEL˖-$Xc1z_b۫gǎݱzr(JDLX;7oD0w]=VDJ|y.~"8:u%뇨ďo~ۢKY>}j+I:F]@ b1Ʌ+"Q4TUtRE'J;tU#78DLZe … T_˟lNM}1{lW\)tn'N6\_#FQF>$%MQ Qc[~I66.iKEun:r"Aļ"&W&XÇIYUrFKi4^n]L-g#["&OĨ/t7 E+H6hԑ#GDˎ艂GSZaĈ1R*bE\2cc>w}WHsxm7nt%Qc[~ {n>{DL:'Q? b1D+a$3dk bAd7|_D " h o]~2'1A b1D "1D "A b1D "1D "A"A b1D "@"@ b1@ b1H[߾}ժUsѣz2eիWSNie ׯoOIIamX֭cʋ:6VNT_6bA b I&P4W&1ѣ1oޕky(ɯ^'LL>-Q 1QåKA3d۾}رÉKt?NUpSe'5-JG$kWK-$1Qc?ne?7YkٲI&-긒#1A b&U2e?ުV7mE*xxڴiݻ-[,q"Fnm{垈^=;vc߹sH1al޼$ÇwyGh\& k{|ϡC%^1P*m~"&Yu/ի})]kamŸ"A@&J@H]v |ҥnɈOΕT'1B{OtMUkk߾}P=/\&Ԫo #GX;tE/gveˢıݺuO8ڤڵkg%GL2v ,֫ǢE믿 G1a֦qWb]w|O3ZJubt$m\1x"F.+$]Dȑ#1JĪ)ѯ ?>sKi:1"^ʓʙW\dBKlظqQ*S %-ѣGd SfE®6f{A b&\@ b1@"A"A b1D "1D "A"A b1D "@"@ b1@ b1D ")gŋ/1D "&L<&Nh%J?1D "&"oəٿ^Z5;w=:+S]z:uV],X~kժUښ+/^-zǏc(]+q5j腿vvv=`7:@ b1\ɘ([{>mڴ^3??jԨV]U^Pْ%K\"b/† R;T⎿t钕/_>A bɅ&Ci&[|s8u͘1#f&/^t b^vZ3fL5vM6 b1DK!b-c4Yׯ͟?߶nj%K,$A6ol׮]'OZΝ 6ԩSp}\r(r͙3Ξ=떧,\0iaeȑv-X֬Y6n8;s1*U5kѣGm6Y/VZdAHNII եXb~yZl˖-vm;x{g)b^vmoΝ;vWOnQ6v&L0oK&Cծ]vdRTA@F"F|Y1;wtXoH={بQcM=ҳgO;v\]DM(&S\9kѢl80i]3dŊnɂ˗/;1M &uq`$W*UI D dsAJm:t޽{r[["F9a$%mݺuO8ڤr%F0!iѶm۔~u TnѢE_'MɤQ@ b"&W&dY*䌖H8[.&@wNё-'b+"A$]Dȑ#qRQ]EG~ ӧOgW[6HaĈ1R%Urʬ'ү>%W}^3g%4iT1I )E֭DJ(rIX;6lQTwn|ژˈ>UDΉ/ @"#FyE4i/vڷoʵHtWw&bO*O(ҥK~ޠ2dm߾vd]t*8کyyy~4Pd9b"]1-[PyX_"1D <&M2Ο?oUVuϛ6mH$:M6޽{۲etE6I 1z_b۫gǎݱz;w)"&͛7w'e.kR|yjСW^D b1x"F hk.'\K.u9F<(UȆJx"{N~L־}|z^pշB nNk)eٮL9i$[n~'\T^v䈉1 % :p Y;\#Q I6H4Hjxݻ/We*bEcծ,ڠyM4q>;q: I#bu$ǢڗjE6k޽kuuz-_, "1D ]Ɣi+ܧɼd&$",Shr\/3g 1:^ J;i$'bϓPkh%J]NET.I r1W1= zkݺu먟իWK11oܸq(1>5$R_D "K-OR"&2mG}\KNLGI~uלDwO>-[ 1`;v]tO1C ۷ێ;PPK.T'aT G$*O#F9Zf|HQc(n|[E*"&~SW:Kt]ݺM}7@ b1\N2Ο?oUVuϛ6m" 4Mtn6m{vC:)1-[tgMҽrO}um;vtʕ{(1al޼=9ÇwF(\'MQcHļ;vaiYX=*b?H}K4ซ7:u D "9>wϵJ,x"A(Hw0zrw}ED "J<7ZWׯ>D "D "@ b1@ b1@ b1D "D "@ b1@ b1@ b1D "D "@ b1/﷾}ϫUfΝѣGzeʔWZNҪ˂ կ_ߞknܸa5 D "re˺ӦM5FiE[ -Yĕ."Y3W)_| 6 D "ꊘŋۦMlϵ.N3f xvZ3f "1D "1֭[dɒ$͛ڵkvIܹۿa:u\Vr嘉+WlΜ9vYw-\Idu9rݺu*V5k7Μ9DLJl͚5vu{m۶j֬_J[jכԇ dБyAKbZjٖ-[vA1V?;v}>ۧ~jOv}8o޼ kjСw]HphΝ돣^[n<۷o{]&L0o?j1@ b1/ٹsKėٳFkΗ-={cǎEOI+WZh&LZ$Ybk&/_vb10Mԩ&H % RJ9!РAHzXP$$-s뗫21 #zjWP֭D@e?}n5a<~5QmҤ/~?s|Mc:IHRw"Ryk">"&j1@ b1/RZ׮]c4td]DB@ X~ӧ8~\/3g 1:^A c'M/UDLyBc E(Q"Hv6l%#I _6riһ{!׊tkEQҺuK~_{ƍ, JIF"Aļ9b4iWԂ""2mG}\KJLGQÎwW ݲ0Es\tO1C qa!zi.]ǩ v yyy~4Pd9b9"A]QJiٲ)e"6mԸ:t(&d㍈D "yi4e;UZ=oڴ["ђ6mڸ{m˖-KiD\nճcǎP;w͛0]=Қ\'W[Σvv߯C^z1e6ELQ+YF"Aļ"F _k.'\K.uV<~«:>(!b'>|P}s… N*Tp˕GX;H/gveQ(JT땟8qµIkJd"FOy]dM0HɃ%-tim̶){_-O6Bm۶|A b^.#pa?Jh/nݺ9I[0GJDL<]u!%RGS.GJEW>}j>Ǐl"P,F(È#b<9J諜9wʕYO+K9s4/p}KL_ԶݝژMS&GKz9}K6I'D "9,@ b1D "A bD "A bA b1D߷f͚sBssDk"bjԨaKD b1D "D "A b1@ b1D "1D "@ b1P^zٵkի"b1\! m/_F b1SZ53fm޼.]d?C-[X~~;@ b1&ʕI&ٽ{,j1:V焽oi/_;~73gm…Ic<={_+*UcoHuPw1zu{ծa"3޳|ϊ_+jР_۷oۿ[۶m7nܰf͚Ǖ*Ur"[n/$-KrAԬYӾ;_Orwyz}*ޝu6lh2իWѣG۟gYo޽vacuvF;|pOkܸkgѢEI''SN;wXٲecw+J~m~LRT4>Mן穎c}Ǩ&5!cD"V-͛Vvm[M8щo]򝍈AK&44>СCEz;wgݾ'ONUc霨UO>}UlJ:MIӧOjժ3gٳԶyH^K.-{MO8˽gϦ5f,2I&a.Jd cZ%bL)גRRC(=2+-w\dILTR >:Wo-;u &!b1trE$4 (kjBٓ'Oy/Z*aM۷-GIMI/:bŊnٖwu-jԨQHT%&)"Dx}807:EY)jӦaKӦ"iݺC$bΕ Kioa$EĤ+c13… ּysA/^ʊ;I~%lҤK?/~&wI&(Ske|رnUGe-^RRxqD/K{nrRdH"Ѳlٲ%Za"&\x  SX7D s7Nhi2@^0jrI0;w"x933G06>O&;&sεʕ+[i$ҭnK-G{1eGKR$J'3R%&)ˣȤtDL\Ҧ hkzפ$D d1![9 ĠAEMr=wD|8_wΪ;e]R3YiQSPLuտ;w{ѻk׮ ̉ɓ'{.iLW\xؖ x7شȇx< /_njT_q.] )B,OT7>_nW߼ysx_N=).[j%۷;1Qg9|}esE鯈YVW]={l{6ㅚu]lF9qC Mm1"11dƠ>;1ǥ1/^ԾDǼE8y,܌)cJqgLH]6arի+ϦZ+b?~<|Az5Ejl4IQGbhr(G9XKq=?WI_?ܽ{SՁE"Fnook,W13.bv<I1P9\)bV"hNmp6}_)\-n֖/?삘c6=_lOX"fRVSLu3>fa>ų}`LyiV}#kijELM4{b6j :}{͛/?삘c6=4o~%B1ZOxt,?gϮ^|.\vP1cIەcI,_w,ǒ(b9z<鞘9O:Ζ)|Y*<]Z__74?_1,3yiF*g 2;t4+aFspLoY1խi:t]ߋ`0bYzq?z<36c`v01{ x^Kj{,EpaoIk|+&Ρ}qN&i߮lÔǒ&8^tOLr+TΟm5jq>v\773Z#KR1[njvro,flT XRa1-i'5mŔwŔGe̕/_/^ߢ)Z;b:f옵]-a#I0M0KZ"{bOۊ+YײDuY0lU3ImYsdD!s"}Irj̑ʝ0q,iǓnJR2_҉MN2Qgvy6%?I r+5(ddL/Dz򥩀Yp#I%VrOeL^2g_$͗j3m lf[1:lŌ:1uLS)2@cʗ9^i_JRĴ܊ێ2J}ʗ*3x飄Q2)t EӜT][-`0\QLRȌ+e&+L;֕/0.aV̨ |G1BJ!TK^|2U,(al쁭qeLYiQ43@⥮|Y%B1;YLRȌ+fKF 1] 2Jli2acE̸2i;9PȬ٘ꋗjspD3n f\ 2B&/fV,`03,b)cF2mJChxR)`fQ(bz.c(c2m˙q ̋YMEكe̸BZU"Wї0{黐ɋe`b:*`0=1ʘ.G&ݘE/]L8s)_)a1X,qW2k!S$342#L@#GJ9(c-d.Fc],c*d4owc̬J`/c20#*c2q/J9(d32 Ee _TPBP(e(f@"@" P+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""",تTIIENDB`nicotine-plus-3.3.4/data/screenshots/screenshot8.png000066400000000000000000001577021461625273200225620ustar00rootroot00000000000000PNG  IHDRb6%bKGDwIDATxE}>3g(s$ 9PGE0(̢0`TL#sv99GS{ײwkkա0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ð*ha+6 `/3 2 20UE.Dmj(5; P P1UBfXdv@LKHY 3e a 0q ? | 3 2X90/^ =Ig2 V"L/(%bgdrPI+[|@5Q&1&m2:R 9JFFΧ.ta![k],42nRi|{ $G_P`2FXСiݺiٲi޼9$Dci5[cbAM/CĘl(h"L!&,.<0^Gפv۷?F]vhsk1xXG 'ŋI*o߅x>`JRS*uZΝMV@5<㝢ߕW Ӓ o?WhH +m*H )He?eIcpŋ4)+*b~c9=)iIIaMIکBW>ղaÆ' @yh,1cccx(y0=)ǯ% >OݡP[OLR&iwnz ^܋jN56|7|xx8o?z$T\u=S 3F0C[f1^1M<.(˻)JLbjWLyLK ƆiT/" @c7T4&\cz#_8'!0iI~o7Lyg Xm7i Wx> )T4&\cz{]$%WzE ab¦%9o'ĸU(d@$h^a_P\cⱺb^1Qӓ 1; Ą 1I8+G㛖g]@{@Ogb׮]MϞ=32WCo_SQ?{~?4}nvݝwYb>6!oά_tyw?`>_C׫W/'|b>#sUWٸ޴O=T__ϙ<dKAf޼yvʟ3l}:W^={Ǐo=ꫯf*m'OcSI1cXcZ~f}(Ad׃Q2t:~1`رVts=: 2_6l9͢E2yҾh_ݘ%h@0h +H93G N8X!Fn:+V4H{a]%@/oء23f{ᇛѣG 1a&L6V\ s :b/HHtd2MO:/2C=nsߺ3* F%l;&ƈI{֭[mߔ><S '7BLnB̿#@eb$wq6͛3Ӓ :m/!F=fΜYF >e<%h?c1GqD`tM۪o 1h)xgJ`PtAy/u֡i![j \ #`7XK"!!jHI='ISo`WӈE n;{l^ˆs:Dbތ)K b$ fСgqFBL\޴Gh[MuR0@IO=oӔ[n%3TW&c"a@w_6|:\g}9>_SABob1ޘ0qh$i*H"K0.FD $b2%vcxw7|oy[!}Q)۩Iqyfu_lCb(_5E(BL6(8"U$BLW$(n>K^*Z/$Bл , ,ITÎx5<"m6RNa+:){*SyUsUBob'W!f'( !FoT 10!}Tڹ ʭ-;{2M6:uBP̨|J3M 1;%b !&^!3gΜDbDYd SYд )δhzSu4Z˴N* 40D!&(WBLUDS[eGu5\rqt|J+sb$@J7 iV1! B B TϘl\z饦]v B BL>iժM]nWqFY<9R5k(rM6 /Bߞ}YӣG jOzrJOO0S}]pB BLubwߙ3< 8^. !1n_|Aٔz(_~1rjOZF0cG@PyQ&e!!1Dw=pI&eĘ4Ӕ&Nhځ_my{ۅ!C$2۶m3?C?ܮ MryOnMbez '`ZlYRuuW38ZԹݎ8}R7}wѡCMΝK,ӧ)ɦLRb0 t]NԗWG}{U({Iusei5˽u=C攦ϖúü#˥/.:udھ⋶|KV'~w m!%l1ٳbbbP <_;묳v7tSt{ecL̝;WZ!栃 ]sBIW;Sak[oEoz_jBL9_{e5xrץfU&}Yi {^ * 1G$5PMSi^ڴh´m֜tI6.Zu{^c}iD}]/gl#̺ywy<شoތ?#\V|O1hKU^|^6.]j*_g11e"ĸNYӑ4hPC1O>d+bkX݄[Hu{'BL 駟Zqe%z/qb>7\tEzb*ړb{pMǎ+uKbyE{* 1B?̚5+4NUvD~L>=D@BI$/ ;]~=(U>!BLuz. !{@ϗx B B B}I֮7G2m$]6a„P<+7C="W'\* 믿n4t j!Y兩qBw`a"4%Go4{(_l޽gՑ}Cuv92-[  ۳gOe+ރ_WQǍk{{6wu}룺1:ù&N:HSNעTS~lO*;#ouVQ}g{IT?:纯ks60gk<:*{g7u/mU;{l>3a}QUm>+H}X8Fl$Ug}v_]w5Z=SJԛ$# [u'z?9ݣ'mU̷S{XPq}tzK2z3gc=s<B BL1 ̛#& 5X7by^ZpBn޺.#Ñ.zݘ^s5dӃ<6ne|r{3~ʫ贯nGޮFwUЅD ;#GN¹0J|yu6m?Cƪ6QǪ7;b~?-sV9c { WIձU2pP:(쨣)Iiz}߾}K/dN>d9Nqj[$@\S1N$NG'YFo!2wo ~q}tz߸)W|)ϊ''/|CA)1z![R/e[oM5ItQ.,v1M[ -fTTΠ @0l=bE:Ce Q7 1rsETwAk׮[nv.E5OOTqǍj{Jÿ*{]kps1%e%i޼y1z*]R?O [uy@ؽ$m?w?.s=^ށ%϶G2Q[T~_#SCXބ M_^< 7Oqת| BLX:'~%ݣ{:\b*C{7m%ɾ{{HG'yw$,O neIKpq~*W}$LUfw{ߒm޼*z(Tꜟy3jԨDu쯫ㆵ}+s];!5-7J2z~Mî1cB& ~(iPI%I4Пkz3$bLk<:ʑ澜ͦbr{($.wŌKª󤉺VĀ$qsG*'*'QBL=:=Uu>-TmsbIpCBwR!!&'֮]cu$MSr7I-w]Zo?>6|pP] RsEoY[QmO߰ru}(No6f%j AF2*Cnr x}٧Njl̙ߺ9;z}xk)iP';%q}@Iu;tLsgSb4BLUnYu4 4IU תP'oliV\KDBy'ݣ]]U3UITڻm^'飓ih119ҼAanI $_B'`MnP.GE=KoVuZFԃ.B#5쳦bAKȹd:1wT/d#Ru/+٧zjf~.T.riV҃7@nTʃ ҥ7hZ&0㭫F=+!,Z]{v!7N1'* Ջ5Y}4{=%*+J*n$qTb>t-: +3$H{?y4 u$͸k<:η 1z.n鸯c*ĸ@w^qfÆ ~&i!jDhp:b{gy }B\'zTE$*{tzo]USl$2wPJ/N҇bʫ ݰtJmݶmnΊ⦪$cƍgx#׍@oߜʩx ֱbϸ _Tn ,uC{)¶ڲbxJo@2\X?zVd>VIvBoJ(o& >'6)}dIo&Auuܸ'og*-NU AF׽tC T*3Plu]g9*[}a{JICrU.[qFyXߙ^ds??CiۤC5m[Ifㄘr/ˁ^>7]?qתbGhG\Hb$['y&oOȇu?DaPA7dIU(k4g6:?( 1I>S^!!=&@5)J<@u'͙nBeguZfU2:7{}0`@޶1k23:bk^3rc;tl5j_|a_lwŬYƼo5/g}h7_TuZhalbON?c{jժٺu2eJ8=zo|?6V2M6MbbY1){ĉM3˚5kf&L`UNdIq{rbK/vaʚ1cA~gڴicve3c W^fѢEVi׮Y`oL޽i71XxmGCos!$VU1l0O%K$^_!! 10b؀z1)X= ľ߿*vzSϚ֭[gr!^3L/hYP{6\um۶o:y景 4vt\wu.vئ֭3mOָqk96p7ۛF _~i߾}v%ʃNcW+{[ MP?DۈZ_]21iEqߺK 1N>4f̐!C|w7=O>9F4xy뭷J< 6nfIiG}yn t } zPue^,àANfN˴m'WE 5M@͛7.nܹsgϞvtUW񷇨:ksan4-IuK/g̓gm$f#&$&_d]wʹ' AZNk/[.mjzkv%ʃNck6mM_@gA̛׸յ*SB{1QZ0vΜ9v 6 n;-rљiMOxoL |UoFӖ<'s rei]eZYO%ٸqdn|}&9oQu–7 ,N@N :{l;ׯ&aU^_nVX[ٴ w<P suTo*SnS}LzͦM#8zxO<uPxsabbƪI~.YV+qz|y??@O#3k,E0nիWk `O2"1vHoO=o Zy/ySuV3\rm7Co5$k73g,QQu|rrzζ ;bٲevZ<\iqQ\UPT^iS8X|q"d\-" 䍉# 1㇧ޫ\=Ⱥao* h~L?۷ozs6o^oF&M+WLӰ.H Sw.!F&:vh˭^]|Wam.h$4e@_NrOU7j(08[wMOxxzζ 1ƣ?~ 16Mƨ=4Ms=Zݻ<ȃ.n}us S៯끵CEP;q:z>|qм;3z(?~|vYͽ~&HymE=$k* |YW^y=~$HY~6V7=$WH l =!zCݣGۑ%;H@X^#hQuڢ6KXw\5\.\hA'Mgxx)n~wlybmD 1QMpPɳxzGI=4MR7_yP3yڼf֭K/5M6ͬkӦY|L&MJ׺uk\۴k\r%70|ỳ`y򝏼$-<+ KߥKfooּ f}ITQĥ'4۶m3?/̦MK_zu3۷o7F*nƍ/4}ѣGMcLAU\x=/_nѢٲe>}zOvTUʪ ˻nʂ.̜zv)Sؾ1@AA)6۷?cD 86l`d~`̙v͛g.]jС?_x;wǓ_&|#/ISFq^̢Eӻw2t'&L4(zT&}/r.Lu319z7Sw^?ӰE*yCxa|t$n}>AǪBLʰ<2 1hsk뮻@1113gNw}gGq5oK/qƥ I}\$ӍbDƍW^1sN{w-Iڧ4U3J8&1,c+lU]*|sQGeՏ1w#HL_wo&O&`u%K^{-SQQ{XAΒa)8 ;_63fsZQKO>0+Wue&1ͥ۽{ws]w>Q{E@yܵ_}e]R{;N˴HlPn5jY^i&I u˼BC=dw_}iSۺ袋JL֭m~mwʫkJs?}=cvu5= bbj#?Ġ H2=a;(e˖[o5e˖vةS@#MzIm^Ҕ?grW\aƎO ;բ qaBLTABO(+W_m_n&ILR!FaMjh6ndj_2ԺeO}dq^*UVVZaÆAAT~5VzGt,UW]evN$3PKϞ=MۇI R? h!f:3;&M80r(z+[vy?<#ŏ4%wyIS>\4&5k֬2`M^?(no$ۄP@_zAw /!F4')RH*8Sh8S_\u,+9#߭nM8!&l;7iشiлM86NejOy6*i )n桠˪3֧bҏ:1A#A:vhR +v{mi]#$٩ltnYSN+pdSwM'mjɦGoe:~S xd.`C_8qbன;7o.$/~I/iKxך !6oϛn$z7tM+p{sbQ!3kfYŃ]["L㆘Z,H)2d=iBNM O2BO"hp-S⦲A%iڗ+øcĘ IQ甯t^뙡%rʻDM:w"*;MMσD~;qб>7JU6o=cx(Wz{ wPv<y(s@E;-/^xWJ9_B?l d^A)'1DEPBnYLI] oY=!tyn"/KLj گNz !;Ly$9% 5Mf/BgoL8!&XS,\N[̘1c2rϻ^mWNP[NW>.N?ۯ 12Mr\<ڇ7~O6ͦko:y;115VћN9oڴ@&H{ 4妛n*nzPI/*߹%qSCVjJA;5ILᗗ{aj#Mtb2[CQpd830u:H09iw/Sov+Ƅ.NjĕZʹi^9_Ʀ)QgX1.łRYv3KUYjJHZ O'`_m\Sy[*poTcӏ:4H\:ۢ)4jk.o eOg#xsT&J[}DU_.)୮問S?g:+Dd^!F&o3rAruǞ{i]w<%4mWAy /4,2) ̪ux|ꮇ~O?d 7`dmza%/iGV5}mDAM/h{1b[14[A_Mrm$l?9 1q]j]5"M8-c0KSG5}k/mhŁ)zrWXOO_MR}`4~߶Y 144;#Щ](#VASutNPYWqWq:i;H\:=oy.%bg+]3Cдj\|Wš~RG)15I٢J_ G/9!F&>LJ<~(MojS6 dI'ϥGH9Vt:T_bPeC[orbbbRA_,A$ތ{2U4]D]իW#G41MR*B B B T 4EEn4MN1>4rA,hZB bbb!!!!!!bbbbbbbbb!!!!!: 1G}yW֭[ͥ^j6mYצM|r?&Mدuvi׮Koaov;yIZ>J[yVǗؿK.f͚574~y>쓨ꫯzuY}'Ͷm̏?h i&3pW^x~۷QFZqF_>#4-74'st+ŋsTۨ EƍK,={y衇Ӣٲe>}zyy͌3_v]dW_}e Tinz˖-3/믿n8!!⅘>Rk{,3׀_ 6؁_$9spy晥K4:t`:ϗ:^Ν$ץI/*KAԩS#˸W^fѢEvDNHݻwlgg ?3nN@PHXzt_~]&Ą IIrNR 1NQ6׿̔)S*DQ9J뤲t^s'x駟Lǎy b1gΜ7qvּy@@^+VLWLY۶mK,ܹsPҤ|%I޸7.)O OII* P :T,ؿkRHzto[jN"$,? -N'ӤIwQ$\]c]S(ʈK/9#}9rdcKpxgJ5:^{e+_n쪫T< "=bmGcȐ!})W![jiժUG{subb*D>|yxDAB̤IJ v(4 s;xPvg[`>g'soӭs;^S 1W/͚"Yɤٱ}se;+ 7i{[)WABk:yʹ0^\X(W)W^yekE45I1ڎڶ<[1ʓڗ uiQ~VpAbb*\ F8!o SO iAl޼DY&6/iE_kb^o5@L"$ͳ4%#*`j$z7״ `5EM*4-.U`H0ԟCDⶻuՎmXJ9cQAB̜uKM?ߨQCsҢiONFqJH b4,(=yq$d{7bI@X(oy#4w}&4,Vӣ9:3@OeZ4G]4)l;pҦus{G̃ S?PgD =kY`./N^U/lhzԱu_mڷm`|ŏq4i#9}@!Fw$+QF:h \冾/\ Du}L"y?% FuDBx㍙D<|Kչb=9,%fu( 1 j /"^(짟~"#(6_H6|璗4 ,s !bFaE!Vl }%FFo9}5$lBB̐BCx5Hv Wvjeg߃e"'ۖb\h\96{\$Ŧcf;^/ $1Kxv$OEQG35]M_%+Njgj5m+aR1[4mMqp(\*ȃ,njTع9G?56 brI'E&8_@AA~񧲥#L^NenhGb!!!!!!!!!bbbbbb!!!!!!!!!9ͫjnj.RӴi̺6mژ˗~4iҤ~[˵Mv%\bx 7ߘx 0 x ,M/,KQʳp?]t1k֬1oo /`gu~{|_4tPh:O>ٶm_|a6mdXbիqonFUjƍ?#ӣG:6맙5Md'xb{^*?o*ͰFvKUΝ;@}׸}ePlBee]fN=R[halbO4TvR^@Aɫs_ =Xf: 6_9sy晥K4:t`:>xҤ|%q`1u2իYh_"D;u~Ž׬Y3k;4oL6|fʔ)81Ae$޳b[/SjP% b"EL2uԝ4lѤJwA(Xv^P~U&VZeFkK:.桾"uUbwMU~<,(vY$(U:F%;cΜ9߃6} 8!:H̊+Ug/k۶m7p;wn4E;yIR>K/qƥ 'O_We˖-3~{#7nl>ȣ9sJkI*>})0t15%2KN5 oвʄ[긺ChUE͊HYeW:!bbj#1_~.sq^9.oСd)~)n,Z:ML[gMCkҮ{X ӱ8' MA疦i#PTn7x:U׎M>EptSαBL]we>3SO;339䓍3ÅR=:Ϥ vGm~3ΰ›W\;Ի_~ٶCX9fyRwijo]tQi@o$X9/"=,tu<m=lԹkU}|nX=x ;F>=C}P9: 򲔹ڨ򣼄S:ȵuOG(}m&x~\A^Tۺ[lҬ۷^;.嚊jI^ʫ͙gYW<֭[gNP˨uoNR?Ie^m0M?|IB BLbݡ+?%h:QuAinٲu)p&6/iG7u*B3n+0cǎ짛fCw ;r!9`ذa6M+N1OMK;ꨣ2}QsG%ylzD)Tj[DkOqH1۴<1|LCtd_|-wu*{=dn޼z82 zٳ}ꪫJԁj_Nw}}C뮻ƞ{R!&9d﹩})1pNnGL1YxH~g25-U^}a4k?ItTIr}]{QmKfvA)7H4iR!4Eotss;Cy 2MzIm^Ҕ,U.Qi͚5+uS׏n> z&?qǓpp>C6 F2m4PMТtz>S2o 1+_Z$=כmeZwβHq3L[Fۄ-b?c~sM.cㄘSXe}kx:Iփ7`4$[S>W`x._!&. =ztb٤f_/ʿA;(TNta}M KKMt}0ܓgsקնt$(!&eYi `tъ+=\']I 6*NOtŵ-tsbޒ4Nlc\$&+S}s/Hxfjڥw۸{sI['y۠w$KߋεO 볓%*!R M81R ,SРHiKl8^F# )M$M~O7'x"$zwԃ`j ޛSoV"ɿY<.kеU(9nu")C֓&dyԤ\>]0 #hTR!Fw!Ho%ٴ۸1cXwcg/n]!&.9@~ AXH޷ARׇcBir-W=a ܟaM7 &wI3ɹձEǒzň ;FY{1{}{+D"p&GW}bT- T`z*x 1@\Vkޭ᝻*!!mzIK^Җռ߸rWz 6?i'wO xBe^''1DziԾhJ4]-kж7Ka|-'.oЭURԠu1AWd!hP Ks㝖46ILauK;'ӽ1ʻI ׿,.8!Fp)uizzM̗`+=j,C#M9=܃fS}k4ݤz(rbpBۏ*.L7~v_\=%_ܵV9yUb-ɦwڴiW.Iʭ"71bH֮]˗ޜ~Ieknli\Ĩ>;I[@A2BsonڴTgby뭁WBMo馛Bz946?K^Gs\=P{C9(TѨN,=^oS奣lz[{\~DOƧaQ!a̕|19 l=_\jc4ۻWO]cBEJfڴjWB ݯYcSpyᔨ3SobS]bd!Ĩiڇ(8?nRbOk8 jaisDI[/+=ਭ7eA ZFI .]g:1mAp89q5i7GSM]IP+MQ,TOMfԹշ`nܹӛ$ƥ#&,wYG[k/q2o,zJ.~:ȵ*}&E]A^\r{MW;MZMsM]A1\[Eo9J{c.BLܽ9iM2,mпO{b!&>1IזbbN:)4hWeH*(&A|/Y$aP8W}C͂?+M~ տ- Ĕ[?1=XBo;:ij:>TիW#Gۗ(4M'BUo@u B\ay{3TSB @rq1}ִ;ʅ7eQSqq7CuhK111111111111Gm^}UuVs饗Mfֵi,_I&%kݺ]mڵkg.oo<f[`ƿJ#I^ҜדO>imf~G_M6Xz}gonFUjƍ͗_~i>#ӣG:6맙5Md'xb{^*?p1dZܫqfߨe7inF/i{t~UF馡U:vغB2 5*]>̐k3݄}4j :Bgq%oyW3O}K=̤ۦ 3Ufq͸i~u`GVR|_7}c=k0ea# 13gδv?o 9sJkI*>})0t19p}@|kQcb5ey} / ,̷^)^!+rfO&-d =rmAf;Kl;j᭦un3Clb!!J 1/E%fəaB?lfϞ=4û<^Ze$$M/isKywСCKU0?~ Q;_4hP4s bh&LY/ϝO>u%K^{-SQQ{XAΒa)²h46WN2na N4ft]NJa/Lz046[ڧBQIT^;6MMa;'b6̌MfMYK2SH;z7 ZfnzL\`ӑ4jk:zF4=evc(J2+ݐ/toF/=ofQ7ʳۤE[GݒL7muWq.?}IQo LfC␣T$úKU@dA@XYŰq9'D}jkgu}.ӧs9򶛬 ڍ[ez{trI~Kvݯ[b j\U?|{_/9p^~? =Qߴ:igF륀V.fy\uoOG2%w۾fD' =p>o+eR:/Z%Q_Ebb. F3*>"Ϝ9c$ bM}~m/Y3f8ulbz;6LQmqi#L_¾/oΟ?߼K:8lva/^ ( (pBLvo+M$cqhpSuM$ .mnS;p{ &sm(&kh}w>='cIgSr F#o,j&A3b,k b˦bA AetV2qĄAL~b\fh&EǎcV\iO{CT %󣂴:/*eCjkذa_ bJ4I]A :!j DqͦԂۖ~"nKdvfg.{LmW>ˬI &:)1!wsY$ d}g]/'Z5XΈ{ G޽oذٸqy7̷~ky3vؔuf?n Gu'|~=zi۶m 6۪U+O?;p/k7m4JqSwI4~Y:o>|oۚec4E.ʹ ?¶%K[o"jVfL4Q[kӾ}b}OꟖ:' ۯY;|I\xj*pBꫯ bofg8WsT1 ;]LƼyȻ+&mk?SvO_5Iv-uRۙ Gڱ3pRL_ؠ(m[?5rȬ{7dw*iӤI}g橧2G1K.&N߽K:dӒ"Ϝ9c$ bM; ^d9x`jժiz|ÏT %ABgՖ-[LϞ=ci`G8Si=ieIGkTEb$*Y?|;wW;v3W`&l a42]rMަmxs48Y)zL:&d nl6e=Yt\6Q@5I_>;ĈɩU9iE5tM b4J~B{̚5Y_n+LvҬ/͚5ALPMvlO}m׮ǨQg̽dݒʕ+zH`E5\ALΝ@of7$ b7[C):v۶rJ3}~^~/y[l5lذsggh@H {Ҳ&<؞:ux h:((@Y5[o-U 8b\] g2g\mڔ;2 YǂvmpmOݹn -MJLNџױqKTXJ_駟֭[eru}^q~Ey1^|=ӡo޽{g]= ]s5Efyo[A AhFNV h7a_= *"hi͉'zÏT %qӝ6mڔkփ3 "6ޓfᮏ+yP&$~g@3fD)[ &kX d`4ʋ"&掦ܡ)%Cv&MKs9M,A3ok83@K4I1rTͰ )}joƥY}Ͷ! F:o=\u1N;9ܵ(:^~/7]vm6f&]˛tLn\ FpC%ӣ^4sA 9rjV6YFDl=q%:;(z1~ewwaF#Q}kDAf1<.W۶mT3H™do^gnݺAx btby[{A AL*A~o[ѣfE그 6dFhI۷/nyZ= 8%wITAރ *WJX 0̞=.AҌ#F:Zd;fh)֭[ͽXoPS|aU4is3fd64a2M֨fy+zn׌+1ԶW\x\ &msdIԁ!6dNmS F^ 1ɏ<|gf:vjC?u0dϞ=ȑ#m@맿x Ư ;}ifM޽,@CJSStc@;1*]ߎq9l8%YQ]r~4z?7=_w (YO5ײdImiiAvR bJĜ݈TH3:.KDÚHAeMN۝:0i;G4δQ1XI;7deY FTEuyTEU-!- 5t$=7s=V }VV߯ F 11bR`z.J{u$ )~Q5n=~%P|_"QP?b{B [9KZ1ZBs׮]/wנY6Cn !E6gΜTEK8111@CCbbb !!111@CCS̙3Ǽ+>0w}TRl_5̲eٳgMŊ㎫^ݮԪUˬ_޼o1'O4mڴ}3gx^PK/aϏVՆwq7llܸѼo5?;vlsuf?n Gu?M652]w'4?=zԴm6n |mժ駟l8`K>ԟQJysz9i UZ͛7ϾGqٯvڸm:u2z1"nI#3}/jժ7ݿd/μkf11L<:Zli<6VHo fСvp?p fѢE:u]v{կ_߾ TKKqLx7onΝkWH?-Z{a^kC !C?= qԎO?YpaҁΓBwyb~=tn޼ b / &ӟd}ٸmr=o6m۾uVV}MVH֎3}oVfwtܹsnݺ11hvƘ1cb?wFX3fa*U|͔YboQf͸w6&L𝅒J{]} s~~ޫWI J|A3u_/բ0`ǎ*Th`I_~e|"߶b߯;LڵcN>mnf=o\ +K蹚EN@CS FNwo G} >ܷm@}fܹΰ ?¶%K[o"jFfhɉ;_i߾m[˃tn'LEˠ^lsuׅkM>}b5{O> VZegټꫡ #2̾e;~g[U֌y3 gMaV/,g5 蒷j9qnú9f_ʙm)cG^̠L} \֕ <)r3]?xiƒkƧ~jrssڷm6LKt=Çۥi/R)8SLFO9Ԇ> ){~{r1ӨQ1Yz}__1/6B%M7dϭ>UPP؎=s}S8?@CSAfSw3g4DAi` c?WVWaZ &Q3Ҥ0A]+ !) F3Bp:t}& b.];RР¸8q"H7H.n_R}7ݭ[Տ~ӯfm&d& juo6ĥ8wqyvpeRNaJb̩DKzf D=]eqw"!msӊČYd̝=>7Y( 1Z fessF7 7T;Ig|zs,Mz~"$AL~OYw-, F3 !)bM Zf^"hPY!GKi34rk3(H0.I_R=?nZe꧖AI]m!a3r"u-4ibߟB1O*5b첦9fpLs,Re犲Es=OܳU-_ϟV#/qӳStF̴k2h!}2S*.ЫQwroR5Zx R0/}>1ϜsAbz['tN ﹚qtw A~#obѣG A)M;P- -mٷo_`Nn입R$}IuT7Cw; UAD5UJK40`={]Ƥ@dĈv;l(1Z[{ア1N;z/4[@pJ:#ۙToL3efBZjrvR繃s̡ȌS~gg1Yddf͢Yifsd9;xj칳9={뮿Wb1s]N焏A \ov1~Vx{%޵ 11HS]K4 7QKo=eDs0Wk~~/ Ւ2z::=_wҥ :䴣jYkJ sj[3FZOJx b:F"U1捳>RM |wK, Oj,8f/cl,c<-uϼqs$զ99YwK9S)w$Q1:Gz8{YޚB i=]cg=;Du&}4[Dy/I9>l1 UFKT?'QNй{j$t6 TT-X ~]ɂ /`\&t{ads%21 A A zbbb !!111@CCA A A !A̜9s+b>swJ*ըQ,[̜={TX1իzNZ믿nsIӦMכ9s}w{4mYm8zw|Æ ƍoa[ϛc=[n/0}Yn]DO=jڶmÆ ǶjO}0_~ӦM۫T07u0i{}MN_ͳKlܸq/ǟjW5d[L&x|*-n.RJ0|igFV?*U1̉޽Sjƿgr@Cb&Ol^{5ӲeK15}O>$.ZjYpyWC1wa{9uL}Mڮ&c^{S>rkZLCL=}M֐&۵ImgN+iKarW3bmL˩"vla`骤A¬m۶elZh AÇ^z)n֓B)Ss{lE[2G,1]ogzi9lal)E^S#0A6TLӾ3m;U?flsO=iftaS:Nd>zuObПroH((7 N+նUI)n>hn*cރFHks~ \Xo%:0pQߴ:.gP{*רgct$G5 7լvĨM]6, bt},|,V~ol91W52,-ɪ\*bb. F;>"Ϝ9c$kB ^d9x`jժzԫW7@H.n_R9?} UDg:W[l1={A/9bADGk4W-gk'LS b@ fǎfűPJA 'dw N*M$cqhpSuM$ .mnS;p{ &sm(&kh}w>='cIgSr F۷%^:u2~8qblc=ff͚eKtj׮m3}~ڵk|ϖC#oH^vΈi=꯶*5.=O^vVCu/4Uj-.Ft>6吿DjT{տKM4حZb ABDn>NbtΌ٤02}((HksJtI登M-b}WSf ]©[A„%K8G.IK{[A8*1:V8[7GSa[kIh ΫV"  b:wlw~3SH}~b\fh6EǎcV\iO{T %󣢴:/*%Ljkذa/4[o[ F/T;"~, ײGٚ.c &n6%[nƽfwq7v1ws}~x9I֏k( ƙɢ;ػ2EXj_bb. FE|MSPP`O=z46x +<ВwZo߾~t{fLⴗ%K*ӨQ#{ub UHJKX 0̞=.c,#Fz0Zvhvmݺ{ア1N;a^ALVK#Qȑvo[87szAl6LƍmI&cAdjfGvxQRCm[{1U`6GDbØ MZ0!QkN\ﱉ3l@*R`qS)DЀU:*UeN^⤕b^5VQ 5썸0>R bZZGk*V΋M>L=JN 61MtiP D1A} Rok[|U xawsPd 9FiD z/KDA0Q FE֭UFˆ4;릸A-:g zvZNRΉ]b~oS b7@C+1j /{ s\8w Z֒,@(n{A.I_R9?v鎊 #G6zӥK get!W˲_r Pίx(9_%ѻii3f"u\җv5˺;u`v܅iibb ]T;FwnJ;nY1Npϋj(gB^Э3l@bnS;G-7 wѬl՝^DK44e4- :rf h&fTh G1S)hs2¯tA*3:?j[,4sBf1ws7#BrU\WEM{OKxD dAUbz6v&^CѲfn,rJz  T4lt]5KF S=׮8T AL,X[RiD!Re MzN.2o/}~k @CC2 UK=z!nLW-Q/ FKD A Ae`6.s%9eBGﭝ@CCA A A !111bbbA ALrs1wm*UWF l2sYSbŸWn9j2ׯ7oɓ'M6m|_o̙9Kgݻw 647n4oo?oƎkرwQA"L'4?_|a=jڶmÆ UV槟~2ݺu+/4}iڴiyZ9wf霴;*͛gߣ߸qb},lװi&t˪/2dA ALɓ'd˖-m` )}sp :n,ZȶQNk.sy}ߥї0Lx7onΝkWH?-Z(Tj>3Ӯ]"QеyNPwޱ_ﱛ7o`J bRy5\%1,}M̀GbbivƘ1cb?w|w601cUR7+VA5km߽{0a,TKK_|EӫW7G)=ѵw#*T0q,_~,_{-( X߱}S%~ b}Q3|p߶5CK8hΝ; #l{a]=?o),,]F&&M*EԌڴo߾qO<8qb`~"ɂg9M>}b5O> VZe.\h^}Āf23*kF Dul}ʔZk۶mviɚ1w^cLFbǾ{fy1ZF3f;tM6Hӵ}MAAA=_zگEnnݧϤ0Tsqȑ#O?繃0I&ʞz)۞ )SӧcAÇ×^z)(Xxqs f@C b4?/̙3vINip%K~VիW7H.n_R9?)T͞q\mٲ3v{N v2+W؆ߵC F{v6uk4t ̄ b:ɲ2qC"H5mmo+c/+9/BQp4SxALŊPc)Yݯn"ی2zQt}vzko %4CKf͚ف>2yyyEu1zAv{ǎY W+O:e >(\Q&I}>pBA6Dҿڵkm=5kBI;ҾdoFo׮]Gbbu:fH~~@Qmʕf~^~/yOKְaϹA s=K]}P`=_o5tbh t뭷Ɩ* bu#ϋ$YdMifߑ q}^~씂/+E 7?ڌXuk71[n/k4Iwf~=VMB]s|=_3PpbQr &QϜmwB0A9QW_ݻ~*L.G bz!W_|  5@*hPa\EfN8W$~^~/֤ν~СL$(pAL>-Mw3f4)6 .!͜ LgaV@$Uw)67A̘EIss˛5˞b1:ǏQ"Ɏ~*Q|]`QK4+,YoyRRpQ 5b0mxcPnD/Q(- "$Ə7DK\KxhFj2h9Myw4rk+(4H0.I_R=?nk֬1k׮Mzզgώ,(iԇTR#.kc4"uXv(X47=[/%m51=;EgL& ։'u-[ݺuσ F=T937gY2+T^eZr,& bey% bTIA_0z(.1s-A A Aoi.ѣGw~ 4[iwA۷/niծpB)N{]:1uKE>UE8+#Up*h"1b,kُ:Mwn#Z$CIo>76c7,\74rvV"=ԨcEfĜ;6?78'#3kJ3#ˉuUkfϝe͉I{fO7k>1.~3rH$;ͩ1گ DTpk تAwI_N]TtXg^x 6TH0AwB?muwIg suV{~v'ZJgϞXbg6S ! ,;*ʪA7U<ֻ@wܹs6phyK$}I`8wU{Yj竐i.]l(U,TwfvEfP +l1vЮ6omml3Xzw`QxRf Ʃ7s`}sdci鶸{u˟kjP\Ƭ)kO;5ݵk){gSbg]G2m%KӑNFOo+R}i~G?/=zԴm6n |mժ駟Ln݊;p/G}dKyZ9wf霴;*͛gߣ߸qq>9ziN8a?W_yꩧK~ilo&SBK+suיʕ+k:rgJ b'<A ḀhvƘ1cb?w|w601cURw+VmW5k֌۾{n3aY(ߥї0G?⋦W^)!583S?;v9&z$NA!f h$i/l/_^AL8<LPK1U-#11D06UV~?fm7Z>F;wHc¶%K[oB%Dm2iҤ"_Dm<]ِF3 1>}ͤpVV3t^}Āf23*kF Dul}\ F=bRK877Ln-nٞծ]cK^z%3dȐ"ϧݻ%k;gk}Z6lXDk93< :۶m3k֬ !4P3g%9ڦC",Yb<ZjFEz|ÏT %gPE4{ٮse[9NO;e{ӧm[7jԨ>vJ#?8gth6ŋca'3aNmlcDL3s\:H yMfʘF\UDͲLv1+FfCEUgrv^Ml36E'_ ԩSfҥ{fʔ)vfa<믷u{̚5Y!x_;>[ӦM;S b:vh#Β$g}NzAEޛ{t0 !4Ν;-mH4ׯ_ v\4gʕ+ I.n_R9?*Njkذa\3^4رcH3ScghIIv(nbzw^ӬYAAگ@zklR _h0rHHRYD(~Sٱw$i\?'n8$; {jKJB͢O6#f9Me̖঴9vU!}.g}>SӺuk,)Ļ|.oƍS !j .v*AB}W-=}G~aܒT&9A \Af 7_M碠Aq5si>.}IutM6%=   jI v($p1_3f[ R$X4sjg40ҟYEd;xW]HHsܴb1cfY~$s'E-o,.{rbyGqςr5 EWϵߒ< *^;եI>selo~&{j_}Þw-M-#11L^ vƏ7DlK 3\[#G%=wvt[ALN1Ӯ6ãubɼhzj{fii@k ڦB v?ѣGۀ/kk?{0A{-Q?6*tg11D"o] G5WN8Nvi˾}Ԯc~8*V(yPwޱϨfhB}6{)+g(:['׾֭[q/uS\\}ն: / hyN~+ӟՖO}3{pA? }~5cM[n !ouՐP /|ՙ.mK8w Zޒ,(n{A.I_R9?*L%{\kɉӎɪ;64SAuw;t6 ;TWKThWp7ζTWK6V6y,;Gg(<]hԛ99t[=5Iio(cn.cRD 5Iԧ1݅;(h8~ tnU+{N*NuV"]vaSxwĞTۚQ1*11ZF/΍&g}7<{{~H\2AL,X[RiDA A AL sǟK=hv{)ӕF{11\bbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbb@CCA A A !!  @CCA A A !CA A A 111 @CÇbbbA A A 111 @CCbbb !!11 @CCA A A !111bbbA A !! @CCbbA A A 111 @Cbbb !!111@CCA A A !! bbbA A A 111 @CCbbb !!11 @CCA A A !111bbbA A !! @CCbbA A A 111 @Cbbb !!111@CCA A A !! bbbA A A 111 @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! @CCbbb !! o΃({A`d $!DvHA .(.""H@D@?* ,Z⮥}=v:g3sΜzdf2LR~?kb!b!!F!Fb!Fb@b@bb!!F!F!Fb!Fb@bb!b!!F!F!Fb@b@bb!b!!F!Fb!Fb@b@bb!!F!F!Fb!Fb@bb!b!!F!F!Fb@b@bb!b!!F!Fb!Fb@b@bb!!F!F!Fb!Fb@bb!b!!F!F!Fb@b@bb!b!!F!Fb!Fb@b@bb!!F!F!Fb!Fb@bb!b!!F!F!Fb@b@bb!b!!F!Fb!Fb@b@bb!!F!F!Fb!Fb@bb!b!!F!F!Fb@b@bb!b!!F!Fb!Fb@b@b|#1 1B 1B 1B1Bozb!!F!!f՗&+ο&֦Fm5xL81>}z2s̎#~/!FT0e@OX6[׎?~XL #Ĵbhea7.4֨yiF)!FbbWae118"폳1%!Fh70Θfb!F^[k{b!!Fbb!b!F@O?=yRc!Fbq_<O<_vez!Ĝviɺu|֯_ZJb6WN䩧)^oS01Bs'&{+~'_|q7?^h`ʪƘv38#y饗ڵk:*?~8}Y.FbbSOM:K-[~ 1Ǒ){*Sjg#LM7ݴou1Bs 7 _\!`wC_)\zb&裏N_O'[џ`(K0K.|qpn9묳[ohk!FS"DmoKwv7C|.7KMK.$9Jcx}S~_W\qE7q™jqEbŊΛ^?/Щџ` GRo08?)'v4{y ql)ԩٟ0R1iHq g>8裏&g[n%r4-IBLOXP]$yhO!&vD(sjWiqů))ʉO~Yo\9nݺ_>YjU^!+!&~8sI'a#Fq(yQ5qL'~6.mtGL+!wqu^PDl/&ob}~c7mm#8s$# 㫋wă[;acWZ5ֵ֬{wWbLD 1BLk!xLILH) G#~#Db!Fb@b@bb!!F!F!F4C̒%Ky]ks!f<0$B1BB#B##1 1B 1B 1B1BB##1F֬Y7I~_'Wb!:%"L>/!FM>=KG}4/~MK.m|!F`&L\ɺufooWoK?X|Ezg^x!{~N/듧~:Ylo3mڴmo>O}SɩZ:ӗa_kdNJv~nd֠aw}3L߮?1KRjqcrG_95hq5Ȗׂ 5\̞=;;wnruץ᫕Q 1᪫J?b6yO,@^mco6|ҥK{K~.&&~M?y0U؜1cF׿/[o?۝w޹ю* P~0{A-}-^ur1_na_{iVAb1bG/I&%W_}u%!K,^ooΑ '3z *oS 鎊+W6]6qDc >юǎZbŊ-\vZ~;a[q+;c|- 1qLb!-?c:"qo]ISy_8؏~8IB@q"4E?!=zbG5z-ƴa ,k_Z?c8wL<9?'O# ~MQ㊐_^c:Z Ώlbv~xehѢ4~4ڹGAxΫbz׻G#cp@^!f1FcbL~/Nϟ?-1ܝq!G4bG6… ]屓 c}IN>M_?ӟ~]HesIw ㊏!.ow#{};Cjx`#ZBL_/g9u{W( 1/b611};Iµvnx],NM8̬Y_E)8L~gF&k14qѤ[Nb"Lx2[<*S^ؙ4SzcUT(}j6BL{' 1]c vi'?I=܁ѕ8bRǵ^xaq<,q\,^^E+>׉}-/Q3[s×\rIz1sv*{i+Dz>;<ČbvbEɧտx;G\B5ın?ExP|WGXb F-;0񹉝y|hK_vyO<(ߟљV?ŋub誏r!#>_dɒ7ޘF76#-[V7CLD˗b"L^y#KCB!}!fK!vNꯏKM?ϥ/qL~?H;#!'qH,XdB5>{wbA5|$xO<ѧՏ+8wƄ8NؕO#>7,\~铪?BLߞ7,vV=#=ž4#Ij$6Ous9'sc-bgkA߈WbDԯE9묳Z lŻ:@bvɕ>6~ϝ#IBLCb^wX|BBB֥m!l}vʾhc}178qo~X4[KdkHy٫0Uwôz,iab+fF1fRV њoF6gdk fJnavs$0BL+f:c̞ٳ'fkD<ڿF|'fkl g!z\v-q?C`/mҎ1 OMɣLS&3v%ӗ)ٱΑmk%BL'SリZ#pwDc;cAfBɣLqL1Ηqº;0;aّ$abڱ+Ƀ.(3pLFZ:__R0;ԩ30#*txRb-] SMR[c`N.wj`+ m 8IUwl}ĘwxS2U #H+kKk 㩫DKkD!fbQں62.-Frj۱_v(ėzfn$ǒqW̖m1 S)7P߫K;_ffKa:+fv4:T1L(S 2@}7/LU IIBL]11vǔL(lY|yUi ^00BLƘzAf7D22hQo\/Ժ`D.vĘfQf06C]֊/C 00"tbWL |Řrye) 3@R 0l`E-Daz`WLS2c*Dza^jŗ1Mv GU!f8c`L0T/f11-iͱΗ1 0"Lf1ZAu̘&;f`^ 4,1cdaf в`DĘFAJJ;^Z/UL'"Y,T3͂ W0"LƘfAfd`4j_7az7ƴ;̖mZSFisicZ9430ڣ\sW/C0BLcL1ʼQk[\ˋ0=cZ 275Pӎ#L@GDcdj] 4֎P{biWhF ө(t/0=cFلb(f|aF@fË3@ .(1 JwA`oT_ 0 a#‹h@p1 +c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1cL'8n(QHIENDB`nicotine-plus-3.3.4/data/scripts/000077500000000000000000000000001461625273200167225ustar00rootroot00000000000000nicotine-plus-3.3.4/data/scripts/update_ip_country_data.py000066400000000000000000000116461461625273200240320ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import csv import io import os import time import urllib.request import zipfile COUNTRY_DATA_URL = "https://download.ip2location.com/lite/IP2LOCATION-LITE-DB1.CSV.ZIP" COPYRIGHT_PREFIX = b"Copyright (c)" PRODUCT_NAME = "IP2Location LITE" EXPECTED_COPYRIGHT_AUTHOR = b"Hexasoft Development" EXPECTED_LICENSE = b"Creative Commons Attribution-ShareAlike 4.0 International" MAX_IPV4_RANGE = 4294967295 MAX_RESPONSE_BYTES = 5000000 BASE_PATH = os.path.normpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), "..", "..")) def parse_ip_country_data(): """Download and parse country data.""" file_path, headers = urllib.request.urlretrieve(COUNTRY_DATA_URL) if int(headers["Content-Length"]) > MAX_RESPONSE_BYTES: raise ValueError("Country data response too large") country_codes = set() ip_ranges = [] country_values = [] copyright_notice = None with zipfile.ZipFile(file_path, "r") as zip_file_handle: license_file_name, readme_file_name, csv_file_name = zip_file_handle.namelist() with zip_file_handle.open(readme_file_name) as readme_file_handle: for line in readme_file_handle: if COPYRIGHT_PREFIX in line: copyright_notice = line.strip() if not copyright_notice: raise ValueError("Copyright notice was not found") if EXPECTED_COPYRIGHT_AUTHOR not in copyright_notice: raise ValueError(f"Missing author '{EXPECTED_COPYRIGHT_AUTHOR}' in copyright notice '{copyright_notice}'") with zip_file_handle.open(license_file_name) as license_file_handle: if EXPECTED_LICENSE not in license_file_handle.read(): raise ValueError("Wrong country data license") with zip_file_handle.open(csv_file_name) as csv_file_handle: for row in csv.reader(io.TextIOWrapper(csv_file_handle)): _address_from, address_to, country_code, _country_name = list(row) address_to = int(address_to) if (len(country_code) != 2 or not country_code.isupper()) and country_code != "-": raise ValueError("Invalid country code") if address_to < 0 or address_to > MAX_IPV4_RANGE: raise ValueError("Invalid IP address") country_codes.add(country_code) ip_ranges.append(address_to) country_values.append(country_code) return country_codes, ip_ranges, country_values, copyright_notice def update_ip_country_data(): """Update country data files.""" timestamp_updated = int(time.time()) h_timestamp_updated = time.strftime("%Y-%m-%d", time.localtime(timestamp_updated)) country_codes, ip_ranges, country_values, copyright_notice = parse_ip_country_data() # File header output_header = bytearray(f"""# {PRODUCT_NAME} is licensed under # {EXPECTED_LICENSE.decode()}. # # {copyright_notice.decode()} # # Generated on {h_timestamp_updated} timestamp={timestamp_updated} """.encode()) output_ip_ranges = output_header.copy() output_country_codes = output_header.copy() # IP ranges output_ip_ranges.extend(b"values=") for ip_address in ip_ranges: output_ip_ranges.extend(f"{ip_address},".encode()) # Country codes start_output = bytearray() end_output = bytearray() for country_code in sorted(country_codes): start_output.extend(f'{country_code.replace("-", "_")},'.encode()) end_output.extend(f'"{country_code.replace("-", "")}",'.encode()) output_country_codes.extend(start_output.rstrip(b",")) output_country_codes.extend(b"=") output_country_codes.extend(end_output.rstrip(b",")) output_country_codes.extend(b"\nvalues=") for country_code in country_values: output_country_codes.extend(f'{country_code.replace("-", "_")},'.encode()) # Write data to files for basename, output in ( ("ip_ranges", output_ip_ranges), ("country_codes", output_country_codes) ): with open(os.path.join(BASE_PATH, "pynicotine", "external", "data", f"{basename}.py"), "wb") as file_handle: file_handle.write(output.rstrip(b",")) if __name__ == "__main__": update_ip_country_data() nicotine-plus-3.3.4/data/scripts/update_translation_template.py000066400000000000000000000034561461625273200250770ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2021-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import glob import os import subprocess def update_translation_template(): """Update .pot translation template.""" # Desktop files files = sorted(glob.glob("data/**/*.desktop.in", recursive=True), key=os.path.abspath) subprocess.check_call( ["xgettext", "-k", "--keyword=GenericName", "--keyword=Comment", "--keyword=Keywords", "-o", "po/nicotine.pot"] + files ) # Python and GtkBuilder files files = (sorted(glob.glob("data/**/*.xml.in", recursive=True), key=os.path.abspath) + sorted(glob.glob("pynicotine/**/*.py", recursive=True), key=os.path.abspath) + sorted(glob.glob("pynicotine/**/*.ui", recursive=True), key=os.path.abspath)) subprocess.check_call(["xgettext", "-j", "-o", "po/nicotine.pot"] + files) # PLUGININFO files files = sorted(glob.glob("pynicotine/plugins/**/PLUGININFO", recursive=True)) subprocess.check_call(["xgettext", "--join-existing", "-L", "Python", "-o", "po/nicotine.pot"] + files) if __name__ == "__main__": update_translation_template() nicotine-plus-3.3.4/debian/000077500000000000000000000000001461625273200155445ustar00rootroot00000000000000nicotine-plus-3.3.4/debian/changelog000066400000000000000000000105531461625273200174220ustar00rootroot00000000000000nicotine (3.3.4-1) noble; urgency=medium * Latest upstream. -- Mat Mon, 06 May 2024 16:38:36 +0300 nicotine (3.3.3-1) noble; urgency=medium * Latest upstream. -- Mat Sun, 05 May 2024 14:59:48 +0300 nicotine (3.3.2-1) mantic; urgency=medium * Latest upstream. -- Mat Sun, 25 Feb 2024 01:35:34 +0200 nicotine (3.3.1-1) mantic; urgency=medium * Latest upstream. -- Mat Sat, 24 Feb 2024 01:12:49 +0200 nicotine (3.3.0-1) mantic; urgency=medium * Latest upstream. -- Mat Thu, 01 Feb 2024 22:19:53 +0200 nicotine (3.2.9-1) kinetic; urgency=medium * Latest upstream. -- Mat Sun, 05 Mar 2023 19:55:56 +0300 nicotine (3.2.8-1) kinetic; urgency=medium * Latest upstream. -- Mat Thu, 05 Jan 2023 19:23:54 +0300 nicotine (3.2.7-1) kinetic; urgency=medium * Latest upstream. -- Mat Wed, 30 Nov 2022 23:29:12 +0300 nicotine (3.2.6-1) jammy; urgency=medium * Latest upstream. -- Mat Fri, 21 Oct 2022 15:22:43 +0300 nicotine (3.2.5-1) jammy; urgency=medium * Latest upstream. -- Mat Tue, 30 Aug 2022 16:36:27 +0300 nicotine (3.2.4-1) jammy; urgency=medium * Latest upstream. -- Mat Sun, 07 Aug 2022 17:08:56 +0300 nicotine (3.2.3-1) jammy; urgency=medium * Latest upstream. -- Mat Fri, 05 Aug 2022 18:20:47 +0300 nicotine (3.2.2-1) impish; urgency=medium * Latest upstream. -- Mat Sat, 19 Mar 2022 20:29:41 +0300 nicotine (3.2.1-1) impish; urgency=medium * Latest upstream. -- Mat Wed, 09 Feb 2022 21:01:58 +0300 nicotine (3.2.0-1) impish; urgency=medium * Latest upstream. -- Mat Sat, 18 Dec 2021 21:59:03 +0300 nicotine (3.1.1-1) hirsute; urgency=medium * Latest upstream. -- Mat Mon, 02 Aug 2021 06:55:39 +0300 nicotine (3.1.0-1) hirsute; urgency=medium * Latest upstream. -- Mat Fri, 23 Jul 2021 18:27:07 +0300 nicotine (3.0.6-1) hirsute; urgency=medium * Latest upstream. -- Mat Sat, 01 May 2021 00:32:57 +0300 nicotine (3.0.5-1) hirsute; urgency=medium * Latest upstream. -- Mat Sat, 24 Apr 2021 03:03:29 +0300 nicotine (3.0.4-1) groovy; urgency=medium * Latest upstream. -- Mat Wed, 07 Apr 2021 22:44:41 +0300 nicotine (3.0.3-1) groovy; urgency=medium * Latest upstream. -- Mat Thu, 01 Apr 2021 01:28:43 +0300 nicotine (3.0.2-1) groovy; urgency=medium * Latest upstream. -- Mat Mon, 01 Mar 2021 00:32:48 +0300 nicotine (3.0.1-1) groovy; urgency=medium * Latest upstream. -- Mat Fri, 26 Feb 2021 20:12:52 +0300 nicotine (3.0.0-1) groovy; urgency=medium * Latest upstream. -- Mat Fri, 12 Feb 2021 01:02:46 +0300 nicotine (2.2.2-1) groovy; urgency=medium * Latest upstream. -- Mat Tue, 15 Dec 2020 06:25:23 +0300 nicotine (2.2.1-1) groovy; urgency=medium * Latest upstream. -- Mat Mon, 14 Dec 2020 00:36:38 +0300 nicotine (2.2.0-1) groovy; urgency=medium * Latest upstream. -- Mat Fri, 04 Dec 2020 17:00:00 +0300 nicotine (2.1.2-1) focal; urgency=medium * Latest upstream. -- Mat Mon, 12 Oct 2020 20:14:46 +0300 nicotine (2.1.1-1) focal; urgency=medium * Latest upstream. -- Mat Sat, 26 Sep 2020 19:58:58 +0300 nicotine (2.1.0-1) focal; urgency=medium * Latest upstream. -- Mat Sat, 12 Sep 2020 16:49:51 +0300 nicotine (2.0.1-1) focal; urgency=medium * Latest upstream. -- Mathias Mon, 16 Jul 2020 20:23:00 +0300 nicotine (2.0.0-1) focal; urgency=medium * Latest upstream. -- Mathias Mon, 14 Jul 2020 20:35:00 +0300 nicotine (1.4.3-2) focal; urgency=medium * Dropped Python requirement from 3.7 to 3.5 for Xenial support -- Mathias Wed, 20 May 2020 22:01:00 +0300 nicotine (1.4.3-1) eoan; urgency=medium * Ported to Python3 and GTk+3. -- Lene Preuss Sun, 03 May 2020 15:53:07 +0200 nicotine (1.4.2-1) eoan; urgency=medium * Latest upstream. -- Kip Warner Sat, 27 Feb 2020 18:49:00 -0800 nicotine-plus-3.3.4/debian/control000066400000000000000000000023771461625273200171600ustar00rootroot00000000000000Source: nicotine Section: net Priority: optional Maintainer: Nicotine+ Team Standards-Version: 4.6.2 Build-Depends: debhelper-compat (= 10), devscripts, dh-python, gettext, gir1.2-gtk-4.0 (>= 4.6.9) | gir1.2-gtk-3.0 (>= 3.22.30), libgtk-4-bin | libgtk-3-bin, lintian, python3-all, python3-gi, python3-pytest, python3-pytest-xvfb, python3-setuptools Vcs-Git: https://github.com/nicotine-plus/nicotine-plus.git Vcs-Browser: https://github.com/nicotine-plus/nicotine-plus X-Python3-Version: >= 3.6 Homepage: https://nicotine-plus.org Rules-Requires-Root: no Package: nicotine Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, gir1.2-gtk-4.0 (>= 4.6.9) | gir1.2-gtk-3.0 (>= 3.22.30), python3-gi Recommends: gir1.2-gspell-1 Description: graphical client for Soulseek peer-to-peer network Nicotine+ is a graphical client for the Soulseek peer-to-peer network. . Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) alternative to the official Soulseek client, while also providing a comprehensive set of features. nicotine-plus-3.3.4/debian/copyright000066400000000000000000000445611461625273200175110ustar00rootroot00000000000000Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: nicotine Upstream-Contact: Nicotine+ Team Source: https://github.com/nicotine-plus/nicotine-plus/ Files: * Copyright: 2001-2024 Nicotine+ Contributors 2001-2003, 2009 Alexander Kanavin (alexbk/hedonist) 2002 Joe Halliwell 2003 Brett W. Thompson (Zip) Geert Kloosterman (geertk) Alexey Vyskubov Jason Green (SmackleFunky) (va)\*10^3 Gustavo J. A. M. Carneiro 2003-2004, 2007 Ingmar K. Steen (Hyriand) 2003-2009 daelstorm 2006 Vandy Omall (osiris) lee8oi 2006-2017 Adam Cécile (eLvErDe) 2007-2008 gallows 2007-2012 quinox 2010 Julien 2013 SeeSchloss 2015 chzchzchz 2016-2018 Mutnick 2016-2017 Michael Labouebe (gfarmerfr) 2016-2020 Kip Warner (kiplingw) 2019 Vladimir Sedach (vsedach) 2019-2020 gahag 2020 Lene Preuss droserasprout zniavre alekksander 2020-2021 toofar 2020-2024 Han Boetes (hboetes) 2020-2024 Mat (mathiascode) 2021 redactedscribe Mendelson Gusmão (mendelgusmao) Inso-m-niaC Nachtalb 2021-2024 slook License: GPL-3+ Files: data/org.nicotine_plus.Nicotine.appdata.xml* Copyright: 2020-2024 Nicotine+ Contributors License: CC0-1.0 Files: po/*.po Copyright: 2003-2024 Nicotine+ Translators License: GPL-3+ Comment: see TRANSLATORS.md for more information. Files: pynicotine/external/country_codes.py pynicotine/external/ip_ranges.py Copyright: 2001-2024 Hexasoft Development Sdn. Bhd. License: CC-BY-SA-4.0 Files: pynicotine/gtkgui/icons/hicolor/scalable/intl/nplus-flag-*.svg Copyright: 2016-2021 Bowtie AB License: Expat Files: pynicotine/external/tinytag.py Copyright: 2014-2022 Tom Wallroth 2021-2023 Mat (mathiascode) License: Expat License: GPL-3+ 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 3 of the License, or (at your option) any later version. . This package 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, see . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. License: CC0-1.0 To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see . . On Debian systems, the complete text of the CC0 1.0 Universal license can be found in `/usr/share/common-licenses/CC0-1.0`. License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: CC-BY-SA-4.0 Creative Commons Attribution-ShareAlike 4.0 International Public License . By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. . Section 1 - Definitions. . Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. Licensor means the individual(s) or entity(ies) granting rights under this Public License. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. . Section 2 - Scope. . License grant. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: reproduce and Share the Licensed Material, in whole or in part; and produce, reproduce, and Share Adapted Material. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. Term. The term of this Public License is specified in Section 6(a). Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. Downstream recipients. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). Other rights. . Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. Patent and trademark rights are not licensed under this Public License. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. . Section 3 - License Conditions. . Your exercise of the Licensed Rights is expressly made subject to the following conditions. . Attribution. . If You Share the Licensed Material (including in modified form), You must: . retain the following if it is supplied by the Licensor with the Licensed Material: identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); a copyright notice; a notice that refers to this Public License; a notice that refers to the disclaimer of warranties; a URI or hyperlink to the Licensed Material to the extent reasonably practicable; indicate if You modified the Licensed Material and retain an indication of any previous modifications; and indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. ShareAlike. In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. . The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. . Section 4 - Sui Generis Database Rights. . Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: . for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. . Section 5 - Disclaimer of Warranties and Limitation of Liability. . Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. . Section 6 - Term and Termination. . This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: . automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. . Section 7 - Other Terms and Conditions. . The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. . Section 8 - Interpretation. . For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. nicotine-plus-3.3.4/debian/docs000066400000000000000000000001651461625273200164210ustar00rootroot00000000000000AUTHORS.md NEWS.md README.md TRANSLATORS.md doc/DEVELOPING.md doc/SLSKPROTOCOL.md doc/TESTING.md doc/TRANSLATIONS.md nicotine-plus-3.3.4/debian/pybuild.testfiles000066400000000000000000000000241461625273200211340ustar00rootroot00000000000000po pynicotine/tests nicotine-plus-3.3.4/debian/rules000077500000000000000000000010251461625273200166220ustar00rootroot00000000000000#! /usr/bin/make -f # # Nicotine+ # Copyright (C) 2021-2023 Nicotine+ Contributors # Copyright (C) 2016 Kip Warner. Released under the GPLv3 or later. # # Output every command that modifies files on the build system export DH_VERBOSE=1 export DH_OPTIONS=-v # Disable tests requiring internet connection export PYBUILD_TEST_ARGS=-k "not test_update_check" %: dh $@ --with python3 --buildsystem=pybuild # Enforce gzip compression format for increased compatibility with older systems override_dh_builddeb: dh_builddeb -- -Zgzip nicotine-plus-3.3.4/debian/source/000077500000000000000000000000001461625273200170445ustar00rootroot00000000000000nicotine-plus-3.3.4/debian/source/format000066400000000000000000000000141461625273200202520ustar00rootroot000000000000003.0 (quilt) nicotine-plus-3.3.4/debian/source/options000066400000000000000000000000671461625273200204650ustar00rootroot00000000000000compression = "gzip" extend-diff-ignore = "(^|/)(.*)$" nicotine-plus-3.3.4/debian/tests/000077500000000000000000000000001461625273200167065ustar00rootroot00000000000000nicotine-plus-3.3.4/debian/tests/control000066400000000000000000000004651461625273200203160ustar00rootroot00000000000000## DEP-8 continuous integration tests. # Verify that package is installed... Test-Command: nicotine --version | grep Nicotine+ Depends: @ Restrictions: isolation-container # Perform integration and unit tests... Test-Command: pytest-3 -k "not test_update_check" Depends: @ Restrictions: isolation-container nicotine-plus-3.3.4/debian/watch000066400000000000000000000001571461625273200166000ustar00rootroot00000000000000version=4 https://pypi.debian.net/nicotine-plus/nicotine-plus-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) nicotine-plus-3.3.4/doc/000077500000000000000000000000001461625273200150675ustar00rootroot00000000000000nicotine-plus-3.3.4/doc/DEPENDENCIES.md000066400000000000000000000045111461625273200172400ustar00rootroot00000000000000# Dependencies ## Runtime ### Required - [python3](https://www.python.org/) >= 3.6; - [gtk4](https://gtk.org/) >= 4.6.9 or [gtk3](https://gtk.org/) >= 3.22.30 for graphical interface; - [pygobject](https://pygobject.readthedocs.io/) for Python bindings for GTK; ### Recommended - [libadwaita](https://gitlab.gnome.org/GNOME/libadwaita) for Adwaita theme on GNOME (GTK 4). - [gspell](https://gitlab.gnome.org/GNOME/gspell) for spell checking in chat (GTK 3). ## Building - [build](https://build.pypa.io/) for building; - [gettext](https://www.gnu.org/software/gettext/) for generating translations; - [setuptools](https://setuptools.pypa.io/) for packaging. ## Testing - [pycodestyle](https://pycodestyle.pycqa.org/) for code style checks; - [pylint](https://pylint.readthedocs.io/) for linting. ## Installing Dependencies ### GNU/Linux #### Installing Runtime Dependencies - On Debian/Ubuntu-based distributions: ```sh sudo apt install gir1.2-gspell-1 gir1.2-gtk-4.0 gir1.2-adw-1 python3-gi ``` - On Redhat/Fedora-based distributions: ```sh sudo dnf install gspell gtk4 libadwaita python3-gobject ``` - On SUSE-based distributions: ```sh sudo zypper install typelib-1_0-Gspell-1 typelib-1_0-Gtk-4_0 typelib-1_0-Adw-1 python3-gobject ``` #### Installing Build Dependencies - On Debian/Ubuntu-based distributions: ```sh sudo apt install gettext python3-build python3-setuptools ``` - On Redhat/Fedora-based distributions: ```sh sudo dnf install gettext python3-build python3-setuptools ``` - On SUSE-based distributions: ```sh sudo zypper install gettext-runtime python3-build python3-setuptools ``` #### Installing Test Dependencies - On Debian/Ubuntu-based distributions: ```sh sudo apt install pylint3 python3-pycodestyle ``` - On Redhat/Fedora-based distributions: ```sh sudo dnf install pylint python3-pycodestyle ``` - On SUSE-based distributions: ```sh sudo zypper install python3-pylint python3-pycodestyle ``` ### Windows and macOS All required dependencies are included in the [Nicotine+ Windows Installer](DOWNLOADS.md#windows) and [Nicotine+ macOS Installer](DOWNLOADS.md#macos) official release packages, no additional steps are required by a regular user in order to install stable versions of Nicotine+. For developers who need to build packages with dependencies in a development environment, see [PACKAGING.md](PACKAGING.md). nicotine-plus-3.3.4/doc/DEVELOPING.md000066400000000000000000000322631461625273200170530ustar00rootroot00000000000000# Development This document contains important information about Nicotine+ design decisions and development procedures for maintainers, developers and code contributors alike. ## Sections * [Language and Toolkit](#language-and-toolkit) * [Dependencies](#dependencies) * [Profiling](#profiling) * [Debug Logging](#debug-logging) * [Soulseek Protocol](#soulseek-protocol) * [Continuous Integration Testing](#continuous-integration-testing) * [Translations](#translations) * [Releases](#releases) ## Language and Toolkit ### Python Nicotine+ is Python application, originally based on backend code from the PySoulSeek project started in 2001. We only use Python in our codebase, as this allows for running Nicotine+ on almost any system without compiling anything. Developing in a single language is also easier for everyone involved in the project. We aim to support the oldest minor Python 3 version still used by supported releases of distributions and operating systems. The minimum version Nicotine+ currently supports is 3.6. ### GTK Nicotine+ and its predecessors PySoulSeek and Nicotine were originally developed with GNU/Linux in mind, at a time when the official Soulseek client only supported Windows. The Nicotine project opted to use GTK as the GUI toolkit, as opposed to wxPython previously used by PySoulSeek. This decision was made due to various issues encountered in wxPython at the time, such as large memory overhead and long compile/build times. GTK fits our needs, and we have no plans of switching to another toolkit. ## Dependencies Nicotine+ aims to be as portable as possible, providing access to the Soulseek network for people who cannot run the official Soulseek client. Nicotine+ runs on almost any architecture and system available, and has active users on a plethora of different systems. This also means that the introduction of an external software dependency can be an inconvenience for both packagers and users. Modules included in the Python Standard Library should be preferred whenever possible. Avoid introducing "convenient" and "new hotness" dependencies, if the standard library already includes the required functionality to some degree. If a new dependency is necessary, think about the following points: * Prefer pure-Python dependencies, as these are easier to install and more likely to work on less common systems and architectures. * Attempt to find small, self-contained dependencies that can be bundled with the Nicotine+ source code (and give proper attribution). Use common sense though; do not bundle security-critical dependencies, rapidly changing APIs etc. The current dependencies for Nicotine+ are described in [DEPENDENCIES.md](DEPENDENCIES.md). ## Profiling Profiling code changes from time to time is important, to ensure that Nicotine+ performs well and uses fewer system resources. Our goal is to develop a lightweight client that runs well on older hardware, as well as small servers. Due to Python's interpreted nature, addressing performance issues can be a challenge. There is no straightforward way of solving every performance issue, but these points generally help: * Use different data structures and algorithms, e.g. dictionaries and sets for faster membership checks (O(1)) compared to lists (O(n)). * Use existing functionality in the Python Standard Library when available. Parts of the standard library are written in C, and perform better than pure-Python counterparts, especially in hot code paths. * Look for alternative ways of accomplishing a task, and measure the performance. Search engines help a lot here. [py-spy](https://github.com/benfred/py-spy) is an excellent tool for profiling in real time while [running Nicotine+ directly from a local Git folder](TESTING.md#git) and starting with: ```sh py-spy top ./nicotine ``` The console will continuously display a top like view of functions consuming CPU. Press `L` to aggregate by line number, and `R` to reset the view. ## Debug Logging Verbose logging can be enabled to ease debugging. The following log categories are available: * Connections – Logging related to networking ([slskproto.py](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/pynicotine/slskproto.py)) * Messages – Incoming and outgoing protocol messages ([slskmessages.py](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/pynicotine/slskmessages.py)) * Transfers – Logging related to file transfers ([transfers.py](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/pynicotine/transfers.py)) * Miscellaneous – General debug log messages In order to enable debug logging: * Click the ellipsis icon in the bottom right corner of the main window to show the log pane * Right-click the log pane to show the context menu. Enable the log categories you need in the `Log Categories` submenu. If you want to log debug messages to file, `Menu -> Preferences -> Logging -> Log debug messages to file`. Remember to disable debug logging when you no longer need it, since it impacts performance. ## Soulseek Protocol The Soulseek network uses its own protocol for interoperability between clients. The protocol is proprietary, and no official documentation is available. Nicotine+'s protocol implementation is developed by observing the behavior of the official Soulseek NS and SoulseekQt clients. [SLSKPROTOCOL.md](SLSKPROTOCOL.md) contains unofficial documentation maintained by the Nicotine+ team. ## Continuous Integration Testing It is important that all patches pass unit testing. Unfortunately developers make all kinds of changes to their local development environment that can have unintended consequences. This means sometimes tests on the developer's computer pass when they should not, and other times failing when they should not have. To properly validate that things are working, continuous integration (CI) is required. This means compiling, performing local in-tree unit tests, installing through the system package manager, and finally testing the actually installed build artifacts to ensure they do what the user expects them to do. The key thing to remember is that in order to do this properly, this all needs to be done within a realistic end user system that has not been unintentionally modified by a developer. This might mean a chroot container with the help of QEMU and KVM to verify that everything is working as expected. The hermetically sealed test environment validates that the developer's expected steps for, as an example in the case of a library, compilation, linking, unit testing, and post installation testing are actually replicable. There are [different ways](https://wiki.debian.org/qa.debian.org#Other_distributions) of performing CI on different distros. The most common one is via the international [DEP-8](https://dep-team.pages.debian.net/deps/dep8/) standard as used by hundreds of different operating systems. ### Autopkgtest On Debian based distributions, `autopkgtest` implements the DEP-8 standard. To create and use a build image environment for Ubuntu, follow these steps. First install the autopkgtest(1) tools: ```sh sudo apt install autopkgtest ``` Next create the test image, substituting `hirsute` or `amd64` for other releases or architectures: ```sh autopkgtest-buildvm-ubuntu-cloud -r hirsute -a amd64 ``` Test your changes on the host architecture in QEMU with KVM support and 8GB of RAM and four CPUs: ```sh autopkgtest --shell-fail --apt-upgrade . -- \ qemu --ram-size=8192 --cpus=4 --show-boot path_to_build_image.img \ --qemu-options='-enable-kvm' ``` ### Creating Tests Tests are defined in the [pynicotine/tests/](https://github.com/nicotine-plus/nicotine-plus/tree/HEAD/pynicotine/tests/) folder, and should be expanded to cover larger parts of the client when possible. ## Translations Translations are largely handled by [Weblate](https://weblate.org/), but certain manual operations need to be performed at times. ### Adding a Language When Nicotine+ is translated into a new language, the following should be done: * Update the copyright header of the XX.po file: ``` # Copyright (C) 20XX Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. ``` * Remove the `PACKAGE VERSION` value of `Project-Id-Version` in the XX.po file: ``` "Project-Id-Version: \n" ``` * Add the language code to the [po/LINGUAS](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/po/LINGUAS) and [pynicotine/i18n.py](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/pynicotine/i18n.py) files ### Updating Translation Template The translation template file [po/nicotine.pot](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/po/nicotine.pot) should be updated after modifying strings in the codebase. To update the template, run the following command: ```sh python3 data/scripts/update_translation_template.py ``` ### Merging Translation Updates When translations are modified, Weblate creates a pull request with the changes within 24 hours. In order to preserve author information for commits, use the `Create a merge commit` option when merging the pull request. ## Releases Nicotine+ tries to follow [Semantic Versioning](https://semver.org/) when possible. As cited in the specification: > Given a version number MAJOR.MINOR.PATCH, increment the: > > MAJOR version when you make incompatible API changes, > MINOR version when you add functionality in a backwards compatible manner, and > PATCH version when you make backwards compatible bug fixes. > > Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format. Release dates are not set in stone, as Nicotine+ development is done by volunteers in their spare time. However, keep the following points in mind: * Taking too long to release a new Nicotine+ version (e.g. years) will likely result in Nicotine+ no longer functioning due to technological advancements, or being removed from distributions. This previously occurred when support for Python 2 ended in 2020. * We have no means of delivering updates to all users at the same time. Packagers for numerous distributions have to package and test new Nicotine+ releases before they can be delivered to users. * Releasing large updates can make it more difficult to pinpoint eventual issues that were introduced since the previous release. ### Creating a Nicotine+ Release The following is a step-by-step guide detailing what a Nicotine+ maintainer should do when releasing a new version of Nicotine+. 1. Ensure that Nicotine+ launches and works well on at least these operating systems: * Windows * macOS * Ubuntu 18.04 (oldest supported GTK 3 and Python 3 versions) * Ubuntu 22.04 (oldest supported GTK 4 version) * Latest Ubuntu/Fedora release 2. Update the translation template by running ``` python3 data/scripts/update_translation_template.py ``` 3. Ensure that the source distribution (sdist) includes all necessary files to run Nicotine+. A source distribution can be generated by running ``` python3 -m build --sdist ``` 4. Add a new release note entry to NEWS.md. Release notes should contain a user-readable list of noteworthy changes since the last release (not a list of commits), as well as a list of closed issues on GitHub. 5. Increase the Nicotine+ version number / add new version entries in the master branch. Nicotine+ uses [Semantic Versioning](https://semver.org/). The following files need to be modified: * [NEWS.md](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/NEWS.md) * [README.md](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/README.md) * [data/org.nicotine_plus.Nicotine.appdata.xml.in](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/data/org.nicotine_plus.Nicotine.appdata.xml.in) * [debian/changelog](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/debian/changelog) * [pynicotine/\_\_init\_\_.py](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/pynicotine/__init__.py) 6. Ensure that the Windows and macOS packages generated by [GitHub Actions](https://github.com/nicotine-plus/nicotine-plus/actions) still work. 7. Create a new GitHub release. * Both the release tag and title should use the format "x.x.x", e.g. *3.2.1*. * Include the release notes from NEWS.md as the description. * Download the Windows and macOS packages previously generated by GitHub Actions to `packaging/release/` and run ``` python3 packaging/release/generate_sha256_checksums.py ``` * Attach the resulting files to the new release. 8. Generate a stable PPA release for Ubuntu / Debian. First, ensure that the [repository mirror](https://code.launchpad.net/~nicotine-team/nicotine+/+git/nicotine+) on Launchpad is up to date. Once it is, update the contents of the [stable build recipe](https://code.launchpad.net/~nicotine-team/+recipe/nicotine+-stable), replacing the previous commit hash with the one used for the release you tagged on GitHub. Then, generate stable builds by pressing *Request build(s)*. 9. Create a new release on [PyPI](https://pypi.org/project/nicotine-plus/) by running ``` python3 packaging/pypi/upload_pypi_release.py ``` 10. Create a new release on [Flathub](https://github.com/flathub/org.nicotine_plus.Nicotine). 11. Create a new release on the [Snap Store](https://snapcraft.io/nicotine-plus). nicotine-plus-3.3.4/doc/DOWNLOADS.md000066400000000000000000000155271461625273200167550ustar00rootroot00000000000000# Downloads Download the current stable version of Nicotine+ for your operating system. For the release notes, see [NEWS.md](../NEWS.md). If you want to download the latest unstable build and help test Nicotine+, see [TESTING.md](TESTING.md). ## GNU/Linux, *BSD, Solaris ### Operating System Packages If you are using any of the operating systems listed, you can install Nicotine+ using the package manager. | Operating System | Package Name | |-----------------------------------------------------------------------------------------|---------------------| | [Alpine Linux Edge](https://pkgs.alpinelinux.org/packages?name=nicotine-plus) | `nicotine-plus` | | [Arch Linux](https://archlinux.org/packages/extra/any/nicotine+/) | `nicotine+` | | [Debian Unstable/Testing](https://tracker.debian.org/pkg/nicotine) | `nicotine` | | [Fedora](https://packages.fedoraproject.org/pkgs/nicotine+/nicotine+/) | `nicotine+` | | [Gentoo](https://packages.gentoo.org/packages/net-p2p/nicotine+) | `net-p2p/nicotine+` | | [Manjaro](https://software.manjaro.org/package/nicotine+) | `nicotine+` | | [NixOS](https://search.nixos.org/packages?show=nicotine-plus) | `nicotine-plus` | | [OpenBSD](https://openports.pl/path/net/nicotine-plus) | `net/nicotine-plus` | | [Parabola](https://www.parabola.nu/packages/extra/x86_64/nicotine+/) | `nicotine+` | | [T2 SDE](https://t2sde.org/packages/nicotine-plus) | `nicotine-plus` | | [Void Linux](https://github.com/void-linux/void-packages/tree/master/srcpkgs/nicotine+) | `nicotine+` | ### Universal Packages (GNU/Linux) Packages listed below can be installed on different GNU/Linux distributions. | Format | Package Name | |----------------------------------------------------------------------------------|------------------------------| | [Flatpak](https://flathub.org/apps/details/org.nicotine_plus.Nicotine) | `org.nicotine_plus.Nicotine` | | [Snap](https://snapcraft.io/nicotine-plus) | `nicotine-plus` | ### PPA (Ubuntu/Debian) To use [stable packages](https://launchpad.net/~nicotine-team/+archive/ubuntu/stable) on Ubuntu and Debian, add the *nicotine-team/stable* PPA repository. On Ubuntu and distributions based on it (e.g. Linux Mint, elementary OS, Pop!_OS, various Ubuntu flavors), run the following: ```sh sudo add-apt-repository ppa:nicotine-team/stable sudo apt update; sudo apt install nicotine ``` On Debian and distributions based on it (e.g. Devuan, Peppermint OS), run the following: ```sh sudo apt update; sudo apt install python3-launchpadlib software-properties-common sudo add-apt-repository 'deb https://ppa.launchpadcontent.net/nicotine-team/stable/ubuntu jammy main' sudo apt update; sudo apt install nicotine ``` If you prefer to install a .deb package directly, you can [download one here](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/debian-package.zip). Unlike the repository installation method, you need to download and install Nicotine+ from the link above every time you want to update to the latest version. ### PyPi (GNU/Linux, *BSD, Solaris) If no package is available for your operating system, you can install Nicotine+ from [PyPi](https://pypi.org/project/nicotine-plus/). Ensure the [runtime dependencies](DEPENDENCIES.md) are installed, and run the following: ```sh pip3 install nicotine-plus ``` Keep in mind that Nicotine+ will not update automatically. When a new release is available, run the following: ```sh pip3 install --upgrade nicotine-plus ``` ## Windows ### Official Release Stable installers are available for download. Installing Nicotine+ requires administrator privileges. *NOTE: The installer format has changed since Nicotine+ 3.2.0. If you are upgrading from Nicotine+ 3.1.1 or earlier, please uninstall Nicotine+ first (this will not remove your existing settings).* - [Download Windows Installer](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/windows-x86_64-installer.zip) [[SHA256](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/windows-x86_64-installer.zip.sha256)] for Windows 10 or later Standalone executables are also available. They can be run from any folder and do not require installation or administrator privileges. Configuration files are stored in `C:\Users\USERNAME\AppData\Roaming\nicotine`. - [Download Windows Standalone Package](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/windows-x86_64-package.zip) [[SHA256](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/windows-x86_64-package.zip.sha256)] for Windows 10 or later ### Package Managers If you are using any of the package managers listed, you can install Nicotine+ using them. | Package Manager | Package Name | |-----------------------------------------------------------------------------------------|------------------------| | [Chocolatey](https://community.chocolatey.org/packages/nicotine-plus) | `nicotine-plus` | | [Scoop](https://github.com/ScoopInstaller/Extras/blob/master/bucket/nicotine-plus.json) | `extras/nicotine-plus` | ## macOS ### Official Release *NOTE: You have to follow [these instructions](https://support.apple.com/guide/mac-help/open-a-mac-app-from-an-unidentified-developer-mh40616/mac) the first time you open Nicotine+ on macOS.* - [Download macOS Intel Installer](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/macos-x86_64-installer.zip) [[SHA256](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/macos-x86_64-installer.zip.sha256)] for macOS 12 Monterey or later - [Download macOS Apple Silicon Installer](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/macos-arm64-installer.zip) [[SHA256](https://github.com/nicotine-plus/nicotine-plus/releases/latest/download/macos-arm64-installer.zip.sha256)] for macOS 14 Sonoma or later ### Package Managers If you are using any of the package managers listed, you can install Nicotine+ using them. | Package Manager | Package Name | |---------------------------------------------------------------------|-----------------| | [Homebrew Formulae](https://formulae.brew.sh/formula/nicotine-plus) | `nicotine-plus` | | [MacPorts](https://ports.macports.org/port/nicotine-plus/) | `nicotine-plus` | nicotine-plus-3.3.4/doc/PACKAGING.md000066400000000000000000000060421461625273200166770ustar00rootroot00000000000000# Packaging ## Note for Packagers This is a special note for distribution packagers: There is a standard feature of GitHub which enables you to be notified of new package releases: In the top right bar there is the *Watch* option, which has the suboption to be notified of *releases only*. Please subscribe so you won't miss any of our new releases. Thanks! ## Dependencies Dependencies for Nicotine+ are described in [DEPENDENCIES.md](DEPENDENCIES.md). ## GNU/Linux Instructions ### Building a Source Distribution To build a source distribution archive `.tar.gz` from the Git repository, run: ```sh python3 -m build --sdist ``` The source distribution archive will be located in the `dist/` subfolder. ### Building a Debian Package Unstable and stable PPAs are already provided for pre-compiled packages. However, if you wish to build your own package, perform the following steps. Start by installing the build dependencies: ```sh sudo apt build-dep . ``` Generate the "upstream" tarball: ```sh python3 -m build --sdist mk-origtargz dist/nicotine-plus-*.tar.gz ``` Build the Debian package: ```sh debuild -sa -us -uc ``` ## Windows GitHub Actions currently builds Nicotine+ installers for Windows. However, the following instructions may be useful if you wish to generate an installer on your own machine. ### Building a Frozen Application with cx_Freeze Follow the instructions on installing MSYS2: [https://pygobject.readthedocs.io/en/latest/getting_started.html#windows-logo-windows](https://pygobject.readthedocs.io/en/latest/getting_started.html#windows-logo-windows) Clone the `nicotine-plus` Git repository: ```sh pacman -S git git clone https://github.com/nicotine-plus/nicotine-plus cd nicotine-plus ``` Install dependencies: ```sh export NICOTINE_GTK_VERSION=4 export NICOTINE_USE_LIBADWAITA=1 export ARCH=x86_64 pacman --noconfirm -S --needed mingw-w64-$ARCH-python python3 packaging/windows/dependencies.py ``` Build the application: ```sh python3 packaging/windows/setup.py bdist_msi ``` When the application has finished building, it is located in the `packaging\windows\build\` subfolder. If you want to run the application, you can launch the executable `packaging\windows\build\package\Nicotine+\Nicotine+.exe`. ## macOS GitHub Actions currently builds Nicotine+ packages for macOS. However, the following instructions may be useful if you wish to generate a package on your own machine. ### Building a Frozen Application with cx_Freeze Follow the instructions on installing Homebrew: [https://brew.sh/](https://brew.sh/) Clone the `nicotine-plus` Git repository: ```sh git clone https://github.com/nicotine-plus/nicotine-plus cd nicotine-plus ``` Install dependencies: ```sh export NICOTINE_GTK_VERSION=4 export NICOTINE_USE_LIBADWAITA=1 brew install python@3.11 python3.11 -m venv venv venv/bin/python3 packaging/macos/dependencies.py ``` Build the application: ```sh venv/bin/python3 packaging/macos/setup.py bdist_dmg ``` When the application has finished building, it is located in the `packaging/macos/build/` subfolder as a .dmg file. nicotine-plus-3.3.4/doc/SLSKPROTOCOL.md000066400000000000000000002347631461625273200173660ustar00rootroot00000000000000# Soulseek Protocol Documentation Last updated on March 16, 2024 Since the official Soulseek client and server is proprietary software, this documentation has been compiled thanks to years of reverse engineering efforts. To preserve the health of the Soulseek network, please do not modify or extend the protocol in ways that negatively impact the network. If you find any inconsistencies, errors or omissions in the documentation, please report them. ## Sections - [Packing](#packing) - [Constants](#constants) - [Server Messages](#server-messages) - [Peer Init Messages](#peer-init-messages) - [Peer Messages](#peer-messages) - [File Messages](#file-messages) - [Distributed Messages](#distributed-messages) # Packing ### 8-bit Integer | Number | |--------| | 1 Byte | ### 16-bit Integer | Number | |-------------------------| | 2 Bytes (little-endian) | ### 32-bit Integer | Number | |-------------------------| | 4 Bytes (little-endian) | ### 64-bit Integer | Number | |-------------------------| | 8 Bytes (little-endian) | ### Bool | Number | |-----------------| | 1 Byte (0 or 1) | ### String | Length of String | String | |------------------|--------| | uint32 | bytes | # Constants ### Connection Types | Type | Connection | |------|---------------------| | P | Peer To Peer | | F | File Transfer | | D | Distributed Network | ### Login Failure Reasons | Reason | Description | |-----------------|----------------------------------------------------------------------------------| | INVALIDUSERNAME | Username is longer than 30 characters or contains invalid characters (non-ASCII) | | INVALIDPASS | Password for existing user is incorrect | | INVALIDVERSION | Client version is outdated | ### User Status Codes | Code | Status | |------|---------| | 0 | Offline | | 1 | Away | | 2 | Online | ### Upload Permissions | Code | Status | |------|-----------------| | 0 | No One | | 1 | Everyone | | 2 | Users in List | [ 3 | Permitted Users | ### Transfer Directions | Code | Direction | |------|--------------------| | 0 | Download from Peer | | 1 | Upload to Peer | ### Transfer Rejection Reasons #### In Use | String | Comments | | --------------------- | ------------------------------------------- | | Banned | SoulseekQt uses 'File not shared.' instead | | Cancelled | | | Complete | | | File not shared. | Note: Ends with a dot | | File read error. | Note: Ends with a dot | | Pending shutdown. | Note: Ends with a dot | | Queued | | | Too many files | | | Too many megabytes | | #### Deprecated | String | Comments | | ---------------------------------- | ----------------------------------------------------------- | | Blocked country | Exclusive to Nicotine+, no longer used in Nicotine+ >=3.2.0 | | Disallowed extension | Sent by Soulseek NS for filtered extensions | | File not shared | Exclusive to Nicotine+, no longer used in Nicotine+ >=3.1.1 | | Remote file error | Sent by Soulseek NS in response to legacy download requests | | User limit of x megabytes exceeded | Exclusive to Nicotine+, no longer used in Nicotine+ >=3.1.1 | | User limit of x files exceeded | Exclusive to Nicotine+, no longer used in Nicotine+ >=3.1.1 | ### File Attribute Types | Code | Attribute (unit) | |------|--------------------| | 0 | Bitrate (kbps) | | 1 | Duration (seconds) | | 2 | VBR (0 or 1) | | 3 | Encoder (unused) | | 4 | Sample Rate (Hz) | | 5 | Bit Depth (bits) | #### File Attribute Combinations These combinations are actively used by clients. Certain attributes can be missing if a file does not provide them. - Soulseek NS, SoulseekQt (2015-2-21 and earlier), Nicotine+ (lossy formats), Museek+, SoulSeeX, slskd (lossy formats): - {0: *bitrate*, 1: *duration*, 2: *VBR*} - SoulseekQt (2015-6-12 and later): - {0: *bitrate*, 1: *duration*} (MP3, OGG, WMA, M4A) - {1: *duration*, 4: *sample rate*, 5: *bit depth*} (FLAC, WAV, APE) - {0: *bitrate*, 1: *duration*, 4: *sample rate*, 5: *bit depth*} (WV) - Nicotine+ (lossless formats), slskd (lossless formats): - {1: *duration*, 4: *sample rate*, 5: *bit depth*} # Server Messages | Send | Receive | |----------------|---------------------| | Send to Server | Receive from Server | Server messages are used by clients to interface with the server. In Nicotine+, these messages are defined in slskmessages.py. If you want a Soulseek server, check out [Soulfind](https://github.com/seeschloss/soulfind). Soulfind is obviously not exactly the same as the official proprietary Soulseek server, but it handles the protocol well enough (and can be modified). ### Server Message Format | Message Length | Code | Message Contents | |----------------|--------|------------------| | uint32 | uint32 | ... | ### Server Message Codes | Code | Message | Status | |------|---------------------------------------------------|------------| | 1 | [Login](#server-code-1) | | | 2 | [Set Listen Port](#server-code-2) | | | 3 | [Get Peer Address](#server-code-3) | | | 5 | [Watch User](#server-code-5) | | | 6 | [Unwatch User](#server-code-6) | | | 7 | [Get User Status](#server-code-7) | | | 13 | [Say in Chat Room](#server-code-13) | | | 14 | [Join Room](#server-code-14) | | | 15 | [Leave Room](#server-code-15) | | | 16 | [User Joined Room](#server-code-16) | | | 17 | [User Left Room](#server-code-17) | | | 18 | [Connect To Peer](#server-code-18) | | | 22 | [Private Messages](#server-code-22) | | | 23 | [Acknowledge Private Message](#server-code-23) | | | 25 | [File Search Room](#server-code-25) | Obsolete | | 26 | [File Search](#server-code-26) | | | 28 | [Set Online Status](#server-code-28) | | | 32 | [Ping](#server-code-32) | | | 33 | [Send Connect Token](#server-code-33) | Obsolete | | 34 | [Send Download Speed](#server-code-34) | Obsolete | | 35 | [Shared Folders & Files](#server-code-35) | | | 36 | [Get User Stats](#server-code-36) | | | 40 | [Queued Downloads](#server-code-40) | Obsolete | | 41 | [Kicked from Server](#server-code-41) | | | 42 | [User Search](#server-code-42) | | | 51 | [Interest Add](#server-code-51) | Deprecated | | 52 | [Interest Remove](#server-code-52) | Deprecated | | 54 | [Get Recommendations](#server-code-54) | Deprecated | | 56 | [Get Global Recommendations](#server-code-56) | Deprecated | | 57 | [Get User Interests](#server-code-57) | Deprecated | | 58 | [Admin Command](#server-code-58) | Obsolete | | 60 | [Place In Line Response](#server-code-60) | Obsolete | | 62 | [Room Added](#server-code-62) | Obsolete | | 63 | [Room Removed](#server-code-63) | Obsolete | | 64 | [Room List](#server-code-64) | | | 65 | [Exact File Search](#server-code-65) | Obsolete | | 66 | [Global/Admin Message](#server-code-66) | | | 67 | [Global User List](#server-code-67) | Obsolete | | 68 | [Tunneled Message](#server-code-68) | Obsolete | | 69 | [Privileged Users](#server-code-69) | | | 71 | [Have No Parents](#server-code-71) | | | 73 | [Parent's IP](#server-code-73) | Deprecated | | 83 | [Parent Min Speed](#server-code-83) | | | 84 | [Parent Speed Ratio](#server-code-84) | | | 86 | [Parent Inactivity Timeout](#server-code-86) | Obsolete | | 87 | [Search Inactivity Timeout](#server-code-87) | Obsolete | | 88 | [Minimum Parents In Cache](#server-code-88) | Obsolete | | 90 | [Distributed Ping Interval](#server-code-90) | Obsolete | | 91 | [Add Privileged User](#server-code-91) | Obsolete | | 92 | [Check Privileges](#server-code-92) | | | 93 | [Embedded Message](#server-code-93) | | | 100 | [Accept Children](#server-code-100) | | | 102 | [Possible Parents](#server-code-102) | | | 103 | [Wishlist Search](#server-code-103) | | | 104 | [Wishlist Interval](#server-code-104) | | | 110 | [Get Similar Users](#server-code-110) | Deprecated | | 111 | [Get Item Recommendations](#server-code-111) | Deprecated | | 112 | [Get Item Similar Users](#server-code-112) | Deprecated | | 113 | [Room Tickers](#server-code-113) | | | 114 | [Room Ticker Add](#server-code-114) | | | 115 | [Room Ticker Remove](#server-code-115) | | | 116 | [Set Room Ticker](#server-code-116) | | | 117 | [Hated Interest Add](#server-code-117) | Deprecated | | 118 | [Hated Interest Remove](#server-code-118) | Deprecated | | 120 | [Room Search](#server-code-120) | | | 121 | [Send Upload Speed](#server-code-121) | | | 122 | [User Privileges](#server-code-122) | Deprecated | | 123 | [Give Privileges](#server-code-123) | | | 124 | [Notify Privileges](#server-code-124) | Deprecated | | 125 | [Acknowledge Notify Privileges](#server-code-125) | Deprecated | | 126 | [Branch Level](#server-code-126) | | | 127 | [Branch Root](#server-code-127) | | | 129 | [Child Depth](#server-code-129) | Deprecated | | 130 | [Reset Distributed](#server-code-130) | | | 133 | [Private Room Users](#server-code-133) | | | 134 | [Private Room Add User](#server-code-134) | | | 135 | [Private Room Remove User](#server-code-135) | | | 136 | [Private Room Drop Membership](#server-code-136) | | | 137 | [Private Room Drop Ownership](#server-code-137) | | | 138 | [Private Room Unknown](#server-code-138) | Obsolete | | 139 | [Private Room Added](#server-code-139) | | | 140 | [Private Room Removed](#server-code-140) | | | 141 | [Private Room Toggle](#server-code-141) | | | 142 | [New Password](#server-code-142) | | | 143 | [Private Room Add Operator](#server-code-143) | | | 144 | [Private Room Remove Operator](#server-code-144) | | | 145 | [Private Room Operator Added](#server-code-145) | | | 146 | [Private Room Operator Removed](#server-code-146) | | | 148 | [Private Room Owned](#server-code-148) | | | 149 | [Message Users](#server-code-149) | | | 150 | [Join Global Room](#server-code-150) | Deprecated | | 151 | [Leave Global Room](#server-code-151) | Deprecated | | 152 | [Global Room Message](#server-code-152) | Deprecated | | 153 | [Related Searches](#server-code-153) | Obsolete | | 160 | [Excluded Search Phrases](#server-code-160) | | | 1001 | [Can't Connect To Peer](#server-code-1001) | | | 1003 | [Can't Create Room](#server-code-1003) | | ## Server Code 1 ### Login We send this to the server right after the connection has been established. Server responds with the greeting message. ### Sending Login Example *Message:* | Data | Message Length | Message Code | Username Length | Username | Password Length | Password | |-----------|----------------|--------------|-----------------|-------------------------|-----------------|-------------------------| | **Human** | 72 | 1 | 8 | username | 8 | password | | **Hex** | 48 00 00 00 | 01 00 00 00 | 08 00 00 00 | 75 73 65 72 6e 61 6d 65 | 08 00 00 00 | 70 61 73 73 77 6f 72 64 | *... continued:* | Data | Version | Hash Length | Hash | Minor Version | |-----------|-------------|-------------|-------------------------------------------------------------------------------------------------|---------------| | **Human** | 160 | 32 | d51c9a7e9353746a6020f9602d452929 | 1 | | **Hex** | a0 00 00 00 | 20 00 00 00 | 64 35 31 63 39 61 37 65 39 33 35 33 37 34 36 61 36 30 32 30 66 39 36 30 32 64 34 35 32 39 32 39 | 01 00 00 00 | *Message as a Hex Stream:* - **48 00 00 00 01 00 00 00 08 00 00 00 75 73 65 72 6e 61 6d 65 08 00 00 00 70 61 73 73 77 6f 72 64 a0 00 00 00 20 00 00 00 64 35 31 63 39 61 37 65 39 33 35 33 37 34 36 61 36 30 32 30 66 39 36 30 32 64 34 35 32 39 32 39 01 00 00 00** ### Data Order - Send Login Attempt 1. **string** username 2. **string** password *A non-empty string is required* 3. **uint32** version number **160** for Nicotine+ 4. **string** hash *MD5 hex digest of concatenated username & password* 5. **uint32** minor version **0x13000000** for 157 ns 13e, **0x11000000** for 157 ns 13c - Receive Login Success 1. **bool** success **1** 2. **string** greet *MOTD string* 3. **uint32** Your IP Address 4. **string** hash *MD5 hex digest of the password string* 5. **bool** is supporter *If we have donated to Soulseek at some point in the past* - Receive Login Failure 1. **bool** failure **0** 2. **string** reason *see [Login Failure Reasons](#login-failure-reasons)* ## Server Code 2 ### SetWaitPort We send this to the server to indicate the port number that we listen on (2234 by default). If this value is set to zero, or the message is not sent upon login (which defaults the listen port to 0), remote clients handling a [ConnectToPeer](#server-code-18) message will fail to properly purge the request. Confirmed in SoulseekQt 2020.3.12, but probably impacts most or all other versions. ### Data Order - Send 1. **uint32** port 2. **uint32** unknown *(SoulseekQt uses value 1)* 3. **uint32** obfuscated port - Receive - *No Message* ## Server Code 3 ### GetPeerAddress We send this to the server to ask for a peer's address (IP address and port), given the peer's username. ### Data Order - Send 1. **string** username - Receive 1. **string** username 2. **ip** ip 3. **uint32** port 4. **uint32** unknown *(SoulseekQt uses value 1)* 5. **uint16** obfuscated port ## Server Code 5 ### WatchUser Used to be kept updated about a user's stats. When a user's stats have changed, the server sends a [GetUserStats](#server-code-36) response message with the new user stats. ### Data Order - Send 1. **string** username - Receive 1. **string** username 2. **bool** exists - If exists is true 1. **uint32** status *see [User Status Codes](#user-status-codes)* 2. **uint32** avgspeed 3. **uint64** uploadnum *Number of uploaded files. The value changes when sending a [SendUploadSpeed](#server-code-121) server message, and is likely used by the server to calculate the average speed.* 4. **uint32** files 5. **uint32** dirs - If status is away/online 1. **string** countrycode *Uppercase country code* ## Server Code 6 ### UnwatchUser Used when we no longer want to be kept updated about a user's stats. ### Data Order - Send 1. **string** username - Receive - *No Message* ## Server Code 7 ### GetUserStatus The server tells us if a user has gone away or has returned. ### Data Order - Send 1. **string** username - Receive 1. **string** username 2. **uint32** status *see [User Status Codes](#user-status-codes)* 3. **bool** privileged ## Server Code 13 ### SayChatroom Either we want to say something in the chatroom, or someone else did. ### Data Order - Send 1. **string** room 2. **string** message - Receive 1. **string** room 2. **string** username 3. **string** message ## Server Code 14 ### JoinRoom We send this message to the server when we want to join a room. If the room doesn't exist, it is created. Server responds with this message when we join a room. Contains users list with data on everyone. ### Data Order - Send 1. **string** room 2. **uint32** private *If the room doesn't exist, should the new room be private?* - Receive 1. **string** room 2. **uint32** number of users in room *For private rooms, also contain owner and operators* 3. Iterate the number of users 1. **string** username 4. **uint32** number of statuses 5. Iterate the number of statuses 1. **uint32** status 6. **uint32** number of user stats 7. Iterate the number of user stats 1. **uint32** avgspeed 2. **uint64** uploadnum 3. **uint32** files 4. **uint32** dirs 8. **uint32** number of slotsfree 9. Iterate the number of slotsfree 1. **uint32** slotsfree 10. **uint32** number of user countries 11. Iterate the number of user countries 1. **string** countrycode *Uppercase country code* 12. **string** owner **If private room** 13. **uint32** number of operators in room *If private room* 14. Iterate the number of operators 1. **string** operator ## Server Code 15 ### LeaveRoom We send this to the server when we want to leave a room. ### Data Order - Send 1. **string** room - Receive 1. **string** room ## Server Code 16 ### UserJoinedRoom The server tells us someone has just joined a room we're in. ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **string** username 3. **uint32** status 4. **uint32** avgspeed 5. **uint64** uploadnum 6. **uint32** files 7. **uint32** dirs 8. **uint32** slotsfree 9. **string** countrycode *Uppercase country code* ## Server Code 17 ### UserLeftRoom The server tells us someone has just left a room we're in. ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **string** username ## Server Code 18 ### ConnectToPeer Either we ask server to tell someone else we want to establish a connection with them, or server tells us someone wants to connect with us. Used when the side that wants a connection can't establish it, and tries to go the other way around (direct connection has failed). See also: [Peer Connection Message Order](#modern-peer-connection-message-order) ### Data Order - Send 1. **uint32** token 2. **string** username 3. **string** type **P, F or D** *see [Connection Types](#connection-types)* - Receive 1. **string** username 2. **string** type **P, F or D** *see [Connection Types](#connection-types)* 3. **ip** ip 4. **uint32** port 5. **uint32** token *Use this token for [PierceFireWall](#peer-init-code-0)* 6. **bool** privileged 7. **uint32** unknown *(SoulseekQt uses value 1)* 8. **uint32** obfuscated port ## Server Code 22 ### MessageUser Chat phrase sent to someone or received by us in private. ### Data Order - Send 1. **string** username 2. **string** message - Receive 1. **uint32** ID 2. **uint32** timestamp 3. **string** username 4. **string** message 5. **bool** new message **1** if message is new, **0** if message is re-sent (e.g. if recipient was offline) ## Server Code 23 ### MessageAcked We send this to the server to confirm that we received a private message. If we don't send it, the server will keep sending the chat phrase to us. ### Data Order - Send 1. **uint32** message ID - Receive - *No Message* ## Server Code 25 ### FileSearchRoom **OBSOLETE, use [RoomSearch](#server-code-120) server message** We send this to the server when we search for something in a room. ### Data Order - Send 1. **uint32** token 2. **uint32** room id 3. **string** search query - Receive - *No Message* ## Server Code 26 ### FileSearch We send this to the server when we search for something. Alternatively, the server sends this message outside the distributed network to tell us that someone is searching for something, currently used for [UserSearch](#server-code-42) and [RoomSearch](#server-code-120) requests. The token is a number generated by the client and is used to track the search results. ### Data Order - Send 1. **uint32** token 2. **string** search query - Receive 1. **string** username 2. **uint32** token 3. **string** search query ## Server Code 28 ### SetStatus We send our new status to the server. Status is a way to define whether we're available (online) or busy (away). *1 = Away 2 = Online* ### Data Order - Send 1. **int32** status *see [User Status Codes](#user-status-codes)* - Receive - *No Message* ## Server Code 32 ### ServerPing We send this to the server at most once per minute to ensure the connection stays alive. Nicotine+ uses TCP keepalive instead. ### Data Order - Send - Empty Message - Receive - *No Message* ## Server Code 33 ### SendConnectToken **OBSOLETE, no longer used** ### Data Order - Send 1. **string** username 2. **uint32** token - Receive 1. **string** username 2. **uint32** token ## Server Code 34 ### SendDownloadSpeed **OBSOLETE, use [SendUploadSpeed](#server-code-121) server message** We used to send this after a finished download to let the server update the speed statistics for a user. ### Data Order - Send 1. **string** username 2. **uint32** speed - Receive - *No Message* ## Server Code 35 ### SharedFoldersFiles We send this to server to indicate the number of folder and files that we share. ### Data Order - Send 1. **uint32** dirs 2. **uint32** files - Receive - *No Message* ## Server Code 36 ### GetUserStats The server sends this to indicate a change in a user's statistics, if we've requested to watch the user in [WatchUser](#server-code-5) previously. A user's stats can also be requested by sending a [GetUserStats](#server-code-36) message to the server, but [WatchUser](#server-code-5) should be used instead. ### Data Order - Send 1. **string** username - Receive 1. **string** username 2. **uint32** avgspeed 3. **uint64** uploadnum 4. **uint32** files 5. **uint32** dirs ## Server Code 40 ### QueuedDownloads **OBSOLETE, no longer sent by the server** The server sends this to indicate if someone has download slots available or not. ### Data Order - Send - *No Message* - Receive 1. **string** username 2. **bool** slotsfree *Can immediately download* ## Server Code 41 ### Relogged The server sends this if someone else logged in under our nickname, and then disconnects us. ### Data Order - Send - *No Message* - Receive - Empty Message ## Server Code 42 ### UserSearch We send this to the server when we search a specific user's shares. The token is a number generated by the client and is used to track the search results. ### Data Order - Send 1. **string** username 2. **uint32** token 3. **string** search query - Receive - *No Message* ## Server Code 51 ### AddThingILike **DEPRECATED, used in Soulseek NS but not SoulseekQt** We send this to the server when we add an item to our likes list. ### Data Order - Send 1. **string** item - Receive - *No Message* ## Server Code 52 ### RemoveThingILike **DEPRECATED, used in Soulseek NS but not SoulseekQt** We send this to the server when we remove an item from our likes list. ### Data Order - Send 1. **string** item - Receive - *No Message* ## Server Code 54 ### Recommendations **DEPRECATED, used in Soulseek NS but not SoulseekQt** The server sends us a list of personal recommendations and a number for each. ### Data Order - Send - Empty Message - Receive 1. **uint32** number of total recommendations 2. Iterate for number of total recommendations 1. **string** recommendation 2. **int32** number of recommendations this recommendation has 3. **uint32** number of total unrecommendations 4. Iterate for number of total unrecommendations 1. **string** unrecommendation 2. **int32** number of unrecommendations this unrecommendation has *(negative)* ## Server Code 56 ### GlobalRecommendations **DEPRECATED, used in Soulseek NS but not SoulseekQt** The server sends us a list of global recommendations and a number for each. ### Data Order - Send - Empty Message - Receive 1. **uint32** number of total recommendations 2. Iterate for number of total recommendations 1. **string** recommendation 2. **int32** number of recommendations this recommendation has 3. **uint32** number of total unrecommendations 4. Iterate for number of total unrecommendations 1. **string** unrecommendation 2. **int32** number of unrecommendations this unrecommendation has *(negative)* ## Server Code 57 ### UserInterests **DEPRECATED, used in Soulseek NS but not SoulseekQt** We ask the server for a user's liked and hated interests. The server responds with a list of interests. ### Data Order - Send 1. **string** username - Receive 1. **string** username 2. **uint32** number of liked interests 3. Iterate for number of liked interests 1. **string** interest 4. **uint32** number of hated interests 5. Iterate for number of hated interests 1. **string** interest ## Server Code 58 ### AdminCommand **OBSOLETE** We send this to the server to run an admin command (e.g. to ban or silence a user) if we have admin status on the server. ### Data Order - Send 1. **string** command 2. **uint32** number of command arguments 3. Iterate for number of command arguments 1. **string** command argument - Receive - *No Message* ## Server Code 60 ### PlaceInLineResponse **OBSOLETE, use [PlaceInQueueResponse](#peer-code-44) peer message** The server sends this to indicate change in place in queue while we're waiting for files from another peer. ### Data Order - Send 1. **string** username 2. **uint32** req 3. **uint32** place - Receive 1. **string** username 2. **uint32** req 3. **uint32** place ## Server Code 62 ### RoomAdded **OBSOLETE, no longer sent by the server** The server tells us a new room has been added. ### Data Order - Send - *No Message* - Receive 1. **string** room ## Server Code 63 ### RoomRemoved **OBSOLETE, no longer sent by the server** The server tells us a room has been removed. ### Data Order - Send - *No Message* - Receive 1. **string** room ## Server Code 64 ### RoomList The server tells us a list of rooms and the number of users in them. When connecting to the server, the server only sends us rooms with at least 5 users. A few select rooms are also excluded, such as nicotine and The Lobby. Requesting the room list yields a response containing the missing rooms. ### Data Order - Send - Empty Message - Receive 1. **uint32** number of rooms 2. Iterate for number of rooms 1. **string** room 3. **uint32** number of rooms 4. Iterate for number of rooms 1. **uint32** number of users in room 1. **uint32** number of owned private rooms 2. Iterate for number of owned private rooms 1. **string** owned private room 3. **uint32** number of owned private rooms 4. Iterate for number of owned private rooms 1. **uint32** number of users in owned private room 1. **uint32** number of private rooms (except owned) 2. Iterate for number of private rooms (except owned) 1. **string** private room 3. **uint32** number of private rooms (except owned) 4. Iterate for number of private rooms (except owned) 1. **uint32** number of users in private rooms (except owned) 1. **uint32** number of operated private rooms 2. Iterate for number of operated private rooms 1. **string** operated private room ## Server Code 65 ### ExactFileSearch **OBSOLETE, no results even with official client** We send this to search for an exact file name and folder, to find other sources. ### Data Order - Send 1. **uint32** token 2. **string** filename 3. **string** path 4. **uint64** filesize 5. **uint32** checksum 6. **uint8** unknown - Receive 1. **string** username 2. **uint32** token 3. **string** filename 4. **string** path 5. **uint64** filesize 6. **uint32** checksum ## Server Code 66 ### AdminMessage A global message from the server admin has arrived. ### Data Order - Send - *No Message* - Receive 1. **string** message ## Server Code 67 ### GlobalUserList **OBSOLETE, no longer used** We send this to get a global list of all users online. ### Data Order - Send - Empty Message - Receive 1. **uint32** number of users in room 2. Iterate the number of users 1. **string** username 3. **uint32** number of userdata 4. Iterate the number of users 1. **uint32** status 5. **uint32** number of userdata 6. Iterate the userdata 1. **uint32** avgspeed 2. **uint64** uploadnum 3. **uint32** files 4. **uint32** dirs 7. **uint32** number of slotsfree 8. Iterate through number of slotsfree 1. **uint32** slotsfree 9. **uint32** number of usercountries 10. Iterate through number of usercountries 1. **string** countrycode *Uppercase country code* ## Server Code 68 ### TunneledMessage **OBSOLETE, no longer used** Server message for tunneling a chat message. ### Data Order - Send 1. **string** username 2. **uint32** token 3. **uint32** code 4. **string** message - Receive 1. **string** username 2. **uint32** code 3. **uint32** token 4. **ip** ip 5. **uint32** port 6. **string** message ## Server Code 69 ### PrivilegedUsers The server sends us a list of privileged users, a.k.a. users who have donated. ### Data Order - Send - *No Message* - Receive 1. **uint32** number of users 2. Iterate number of users 1. **string** username ## Server Code 71 ### HaveNoParent We inform the server if we have a distributed parent or not. If not, the server eventually sends us a [PossibleParents](#server-code-102) message with a list of possible parents to connect to. If no candidates are found, no such message is sent by the server, and we eventually become a branch root. ### Data Order - Send 1. **bool** have parents - Receive - *No Message* ## Server Code 73 ### SearchParent **DEPRECATED, sent by Soulseek NS but not SoulseekQt** We send the IP address of our parent to the server. ### Data Order - Send 1. **ip** ip - Receive - *No Message* ## Server Code 83 ### ParentMinSpeed The server informs us about the minimum upload speed required to become a parent in the distributed network. ### Data Order - Send - *No Message* - Receive 1. **uint32** speed ## Server Code 84 ### ParentSpeedRatio The server sends us a speed ratio determining the number of children we can have in the distributed network. The maximum number of children is our upload speed divided by the speed ratio. ### Data Order - Send - *No Message* - Receive 1. **uint32** ratio ## Server Code 86 ### ParentInactivityTimeout **OBSOLETE, no longer sent by the server** ### Data Order - Send - *No Message* - Receive 1. **uint32** seconds ## Server Code 87 ### SearchInactivityTimeout **OBSOLETE, no longer sent by the server** ### Data Order - Send - *No Message* - Receive 1. **uint32** seconds ## Server Code 88 ### MinParentsInCache **OBSOLETE, no longer sent by the server** ### Data Order - Send - *No Message* - Receive 1. **uint32** number ## Server Code 90 ### DistribPingInterval **OBSOLETE, no longer sent by the server** ### Data Order - Send - *No Message* - Receive 1. **uint32** seconds ## Server Code 91 ### AddToPrivileged **OBSOLETE, no longer sent by the server** The server sends us the username of a new privileged user, which we add to our list of global privileged users. ### Data Order - Send - *No Message* - Receive 1. **string** username ## Server Code 92 ### CheckPrivileges We ask the server how much time we have left of our privileges. The server responds with the remaining time, in seconds. ### Data Order - Send - Empty Message - Receive 1. **uint32** time left ## Server Code 93 ### EmbeddedMessage The server sends us an embedded distributed message. The only type of distributed message sent at present is [DistribSearch](#distributed-code-3) (distributed code 3). If we receive such a message, we are a branch root in the distributed network, and we distribute the embedded message (not the unpacked distributed message) to our child peers. ### Data Order - Send - *No Message* - Receive 1. **uint8** distributed code *see [Distributed Message Codes](#distributed-message-codes)* 2. **bytes** distributed message *Raw message associated with distributed code* ## Server Code 100 ### AcceptChildren We tell the server if we want to accept child nodes. ### Data Order - Send 1. **bool** accept - Receive - *No Message* ## Server Code 102 ### PossibleParents The server send us a list of max 10 possible distributed parents to connect to. Messages of this type are sent to us at regular intervals, until we tell the server we don't need more possible parents with a [HaveNoParent](#server-code-71) message. The received list always contains users whose upload speed is higher than our own. If we have the highest upload speed on the server, we become a branch root, and start receiving [SearchRequest](#server-code-93) messages directly from the server. ### Data Order - Send - *No Message* - Receive 1. **uint32** number of parents 2. Iterate for number of parents 1. **string** username 2. **ip** ip 3. **uint32** port ## Server Code 103 ### WishlistSearch We send the server one of our wishlist search queries at each interval. ### Data Order - Send 1. **uint32** token 2. **string** search query - Receive - *No Message* ## Server Code 104 ### WishlistInterval The server tells us the wishlist search interval. This interval is almost always 12 minutes, or 2 minutes for privileged users. ### Data Order - Send - *No Message* - Receive 1. **uint32** interval ## Server Code 110 ### SimilarUsers **DEPRECATED, used in Soulseek NS but not SoulseekQt** The server sends us a list of similar users related to our interests. ### Data Order - Send - Empty Message - Receive 1. **uint32** number of users 2. Iterate for number of user 1. **string** username 2. **uint32** rating ## Server Code 111 ### ItemRecommendations **DEPRECATED, used in Soulseek NS but not SoulseekQt** The server sends us a list of recommendations related to a specific item, which is usually present in the like/dislike list or an existing recommendation list. ### Data Order - Send 1. **string** item - Receive 1. **string** item 2. **uint32** number of recommendations 3. Iterate for number of recommendations 1. **string** recommendation 2. **uint32** number of recommendations for this recommendation *(can be negative)* ## Server Code 112 ### ItemSimilarUsers **DEPRECATED, used in Soulseek NS but not SoulseekQt** The server sends us a list of similar users related to a specific item, which is usually present in the like/dislike list or recommendation list. ### Data Order - Send 1. **string** item - Receive 1. **string** item 2. **uint32** number of users 3. Iterate for number of users 1. **string** username ## Server Code 113 ### RoomTickerState The server returns a list of tickers in a chat room. Tickers are customizable, user-specific messages that appear on chat room walls. ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **uint32** number of users 3. Iterate for number of user 1. **string** username 2. **string** tickers ## Server Code 114 ### RoomTickerAdd The server sends us a new ticker that was added to a chat room. Tickers are customizable, user-specific messages that appear on chat room walls. ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **string** username 3. **string** ticker ## Server Code 115 ### RoomTickerRemove The server informs us that a ticker was removed from a chat room. Tickers are customizable, user-specific messages that appear on chat room walls. ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **string** username ## Server Code 116 ### RoomTickerSet We send this to the server when we change our own ticker in a chat room. Sending an empty ticker string removes any existing ticker in the room. Tickers are customizable, user-specific messages that appear on chat room walls. ### Data Order - Send 1. **string** room 2. **string** ticker - Receive - *No Message* ## Server Code 117 ### AddThingIHate **DEPRECATED, used in Soulseek NS but not SoulseekQt** We send this to the server when we add an item to our hate list. ### Data Order - Send 1. **string** item - Receive - *No Message* ## Server Code 118 ### RemoveThingIHate **DEPRECATED, used in Soulseek NS but not SoulseekQt** We send this to the server when we remove an item from our hate list. ### Data Order - Send 1. **string** item - Receive - *No Message* ## Server Code 120 ### RoomSearch We send this to the server to search files shared by users who have joined a specific chat room. The token is a number generated by the client and is used to track the search results. ### Data Order - Send 1. **string** room 2. **uint32** token 3. **string** search query - Receive - *No Message* ## Server Code 121 ### SendUploadSpeed We send this after a finished upload to let the server update the speed statistics for ourselves. ### Data Order - Send 1. **uint32** speed - Receive - *No Message* ## Server Code 122 ### UserPrivileged **DEPRECATED, use [WatchUser](#server-code-5) and [GetUserStatus](#server-code-7) server messages** We ask the server whether a user is privileged or not. ### Data Order - Send 1. **string** username - Receive 1. **string** username 2. **bool** privileged ## Server Code 123 ### GivePrivileges We give (part of) our privileges, specified in days, to another user on the network. ### Data Order - Send 1. **string** username 2. **uint32** days - Receive - *No Message* ## Server Code 124 ### NotifyPrivileges **DEPRECATED, sent by Soulseek NS but not SoulseekQt** ### Data Order - Send 1. **uint32** token 2. **string** username - Receive 1. **uint32** token 2. **string** username ## Server Code 125 ### AckNotifyPrivileges **DEPRECATED, no longer used** ### Data Order - Send 1. **uint32** token - Receive 1. **uint32** token ## Server Code 126 ### BranchLevel We tell the server what our position is in our branch (xth generation) on the distributed network. ### Data Order - Send 1. **uint32** branch level - Receive - *No Message* ## Server Code 127 ### BranchRoot We tell the server the username of the root of the branch we're in on the distributed network. ### Data Order - Send 1. **string** branch root - Receive - *No Message* ## Server Code 129 ### ChildDepth **DEPRECATED, sent by Soulseek NS but not SoulseekQt** We tell the server the maximum number of generation of children we have on the distributed network. ### Data Order - Send 1. **uint32** child depth - Receive - *No Message* ## Server Code 130 ### ResetDistributed The server asks us to reset our distributed parent and children. ### Data Order - Send - *No Message* - Receive - Empty Message ## Server Code 133 ### PrivateRoomUsers The server sends us a list of room users that we can alter (add operator abilities / dismember). ### Data Order - Send 1. *No Message* - Receive 1. **string** room 2. **uint32** number of users 3. Iterate for number of users 1. **string** users ## Server Code 134 ### PrivateRoomAddUser We send this to inform the server that we've added a user to a private room. ### Data Order - Send 1. **string** room 2. **string** username - Receive 1. **string** room 2. **string** username ## Server Code 135 ### PrivateRoomRemoveUser We send this to inform the server that we've removed a user from a private room. ### Data Order - Send 1. **string** room 2. **string** username - Receive 1. **string** room 2. **string** username ## Server Code 136 ### PrivateRoomDismember We send this to the server to remove our own membership of a private room. ### Data Order - Send 1. **string** room - Receive - *No Message* ## Server Code 137 ### PrivateRoomDisown We send this to the server to stop owning a private room. ### Data Order - Send 1. **string** room - Receive - *No Message* ## Server Code 138 ### PrivateRoomSomething **OBSOLETE, no longer used** Unknown purpose ### Data Order - Send 1. **string** room - Receive 1. **string** room ## Server Code 139 ### PrivateRoomAdded The server sends us this message when we are added to a private room. ### Data Order - Send - *No Message* - Receive 1. **string** room ## Server Code 140 ### PrivateRoomRemoved The server sends us this message when we are removed from a private room. ### Data Order - Send - *No Message* - Receive 1. **string** room ## Server Code 141 ### PrivateRoomToggle We send this when we want to enable or disable invitations to private rooms. ### Data Order - Send 1. **bool** enable - Receive 1. **bool** enable ## Server Code 142 ### ChangePassword We send this to the server to change our password. We receive a response if our password changes. ### Data Order - Send 1. **string** pass - Receive 1. **string** pass ## Server Code 143 ### PrivateRoomAddOperator We send this to the server to add private room operator abilities to a user. ### Data Order - Send 1. **string** room 2. **string** username - Receive 1. **string** room 2. **string** username ## Server Code 144 ### PrivateRoomRemoveOperator We send this to the server to remove private room operator abilities from a user. ### Data Order - Send 1. **string** room 2. **string** username - Receive 1. **string** room 2. **string** username ## Server Code 145 ### PrivateRoomOperatorAdded The server send us this message when we're given operator abilities in a private room. ### Data Order - Send - *No Message* - Receive 1. **string** room ## Server Code 146 ### PrivateRoomOperatorRemoved The server send us this message when our operator abilities are removed in a private room. ### Data Order - Send - *No Message* - Receive 1. **string** room ## Server Code 148 ### PrivateRoomOwned The server sends us a list of operators in a specific room, that we can remove operator abilities from. ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **uint32** number of operators in room 3. Iterate the number of operators 1. **string** operator ## Server Code 149 ### MessageUsers Sends a broadcast private message to the given list of online users. ### Data Order - Send 1. **uint32** number of users 2. Iterate the number of users 1. **string** username 3. **string** message - Receive - *No Message* ## Server Code 150 ### JoinGlobalRoom **DEPRECATED, used in Soulseek NS but not SoulseekQt** We ask the server to send us messages from all public rooms, also known as public room feed. ### Data Order - Send - Empty Message - Receive - *No Message* ## Server Code 151 ### LeaveGlobalRoom **DEPRECATED, used in Soulseek NS but not SoulseekQt** We ask the server to stop sending us messages from all public rooms, also known as public room feed. ### Data Order - Send - Empty Message - Receive - *No Message* ## Server Code 152 ### GlobalRoomMessage **DEPRECATED, used in Soulseek NS but not SoulseekQt** The server sends this when a new message has been written in the public room feed (every single line written in every public room). ### Data Order - Send - *No Message* - Receive 1. **string** room 2. **string** username 3. **string** message ## Server Code 153 ### RelatedSearch **OBSOLETE, server sends empty list as of 2018** The server returns a list of related search terms for a search query. ### Data Order - Send 1. **string** query - Receive 1. **string** query 2. **uint32** number of terms 3. Iterate for number of term 1. **string** term 2. **uint32** score ## Server Code 160 ### ExcludedSearchPhrases The server sends a list of phrases not allowed on the search network. File paths containing such phrases should be excluded when responding to search requests. ### Data Order - Send - *No Message* - Receive 1. **uint32** number of phrases 2. Iterate for number of phrases 1. **string** phrase ## Server Code 1001 ### CantConnectToPeer We send this to say we can't connect to peer after it has asked us to connect. We receive this if we asked peer to connect and it can't do this. This message means a connection can't be established either way. See also: [Peer Connection Message Order](#modern-peer-connection-message-order) ### Data Order - Send 1. **uint32** token 2. **string** username - Receive 1. **uint32** token 2. **string** username ## Server Code 1003 ### CantCreateRoom Server tells us a new room cannot be created. This message only seems to be sent if you try to create a room with the same name as an existing private room. In other cases, such as using a room name with leading or trailing spaces, only a private message containing an error message is sent. ### Data Order - Send - *No Message* - Receive 1. **string** room # Peer Init Messages | Send | Receive | |--------------|-------------------| | Send to Peer | Receive from Peer | Peer init messages are used to initiate a 'P', 'F' or 'D' connection to a peer. In Nicotine+, these messages are defined in slskmessages.py. ### Peer Init Message Format | Message Length | Code | Message Contents | |----------------|-------|------------------| | uint32 | uint8 | ... | ### Peer Init Message Codes | Code | Message | |------|--------------------------------------| | 0 | [Pierce Firewall](#peer-init-code-0) | | 1 | [Peer Init](#peer-init-code-1) | ### Modern Peer Connection Message Order *Used by SoulseekQt, Nicotine+ 3.2.1 and later, Soulseek.NET-based clients (slskd, Seeker)* 1. User A sends [ConnectToPeer](#server-code-18) to the Server with a unique token (indirect connection request) 2. User A sends a [PeerInit](#peer-init-code-1) to User B (direct connection request) 3. The Server sends a [ConnectToPeer](#server-code-18) response to User B with the same token. If User B receives the *PeerInit* message, a connection is established, and user A is free to send peer messages. Otherwise, once User B receives the *ConnectToPeer* message from the Server, User B proceeds with step 4. 4. User B sends a [PierceFireWall](#peer-init-code-0) to User A with the token included in the *ConnectToPeer* message. If this succeeds, a connection is established, and User A is free to send peer messages. If this fails, User B retries for ~1 minute. If this still fails, no connection is possible, and User B proceeds with step 5. 5. User B sends a [CantConnectToPeer](#server-code-1001) to the Server. 6. The Server sends a [CantConnectToPeer](#server-code-1001) response to User A. Unlike SoulseekQt, Nicotine+ and Soulseek.NET-based clients skip step 5 in favor of letting the connection attempt time out on User A's end. ### Legacy Peer Connection Message Order *Used by Soulseek NS, Nicotine+ 3.2.0 and earlier, Museek+, soulseeX* 1. User A sends a [PeerInit](#peer-init-code-1) to User B. If this succeeds, a connection is established, and User A is free to send peer messages. If this fails (socket cannot connect), User A proceeds with an indirect connection request (step 2). 2. User A sends [ConnectToPeer](#server-code-18) to the Server with a unique token 3. The Server sends a [ConnectToPeer](#server-code-18) response to User B with the same token 4. User B sends a [PierceFireWall](#peer-init-code-0) to User A with the same token. If this succeeds, a connection is established, and User A is free to send peer messages. If this fails, User B retries for ~1 minute. If this still fails, no connection is possible, and User B proceeds with step 5. 5. User B sends a [CantConnectToPeer](#server-code-1001) to the Server. 6. The Server sends a [CantConnectToPeer](#server-code-1001) response to User A. ## Peer Init Code 0 ### PierceFireWall This message is sent in response to an indirect connection request from another user. If the message goes through to the user, the connection is ready. The token is taken from the [ConnectToPeer](#server-code-18) server message. See also: [Peer Connection Message Order](#modern-peer-connection-message-order) ### Data Order - Send - **uint32** token - Receive - **uint32** token ## Peer Init Code 1 ### PeerInit This message is sent to initiate a direct connection to another peer. The token is apparently always 0 and ignored. See also: [Peer Connection Message Order](#modern-peer-connection-message-order) ### Data Order - Send - **string** username *local username* - **string** type **P, F or D** *see [Connection Types](#connection-types)* - **uint32** token *value is always* **0** - Receive - **string** username *remote username* - **string** type **P, F or D** *see [Connection Types](#connection-types)* - **uint32** token *value is always* **0** # Peer Messages | Send | Receive | |--------------|-------------------| | Send to Peer | Receive from Peer | Peer messages are sent to peers over a 'P' connection. Only a single active connection to a peer is allowed. In Nicotine+, these messages are defined in slskmessages.py. ### Peer Message Format | Message Length | Code | Message Contents | |----------------|--------|------------------| | uint32 | uint32 | ... | ### Peer Message Codes | Code | Message | Status | |------|--------------------------------------------|----------------------------| | 1 | Private Message | Obsolete, contents unknown | | 4 | [Shared File List Request](#peer-code-4) | | | 5 | [Shared File List Response](#peer-code-5) | | | 8 | [File Search Request](#peer-code-8) | Obsolete | | 9 | [File Search Response](#peer-code-9) | | | 10 | Room Invitation | Obsolete, contents unknown | | 14 | Cancelled Queued Transfer | Obsolete, contents unknown | | 15 | [User Info Request](#peer-code-15) | | | 16 | [User Info Response](#peer-code-16) | | | 33 | Send Connect Token | Obsolete, contents unknown | | 34 | Move Download To Top | Obsolete, contents unknown | | 36 | [Folder Contents Request](#peer-code-36) | | | 37 | [Folder Contents Response](#peer-code-37) | | | 40 | [Transfer Request](#peer-code-40) | | | 41 | [Download Response](#peer-code-41-a) | Deprecated | | 41 | [Upload Response](#peer-code-41-b) | | | 42 | [Upload Placehold](#peer-code-42) | Obsolete | | 43 | [Queue Upload](#peer-code-43) | | | 44 | [Place In Queue Response](#peer-code-44) | | | 46 | [Upload Failed](#peer-code-46) | | | 47 | Exact File Search Request | Obsolete, contents unknown | | 48 | Queued Downloads | Obsolete, contents unknown | | 49 | Indirect File Search Request | Obsolete, contents unknown | | 50 | [Upload Denied](#peer-code-50) | | | 51 | [Place In Queue Request](#peer-code-51) | | | 52 | [Upload Queue Notification](#peer-code-52) | Deprecated | ## Peer Code 4 ### GetShareFileList We send this to a peer to ask for a list of shared files. ### Data Order - Send - Empty Message - Receive - Empty Message ## Peer Code 5 ### SharedFileListResponse A peer responds with a list of shared files after we've sent a [SharedFileListRequest](#peer-code-4). ### Data Order - Send 1. Iterate through shares database 1. **data** 2. zlib compress - Receive 1. zlib decompress 2. **uint32** number of directories 3. Iterate number of directories 1. **string** directory 2. **uint32** number of files 3. Iterate number of files 1. **uint8** code *value is always* **1** 2. **string** filename 3. **unit64** file size 4. **string** file extension 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value 4. **uint32** unknown *official clients always send a value of* **0** 5. **uint32** number of private directories 6. Iterate number of private directories 1. **string** directory 2. **uint32** number of files 3. Iterate number of files 1. **uint8** code *value is always* **1** 2. **string** filename 3. **uint64** file size 4. **string** file extension 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value ## Peer Code 8 ### FileSearchRequest **OBSOLETE, use [UserSearch](#server-code-42) server message** We send this to the peer when we search for a file. Alternatively, the peer sends this to tell us it is searching for a file. ### Data Order - Send 1. **uint32** token 2. **string** query - Receive 1. **uint32** token 2. **string** query ## Peer Code 9 ### FileSearchResponse A peer sends this message when it has a file search match. The token is taken from original [FileSearch](#server-code-26), [UserSearch](#server-code-42) or [RoomSearch](#server-code-120) server message. ### Data Order - Send 1. **string** username 2. **uint32** token 3. **uint32** number of results 4. Iterate for number of results 1. **uint8** code *value is always* **1** 2. **string** filename 3. **uint64** file size 4. **string** file extension *(SoulseekNS requires "mp3" to show attributes)* 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value 5. **bool** slotfree 6. **uint32** avgspeed 7. **uint32** queue length 8. **uint32** unknown *official clients always send a value of* **0** 9. **uint32** number of privately shared results 10. Iterate for number of privately shared results 1. **uint8** code *value is always 1* 2. **string** filename 3. **uint64** file size 4. **string** file extension *(SoulseekNS requires "mp3" to show attributes)* 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value 11. zlib compress - Receive 1. zlib decompress 2. **string** username 3. **uint32** token 4. **uint32** number of results 5. Iterate for number of results 1. **uint8** code *value is always* **1** 2. **string** filename 3. **uint64** size 4. **string** file extension *(Always blank from SoulseekQt clients)* 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value 6. **bool** slotfree 7. **uint32** avgspeed 8. **uint32** queue length 9. **uint32** unknown *official clients always send a value of* **0** 10. **uint32** number of privately shared results 11. Iterate for number of privately shared results 1. **uint8** code *value is always 1* 2. **string** filename 3. **uint64** size 4. **string** file extension *(Always blank from SoulseekQt clients)* 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value ## Peer Code 15 ### UserInfoRequest We ask the other peer to send us their user information, picture and all. ### Data Order - Send - Empty Message - Receive - Empty Message ## Peer Code 16 ### UserInfoResponse A peer responds with this after we've sent a [UserInfoRequest](#peer-code-15). ### Data Order - Send 1. **string** description 2. Check contents of picture - If picture is not empty 1. **bool** has picture **1** 2. **bytes** picture - If picture is empty 1. **bool** has picture **0** 3. **uint32** totalupl 4. **uint32** queuesize 5. **bool** slotsfree *Can immediately upload* 6. Optional (not sent by SoulseekQt) 1. **uint32** uploadpermitted *Who can upload anything to us? See [Upload Permissions](#upload-permissions).* - Receive 1. **string** description 2. **bool** has picture 3. Check contents of has picture 1. **bytes** picture *if has picture == 1* 4. **uint32** totalupl 5. **uint32** queuesize 6. **bool** slotsfree *Can immediately download* 7. Optional (not sent by SoulseekQt) 1. **uint32** uploadpermitted *Who can upload anything to this user? See [Upload Permissions](#upload-permissions).* ## Peer Code 36 ### FolderContentsRequest We ask the peer to send us the contents of a single folder. ### Data Order - Send 1. **uint32** token 2. **string** folder - Receive 1. **uint32** token 2. **string** folder ## Peer Code 37 ### FolderContentsResponse A peer responds with the contents of a particular folder (with all subfolders) after we've sent a [FolderContentsRequest](#peer-code-36). ### Data Order - Send 1. **uint32** token 2. **string** folder 3. **uint32** number of folders 4. Iterate for number of folders 1. **string** dir 2. **uint32** number of files 3. Iterate number of files 1. **uint8** code *value is always* **1** 2. **string** file 3. **uint64** file size 4. **string** file extension *(Always blank from SoulseekQt clients)* 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value 5. zlib compress - Receive 1. zlib decompress 2. **uint32** token 3. **string** folder 4. **uint32** number of folders 5. Iterate for number of folders 1. **string** dir 2. **uint32** number of files 3. Iterate number of files 1. **uint8** code *value is always* **1** 2. **string** file 3. **uint64** file size 4. **string** file extension *(Always blank from SoulseekQt clients)* 5. **uint32** number of attributes 6. Iterate for number of attributes 1. **uint32** attribute code *see [File Attribute Types](#file-attribute-types)* 2. **uint32** attribute value ## Peer Code 40 ### TransferRequest This message is sent by a peer once they are ready to start uploading a file to us. A [TransferResponse](#peer-code-41-a) message is expected from the recipient, either allowing or rejecting the upload attempt. This message was formerly used to send a download request (direction 0) as well, but Nicotine+ >= 3.0.3, Museek+ and the official clients use the [QueueUpload](#peer-code-43) peer message for this purpose today. ### Data Order - Send 1. **uint32** direction **0 or 1** *see [Transfer Directions](#transfer-directions)* 2. **uint32** token 3. **string** filename 4. Check contents of direction - **uint64** filesize *if direction == 1 (upload)* - Receive 1. **uint32** direction **0 or 1** *see [Transfer Directions](#transfer-directions)* 2. **uint32** token 3. **string** filename 4. Check contents of direction - **uint64** filesize *if direction == 1 (upload)* ## Peer Code 41 a ### TransferResponse *Download Response* **DEPRECATED, use [QueueUpload](#peer-code-43) to request files** Response to [TransferRequest](#peer-code-40) We (or the other peer) either agrees, or tells the reason for rejecting the file download. ### Data Order - Send 1. **uint32** token 2. **bool** allowed 3. Check contents of allowed - **uint64** filesize *if allowed == 1* - **string** reason *if allowed == 0* ; *see [Transfer Rejection Reasons](#transfer-rejection-reasons)* - Receive 1. **uint32** token 2. **bool** allowed 3. Check contents of allowed - **uint64** filesize *if allowed == 1* - **string** reason *if allowed == 0* ; *see [Transfer Rejection Reasons](#transfer-rejection-reasons)* ## Peer Code 41 b ### TransferResponse *Upload Response* Response to [TransferRequest](#peer-code-40) We (or the other peer) either agrees, or tells the reason for rejecting the file upload. ### Data Order - Send 1. **uint32** token 2. **bool** allowed 3. Check contents of allowed - **string** reason *if allowed == 0* ; *see [Transfer Rejection Reasons](#transfer-rejection-reasons)* - Receive 1. **uint32** token 2. **bool** allowed 3. Check contents of allowed - **string** reason *if allowed == 0* ; *see [Transfer Rejection Reasons](#transfer-rejection-reasons)* ## Peer Code 42 ### PlaceholdUpload **OBSOLETE, no longer used** ### Data Order - Send 1. **string** filename - Receive 1. **string** filename ## Peer Code 43 ### QueueUpload This message is used to tell a peer that an upload should be queued on their end. Once the recipient is ready to transfer the requested file, they will send a [TransferRequest](#peer-code-40) to us. ### Data Order - Send 1. **string** filename - Receive 1. **string** filename ## Peer Code 44 ### PlaceInQueueResponse The peer replies with the upload queue placement of the requested file. ### Data Order - Send 1. **string** filename 2. **uint32** place - Receive 1. **string** filename 2. **uint32** place ## Peer Code 46 ### UploadFailed This message is sent whenever a file connection of an active upload closes. Soulseek NS clients can also send this message when a file cannot be read. The recipient either re-queues the upload (download on their end), or ignores the message if the transfer finished. ### Data Order - Send 1. **string** filename - Receive 1. **string** filename ## Peer Code 50 ### UploadDenied This message is sent to reject [QueueUpload](#peer-code-43) attempts and previously queued files. The reason for rejection will appear in the transfer list of the recipient. ### Data Order - Send 1. **string** filename 2. **string** reason *see [Transfer Rejection Reasons](#transfer-rejection-reasons)* - Receive 1. **string** filename 2. **string** reason *see [Transfer Rejection Reasons](#transfer-rejection-reasons)* ## Peer Code 51 ### PlaceInQueueRequest This message is sent when asking for the upload queue placement of a file. ### Data Order - Send 1. **string** filename - Receive 1. **string** filename ## Peer Code 52 ### UploadQueueNotification **DEPRECATED, sent by Soulseek NS but not SoulseekQt** This message is sent to inform a peer about an upload attempt initiated by us. ### Data Order - Send - Empty Message - Receive - Empty Message # File Messages | Send | Receive | |--------------|-------------------| | Send to Peer | Receive from Peer | File messages are sent to peers over a 'F' connection, and do not have messages codes associated with them. ### File Connection Message Format | Message Contents | |------------------| | ... | ### File Connection Messages | Message | |-------------------------------------------| | [File Transfer Init](#file-transfer-init) | | [File Offset](#file-offset) | ## File Transfer Init ### FileTransferInit We send this to a peer via a 'F' connection to tell them that we want to start uploading a file. The token is the same as the one previously included in the [TransferRequest](#peer-code-40) peer message. Note that slskd and Nicotine+ <= 3.0.2 use legacy download requests, and send this message when initializing our file upload connection from their end. ### Data Order - Send - **uint32** token - Receive - **uint32** token ## File Offset ### FileOffset We send this to the uploading peer at the beginning of a 'F' connection, to tell them how many bytes of the file we've previously downloaded. If nothing was downloaded, the offset is 0. Note that Soulseek NS fails to read the size of an incomplete download if more than 2 GB of the file has been downloaded, and the download is resumed. In consequence, the client sends an invalid file offset of -1. ### Data Order - Send - **uint64** offset - Receive - **uint64** offset # Distributed Messages | Send | Receive | |--------------|-------------------| | Send to Node | Receive from Node | Distributed messages are sent to peers over a 'D' connection, and are used for the distributed search network. Only a single active connection to a peer is allowed. In Nicotine+, these messages are defined in slskmessages.py. ### Distributed Message Format | Message Length | Code | Message Contents | |----------------|-------|------------------| | uint32 | uint8 | ... | ### Distributed Message Codes | Code | Message | Status | |------|------------------------------------------|------------| | 0 | [Ping](#distributed-code-0) | Deprecated | | 3 | [Search Request](#distributed-code-3) | | | 4 | [Branch Level](#distributed-code-4) | | | 5 | [Branch Root](#distributed-code-5) | | | 7 | [Child Depth](#distributed-code-7) | Deprecated | | 93 | [Embedded Message](#distributed-code-93) | | ## Distributed Code 0 ### DistribPing **DEPRECATED, sent by Soulseek NS but not SoulseekQt** We ping distributed children every 60 seconds. ### Data Order - Send - Empty Message - Receive 1. **uint32** unknown ## Distributed Code 3 ### DistribSearch Search request that arrives through the distributed network. We transmit the search request to our child peers. ### Data Order - Send 1. **uint32** unknown 2. **string** username 3. **uint32** token 4. **string** query - Receive 1. **uint32** unknown 2. **string** username 3. **uint32** token 4. **string** query ## Distributed Code 4 ### DistribBranchLevel We tell our distributed children what our position is in our branch (xth generation) on the distributed network. If we receive a branch level of 0 from a parent, we should mark the parent as our branch root, since they won't send a [DistribBranchRoot](#distributed-code-5) message in this case. ### Data Order - Send 1. **int32** branch level - Receive 1. **int32** branch level ## Distributed Code 5 ### DistribBranchRoot We tell our distributed children the username of the root of the branch we're in on the distributed network. This message should not be sent when we're the branch root. ### Data Order - Send 1. **string** branch root - Receive 1. **string** branch root ## Distributed Code 7 ### DistribChildDepth **DEPRECATED, sent by Soulseek NS but not SoulseekQt** We tell our distributed parent the maximum number of generation of children we have on the distributed network. ### Data Order - Send 1. **uint32** child depth - Receive 1. **uint32** child depth ## Distributed Code 93 ### DistribEmbeddedMessage A branch root sends us an embedded distributed message. We unpack the distributed message and distribute it to our child peers. The only type of distributed message sent at present is [DistribSearch](#distributed-code-3) (distributed code 3). ### Data Order - Send 1. **uint8** distributed code *see [Distributed Message Codes](#distributed-message-codes)* 2. **bytes** distributed message *Raw message associated with distributed code* - Receive 1. **uint8** distributed code *see [Distributed Message Codes](#distributed-message-codes)* 2. **bytes** distributed message *Raw message associated with distributed code* # Credits This documentation exists thanks to efforts from the following projects: - Nicotine+ (Hyriand, daelstorm, mathiascode) - slskd (jpdillingham) - Museek+ (lbponey) - SoleSeek (BriEnigma) - PySoulSeek (Alexander Kanavin) nicotine-plus-3.3.4/doc/TESTING.md000066400000000000000000000117601461625273200165330ustar00rootroot00000000000000# Testing For those who like living on the bleeding edge, you can run the latest unstable build of Nicotine+ to test recent changes and bug fixes. For information about Nicotine+ development procedures for maintainers, developers and code contributors, see [DEVELOPING.md](DEVELOPING.md). If you want to download the current stable version of Nicotine+, see [DOWNLOADS.md](DOWNLOADS.md). ## GNU/Linux ### PPA (Ubuntu/Debian) To use [unstable packages](https://launchpad.net/~nicotine-team/+archive/ubuntu/unstable) on Ubuntu and Debian, add the *nicotine-team/unstable* PPA repository. On Ubuntu and distributions based on it (e.g. Linux Mint, elementary OS, Pop!_OS, various Ubuntu flavors), run the following: ```sh sudo add-apt-repository ppa:nicotine-team/unstable sudo apt update; sudo apt install nicotine ``` On Debian and distributions based on it (e.g. Devuan, Peppermint OS), run the following: ```sh sudo apt update; sudo apt install python3-launchpadlib software-properties-common sudo add-apt-repository 'deb https://ppa.launchpadcontent.net/nicotine-team/unstable/ubuntu jammy main' sudo apt update; sudo apt install nicotine ``` If you prefer to install a .deb package directly, you can [download one here](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/debian-package.zip). Unlike the repository installation method, you need to download and install Nicotine+ from the link above every time you want to update to the latest unstable build. ### Flatpak Unstable [Flatpak](https://www.flatpak.org/setup/) packages are built after every commit to the master branch. - [Download Unstable Flatpak Package](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/flatpak-package-x86_64.zip) ### Snap Unstable [Snap](https://snapcraft.io/docs/installing-snapd) packages are published in the Snap Store, and can be installed by running the following: ```sh sudo snap install nicotine-plus --edge ``` ### Other See [All Platforms](#all-platforms) for installing the unstable version of Nicotine+ on other distributions. ## Windows Unstable packages are built after every commit to the master branch. - [Download Unstable Windows Installer](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/windows-x86_64-installer.zip) [[Info](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/windows-x86_64-installer)] for Windows 10 or later Standalone executables are also available. They can be run from any folder and do not require installation or administrator privileges. Configuration files are stored in `C:\Users\USERNAME\AppData\Roaming\nicotine`. - [Download Unstable Windows Standalone Package](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/windows-x86_64-package.zip) [[Info](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/windows-x86_64-package)] for Windows 10 or later ## macOS Unstable installers are built after every commit to the master branch. *NOTE: You have to follow [these instructions](https://support.apple.com/guide/mac-help/open-a-mac-app-from-an-unidentified-developer-mh40616/mac) the first time you open Nicotine+ on macOS.* - [Download Unstable macOS Intel Installer](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/macos-x86_64-installer.zip) [[Info](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/macos-x86_64-installer)] for macOS 12 Monterey or later - [Download Unstable macOS Apple Silicon Installer](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/macos-arm64-installer.zip) [[Info](https://nightly.link/nicotine-plus/nicotine-plus/workflows/packaging/master/macos-arm64-installer)] for macOS 14 Sonoma or later ## All Platforms The following installation methods work out of the box on GNU/Linux, *BSD and Solaris. On Windows, a [MinGW development environment](PACKAGING.md#windows) is required. On macOS, [Homebrew](PACKAGING.md#macos) is required. Consider using the Windows and macOS packages above if you do not need to modify the source code. ### pip The latest unstable build of Nicotine+ can be installed using [pip](https://pip.pypa.io/). Ensure the [runtime dependencies](DEPENDENCIES.md) are installed, and run the following: ```sh pip3 install git+https://github.com/nicotine-plus/nicotine-plus.git ``` To start Nicotine+: ```sh nicotine ``` To update to the latest unstable build of Nicotine+, run the following: ```sh pip3 install --upgrade git+https://github.com/nicotine-plus/nicotine-plus.git ``` To uninstall Nicotine+, run: ```sh pip3 uninstall nicotine-plus ``` ### Git To run Nicotine+ directly from a local [Git](https://git-scm.com/) folder, ensure the [runtime dependencies](DEPENDENCIES.md) are installed, and run the following: ```sh git clone https://github.com/nicotine-plus/nicotine-plus.git cd nicotine-plus ./nicotine ``` To update to the latest unstable build of Nicotine+, run the following: ```sh cd nicotine-plus git pull ``` nicotine-plus-3.3.4/doc/TRANSLATIONS.md000066400000000000000000000112251461625273200173330ustar00rootroot00000000000000# Translations ## How to Translate You can help improving our translations at [Hosted Weblate](https://hosted.weblate.org/engage/nicotine-plus). You don't even need an account. We regularly import the improved translations into the Nicotine+ GitHub repository, especially before a new Nicotine+ release. Look around in the Weblate interface, there are quite a few very practical options. ### Automatic Translations This will translate all strings that haven't been edited yet. In the menu "Tools → Automatic translations", select "Automatic translation mode → Add as needing edit", "Search filter → Not translated strings" and "Machine translations → Google Translate" After letting it run for a while, say 20 minutes, it should have finished and added a halfway decent translation for your language. Now you can continue with translating by pressing a fitting item in the "String Status". ### Automatic Suggestions Whilst translating in normal mode, you can select "Automatic Suggestions," this is great to see the proposed translations from various translation services. Google Translate works very well, but you might find other translations that are more to the point. ### Zen Mode In Zen mode you can check and improve all items you have selected. ### Search and Replace Using consistent terms for the same things makes the translation easier to understand. You may also find that some words are mistranslated by the engines, for example "shares" is often translated as "shares from the stockmarket" and not as in "sharing files and directories". You can use the "Search and Replace" tool to help you with that. ### _Underscores in Strings In case you are wondering what to do with the underscores, the Alt-shortcuts (called mnemonics in GTK) provide quick access to a visible UI element (button, menu item etc). If you open any menu and hold down the Alt-key you will see some letters will get an underline. Pressing Alt and the underlined key is the same as pressing that menu item with the mouse. So you can translate "_Quit" to "_Cerrar". If in the same menu the "C" is already in use, simply put the underscore in front of another letter. Of course the "C" is the most prominent letter in the word, so use "_C" if possible. Our first priority is to get all strings translated. Please use an underscore in the translated string, if the original string also has one. Just pick the letter that strikes you as most suitable. Getting the right underscore next to the right letter is something that's easier to do if you see nicotine+ running with the updated translation strings. ## Suggesting Improvements to Source Strings We love suggestions! If a string in the original English version seems odd or can be improved, please create an issue, and we will think about it and discuss it. If you simply edit a string to your liking, we may never notice and then a good idea is lost, or you may create confusion because of a problem you have never thought about. So please, translate all strings as literal as possible, and discuss your thoughts in an issue. ## Conflicts with Other Translators If you notice another translator is undoing your translations, please don't revert it back, but add a comment to the string, and discuss with the other translator about the best translation. ## Testing Updated Translations After translating, you can test your translation by running Nicotine+ with the new translations. Nicotine+ will first try to find your translation files in your project folder, which is particularly useful for testing translations from the git source tree or if your are using the Python virtualenv framework. In order to use the updated translations when running Nicotine+ from your project folder, you need to generate `.mo` files by running: ```sh python3 -m build ``` The newly generated files will end up in the `mo/` folder. If Nicotine+ doesn't find the `.mo` files in your project folder, it will fall back to searching in your system locale path, which is OS specific. A GNU/Linux distribution package will install the files in the system locale path. ## Testing Different Languages Nicotine+ will try to automatically detect your language based on the system locale, or it can be manually selected in Preferences -> User Interface -> Language (requires a restart). ## Adding Yourself to Translators If you want you can add yourself to [TRANSLATORS.md](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/TRANSLATORS.md) and the credits list in Help → About: [pynicotine/gtkgui/dialogs/about.py](https://github.com/nicotine-plus/nicotine-plus/blob/HEAD/pynicotine/gtkgui/dialogs/about.py). Add yourself to the top of matching section and then create a PR (pull request). nicotine-plus-3.3.4/nicotine000077500000000000000000000023651461625273200160660ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2021-2023 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import sys def load_module(): try: import pynicotine except ImportError: print("""Cannot find the pynicotine module. Perhaps it is installed in a folder which is not in Python's module search path. There could be a version mismatch between the Python version that was used to build the application binary package and the version you try to run the application with.""") return 1 return pynicotine.run() if __name__ == "__main__": sys.exit(load_module()) nicotine-plus-3.3.4/packaging/000077500000000000000000000000001461625273200162465ustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/flatpak/000077500000000000000000000000001461625273200176705ustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/flatpak/org.flathub.VerifiedApps.txt000066400000000000000000000001571461625273200252270ustar00rootroot00000000000000--- layout: none permalink: /.well-known/org.flathub.VerifiedApps.txt --- 84c25cce-6bb4-405c-b84d-34d3de848e80 nicotine-plus-3.3.4/packaging/flatpak/org.nicotine_plus.Nicotine.json000066400000000000000000000021501461625273200257710ustar00rootroot00000000000000{ "id" : "org.nicotine_plus.Nicotine", "runtime" : "org.gnome.Platform", "runtime-version" : "46", "sdk" : "org.gnome.Sdk", "command" : "nicotine", "separate-locales" : false, "finish-args" : [ "--socket=wayland", "--socket=fallback-x11", "--share=ipc", "--share=network", "--device=dri", "--filesystem=home", "--filesystem=xdg-run/gvfs", "--filesystem=/media", "--filesystem=/mnt", "--filesystem=/run/media", "--talk-name=org.a11y.Bus", "--talk-name=org.kde.StatusNotifierWatcher", "--talk-name=org.mpris.MediaPlayer2.*" ], "modules" : [ { "name" : "nicotine-plus", "buildsystem" : "simple", "build-commands" : [ "pip3 install --no-build-isolation --no-deps --prefix=${FLATPAK_DEST} ." ], "sources" : [ { "path" : "../../", "type" : "dir" } ] } ], "build-options" : { "env" : { } } } nicotine-plus-3.3.4/packaging/macos/000077500000000000000000000000001461625273200173505ustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/macos/codesign-entitlements.plist000066400000000000000000000005361461625273200247350ustar00rootroot00000000000000 com.apple.security.cs.allow-unsigned-executable-memory com.apple.security.cs.disable-library-validation nicotine-plus-3.3.4/packaging/macos/dependencies.py000077500000000000000000000031751461625273200223610ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2020-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import os import subprocess import sys def install_brew(): """Install dependencies from the main Homebrew repos.""" gtk_version = os.environ.get("NICOTINE_GTK_VERSION", "4") use_libadwaita = (gtk_version == "4" and os.environ.get("NICOTINE_LIBADWAITA") == "1") packages = ["adwaita-icon-theme", "gettext", "gobject-introspection", f"gtk+{gtk_version}"] if gtk_version == "3": packages.append("gspell") if use_libadwaita: packages.append("libadwaita") subprocess.check_call(["brew", "install"] + packages) def install_pypi(): """Install dependencies from PyPi.""" subprocess.check_call([sys.executable, "-m", "pip", "install", "--no-binary", ":all:", "-e", ".[packaging,tests]", "build"]) if __name__ == "__main__": install_brew() install_pypi() nicotine-plus-3.3.4/packaging/macos/icon.icns000066400000000000000000003436101461625273200211650ustar00rootroot00000000000000icnsLjis32G  `Ȁ߇̃ζ  񪥢؂ `媹梼Ȁ߇̃ζ @z @?@@ @e@s`@e@T@e@T@s@e@@F@Am@e@?E@Ar;t=_;Ȁ߇̃ζs8mkWVkL[2ն~tԏVNmGkgjK[ @b-u,B ;IHrorެܝsnn}4 {o>nee8p 2 GQ[Ϗ?WPŎ`4:e^b%  z5 wF1acrlǍP˵JKߣL0bRUc,Yrmۮ,//JMM]?iiie[[=r,[յEZY<{_&ӳ7 s /ݹYucQ"mU4}Mr9~ljjដwqͫ񂂂EJ8X XTQp  H]i 9r-h~('29Y dk5@rcrB&(%Mxs{i-,,_1t ʌb.--ǫjHfn1h+yIׯP2==PHݻ7nH;+XJIj UUUw-X`Heqe KŽAPSSs\ `dSG;5!K9?2*`dB'̚51pkB>\c/_>;UP͛/ IŽݳg76t\#\sI" 60 ?`\ W?eٹ2T8Z4 ֮];OYLjSIIɗDRxK^O#Ǎݽ{a}>yyd0_ɹLul𓣎_)9=onv`ċ={nu"[@ /˴Kk~$0}ɇ=ڵk/GXLOII#BQ|'qwwO*=BĶbŊ Dt o Z 1^=8Agggu]7Q. į?n߾}=(ICC CDcDꎀ[5}O>y2-:{@M6]''\{O??=耮ϙ3\v+'ݤ{Iee% [Nܩ?)ةSٹ[:{?Q6 ?$eL(⣅EY/Q礎B LtwwWϘ1TaQWK^w}&(VZ^ΓhH$Y%c>:B2 0[F=1Wv4a7zM7ё g};xW'Z @ٺud|L >4R߄ʇt;0S__E>$d?qW)[t;0C[d+|ܸ/xC#\* 5kIc3AT( nǽeee?X/2 @ 'e̜" аRcU݁X젭]3t+zMv,ᵺot:Ğ\~e8ҵN+_v:WZqk9ݝK2f&T`O,WP|۽Nj??Z='Nw{3Y`'dЧ ^ z%৔;\[sYlٵB}/v(1`i͵W9[t#P-!POy7ۡjSptuu=6/DF?T/_(Пl߾^@ͳdـq۷^)S?ANwyZ$z?@'I5{T#Vh4?079H9D_z> mˑnտCPm/]J%0H$;Sg;rޮ? u w: 9ER w hJccj]t$X [Y'^ "bڊeLɻF @)@iS}o/?u4BBeb2cҦt%@ Ngk D yJ/),m 6mA7t:=T 3JPZoH@V8@xc$cgAdˑLSN灷!!BCH 8aP h.GB2Wot:ZЃH ?dLG#!ð-'IG?&c4ar$`Fo!j(EAw@#!ñ&^ϻ- 'TFGBkU X{- A#!õ $Yjc$ mD|Ք Ћ@&'!]^|Hx,'Z0Z(4:E>5! GEz5~TxhvF89u.>N.q:\_d싶YcY.p\3 AX$0]Tx+W;{`IJ=mAGMv?<'L }m# ٣[jkkV__?98k烕w8%\)r;Hڿ$_b`@~kll5PW߲W@CG-j755%, * uN;8;uQ/>?>D+6bO촴$uccQ`!*}yGt<`6,=СC ME-5e[d&pqBxIB@=m2 (/O@b @;O'n }7)5E@GOLN{ėe;(fK|gXX8#H@O_q>:@[@ X {t BsJ76p6@"pĝg!" PGML"$]8 | {t ;z^:sTPM`[C@'Lim(Sp`oߏd0TIx+Pj {l\>4+? >@> Ѐd C6*~| ,M,=6 > hm9= PkQ# cj5 s {CFdd`V?@@8dd-cK?@@8dd-cK?@@8dd-cK?@@8c>~X[ǖ~k6RA@ǖܗtTՆ[@@ǖ^{|FsNj~׺ȿg`"=6-p_祭 d cC?OV<7~`ӠׯdcK?~糽]EW @86C W=u^K_" crf/- @86c@_yqmVhb-@@ 7 hc =&-p m L!l;fgM+ @8f DyP@gM@@~ W0ǖ~0! c$4&9L@2 M쇉m=LBabÄd-~0!,me&EУˉLBabÄE!#&ED[&0aBX$]h$4&9LSmaz/s?`BHb1Y:4:u[~ ? H+LmJ t E!pPL]A  6%b@X$zNAw"#a1t|a1taʻ|8;LLJF- '-`ЈHZ4E"a4Si8{, 7/ cAhDX$MyP=F- ',`a4C;p X hiY yP=FEPecA_@X 'C;p  =&/݁ .h.0 Vea0*/݁.>0@^<`Un!p "% 83-DO+?x ȕ撇/ " '^.LFW{- A? `T7|XM2ܑ)P˹Nү;W;i$֩`o Ncc477;--- {|"ؗ/eH@%S!m'D" 1 [@:oo<5#!905@`2dsc"(͛@w"DȁXXfZ_50}MK"ґ[i8;P8X?<. AXL>UU> &aH[i8:r390]5?ςћEPw;pl^E=Bz?9]f5U?(~E@=Aw">s5\ Sŀ~amZsA>C@܋m s.tM> B@Y@^ݽ,hh푱3M.ׯ ܃}[@_Qmn0ͺލlvZDŔP]]B#= șZZZ)8^$-mH <ˑ&!!03&9,466!c@.'IZ^^.G{Ișjkk_IE8\ )v.GWe=r&6.3U$b88NǤM),,.G5 hh^ri|G~ @8/DJ&HIwsLy#gb?LlsX(..O;SD26RH;Q'|z]:[i,z^'a.#gb?LlsXXnݷERhŔpr(n喋t9'!BJ5y|0aaɒ%_3Yb8RڱK;UR}[u8})'! Xe=r&6/fH.[F &J.c;t8VF>|0a@Q"x#Em@LW.󴚚UNDw*J_X&9abu#2fI1@PII:)ʂ~0:ٿ Z";C|?s_T Gy"rJ*S =r&6dӦMw n2~&wygt_U\ÓQ}P=r&6bѢE`q:1Uu2Ԃ~0:m?#2iOJKK=ĨW#u2R_gș4UUU/'?Tqx5SO=unpH*9abf F0~O9c?.A DT-9ab@ssE! 3trm/½Rx{y0^~|R__#31@Ư@)i=|ݎNG&˄Igb?Lls.Yz"uȨnH̶t;0!ƍ&M-Rdxn6lpn&v gR2L0aX,VKEC ܨۀflݺUgdLc}+ KAF @'7|"yG}a+vtR\\K\ ⟑7~@8#8P 9s&G]g?Y)gT 8s…tӻlٲ[س?܏zںu d޽H^X]yo D<8cΉD"[t AQ1o޼Dܟ2aʈ&?׃ 6nt,=8_s"e_VF^;Ai}ћ{zztyw͚5dυ?~Ϫ_v z(գ{5ŏ9NRǕk@=Tt73{ӦM,r޽{˹}4zWH497_y+"頳m۶X ***^5j\窿Zz C1 :=gXٳ|dӱ{UkS7I갻@ 9vڵkۋ 0ޢ>o.SG~VV«%L3`(W^H, ~*tSm?k2ů("@j"p >Dt.hoo\p"Ysj~#R&@Ǐe˖Ÿ+BHoyysg{~5A7₟q9-|:@GtbT---x xܤbY"`E >OԚUJ鈐LݞQF]jժFjL^?Z\\ӧ_")?Bi0.qڏo;@R0A.@ KJ{Y>utuuEtO02/--]~V$W})?b-\cE*iN#% ݖ=S sf̘ 6\cuO`'ri*,,5\C_>"ӂŗ|~">ݫ>9kK 9 m F@ Mb@M7(1^(m̙3\h2S{ݺu=!'J9pߤP=lmmK=r4V6zIHyW B@[ڇQ T&Å}6Wy] c}v~X`Ł-4h.^݁G|m9߽5B g,ޔ @ӀS@OO@8e ΅em:N,e\gL vZhNBs!ZiqEP#^B   *PFJi* e(i"%d چot9YIDAT1`;Bs=-.G?!pg, (³0`q ;UIMMem7:v<'NsVxxNywG/!Р@~(lD}, ; i=>ؾ`9Os+=~p [XTa`q`Pm =~<<w|8L(ؑ.;*v4,#˅wx`WWyw# & Afh`,[ꎀAϼfe: " i?w]R/YIENDB`ic09OwPNG  IHDRx IDATxyU1"B * ,BQ et^qF|GǕgWAQATE("C0 $$Y:dߓ^[V:sϭ=y>?g>g-7QPHA$H=/ jĢV#&Q i:I>@GQǑvQ-i@ J}g3;H_T*I!p&R=i~Q+'7QՐZE#|8R7MQɽ\Ž_3^؇jHg"n?+Kd!J *L ?,هÒ{T"/Ο?+V~566~ھgvyoo ̱chha?l_O9FGG7V#: z9{U~ժOmA[h\_n/]߷.555iӦ^O?wq9Ti(% abTigfdL;rݺuonnWJ0Z)4<~_l/~_ر+۶mŋO>WS!(Z%D &q~_~pIcp$F5eDz^ahoo?oÆ g>Uz`KAp lH@o bV=a˖-'RGp_  k׮=s}82fvҟXmmm_gɾ]z L0.ĪUyᇿT AvA9@ D%RKvҟwq/[lu:&=R@ѓ }XQDԫ* k$◿\ }:y &Wp@ T#sy:D>+駟*qD.NX߶mۿ> DeΝ;/kfʭ ;0P7T'?FFFJwdi0wO[; @VY㏟JyJ iQߔmixxxt:ccc֭[Oj>\yy (>'n9bd_s@$'O?ԧT{@kmmj8H.]zXt3Wq W@,$Y~nyݿ~k^ !A$Q_vg6,`_nhVLSH.]@TK䐨~oNѴ\&% x; X_!ܹsO!ݰ,c[n RC(nzꇑןoDIrDؾ0'?yR .\.XCMI~|׮]K7b z{EAMJ@Է 89o~MMM#x`z^w*v@ c:g齢/^|'}2A{{r5.q Pu+f Ucl͚5P`$y3g|3-XoUH@FoBF %<}3>b+ 3{O?f˖-cpP@|w<.n.Dn;IM d+ Z7onnt`m짊p+)?}tڱyT[G s ~B?!v]pG sfEWؿlF2tvv^W[!8 {ߦ&oVR&N-[|G,===9V8H_0::.@E @`[mmmWI78p8U*mV_!lٲϩ Q_mvljjT[ <U3kck8묳c˜??qf2_iӦJ70pyU"?E|$Yw(Vr/—[MGG-j| `–{ٿ_(#7&pꫯ>E׫tYf~x< `8@??lllLA@};@9 Wq0v 7WY?3tKR5 s^0#D-=ǫ:::nnHP_ mk^^ T0Ԉ8^yG2::%ݐx衇>b@REK7 Or50 njjF@}׷%Àzey_UMH8/zJu跾m7 e,/>˗/S^&@qW^ {NYוQtfttc;D N]IJ7nw< Tc|p+8M@6Xb8(("^+A? d֛ܢ_m2577ϖn0Ybll=Wjr@o9mD]gL"@Pw38R_+ͼ XCbz衇I7zB:19>x>rF馛'P$I*"f dڵWM3ԐB}n(Cw_-ZZZAVsB(uM.n(R6z#󆞺zloxw}y5%7Oy7o{_ gou7:=-)7صkדj `g9Vڎ9 EG|\/rpAA Fx# ~/z2!}}}KkL~2^r2Gq?xC\ o[2P}x|)B~]ҭ%J%t>oo{F{[?xDo~'I7(䯓 1 /ՔhUjó>55~0a  %X88gΜJ7W(GA}M:SwVFv,CbÆ ?U/EsEߏOtDxpӳ:5[5~5 `^,Xz+DߓOnD G:>ԤOs b?!۶mF@?44 3IHwZSo9? XhkkGHS. , ۯө Ꮯ\3CM U) 4?88(Ĉǣ_wnKC/zыS|&ľnj D8K@bΙ?Vx*`M}Џ*8$'_Qz⿼6$ e~_Gq&q? J7)JH HA7aBJT]wQ5):qxY(0$ ? ohH@J<( 8! Cr½+'*"`Yd,Zjv0CI7 )J2G UdŊx u=4gΜOH7 )_Gooxr"j~Bĺu~ԉ# c}^aHG?x po;֭[U MR @'|+ C8#ƃg{C  ƛNg}I!9ٗH4hiiC!Gt`ٲeߕnR Dw7ܷs hkkNRPxxʕ?nR{w `_ٕJggj\s@ $}2SaHTv%X;H@2@GTDڴiӕ C $j(EjA*C@Zۼyl!@TCkNg㏡sA $a۶mtÐ *+c .|$J7 )bZq'KW) u 1_~[DTI) hnnMaHU FNЅ𖖖;Q݅p3<眙j'A*Wi#0@żs@A+ u @kk\!@T5~ѬI$nR DUCo6NRxHaHUO$::!@+` :I C H%=ՊXmW!&pu!kЅ>!]]]OH7 )"/ 'j yo HtÐ R vl``7~[T@$E C H5)F~[R@$z4>7!l@-P??c?V@UH$~b[*0@c"Wl :~;V@$Qhn@ 6$?nR DMbXN"X/0@ĝ׳  I`tÐ j\* eLЅ r@_W1fO4J )fq@w+gI,@"*@ZY<3TI,&*@ƼsHJKUHe@^S@$nRYiŊK^̎7{.?[u

` H ]W>* hX7SZ12rBRH~4_?KR>Qh[0 o@P@ @#߾U H @}y[ˬzn}!*@,ͅhii;v(-X5mX5zOm|޺뭾loX۳u; B!$ P*᷶V%AK¦VoOL$[=Yܪ y@!$ ڪĠe&okό-z,^ΦPM" H y`w{{{U"oے?z~Ѳ?2$]vՌ@ K( UYN9Q7aQJ df_VR%׳ A!$ `'DsDaFB9h޼[uӧJ8I .(/BRH@$`ҷyWWWQNJ@AZG͙+l@P@ ȳ0wwwO (1(%;0T:.gx}=E YD!$ IN===#( AY[&Wvx|slЕ8@!$ `o'sw`(1e LՀ͍HV_~xV+6s *@,:&%{,E_j-+N)۲qom\TAgM&{=+$JA0"\ k`qk'ʜ ( U]e_ ]&v[+a h᭺r)X{'Sm" H yd=;ىNtzJB(2#@#ۯA'[9YG!$\gvⷓY.q JJLJ@r c5bѯ! *@,:'ÒOܤT DW$`˂ٻ px9VE YF!$虒xJ )$QJlZ -N2үg0 YE!$*a'lIj@ثknNjcUO# *@, $*[ǀ~l YD!$(t)Q2`@) eNJc5b`YSnb E*@eJN%"&qV^ux9VE@Ød K{) \˱*p7@!$D{\ WlzXx_d @Feo?V ˱*p @NJhzVrJ܍@>P@ @d̀U0`˲˱*q{ H Pj l`?cu=E@VQ@ @R оax9V%|S H ; 'oo]!^w9WiTApnWܱEt>@!$p'TR]-H S9H  -6 H [ 'w"uBRHV Saн]\F!$p+;;1Pm*@Nb/,@Q@ @J8I룻K\F!$p+$P@ @J8[\F!$p+Pn@Q@ ḕp( UpJ8ԇ[Pm*@H8n%í6 H $V}T [ IDAT p>BRH ǭC}UF!$V¡>ܪjTA@q+Pn@Q@ ḕp( UpJ8ԇ[Pm*@H8n%í6 H $V}T [ p>BRH ǭC}UF!$V¡>ܪJc- [ p>Pd7 H $V}ĩzp [ p>\Z@ [ p>Ņ?]!9*@H8n%MÃǼ.<=bmoXᷕ= H $w![f#[{C|ZܢB6˭ @mQ@ ḓpwd\-^^qcx5ߌBRH ǍC}S.(^2DjBRH G>PG%][/Jcxr H JHG?24 STq߀ȢTA@A\ ('2n mztH JHGTٛ\=2v,3LE!$Э@T0 BBR9T*@ K SQ@ ` tk >,3LE!$Э@T0J%@@H} Y*gBRnR05R@TI,~G K SQ@T"ҍB BBR9T*tЭ@T0J%0((` tk >,3LE!R H7 ) K SQ@T"ҍB BBR9T*o}ҍB BBR9T*@tЭ@T0J%#(` tk >,3LE!RnR05R@TD n Gq}Į`$ avS)gb* H7v8RN@ۦ) R0BR)( Dwwߤtc9#SQ@T"ҍB<'JLv *0]{?F9W"YG!RtH7 )p$&Bm*(J ( U*vF!E@; =x7ԅȖǼBE*\& bO{#[] HJMQH焃| /΍( U`/?^x?fF!E@n_EIBRhnR9 N o_aP@T"ҍB<' ? d^*@t"  bhӣe"w*T& '/ }T"ҍB<' >$qV$@!RlnR9 V y0KTDJ7 )pp0B$F .F!E@~խJ%YQH焃{Q" aA½:aW J%IQH焃{%O"PJ`t"  G#֛( U*ҍB<' ܋z> TDI7 )pp/tmB( U*ҍB<'<Ap_VJ%LQH@ .jTI,===KyN8.4yb& HJ`t" Ł&A~YM*ҍB<'<AۜD!R<'(sqqs}D덧:/BRt" Ł&A>~YM:ǞjR^U~֏}xVQH@ =kX'e5Q@$ҍB<'<г?;~YM:I`t" Ł&A7UHP 3ҍB<'<h?Tt" Ł&A+ƫN,J91<'<{9t <%*sqqs}%B|P Wd" H &yN8.4yǪ?d"@ H$]]]@MC: 󽞞eQ@ 1sA Gҹ0}r``~YE$ p+ +}׽@MRxRUH焃 sPL̂@LpB:!r{S- PaH焃IM_u,9xX̀ + u9 nt"Bj+׸d珿",nR9 ntBBҍOV~y:vx;w,nL:@Lp---Sbǎ5.rnmm-D[[[! uvvNIzM6$H7 )pT"2$(%So%P:I !EVRX2I;d kPrKQɿ3y@!HFg!EVD-$˧${;5Y* u yN8[tX4{a2`~tc9oԲ? CBR' !!EVJ5"J lȚԢM7I$=R?K- HDwyN8[aR4#(&]>P&a'} զI*syN8[vRğasfqޝ^;7TD}[yN8[QujEP $@6r|T·KuBR'l۶&!EVd/G/5L#LL ȚԪ~0闛g%k] b5.btÐ" p+ދ;)|4dogo.z,稄LyHϮP@$͛7ϖnR9 nILWJ,q"L ȢԢ$ğ{BR'lذ*!EVeizJ%r&A o&]>XI~V* u ڵk/nR9 nILNѵ#, @-9nCO+ u +.nR9 nETb@L*@ r&'N"XdH7 )pԇk@9#y>N\8؏ßynRpW">r8MMMw) uj\[pפ$!>M7o{f]-g(f79p5'؝;g )%re #<!E%[&>M7vmNԇ@9tٴi HDpw~RaHQ@vitSwrobЫ@I$W\qř CJMWE| nlD'B]a,]{ H?׿~tÐgx=u{å:9R e…ŻsPI]0J]{F^`ƬYnRT2.u<ҳ 78R e޼y곞")PJc?e t㐠ҁPG t@H}-3L[njI)PE ۤ nq]rJޯ@F#U]Z A8ȏCxI7 ;/ިm:qvq >C(gqГO %uEtoN-5|4E7߲o .G Iqx}9B:kГP#:7hwC ഈ}B ~zHZZZ @$4', W@H}+3L\zN)-跘37m4[HP@jtcrr >COO5.zҩ'Zj&L8`˗IBsȦ=蓨 ԇ@9tioo5S'aIA1't @?jC=x4/W| n,[[ ITWP@5! Fh$~; DJNou*׾@H}+3L5k\ xŧNOOy"A P!63 hZzoftUO>-.;@##F+HjM@hφ6?|46?oB$GmrFoS5#gc HjMaDkgoֿ2Wpe>j#3PM<̷(X3}ȏ׷QԚ0~ uuuy[yK~uAV:~9 Ռ0(ڵkn(Q^ՃΝ;]*rO-۟o2Zrvgqx&$~xK7 ðP3`utthkk+Dkkk!vؑJ̿MA^ Pj>jS[>466ީxy1뮻fCaˡRb#l,7&%-GmrFҠ'7jJPo؏Μ9M~n,=w0,5 V;A+V*wu׿q0WPo )u P*Getc @Dj`6 aJ#iQ3'P]wri2W *7lݺf"ECQa= ڃbZa[[ QjY/5~nџ ` h @U tl(l0 [5=(jogAеAcc]+"Ĺ XtG?$IDCA{$g XKGmrvgŋ_o )&{Q~n4$ ÖFŴ"8-} H} /ˏ3Ԥ7"nqDGGҍF``W%ߵXntu >r#Ĺ Pt GJC{@Űw`z9K~Q72xI`?;f#MppK I#fATyƻT@PcJL͛7=Rap@ acArR9g~.9J?<h9"_,ptrraԠ60a! H}PY*笲~05"7w~F aGԀ5(2~WQoPrJ[?WyDX@KK˃ҍ5rTQ(gHЎ$90}6@Ɂ1o Gm!.ׯuu =mpɵJ7&I2YG|R喗rW.T&{6lQ1 ҃_1垗.ϼsk׮q* kL]K>"ݠ=>j_{f߼ԘR ~ӳRQ26~Qא-ZttiiiyH_CH 0s9 >XwrCoqtCCÕҍ ܤs+=y qzHt#oT-DM')l#m(> 8(oڰaEoo=X5y/d`~;666$ϟU|~#ja@?޴u9ҍ ܠAt*>'Ro#5ÀUO}S,hzӿQo/HP_WYbůݽoo߬g/ه#Bz|!0e7}' 4K7>c*_c1¶] X?ҭdhll|?#lԕUx'Fettt_ *ٳmA1@hhhVM߼?Gtp#7]ҍjî]ּ=Ig_g$]07 ۻAQ@?g?V]j|@7csV@Y|1__3ٿ^!/1د ḵk_WcT'fÔZFė8樣:ot#ꢿsJ/^Ru@k~;Gy& [jԿ:7>d['wttUIDAT@e w}k__ׇK ( G>r@t#Čvm_WKeJ̭Py/nzR ?A>ϣ?!V0CM>n\ Y|}*g쇥 zo'$6Dqƻx:5U Q[@UtOr8aW mg> 9~w~7i/QNVx!f͚;; @^{~kߢ%I{$u(0طS'ϛ7 lݺ#<j2-X{-&+aɿ'~I9̀`_/e|Y+ccc ,Ljy_s/̿u? ĕs;`b`~t)gÆ z<]v袋Q_OD+xϟb:` 2e*\5릛n:EC~`m7կ~<짓`qrɟP` 2oe)6דf͚uc5 =K_?<'X:P㫯$$~1PK^2_jsՍX쬛oM K,57K{a$E) 0`> dJ4[k (.\x0/@inn^z=뷗~}_O #?$q$~6p%`(~UB7vܹ+?~͇}H0-*ÁX?N9>m۶Ǥ;$@x{)so 7_ $ $|@@^ `n h=?97oߺդw1c~G'~s?ά?o >K7j%Թl(\/~[ҝ`:ttt,3gwkoׯ'J3T,_:O%Q[Q榀D>K.qhhht'>״m۶ӟ~Ae8}rpoNE=KwK@K@s]P7v-<`D5>>{os~al|g?| Of,'Jiج?l߼uǟU'-j9` --#vꩧG^VxTџՏG?Nվj|e4l?ά5%Jt('氠5E@wӾӂ ~cǎE! AwwƆ[~3׉_OZ>;緗 Y_%?Nعrf[>@pU@wfΜ.M$=@@vƳ_8?9o=߼{ғ=go^3Q+Y?Ar`G "`4U Ψ;[?}o_藶oܸ!/?^/o۳}sOYp_0~?8A-j@ض@Ԋ5E\4Zt ʀ&*б>;ο:ք҃&@|w___/x~Cu|=,[-{o~og?;gg=ЇNۦ%{{L0AMTOr?(-`Dl 3{U Ã() (FlIʂ- Qq:A\ &t;n$x&ћ{&NҾ9gf:PIߞS?;3LPj5 U(0gl!0gRpZ`ˁ-FlQd+fUD>bփ =,g&${{L0YI^ד{\ JCH"vXlW Wt4B`ݑRA0`[qBH% JGX?YX?4$w&&zoW _'fOߞIߞ+M${ Z h D 5)A1#FlQMVSAK9J=[&`b7݄Ivgf9N'&}}pIe~??䚸"=%2;ePt JA[(qGVGD>b }Whaj2밓Y7$|{oG%~=~?d"*#Lp)A؂`Kì8L,#E`'&tgoDo͘67 ?I{J@&RR`AP`- 0D!ePQv ;=&`K ?l=C(C\+F+aR`ȁ` - AY!*^]&AYrNQLvb7݄I&L7>, ?8ˏJqg$~+A!#A9;WSWس`B&v{&oM%`&~X/uT|!#ab`ˁ-AQeee"((yTC}Ł(f>}Dl![% (Q`Gp@ rTGy0۱W 裒}% Q-LJA9)>LL؊J8Qb.mlI61]Ӟ6YN/.9OғsooUZ=^,+iZR0nĐX]OGq,˯*Jl ~'o l˲Ti*qրMq~mntgQ$IZ&&27iGA^»_r9c^'7[ uWed8ɚKhۮTUd ^x`66Ϡڵ _T^GO~,8>.a(BS A1zkLG@]q16}d zs( v&E}l;a/;p/ clKopfDC\IWT< ulǚ{w {cLw0Na(4:!ɵ sзL&P\O(/qij|71 b݂̯uǧHHޡ|s;6I`R2\~y^΍gf30ڨK?-]4#pIENDB`ic12PNG  IHDR@@iqRIDATxmL[U[de} qYth4n#&&&6%1./͠Fס]Q6'lAĨ2tҵJ-}y:J(}9rɓ{=*"E)RD+5˲qf<@bgy@ٟ~˜Z[>o'Ω{{{7Eѷa&s$~c0F x3<^l5pr+T0')ZO2k>ߐیPEaޗۄXy:˂Ynb '''w=bjly !mHc& F.W^v\T%*_q]nO"m HߏI-m^/'S 2u6_Ǿͧ~ KH".^.Pi" k~ Trnojب0bf}SFIB|URJ \4Ը+7 N&$!u^" .ZJ_$d.10 2suwAֹd)j9"^c;VwCXƛu#% :>`yH$,A#.|k؛Dhw36BXF_&5̛2̻[ dZO0^;/#3釨NEjxm#{2/NM6|Q5t>ous%<>Y ~X,Ff\JFɄ4rY' 6[^),ÿ'ixxSZꖖ S(rݞ,ofY SNO%U- LR КG}&2*?%uUU6kۄP?USS]%MW 6C+MA6777]KмVW*ĚOiKCCaHV˲vFYP˥MM#ѕMuu06f!^8_-Kn-u)pØUuA_ |}+6J̸; ,QXc[P82"E  >R IENDB`ic07 PNG  IHDR>a IDATx{pT@FRűQ̘Ҫ0J Pg,ֱtHMmǩJq"&Z!!'yldlݽzݽpwc9${/Bi[5VcB S'%%%Mkow8?E__c`O?=00 G`koywuT9 XT uJ ӧaﯣzhJXX~oْSRR&}ezB?Vq hbIII"L%1yyy].WPގ5g۽Rr6#^>cܬ#.t:/:Ȉmx<l۶m61(b?teb*--lH_Z|6\M իWπ gz;'V<;;"bp< k\k`JJJqNNnjjzXogĪ~1@sMʺƤVevݻ"dM{zzXWoo.yD,ML]z; 544˻hģzw+FY@:/B &''$, ři*))I#S0ŜgZֻ\e6Àw8"DbUN0&0?XnDŠ N*TM{>z2l,oPo.|Q_QnC~_@;f&aӧ_?c`^* yKؾt%몋V^}a8B$ET`aJ>G}TwEEEE6hw=i[=jǏ?@Nix@M#G u|F[63/ De Nd_>/nv8= xbt>a8,//_G_0|{60Z 5UX)Ik⫫SH BKYTl$oM' PSS>\5L4F\Vu`!ͼFu;L4YM# huMl ejM7|˪2דicMcP$T13g DM#Y0jiۋ*8Lbƃ/PYC_h]oi[hYaڿ6sb8nQ ?k6P떛p"۴@LݍWоaC=]eYoU8 M1@[<  0 *~,3b-h)@hYTC;R{+ߛq3y :vݭ3 Ձ{ꀥ`(uQQ:R9@WL08aDq4ÈhXа#aF@:Fg;9!P'ǿ{m:$1q=[p{^sШgrEzw0=РͭJŻYN.9qkBJA/6a8! p4C /0,54 \Q/=3N8uY{$Ni> 3F 8ZySo]~hfDrP_%,`9 kX^5zNؼsb"] UOoؿ=j)Q|عVu"jwBы#Qظ 6i;MtC]if/Tm߾ձyqqqCp)H9mf6WHG:7CP]lٲ!FGcJW_ KSZgk$x GN9SK.]L[ϥ3%Z*m``z;'%B5kVk2qw+Vuuuh߬]N6h.SN9Acŋ/8%&ii{јn_[oǙ]ORH`Ɵ@__.lf..--Γ'Oz;l>{n%/'v21Б?RҜg< `ѢEw$Uo]aXv?C?%@Ǎ8/TaPLS "!iڴi7gddѣ96ruBn IGkkkٱcظqfZ ]!ar'+M g.1#`֮-ܲe˓/>|8R\\H+--} #wfˑ#Gr8*q֭O[y楡+Htǣp}c 1^D@ivX `߰<7ŬoGxИ:#%e9 IIı  ̊2)ߌ`AȃMȷ@$Qj>JWVkL[2ն~tԏVNmGkgjK[ @b-u,B ;IHrorެܝsnn}4 {o>nee8p 2 GQ[Ϗ?WPŎ`4:e^b%  z5 wF1acrlǍP˵JKߣL0bRUc,Yrmۮ,//JMM]?iiie[[=r,[յEZY<{_&ӳ7 s /ݹYucQ"mU4}Mr9~ljjដwqͫ񂂂EJ8X XTQp  H]i 9r-h~('29Y dk5@rcrB&(%Mxs{i-,,_1t ʌb.--ǫjHfn1h+yIׯP2==PHݻ7nH;+XJIj UUUw-X`Heqe KŽAPSSs\ `dSG;5!K9?2*`dB'̚51pkB>\c/_>;UP͛/ IŽݳg76t\#\sI" 60 ?`\ W?eٹ2T8Z4 ֮];OYLjSIIɗDRxK^O#Ǎݽ{a}>yyd0_ɹLul𓣎_)9=onv`ċ={nu"[@ /˴Kk~$0}ɇ=ڵk/GXLOII#BQ|'qwwO*=BĶbŊ Dt o Z 1^=8Agggu]7Q. į?n߾}=(ICC CDcDꎀ[5}O>y2-:{@M6]''\{O??=耮ϙ3\v+'ݤ{Iee% [Nܩ?)ةSٹ[:{?Q6 ?$eL(⣅EY/Q礎B LtwwWϘ1TaQWK^w}&(VZ^ΓhH$Y%c>:B2 0[F=1Wv4a7zM7ё g};xW'Z @ٺud|L >4R߄ʇt;0S__E>$d?qW)[t;0C[d+|ܸ/xC#\* 5kIc3AT( nǽeee?X/2 @ 'e̜" аRcU݁X젭]3t+zMv,ᵺot:Ğ\~e8ҵN+_v:WZqk9ݝK2f&T`O,WP|۽Nj??Z='Nw{3Y`'dЧ ^ z%৔;\[sYlٵB}/v(1`i͵W9[t#P-!POy7ۡjSptuu=6/DF?T/_(Пl߾^@ͳdـq۷^)S?ANwyZ$z?@'I5{T#Vh4?079H9D_z> mˑnտCPm/]J%0H$;Sg;rޮ? u w: 9ER w hJccj]t$X [Y'^ "bڊeLɻF @)@iS}o/?u4BBeb2cҦt%@ Ngk D yJ/),m 6mA7t:=T 3JPZoH@V8@xc$cgAdˑLSN灷!!BCH 8aP h.GB2Wot:ZЃH ?dLG#!ð-'IG?&c4ar$`Fo!j(EAw@#!ñ&^ϻ- 'TFGBkU X{- A#!õ $Yjc$ mD|Ք Ћ@&'!]^|Hx,'Z0Z(4:E>5! GEz5~TxhvF89u.>N.q:\_d싶YcY.p\3 AX$0]Tx+W;{`IJ=mAGMv?<'L }m# ٣[jkkV__?98k烕w8%\)r;Hڿ$_b`@~kll5PW߲W@CG-j755%, * uN;8;uQ/>?>D+6bO촴$uccQ`!*}yGt<`6,=СC ME-5e[d&pqBxIB@=m2 (/O@b @;O'n }7)5E@GOLN{ėe;(fK|gXX8#H@O_q>:@[@ X {t BsJ76p6@"pĝg!" PGML"$]8 | {t ;z^:sTPM`[C@'Lim(Sp`oߏd0TIx+Pj {l\>4+? >@> Ѐd C6*~| ,M,=6 > hm9= PkQ# cj5 s {CFdd`V?@@8dd-cK?@@8dd-cK?@@8dd-cK?@@8c>~X[ǖ~k6RA@ǖܗtTՆ[@@ǖ^{|FsNj~׺ȿg`"=6-p_祭 d cC?OV<7~`ӠׯdcK?~糽]EW @86C W=u^K_" crf/- @86c@_yqmVhb-@@ 7 hc =&-p m L!l;fgM+ @8f DyP@gM@@~ W0ǖ~0! c$4&9L@2 M쇉m=LBabÄd-~0!,me&EУˉLBabÄE!#&ED[&0aBX$]h$4&9LSmaz/s?`BHb1Y:4:u[~ ? H+LmJ t E!pPL]A  6%b@X$zNAw"#a1t|a1taʻ|8;LLJF- '-`ЈHZ4E"a4Si8{, 7/ cAhDX$MyP=F- ',`a4C;p X hiY yP=FEPecA_@X 'C;p  =&/݁ .h.0 Vea0*/݁.>0@^<`Un!p "% 83-DO+?x ȕ撇/ " '^.LFW{- A? `T7|XM2ܑ)P˹Nү;W;i$֩`o Ncc477;--- {|"ؗ/eH@%S!m'D" 1 [@:oo<5#!905@`2dsc"(͛@w"DȁXXfZ_50}MK"ґ[i8;P8X?<. AXL>UU> &aH[i8:r390]5?ςћEPw;pl^E=Bz?9]f5U?(~E@=Aw">s5\ Sŀ~amZsA>C@܋m s.tM> B@Y@^ݽ,hh푱3M.ׯ ܃}[@_Qmn0ͺލlvZDŔP]]B#= șZZZ)8^$-mH <ˑ&!!03&9,466!c@.'IZ^^.G{Ișjkk_IE8\ )v.GWe=r&6.3U$b88NǤM),,.G5 hh^ri|G~ @8/DJ&HIwsLy#gb?LlsX(..O;SD26RH;Q'|z]:[i,z^'a.#gb?LlsXXnݷERhŔpr(n喋t9'!BJ5y|0aaɒ%_3Yb8RڱK;UR}[u8})'! Xe=r&6/fH.[F &J.c;t8VF>|0a@Q"x#Em@LW.󴚚UNDw*J_X&9abu#2fI1@PII:)ʂ~0:ٿ Z";C|?s_T Gy"rJ*S =r&6dӦMw n2~&wygt_U\ÓQ}P=r&6bѢE`q:1Uu2Ԃ~0:m?#2iOJKK=ĨW#u2R_gș4UUU/'?Tqx5SO=unpH*9abf F0~O9c?.A DT-9ab@ssE! 3trm/½Rx{y0^~|R__#31@Ư@)i=|ݎNG&˄Igb?Lls.Yz"uȨnH̶t;0!ƍ&M-Rdxn6lpn&v gR2L0aX,VKEC ܨۀflݺUgdLc}+ KAF @'7|"yG}a+vtR\\K\ ⟑7~@8#8P 9s&G]g?Y)gT 8s…tӻlٲ[س?܏zںu d޽H^X]yo D<8cΉD"[t AQ1o޼Dܟ2aʈ&?׃ 6nt,=8_s"e_VF^;Ai}ћ{zztyw͚5dυ?~Ϫ_v z(գ{5ŏ9NRǕk@=Tt73{ӦM,r޽{˹}4zWH497_y+"頳m۶X ***^5j\窿Zz C1 :=gXٳ|dӱ{UkS7I갻@ 9vڵkۋ 0ޢ>o.SG~VV«%L3`(W^H, ~*tSm?k2ů("@j"p >Dt.hoo\p"Ysj~#R&@Ǐe˖Ÿ+BHoyysg{~5A7₟q9-|:@GtbT---x xܤbY"`E >OԚUJ鈐LݞQF]jժFjL^?Z\\ӧ_")?Bi0.qڏo;@R0A.@ KJ{Y>utuuEtO02/--]~V$W})?b-\cE*iN#% ݖ=S sf̘ 6\cuO`'ri*,,5\C_>"ӂŗ|~">ݫ>9kK 9 m F@ Mb@M7(1^(m̙3\h2S{ݺu=!'J9pߤP=lmmK=r4V6zIHyW B@[ڇQ T&Å}6Wy] c}v~X`Ł-4h.^݁G|m9߽5B g,ޔ @ӀS@OO@8e ΅em:N,e\gL vZhNBs!ZiqEP#^B   *PFJi* e(i"%d چot9YIDAT1`;Bs=-.G?!pg, (³0`q ;UIMMem7:v<'NsVxxNywG/!Р@~(lD}, ; i=>ؾ`9Os+=~p [XTa`q`Pm =~<<w|8L(ؑ.;*v4,#˅wx`WWyw# & Afh`,[ꎀAϼfe: " i?w]R/YIENDB`ic14OwPNG  IHDRx IDATxyU1"B * ,BQ et^qF|GǕgWAQATE("C0 $$Y:dߓ^[V:sϭ=y>?g>g-7QPHA$H=/ jĢV#&Q i:I>@GQǑvQ-i@ J}g3;H_T*I!p&R=i~Q+'7QՐZE#|8R7MQɽ\Ž_3^؇jHg"n?+Kd!J *L ?,هÒ{T"/Ο?+V~566~ھgvyoo ̱chha?l_O9FGG7V#: z9{U~ժOmA[h\_n/]߷.555iӦ^O?wq9Ti(% abTigfdL;rݺuonnWJ0Z)4<~_l/~_ر+۶mŋO>WS!(Z%D &q~_~pIcp$F5eDz^ahoo?oÆ g>Uz`KAp lH@o bV=a˖-'RGp_  k׮=s}82fvҟXmmm_gɾ]z L0.ĪUyᇿT AvA9@ D%RKvҟwq/[lu:&=R@ѓ }XQDԫ* k$◿\ }:y &Wp@ T#sy:D>+駟*qD.NX߶mۿ> DeΝ;/kfʭ ;0P7T'?FFFJwdi0wO[; @VY㏟JyJ iQߔmixxxt:ccc֭[Oj>\yy (>'n9bd_s@$'O?ԧT{@kmmj8H.]zXt3Wq W@,$Y~nyݿ~k^ !A$Q_vg6,`_nhVLSH.]@TK䐨~oNѴ\&% x; X_!ܹsO!ݰ,c[n RC(nzꇑןoDIrDؾ0'?yR .\.XCMI~|׮]K7b z{EAMJ@Է 89o~MMM#x`z^w*v@ c:g齢/^|'}2A{{r5.q Pu+f Ucl͚5P`$y3g|3-XoUH@FoBF %<}3>b+ 3{O?f˖-cpP@|w<.n.Dn;IM d+ Z7onnt`m짊p+)?}tڱyT[G s ~B?!v]pG sfEWؿlF2tvv^W[!8 {ߦ&oVR&N-[|G,===9V8H_0::.@E @`[mmmWI78p8U*mV_!lٲϩ Q_mvljjT[ <U3kck8묳c˜??qf2_iӦJ70pyU"?E|$Yw(Vr/—[MGG-j| `–{ٿ_(#7&pꫯ>E׫tYf~x< `8@??lllLA@};@9 Wq0v 7WY?3tKR5 s^0#D-=ǫ:::nnHP_ mk^^ T0Ԉ8^yG2::%ݐx衇>b@REK7 Or50 njjF@}׷%Àzey_UMH8/zJu跾m7 e,/>˗/S^&@qW^ {NYוQtfttc;D N]IJ7nw< Tc|p+8M@6Xb8(("^+A? d֛ܢ_m2577ϖn0Ybll=Wjr@o9mD]gL"@Pw38R_+ͼ XCbz衇I7zB:19>x>rF馛'P$I*"f dڵWM3ԐB}n(Cw_-ZZZAVsB(uM.n(R6z#󆞺zloxw}y5%7Oy7o{_ gou7:=-)7صkדj `g9Vڎ9 EG|\/rpAA Fx# ~/z2!}}}KkL~2^r2Gq?xC\ o[2P}x|)B~]ҭ%J%t>oo{F{[?xDo~'I7(䯓 1 /ՔhUjó>55~0a  %X88gΜJ7W(GA}M:SwVFv,CbÆ ?U/EsEߏOtDxpӳ:5[5~5 `^,Xz+DߓOnD G:>ԤOs b?!۶mF@?44 3IHwZSo9? XhkkGHS. , ۯө Ꮯ\3CM U) 4?88(Ĉǣ_wnKC/zыS|&ľnj D8K@bΙ?Vx*`M}Џ*8$'_Qz⿼6$ e~_Gq&q? J7)JH HA7aBJT]wQ5):qxY(0$ ? ohH@J<( 8! Cr½+'*"`Yd,Zjv0CI7 )J2G UdŊx u=4gΜOH7 )_Gooxr"j~Bĺu~ԉ# c}^aHG?x po;֭[U MR @'|+ C8#ƃg{C  ƛNg}I!9ٗH4hiiC!Gt`ٲeߕnR Dw7ܷs hkkNRPxxʕ?nR{w `_ٕJggj\s@ $}2SaHTv%X;H@2@GTDڴiӕ C $j(EjA*C@Zۼyl!@TCkNg㏡sA $a۶mtÐ *+c .|$J7 )bZq'KW) u 1_~[DTI) hnnMaHU FNЅ𖖖;Q݅p3<眙j'A*Wi#0@żs@A+ u @kk\!@T5~ѬI$nR DUCo6NRxHaHUO$::!@+` :I C H%=ՊXmW!&pu!kЅ>!]]]OH7 )"/ 'j yo HtÐ R vl``7~[T@$E C H5)F~[R@$z4>7!l@-P??c?V@UH$~b[*0@c"Wl :~;V@$Qhn@ 6$?nR DMbXN"X/0@ĝ׳  I`tÐ j\* eLЅ r@_W1fO4J )fq@w+gI,@"*@ZY<3TI,&*@ƼsHJKUHe@^S@$nRYiŊK^̎7{.?[u

` H ]W>* hX7SZ12rBRH~4_?KR>Qh[0 o@P@ @#߾U H @}y[ˬzn}!*@,ͅhii;v(-X5mX5zOm|޺뭾loX۳u; B!$ P*᷶V%AK¦VoOL$[=Yܪ y@!$ ڪĠe&okό-z,^ΦPM" H y`w{{{U"oے?z~Ѳ?2$]vՌ@ K( UYN9Q7aQJ df_VR%׳ A!$ `'DsDaFB9h޼[uӧJ8I .(/BRH@$`ҷyWWWQNJ@AZG͙+l@P@ ȳ0wwwO (1(%;0T:.gx}=E YD!$ IN===#( AY[&Wvx|slЕ8@!$ `o'sw`(1e LՀ͍HV_~xV+6s *@,:&%{,E_j-+N)۲qom\TAgM&{=+$JA0"\ k`qk'ʜ ( U]e_ ]&v[+a h᭺r)X{'Sm" H yd=;ىNtzJB(2#@#ۯA'[9YG!$\gvⷓY.q JJLJ@r c5bѯ! *@,:'ÒOܤT DW$`˂ٻ px9VE YF!$虒xJ )$QJlZ -N2үg0 YE!$*a'lIj@ثknNjcUO# *@, $*[ǀ~l YD!$(t)Q2`@) eNJc5b`YSnb E*@eJN%"&qV^ux9VE@Ød K{) \˱*p7@!$D{\ WlzXx_d @Feo?V ˱*p @NJhzVrJ܍@>P@ @d̀U0`˲˱*q{ H Pj l`?cu=E@VQ@ @R оax9V%|S H ; 'oo]!^w9WiTApnWܱEt>@!$p'TR]-H S9H  -6 H [ 'w"uBRHV Saн]\F!$p+;;1Pm*@Nb/,@Q@ @J8I룻K\F!$p+$P@ @J8[\F!$p+Pn@Q@ ḕp( UpJ8ԇ[Pm*@H8n%í6 H $V}T [ IDAT p>BRH ǭC}UF!$V¡>ܪjTA@q+Pn@Q@ ḕp( UpJ8ԇ[Pm*@H8n%í6 H $V}T [ p>BRH ǭC}UF!$V¡>ܪJc- [ p>Pd7 H $V}ĩzp [ p>\Z@ [ p>Ņ?]!9*@H8n%MÃǼ.<=bmoXᷕ= H $w![f#[{C|ZܢB6˭ @mQ@ ḓpwd\-^^qcx5ߌBRH ǍC}S.(^2DjBRH G>PG%][/Jcxr H JHG?24 STq߀ȢTA@A\ ('2n mztH JHGTٛ\=2v,3LE!$Э@T0 BBR9T*@ K SQ@ ` tk >,3LE!$Э@T0J%@@H} Y*gBRnR05R@TI,~G K SQ@T"ҍB BBR9T*tЭ@T0J%0((` tk >,3LE!R H7 ) K SQ@T"ҍB BBR9T*o}ҍB BBR9T*@tЭ@T0J%#(` tk >,3LE!RnR05R@TD n Gq}Į`$ avS)gb* H7v8RN@ۦ) R0BR)( Dwwߤtc9#SQ@T"ҍB<'JLv *0]{?F9W"YG!RtH7 )p$&Bm*(J ( U*vF!E@; =x7ԅȖǼBE*\& bO{#[] HJMQH焃| /΍( U`/?^x?fF!E@n_EIBRhnR9 N o_aP@T"ҍB<' ? d^*@t"  bhӣe"w*T& '/ }T"ҍB<' >$qV$@!RlnR9 V y0KTDJ7 )pp0B$F .F!E@~խJ%YQH焃{Q" aA½:aW J%IQH焃{%O"PJ`t"  G#֛( U*ҍB<' ܋z> TDI7 )pp/tmB( U*ҍB<'<Ap_VJ%LQH@ .jTI,===KyN8.4yb& HJ`t" Ł&A~YM*ҍB<'<AۜD!R<'(sqqs}D덧:/BRt" Ł&A>~YM:ǞjR^U~֏}xVQH@ =kX'e5Q@$ҍB<'<г?;~YM:I`t" Ł&A7UHP 3ҍB<'<h?Tt" Ł&A+ƫN,J91<'<{9t <%*sqqs}%B|P Wd" H &yN8.4yǪ?d"@ H$]]]@MC: 󽞞eQ@ 1sA Gҹ0}r``~YE$ p+ +}׽@MRxRUH焃 sPL̂@LpB:!r{S- PaH焃IM_u,9xX̀ + u9 nt"Bj+׸d珿",nR9 ntBBҍOV~y:vx;w,nL:@Lp---Sbǎ5.rnmm-D[[[! uvvNIzM6$H7 )pT"2$(%So%P:I !EVRX2I;d kPrKQɿ3y@!HFg!EVD-$˧${;5Y* u yN8[tX4{a2`~tc9oԲ? CBR' !!EVJ5"J lȚԢM7I$=R?K- HDwyN8[aR4#(&]>P&a'} զI*syN8[vRğasfqޝ^;7TD}[yN8[QujEP $@6r|T·KuBR'l۶&!EVd/G/5L#LL ȚԪ~0闛g%k] b5.btÐ" p+ދ;)|4dogo.z,稄LyHϮP@$͛7ϖnR9 nILWJ,q"L ȢԢ$ğ{BR'lذ*!EVeizJ%r&A o&]>XI~V* u ڵk/nR9 nILNѵ#, @-9nCO+ u +.nR9 nETb@L*@ r&'N"XdH7 )pԇk@9#y>N\8؏ßynRpW">r8MMMw) uj\[pפ$!>M7o{f]-g(f79p5'؝;g )%re #<!E%[&>M7vmNԇ@9tٴi HDpw~RaHQ@vitSwrobЫ@I$W\qř CJMWE| nlD'B]a,]{ H?׿~tÐgx=u{å:9R e…ŻsPI]0J]{F^`ƬYnRT2.u<ҳ 78R e޼y곞")PJc?e t㐠ҁPG t@H}-3L[njI)PE ۤ nq]rJޯ@F#U]Z A8ȏCxI7 ;/ިm:qvq >C(gqГO %uEtoN-5|4E7߲o .G Iqx}9B:kГP#:7hwC ഈ}B ~zHZZZ @$4', W@H}+3L\zN)-跘37m4[HP@jtcrr >COO5.zҩ'Zj&L8`˗IBsȦ=蓨 ԇ@9tioo5S'aIA1't @?jC=x4/W| n,[[ ITWP@5! Fh$~; DJNou*׾@H}+3L5k\ xŧNOOy"A P!63 hZzoftUO>-.;@##F+HjM@hφ6?|46?oB$GmrFoS5#gc HjMaDkgoֿ2Wpe>j#3PM<̷(X3}ȏ׷QԚ0~ uuuy[yK~uAV:~9 Ռ0(ڵkn(Q^ՃΝ;]*rO-۟o2Zrvgqx&$~xK7 ðP3`utthkk+Dkkk!vؑJ̿MA^ Pj>jS[>466ީxy1뮻fCaˡRb#l,7&%-GmrFҠ'7jJPo؏Μ9M~n,=w0,5 V;A+V*wu׿q0WPo )u P*Getc @Dj`6 aJ#iQ3'P]wri2W *7lݺf"ECQa= ڃbZa[[ QjY/5~nџ ` h @U tl(l0 [5=(jogAеAcc]+"Ĺ XtG?$IDCA{$g XKGmrvgŋ_o )&{Q~n4$ ÖFŴ"8-} H} /ˏ3Ԥ7"nqDGGҍF``W%ߵXntu >r#Ĺ Pt GJC{@Űw`z9K~Q72xI`?;f#MppK I#fATyƻT@PcJL͛7=Rap@ acArR9g~.9J?<h9"_,ptrraԠ60a! H}PY*笲~05"7w~F aGԀ5(2~WQoPrJ[?WyDX@KK˃ҍ5rTQ(gHЎ$90}6@Ɂ1o Gm!.ׯuu =mpɵJ7&I2YG|R喗rW.T&{6lQ1 ҃_1垗.ϼsk׮q* kL]K>"ݠ=>j_{f߼ԘR ~ӳRQ26~Qא-ZttiiiyH_CH 0s9 >XwrCoqtCCÕҍ ܤs+=y qzHt#oT-DM')l#m(> 8(oڰaEoo=X5y/d`~;666$ϟU|~#ja@?޴u9ҍ ܠAt*>'Ro#5ÀUO}S,hzӿQo/HP_WYbůݽoo߬g/ه#Bz|!0e7}' 4K7>c*_c1¶] X?ҭdhll|?#lԕUx'Fettt_ *ٳmA1@hhhVM߼?Gtp#7]ҍjî]ּ=Ig_g$]07 ۻAQ@?g?V]j|@7csV@Y|1__3ٿ^!/1د ḵk_WcT'fÔZFė8樣:ot#ꢿsJ/^Ru@k~;Gy& [jԿ:7>d['wttUIDAT@e w}k__ׇK ( G>r@t#Čvm_WKeJ̭Py/nzR ?A>ϣ?!V0CM>n\ Y|}*g쇥 zo'$6Dqƻx:5U Q[@UtOr8aW mg> 9~w~7i/QNVx!f͚;; @^{~kߢ%I{$u(0طS'ϛ7 lݺ#<j2-X{-&+aɿ'~I9̀`_/e|Y+ccc ,Ljy_s/̿u? ĕs;`b`~t)gÆ z<]v袋Q_OD+xϟb:` 2e*\5릛n:EC~`m7կ~<짓`qrɟP` 2oe)6דf͚uc5 =K_?<'X:P㫯$$~1PK^2_jsՍX쬛oM K,57K{a$E) 0`> dJ4[k (.\x0/@inn^z=뷗~}_O #?$q$~6p%`(~UB7vܹ+?~͇}H0-*ÁX?N9>m۶Ǥ;$@x{)so 7_ $ $|@@^ `n h=?97oߺդw1c~G'~s?ά?o >K7j%Թl(\/~[ҝ`:ttt,3gwkoׯ'J3T,_:O%Q[Q榀D>K.qhhht'>״m۶ӟ~Ae8}rpoNE=KwK@K@s]P7v-<`D5>>{os~al|g?| Of,'Jiج?l߼uǟU'-j9` --#vꩧG^VxTџՏG?Nվj|e4l?ά5%Jt('氠5E@wӾӂ ~cǎE! AwwƆ[~3׉_OZ>;緗 Y_%?Nعrf[>@pU@wfΜ.M$=@@vƳ_8?9o=߼{ғ=go^3Q+Y?Ar`G "`4U Ψ;[?}o_藶oܸ!/?^/o۳}sOYp_0~?8A-j@ض@Ԋ5E\4Zt ʀ&*б>;ο:ք҃&@|w___/x~Cu|=,[-{o~og?;gg=ЇNۦ%{{L0AMTOr?(-`Dl 3{U Ã() (FlIʂ- Qq:A\ &t;n$x&ћ{&NҾ9gf:PIߞS?;3LPj5 U(0gl!0gRpZ`ˁ-FlQd+fUD>bփ =,g&${{L0YI^ד{\ JCH"vXlW Wt4B`ݑRA0`[qBH% JGX?YX?4$w&&zoW _'fOߞIߞ+M${ Z h D 5)A1#FlQMVSAK9J=[&`b7݄Ivgf9N'&}}pIe~??䚸"=%2;ePt JA[(qGVGD>b }Whaj2밓Y7$|{oG%~=~?d"*#Lp)A؂`Kì8L,#E`'&tgoDo͘67 ?I{J@&RR`AP`- 0D!ePQv ;=&`K ?l=C(C\+F+aR`ȁ` - AY!*^]&AYrNQLvb7݄I&L7>, ?8ˏJqg$~+A!#A9;WSWس`B&v{&oM%`&~X/uT|!#ab`ˁ-AQeee"((yTC}Ł(f>}Dl![% (Q`Gp@ rTGy0۱W 裒}% Q-LJA9px5ZOȒ!b ] !~dvzHH8J0 ȲP{ii i _")%,P%EA'A@/ "݁͡?AA/^i|HFy,2 Yu[tRt[ ](;i Y  m)?})re];/~ɝwJ/_+VxG5kּgÆ G>+ٺu>c_v}rJ9uxx߳ccc?K!?/Jצ'&&J#SSS+I!K!'c)]wkxyZ!^[7F#{youo_>MEgի]y衇sw1<袋~;|:[NKvJnVw d]@[[eA!9[7pë?@q ɰ}JdiE8a*W&W%E/Ϲ38I)sSIjժws=G_{??8c[󸝒 bW2rOF~+~u{S/$uޗ|aٱc?_b-2sIKϖX/`wgHibbd'Hy{a+>}G{?j=&JIN9n!0h 3boWϸ[_xgv} Ek<^Oo&W]uˎ>Eˁ^vdU ίGy^dO0p:7 3ɣʕ+.{az@@;xDNo6g?ӟVrpQ}K@l}yz`{’ }~ŊǞx≿5/-Zu@ПxmذvFrԖ_&|K1W\jժwy晇G!H +TVg< P AyA=ЧDYv0#g ͆V3'z衇] />66xhhs~F葁Zj`F_ -/I~OugwV[&_1_~GZЬ vW`d=7kmo8_A֭{_rN}` LLL,O^Ix--V0]^ ;[lȾ_Ҿ~|?pTw@2]v n[  gq[nRtK98 ѱ֯_g{. X@EKsoZ+_oqyW O֭{~L]?Cի]`ȃmw>=y@jˀoP n_6ɋ-zۿ4556(@MLLܵm۶8jvZ/G[__j֭pT~TMOO{=&jhvP?y?i6`(7nW5 .9_=:_yW^ݻwXCرַ5m4~o67{v_|;Ku?+y_q/+cY<yC='$uM\t7&JhXClǃ!r5k;11qgO3Z6566;xKYrKNBzб鱱vmo2Q^W Pxv/}[͆ 5ɣ/~yڎd$Wz=;C_QYD[ Ozғ裏~6P\릓%J ng>sEoOi֭_5 PN4vpme?htt H\L5?[l-U^{Z}K[ ?G?sϞ=焾@+^Qtr.\׿BM;ws&r_e s_oZ J^x?'jH@R(iVիbzzz$ U*h#2/͛7.ONQ@Zz뭿-<R:@ T8∧ڵ7gBr8ҥK}jJ i ַY)@&֯_KVT]to㷅@L }-[tz8`k=W'}/\ cǎӟ'& qe&BirVԻ`FÓ/LMM= /zի^uP5J =_>7@]-,es0 PPԛnx ftt;hn Py$@ tg7oЯFGG^ q- l7NMM @ƙO t'_tEɁ[BH //g&ߧ#%Х \p+S(͞={=蠃W/<,R>7Nȫ;w'> (~_sow۷o?1H ى-_`;C(`PlܸJj v3/}3|F K;̜?΁;v8#%K(R t:;䦓|u֯) K^-+=. H/+>ߏC`MNNGsKlV9T*ry5\7B(_Sx@74tI/z$ fhhF{w*y0@_@Q[o%@O ։u8ܹGoxPp%K#](@P@5*9u7n|;0fGO=#l r 7R-/| -, *ӟ׎sm߾GЧ:}qRן1<<76x CgzޡO߼yWBvuY >_п[o~246>>dyy5 @\Ff֭߈?={(`yO@ usq{BLx?У3k||7"7VXQk<.j\)tի6 蝩-qDQ+g$>Yo@@om۶x&xfTQ4ڐsN۷t'?TvT 2ͯ[/7~"cϞ=WFwT? `X%zdavm~.G W"%tUoqM7=oll}~`v{kE422rK Eht?{>R#xNT@N_ h4֯[g?=>>4 /VT4w!ci/Y/_o,@| ox!v@J)ysNi͚5gN ڐ֯K~?h п&''7h絀ΟoڿgگZ7XQ].ekCHW*|z@uP뵀 _+ ޯ ^Yccc|4rd_7_<>  .jMN }kzzzSԋv/9oIP׾NNN>ۆ )j,vw@!R,ȿRO}sƻhe(4~%###7Qo~o@2{0@(N__=N{]FB$s΋Y.h_+@+'mܳ7o|j08Kwh.gD .h;AvoNNNn}˚5kP}`]*WKقWy hawx _/γw7`0]ve~%`eWBn_?NOO)G^0,^ o˗]0&''<>$ Wz 9xxx7`]wuEw? cVV_?O4^o`۶mۏV^ 0@!^jF /~Z; cv0:8, }#[oy idq|߾So@1{ aP<9Q=@+Z,@Ȟ344t^ө]@a0:yzŴ|uGDŽ^@qܹsqc+m_z <P\SSS;:CP9 .F&ݻ bK5~ m<lGypۺu_xΕW^y\0<<|k¦8Bx"cllhoPy Vc r ׯ_ zx2@vډWϏPdhΝ; L3uy?VPy s̞$M!))@B e˖}6rI0__,f0%/Q@lݺ IDATQT wj @^_)>u׽?& 2hQ@;]~3_T?:``t`+WSM>u@ ={)N,j|({i= ߶m4j=J~r_$N9Q{* -?7GFF ɏ^ E)f?? 77RoB&b=CqKdoyp {(O@@nus`r7<k`LKs^.-DŽD%Nq|tVIP@kGШAq`RT??{ʕ+1B1W5W/z{N\rOKUrwj"?/wG{ Z?AR@lrNLJdYHI ܁e'v P@}G_98޽Ћ?;K}!MG)-='<9Q RZh;#29jIkvЋv_o0Ksgv<*Eu]w}2r `?G_'B/bKjE̜0s":vړ(8s׿7^NŹ.Q3N<912n۶moHv8]("7?0)fꪫ>z_R/~G Z"%9/`bFE`xxQo>~ @@ w} / mi+S.{V@5ija7$?pz \nݷC/`GZiƙa&@%\ri `M/x~M v m۶ B^C[ ?@ Bs&'.< ;y[~@v}sKhglJK ?8 R\zv(D_|qQ{oP) aC/^CÒȠ?>QrOE_򗟈  x _ L;;$2)*EbŊFB+7(+Y7ٟ<¥?#B˥;YّAЏ6mtV4M qQWz ~`Wqz^*g yH@)]U͜%y544tEU n_\ _xWYKxi {sѱ"B&yce32_ٳho^XyK,TKXn`B"EM局ݙ`lllu<y WV-_+.av_$ )_rikc 3kW4h*@}W+*)6lpZK8i s~ ?ȾU剑J_F P@pE>0)f^裏^zF7+D/S|g N87F_nU+`qߵk׵-ߨ >o)nyb|4O~?jP))CYWw^^z2tD~7XnЏFs_ب~@cvPy`Rx`[z[ Zÿ@$YGҚ=@~퟈ɎV E \L.WT_^Vֿ+Drۿ>H@ڻ-Ε < p } +@+ iKxEK4կGFF5"zXksۯ TV\hY)@F@ W&@UzQKoe2+D%,OlC @[x9<]VU$u+a'_z[Yտ+Dr.?xm޼ǑNP9Y,[C/XzO 2@I( @.l߾hophHyV;Q,Jc]p`N v`D{v!ZX$;kɜ}sM\@r/(C/XzV0Z@2+D$?T.|D @_{/Ε ]]T^ب % JbIp%K>z;im?tɻʥm]R@QfʛN bnXtB/Xz'z@drѱҦshkԸ~`uhnPˢHljժB/XzK={XD$\%!ğ%hopXHyNp=ephׯ_FKd]T~W h.8\Z %}Ds ds *T$v "N 䢮U$-؜ ygfJtR4{ "ʥ5,:=:}5 nM4 I+vh÷nЋi@D').('p›@Z@.?lNmܡ+B/VzQ?N=ԷF d'tuI N@ <ؓ֫R$aرcǵ+F "]4+sx9<[$WR}' if E7B"җSe,(}H@δ[$m_?C/TzK "}/(DtY .m1Ͻ?z[ \J/])ȩ/>z[ \بh[teH@SzR\}z[ ,;]K@MWG r'u] RHg[Q7])ȩ7pC/TzK "uߤU0όuhoph GzRr- P-&Sz]f<.9H@_IpmmJo)D$7O㻷yğ #9լo X+@r+W`),Y* D r'իO P-:翥?)ȩׯ^Jo)D$9<G 9}szRlذ R@亿k Q L=~$[<7[$?W =)6nxNJo)Dd`N0K@Y${`? P- LtǻW|oTO -[\z[ $gz ]IM@Iu֋B/TzK "fM @>pՓ`헅^@D+GǶ, U cZz[ r]$H@Nu[$uR$y&B"2p9c[ീI@uR$ou\ cǎC/TzK ";NS(߻#9Փ`׮]7^@D2<{] zUgJo)DdP3vP`})ȩ RwFGhTo Wݡ*AޟP,={"RS=) R@O7-KPgY?e*GG d zUP- z] zR_V^@D><:{N zR_ֆ^@D5P< r+ho #W)Bܟ:ȥH@N]$ %*}rd_d/.?p[PjH.M.bu)tWGϳ  TV@. @)Ct)/-6|bcJ/JH.v3MzI/.푀\cʣ0"9  &<(I| 3-ȯH@N)Ȅ =8Z6Si/cS)<"9  &<|k]\'jc,RSŬ&@qzXx _ݲc,RS 2(nBʃL'KL(Ѓ gI/.ync)RS 2(nBɃNyiy7;Km=PR @qyٲeKϲMV.7^^EoAyuZ^W^ >^~+?cu֝giu c)RS 2(n}`ߵʏ,ʫ.bs_[V yPR @qrOxd7Q^~Kȹo K dBP4nӤU l\~{y(/g^?U _T}%@+ H@N)Ȅ^Yi&do@ڨ>V dBP(jVk2v`PD rJ@&ō`Vvz y ٛ ߪR @qX(]<P)GZ.*lv <<L(@mݜcXOP0("9  FP['ah1-K*{ @W H@N)ȄQԗ. o~=HU.8F0 "9  FP_kb9[Wz`@D rJ@&ō4hv*R @qhuQh1J0׃TG0("9  FX/ J 0yMA@E rJ@&ōfk#s ~=ȿH@N)ȄQ4رuCA@E rJ@&ō6dh>E rJ@&ōNFۯzCR @qh۵Q. `׃,\ L(@si=Ь׃,\ L(@sN^s׃,\ L(@sݬvƮ];_p}(/RS 2(nͥ>Z=0 ׇ "9  F\@c 0"9  ƀ\A>Q dBPpU`}_))P7ō0"9  ƀӜ>C dBPpS7`L(NsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} H@N)Ȅ14g}7`LpNsGqc} zi/R Nqci(n׫^a))07欏+Po:))07欏Ѓu4))07欏NyP))07欏H_(LpNsGqc}# \o2+RS 2a)n 8Yōѝ" y* "9 ƀӜQX1w9E))07欏hO^U'k!E))07欏h]_ LpNsGqc}4׫?􀞧b@ E rJ@& 8ō9룸>d\Zr/<~ѱ~=Kݛ^.]z\{tٻ6#U d€Sp>룶4Ғ)_pLw~yRyrdH MD rJ@& 8ō9룸>Jc]+k,_w'J,RS 2a)n 8Yō1W*'&ri7}-_Xo@%E))07欏دc|\m5>3o[I d€Sp>c4?̔vX H@N)Ȅ14g}7G{+(H@N)Ȅ14g}7G>)6+ H@N)Ȅ14g}7E_ gN,\.z{yb6%Lp8>Tbv[C%y`i y))07EpZa}7E^i ]oY\`‹Lp"8>nW f w,zJw>oQ(RS 2a)n:(n>k?Rosq%[+j M d€SuiQu}|OMi} ><Lp8>"N3W 7}h.I d€SqiQq}ڿ/7}iN y))07Epe}7E[il;\?Cٗ(E))07Ep:a}7E[i  7}uNKȓH@N)Ȅ)ڀ 룸)v_+GʾkQQ d€SiQi}tR4?I *ULp" 8>{迟MU @QD rJ@& 8MQnXMGV zÿRmmtNqD rJ@& 8MnY͠NF@EI,<)H@N)Ȅ' Gq3_]~27\v0"9 f4X vf@k\]j]ݾ0y_ =ίᵭPVuKp!U**򥵿jP[Vn^** * A~ $$$Mv!6ߙ]Nr3s眙33`@+ī ?U?@Tf0#0S0hpU NS*(kL gͿ;Toٳu 6<Z'^4 B͏wӿMUe BC``@+īP&!?Uі螲) 48*Iȏxj~6?mOV   hxj$G 5?Uj g|G``@+īP&!?UQ/2E-VSb(U:L) 48*iȏxb~45zqW@BlpW!G@61kw%L) 48*iȏxb~]\/K(u|E``@+ī!?UѶ2ctOi) 48*iȏxb~1t/ ߥ;:L) 48*iȏxb~Tg pԄеx0E``@+ī!?UQ7˞CU ) `OVW!68MC~ī @ @7Uf=:L) 48*iȏxb~Ϧ/`tOy@W@BlpW!G\@5Nt5L) 48*iȏxb~؈4]~hz<|gSx  N i#^s 1L) PB9^  h xEAW!BgSx a C~īxW!3)<Z0^Q!?UA<ǫ@A(* U `OV Wzȏxb~*x0E``@+P+ B=G 1?xb<"0S0(#^s 1L) PB9^  h xEAW!BgSx a C~īxW!3)<Z0^Q!?UA<ǫ@A(* U `OV Wzȏxb~*x0E``@+P+ B=G 1?xb<"0S0(#^s 1L) PB9^  h xEAW!BgSx a C~īxW!3)<Ŗ;2(#^s 1L) QI v Wzȏxb~*x0E`2NR a C~īxW!3)<Ŋ|1"0^Q!?UA<ǫb:I.PB9^ [BA(* U `Oelu` xEAW!BgSx-`$P+ B=G 1?xb<"0S 2(#^s 1L) ͮBA(* U `Oelr` xEAW!BgSx-iI v Wzȏxb~*x0E`2]')؅0^Q!?UA<ǫbH>AA(* U `OECBA(* U `Oelt` xEAW!BgSx-`$P+ B=G 1?xb<"0SlBA(* U `Oew` xEAW!BgSx cDa C~īxW!3)<Ŗ:I.PB9^ [:I v Wzȏxb~*x0E`2ֺNR a C~īxW!3)<Ŗu](#^s 1L)V ÿu](#^"×O 4<Ŗ$P+ =G%?R c@/ᬈgb<=xJu]hp#^#U#S@YUI [JI vWzȏx.熩M sbr#x|{0"D`X1t$+ =Bk?sǷ=.<Ŗ$+ =Bˏ1"@`2NR NC寚 IDAT~ Pmn 7<Ŗu]hp!߾Y1C`2NR NC~ Ps۟d&_ [B0!&L&8@`X1t$+ =Bť3uL) B0! #0SlNR NC~ P۞Y <Ŗ$+ =B)y 5-<Ŗ$+ =BE6>2 x )F1"'^a!?B(^<F`2NR NC~ PĺFUEF@) \')؅'^a!?B(n;e 0SlNR NC~ Pik` [ [}B0!n?YkT1><Ŗp$+ =BE_~d7@k +0@d+ =BEUuMOe:I.48 @BoCtbu]hp!P-3ں#<Ŗp$+ =Bx-I vWzB5d]Y@ +@d+ =BM <Ŗp$+ =B!u)"0SlNR NC~ n듀> 0S7nu]hp!P@) ]')؅'^a!?Bkc>= Xy:<Ŗp$+ =B*#SC`X16lp$+ =B><ŖI vWzBE铀U.v) q`x@!Tu̮) ]')؅'^a!?BuNEdzex-I vWzByu2 +@d+ =B:zex-WB0!Ikٵk<|Ͻi|' ˮ>@0u\~xEbcˮM [7\'*؅'^a!?w\WO>e|hhq n^v  hxWCs-?o08ϮU ˮM +… 1"'^a!?Fw\U5 ݢ {&  48 @\7#*Zz&" :zU5x-B0uC\~x6WoܸqB&|Z'^a!?w\y3_z)kk"@FEeWI֛xJ[TkB0u\~x.u| __h|Æ : ``@++ =Grݨ.׿;睱9l|ǎ/ n:{|cw,luOv1ܓ7 + :Q.48 @֬Yڵkպu묨ﲿZ~ LH6t/ պZe0g0hp#^$jd`t[s?Wegc'?#0Sl:Q.48 @4KUWYț*gͿ5>]|Z'^a!?UYd^  n*x.jh>HO +:Q.48 @646L|_tֿ¿ui +y0"'^a!?IԥfȦI`bP\ngbX`X1Ν{D+ =GR5Km4Gia L׿ ? Q_4Ko@wH~<ŊC:Q.48 @L.5C6M#gUk;Eeٚ.1 0Ssw׉ vWzȏxU,mL۪k ?v<5edhY/0Swg]'*؅'^a!?UY,rfi5e To~U_o?!} +i׉ vWzȏxUCZQ iٿϪF_5*#V +w)׉ vWzȏxe,:U01\~(xW:unx[o=u]hp#^F˲fibEF@7b<濨oyM{R`X1nr`xW&M*VUSdgUc_7&/?%= +71׉ vWzȏxo4JM56dj THjߤoC_I~ӥ<Ŋ_]'*؅'^a!?UaR5K&R Mky 1|_7g/uOb\wu:Q.48 @;U%׍QS@# j⫨m>oH`4iL( _v`xWنI,663ʌ Me7]v}_ }& 7E1X1.NT NC~ītFƦ 5LŽFJӯku1 I)V K.B0*?*],F6Ff)U5TGLQ׿ ?˚}U_$VI`71iZ`'X1.NT NC~ī*ƨ1PPMP8\6E50W`  7d y4;u]hp#^I풪MRz5$@oCdzѯ64~ {~X1D+ =G*j҆Iu.Z7K#ӄL#Ew`tS!ƳI_oB K4f̜9׉ vWzȏxovJM$WQc M`tWij5UI7<ņ_:Q.48 @e%Ոtݝ*MM/;Pv$(& 1azoq`xWKҊvJ@lewM.t!ٴ5Ɵ?)V =u]hp#^ T;UwFjxt;P6  1M*wObx≇NT NC~+Ei&;&vcT(3Յ?_~!o^#& ? d{+ =GaR5IwAM"3m64swF`X3E`d{+ =G0jf0UL&tM' >1i, NV NC~ī& xb< /AL7H`T5d2. Wzȏx.!5L6 ⹛ 1i_)mrfaÆ]'+؃'^a!?UQ{Ԧ@pEOL3xHM [x000K l(E-0qjT Pv8sRL53xCS "@ luBMj, ȏ8e;?\x[3@~o~j :A/  >5(LxXz, Y>#BhRoSBgN<ÅSѩbXba a !4)[P!?TA<ǩP>zQlih :^&z7?k5 mL4^s 7{.W(v> BCȏr~)xБ#Ǡ1 f ].8s_އv(_0s_ BCȏz~q)x144ti#0S 3g{.^8ya%w C~ĥxK3NOwJ  N RओN:u‚=\w|,vlkG&}(+@~ģxG13իW,mvS 9Ы [ "@Ƽu‚=\R9ysД߀Pb9:-[v03~W`@Gc.2da$#?:i BFCj3)q( P, cѢE3E h ,2 䃿u҂\ ^|b)t ^toMAX#|Ŕs)t<#I@sSϩ .b",K]'-eA(P\ >9JAX #lŖs؊-tu]"5Ҿh 97;.ӝ!C- 4W1bg/?*gm @ pN]@gbvCCCNZC E}]RK޸Gx9?s<K/ȟ3ɚtk׮u҂TJ͟ zFUw[&k B=G8"?D<9SǛ 1;+V8u҂VZp?d|%#'V f C `ang ?P;t jw_u6>#&Fv-ov7Ur;,DW~#Ns 5xꩧ.<, 9r i@:` 1i/xkV c |8/Ф Bȏ8j~q*x(;CrH pNt¦gN^haBhR#Ns 5ʐ'bf@zj5*u ȕ {\'/pGQ8<4G;/bׂeHA B5G| 9?r<qW/rȏcSz5d@5#& 9"# =֮]{i LBYd7~yAV7iA~) S P駟6QnP)Boϭcz1d`g |) KuBZlAX+4އv(Kw҂0_ Xq) R P^{4tsvN 5vz  5L 逥tƤ =z]g/O݂ʮP _v X&~t7(KBgI$̞e/@b516?:}(v +GI7{Ҩ , $?Q A<ǣ@EsŤ  u0ϛdM|J _׎q>U B]!]A(+Hi_W-U`!b9*gb@N=cwT5d % )nwC]'1IAXu,Ԥ p^$Ţ'f27o Ih!b9*=fI/4tH_Nӫ 0kN<3g r.u BЪwӢdㆁ%}yb0tl7(Ă_1bgwvN  {& $u^@`uC]\Q(w(6(lLnPr#t!b9l*#& 9, 9r3oDj 鄥tȤ =W^3I bZBnEBH0~kx MK;9;aC-ɏpc~*xPO}br33oMO  @:b  |uCYBBeƍz+-ɿo]M B'b+ɏs~)x(";z,3dTdGU?X>( KY@:cN4Op.U lQ{*+-uEeK8/|Ӽ/5˵`QA* BU|V C PL Bod_E19S@&4d|ڧήf貱ТfÆ e7|u|k+e BMUAua 9$[:14TsrN 'u5L  {C:] M¢PQEE5 o_~~ 9ww 1ےfo_xedcwLߪ=- $?A<$-:[LrY>5x:OէS } PgI@:gMEEaC‰9 LhS_uy)տ'Nٿ6APA<3@7t'E>^R7tƦ"udvi 4 U Mw7aEab0z8hl! 3L<7b @iȩfiOJ `jQP@jHOL:fs…gNfhܴ(eBE7DW- UaYh ;Snb)nP۠u;R~sH %m~@`0y:KOy vQDah[G`է "? x&g2_$&_rYeO Nц g>󙷸Nhh*(,+vQTYQ"R{|!X 4-c)ɏn g@Ś5kfO  S_!t& DKAI ckWHw>TWXV- * ?Bx)$(TebW F[ߟ/ˊ9вݠ&. )?g9x}| @^Pdx oY hj,hiQhZV)"տCUV-MFA )?g9xxIb}iҳN{/pꩧ4U柉ZEšHT[ 6y4# dݺu <`%=_>Y6NnGgCuCΈ¢PW vP}CY1XvtQP GHA<!3ɼy&_h [`@GͮbR2- ,^@.*c ?Bx)!>. xKϟ:.BUχ]Tf !Uq+.տ^,*z:6# "խ'( '.LWy K/?hhд0Te±ߗ; ^AFAGHA<!3Cw yח 5]>|G\'9EUBФ(eaѕ EfU!hR 6} t!A~3RU-eBb]#$gs9-& .(h 'ru]:-U C]qXPLWBbY#$gk$9/x^iE2qҋdq:-u êbW Ȧ&l x+V%&K6cE x$&8,+dL6 Eתoz)){ ?Bx&W_E\AE9K/;y}uC7h(4- 6_MFMQ 6A~L<&M{r@jH=_t&BVBu&WA7GH3K֭[wCҋAϏc@X lٲGCBJqKؕ6@v ?ȏ gW~$!j@&NzL.Zm6 Įߊb;GH3mzG;_?5:I[DJ /p!nR[X(w;GH3-֯_k19 :KdM=c=2hgyftEISšwo A~L<ob?A|p޼yg@Pq] vUM]-3 I.<$O?'8ޖ$ hiXlo݂ ?Bx&f׊4T`15tJ@&Ns=(?YR8@!?ȏ gk>.e8Pv@={ァ(,b븉E`׿s,m۶+_P?' `Θ1g\_\L u*p=T?~As%˞_gxAN^V"wAظ/u<.XҗN1u?_~_!h<1 .xׅVu?=#FGGX,[R?1M5i8O^c^3vꩧz? dbկ~2a]1O֯_s[-?_ecU_)t\4O.첏r@Sd51>15]4?6o޼brsQNrXnBfC4y @&VL@2!w $?wqibr?/{5m^8q {öm7ȧ@@2c2A'ns?;wYbeE:1C}G۟>$v:1 X^Xt @&8r͂ ~r8^w1 Am11e2q7ow\Ln~}P_^bg1t @ce}G}!&K,/1//og2@@jT P&hzē1j?3QR21e)2@哀yasLz_> ^H eOկ>h֭+]d̙3̤WW?r @$`2t $)[nTpȺ}gP \PI@}B1뮻y%?6otQ/v?dh2S铀S\sͧ\l7o^WsVyh }pb ~w.D3U(2L.? X6> X4逸m?<`uݔrt_wLLd՝cll}sNJr_D-1c###?B` '&wwOe@0 *NND"@}o\}nݺv;LL6Uweϑ^WyOd"֚v1vկ~oB_n"vy< (.$]ӦN9w˳@?Hׯ#wMo?6@ϟ4N:b4/ THMSNH`@__!7o~ {yj_n6ydBS鳀;9眿M?P swuz({0?tSNHob ˖-駟bz1: OH/; ])?-[Q~_6.D.*@>c۶m?xrd_v?t `2Q ?0{q{bܿ/a4鳀U.(3Gxw~ &FFF?cD[F9??@z !`գ ?8>W3gjsmc4@SUљS IDAT&@Q^ pfϞ?ąeT@~p&L7G> ]B%sUˎv?5^(U/lU}w1[ly 4.]zyRs$KG?h(@jGjԧ322 ֮]{.r{׊O5pHGӀGtYg}dttt%lذaΟ&z?Ot*Su&W^ccc]0|駟^[{ &estOfHM) pm}};HO>oD_w?m4}u.& iMo?ǹ`|˖-O::Y7NK8u] 5tLyi={<1iӦ_ʍK80U0ky@6ꫯ^<ӏ};Fk_\-KP]  p}]lqƹs̟ͿsU٥uct/Խ P8>uֵ?mz[c#D3zutG޵iӦ'\b?{_zÆ s\f>?yW7ii PeH7L{@CZ\`ttٳg"&ܟOo35^hx=t˳>3P7h"TL՝&@/Oo߾n ?|XAQ=Qv @*UP~wrʇlٲ+W}Qմ_u濨/zOs?@Թ ?~ ?SLx?ew}MjC[?W˺:m_"ҿ@0m ?:&&5G%ʛSǹ:Ȇ.bzAn5 Pdȏ&gr|\\Rwq%>WNLmwh?ߤg rl&߹aÆ] z-Zeo>bj󿧘z;??L$LLM B.Xux6{o PdTP~&g'G>uֵ{>C/6\=JQ?LU 2 ЙcXd r$`ƌGXz ;sCΑMiC1U?34N@L ь?m6za//lj#eeoj)6'GM~G.5/o}&pڽbw_^ ضzgd+W_E@c4/5GO_ H2 /fq` ?|d})#g_\=?F@I e& eG&w%w@UFGG{%/9LLϏ._WT5<Xfȏ\;㕀D3~|z˖-k\/$}'>~1_t~e=R1OwU;4(cȏ_j ^;u….׋ t[_wuꢿE5U0R#@e_P ;'?yڵkt@7D-At~ֿ袿yͿ5Ti &Pw/@ii:k֬ݼy* }s]EUbd/LM#y^>1Z}}}G=n߾}iӦ?O?ԄgT#E44`LݽY^Ց4@zAn`Ɵ3wܟ^=FFF6Ha믺e4Y0L/Dz{ʎT  ѡ,Yrب CN| ?=m#鮿ylޑo54:/ Pv$@7 t@~L$:O۵kz}v-o9FUgv҆ điiCb|_+W&Y;\/^`<)';?KLmU7ewFOU7yѴ PH@+ٗT'|˗/%GO}(nS%UvU׽3U^ PM/d. T+VH#` vm۶>GqۅOw?ɟv׿h34L`ѽP ^Ⱦ`z,@)*zи^bfOqg7E7zh׿-4i0 2  X@2#`b"_y晥?|K.ÅYa~_21u׿y0:P4 ?}@#h\x.O]d=ؾ}%K\~CI vhѮ{6]1/zOu?x Pt9`#u;TjHtcs6o޼" CCC |}>Ze6M2O +S# ; ?}-@uQ`#o:?)_zm۶=-;SVl4EO֋i:mz7=O h%b]F@~@~5Lٟ馛9000g#nYr即fWUownMn/7埑2DzPK Qld4ezn,yqM΍^h\2666ٳ~MlԿ?UW5f#ac 5LF~E;S̀s= `2@^nkGu1im$WiD9q]S P7 $~>a6 :X̀1+dyg۟q04FYz'ӟm.~q%]Ɵ# ({6I#h*`Ł⹅G?gϟ6007񍏽E/:B7~Q㯺h?DrO^ӫ s,>WR#T@ŁS $:o_J\ބe˖ծt"3Ȳ^uvYLjjMnTnٸ u.c7N4ed:7&r=}ºpŸwqǹ?,366]!u117or?%q$α쳁y# Q`/F@T@d@ѳSs5k. ,ʕ+sw3<"BoWm_-5qծ/kj`PeE/S'. 0 2`20S?O>\SOݖ,w @)rggYbŊ_u]C=/Dq/Wm{]o.cMMT=`r?@р^1e@X^{???:{̛7k֬cӦM K$R?gΜ S>W"?Wt{ݦq T1>`:P|zPO&TGTBA@7ɅN|y[n)_xꩧnEmxSFFFKΝ_ߐ;^)1/53&MnUnorןL_ Pd&S&f@v2h:(2Jd$7Gp sYgpUW~g/_~C6mZ}-X* Γŋ)s= mޚk|QT;IïȯJ_۟uߤ7g&MN2Lee@ѤțE@j}O:OKk-r@N<"9CCCem۶]QM!yOަnݺN?ͻ{=o>k_o$'䑾Xkxю~Y_?WFv{m?@ԝz?@Fj*@J5P PM țy$P ?c;?qvK_ ?s嗟r~׿7w~by|kxH=&)y,UFMEڲeڤELCNkTkϮq]tY|ړj9Z?gΜtm%׫i?]_??;c8D:Zڝ_ۋ;i_v_vlU64 4wT'䈀T 3;L"c(2LLa`jT2B޴Yȫ*}/k*;iMwM3m6bNT5T&@є@٤țEA$P*F@թ"3l2d:@USE&A(PeA*USXhBB!PPuӨh,ZW߲7U* Mc4Qr<`2;2`j 95LY2 t恉SB!TSuݚ[Q՚]k/엍6٦\ӻ4[L^t@C@e 2s@gEf4(3TPMIW!lkn7e}Qsj˚|Uj4eWiuߤ P@Py0(3 LLL,BGkj,ZWߢuZ5U}צ_n??@,*3hAkjÚAPd2@g &2-B^L&EoYoWiU#u~M??L#d*@g M"swE92 i`j T1ږIqBȮ\ kn-TEknQs_ɯ~]o2ObT56L1`bLY2 uLB-U]LuTӺ&_5M7Uw44Pf@01T$P&ЋB5::[KUk77mhpm*S(2t&((3 uMB Yʚx]S_/kM}fߴoicL4a e&Y`bj&tQu EIսʺfV\NoWorSujc e(bb$*EBn:Rg3YOukrzT5hoe5ʌ2s$01 m !P/jb^߲^5uM~~ !Ћ)3t怉AP,h@hSMw!ZRԛ6&5m54-u )`b M!PXu5]{iM ?M?G)`j UM^ 6Bm5YwMtfÖ!Pjj4B6WgW%hE)P(pa$ B6ƺ:]6h.CXx{50\!Pd ݤ90@!BUr[5X݆IB(\'mAl]5 B!z p]X`&  MJ|!B B(t !jK{p@ >;IDAT~ %eC-IENDB`nicotine-plus-3.3.4/packaging/macos/setup.py000077700000000000000000000000001461625273200244742../windows/setup.pyustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/pypi/000077500000000000000000000000001461625273200172275ustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/pypi/upload_pypi_release.py000077500000000000000000000022161461625273200236320ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2020-2023 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import subprocess import sys def create_packages(): """Prepare source distribution and wheel.""" subprocess.check_call([sys.executable, "-m", "build", "--sdist", "--wheel"]) def upload_packages(): """Upload release to PyPI.""" subprocess.check_call([sys.executable, "-m", "twine", "upload", "dist/*"]) if __name__ == "__main__": create_packages() upload_packages() nicotine-plus-3.3.4/packaging/release/000077500000000000000000000000001461625273200176665ustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/release/generate_sha256_checksums.py000066400000000000000000000032471461625273200251750ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2021-2023 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import hashlib import os def generate_sha256_hashes(): """Generates SHA256 checksums for files placed in the same folder as this script.""" current_folder_path = os.path.dirname(os.path.realpath(__file__)) current_script_name = os.path.basename(os.path.realpath(__file__)) for entry in os.scandir(current_folder_path): if not entry.is_file(): continue if entry.name == current_script_name: continue if entry.name.endswith(".sha256"): continue sha256_hash = hashlib.sha256() with open(entry.path, "rb") as file_handle: sha256_hash.update(file_handle.read()) with open(entry.path + ".sha256", "w", encoding="utf-8") as file_handle: output = sha256_hash.hexdigest() + " " + os.path.basename(entry.name) file_handle.write(output) if __name__ == "__main__": generate_sha256_hashes() nicotine-plus-3.3.4/packaging/windows/000077500000000000000000000000001461625273200177405ustar00rootroot00000000000000nicotine-plus-3.3.4/packaging/windows/dependencies.py000077500000000000000000000041571461625273200227520ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2020-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import os import subprocess def install_pacman(): """Install dependencies from the main MinGW repos.""" arch = os.environ.get("ARCH", "x86_64") prefix = f"mingw-w64-{arch}-" mingw_type = "mingw32" if arch == "i686" else "mingw64" gtk_version = os.environ.get("NICOTINE_GTK_VERSION", "4") use_libadwaita = (gtk_version == "4" and os.environ.get("NICOTINE_LIBADWAITA") == "1") packages = [f"{prefix}ca-certificates", f"{prefix}gettext-tools", f"{prefix}gtk{gtk_version}", f"{prefix}python-build", f"{prefix}python-cx-freeze", f"{prefix}python-pycodestyle", f"{prefix}python-pylint", f"{prefix}python-gobject"] if gtk_version == "3": packages.append(f"{prefix}gspell") if use_libadwaita: packages.append(f"{prefix}libadwaita") subprocess.check_call(["pacman", "--noconfirm", "-S", "--needed"] + packages) # Downgrade GTK for now due to regression in scrolling performance downgrade_packages = [f"{prefix}gtk4-4.14.3-1-any.pkg.tar.zst"] for package in downgrade_packages: subprocess.check_call(["curl", "-O", f"https://repo.msys2.org/mingw/{mingw_type}/{package}"]) subprocess.check_call(["pacman", "--noconfirm", "-U"] + downgrade_packages) if __name__ == "__main__": install_pacman() nicotine-plus-3.3.4/packaging/windows/icon.ico000066400000000000000000003157121461625273200213750ustar00rootroot00000000000000 v (: @@ (Bb00 %W  2} ڍ hbPNG  IHDR\rf IDATx]\g}fv6qI,BXLUm9v|PhU9B^ U D! ʖX".HN7d}Ο ʤΞy9s>=3b>agn}M{ty"k> Y]RC+:c%\?JO,,zbZml&[ϚCuޜhDߪO؇_ =o,&;.͌|uNt7=z"XМ>:sPCZYUo;àXR@gdp?:2vlvz_꿔A~I7X[oզos(1]?sDIsj R xVɬy"2;Z6 _R?u&T~57硇Apۼ L)LͿ @nڵ= ]ڏM8$6P\+ߘD dw5'LCjצB"LK:xг ;@DL]?_qGY  :׹OK3W+ ="1snצȹOE.? D IWCkαBO"?zyCpKJsS }GBρ <* NS@~+71Mz=:yǩg7\9ff\W%=Ӟ~kWzG]tt @loGs, ȥ[fGb*ࠃPP1((w5 |$#@1D#@1D#@1D#@1TcPP=IPPf{1( J(-4tG7;_u,:~a$&@%t՛m-H^|AϿ˃<AcPL=˃>>?us:+xlm8<́(nCOwn*'z,0"߳oզ}[gn#@1D#@1D#@1D#@$}0 Izibӆ?=4֯?g4VE4顱~f`}FzVCoT8N3L46顱~>ˣg7zYlX:3ŕk.iq3g3yٸ֯?g kZ\mu/Ҷ&4Q)dkg9?hwz_Xi2p `c}F0?96k` '? zx_(*ŧk zh_hR~֥/} 3m3< X^M>aҿ\Cz,`c}6o,:\V[^mx,`c}6o[?zIrФ"i{ʧspYW!܃IENDB`( ,-Ԫ---------------ө.,-Ԫ---------------ө.,-Ԫ---------------ө..'------------------..'------------------..'------------------.-ӯ-------------------ө-ӯ-------------------ө-ӯ-------------------ө-------------------------------------------------------------/:>@@@@@@@@@@@@>9/--/:>@@@@@@@@@@@@>9/--/:>@@@@@@@@@@@@>9/-0?@@@@@@@@@@@@@@@@>/0?@@@@@@@@@@@@@@@@>/0?@@@@@@@@@@@@@@@@>/:@@@@@@@@@@@@@@@@@@9:@@@@@@@@@@@@@@@@@@9:@@@@@@@@@@@@@@@@@@9?@@@@@@@@@@@@@@@@@@??@@@@@@@@@@@@@@@@@@??@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@----------------@@@@@@@@@@@@@@@@@@@@--------------ө.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@----------------@@@@@@@@@@@@@@@@@@@@---------------.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@----------------@@@@@@@@@@@@@@@@@@@@----------------ө@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@----------------@@@@@@@@@@@@@@@@@@@@----------------@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>9/-@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@9@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@A'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>?@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>@?@@@@@@@@@@@@?@A'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@14@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ד@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,F0@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@.3@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-ԓ-7@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-Ӓ-->@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@,E---3@@@@@@@@@@@@@@@@@@@@AV@@@@@@@@@@@@@@@@@@@@. ++/.T.Ӌ-----<@@@@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@-----------------8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@----------------8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@--------------2<@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@--------./137=@@@@@@@@@@@@@@@@@@@@@@@@I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ab@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?a@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>1?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@w3@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@=>?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@??@k; >@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@?@TC??(@ -I--------.H-I--------.H-I--------.H------------------------------2>@@@@@@>22>@@@@@@>22>@@@@@@>2>@@@@@@@@>>@@@@@@@@>>@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@--------@@@@@@@@@@-------.H@@@@@@@@@@@@@@@@@@@@--------@@@@@@@@@@--------@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@??I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@?@@@@@@@@@@@@@@@@@@@@AK>@@@@@@??I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@,)@@@@@@@@@@@@@@@@@@@@0k@@@@@@@@@@@@@@@@@@@@U1@@@@@@@@@@@@@@@@@@@@U,Ӑ5@@@@@@@@@@@@@@@@@@@@' -(-a,-<@@@@@@@@@@@@@@@@@@@@--------8@@@@@@@@@@@[@@@@@@@@@@----.04<@@@@@@@@@@@I@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>!@@@@@@@@@@@@@@@@@@@@@@@@@@@[@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ?@@@@@@@@@@@@@@@@@@@??DAK>@@@@@@@@@@@@@@@@?@k@??(0` -I------.H-I------.H-I------.H------------------------2>@@@@>22>@@@@>22>@@@@>2>@@@@@@>>@@@@@@>>@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@------@@@@@@@@-----.H@@@@@@@@@@@@@@@@------@@@@@@@@------@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@??I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@?@@@@@@@@@@@@@@@@AK>@@@@??I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@,)@@@@@@@@@@@@@@@@0k@@@@@@@@@@@@@@@@U1@@@@@@@@@@@@@@@@U,Ӑ5@@@@@@@?@@@@@@@@' -(-a,-<@@@@@@@?@@@@@@@@------8@@@@@@@@AS@@@@@@@@--.04<@@@@@@@@@I@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@?B@@@@@@@@@@@@@@@@@@@B?@@@@@@@@@@@@@@@@?m3AK>@@@@@@@@@@?@@AS3??( @ ,----,----,----<@@@<<@@@<<@@@<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@----@@@@@----@@@@@@@@@@@@@@@@@@@@@@<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@=@@@>@@@@@@@@@@@@@@@@@@@@@@@@@+@@@@@@@@@@3@@@@@@@@@@1Y@@@@@@@@@@3-,K3@@@@?@@@@@--.3>@@@@@@@@@@@@@@@@@@@A7@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@D"=@@@@@@?@@@l@<<<<<<<<<????????(0 ,---,---,---<@@<<@@<<@@<@@@@@@@@@@@@@@@@@@@@---@@@@---@@@@@@@@@@@@@@@@@<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@=@@>@@@@+@@@@@@@@3@@@@@@@@1Y@@@?@@@@3-,K3@@@@@@@@-.3>@@@?@@@@@@@@@@@B2@@@@@@@@@@?@@@@@@@@@@@=@@@@?@@@TÇÇÇÇÇÇÇÃÃÃ(  --------->@>>@>>@>@@@@@@--@@@--@@@@@@@@@@@@>@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@?@?@@@@@@@@@)%@@@@@@-"0@@?@@@-0<@@A@@@@@@@@A/@@@@@@@?y?@@@?@AOcccccnicotine-plus-3.3.4/packaging/windows/setup.py000066400000000000000000000256661461625273200214710ustar00rootroot00000000000000#!/usr/bin/env python3 # COPYRIGHT (C) 2021-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import glob import os import platform import ssl import subprocess import sys import tempfile from cx_Freeze import Executable, setup # pylint: disable=import-error # pylint: disable=duplicate-code if sys.platform == "win32": GUI_BASE = "Win32GUI" SYS_BASE_PATH = sys.prefix LIB_PATH = os.path.join(SYS_BASE_PATH, "bin") LIB_EXTENSION = ".dll" UNAVAILABLE_MODULES = [ "fcntl", "grp", "nis", "ossaudiodev", "posix", "pwd", "readline", "resource", "spwd", "syslog", "termios" ] ICON_NAME = "icon.ico" elif sys.platform == "darwin": GUI_BASE = None SYS_BASE_PATH = "/opt/homebrew" if platform.machine() == "arm64" else "/usr/local" LIB_PATH = os.path.join(SYS_BASE_PATH, "lib") LIB_EXTENSION = (".dylib", ".so") UNAVAILABLE_MODULES = ["msilib", "msvcrt", "nt", "nturl2path", "ossaudiodev", "spwd", "winreg", "winsound"] ICON_NAME = "icon.icns" else: raise RuntimeError("Only Windows and macOS are supported") TEMP_PATH = tempfile.mkdtemp() CURRENT_PATH = os.path.dirname(os.path.abspath(__file__)) BUILD_PATH = os.path.join(CURRENT_PATH, "build") PROJECT_PATH = os.path.abspath(os.path.join(CURRENT_PATH, "..", "..")) sys.path.insert(0, PROJECT_PATH) import pynicotine # noqa: E402 # pylint: disable=import-error,wrong-import-position SCRIPT_NAME = "nicotine" MODULE_NAME = "pynicotine" GTK_VERSION = os.environ.get("NICOTINE_GTK_VERSION", "4") USE_LIBADWAITA = GTK_VERSION == "4" and os.environ.get("NICOTINE_LIBADWAITA") == "1" # Include (almost) all standard library modules for plugins EXCLUDED_MODULES = UNAVAILABLE_MODULES + [ "ensurepip", "idlelib", "pip", "tkinter", "turtle", "turtledemo", "venv", "zoneinfo" ] INCLUDED_MODULES = [MODULE_NAME, "gi"] + list( # pylint: disable=no-member {module for module in sys.stdlib_module_names if not module.startswith("_")}.difference(EXCLUDED_MODULES) ) include_files = [] def process_files(folder_path, callback, callback_data=None, starts_with=None, ends_with=None, recursive=False): for full_path in glob.glob(os.path.join(folder_path, "**"), recursive=recursive): short_folder_path = os.path.dirname(os.path.relpath(full_path, folder_path)) real_full_path = os.path.realpath(full_path) short_path = os.path.join(short_folder_path, os.path.basename(real_full_path)) if starts_with and not short_path.startswith(starts_with): continue if ends_with and not short_path.endswith(ends_with): continue callback(real_full_path, short_path, callback_data) def add_file(file_path, output_path): include_files.append((file_path, output_path)) def _add_files_callback(full_path, short_path, output_path): add_file(full_path, os.path.join(output_path, short_path)) def add_files(folder_path, output_path, starts_with=None, ends_with=None, recursive=False): process_files( folder_path, _add_files_callback, callback_data=output_path, starts_with=starts_with, ends_with=ends_with, recursive=recursive ) def add_pixbuf_loaders(): loaders_file = "lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" temp_loaders_file = os.path.join(TEMP_PATH, "loaders.cache") with open(temp_loaders_file, "w", encoding="utf-8") as temp_file_handle, \ open(os.path.join(SYS_BASE_PATH, loaders_file), "r", encoding="utf-8") as real_file_handle: data = real_file_handle.read() if sys.platform == "win32": data = data.replace("lib\\\\gdk-pixbuf-2.0\\\\2.10.0\\\\loaders", "lib") elif sys.platform == "darwin": data = data.replace( os.path.join(SYS_BASE_PATH, "lib/gdk-pixbuf-2.0/2.10.0/loaders"), "@executable_path/lib") temp_file_handle.write(data) add_file(file_path=temp_loaders_file, output_path="lib/pixbuf-loaders.cache") add_files( folder_path=os.path.join(SYS_BASE_PATH, "lib/gdk-pixbuf-2.0/2.10.0/loaders"), output_path="lib", starts_with="libpixbufloader-", ends_with=LIB_EXTENSION ) def _add_typelibs_callback(full_path, short_path, _callback_data=None): temp_file_gir = os.path.join(TEMP_PATH, short_path) temp_file_typelib = os.path.join(TEMP_PATH, short_path.replace(".gir", ".typelib")) with open(temp_file_gir, "w", encoding="utf-8") as temp_file_handle, \ open(full_path, "r", encoding="utf-8") as real_file_handle: data = real_file_handle.read() data = data.replace('shared-library="lib', 'shared-library="@loader_path/lib') temp_file_handle.write(data) subprocess.check_call(["g-ir-compiler", f"--output={temp_file_typelib}", temp_file_gir]) def add_typelibs(): required_typelibs = [ f"Gtk-{GTK_VERSION}", "Gio-", f"Gdk-{GTK_VERSION}", f"GdkWin32-{GTK_VERSION}", "GLib-", "HarfBuzz-", "Pango-", "GObject-", "GdkPixbuf-", "cairo-", "GModule-", "freetype2-", "win32-" ] if GTK_VERSION == "4": required_typelibs += [ "Graphene-", "Gsk-", "PangoCairo-" ] else: required_typelibs += [ "Atk-", "Gspell-" ] if USE_LIBADWAITA: required_typelibs.append("Adw-") required_typelibs = tuple(required_typelibs) folder_path = os.path.join(SYS_BASE_PATH, "lib/girepository-1.0") if sys.platform == "darwin": # Remove absolute paths added by Homebrew (macOS) process_files( folder_path=os.path.join(SYS_BASE_PATH, "share/gir-1.0"), callback=_add_typelibs_callback, starts_with=required_typelibs, ends_with=".gir" ) folder_path = TEMP_PATH add_files( folder_path=folder_path, output_path="lib/typelibs", starts_with=required_typelibs, ends_with=".typelib" ) def add_gtk(): if sys.platform == "win32": # gdbus required for single-instance application (Windows) add_file(file_path=os.path.join(LIB_PATH, "gdbus.exe"), output_path="gdbus.exe") # This also includes all dlls required by GTK add_files( folder_path=LIB_PATH, output_path="lib", starts_with=f"libgtk-{GTK_VERSION}", ends_with=LIB_EXTENSION ) if USE_LIBADWAITA: add_files( folder_path=LIB_PATH, output_path="lib", starts_with="libadwaita-", ends_with=LIB_EXTENSION ) # Schemas add_file( file_path=os.path.join(SYS_BASE_PATH, "share/glib-2.0/schemas/gschemas.compiled"), output_path="lib/schemas/gschemas.compiled" ) # Fontconfig add_files( folder_path=os.path.join(SYS_BASE_PATH, "etc/fonts"), output_path="share/fonts", ends_with=".conf", recursive=True ) # Pixbuf loaders add_pixbuf_loaders() # Typelibs add_typelibs() def add_icon_packs(): required_icon_packs = ( "Adwaita", ) add_files( folder_path=os.path.join(SYS_BASE_PATH, "share/icons"), output_path="share/icons", starts_with=required_icon_packs, ends_with=(".theme", ".svg"), recursive=True ) def add_themes(): # "Mac" is required for macOS-specific keybindings in GTK required_themes = ( "Default", "Mac" ) add_files( folder_path=os.path.join(SYS_BASE_PATH, "share/themes"), output_path="share/themes", starts_with=required_themes, ends_with=".css", recursive=True ) def add_ssl_certs(): ssl_paths = ssl.get_default_verify_paths() add_file(file_path=ssl_paths.openssl_cafile, output_path="lib/cert.pem") def add_translations(): from setup import build_translations # noqa: E402 # pylint: disable=import-self,no-name-in-module build_translations() add_files( folder_path=os.path.join(SYS_BASE_PATH, "share/locale"), output_path="share/locale", starts_with=tuple(i[0] for i in pynicotine.i18n.LANGUAGES), ends_with=f"gtk{GTK_VERSION}0.mo", recursive=True ) # GTK add_gtk() add_icon_packs() add_themes() # SSL add_ssl_certs() # Translations add_translations() # Setup setup( name=pynicotine.__application_name__, description=pynicotine.__application_name__, author=pynicotine.__author__, version=pynicotine.__version__, options={ "build": { "build_base": BUILD_PATH }, "build_exe": { "build_exe": os.path.join(BUILD_PATH, "package", pynicotine.__application_name__), "packages": INCLUDED_MODULES, "excludes": EXCLUDED_MODULES, "include_files": include_files, "zip_include_packages": ["*"], "zip_exclude_packages": [MODULE_NAME] }, "bdist_msi": { "all_users": True, "dist_dir": BUILD_PATH, "install_icon": os.path.join(CURRENT_PATH, ICON_NAME), "upgrade_code": "{8ffb9dbb-7106-41fc-9e8a-b2469aa1fe9f}" }, "bdist_mac": { "bundle_name": pynicotine.__application_name__, "iconfile": os.path.join(CURRENT_PATH, ICON_NAME), "plist_items": [ ("CFBundleName", pynicotine.__application_name__), ("CFBundleIdentifier", pynicotine.__application_id__), ("CFBundleShortVersionString", pynicotine.__version__), ("CFBundleVersion", pynicotine.__version__), ("CFBundleInfoDictionaryVersion", "6.0"), ("NSHumanReadableCopyright", pynicotine.__copyright__) ], "codesign_identity": "-", "codesign_deep": True, "codesign_entitlements": os.path.join(CURRENT_PATH, "codesign-entitlements.plist"), "codesign_options": "runtime", "codesign_strict": "all", "codesign_timestamp": True, "codesign_verify": True }, "bdist_dmg": { "applications_shortcut": True } }, data_files=[], packages=[], executables=[ Executable( script=os.path.join(PROJECT_PATH, SCRIPT_NAME), base=GUI_BASE, target_name=pynicotine.__application_name__, icon=os.path.join(CURRENT_PATH, ICON_NAME), copyright=pynicotine.__copyright__, shortcut_name=pynicotine.__application_name__, shortcut_dir="ProgramMenuFolder" ) ], ) nicotine-plus-3.3.4/po/000077500000000000000000000000001461625273200147405ustar00rootroot00000000000000nicotine-plus-3.3.4/po/LINGUAS000066400000000000000000000001011461625273200157550ustar00rootroot00000000000000ca de es_CL es_ES et fr hu it lv nl pl pt_BR pt_PT ru tr uk zh_CNnicotine-plus-3.3.4/po/ar.po000066400000000000000000004170511461625273200157120ustar00rootroot00000000000000# Copyright (C) 2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-02-07 02:01+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 5.4-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 #, fuzzy msgid "Downloads" msgstr "التنزيلاتShkarkimet" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 #, fuzzy msgid "Nicotine+ Team" msgstr "فريق نيكوتين+Ekipi Nicotine +" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Faqja e internetit: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "" #: pynicotine/__init__.py:59 msgid "file" msgstr "ملف" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "" #: pynicotine/__init__.py:63 msgid "dir" msgstr "مجلد" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "مجلد بديل لبيانات المستخدم والإضافات" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "" #: pynicotine/__init__.py:71 msgid "ip" msgstr "" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "" #: pynicotine/__init__.py:75 msgid "port" msgstr "منفذ" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "استمع على المنفذ المحدد" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "إعادة فحص الملفات المشتركة" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "عرض الإصدار والخروج" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "لقد تمت دعوتك إلى غرفة خاصة: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "جاري التحميل %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "" #: pynicotine/core.py:237 msgid "terminating" msgstr "إنهاء" #: pynicotine/core.py:237 msgid "application closing" msgstr "إغلاق البرنامج" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "" #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "" #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "غير معروف" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "عنوان الـ IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "" #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "إعلان Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "الإعدادات" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "" #, fuzzy #~ msgid "Nicotine+" #~ msgstr "فريق نيكوتين+Ekipi Nicotine +" nicotine-plus-3.3.4/po/ca.po000066400000000000000000006354501461625273200157000ustar00rootroot00000000000000# Copyright (C) 2022-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Client de Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Client gràfic per a la xarxa P2P de Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;compartir;xat;missatgeria;P2P;d'igual a igual;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Client gràfic per a la xarxa Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ és un client gràfic per a la xarxa P2P de Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ pretén ser una alternativa lleugera, agradable, lliure i de codi " "obert (FOSS) al client oficial de Soulseek, tot proporcionant també un " "conjunt complet de funcionalitats." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Cercar fitxers" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Descàrregues" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Navegar per compartits" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Xat privat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Equip de Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Lloc web: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "mostrar aquest missatge d'ajuda i sortir" #: pynicotine/__init__.py:59 msgid "file" msgstr "fitxer" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "utilitzar un fitxer de configuració no predeterminat" #: pynicotine/__init__.py:63 msgid "dir" msgstr "dir" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "directori alternatiu per a dades d'usuari i connectors" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "iniciar el programa sense mostrar la finestra" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "vincular els sòcols a la IP donada (útil per a VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "escolta al port indicat" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "tornar a examinar els fitxers compartits" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "iniciar el programa en mode «headless» (sense interfície gràfica)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "mostrar la versió i sortir" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Estàs utilitzant una versió de Python no compatible (%(old_version)s).\n" "Has d'instal·lar Python %(min_version)s o més recent." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "No s'han pogut examinar els recursos compartits. Tanca altres instàncies de " "Nicotine+ i torna-ho a provar." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s és absent" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s està en línia" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s està fora de línia" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Estat del company" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "T'han afegit a una sala privada: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Missatge de xat de l'usuari «%(user)s» a la sala «%(room)s»: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "No es pot crear el directori \"%(path)s\", error notificat: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Error en fer una còpia de seguretat de la configuració: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "S'ha fet una còpia de seguretat de la configuració a: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "S'està carregant %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "S'està sortint de %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "acabant" #: pynicotine/core.py:237 msgid "application closing" msgstr "tancament de l'aplicació" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Surt de %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Has d'especificar un nom d'usuari i una contrasenya abans de connectar-te…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Error: el filtre de descàrrega ha fallat! Verifica els teus filtres. Motiu: " "%s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Error: %(num)d filtres de descàrrega han fallat! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s descarregat de %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Fitxer descarregat" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Executat: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "No s'ha pogut executar «%(command)s»: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s descarregat de %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Carpeta descarregada" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "S'ha executat a la carpeta: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "No s'ha pogut moure '%(tempfile)s' a '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Error en la carpeta de descàrrega" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Descàrrega acabada: usuari %(user)s, fitxer %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Descàrrega avortada, fitxer d'usuari %(user)s %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Error d'E/S a la descàrrega: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "No es pot obtenir un bloqueig exclusiu al fitxer - Error d'E/S: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "No es pot guardar l'arxiu a %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Descàrrega començada: usuari %(user)s, fitxer %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "No es pot trobar %s, instal·la-lo." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "No hi ha entorn gràfic disponible, s'està utilitzant el mode sense " "interfície gràfica d'usuari" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Connectar" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Desconnectar" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Privilegis Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferències" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_ Sortir" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "Navega per les _Shares Públiques" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Navega per _Shares d'amics" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Navega per _Shares de Confiança" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Tornar a examinar els compartits" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "Configura _Shares" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Dreceres de teclat" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Assistent de configuració" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Estadístiques de transferència" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Informar d'un _error" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Millora les traduccions" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Sobre Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fitxer" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Compartits" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Ajuda" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "_Navega per Shares" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "No es pot mostrar la notificació: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Encara estàs compartint fitxers. Realment vols sortir?" #: pynicotine/gtkgui/application.py:534 #, fuzzy msgid "Wait for uploads to finish" msgstr "Espera que les uploads acabin" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Realment vols sortir?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_No" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Executar en segon pla" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Sortir de Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Recursos compartits no disponibles" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Comproveu que els discs externs estiguin muntats i que els permisos de les " "carpetes siguin correctes." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Cancel · lar" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Torna-ho a provar" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Força la nova exploració" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Contrasenya no vàlida" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "L'usuari %s ja existeix i la contrasenya que has introduït no és vàlida. Si " "us plau, tria un altre nom d'usuari si és la primera vegada que inicies " "sessió." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Canviar els detalls d'_inici de sessió" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Enviar un missatge als usuaris que estan descarregant" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Envieu un missatge privat a tots els usuaris que estiguin descarregant de " "vosaltres:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Envia missatge" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Enviar missatge a amics" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Envieu un missatge privat a tots els amics en línia:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Selecciona un fitxer desat a llista de recursos compartits" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Error crític" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ ha trobat un error crític i ha de sortir. Copia el missatge " "següent i inclou-lo en un informe d'error:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_ Sortir de Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copiar i informar d'error" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Estat" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "País" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Usuari" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Velocitat" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Fitxers" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "De confiança" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notificar" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Prioritzat" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Vist per últim cop" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Nota" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Afegir una _nota d'usuari…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Eliminar" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Mai vist" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Afegir una nota d'usuari" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Afegir una nota sobre l'usuari %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Afegeix" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Vols crear una sala nova?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Vols crear una sala nova «%s»?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Fes la sala privada" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Cer_car fitxers de l'usuari" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Trobar…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copiar" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copiar-ho tot" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Netejar la vista de l'activitat" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_ Sortir de la sala" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copiar l'enllaç" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Veure el registre de la sala" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Suprimir el registre de la sala…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Netejar la visualització de missatges" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s s'ha unit a la sala" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s t'ha mencionat a la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Missatge de %(user)s a la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Missatge de %(user)s a la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s ha sortit de la sala" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s s'ha absentat" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s ha tornat" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Vols suprimir els missatges registrats?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Vols suprimir permanentment tots els missatges registrats per a aquesta sala?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Quan a" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Lloc web" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Error en comprovar l'última versió: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, fuzzy, python-format msgid "New release available: %s" msgstr "Nova versió disponible: %s" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Actualitzat" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Comprovant la versió més recent…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Assistent de configuració" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Carpeta virtual" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Carpeta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Acabar" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Següent" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Afegir una carpeta compartida" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Editar la carpeta compartida" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Introdueix un nom virtual nou per a \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "_Edit" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Propietats del fitxer" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Propietats del fitxer (%(num)i de %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Propietats del fitxer (%(num)i de %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Aplicar" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Afegir…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Editar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Configuració" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Afegeix element" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Edita l'Element" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Desconegut" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Comprovar l'estat del port" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Canvi de contrasenya rebutjat" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Introdueix una contrasenya nova per al teu compte de Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Actualment estàs tancat la sessió de la xarxa Soulseek. Si vols canviar la " "contrasenya d'un compte de Soulseek existent, has d'iniciar sessió en aquest " "compte." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Introdueix la contrasenya per a utilitzar-la en iniciar sessió:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Canviar la contrasenya" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "_Canvia" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Ningú" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Tothom" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amics" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Amics de confiança" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Res" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Obrir Arxiu" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Obrir al Gestor de fitxers" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Cercar" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausar" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Resum" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Examinar la carpeta" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxi: Insensible a majúscules i minúscules. Si està activat, es " "poden utilitzar expressions regulars de Python, sinó només es suporten " "coincidències amb el comodí *." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtre" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Afegir un filtre de descàrrega" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Introduir un filtre de descàrrega nou:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Activa les expressions regulars" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Editar el filtre de descàrrega" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modifica el següent filtre de descàrrega:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Ha fallat! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtres correctes" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 #, fuzzy msgid "Public" msgstr "Públic" #: pynicotine/gtkgui/dialogs/preferences.py:612 #, fuzzy msgid "Accessible To" msgstr "Accessible Per" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Avortar" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Torna-ho a provar" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Primer a entrar, primer a sortir" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Nom d'usuari" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Adreça IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorar usuari" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Introdueix el nom d'usuari que vols ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorar l'adreça IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Introdueix una adreça IP que vulguis ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* és un comodí" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Bloquejar Usuari" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Introdueix el nom d'usuari que vols bloquejar:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Bloquejar l'adreça IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Introdueix una adreça ip que vulguis bloquejar:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 #, fuzzy msgid "Format codes" msgstr "Codis de format" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Patró" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Substitució" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Patró Censor" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Introdueix un patró que vols censurar. Afegiu espais al voltant del patró si " "no vols fer coincidir les cadenes dins de les paraules (pot fallar al " "principi i al final de les línies)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Editar el patró censurat" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Afegir substitució" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Introdueix un patró de text i allò pel que ha de ser reemplaçat:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Modificar reemplaçament" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Predeterminat del sistema" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Mostra el diàleg de confirmació" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Executar en segon pla" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "negreta" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "cursiva" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "subratllat" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Pestanya separada per Amics" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Barra lateral a la pestanya de Sales de Xat" #: pynicotine/gtkgui/dialogs/preferences.py:1690 #, fuzzy msgid "Always visible sidebar" msgstr "Barra lateral sempre visible" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "A dalt" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "A baix" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Esquerra" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Dreta" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "En línia" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Absent" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Fora de línia" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Canvi de Pestanya" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Ressaltat de pestanya" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Finestra" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "En línia (Safata)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Absent (safata)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Fora de línia (Safata)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Missatge (safata)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Ordre" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Afegir un gestors d'URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Introduïu el protocol i l'ordre per al gestor d'URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Modificar ordre" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Introdueix una nova ordre per al protocol %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nom d'usuari;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Reproductor de música (p. ex., amarok, audacious, exaile); deixar buit per " "autodetectar:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Nom d'usuari: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Ordre:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Títol" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Reproduint ara (normalment «%(artist)s - %(title)s»)" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Durada" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Taxa de bits" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Comentaris" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Àlbum" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Número de pista" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Any" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nom del fitxer (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Habilitat" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Connector" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "No s'ha seleccionat cap connector" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Xarxa" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interfície d'usuari" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Recursos compartits" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Pujades" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Recerques" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Perfil d'usuari" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Xats" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Reproduint ara" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Registrament" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Usuaris bloquejats" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Usuaris ignorats" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Connectors" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Gestors d'URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferències" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Tria un nom de fitxer per a la còpia de seguretat de la configuració" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Estadístiques de transferència" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Total des de %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Restablir les estadístiques de transferència?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Vols restablir les estadístiques de transferència?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Llista de desitjos" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Desitjos" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Cercar element" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Editar el desig" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Introdueix un valor nou per al desig \"%s\":" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Netejar la llista de desitjos?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Vols netejar la teva llista de desitjos?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Ruta" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Resum" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_ausar" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Acabada / filtrada" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Acabada" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "En pausa" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrada" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Esborrat" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "En cua…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Tot…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Netejar les descàrregues en cua" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Vols netejar totes les descàrregues en cua?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Netejar totes les descàrregues" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Vols netejar totes les descàrregues?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Descarregar %(num)i fitxers?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "Vols descarregar %(num)i fitxers de la carpeta %(folder)s de %(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Descarregar la carpeta" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Li agrada" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "No li agrada" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Valoració" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Ítem" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Recomanacions per a l'ítem" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "M'agrada això" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "No m'agrada això" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Recomanacions" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Usuaris similars" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Recomanacions (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Usuaris similars (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Missatge privat de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "S'han trobat resultats de la llista de desitjos" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Perfils d'usuari" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Sales de xat" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interessos" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Xat" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Connexions" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Missatges" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Transferències" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Miscel·lània" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Trobar…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Còpia" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copia _Tot" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Veure _Registres de Depuració" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Veure _Registres de Transferències" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_ Categories de registre" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Netejar la vista de registre" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Descàrregues: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Pujades: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Preparant Shares" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Examinant compartits" #: pynicotine/gtkgui/mainwindow.py:1236 #, fuzzy msgid "Quitting..." msgstr "Sortint..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Últim missatge" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Sala" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Usuaris" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Unir-se a la sala" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Sortir de la sala" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Fer pública la sala privada" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Cancel·lar la subscripció a la sala" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Tancar totes les pestanyes…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Tancar la pestanya" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Veure el registre de xat" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Suprimir el registre de xat…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Accions d'Usuari" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Vols suprimir permanentment tots els missatges registrats per a aquest " "usuari?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "* Missatges enviats mentre estaves fora de línia" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amics" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Sales" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Usuari" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "En cua" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Tipus de fitxer" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nom del fitxer" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Mida" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Qualitat" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copia _ruta del fitxer" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copiar _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copiar la carpeta U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Descarregar fitxers" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Descarregar fitxers _a…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Descarregar _carpetes" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Descarregar car_petes a…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Veure Perfil d'Usuari" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Navega per la Carpeta" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Propietats de _fitxer" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copiar el terme de cerca" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Netejar tots els resultats" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Neteja els Filtres" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Restaurar filtres" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVATE] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Filtres de resultats [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Filtres de resultats" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "%d filtre(s) actiu(s)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Afegir _desig" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Eliminar _desig" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Seleccionar Resultats de l'usuari" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Total: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Resultats" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Selecciona la carpeta de destinació per als fitxers" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Selecciona Carpeta de destinació" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "En cua" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "En cua (prioritzat)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "En cua (amb privilegis)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Obtenció d'estatus" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transferint" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Connexió tancada" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Temps d'espera de connexió" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Usuari desconnectat" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Cancel·lat" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Error en la carpeta de descàrrega" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Error de fitxer local" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Bloquejat" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Fitxer no compartit" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Tancament en curs" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Error de lectura de fitxer" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "En cua" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Percentatge" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Temps transcorregut" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Temps restant" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Obrir Arxiu" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Obrir al Gestor de _fitxers" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Cercar" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Netejar-ho tot" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Seleccionar Transferències de l'usuari" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Avortar" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Finalitzat / Avortat / Error" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Finalitzat / Cancel·lat" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Ha fallat" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Usuari desconnectat" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Netejar les pujades en cua" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Vols netejar totes les pujades en cua?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Netejar totes les pujades" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Realment vols netejar totes les pujades?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Desar la llista de recursos compartits al disc" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Pujar carpeta i subcarpetes…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copiar la ruta de la _carpeta" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Carpeta de Descàrrega i Subcarpetes" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Descarregar carpeta i subcarpetes a…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Nom del fitxer" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Enviar els fitxers…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Pujar carpeta…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Descarregar la carpeta _a…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "La llista de fitxers compartits d'usuari està buida. O l'usuari no " "comparteix res o està compartint fitxers de manera privada." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "No es poden sol·licitar fitxers compartits de l'usuari. O bé l'usuari està " "desconnectat, els ports d'escolta estan tancats en ambdues bandes, o hi ha " "un problema temporal de connectivitat." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Selecciona Destinació per a descarregar diverses carpetes" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Pujar la carpeta (amb subcarpetes) a l'usuari" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Pujar la carpeta a l'usuari" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Introdueix el nom de l'usuari al qual vols pujar fitxers:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Upload" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Seleccionar carpeta de destinació per als fitxers" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Pujar fitxers a l'usuari" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Copia la imatge" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Desar imatge" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "No s'ha pogut carregar la imatge de l'usuari %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "No s'ha pogut demanar informació de l'usuari. O tots dos teniu un port " "d'escolta tancat, l'usuari està fora de línia o hi ha un problema de " "connectivitat temporal." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Elimina _amic" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Afegir _Amic" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Desbloqueja usuari" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Deixar d'ignorar l'usuari" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Sí" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "No" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Si us plau, introdueix el nombre de dies." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Regala dies dels teus privilegis de Soulseek a l'usuari %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "Queden %(days)s dies" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Regalar privilegis" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "_Dóna Privilegis" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Tancar" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Sí" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_ Acceptar" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Seleccionar un fitxer" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Seleccionar una carpeta" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "_Selecciona" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Seleccionar una imatge" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Totes les imatges" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Desar com a…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Cap)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Tancar la pestanya" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Tancar totes les pestanyes?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Vols tancar totes les pestanyes?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "%i Pestanya(es) sense llegir" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Totes les Pestanyes" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "Re_obre la pestanya tancada" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Fitxers seleccionats" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Examinar fitxers" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Afegir amic" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Mostrar l'adreça_IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Sales privades" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Eliminar de la sala privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Afegir a la sala privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Eliminar com a operador de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Afegir com a operador de %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- missatges antics a dalt ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Executable" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Àudio" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Imatge" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arxiu" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Miscel·lània" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Vídeo" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Document" #: pynicotine/gtkgui/widgets/theme.py:216 #, fuzzy msgid "Text" msgstr "Text" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "" "S'ha produït un error en carregar la icona personalitzada %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Amagar Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Mostrar Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Columna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Desagrupat" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Agrupar per carpeta" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Agrupar per usuari" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Realment vols sortir? %s" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "L'usuari %s ja existeix, i la contrasenya que has introduït no és vàlida." #: pynicotine/headless/application.py:80 #, fuzzy, python-format msgid "Type %s to log in with another username or password." msgstr "Escriu %s per iniciar sessió amb un altre nom d'usuari o contrasenya." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Contrasenya: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Per a crear un compte nou de Soulseek, emplena el nom d'usuari i la " "contrasenya que vulguis. Si ja tens un compte, omplie les teus dades d'inici " "de sessió existents." #: pynicotine/headless/application.py:116 #, fuzzy msgid "The following shares are unavailable:" msgstr "Les següents shares no estan disponibles:" #: pynicotine/headless/application.py:122 #, fuzzy, python-format msgid "Retry rescan? %s" msgstr "Reintenta l'escaneig? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "No s'ha pogut escriure al fitxer de registre «%(filename)s»: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "No es pot accedir al fitxer de registre %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Emirats Àrabs Units" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua i Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albània" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armènia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antàrtida" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Americana" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Àustria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Austràlia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Illes Åland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaidjan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bòsnia i Hercegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangla Desh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Bèlgica" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgària" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benín" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Sant Barthelemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudes" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolívia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius i Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahames" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Illa Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Bielorússia" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canadà" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Illes Cocos (Keeling)" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "República Democràtica del Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "República Centreafricana" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Suïssa" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Costa d'Ivori" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Illes Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Xile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Camerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Xina" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colòmbia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cap Verd" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Illa Christmas" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Xipre" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Txèquia" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Alemanya" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dinamarca" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "República Dominicana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algèria" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Equador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estònia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egipte" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Sàhara Occidental" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Espanya" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiòpia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlàndia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Illes Falkland (Malvines)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Micronèsia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Illes Faroe" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "França" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Gran Bretanya" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Granada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Geòrgia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guaiana Francesa" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groenlàndia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gàmbia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadalupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guinea Equatorial" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grècia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Illes Geòrgia del Sud i Sandwich del Sud" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinea Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Illes Heard i McDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Hondures" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croàcia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haití" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hongria" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonèsia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Illa de Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Índia" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Territori Britànic de l'Oceà Índic" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Iraq" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islàndia" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Itàlia" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordània" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japó" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirguizistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Cambodja" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comores" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts i Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Corea del Nord" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Corea del Sud" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Illes Caiman" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazakhstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Líban" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Santa Llúcia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Libèria" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituània" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letònia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Líbia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marroc" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Mònaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldàvia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Sant Martí" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Illes Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedònia del Nord" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongòlia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macau" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Illes Mariannes del Nord" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritània" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Maurici" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldives" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Mèxic" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malàisia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Moçambic" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namíbia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nova Caledònia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Níger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Illa Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigèria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Països Baixos" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Noruega" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nova Zelanda" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panamà" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Perú" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinèsia Francesa" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua Nova Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipines" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polònia" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint-Pierre i Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Estat de Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguai" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Reunió" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Romania" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Sèrbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rússia" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Aràbia Saudita" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Illes Salomó" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suècia" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Santa Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Eslovènia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Illes Svalbard i Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "República d'Eslovàquia" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somàlia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudan del Sud" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Santo Tomé i Príncipe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Síria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Illes Turks i Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Txad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Territoris del Sud francesos" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailàndia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadjikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor-Leste" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunísia" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turquia" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinitat i Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzània" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ucraïna" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Illes menors perifèriques dels EUA" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Estats Units" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguai" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Santa Seu (Estat de la Ciutat del Vatican)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Sant Vicenç i les Granadines" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Veneçuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Illes Verges Britàniques" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Illes Verges dels EUA" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis i Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Iemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Sud-Àfrica" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zàmbia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Ha fallat la conversió text a veu per al missatge: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: proporciona el teu nom d'usuari i la clau d'API de Last.fm" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Format de «Reproduint ara»" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: no s'ha pogut connectar a Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: no s'ha pogut obtenir la pista recent d'Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: No s'ha pogut trobar un reproductor MPRIS adequat" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "S'han trobat diversos reproductors MPRIS: %(players)s. S'utilitza: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Reproductor MPRIS detectat automàticament: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: S'ha produït un error en consultar %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: proporciona el teu nom d'usuari de ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: no s'ha pogut connectar a ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Sembla que no estàs escoltant res ara mateix" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: no s'ha pogut obtenir la cançó actual de ListenBrainz: " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Filtres de Xarxa" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Llista les comandes disponibles" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Connecta al servidor" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Desconnecta del servidor" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Activa l'estat d'absència" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Gestiona els connectors" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Neteja la finestra de xat" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Dir alguna cosa en tercera persona" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Anuncia la cançó que s'està reproduint" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Uneix-te a la sala de xat" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Surt de la sala de xat" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Di un missatge en una sala de xat específica" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Obre xat privat" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Tanca el xat privat" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Sol·licita la versió del client de l'usuari" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Envia un missatge privat a l'usuari" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Afegeix usuari a la llista d'amics" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Elimina amic de la llista d'amics" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Explorar arxius de l'usuari" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Mostra la informació del perfil d'usuari" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Mostrar adreça ip o nom d'usuari" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Bloqueja connexions de l'usuari o adreça ip" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Elimina l'usuari o l'adreça ip de les llistes de baneig" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Silencia els missatges de l'usuari o adreça ip" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Elimina l'usuari o l'adreça ip de les llistes d'ignorats" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Afegeix un Share" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Elimina Compartir" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Llista els Shares" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Tornar a examinar els compartits" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Inicia la cerca global de fitxers" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Cercar fitxers en sales unides" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Cerca fitxers de tots els amics" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Cerca els fitxers compartits d'un usuari" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Llistant %(num)i comandes disponibles:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Llistant %(num)i comandes disponibles que coincideixen amb \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Escriu %(command)s per llistar comandes similars" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Escriu %(command)s per llistar les comandes disponibles" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "No s'ha unit a la sala %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, fuzzy, python-format msgid "Not messaging with user %s" msgstr "No s'està enviant missatges a l'usuari %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Tancat el xat privat de l'usuari %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Banejat %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Desblocat %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorat %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "No ignorat %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, fuzzy, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s Shares llistats (%(num_total)s configurats)" #: pynicotine/plugins/core_commands/__init__.py:568 #, fuzzy, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "No es pot compartir la carpeta inaccessible \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, fuzzy, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Afegit %(group_name)s compartició \"%(virtual_name)s\" (es requereix " "reescaneig)" #: pynicotine/plugins/core_commands/__init__.py:582 #, fuzzy, python-format msgid "No share with name \"%s\"" msgstr "No hi ha cap Compartir amb el nom \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, fuzzy, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "S'ha eliminat el share \"%s\" (es requereix reescaneig)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "S'està carregant el sistema de connectors" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "No es pot carregar el connector %(name)s. El nom de la carpeta del connector " "conté caràcters no vàlids: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Conflicte de la comanda %(interface)s al plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Connector carregat %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "No es pot carregar el connector %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Connector descarregat %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "No es pot descarregar el connector %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "El connector %(module)s ha fallat amb l'error %(errortype)s: %(error)s.\n" "Traça: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Sense descripció" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Falta l'argument %s" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Argument invàlid, opcions possibles: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Ús: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comanda desconeguda: %(command)s. Escriu %(help_command)s per veure les " "comandes disponibles." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "No s'han trobat dispositius UPnP" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: No s'ha pogut redirigir el port extern %(external_port)s: " "%(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Port extern %(external_port)s redirigit amb èxit a l'adreça ip " "local %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Missatge privat de l'usuari '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "S'està cercant l'element de la llista de desitjos \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "" "El període d'espera de la llista de desitjos s'ha establert en %s segons" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "L'usuari %(user)s està cercant «%(query)s», ha trobat %(num)i resultats" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Reconstruint Shares…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Tornant a examinar compartits…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Examen completat: s'han trobat %(num)s carpetes" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "S'ha produït un error greu mentre es reescanejaven els Shares. Si el " "problema persisteix, esborra %(dir)s/*.dbn i torna-ho a intentar. Si això no " "ajuda, si us plau, envia un informe d'error amb aquest rastre d'error " "inclòs: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Error en examinar el fitxer %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Error en examinar la carpeta %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Error en examinar les metadades del fitxer %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Reescaneig avortat per Shares indisponibles: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" "L'usuari %(user)s està navegant per la teva llista de fitxers compartits" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "No s'ha pogut recuperar la carpeta compartida %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "No es pot llegir la base de dades de compartits. Torna a examinar les teus " "compartits. Error: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "La interfície de xarxa especificada '%s' no està disponible" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "No es pot escoltar al port %(port)s. Assegura't que cap altra aplicació " "l'està utilitzant, o tria un port diferent. Error: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Escoltant al port: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "No es pot connectar al servidor %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Reconnectant al servidor en %i segons" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Connectant a %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Connectat al servidor %(host)s:%(port)s, iniciant sessió…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Desconnectat del servidor %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Algú ha iniciat sessió al teu compte de Soulseek en un altre lloc" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Pujada acabada: usuari %(user)s, adreça IP %(ip)s, fitxer %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Pujada avortada, fitxer d'usuari %(user)s %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Error d'E/S a la pujada: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "La pujada ha començat: usuari %(user)s, adreça IP %(ip)s, fitxer %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "No es pot crear el directori \"%(folder)s\", error: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "" "No s'han pogut carregar els recursos compartits des del disc: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "S'ha desat la llista de fitxers compartits per a l'usuari «%(user)s» a " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "No es poden desar els recursos compartits, «%(user)s», error notificat: " "%(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "La imatge s'ha desat a %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "No es pot desar la imatge a %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "L'usuari %(user)s està veient el teu perfil" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "No es pot connectar al servidor. Motiu: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "No es pot connectar" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "No es pot recuperar la IP d'usuari %s, ja que aquest usuari està fora de " "línia" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "L'adreça IP d'usuari %(user)s és %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Anunci de Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i usuaris amb privilegis" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "No tens privilegis de Soulseek. Mentre els privilegis estan actius, les " "teves descàrregues es posaran en cua abans que les dels usuaris sense " "privilegis." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dies, %(hours)i hores, %(minutes)i minuts, %(seconds)i segons de " "privilegis soulseek" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "S'ha canviat la contrasenya" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "S'ha canviat la contrasenya" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "No es pot obrir la ruta del fitxer %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "No es pot obrir l'URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "S'ha produït un error en llegir el fitxer %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "S'està intentant carregar una còpia de seguretat del fitxer %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "No es pot fer una còpia de seguretat del fitxer %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "No es pot desar el fitxer %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "No es pot restaurar el fitxer anterior %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Afegir amic…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Cerca al registre d'activitat…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Cerca al registre del xat…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Enviar missatge…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Commutar text a veu" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Ajuda d'ordres de la sala de xat" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Registre" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Pa_ret de la sala" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Pa_ret de la sala" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Creat per" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Traduït per" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Llicència" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Anterior" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Benvingut a Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Configurar…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "Si ja existeix el nom d'usuari desitjat, se't demanarà que el canviïs." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 #, fuzzy msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Per connectar-te amb altres usuaris de Soulseek, s'ha de redirigir un port " "d'escolta del teu router al teu ordinador." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Si el teu port d'escolta està tancat, només podràs connectar-te als usuaris " "que tinguin els ports d'escolta oberts." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Si cal, tria un altre port d'escolta a continuació. Això també es pot fer " "més tard a les preferències." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Descarregar fitxers a la carpeta" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Compartir carpetes" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Els usuaris de Soulseek podran descarregar dels teus Shares. Contribueix a " "la xarxa de Soulseek compartint els teus propis arxius i re-compartint el " "que has descarregat d'altres usuaris." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Estàs preparat per a utilitzar Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 #, fuzzy msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek és un protocol no encriptat que no està pensat per a comunicacions " "segures." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donar a Soulseek t'atorga privilegis durant un període de temps determinat. " "Si tens privilegis, les teves descàrregues es posaran en cua abans que els " "usuaris no privilegiats." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Fitxer anterior" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Fitxer següent" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nom" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Última velocitat" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exportar…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Dreceres de teclat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "General" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Connectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Desconnectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Tornar a examinar els compartits" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Mostrar el panell de registre" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Confirma la sortida" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Sortir" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menús" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Obrir el menú principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Obrir el menú contextual" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Pestanyes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Canviar la pestanya principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Anar a la pestanya secundària anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Anar a la següent pestanya secundària" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Reobre la pestanya secundària tancada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Tancar la pestanya secundària" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Llistes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copiar la cel·la seleccionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Eliminar la fila seleccionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Edició" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Tallar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Enganxar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Insertar emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Seleccionar-ho tot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Trobar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Trobar la coincidència següent" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Trobar la coincidència anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transferències de fitxers" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Reprendre / Tornar a intentar la transferència" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pausar/Avortar la transferència" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Descarregar / Pujar a" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Desar la llista al disc" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Actualitzar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Expandir / replegar-ho tot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Tornar a la carpeta pare" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Cercar fitxer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtres de resultats" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Sessió actual" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Descàrregues completades" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Mida de la descàrrega" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Pujades completades" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Mida de la pujada" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Restablir…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Els elements de la llista de desitjos es cerquen automàticament a intervals " "regulars per a descobrir fitxers poc comuns." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Afegir un desig…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Netejar-ho tot…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Netejar totes les descàrregues acabades i filtrades" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Netejar finalitzades" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Netejar descàrregues específiques" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Netejar-ho _tot…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Interessos personals" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Afegeix alguna cosa que t'agradi…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Aversions personals" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Afegeix alguna cosa que no t'agrada…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Actualitzar les recomanacions" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menú Principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Nom d'usuari…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Terme de cerca…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Patrons de cerca: amb una paraula = terme, sense la paraula = -terme, " "paraula parcial = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Àmbit de cerca" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Llista de desitjos" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Configurar les cerques" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Introdueix un terme de cerca per a cercar fitxers compartits per altres " "usuaris a la xarxa Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Mode d'agrupació de fitxers" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Configurar descàrregues" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Els fitxers que descarreguis d'altres usuaris es posen en cua aquí i es " "poden posar en pausa i reprendre a petició" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Configurar càrregues" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Els intents dels usuaris de descarregar els teus fitxers compartits es posen " "en cua i es gestionen aquí" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Obrir llista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Obrir una llista local de fitxers compartits que s'han desat prèviament al " "disc" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Configurar els recursos compartits" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Introdueix el nom d'un usuari, els fitxers compartits que vols examinar. " "També pots desar la llista al disc i inspeccionar-la més endavant." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "_Perfil Personal" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Configura el Compte" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Introdueix el nom d'un usuari per a veure la seva descripció, informació i " "imatge personal" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Historial de xat" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Configurar els xats" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Introdueix el nom d'un usuari per a iniciar una conversa de text amb ell en " "privat" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Enviar un missatge a tots" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Configura els usuaris ignorats" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Afegeix usuaris com a amics per a compartir carpetes específiques amb ells i " "rebre notificacions quan estiguin en línia" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Uneix-te o crea una sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Uneix-te a una sala de xat existent o crea una sala nova per a xatejar amb " "altres usuaris de la xarxa Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Configura el Perfil d'Usuari" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Registre de cerca…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Connexions" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Descàrrega (velocitat/usuaris actius)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Pujada (velocitat/usuaris actius)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Cercar en l'historial de xat…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Límits de velocitat de descàrrega" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Velocitat de descàrrega il·limitada" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Utilitza el límit de velocitat de baixada (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Utilitza un límit alternatiu de velocitat de baixada (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Cerca sales…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Actualitzar sales" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Mostrar el flux de missatges de la sala de xat pública" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Acceptar invitacions a sales privades" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Escriu un missatge únic que altres usuaris de la sala puguin llegir més " "tard. Els missatges recents es mostren al principi." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Establir el missatge de paret…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtres de resultats de cerca" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Els filtres de resultats de cerca s'utilitzen per a definir quins resultats " "de cerca es mostren." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Cada llista de resultats de cerca té el seu propi filtre que es pot revelar " "commutant el botó Filtres de resultats. Un filtre està format per diversos " "camps, tots els quals s'apliquen en prémer Retorn en qualsevol dels seus " "camps. El filtratge s'aplica immediatament als resultats ja rebuts, i també " "als que encara no han arribat." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Com el seu nom indica, un filtre de resultats de cerca no pot ampliar la " "cerca original, només pot reduir-la. Per a ampliar o canviar els termes de " "cerca, fes una cerca nova." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Ús del filtre de resultats" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Incloure text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Es mostraran els fitxers, carpetes i noms d'usuari que contenen aquest text." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "No distingeix entre majúscules i minúscules, però l'ordre de les paraules és " "important: «Instrumental Remix» no mostrarà cap «Remix Instrumental»" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Utilitza | (o pipes) per separar diverses frases exactes. Exemple:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Exclou el text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Com s'ha dit anteriorment, però els fitxers, les carpetes i els noms " "d'usuari es filtren si el text coincideix." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtra els fitxers en funció de la seva extensió de fitxer." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Es poden especificar múltiples extensions de fitxer, la qual cosa revelarà " "més resultats de la llista. Exemple:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "També és possible invertir el filtre, especificant les extensions d'arxiu " "que no vols en els teus resultats amb un signe d'exclamació! Exemple:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Mida del fitxer" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtra els fitxers en funció de la seva mida." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Per defecte, la unitat utilitzada és bytes (B) i es trobaran els fitxers " "iguals o superiors a (>=) el valor indicat." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Afegeix b, k, m, o g (alternativament kib, mib, o gib) per especificar " "unitats de byte, kibibyte, mebibyte o gibibyte:\n" " 20m per mostrar arxius més grans de 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Anteposa = a un valor per especificar una coincidència exacta:\n" " =1024 coincideix amb arxius que tenen exactament 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Afegeix ! davant d'un valor per excloure arxius d'una mida específica:\n" " !30.5m per ocultar arxius que són 30.5 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Anteposa < o > per trobar fitxers més petits/grans que el valor donat. " "Utilitza un espai entre cada condició per incloure un rang:\n" " >10.5m <1g per mostrar fitxers més grans de 10.5 MiB, però més petits de " "1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Les variants més conegudes kb, mb i gb també es poden utilitzar per a " "unitats kilobyte, megabyte i gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtra els fitxers en funció de la seva taxa de bits." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Els valors només s'han d'introduir com a dígits numèrics. La unitat és " "sempre Kb/s (kilobits per segon)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Com la Mida del Fitxer (a dalt), es poden utilitzar els operadors =, !, <, " ">, <= o >=, i es poden especificar múltiples condicions, per exemple per " "mostrar fitxers amb una taxa de bits d'almenys 256 Kb/s amb una taxa màxima " "de 1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtra fitxers en funció de la seva durada." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Per defecte, es trobaran els fitxers amb una durada igual o superior (>=) a " "la durada introduïda, llevat que s'utilitzi un operador (=, !, <=, < o >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Introdueix un valor en segons o utilitza els formats de temps MM:SS i HH:MM:" "SS:\n" " =53 mostra arxius d'uns 53 segons de durada.\n" " >5:30 per mostrar arxius de més de 5 minuts i mig.\n" " <5:30:00 mostra arxius de menys de 5 hores i mitja." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Es poden especificar múltiples condicions:\n" " >6:00 <12:00 per mostrar fitxers entre 6 i 12 minuts de durada.\n" " !9:54 !8:43 !7:32 per ocultar alguns fitxers específics dels resultats.\n" " =5:34 =4:23 =3:05 per incloure fitxers amb duracions específiques." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtra els fitxers segons la ubicació geogràfica dels usuaris d'acord amb " "els codis de país definits per l'ISO 3166-2:\n" " US només mostrarà resultats d'usuaris amb adreces ip als Estats Units.\n" " !GB amagarà resultats que vinguin d'usuaris a Gran Bretanya." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Es poden especificar diversos països amb comes o espais." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Lloc lliure" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Mostra només resultats d'usuaris que tinguin almenys un lloc de pujada " "disponible, és a dir, fitxers que estiguin disponibles immediatament." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Límit de velocitat de pujada" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Velocitat de pujada il·limitada" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Utilitza el límit de velocitat de pujada (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Utilitza un límit alternatiu de velocitat de pujada (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Ajuda de les ordres de xat privat" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Incloure text…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtra els resultats les rutes de fitxer dels quals continguin el text " "especificat. Es poden especificar diverses frases i paraules, per ex. frase " "exacta|música|terme|frase exacta dos" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Excloure el text…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtra els resultats les rutes de fitxer dels quals continguin el text " "especificat. Es poden especificar diverses frases i paraules, per ex. frase " "exacta|música|terme|frase exacta dos" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Tipus de fitxer…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tipus de fitxer, per exemple flac wav o !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Mida del fitxer…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Mida del fitxer, per exemple >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Taxa de bits…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Taxa de bits, per exemple, 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Durada…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Durada, per exemple >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Codi país…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Codi de país, per exemple, US ES o !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Prohibir als usuaris accedir als teus fitxers compartits, segons el nom " "d'usuari, l'adreça IP o el país." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Codis de país a bloquejar (separats per comes):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Els codis han d'estar en format ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Utilitzar el missatge de bloc geogràfic personalitzat:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Utilitzar un missatge de bloqueig personalitzat:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Adreces IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Activa el corrector ortogràfic" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Restaurar els xats privats oberts anteriorment a l'inici" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Habilitar les respostes de missatges privats semblants a CTCP (versió client)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Nombre de missatges de xat privat recents a mostrar:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Nombre de missatges recents de la sala de xat a mostrar:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Completar el xat" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Habilitar el tabulador per a la compleció" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Habilitar la llista desplegable de compleció" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Caràcters mínims necessaris per a mostrar el menú desplegable:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Compleció de xat permesos:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Noms d'amics" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Noms d'usuari de la sala de xat" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Noms de les sales" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Comandaments" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Marques horàries" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Format de xat privat:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Per defecte" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Format de la sala de xat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Text a veu" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Habilitar text a veu" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Ordre text a veu:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Missatge de xat privat:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Missatge de la sala de xat:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censurar" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Habilitar la censura de patrons de text" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Substitució automàtica" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Habilitar la substitució automàtica de paraules" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Netejar automàticament les descàrregues acabades/filtrades de la llista de " "transferència" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" "Emmagatzema les descàrregues completades a les subcarpetes amb els noms " "d'usuari" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Acció de doble clic per a les descàrreges:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Permet als usuaris enviar-te qualsevol arxiu:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Carpetes" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Descàrregues acabades:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Descàrregues incompletes:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Fitxers rebuts:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Esdeveniments" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Executar l'ordre quan finalitzi la descàrrega del fitxer ($ per a la ruta " "del fitxer):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Executar l'ordre després que finalitzi la descàrrega de la carpeta ($ per a " "la ruta de la carpeta):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtres de descàrrega" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Habilitar els filtres de descàrrega" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Afegir" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Carrega els valors per defecte" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Verifica els filtres" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Sense verificar" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorar els missatges de xat i els resultats de la cerca dels usuaris, " "segons el nom d'usuari o l'adreça IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Enregistrar les sales de xat per defecte" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Enregistrar el xat privat de manera predeterminada" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Enregistrar les transferències a un fitxer" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Enregistrar els missatges de depuració a un fitxer" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Format de la marca horària del fitxer de registre:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Ubicacions de carpetes" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Carpeta de registres de la sala de xat:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Carpeta de registres de xat privat:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Carpeta de registres de transferències:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Carpeta de registres de depuració:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Inicia sessió en un compte de Soulseek existent o crea un de nou. Els noms " "d'usuari distingeixen entre majúscules i minúscules i són únics." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Adreça IP pública:" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Port d'escolta (requereix un reinici):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Estat Absent" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minuts d'inactivitat abans de marxar (0 per deshabilitar):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Missatge de resposta automàtica quan estiguis absent:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Redirigeix automàticament el port d'escolta (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Connectar-se automàticament al servidor a l'inici" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Servidor Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Vincula connexions a una interfície de xarxa específica, útil, per ex. per a " "assegurar-se que s'utilitza una VPN en tot moment. Deixa'l en blanc per a " "utilitzar qualsevol interfície disponible. Canvia aquest valor només si saps " "el que estàs fent." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Interfície de xarxa (requereix un reinici):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "«Reproduint ara» et permet mostrar el que reprodueix el teu reproductor " "multimèdia mitjançant l'ordre /now al xat." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Altres" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Format de Reproduint ara" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Format de missatge Reproduint ara:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Provar la configuració" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Habilitar els connectors" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Afegir connectors" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_ Afegir connectors" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Configuració" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Configuració" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versió:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Creat per:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Habilitar l'historial de cerques" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Els fitxers compartits privadament que s'han fet visibles per a tothom " "tindran el prefix '[PRIVATE]', i no es podran descarregar fins que el " "pujador doni permís explícit. Demana'ls-ho amablement." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" "Mostrar els fitxers compartits de manera privada als resultats de la cerca" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limitar el nombre de resultats per cerca:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Habilitar els filtres de resultats de cerca de manera predeterminada" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Incloure:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Excloure:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Tipus de fitxer:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Mida:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Taxa de bits:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Durada:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Codi país:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Mostra només els resultats dels usuaris amb un lloc de pujada disponible." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Ajuda del filtre de resultats" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Recerques en xarxa" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Respon a les sol·licituds de cerca d'altres usuaris" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Les cerques més curtes que aquest nombre de caràcters s'ignoraran:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Nombre màxim de resultats de cerca a enviar per sol·licitud de cerca:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Netejar l'historial de cerques" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Netejar l'historial de filtres" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Torna a examinar automàticament el contingut de les carpetes compartides a " "l'inici. Si està inhabilitat, els teus recursos compartits només " "s'actualitzen quan s'inicia un nou examen manualment." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Tornar a examinar els compartits en iniciar" #: pynicotine/gtkgui/ui/settings/shares.ui:68 #, fuzzy msgid "Visible to everyone:" msgstr "Visible per tothom:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Shares dels amics" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Shares de confiança" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Netejar automàticament les pujada acabades/cancel·lades de la llista de " "transferència" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Acció de doble clic per a pujades:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limitar la velocitat de pujada:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Per transferència" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Total de transferències" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Llocs de pujada" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Els fitxers es pujaran de manera cíclica als usuaris que " "esperen en cua.\n" "Primer en entrar, primer en sortir: els fitxers es pujaran en l'ordre en què " "es van posar en cua." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Tipus de cua de pujada:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Assigna espais d'upload fins que la velocitat total arribi a (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Nombre fix de slots d'Uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Prioritzar els amics" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Límits de cua" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Nombre màxim d'arxius en cua per usuari:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 #, fuzzy msgid "Maximum total size of queued files per user (MiB):" msgstr "Mida total màxima dels arxius en cua per usuari (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Els límits no s'apliquen als amics" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Les instàncies de $ es substitueixen per l'URL. Les aplicacions del sistema " "predeterminades s'utilitzen en els casos en què no s'ha configurat un " "protocol." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Ordre del gestor de fitxers:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Restablir la imatge" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Presentació" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 #, fuzzy msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "Espera que les Uploads acabin" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Imatge:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Netejar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Prefereix el mode fosc" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Utilitza la barra de capçalera" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Mostrar la icona de la safata" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimitzar a la safata a l'inici" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Idioma (cal reiniciar):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "En tancar la finestra:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notificacions" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Habilitar el so per a les notificacions" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Mostrar la notificació de xats privats i mencions al títol de la finestra" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Mostrar les notificacions per a:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Descàrregues de fitxers acabades" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Descàrregues de carpetes acabades" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Missatges privats" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Missatges de la sala de xat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Mencions a la sala de xat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Resultats trobats a la Wishlist" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Restaurar a l'arrencada la pestanya principal prèviament activa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Botons de tancament a les pestanyes secundàries" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Color de l'etiqueta de la pestanya normal:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "S'ha canviat el color de l'etiqueta de la pestanya:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Color de l'etiqueta de la pestanya destacada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 #, fuzzy msgid "Buddy list position:" msgstr "Posició de la llista d'amics:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Pestanyes principals visibles:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Posicions de la barra de pestanyes:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Pestanyes principals" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "Mostra els camins dels arxius inversos (requereix reinici)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Mostra la mida exacta dels fitxers (requereix reinici)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Color del text de la llista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Color del text dels resultats de cerca en cua:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Activar noms d'usuari en colors" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aparença del nom d'usuari del xat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Color del text remot:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Color del text local:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Color del text de sortida de l'ordre:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "Color del text de l'acció /me:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Color del text ressaltat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Color del text dels enllaços URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Estats dels usuaris" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Color en línia:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Color d'absència:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Color fora de línia:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Entrades de text" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Color de fons de l'entrada de text:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Color del text de l'entrada de text:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Tipus de lletra" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Tipus de lletra global:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Tipus de lletra de la llista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Font de la vista de text:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Tipus de lletra del xat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Tipus de lletra de transferència:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Font de cerca:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Examinar el tipus de lletra:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Icones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Carpeta del tema d'icones:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Avorta els usuari(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Bloquejar usuari(s)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Esborrar totes les càrregues finalitzades / cancel·lades" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Enviar un missatge a tots" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Esborrar càrregues específiques" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Desar la llista de recursos compartits al disc" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Actualitzar fitxers" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Edita el Perfil" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Fitxers compartits" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Carpetes compartides" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Pujades en cua" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Llocs de pujades lliures" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Velocitat de pujada" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Edita Interessos" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Regalar privilegis…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "_Actualitza el Perfil" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Comandes de Nicotine+" #~ msgid "_Clear" #~ msgstr "_Netejar" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "No es pot desar %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Amics de confiança" #~ msgid "Quit program" #~ msgstr "Sortir del programa" #~ msgid "Username:" #~ msgstr "Nom d'usuari:" #~ msgid "Re_commendations for Item" #~ msgstr "Recomanacions per a l'element" #~ msgid "_Remove Item" #~ msgstr "_Eliminar element" #~ msgid "_Remove" #~ msgstr "_Eliminar" #~ msgid "Send M_essage" #~ msgstr "Enviar m_issatge" #~ msgid "Send Message" #~ msgstr "Enviar missatge" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Veure perfil d'usuari" #~ msgid "Start Messaging" #~ msgstr "Començar a enviar missatges" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Introdueix el nom d'usuari a qui vols enviar un missatge:" #, fuzzy #~ msgid "_Message" #~ msgstr "_Missatge" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Introdueix el nom de l'usuari del qual vols veure el perfil:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "_Veure Perfil" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Introdueix el nom d'usuari del que vols veure els compartits:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Explora" #~ msgid "Password" #~ msgstr "Contrasenya" #~ msgid "Download File" #~ msgstr "Descarregar fitxer" #~ msgid "Refresh Similar Users" #~ msgstr "Actualitzar usuaris similars" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Introdueix el nom d'usuari de la persona de la qual vols veure els fitxers" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Introdueix el nom d'usuari de la persona de la qual vols veure la " #~ "informació" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Introdueix el nom d'usuari de la persona a la qual vols enviar un missatge" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Introdueix el nom d'usuari de la persona que vols afegir a la teva llista " #~ "d'amics" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Introdueix el nom de la sala a la qual vols unir-te. Si la sala no " #~ "existeix, es crearà." #~ msgid "Show Log History Pane" #~ msgstr "Mostra el panell de l'historial del registre" #~ msgid "Save _Picture" #~ msgstr "Desar _imatge" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "S'ha filtrat el resultat de cerca incorrecte %(filepath)s de l'usuari " #~ "%(user)s per a la consulta de cerca \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Alguns clients no envien resultats de cerca si s'inclouen caràcters " #~ "especials." #~ msgid "Remove special characters from search terms" #~ msgstr "Eliminar els caràcters especials dels termes de cerca" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "S'ha produït un problema en executar «%s»" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemes d'execució a la carpeta: %s" #~ msgid "Disallowed extension" #~ msgstr "Extensió no permesa" #~ msgid "Too many files" #~ msgstr "Massa fitxers" #~ msgid "Too many megabytes" #~ msgstr "Massa megabytes" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "El servidor no permet fer cerques a la llista de desitjos en aquest moment" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "La velocitat de transferència de fitxers depèn dels usuaris dels quals " #~ "estàs desencarregant. Alguns usuaris seran més ràpids, mentre que altres " #~ "seran lents." #~ msgid "Started Downloads" #~ msgstr "Descàrregues iniciades" #~ msgid "Started Uploads" #~ msgstr "Pujades iniciades" #~ msgid "Replace censored letters with:" #~ msgstr "Substituir les lletres censurades per:" #~ msgid "Censored Patterns" #~ msgstr "Patrons censurats" #~ msgid "Replacements" #~ msgstr "Substitucions" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Si un usuari de la xarxa Soulseek cerca un fitxer que existeix a les teus " #~ "compartits, els resultats de la cerca s'enviaran a l'usuari." #~ msgid "Send to Player" #~ msgstr "Enviar al reproductor" #~ msgid "Send to _Player" #~ msgstr "Enviar al _Reproductor" #~ msgid "_Open in File Manager" #~ msgstr "_ Obrir al Gestor de fitxers" #~ msgid "Media player command:" #~ msgstr "Ordres del reproductor multimèdia:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "No es pot desar la descàrrega a la subcarpeta del nom d'usuari, tornant a " #~ "la carpeta de descàrrega predeterminada. Error: %s" #~ msgid "Buddy-only" #~ msgstr "Només per a amics" #~ msgid "Share with buddies only" #~ msgstr "Compartir només amb companys" #~ msgid "_Quit…" #~ msgstr "_Sortir…" #~ msgid "_Configure Shares" #~ msgstr "_Configurar els recursos compartits" #~ msgid "Remote file error" #~ msgstr "Error de fitxer remot" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "No es pot trobar %(option1)s ni %(option2)s, instal·la'n alguna." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "" #~ "S'han trobat %(num)s carpetes abans de tornar a examinar, reconstruint…" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "No s'han pogut processar les bases de dades següents: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "" #~ "No s'ha pogut enviar el nombre de fitxers compartits al servidor: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Sortir / Executar en segon pla" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Interval de ports d'escolta:" #~ msgid "Network interface:" #~ msgstr "Interfície de xarxa:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "" #~ "Limitar els recursos compartits només per a amics a amics de confiança" #~ msgid "Shared" #~ msgstr "Compartit" #~ msgid "Search Files and Folders" #~ msgstr "Cercar fitxers i carpetes" #~ msgid "Out of Date" #~ msgstr "No actualitzat" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "La versió %(version)s està disponible, publicada el %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Sembla que fas servir una versió en desenvolupament de %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Estàs utilitzant la darrera versió de %s" #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Comprovar l' _última versió" #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferir el mode _fosc" #~ msgid "Show _Log History Pane" #~ msgstr "Mostrar el panell de l'_historial del registre" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Llista d'amics a una pestanya separada" #~ msgid "Buddy List Always Visible" #~ msgstr "Llista d'amics sempre visible" #~ msgid "_View" #~ msgstr "_Visualització" #~ msgid "_Open Log Folder" #~ msgstr "_ Obrir la carpeta de registre" #~ msgid "_Browse Folder(s)" #~ msgstr "_Examinar les carpetes" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bytes) per segon." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "S'ha enviat als usuaris com a motiu del bloqueig geogràfic." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "S'envia als usuaris el motiu del bloqueig." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "Un cop interactueu amb l'aplicació, l'estat serà en línia." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Cada usuari pot posar en cua un màxim de:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "fitxers" #~ msgid "Queue Behavior" #~ msgstr "Comportament de la cua" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Si està inhabilitat, els llocs es determinaran automàticament per les " #~ "limitacions d'amplada de banda disponibles." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Tingues en compte que el tema del sistema operatiu pot tenir prioritat." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Per defecte, la pestanya més a l'esquerra s'activa a l'inici" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Sortir de %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "acabat" #~ msgid "done" #~ msgstr "fet" #~ msgid "Remember choice" #~ msgstr "Recordar l'elecció" #~ msgid "Kosovo" #~ msgstr "Kosovo" #~ msgid "Unknown Network Interface" #~ msgstr "Interfície de xarxa desconeguda" #~ msgid "Listening Port Unavailable" #~ msgstr "Port d'escolta no disponible" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Sembla que el servidor està inactiu o no respon, torna a intentar-ho en " #~ "%i segons" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ utilitza una xarxa P2P per a connectar-se a altres usuaris. " #~ "Perquè els usuaris puguin connectar-se a tu sense problemes, és crucial " #~ "tenir un port d'escolta obert." #~ msgid "--- disconnected ---" #~ msgstr "--- desconnectat ---" #~ msgid "--- reconnected ---" #~ msgstr "--- connectat de nou ---" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Terra" #~ msgid "Czech Republic" #~ msgstr "República Txeca" #~ msgid "Turkey" #~ msgstr "Turquia" #~ msgid "Joined Rooms " #~ msgstr "Sales Unides " #~ msgid "_Auto-join Room" #~ msgstr "Unir-se _automáticamente a la sala" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintaxi: No es distingeixen entre majúscules i minúscules. Totes " #~ "les expressions regulars de Python són compatibles si l'escapament està " #~ "inhabilitat. Per als filtres senzills, es recomana habilitar l'escapament " #~ "actiu." #~ msgid "Escaped" #~ msgstr "Escapada" #~ msgid "Escape filter" #~ msgstr "Filtre d'escapament" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Introdueix un patró de text i allò a ser reemplaçat" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "No hi ha cap port d'escolta disponible a l'interval de ports especificat " #~ "%s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Trieu un interval per a seleccionar un port d'escolta. S'utilitzarà el " #~ "primer port disponible del rang." #~ msgid "First Port" #~ msgstr "Primer port" #~ msgid "to" #~ msgstr "a" #~ msgid "Last Port" #~ msgstr "Últim port" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "No es pot trobar %s o més recent, instal·leu-lo." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "No es pot importar el mòdul Gtk. Instal·lació incorrecta del mòdul python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Estàs utilitzant una versió no compatible de GTK %(major_version)s. " #~ "Hauríes d'instal·lar GTK %(complete_version)s o més recent." #~ msgid "User Info" #~ msgstr "Informació d'usuari" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Apropar-se" #~ msgid "Zoom Out" #~ msgstr "Allunyar-se" #~ msgid "Show User I_nfo" #~ msgstr "Mostrar la I_nfo d'usuari" #~ msgid "Request User's Info" #~ msgstr "Sol·licitar informació d'usuari" #~ msgid "Request User's Shares" #~ msgstr "Sol·licitar compartits d'usuari" #~ msgid "Request User Info" #~ msgstr "Sol·licitar informació d'usuari" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Introdueix el nom d'usuari del qual vols veure informació:" #~ msgid "Request Shares List" #~ msgstr "Sol·licitar la llista de compartits" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "URL de Soulseek no vàlida: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Els usuaris de la xarxa Soulseek podran descarregar fitxers de les " #~ "carpetes que comparteixes. Compartir fitxers és crucial per a la salut de " #~ "la xarxa Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Actualitzar i_nformació" #~ msgid "Chat Room Commands" #~ msgstr "Ordres de la sala de xat" #~ msgid "/join /j 'room'" #~ msgstr "/join /j «sala»" #~ msgid "Join room 'room'" #~ msgstr "Unir-se a la sala «sala»" #~ msgid "/me 'message'" #~ msgstr "/me 'missatge'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Mostrar la sortida de l'script Reproduint ara" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad «usuari»" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Afegir l'usuari «usuari» a la teva llista d'amics" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy «usuari»" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Eliminar l'usuari «usuari» de la teva llista d'amics" #~ msgid "/ban 'user'" #~ msgstr "/ban «usuari»" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Afegir l'usuari «usuari» a la teva llista de bloquejats" #~ msgid "/unban 'user'" #~ msgstr "/ unban «usuari»" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Eliminar l'usuari «usuari» de la teva llista de bloquejats" #~ msgid "/ignore 'user'" #~ msgstr "/ignore «usuari»" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Afegir usuari «usuari» a la teva llista d'ignorats" #~ msgid "/unignore 'user'" #~ msgstr "/unignore «usuari»" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Eliminar l'usuari «usuari» de la teva llista d'ignorats" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b «usuari»" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w «usuari»" #~ msgid "Request info for 'user'" #~ msgstr "Sol·licitar informació d'«usuari»" #~ msgid "/ip 'user'" #~ msgstr "/ip «usuari»" #~ msgid "Show IP for user 'user'" #~ msgstr "Mostrar la IP d'usuari «usuari»" #~ msgid "/search /s 'query'" #~ msgstr "/search /s «consulta»" #~ msgid "Start a new search for 'query'" #~ msgstr "Iniciar una nova cerca per a «consulta»" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs «consulta»" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Cercar «consulta» a les sales unides" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs «consulta»" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Cercar «consulta» a la llista d'amics" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us «usuari» «consulta»" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg «usuari» «missatge»" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Enviar el missatge «missatge» a l'usuari «usuari»" #~ msgid "/pm 'user'" #~ msgstr "/pm «usuari»" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Obrir la finestra de xat privada amb l'usuari «usuari»" #~ msgid "Private Chat Commands" #~ msgstr "Ordres de xat privat" #~ msgid "Add user to your ban list" #~ msgstr "Afegir usuari a la teva llista de bloquejats" #~ msgid "Add user to your ignore list" #~ msgstr "Afegir usuari a la teva llista d'ignorats" #~ msgid "Browse shares of user" #~ msgstr "Examinar els compartits de l'usuari" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Per al filtratge insensible a l'ordre, així com per filtrar diverses " #~ "frases exactes, es poden utilitzar barres verticals per separar frases i " #~ "paraules.\n" #~ " Exemple: Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Per a excloure fitxers que no siguin d'àudio, utilitzeu !0 al filtre de " #~ "durada." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtra els fitxers segons els països dels usuaris." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Per a tornar a veure els resultats complets, simplement esborreu tots els " #~ "filtres actius." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Consulta les preferències per a obtenir més opcions de filtre." #~ msgid "File size" #~ msgstr "Mida del fitxer" #~ msgid "Clear Active Filters" #~ msgstr "Netejar tots els filtres actius" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Recórrer cíclicament les opcions de compleció en prémer el tabulador" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Amagar el menú desplegable quan només en coincideixi un" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Descarregar les carpetes en ordre alfanumèric invers" #~ msgid "Incomplete file folder:" #~ msgstr "Carpeta de fitxers incomplets:" #~ msgid "Download folder:" #~ msgstr "Carpeta de descàrrega:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Desar les pujades dels amics a:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Utilitza UPnP per a reenviar el port d'escolta" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Comparteix carpetes amb tots els usuaris o amics de Soulseek, permetent " #~ "que el contingut es descarregui directament des del teu dispositiu. Els " #~ "fitxers ocults no es comparteixen mai." #~ msgid "Secondary Tabs" #~ msgstr "Pestanyes secundàries" #~ msgid "Chat room tab bar position:" #~ msgstr "Posició de la barra de pestanyes de la sala de xat:" #~ msgid "Private chat tab bar position:" #~ msgstr "Posició de la barra de pestanyes del xat privat:" #~ msgid "Search tab bar position:" #~ msgstr "Posició de la barra de pestanyes de cerca:" #~ msgid "User info tab bar position:" #~ msgstr "Posició de la barra d'informació d'usuari:" #~ msgid "User browse tab bar position:" #~ msgstr "Posició de la barra de pestanyes d'examen de l'usuari:" #~ msgid "Tab Labels" #~ msgstr "Etiquetes de pestanyes" #~ msgid "_Refresh Info" #~ msgstr "_Actualitzar la informació" #~ msgid "Block IP Address" #~ msgstr "Bloqueja l'adreça IP" #~ msgid "Connected" #~ msgstr "Connectat" #~ msgid "Disconnected" #~ msgstr "Desconnectat" #~ msgid "Disconnected (Tray)" #~ msgstr "Desconnectat (safata)" #~ msgid "User(s)" #~ msgstr "Usuari(s)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "L'àlies \"%s\" no ha retornat res" #~ msgid "Alternative Speed Limits" #~ msgstr "Límits de velocitat alternatius" #~ msgid "Last played" #~ msgstr "Última reproduïda" #~ msgid "Playing now" #~ msgstr "Reproduint ara" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "No es pot descarregar el fitxer a %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Codi d'error %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "No hi ha aquest àlies (%s)" #~ msgid "Aliases:" #~ msgstr "Àlies:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "S'ha eliminat l'àlies %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "No hi ha aquest àlies (%(alias)s)\n" #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Utilitzeu límits de velocitat de transferència alternatius" #~ msgid "Aliases" #~ msgstr "Àlies" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al «ordre» «definició»" #~ msgid "Add a new alias" #~ msgstr "Afegir un àlies nou" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un «ordre»" #~ msgid "Remove an alias" #~ msgstr "Eliminar un àlies" #~ msgid "Chat History" #~ msgstr "Historial de xat" #~ msgid "Command aliases" #~ msgstr "Àlies d'ordres" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limitar la velocitat de descàrrega a (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autor(s):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limitar la velocitat de pujada a (KiB/s):" #~ msgid "Wishlist item found" #~ msgstr "S'ha trobat l'element de la llista de desitjos" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Les pestanyes mostren icones d'estat d'usuari en lloc del text d'estat" #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Mostrar els consells sobre ruta de fitxers a les visualitzacions de la " #~ "llista de fitxers" #~ msgid "Colored and clickable usernames" #~ msgstr "Noms d'usuari de colors i clicables" #~ msgid "Notification changes the tab's text color" #~ msgstr "La notificació canvia el color del text de la pestanya" #~ msgid "Cancel" #~ msgstr "Cancel · lar" #~ msgid "OK" #~ msgstr "Acceptar" #~ msgid "_Add to Buddy List" #~ msgstr "_ Afegir a la llista d'amics" #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Netejar totes les descàrregues amb un estat específic" #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Netejar totes les pujades amb un estat específic" #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "utilitzar un directori de dades d'usuari no predeterminat per ex. llista " #~ "de descàrregues" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Secció de configuració desconeguda \"%s\"" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Opció de configuració desconeguda '%(option)s' a la secció '%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "La versió %s està disponible" #, python-format #~ msgid "released on %s" #~ msgstr "publicat el %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ s'està executant en segon pla" #, python-format #~ msgid "Private message from %s" #~ msgstr "Missatge privat de %s" #~ msgid "Aborted" #~ msgstr "Avortat" #~ msgid "Blocked country" #~ msgstr "País bloquejat" #~ msgid "Finished / Aborted" #~ msgstr "Acabat / Avortat" #~ msgid "Close tab" #~ msgstr "Tancar la pestanya" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "T'han mencionat a la sala %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "L'ordre %s no es reconeix" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Avís: %(realuser)s està intentant falsificar %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "La interfície de xarxa que has especificat, '%s', no existeix. Canvia o " #~ "suprimeix la interfície de xarxa especificada i reinicia Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "L'interval que has especificat per als ports de connexió del client era " #~ "{}-{}, però cap d'ells es podia utilitzar. Augmentar i/o " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Tingues en compte que part del teu rang es troba per sota de 1024, això " #~ "normalment no es permet a la majoria de sistemes operatius, a excepció de " #~ "Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progrés de l'examen: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Error del sistema operatiu: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP no està disponible en aquesta xarxa" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "No s'ha pogut assignar el port WAN extern: %(error)s" #~ msgid "Room wall" #~ msgstr "Paret de la sala" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "El port d'escolta predeterminat \"2234\" funciona bé en la majoria dels " #~ "casos. Si necessites utilitzar un port diferent, pots modificar-lo a les " #~ "preferències més endavant." #~ msgid "Show users with similar interests" #~ msgstr "Mostrar usuaris amb interessos similars" #~ msgid "Menu" #~ msgstr "Menú" #~ msgid "Expand / Collapse all" #~ msgstr "Expandir / replegar-ho tot" #~ msgid "Configure shares" #~ msgstr "Configurar els recursos compartits" #~ msgid "Create or join room…" #~ msgstr "Crear o unir-se a la sala…" #~ msgid "_Room List" #~ msgstr "_Llista de sales" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "" #~ "Habilitar els límits de velocitat de descàrrega i pujada alternatius" #~ msgid "Show log history" #~ msgstr "Mostrar l'historial del registre" #~ msgid "Result grouping mode" #~ msgstr "Mode d'agrupació de resultats" #~ msgid "Free slot" #~ msgstr "Lloc lliure" #~ msgid "Save shares list to disk" #~ msgstr "Desar la llista de recursos compartits al disc" #~ msgid "_Away" #~ msgstr "_Absent" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "No s'ha pogut carregar el fitxer ui %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "S'està intentant restablir l'índex dels fitxers compartits a causa d'un " #~ "error. Torna a examinar els teus compartits." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "No s'ha pogut accedir a l'índex de fitxers compartits. Això es pot " #~ "produir a causa de diversos casos en què Nicotine+ està actiu " #~ "simultàniament, problemes de permís de fitxers o un altre problema a " #~ "Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ és un client de Soulseek" #~ msgid "enable the tray icon" #~ msgstr "habilitar la icona de safata" #~ msgid "disable the tray icon" #~ msgstr "inhabilitar la icona de safata" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Aconsegueix els privilegis de Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "L'adreça IP pública és %(ip)s i el port d'escolta actiu és " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "desconegut" #~ msgid "Notification" #~ msgstr "Notificació" #~ msgid "Length" #~ msgstr "Duració" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "La imatge no s'ha desat, %s ja existeix." #~ msgid "_Open" #~ msgstr "_Obrir" #~ msgid "_Save" #~ msgstr "_Desar" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "No s'ha pogut carregar el connector «%s», no s'ha pogut trobar." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Error d'E/S: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "No s'ha pogut obrir la ruta del fitxer: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "No s'ha pogut obrir l'URL: %s" #~ msgid "_Log Conversation" #~ msgstr "_ Enregistrar la conversa" #~ msgid "Result Filter List" #~ msgstr "Llista de filtres de resultats" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Anteposa < o > per a trobar fitxers menors o més grans que el valor donat." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Els fitxers VBR mostren la seva taxa de bits mitjana i solen tenir una " #~ "taxa de bits més baixa que un fitxer CBR comprimit de 320 kbps de la " #~ "mateixa qualitat d'àudio." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Com en el cas de la mida de dalt, es poden utilitzar =, < i >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Impedir l'accés d'escriptura d'altres programes als fitxers que es " #~ "descarreguen (desactivar per a NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "On s'emmagatzemen temporalment les descàrregues incompletes." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "On s'emmagatzemaran les pujades dels amics (amb una subcarpeta creada per " #~ "a cada amic)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Commutar a l'estat d'absent després de minuts d'inactivitat:" #~ msgid "Protocol:" #~ msgstr "Protocol:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Carpeta de temes d'icones (cal reiniciar):" nicotine-plus-3.3.4/po/cs.po000066400000000000000000007241701461625273200157200ustar00rootroot00000000000000# Copyright (C) 2021-2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-07-25 18:31+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.0-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek Klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafický klient pro Soulseek P2P síť" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;sdílení;hudba;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafický klient pro Soulseek P2P síť" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ je grafický klient pro Soulseek P2P síť." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ cílí být příjemnou, zdarma open source (FOSS) alternativou k " "oficiálnímu Soulseek klientovi. Nabízí dodatečnou funkcionalitu a je používá " "aktuální Soulseek protokol." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Hledat soubory" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 #, fuzzy msgid "Downloads" msgstr "Stahování souborů" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "akcie Bro_wse Buddy" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Soukromý chat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ tím" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Provedeno: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "zobraz tuto nápovědu a ukonči program" #: pynicotine/__init__.py:59 msgid "file" msgstr "soubor" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "použít vlastní konfigurační soubor" #: pynicotine/__init__.py:63 msgid "dir" msgstr "složka" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "použití ne výchozího adresáře pro pluginy" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "Spusťte program bez zobrazení okna" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "Ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "vázat sokety na danou IP adresu (užitečné pro VPN)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "přístav" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "poslouchejte na daném portu" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "znovu proskenovat sdílené soubory" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "spusťte program v bezhlavém režimu (bez GUI)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "zobrazit verzi a ukončit" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Používáte nepodporovanou verzi Pythonu (%(old_version)s).\n" "Měli byste nainstalovat Python %(min_version)s nebo novější." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Nepodařilo se skenovat sdílené složky. Zavřete prosím další případy " "Nicotine+ a zkuste to znovu." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Uživatel %s je pryč" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Uživatel %s je online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Uživatel %s je offline" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Seznam kamarádů" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Byli jste přidáni do soukromé místnosti: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Chatová zpráva od uživatele '%(user)s' v místnosti '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, fuzzy, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Nelze vytvořit adresář '%(path)s', hlášená chyba: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Chyba zálohování konfigurace: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Konfigurace zálohovaná na: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Ukončení Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Ukončení Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "ukončující" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "uzávěrka aplikace" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Ukončení Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "Před připojením musíte zadat uživatelské jméno a heslo…" #: pynicotine/downloads.py:224 #, fuzzy, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Chyba: Filtr stahování se nezdařil! Ověřte filtry. Důvod: %s" #: pynicotine/downloads.py:239 #, fuzzy, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Chyba: %(num)d Filtry stahování se nezdařily! %(error)s " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s staženo z %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Stažený soubor" #: pynicotine/downloads.py:366 #, fuzzy, python-format msgid "Executed: %s" msgstr "Provedeno: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Provedení '%(command)s' se nezdařilo: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s staženo z %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Stažená složka" #: pynicotine/downloads.py:407 #, fuzzy, python-format msgid "Executed on folder: %s" msgstr "Spuštěno ve složce: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Nelze přesunout '%(tempfile)s' na '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Chyba stažení složky" #: pynicotine/downloads.py:481 #, fuzzy, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Stahování dokončeno: uživatel %(user)s, soubor %(file)s" #: pynicotine/downloads.py:499 #, fuzzy, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Stáhnout přerušeno, uživatel %(user)s soubor %(file)s" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Chyba stahování I/O: %s" #: pynicotine/downloads.py:1194 #, fuzzy, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" "Nelze získat exkluzivní zámek v souboru - chyba vstupně-výstupních vstupů: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Nelze uložit soubor %(path)s: %(error)s" #: pynicotine/downloads.py:1226 #, fuzzy, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Stahování zahájeno: uživatel %(user)s, soubor %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Nelze najít %s, nainstalujte jej." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Není k dispozici žádné grafické prostředí, používá se bezhlavý (bez GUI) " "režim" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 #, fuzzy msgid "_Connect" msgstr "_Connect" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 #, fuzzy msgid "_Disconnect" msgstr "_Disconnect" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "Soulseek _Privileges" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Preferences" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Quit" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Browse veřejné akcie" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "akcie Bro_wse Buddy" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "akcie Bro_wse Buddy" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "Akcie Rescan" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "akcie _Configure" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Keyboard zkratky" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "Asistent _Setup" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "statistiky _Transfer" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Nahlásit _Bug" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Vylepšete T_ranslations" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "Více _Nicotine+" #: pynicotine/gtkgui/application.py:422 #, fuzzy msgid "_File" msgstr "_File" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Shares" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Help" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "akcie Bro_wse Buddy" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Nelze zobrazit vyskakovací okno s oznámením: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Opravdu chcete opustit Nicotine+?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Opravdu chcete opustit Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "Ne" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Spustit na pozadí" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Ukončit Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Akcie nejsou k dispozici" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Ověřte, že jsou připojeny externí disky a že jsou správná oprávnění složky." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Cancel" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 #, fuzzy msgid "_Retry" msgstr "_Retry" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Vynutit opětovné skenování" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Neplatné heslo" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Uživatel %s již existuje a zadané heslo je neplatné. Pokud se přihlašujete " "poprvé, zvolte jiné uživatelské jméno." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Změna přihlašovacích údajů" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Uživatelé pro stahování zpráv" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Pošlete soukromou zprávu všem uživatelům, kteří od vás stahují:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Odeslat zprávu" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Zprávy" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Pošlete soukromou zprávu všem online kamarádům:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Výběr souboru seznamu uložených sdílených složek" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kritická chyba" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ narazil na kritickou chybu a musí ukončit. Zkopírujte prosím " "následující zprávu a zahrňte ji do zprávy o chybě:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Ukončit Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Chyba kopírování a hlášení" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 #, fuzzy msgid "Status" msgstr "Stav" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 #, fuzzy msgid "Country" msgstr "Země" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 #, fuzzy msgid "User" msgstr "Uživatel" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 #, fuzzy msgid "Speed" msgstr "Rychlost" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 #, fuzzy msgid "Files" msgstr "Soubory" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted" msgstr "Důvěryhodný" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Uvědomit" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Upřednostněný" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Naposledy viděno" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Poznámka" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Přidat uživatelskou _poznámku…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 #, fuzzy msgid "Remove" msgstr "Odstranit" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Nikdy jsem neviděl" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Přidat poznámku uživatele" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Přidejte několik poznámek přidružených k uživateli %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Add…" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Vytvořit nový pokoj?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Opravdu chcete vytvořit novou místnost \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Udělejte pokoj soukromý" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Soubory uživatele Sear_ch" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Najít…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 #, fuzzy msgid "Copy" msgstr "Kopírovat" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 #, fuzzy msgid "Copy All" msgstr "Kopírovat vše" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Jasné zobrazení aktivity" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "_Leave místnost" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Odkaz na kopírování" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Zobrazit deník místnosti" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Odstranit protokol místnosti…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Jasné zobrazení zpráv" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, fuzzy, python-format msgid "%s joined the room" msgstr "%s vstoupil do místnosti" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s se o vás zmínil v místnosti %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Zpráva od %(user)s v místnosti %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Zpráva od %(user)s v místnosti %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, fuzzy, python-format msgid "%s left the room" msgstr "%s opustil místnost" #: pynicotine/gtkgui/chatrooms.py:899 #, fuzzy, python-format msgid "%s has gone away" msgstr "%s odešel" #: pynicotine/gtkgui/chatrooms.py:902 #, fuzzy, python-format msgid "%s has returned" msgstr "%s se vrátil" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Odstranit protokolované zprávy?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Opravdu chcete trvale odstranit všechny protokolované zprávy pro tuto " "místnost?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Džibutsko" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Provedeno: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Chyba načítání nejnovější verze" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Aktuální" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Zkontrolujte _Latest verzi" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "Asistent _Setup" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtuální složka" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Složka" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Hotový" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Další" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Přidání sdílené složky" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Sdílené složky" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Zadejte nový virtuální název pro '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Editace" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Vlastnosti souboru" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Vlastnosti souboru (%(num)i z %(total)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Vlastnosti souboru (%(num)i z %(total)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Použít" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Přidat…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Upravit…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "Nastavení %s" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Položka" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Zájmy" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 #, fuzzy msgid "Unknown" msgstr "Neznámý" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Zkontrolujte stav portu" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Změna hesla odmítnuta" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Zadejte nové heslo pro svůj účet Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "V současné době jste odhlášeni ze sítě Soulseek. Pokud chcete změnit heslo " "stávajícího účtu Soulseek, musíte být přihlášeni k tomto účtu." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Zadejte heslo, které chcete použít při přihlašování:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Změna hesla" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Změna hesla odmítnuta" #: pynicotine/gtkgui/dialogs/preferences.py:276 #, fuzzy msgid "No one" msgstr "Nikdo" #: pynicotine/gtkgui/dialogs/preferences.py:277 #, fuzzy msgid "Everyone" msgstr "Každý" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 #, fuzzy msgid "Buddies" msgstr "Kamarádi" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Důvěryhodní kamarádi" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Nic" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Další soubor" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "_Open ve Správci souborů" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 #, fuzzy msgid "Search" msgstr "Hledání" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Pauza" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Pokračovat" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "_Browse složky" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntaxe: Nerozlišují se malá a velká písmena. Pokud je povoleno, lze " "použít regulární výrazy Pythonu, jinak jsou podporovány pouze shody se " "zástupnými *." #: pynicotine/gtkgui/dialogs/preferences.py:320 #, fuzzy msgid "Filter" msgstr "Filtr" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Přidat filtr ke stažení" #: pynicotine/gtkgui/dialogs/preferences.py:459 #, fuzzy msgid "Enter a new download filter:" msgstr "Zadejte nový filtr stahování:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Povolit regulární výrazy" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Upravit filtr ke stažení" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Upravte následující filtr stahování:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, fuzzy, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Neúspěšný! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtry úspěšné" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 #, fuzzy msgid "Abort" msgstr "Potratit" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 #, fuzzy msgid "Retry" msgstr "_Retry" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Cyklická obsluha" #: pynicotine/gtkgui/dialogs/preferences.py:804 #, fuzzy msgid "First In, First Out" msgstr "První v, první ven" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 #, fuzzy msgid "Username" msgstr "Uživatelské jméno" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Blokovat IP adresu" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ignorovat uživatele" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Zadejte jméno uživatele, kterého chcete ignorovat:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Ignorovat IP adresu" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Zadejte IP adresu, kterou chcete ignorovat:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* je zástupný znak" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Zakázat uživatele" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Zadejte jméno uživatele, kterého chcete zakázat:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Blokovat IP adresu" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Zadejte IP adresu, kterou chcete zablokovat:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Vzor" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Náhrada" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Vzor cenzury" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Zadejte vzor, který chcete cenzurovat. Pokud nechcete odpovídat řetězcům " "uvnitř slov , přidejte mezery kolem vzoru (na začátku a na konci řádků může " "selhat)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Cenzurované vzory" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Náhrada" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Zadejte vzor textu a náhradu:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Náhrada" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Výchozí" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Zobrazit dialogové okno potvrzení" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Spuštění na pozadí" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "tučný" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "kurzíva" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "podtrhnout" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normální" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Zprávy" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Seznam kamarádů v chatovacích místnostech" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Vrchol" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Dno" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Vlevo" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Vpravo" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 #, fuzzy msgid "Online" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 #, fuzzy msgid "Away" msgstr "Pryč" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 #, fuzzy msgid "Offline" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Změna hesla odmítnuta" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Zvýraznit" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Okno" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Připojeno (zásobník)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Pryč (zásobník)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Zpráva (zásobník)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 #, fuzzy msgid "Protocol" msgstr "Protokol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Příkaz:" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Obslužné rutiny adresy URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Zadejte protokol a příkaz pro hander URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Úprava komentářů" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Zadejte nový virtuální název pro '%(dir)s':" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Uživatelské jméno; APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "Jméno klienta (např. amarok, odvážné, exaile) nebo prázdné pro auto:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Uživatelské jméno:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Příkaz:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Titul" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Nyní hraje (typicky \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Umělec" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Doba trvání" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 #, fuzzy msgid "Bitrate" msgstr "Datový tok" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "Komentář" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Číslo stopy" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "Rok" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Název souboru (identifikátor URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Zpřístupněný" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Pluginy" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Nebyl vybrán žádný plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Síť" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Uživatelské rozhraní" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 #, fuzzy msgid "Shares" msgstr "Sdílí" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 #, fuzzy msgid "Uploads" msgstr "Obrázky" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 #, fuzzy msgid "Searches" msgstr "Hledá" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Procházení uživatelem" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Klábosí" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Nyní hraje" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 #, fuzzy msgid "Logging" msgstr "Protokolování" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Zakázaní uživatelé" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Ignorované uživatele" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Pluginy" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "Obslužné rutiny adresy URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Možnosti" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Výběr názvu souboru pro zálohování konfigurace" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Statistiky převodu" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Celkem od %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Obnovit statistiky přenosu?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Opravdu chcete obnovit statistiky přenosu?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "_Wishlist" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Přání" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Search pro položku" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Editace" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Zadejte nový virtuální název pro '%(dir)s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Jasný seznam přání?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Opravdu si chcete vymazat seznam přání?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 #, fuzzy msgid "Path" msgstr "Cesta" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Resume" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "P_ause" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Dokončeno / filtrováno" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 #, fuzzy msgid "Finished" msgstr "Hotový" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 #, fuzzy msgid "Paused" msgstr "Pozastaveno" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 #, fuzzy msgid "Filtered" msgstr "Filtrovaný" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Smazáno" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "Zařazený do fronty…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Všechno…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Vymazat stahování ve frontě" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Opravdu chcete vymazat všechna stahování ve frontě?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Vymazat všechna stahování" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Opravdu chcete vymazat všechna stahování?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Stáhnout soubory %(num)i?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "Opravdu chcete stahovat soubory %(num)i ze složky %(user)s%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "Složka _Download" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Má rád" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Nelibosti" #: pynicotine/gtkgui/interests.py:104 #, fuzzy msgid "Rating" msgstr "Hodnocení" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Položka" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Recommendations pro položku" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "_Like jsem to" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "_Dislike jsem to" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Doporučení" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Podobní uživatelé" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Doporučení" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Podobní uživatelé" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, fuzzy, python-format msgid "Private Message from %(user)s" msgstr "Soukromá zpráva z %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Výsledky v seznamu přání nalezeny" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Procházení uživatelem" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 #, fuzzy msgid "Interests" msgstr "Zájmy" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Povídat si" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "[Debug] Připojení" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "[Debug] Zprávy" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Přenosy" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Různé" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Najít…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopírovat" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopírovat vše" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Zobrazit protokoly ladění" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Zobrazit protokol přenosu" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategorie" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Vymazat zobrazení protokolu" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Ke stažení: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Nahrávání: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Skenování sdílených složek" #: pynicotine/gtkgui/mainwindow.py:1189 #, fuzzy msgid "Scanning Shares" msgstr "Skenování sdílených složek" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Odeslat zprávu" #: pynicotine/gtkgui/popovers/roomlist.py:68 #, fuzzy msgid "Room" msgstr "Místnost" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 #, fuzzy msgid "Users" msgstr "Uživatelé" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Připojte se k místnosti" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Nechte pokoj" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Zřekni soukromý pokoj" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Zrušit členství v místnosti" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Zavřít všechny karty…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "Karta _Close" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Zobrazit protokol chatu" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Odstranit protokol chatu…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Akce přenosu" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Opravdu chcete trvale odstranit všechny protokolované zprávy pro tohoto " "uživatele?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Zprávy odeslané, když jste byli offline. Časová razítka jsou hlášena " "serverem a mohou být vypnuta." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Globální" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Kamarádi" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Místnosti" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Uživatel" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "Ve frontě" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Typ souboru" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 #, fuzzy msgid "Filename" msgstr "Jméno souboru" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 #, fuzzy msgid "Size" msgstr "Velikost" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kvalitní" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopírovat cestu _File" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 #, fuzzy msgid "Copy _URL" msgstr "Zkopírujte _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "U_RL kopírování složky" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Download soubory" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Stáhnout soubory _To…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Stáhnout _Folder(y)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Stáhněte si F_older do…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Zobrazit uživatelský _profil" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Browse složky" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "vlastnosti F_ile" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopírovat hledaný výraz" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Vymazat všechny výsledky" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Vymazat historii filtrů" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "_Result filtry" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[SOUKROMÉ]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Result filtry [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Result filtry" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Vymazání všech aktivních filtrů" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Přidat Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Odebrat Wi_sh" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Vyberte převody uživatele" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Totální" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Výsledky" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Vyberte cíl pro stahování souborů od uživatele" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Výběr složky" #: pynicotine/gtkgui/transfers.py:60 #, fuzzy msgid "Queued" msgstr "Zařazený do fronty" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "upřednostněný" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "privilegovaný" #: pynicotine/gtkgui/transfers.py:63 #, fuzzy msgid "Getting status" msgstr "Získání stavu" #: pynicotine/gtkgui/transfers.py:64 #, fuzzy msgid "Transferring" msgstr "Přenášení" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Připojení uzavřené peer" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Připojení" #: pynicotine/gtkgui/transfers.py:67 #, fuzzy msgid "User logged off" msgstr "Uživatel se odhlásil" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Zrušit" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Chyba stažení složky" #: pynicotine/gtkgui/transfers.py:73 #, fuzzy msgid "Local file error" msgstr "Chyba místního souboru" #: pynicotine/gtkgui/transfers.py:74 #, fuzzy msgid "Banned" msgstr "Zakázaný" #: pynicotine/gtkgui/transfers.py:75 #, fuzzy msgid "File not shared" msgstr "Soubor, který není sdílen" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Čeká se na vypnutí" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Převody" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Zařazený do fronty" #: pynicotine/gtkgui/transfers.py:182 #, fuzzy msgid "Percent" msgstr "Procento" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Uplynul čas" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Zbývá čas" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "seznam _Open" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Otevřít v _Manager souborů" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "_Search" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Vymazat vše" #: pynicotine/gtkgui/transfers.py:874 #, fuzzy msgid "Select User's Transfers" msgstr "Vyberte převody uživatele" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "_Abort" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Dokončeno / přerušeno / Nezdařilo se" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Dokončeno / filtrováno" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Neúspěšný" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Uživatel se odhlásil" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Vymazat nahrávání ve frontě" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Opravdu chcete vymazat všechna nahrávání ve frontě?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Vymazat všechna nahraná videa" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Opravdu chcete vymazat všechna nahraná videa?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Save Seznam sdílených složek na disk" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Nahrát složku (s podsložkami) uživateli" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopírovat cestu _Folder" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Stáhnout _Folder(y)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Stáhněte si F_older do…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Jméno souboru" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Up_load soubory" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Nahrát složku do…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Stáhnout složku _To…" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Seznam sdílených souborů uživatele je prázdný. Uživatel buď nic nesdílí, " "nebo sdílí soubory soukromě." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Nelze od uživatele požádat o sdílené soubory. Buď je uživatel offline, oba " "máte uzavřený naslouchací port nebo dojde k dočasnému problému s připojením." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Vyberte Cíl pro stažení složky od uživatele" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Nahrát složku (s podsložkami) uživateli" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Nahrát složku do…" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Zadejte jméno uživatele, na kterého chcete nahrát:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "Upload" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Vyberte cíl pro stahování souborů od uživatele" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Nahrát soubory" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Obraz:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Uložit obrázek" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Nepodařilo se načíst obrázek pro uživatele %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Nelze požadovat informace od uživatele. Buď máte oba uzavřený naslouchací " "port, uživatel je offline nebo dojde k dočasnému problému s připojením." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Odebrat Wi_sh" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Přidat kamaráda…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Zakázat uživatele" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ignorovat uživatele" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "Yes" msgstr "Ano" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "No" msgstr "Ne" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Zadejte prosím celé číslo!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "Darujte dny svých práv Soulseek uživateli %(user)s (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "%(days)s zbývající dny" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Udělit oprávnění" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Udělit oprávnění" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Karta Zavřít" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Ano" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Výběr souboru" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Výběr složky" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Vyberte Vše" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Výběr obrázku" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Všechny obrázky" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Uložit jako…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Žádné)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "Karta _Close" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Zavřít všechny karty?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Opravdu chcete zavřít všechny karty?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Nepřečtené karty" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Zavřít všechny karty?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "Karta _Close" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Vybrané soubory" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Browse soubory" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Přidat kamaráda…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Zobrazit A_ddress IP adresy" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Soukromé pokoje" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Odebrat ze soukromé místnosti %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Přidat do soukromé místnosti %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Odebrat jako operátor %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Přidat jako operátor %s" #: pynicotine/gtkgui/widgets/textview.py:452 #, fuzzy msgid "--- old messages above ---" msgstr "--- staré zprávy nad ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Provedeno: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Zvuk" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "obraz" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Archiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Rozmanitý" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokument/Text" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Chyba načítání vlastní ikony %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Skrýt Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Zobrazit Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Sloupec #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Rozložen" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Seskupit podle složky" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Seskupit podle uživatele" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Opravdu chcete opustit Nicotine+?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Uživatel %s již existuje a zadané heslo je neplatné. Pokud se přihlašujete " "poprvé, zvolte jiné uživatelské jméno." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Heslo" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Chcete-li vytvořit nový účet Soulseek, vyplňte požadované uživatelské jméno " "a heslo. Pokud již účet máte, vyplňte své stávající přihlašovací údaje." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nelze zapisovat do souboru protokolu \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Nelze uložit soubor %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Spojené arabské emiráty" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afghánistán" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua & Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albánie" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Arménie" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktida" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Americká Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Rakousko" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Austrálie" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Ålandské ostrovy" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Ázerbájdžán" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosna a Hercegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladéš" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgie" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulharsko" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrajn" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Svatý Bartoloměje" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermudy" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolívie" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius a Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brazílie" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamy" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhútán" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Ostrov Bouvet" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Bělorusko" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kokosové (Kýlovací) ostrovy" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Konžská demokratická republika" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Středoafrická republika" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Švýcarsko" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Pobřeží slonoviny" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cookovy ostrovy" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Čína" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Kolumbie" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Kostarika" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Vánoční ostrov" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Kypr" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Česko" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Německo" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Džibutsko" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Dánsko" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikánská republika" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Alžírsko" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ekvádor" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estonsko" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egypt" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Západní Sahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Španělsko" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopie" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Evropa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Finsko" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fidži" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandské ostrovy (Malvíně)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronésie" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Faerské ostrovy" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Francie" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Velká Británie" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Gruzie" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Francouzská Guyana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grónsko" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambie" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Rovníková Guinea" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Řecko" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Jižní Georgie a Jižní Sandwichovy ostrovy" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heardovy a McDonaldovy ostrovy" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Chorvatsko" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Maďarsko" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonésie" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irsko" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Izrael" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Ostrov Man" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "Indie" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Britské území Indického oceánu" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irák" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Írán" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Itálie" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamajka" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordánsko" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japonsko" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Keňa" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kyrgyzstán" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kambodža" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komory" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Svatý Kryštmsek & Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Severní Korea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Jižní Korea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuvajt" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Kajmanské ostrovy" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazachstán" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Svatá Lucie" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Lichtenštejnsko" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Srí Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Libérie" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Litva" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Lucembursko" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Lotyšsko" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libye" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Maroko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldavsko" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Černá Hora" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Saint-Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshallovy ostrovy" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Severní Makedonie" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolsko" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Severní Mariany" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinik" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritánie" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauricius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maledivy" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexiko" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malajsie" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mosambik" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibie" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Nová Kaledonie" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolk" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigérie" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nikaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Nizozemsko" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norsko" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepál" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Nový Zéland" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Omán" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Francouzská Polynésie" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua-Nová Guinea" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filipíny" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pákistán" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Polsko" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Svatý Pierre & Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Portoriko" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Stát Palestina" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugalsko" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Rumunsko" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Srbsko" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Rusko" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saúdská Arábie" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Šalamounovy ostrovy" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychely" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Súdán" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Švédsko" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Svatá Helena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovinsko" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Špicberky a Ostrovy Jana Mayen" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovensko" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somálsko" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Jižní Súdán" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome & Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Sýrie" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Ostrovy Turks a Caicos" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Čad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Francouzská jižní území" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Thajsko" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tádžikistán" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Východní Timor" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistán" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisko" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turecko" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad & Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Tchaj-wan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzanie" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukrajina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "Menší odcházející ostrovy USA" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Spojené státy americké" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistán" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Svatý stolec (Vatikánský městský stát)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Svatý Vincenc a Grenadiny" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Britské Panenské ostrovy" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Americké Panenské ostrovy" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis & Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Jihoafrická republika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambie" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Převod textu na řeč pro zprávu se nezdařil: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Uveďte prosím uživatelské jméno Last.fm i klíč ROZHRANÍ API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Nyní hraje formát" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nelze se připojit k audioscrobbleru: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Nelze získat nedávnou stopu z Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nepodařilo se najít vhodný přehrávač MPRIS" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Bylo nalezeno více přehrávačů MPRIS: %(players)s. Použití: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automaticky detekovaný přehrávač MPRIS: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Při dotazování se něco pokazilo %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Uveďte prosím své uživatelské jméno ListenBrainz" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nelze se připojit k ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Zdá se, že teď nic neposloucháš." #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "ListenBrainz: Nelze získat aktuální skladbu z ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Síťová vyhledávání" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Kompletní integrované příkazy" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Nelze se připojit k serveru. Důvod: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Odpojeno od serveru %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Přepíná stav pryč" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Povolit pluginy" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Vymazání okna chatu" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Řekni něco ve třetí osobě." #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Oznámit aktuálně přehrávanou skladbu" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Připojte se nebo vytvořte místnost…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Nechte aktuální místnost" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Řekněte zprávu v určené chatovací místnosti" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Soukromý chat" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Zavření aktuálního soukromého chatu" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Vyžádání informací o uživateli" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Pošlete soukromou zprávu všem online kamarádům:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Přidání uživatele do seznamu kamarádů" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Odebrání uživatele ze seznamu kamarádů" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Procházení souborů uživatele \"uživatele\"" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Informace o uživateli" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Zobrazit IP adresu pro uživatele" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blokovat připojení z uživatele nebo IP adresy" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Odebrání uživatele ze seznamu zákazů" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Ztišení zpráv od uživatele nebo IP adresy" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Odebrání uživatele ze seznamu ignoruje" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Přidat Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Odebrat Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Akcie Rescan" #: pynicotine/plugins/core_commands/__init__.py:239 #, fuzzy msgid "Rescan shares" msgstr "Akcie Rescan" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Spusťte globální vyhledávání souborů" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Vyhledávání souborů a složek (přesná shoda)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Vyhledávání souborů a složek (přesná shoda)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Hledání \"dotazu\" ve sdílených složek uživatele" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Výpis %(num)i dostupných příkazů:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Výpis %(num)i dostupných příkazů odpovídajících \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Chcete-li zobrazit podobné příkazy, zadejte %(command)s" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Zadejte %(command)s pro seznam dostupných příkazů" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s vstoupil do místnosti" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Zavření aktuálního soukromého chatu" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Zakázaný" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Zakázat uživatele" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorované uživatele" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ignorovat uživatele" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Načtený plugin %s" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Nelze načíst plugin %(name)s. Název složky pluginu obsahuje neplatné znaky: " "%(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konfliktní příkaz %(interface)s v pluginu %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Načtený plugin %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nelze načíst plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Uvolněný plugin %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nelze uvolnit plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s selhal s chybou %(errortype)s: %(error)s.\n" "Trasování: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Není uveden žádný popis" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Chybí argument %s" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Neplatná adresa URL Soulseek: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Použití: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Neznámý příkaz: %(command)s. Chcete-li zobrazit seznam dostupných příkazů, " "zadejte %(help_command)s." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Nebyla nalezena žádná zařízení UPnP" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Nepodařilo se přeposlat externí port %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Externí port %(external_port)s úspěšně předán na místní IP adresu " "%(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Soukromá zpráva z %(user)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Hledání položky seznamu přání \"%s\"" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Čekací doba seznamu přání nastavená na %s sekundy" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Uživatel %(user)s hledá \"%(query)s\", vrací %(num)i výsledky" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Rescanning buddy sdílí…" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Rescanning buddy sdílí…" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Opětovné skenování dokončeno: Bylo nalezeno %(num)s složek" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Při opětovném prosazení akcií došlo k závažné chybě. Pokud tento problém " "přetrvává, odstraňte %(dir)s/*.db a zkuste to znovu. Pokud to nepomůže, " "zadejte zprávu o chybě s tímto trasováním zásobníku: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Chyba při skenování souboru %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Chyba při skenování složky %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Chyba při skenování metadat pro soubor %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "" "Opětovné skenování bylo přerušeno z důvodu nedostupnosti sdílených položek" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Uživatel %(user)s prochází váš seznam sdílených souborů" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Nepodařilo se načíst sdílenou složku %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Nelze číst databázi sdílených složek. Prosím, znovu prozývejte své akcie. " "Chyba: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Zadané síťové rozhraní '%s' neexistuje" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Nelze poslouchat na portu %(port)s. Ujistěte se, že jej nepoužívá žádná jiná " "aplikace, nebo zvolte jiný port. Chyba: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Poslech na portu %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nelze se připojit k serveru %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Automatické připojení k serveru při spuštění" #: pynicotine/slskproto.py:1202 #, fuzzy, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Připojení k %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Připojeno k serveru %(host)s:%(port)s, přihlášení…" #: pynicotine/slskproto.py:1520 #, fuzzy, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Odpojeno od serveru %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Někdo se přihlásil k vašemu účtu Soulseek jinde" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Nahrávání dokončeno: uživatel %(user)s, IP adresa %(ip)s, soubor %(file)s" #: pynicotine/uploads.py:409 #, fuzzy, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Nahrát přerušený, uživatelský soubor %(user)s %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "Chyba nahrát I/O: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Nahrávání zahájeno: uživatel %(user)s, IP adresa %(ip)s, soubor %(file)s" #: pynicotine/userbrowse.py:167 #, fuzzy, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Nelze vytvořit adresář '%(folder)s', hlášená chyba: %(error)s" #: pynicotine/userbrowse.py:218 #, fuzzy, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Načítání sdílených složek z disku se nezdařilo: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Uložený seznam sdílených souborů pro uživatele '%(user)s' na %(dir)s" #: pynicotine/userbrowse.py:268 #, fuzzy, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Nelze uložit sdílené složky,%(user)s', nahlášená chyba: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Obrázek uložený na %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Nelze uložit %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Uživatel %(user)s čte vaše uživatelské údaje" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nelze se připojit k serveru. Důvod: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Nelze se připojit" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Nelze načíst IP adresu uživatele %s, protože tento uživatel je offline" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP adresa uživatele %(user)s je %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek Klient" #: pynicotine/users.py:356 #, fuzzy, python-format msgid "%i privileged users" msgstr "%i privilegovaní uživatelé" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Nemáte žádná privilegia. Oprávnění nejsou vyžadována, ale umožňují, aby " "stahování bylo zařazeno do fronty před neu privilegovanými uživateli." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dny, %(hours)i hodiny, %(minutes)i minuty, %(seconds)i sekundy " "oprávnění ke stažení vlevo." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Vaše heslo bylo změněno. Heslo je %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Změna hesla odmítnuta" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Nelze uložit soubor %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Nelze uložit %(filename)s: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Při čtení souboru se něco pokazilo %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Pokus o načtení zálohy souboru %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Nelze zálohovat soubor %(path)s: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Nelze uložit soubor %(path)s: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Nelze obnovit předchozí soubor %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Přidat kamaráda…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Hledaný výraz…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Hledaný výraz…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Odeslat zprávu" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Přepínání převodu převodu textu na řeč" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Nápověda k příkazu Chatovací místnost" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Log" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Stěna místnosti" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Stěna místnosti" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Vytvořil" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Přeloženo" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licence" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Předchozí soubor" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Vítejte v Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Set nahoru…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Pokud je požadované uživatelské jméno již přijato, budete vyzváni ke změně." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Pokud je váš odposlouchávací port zavřený, budete se moci připojit pouze k " "uživatelům, jejichž odposlouchávací porty jsou otevřené." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "V případě potřeby níže vyberte jiný naslouchací port. To lze provést i " "později v preferencích." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Stažení souborů do složky" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Sdílení složek" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Uživatelé Soulseek budou moci stahovat z vašich sdílení. Přispějte do sítě " "Soulseek sdílením své vlastní sbírky a sdílením toho, co jste si stáhli od " "ostatních uživatelů." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Jste připraveni používat Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Darování Soulseek vám uděluje privilegia po určitou dobu. Pokud máte " "oprávnění, stahování bude zařazeno do fronty před neu privilegovanými " "uživateli." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Předchozí soubor" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Další soubor" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Název souboru" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Poslední rychlost" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Vývoz" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Klávesové zkratky" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Obecné" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 #, fuzzy msgid "Connect" msgstr "Spojit" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 #, fuzzy msgid "Disconnect" msgstr "Odpojit" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Akcie Rescan" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Zobrazit podokno protokolu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Konfigurace protokolování" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 #, fuzzy msgid "Quit" msgstr "Přestat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Jídelní lístky" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Otevřít hlavní nabídku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Otevřít kontextovou nabídku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Tabulátory" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Změnit primární kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Přejít na kartu Předchozí sekundární" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Přejít na další sekundární kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Zavřít sekundární kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Zavřít sekundární kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Listy" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Vyberte Vše" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Odebrat vybraný řádek" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Editace" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Řezat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Pasta" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Vložit emodži" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Vyberte Vše" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 #, fuzzy msgid "Find" msgstr "Najít" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Najít další shodu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Najít předchozí shodu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Převody" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Pokračovat / Opakovat přenos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Pozastavit / přerušit přenos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Stáhnout složku _To…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Save Seznam sdílených složek na disk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Aktualizovat soubory" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Rozbalit / sbalit vše" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Nelze sdílet složku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Hledání" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "_Result filtry" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Aktuální relace" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Dokončené stahování" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Stažená velikost" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Dokončená nahrávání" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Nahraná velikost" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Totální" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Resume" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Položky seznamu přání jsou automaticky prohledávány v pravidelných " "intervalech, aby se zjistilo neobvyklé soubory." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Přidat přání…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Vymazat vše…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Stažený soubor" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Vymazat dokončené" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Vymazat všechna stahování" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Vymazat vše…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Osobní zájmy" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Přidejte něco, co se vám líbí…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Osobní nelibost" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Přidejte něco, co se vám nelíbí…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Doporučení" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Otevřít hlavní nabídku" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Místnost…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Uživatelské jméno…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Hledaný výraz…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Vyhledávací vzory: se slovem = termín, beze slova = -term, částečné slovo = " "*erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Rozsah hledání" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Wishlist" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfigurace vyhledávání" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Zadání hledacího výrazu pro vyhledávání souborů sdílených ostatními " "uživateli v síti Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Režim seskupení souborů" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfigurace stahování" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Soubory, které stáhnete od ostatních uživatelů, jsou zde zařazeny do fronty " "a lze je na požádání pozastavit a obnovit" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfigurace nahrávání" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Pokusy uživatelů o stažení sdílených souborů jsou zde zařazeny do fronty a " "spravovány" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "seznam _Open" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Otevře místní seznam sdílených souborů, které byly dříve uloženy na disk" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "akcie _Configure" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Zadejte jméno uživatele, jehož sdílené soubory chcete procházet. Seznam " "můžete také uložit na disk a později jej zkontrolovat." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Osobní nelibost" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfigurace protokolování" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Zadejte jméno uživatele a zobrazte jeho uživatelský popis, informace a " "osobní obrázek." #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Historie chatu" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfigurace sdílených složek" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Zadejte jméno uživatele a začněte s ním textovou konverzaci v soukromí." #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Zprávy" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ignorované uživatele" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Přidání uživatelů do seznamu kamarádů pro sdílení konkrétních složek s nimi " "a přijímání oznámení, když jsou online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Připojte se nebo vytvořte místnost…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Připojte se k existující chatovací místnosti nebo vytvořte novou místnost " "pro chatování s ostatními uživateli v síti Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Zobrazit uživatelský profil" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Hledaný výraz…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Konexe" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Stahování (rychlost / aktivní uživatelé)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Nahrávání (rychlost / aktivní uživatelé)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Hledaný výraz…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Omezení rychlosti stahování" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Omezit rychlost nahrávání:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Alternativní rychlostní limit stahování (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternativní rychlostní limit stahování (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Hledaný výraz…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Seznam obnovovacích místností" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Show zdroj zpráv z veřejné chatovací místnosti" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "pozvánky _Accept soukromé pokoje" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Funkce stěny místnosti umožňuje uživatelům v místnosti zadat jedinečnou " "zprávu, která se má zobrazit ostatním. Poslední zprávy se zobrazují nahoře." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Nastavit nástěnnou zprávu…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Filtry výsledků hledání" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Filtry výsledků hledání se používají k upřesnění, které výsledky vyhledávání " "se zobrazují." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Každý seznam výsledků vyhledávání má svůj vlastní filtr, který lze odhalit " "přepínáním tlačítka Filtry výsledků. Filtr se skládá z více polí, z nichž " "všechna se použijí při stisknutí klávesy Enter v některém z jeho polí. " "Filtrování se aplikuje okamžitě na již přijaté výsledky a také na ty, které " "ještě nedorazily. Chcete-li znovu zobrazit úplné výsledky, jednoduše vymažte " "filtr všech termínů a znovu jej použijte. Jak název napovídá, filtr výsledků " "hledání nemůže rozšířit původní vyhledávání, může jej pouze zúžit. Chcete-li " "hledané výrazy rozšířit nebo změnit, proveďte nové vyhledávání." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Jak již název napovídá, filtr výsledků vyhledávání nemůže rozšířit vaše " "původní vyhledávání, může jej pouze zúžit. Chcete-li hledané výrazy rozšířit " "nebo změnit, proveďte nové vyhledávání." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "_Result filtry" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Zahrnout text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Zobrazí se soubory a složky obsahující tento text." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Případ je necitlivý, ale pořadí slov je důležité: \"Spears Brittany\" " "nezobrazí žádné \"Bretaňské kopí\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Použijte | (nebo roury) k oddělení několika přesných frází. Příklad:\n" " Remix|Dub Mix|Instrumentální" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Vyloučit text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Jak je uvedeno výše, ale soubory a složky jsou odfiltrovány, pokud se text " "shoduje." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtruje soubory na základě jejich přípony souboru." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Lze zadat více přípon souborů, což zase rozšíří seznam výsledků.\n" " Příklad: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Je také možné invertovat filtr a zadat přípony souborů, které nechcete ve " "výsledcích.\n" " Příklad: !mp3|! jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Velikost souboru" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtruje soubory na základě jejich velikosti souboru." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Ve výchozím nastavení je použitá jednotka bajty a soubory větší nebo rovny " "hodnotě budou spárovány." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Připojte b, k, m nebo g (alternativně kib, mib nebo gib) pro určení jednotek " "bajtů, kibibajtů, mebibajtů nebo gibibajtů:\n" " <1024k najde soubory 1024 kibibajtů (tj. 1 mebibajt) nebo menší." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Prepend = na hodnotu pro určení přesné shody:\n" " =1024 odpovídá pouze souborům o velikosti 1024 bajtů (tj. 1 kibibajt)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Prepend = na hodnotu pro určení přesné shody:\n" " =1024 odpovídá pouze souborům o velikosti 1024 bajtů (tj. 1 kibibajt)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Chcete-li vyhledat soubory menší/větší, než je zadaná hodnota, přidejte < " "nebo >:\n" " >10,5m|<1g pro zobrazení souborů větších než 10,5 MiB (mebibajtů),\n" " ale menší než 1 GiB (gibibajty), použijte | mezi podmínkami." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Pro větší pohodlí lze také použít varianty kb, mb a gb pro známější jednotky " "kilo, mega a gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtruje soubory na základě jejich datového toku." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Hodnoty musí být zadány pouze jako číslice. Jednotkou je vždy Kb/s (kilobity " "za sekundu)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Stejně jako velikost souboru (výše) lze použít operátory =, !, < a > a " "pomocí | trubky:\n" " >256|<1411 pro zobrazení souborů s přenosovou rychlostí alespoň 256 kb/" "s\n" " s maximální přenosovou rychlostí 1411 Kb/s." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtruje soubory na základě jejich datového toku." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Ve výchozím nastavení budou porovnávány soubory delší nebo rovné zadané " "délce, pokud není použit operátor (=, !, < nebo >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Zadejte nezpracovanou hodnotu v sekundách nebo použijte časové formáty MM:SS " "a HH:MM:SS:\n" " >5:30 pro zobrazení souborů o délce alespoň 5 a půl minuty.\n" " <5:30:00 zobrazuje soubory kratší než 5 a půl hodiny." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Více podmínek lze zadat pomocí | separátory potrubí:\n" " >6:00|<12:00 pro zobrazení souborů o délce 6 až 12 minut.\n" " !9:54|!8:43|!7:32 skrýt některé konkrétní soubory z výsledků.\n" " =5:34|=4:23|=3:05 pro zahrnutí souborů s konkrétní dobou trvání." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Používá kódy zemí definované normou ISO 3166-2 (viz Wikipedie):\n" " \"USA\" budou vracet pouze soubory od uživatelů připojených přes Spojené " "státy. Podobně \"GB\" vrací soubory od uživatelů s IP adresami ve Spojeném " "království." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Více zemí lze zadat čárkami nebo mezerami." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Volný slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Zorazte pouze ty výsledky od uživatelů, kteří mají alespoň jeden slot pro " "nahrávání zdarma. Tento filtr se aplikuje okamžitě." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Omezení rychlosti nahrávání" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Omezit rychlost nahrávání:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Alternativní rychlostní limit nahrávání (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternativní rychlostní limit nahrávání (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Nápověda k příkazu k privátnímu chatu" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Zahrnout text…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrujte výsledky, jejichž cesty k souborům obsahují zadaný text. Lze zadat " "více frází a slov, např. přesná fráze|music|term|předchodá fráze dvě" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Vyloučit text…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Odfiltrujte výsledky, jejichž cesty k souborům obsahují zadaný text. Lze " "zadat více frází a slov, např. přesná fráze|music|term|předchodá fráze dvě" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Typ souboru…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Typ souboru, např. flac|wav|ape nebo !mp3|! m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Velikost souboru…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Velikost souboru, např. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Datový tok…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, např. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Doba trvání…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Doba trvání, např. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Kód země…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Kód země, např. US| GB|ES nebo !DE|! GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Zakázat uživatelům přístup ke sdíleným souborům na základě uživatelského " "jména, IP adresy nebo země." #: pynicotine/gtkgui/ui/settings/ban.ui:43 #, fuzzy msgid "Country codes to block (comma separated):" msgstr "Kódy zemí, které se mají blokovat (čárka oddělena):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Kódy musí být ve formátu ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Použijte vlastní zprávu o zeměpisném blokování:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 #, fuzzy msgid "Use custom ban message:" msgstr "Použijte vlastní zprávu o zákazu:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adresy" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Povolit kontrolu pravopisu (vyžaduje restartování)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Obnovení dříve otevřených soukromých chatů při spuštění" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Povolit odpovědi na soukromé zprávy podobné CTCP (verze klienta)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Počet posledních řádků chatu, které se mají zobrazit:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Počet posledních řádků chatu, které se mají zobrazit:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Dokončení" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Povolit dokončení klíče karty" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Povolit rozevírací seznam dokončení" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "" "Minimální počet znaků potřebných k zobrazení rozevíracího rozbalovacího " "rozevíracího ždímí:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Povolené dokončení" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Seznam kamarádů" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Zpráva chatovací místnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Místnosti" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Příkazy" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Časová razítka" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Formát soukromé místnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 #, fuzzy msgid "Default" msgstr "Výchozí" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Formát chatovací místnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Převod textu na řeč" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Povolit převod textu na řeč" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Příkaz Převod textu na řeč:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Zpráva soukromého chatu:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Zpráva chatovací místnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Cenzor" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Povolit cenzuru textových vzorů" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Automatické nahrazování" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Povolit automatickou výměnu slov" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Autoclear dokončené/filtrované stahování ze seznamu přenosů" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Ukládání souborů ke stažení v podsložkách uživatelského jména" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Akce poklepátení na stahování:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Umožněte těmto uživatelům posílat vám soubory:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Šanony" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Stažený soubor" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Dokončené stahování" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Přijaté soubory:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 #, fuzzy msgid "Events" msgstr "Dění" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Spustit příkaz po dokončení stahování souborů ($ pro cestu k souboru):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "Spustit příkaz po dokončení stahování složek ($ pro cestu ke složce):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Stáhnout filtry" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Povolit filtry stahování" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 #, fuzzy msgid "Add" msgstr "Přidat" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 #, fuzzy msgid "Load Defaults" msgstr "Výchozí hodnoty načtení" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 #, fuzzy msgid "Verify Filters" msgstr "Ověřit filtry" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Neověřený" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorujte chatové zprávy a výsledky vyhledávání od uživatelů na základě " "uživatelského jména nebo IP adresy." #: pynicotine/gtkgui/ui/settings/log.ui:82 #, fuzzy msgid "Log chatrooms by default" msgstr "Protokol chatovacích místností ve výchozím nastavení" #: pynicotine/gtkgui/ui/settings/log.ui:106 #, fuzzy msgid "Log private chat by default" msgstr "Protokolování soukromého chatu ve výchozím nastavení" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Protokolovat přenosy do souboru" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Protokol ladicích zpráv do souboru" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Formát souboru protokolu:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Umístění složek" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Složka protokolů chatovací místnosti:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Složka soukromých protokolů chatu:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Složka Přenos protokolů:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Složka protokoly ladění:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Přihlaste se k existujícímu účtu Soulseek nebo si vytvořte nový. Uživatelská " "jména jsou citlivá na malá a jedinečná." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Blokovat IP adresu" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Rozsah naslouchajícího portu (vyžaduje restartování):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Stav pryč" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minuty nečinnosti před odchodem (0 pro deaktivaci):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Automatická odpověď na zprávu, když je pryč:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automaticky přesměrovat naslouchací port (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Automatické připojení k serveru při spuštění" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Váže připojení ke konkrétnímu síťovému rozhraní, které je užitečné např. pro " "zajištění používání VPN za všech okolností. Pokud chcete použít libovolné " "dostupné rozhraní, ponechte prázdné. Tuto hodnotu změňte pouze v případě, že " "víte, co děláte." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Rozsah naslouchajícího portu (vyžaduje restartování):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Funkce Přehrávání nyní umožňuje zobrazit, co přehrávač médií hraje, pomocí " "příkazu /now v chatu." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 #, fuzzy msgid "Other" msgstr "Jiný" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Nyní hraje formát" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Nyní přehrávání formátu zprávy:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Konfigurace testu" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Povolit pluginy" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "_Add Pluginy" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "_Add Pluginy" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Získání stavu" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Získání stavu" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Verze:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Vytvořil" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Povolit historii vyhledávání" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Ostatní klienti mohou nabídnout možnost odesílat soukromě sdílené soubory v " "reakci na žádosti o vyhledávání. Tyto soubory mají předponu \"[PRIVATE " "FILE]\" a nelze je stáhnout, pokud uploader nepovolí výslovné oprávnění." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Zobrazení soukromě sdílených souborů ve výsledcích vyhledávání" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Omezit počet výsledků na vyhledávání:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Povolení filtrů výsledků hledání ve výchozím nastavení" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Zahrnovat:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Vyloučit:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Typ souboru:" #: pynicotine/gtkgui/ui/settings/search.ui:253 #, fuzzy msgid "Size:" msgstr "Velikost:" #: pynicotine/gtkgui/ui/settings/search.ui:280 #, fuzzy msgid "Bitrate:" msgstr "Datový tok:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Doba trvání:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Kód země:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "" "Zorazděte pouze výsledky od uživatelů s dostupným slotem pro nahrávání." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Nápověda k filtrování výsledků" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Síťová vyhledávání" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Reakce na žádosti o vyhledávání od ostatních uživatelů" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Hledání kratší než tento počet znaků bude ignorováno:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "" "Maximální počet výsledků vyhledávání pro odeslání na žádost o vyhledávání:" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Vymazat historii vyhledávání" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Vymazat historii filtrů" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Při spuštění automaticky znovu prozvytá obsah sdílených složek. Pokud je " "zakázáno, sdílené složky se aktualizují pouze při ručním zahájení opětovného " "proskanování." #: pynicotine/gtkgui/ui/settings/shares.ui:39 #, fuzzy msgid "Rescan shares on startup" msgstr "Rescan sdílení při spuštění" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Seznam kamarádů" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Akcie Rescan" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Autoclear dokončené/zrušené nahrávání ze seznamu přenosů" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Akce poklepat na nahrávání:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Omezit rychlost nahrávání:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Na převod" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Celkové převody" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Nahrát sloty" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "Soubory budou nahrány cyklicky uživatelům čekajícím ve frontě." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Typ fronty nahrávání:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Nahrávání fronty, pokud dosáhne celková přenosová rychlost (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Omezte počet slotů pro nahrávání na:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Privilegium všem uživatelům v seznamu kamarádů" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Limity fronty" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Omezit počet výsledků na vyhledávání:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Limity fronty se nevztahují na uživatele v seznamu kamarádů" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Instance $ budou nahrazeny odkazem. Výchozí webový prohlížeč systému bude " "použit v případech, kdy protokol nebyl nakonfigurován." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Příkaz Správce souborů ($ pro cestu k souboru):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Obnovit obrázek" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Vlastní popis" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Obraz:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 #, fuzzy msgid "Clear" msgstr "Jasný" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Preferujte tmavý režim" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Použití _Header baru" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Ikona panelu zobrazení" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimalizovat zásobník při spuštění" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Rozsah naslouchajícího portu (vyžaduje restartování):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Při zavírání Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Upozornění" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Povolení zvuku pro automaticky otevíraná okna oznámení" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "Zobrazení oznámení pro soukromé chaty a zmínky v názvu okna" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Zobrazení ikon oznámení na kartách" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Stažený soubor" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Stažená složka" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Soukromá zpráva z %s" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Zpráva chatovací místnosti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Dokončení" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Výsledky v seznamu přání nalezeny" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Obnovení dříve otevřených soukromých chatů při spuštění" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Zavřít tlačítka na sekundárních kartách" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Pravidelná barva popisku karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Změněná barva popisku karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Zvýrazněná barva popisku karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Viditelné primární karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Pozice panelu tabulátoru:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Hlavní karty" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Zobrazení cest k reverzním souborům v zobrazeních vyhledávání a přenosu " "(vyžaduje restartování)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Síťové rozhraní (vyžaduje restartování):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Barva textu seznamu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Barva textu výsledku hledání ve frontě:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Zpráva chatovací místnosti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Vzhled uživatelského jména chatu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Vzdálená barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Místní barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Vzdálená barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me akce barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Zvýrazněná barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "Barva textu odkazu URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Spojené státy americké" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Online barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Barva textu pryč:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Offline barva textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Textové položky" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Barva pozadí položky textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Barva textu pro zadávání textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Fonty" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Globální písmo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Písmo seznamu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Písmo zobrazení textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Písmo chatu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Přenáší písmo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Hledat písmo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Procházet písmo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Ikony" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Neúplná složka souboru:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Přerušit uživatele" #: pynicotine/gtkgui/ui/uploads.ui:116 #, fuzzy msgid "Ban User(s)" msgstr "Zakázat uživatele" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Autoclear dokončené/zrušené nahrávání ze seznamu přenosů" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Zprávy" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Vymazat všechna nahraná videa" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Save Seznam sdílených složek na disk" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Aktualizovat soubory" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Sdílené složky" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Sdílené soubory" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Sdílené složky" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Nahrávání ve frontě" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Volné sloty pro nahrávání" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Rychlost nahrávání" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Zájmy" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "Gi_ve privilegia…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Aktualizovat soubory" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+ tím" #, fuzzy #~ msgid "_Clear" #~ msgstr "_Clear" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Nelze uložit %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Důvěryhodní kamarádi" #, fuzzy #~ msgid "Quit program" #~ msgstr "Ukončit program" #, fuzzy #~ msgid "Username:" #~ msgstr "Uživatelské jméno:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Re_commendations pro položku" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Remove položka" #, fuzzy #~ msgid "_Remove" #~ msgstr "_Remove" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Poslat M_essage" #, fuzzy #~ msgid "Send Message" #~ msgstr "Odeslat zprávu" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Zobrazit uživatelský profil" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Zahájit zasílání zpráv" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Zadejte jméno uživatele, kterému chcete poslat zprávu:" #, fuzzy #~ msgid "_Message" #~ msgstr "Zprávy" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Zadejte jméno uživatele, jehož sdílené složky chcete zobrazit:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Zobrazit uživatelský profil" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Zadejte jméno uživatele, jehož sdílené složky chcete zobrazit:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Browse soubory" #, fuzzy #~ msgid "Password" #~ msgstr "Heslo" #, fuzzy #~ msgid "Download File" #~ msgstr "Stáhnout soubor" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Podobní uživatelé" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Zadejte uživatelské jméno osoby, jejíž soubory chcete zobrazit" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Zadejte uživatelské jméno osoby, jejíž informace chcete zobrazit" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Zadejte uživatelské jméno osoby, které chcete poslat zprávu" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Zadejte uživatelské jméno osoby, kterou chcete přidat do seznamu přátel" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Zadejte název místnosti, ke které se chcete připojit. Pokud místnost " #~ "neexistuje, bude vytvořena." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Zobrazit podokno _Log" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Uložit _Picture" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Odfiltrován nesprávný výsledek vyhledávání %(filepath)s od uživatele " #~ "%(user)s pro vyhledávací dotaz \"%(query)s\"" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Někteří klienti neodesílají výsledky hledání, pokud jsou zahrnuty " #~ "speciální znaky." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Odebrání speciálních znaků z hledaných výrazů" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Potíže s prováděním '%s'" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Potíže s prováděním ve složce: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Nepovolené prodloužení" #, fuzzy #~ msgid "Too many files" #~ msgstr "Příliš mnoho souborů" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Příliš mnoho megabajtů" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Server v tuto chvíli neumožňuje provádět vyhledávání na seznamu přání" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Rychlost přenosu souborů závisí na uživatelích, od které stahujete. " #~ "Někteří uživatelé budou rychlejší, zatímco jiní budou pomalí." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Zahájené stahování" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Zahájené nahrávání" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Cenzurovaná písmena nahraďte:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Cenzurované vzory" #, fuzzy #~ msgid "Replacements" #~ msgstr "Náhrady" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Pokud uživatel v síti Soulseek vyhledá soubor, který existuje ve vašich " #~ "sdílených složkách, budou uživateli odeslány výsledky vyhledávání." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Odeslat na _Player" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Odeslat na _Player" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Open ve Správci souborů" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Příkaz Media Player ($ pro cestu k souboru):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Nelze uložit podsložku stahování do podsložky uživatelského jména a " #~ "vrátit se zpět do výchozí složky pro stahování. Chyba: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Pouze pro kamaráda" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Sdílejte pouze s kamarády" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Quit" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "akcie _Configure" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Chyba vzdáleného souboru" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Nelze najít %(option1)s nebo %(option2)s, nainstalujte si ani jeden z " #~ "nich." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "Složky %(num)s nalezené po opětovném prohlenání" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Nepodařilo se zpracovat následující databáze: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Nepodařilo se odeslat počet sdílených souborů na server: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Spustit na pozadí" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Naslouchací port není nastaven." #, fuzzy #~ msgid "Network interface:" #~ msgstr "Síťová vyhledávání" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Omezte sdílení pouze pro kamarády na důvěryhodné kamarády" #, fuzzy #~ msgid "Shared" #~ msgstr "Společný" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Vyhledávání souborů a složek (přesná shoda)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Zastaralé" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Verze %(version)s je k dispozici, vydaná na %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Zdá se, že používáte vývojovou verzi Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Používáte nejnovější verzi Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Zkontrolujte _Latest verzi" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferujte tmavé _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Zobrazit podokno _Log" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Seznam kamarádů na samostatné kartě" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Seznam přátel vždy viditelný" #, fuzzy #~ msgid "_View" #~ msgstr "_View" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Otevřít složku protokolu" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Browse složky" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bajtů) za sekundu." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Odesláno uživatelům jako důvod geografického blokování." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Odesláno uživatelům jako důvod zákazu." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Jakmile budete pracovat s aplikací, která je pryč, stav bude nastaven na " #~ "online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Každý uživatel může zařadit do fronty maximálně:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibajty (2^20 bajtů)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBs" #, fuzzy #~ msgid "files" #~ msgstr "soubory" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Chování fronty" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Pokud je zakázáno, sloty budou automaticky určeny dostupnými omezeními " #~ "šířky pásma." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Všimněte si, že téma operačního systému může mít přednost." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Ve výchozím nastavení je karta Hledat soubory aktivována při spuštění." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Přestaňte s Nicotine+ %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "ukončený" #, fuzzy #~ msgid "done" #~ msgstr "hotový" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Pamatujte si volbu" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Uživatelské rozhraní" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Poslech na portu %i" #, fuzzy, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "Zdá se, že server nefunguje nebo nereaguje, opakování za %i sekundy" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ používá peer-to-peer sítě pro připojení k ostatním uživatelům. " #~ "Aby se k vám uživatelé mohli bez problémů připojit, je zásadní otevřený " #~ "odposlouchávací port." #, fuzzy #~ msgid "--- disconnected ---" #~ msgstr "--- odpojeno ---" #, fuzzy #~ msgid "--- reconnected ---" #~ msgstr "--- znovu připojen ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Země" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Česká republika" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turecko" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Spojené pokoje " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-připojit místnost" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ " Syntaxe: Písmena necitají velká a malá písmena. Všechny regulární " #~ "výrazy Pythonu jsou podporovány, pokud je únik zakázán. U jednoduchých " #~ "filtrů se doporučuje udržovat unikající povoleno." #, fuzzy #~ msgid "Escaped" #~ msgstr "Uprchl" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Uprchl" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Zadejte vzor textu a náhradu:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "Složky %(num)s nalezené před opětovnou šněnováním, přestavbou…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "V zadaném rozsahu portů %s–%s není k dispozici žádný naslouchací port" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Vyberte rozsah pro výběr naslouchacího portu. Bude použit první dostupný " #~ "port v rozsahu." #, fuzzy #~ msgid "First Port" #~ msgstr "První port" #, fuzzy #~ msgid "to" #~ msgstr "k" #, fuzzy #~ msgid "Last Port" #~ msgstr "Poslední port" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Nelze najít %s, nainstalujte jej." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "Modul Gtk nelze importovat. Špatná instalace modulu python-gobject?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Používáte nepodporovanou verzi GTK %(major_version)s. Gtk " #~ "%(complete_version)s byste měli nainstalovat nebo novější." #, fuzzy #~ msgid "User Info" #~ msgstr "Informace o uživateli" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Přiblížit" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Oddálit" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Zobrazit uživatelské I_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Požádat o informace o uživateli" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Požádat o sdílení uživatele" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Požádat o informace o uživateli" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Zadejte jméno uživatele, jehož informace chcete zobrazit:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Seznam sdílených složek požadavků" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Neplatná adresa URL Soulseek: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Uživatelé v síti Soulseek budou moci stahovat soubory ze sdílených " #~ "složek. Sdílení souborů je zásadní pro zdraví sítě Soulseek." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Aktualizovat I_nfo" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Příkazy chatovací místnosti" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'pokoj'" #, fuzzy #~ msgid "Join room 'room'" #~ msgstr "Připojte se k místnosti \"pokoj\"" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/me 'zpráva'" #, fuzzy #~ msgid "Display the Now Playing script's output" #~ msgstr "Zobrazení výstupu skriptu Nyní hraje" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'user'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Přidání uživatele \"uživatele\" do seznamu kamarádů" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'user'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Odebrání uživatele \"uživatele\" ze seznamu kamarádů" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ban 'user'" #, fuzzy #~ msgid "Add user 'user' to your ban list" #~ msgstr "Přidání uživatele \"uživatele\" do seznamu zákazů" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban 'uživatel'" #, fuzzy #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Odebrání uživatele \"uživatele\" ze seznamu zákazů" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ignorovat 'user'" #, fuzzy #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Přidání uživatele \"uživatele\" do seznamu ignoruje" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'user'" #, fuzzy #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Odebrání uživatele \"uživatele\" ze seznamu ignoruje" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'uživatel'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'uživatel'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Požádat o informace pro \"uživatele\"" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip 'uživatel'" #, fuzzy #~ msgid "Show IP for user 'user'" #~ msgstr "Zobrazit IP adresu pro uživatele \"uživatele\"" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'query'" #, fuzzy #~ msgid "Start a new search for 'query'" #~ msgstr "Zahájení nového hledání \"dotazu\"" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'query'" #, fuzzy #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Vyhledejte v dotázaná místnost pro dotaz" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'query'" #, fuzzy #~ msgid "Search the buddy list for 'query'" #~ msgstr "Vyhledejte v seznamu kamarádů dotaz" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'user' 'query'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'user' 'message'" #, fuzzy #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Odeslat zprávu \"zpráva\" uživateli \"uživateli\"" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm 'uživatel'" #, fuzzy #~ msgid "Open private chat window for user 'user'" #~ msgstr "Otevřít soukromé okno chatu pro uživatele \"uživatele\"" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Soukromé příkazy chatu" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Přidání uživatele do seznamu zákazů" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Přidání uživatele do seznamu ignoruje" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Procházení sdílených složek uživatelů" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Pro filtrování necitlivé pořadí a filtrování několika přesných frází lze " #~ "k oddělení frází a slov použít svislé pruhy.\n" #~ " Příklad: Oštěpy| Bretaň| Moje krásné album|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Chcete-li vyloučit jiné než zvukové soubory, použijte !0 ve filtru trvání." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtruje soubory na základě zemí uživatelů." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Chcete-li znovu zobrazit úplné výsledky, jednoduše vymažte všechny " #~ "aktivní filtry." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Další možnosti filtru najdete v předvolbách." #, fuzzy #~ msgid "File size" #~ msgstr "Velikost souboru" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Vymazání všech aktivních filtrů" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Cyklické procházení dokončení při stisknutí klávesy tab" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Skrýt rozevírací rozbalovací tlačítko, když se shoduje pouze jeden" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Stahování složek v obráceném alfanumerickém pořadí" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Neúplná složka souboru:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Stáhnout složku:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Uložte nahraná videa kamarádů na:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "" #~ "Pomocí funkce UPnP můžete automaticky mapovat odposlouchávací port na " #~ "routeru" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Sdílejte složky s každým uživatelem Soulseek nebo kamarády, což umožňuje " #~ "stahovat obsah přímo z vašeho zařízení. Skryté soubory nejsou nikdy " #~ "sdíleny." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Sekundární karty" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Poloha panelu karet chatovací místnosti:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Pozice panelu privátního panelu karet chatu:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Pozice panelu tabulátoru hledání:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Pozice panelu karet Informace o uživateli:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Pozice panelu karet Procházení uživatele:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Popisky karet" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Refresh Informace" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Blokovat IP adresu" #, fuzzy #~ msgid "Connected" #~ msgstr "Připojený" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Nesouvislý" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Odpojeno (zásobník)" #, fuzzy #~ msgid "User(s)" #~ msgstr "Uživatelé" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" nevrátil nic" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Alternativní rychlostní limity" #, fuzzy #~ msgid "Last played" #~ msgstr "Naposledy hrál" #, fuzzy #~ msgid "Playing now" #~ msgstr "Hraje nyní" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Nelze uložit soubor %(path)s: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Kód chyby %(code)s: %(description)s" #, fuzzy, python-format #~ msgid "No such alias (%s)" #~ msgstr "Žádný takový alias (%s)" #, fuzzy #~ msgid "Aliases:" #~ msgstr "Aliasy:" #, fuzzy, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Odebrán alias %(alias)s: %(action)s\n" #, fuzzy, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Žádný takový alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternativní rychlostní limity" #, fuzzy #~ msgid "Aliases" #~ msgstr "Aliasy" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'příkaz' 'definition'" #, fuzzy #~ msgid "Add a new alias" #~ msgstr "Přidání nového aliasu" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'příkaz'" #, fuzzy #~ msgid "Remove an alias" #~ msgstr "Odebrání aliasu" #, fuzzy #~ msgid "Chat History" #~ msgstr "Historie chatu" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Dokončit aliasy příkazů" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Omezit rychlost stahování na (KiB/s):" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Autoři:" #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Omezit rychlost nahrávání na (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Byla nalezena položka seznamu přání" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Karty zobrazují ikony stavu uživatele místo stavového textu" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Povolení popisků cesty k souborům v zobrazeních hledání a přenosu" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "" #~ "Barevná uživatelská jména a uživatelská jména, na která lze kliknout" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Oznámení změní barvu textu karty" #, fuzzy #~ msgid "Cancel" #~ msgstr "Zrušit" #, fuzzy #~ msgid "OK" #~ msgstr "OK" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "_Add na Seznam přátel" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Vymažte každé stahování označené konkrétním stavem." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Vymazat každé nahrání označené konkrétním stavem." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "použití ne výchozího adresáře uživatelských dat například pro seznam " #~ "stažení" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Neznámá konfigurační sekce '%s'" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Neznámá možnost konfigurace '%(option)s' v části '%(section)s'" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Verze %s je k dispozici" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "vydáno na %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Spuštění na pozadí" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Soukromá zpráva z %s" #, fuzzy #~ msgid "Aborted" #~ msgstr "Přerušena" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Blokovaná země" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Dokončeno / přerušeno" #, fuzzy #~ msgid "Close tab" #~ msgstr "Karta Zavřít" #, fuzzy, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Byl jste zmíněn v místnosti %(room)s" #, fuzzy, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Příkaz %s není rozpoznán." #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Upozornění: %(realuser)s se pokouší zfalšovat %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Zadané síťové rozhraní \"%s\" neexistuje. Změňte nebo odeberte zadané " #~ "síťové rozhraní a restartujte Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Rozsah zadaný pro porty připojení klienta byl {}-{}, ale žádný z nich " #~ "nebyl použitelný. Zvýšení a/nebo " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Všimněte si, že část vašeho rozsahu leží pod 1024, to obvykle není " #~ "povoleno ve většině operačních systémů s výjimkou Systému Windows." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Pokrok: %s" #, fuzzy, python-format #~ msgid "OS error: %s" #~ msgstr "Chyba operačního systému: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP není v této síti k dispozici" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Nepodařilo se namapovat externí port WAN: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Stěna místnosti" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Výchozí naslouchací port \"2234\" funguje ve většině případů dobře. Pokud " #~ "potřebujete použít jiný port, budete jej moci později upravit v " #~ "předvolbách." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Zobrazit uživatele s podobnými zájmy" #, fuzzy #~ msgid "Menu" #~ msgstr "Menu" #, fuzzy #~ msgid "Expand / Collapse all" #~ msgstr "Rozbalit / sbalit vše" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Konfigurace sdílených složek" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Vytvořit nebo spojit místnost…" #, fuzzy #~ msgid "_Room List" #~ msgstr "seznam _Room" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Povolit alternativní omezení rychlosti stahování a nahrávání" #, fuzzy #~ msgid "Show log history" #~ msgstr "Zobrazit historii protokolů" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Režim seskupení výsledků" #, fuzzy #~ msgid "Free slot" #~ msgstr "Volný slot" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Uložit seznam sdílených složek na disk" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Nepodařilo se načíst soubor ui %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Pokus o resetování indexu sdílených souborů z důvodu chyby. Prosím, znovu " #~ "prozývejte své akcie." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "K indexu souborů sdílených souborů nebylo možné získat přístup. K tomu " #~ "může dojít v důsledku několika případů, kdy je Nicotine+ aktivní " #~ "současně, problémy s oprávněním k souborům nebo jiný problém v Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ je Soulseek klient" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "povolit ikonu zásobníku" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "zakázat ikonu zásobníku" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Získejte Soulseek Privileges…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Veřejná IP adresa je %(ip)s a aktivní naslouchací port je " #~ "%(port)s" #, fuzzy #~ msgid "unknown" #~ msgstr "neznámý" #, fuzzy #~ msgid "Notification" #~ msgstr "Oznámení" #, fuzzy #~ msgid "Length" #~ msgstr "Délka" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Obrázek nebyl uložen, %s již existuje." #, fuzzy #~ msgid "_Open" #~ msgstr "_Open" #, fuzzy #~ msgid "_Save" #~ msgstr "_Save" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Nepodařilo se načíst plugin '%s\", nemohl ho najít." #, fuzzy, python-format #~ msgid "I/O error: %s" #~ msgstr "Chyba I/O: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Nepodařilo se otevřít cestu k souboru: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Nepodařilo se otevřít adresu URL: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "konverzace _Log" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Seznam filtrů výsledků" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Předpíná < nebo > k vyhledání souborů menších/větších než daná hodnota." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Soubory VBR zobrazují průměrnou přenosovou rychlost a jsou obvykle nižší " #~ "v datovém toku než komprimovaný soubor CBR o rychlosti 320 kbps stejné " #~ "kvality zvuku." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Stejně jako Velikost výše, =, < a > lze použít." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Zabránit přístupu k zápisu jinými programy pro stahované soubory (vypnout " #~ "pro SYSTÉM SOUBORŮ NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Kde jsou neúplná stahování dočasně uložena." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Kde budou uložena nahraná videa kamarádů (s podsložkou vytvořenou pro " #~ "každého kamaráda)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Po minutách nečinnosti odhodíte stav:" #, fuzzy #~ msgid "Protocol:" #~ msgstr "Protokol:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Složka motivu ikony (vyžaduje restartování):" #, fuzzy #~ msgid "Establishing connection" #~ msgstr "Navázání spojení" #, fuzzy #~ msgid "Clear Groups" #~ msgstr "Jasné skupiny" #, fuzzy #~ msgid "User List" #~ msgstr "Seznam uživatelů" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Reset statistiky…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "Jasné _Downloads…" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Jasné Uploa_ds…" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Blokovat IP adresu uživatele" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorovat IP adresu uživatele" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Vymažte každé stahování, které dokončilo přenos nebo bylo zachyceno " #~ "filtrem." #, fuzzy #~ msgid "Usernames" #~ msgstr "Uživatelské jméno" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Zobrazení zaznamenaných zpráv v chatovací místnosti při opětovném " #~ "připojení místnosti" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Vymažte každé nahrávání, které buď dokončilo přenos, nebo bylo zrušeno " #~ "vzdáleným uživatelem." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Pozice ve frontě" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "Uživatel %(user)s přímo hledá \"%(query)s\", vrací výsledky %(num)i" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[SOUKROMÉ]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Stěna místnosti (osobní sada zpráv)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Konfigurační soubor je poškozený." #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Je nám líto, ale zdá se, že váš konfigurační soubor je poškozený. " #~ "Překonfigurujte prosím Nicotine+.\n" #~ "\n" #~ "Přejmenovali jsme váš starý konfigurační soubor na\n" #~ "%(corrupt)s\n" #~ "Pokud otevřete tento soubor pomocí textového editoru, možná budete moci " #~ "zachránit některá nastavení." #, fuzzy #~ msgid "User Description" #~ msgstr "Popis uživatele" #, fuzzy #~ msgid "User Interests" #~ msgstr "Zájmy uživatelů" #, fuzzy #~ msgid "User Picture" #~ msgstr "Obrázek uživatele" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Jasný seznam přání?" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Ukončení nikotinu+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Používání Pythonu %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Ukončení nikotinu+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Přestaňte s nikotinem+ %(version)s, %(status)s!" #, fuzzy #~ msgid "User:" #~ msgstr "Uživatel:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Vše %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "Soubory %(number)2s " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Povolit regulární výrazy pro zahrnutí filtru a vyloučit" #, fuzzy #~ msgid "Quit…" #~ msgstr "Přestat" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Zobrazit předchozí primární kartu při spuštění" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Povolení filtrů výsledků hledání ve výchozím nastavení" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Zavřít Nikotin+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Opravdu chcete opustit Nikotin+?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Spustit na pozadí" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online Upozornit" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Upřednostnit uživatele" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Trusted" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Požádat o IP adresu uživatele" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Žádost o IP adresu" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Zadejte jméno uživatele, jehož IP adresu chcete zobrazit:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Stažený" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Nepodařilo se přidat ke stažení %(filename)s do sdílených souborů: " #~ "%(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Automatické sdílení souborů ke stažení" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Ekvivalent přidání složky ke stažení jako veřejné sdílené složky, ale " #~ "soubory stažené do této složky budou automaticky přístupné ostatním (není " #~ "vyžadováno opětovné prohlenání)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Nelze sdílet složku" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Zvolený virtuální název je prázdný" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Zvolený virtuální název již existuje" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Vybraná složka je již sdílena" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Nastavení virtuálního názvu" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Zadejte virtuální název pro '%(dir)s':" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Zvolený virtuální název je buď prázdný, nebo již existuje" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Vybraná složka je již sdílena." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s Vlastnosti" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Dokončené opětovné prosazení sdílení kamarádů" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Seznam pluginů" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Chyba při skenování %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Zobrazit podokno _Log" #, fuzzy #~ msgid "Addresses" #~ msgstr "Adresy" #, fuzzy #~ msgid "Handler" #~ msgstr "Obslužná rutina" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Nelze povolit plugin." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Nelze zakázat plugin." #, fuzzy #~ msgid "Transfers" #~ msgstr "Převody" #, fuzzy #~ msgid "Ban List" #~ msgstr "Seznam zákazů" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ignorovat seznam" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Cenzura a výměna" #, fuzzy #~ msgid "Completion" #~ msgstr "Dokončení" #, fuzzy #~ msgid "Categories" #~ msgstr "Kategorie" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Nahrát složku do…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Nahrát složku rekurzivní do…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Stáhněte si _Recursive" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Stáhněte si R_ecursive Do…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Up_load soubory" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Chyba při pokusu o zobrazení složky '%(folder)s', hlášená chyba: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "Vyberte cíl pro stahování složky s podsložkami od uživatele" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Vyberte Cíl pro stažení složky od uživatele" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Vyberte cíl pro stahování souborů od uživatele" #, fuzzy #~ msgid "Wishes" #~ msgstr "Přání" #, fuzzy #~ msgid "privileged" #~ msgstr "privilegovaný" #, fuzzy #~ msgid "prioritized" #~ msgstr "upřednostněný" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blokované IP adresy" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Kompletní jména kamarádů" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Kompletní uživatelská jména v chatovacích místnostech" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Kompletní názvy místností" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Rozevírací seznam" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Příkaz Správce souborů ($ pro cestu k souboru):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Příkaz Media Player ($ pro cestu k souboru):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Ignorované IP adresy" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Zobrazení časových razítek" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Automaticky otevíraná okna oznámení" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Zobrazit vyskakovací okno s oznámením po dokončení stahování souboru" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Zobrazit vyskakovací okno s oznámením po dokončení stahování složky" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Zobrazení vyskakovacího okna s oznámením, když obdržíte soukromou zprávu" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Zobrazení vyskakovacího okna oznámení, když někdo pošle zprávu v " #~ "chatovací místnosti" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Zobrazení vyskakovacího okna oznámení, když jste zmíněni v chatovací " #~ "místnosti" #, fuzzy #~ msgid "Tray" #~ msgstr "Tác" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Instance $ budou nahrazeny odkazem. Výchozí webový prohlížeč systému bude " #~ "použit v případech, kdy protokol nebyl nakonfigurován." #, fuzzy #~ msgid "Handler:" #~ msgstr "Obslužná rutina:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Primární karty" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Povolení popisků cesty k souborům v zobrazeních hledání a přenosu" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Zobrazí úplnou cestu k souboru výsledku hledání nebo přenosu souborů při " #~ "najetí kurzoru na cestu ke složce nebo název souboru." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Zobrazení soukromě sdílených souborů ve sdílených složkách uživatelů" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Ostatní klienti mohou nabídnout možnost odesílat soukromě sdílené soubory " #~ "při procházení jejich sdílení. Složky obsahující tyto soubory mají " #~ "předponu \"[PRIVATE FOLDER]\" a nelze je stáhnout, pokud uploader nedá " #~ "výslovné oprávnění." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Cenzura a výměna" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Zobrazit ovládací prvky protokolu _Debug" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Protokolování ladění" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtuální název" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Úprava virtuálního názvu" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Adresa URL Kopírovat složku" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Stáhnout _To…" #, fuzzy #~ msgid "Download" #~ msgstr "Stáhnout" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Nahrát obsah složky" #, fuzzy #~ msgid "Rename" #~ msgstr "Přejmenovat" #, fuzzy #~ msgid "File Lists" #~ msgstr "Seznamy souborů" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Cesta ke kopírování souboru" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "R_emove přání" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Zdá se, že \"%s\" není adresář, nenačítá pluginy." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Rescanning buddy sdílí…" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Dokončené opětovné prosazení sdílení kamarádů" #, fuzzy, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Váš kamarád %s se vám pokouší nahrát soubory." #, fuzzy, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s vám nesmí posílat soubory, ale přesto se o to pokouší. Varování " #~ "odesláno." #, fuzzy #~ msgid "Client Version" #~ msgstr "Verze klienta" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Kolik dní oprávnění by měl být uživatel %s obdarován?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Kamarádi budou mít ve frontě vyšší prioritu, stejně jako globálně " #~ "privilegovaní uživatelé." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegovaný" #, fuzzy #~ msgid "_Privileged" #~ msgstr "_Privileged" #, fuzzy #~ msgid "Comments" #~ msgstr "Komentáře" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Upravit _Comments…" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Vytvoří podsložky na základě uživatele, od který stahujete, a uloží " #~ "stažený soubor / složku." #, fuzzy #~ msgid "Login Details" #~ msgstr "Přihlašovací údaje" #, fuzzy #~ msgid "Advanced" #~ msgstr "Pokročilý" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Interval obnovení mapování portů v hodinách:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Povolit sdílení pouze pro kamarády" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Soubory budou nahrány v pořadí, v jakém byly zařazeny do fronty." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Opětovné naskenování normálních akcií…" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Dokončené opětovné prosazení veřejných akcií" #, fuzzy #~ msgid "Scanning Buddy Shares" #~ msgstr "Skenování sdílení buddy" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "_Rescan veřejné akcie" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Akcie rescan B_uddy" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Rescan veřejné akcie" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Akcie Rescan Buddy" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Umožňuje sdílení kamarádů, ke kterým mají přístup pouze uživatelé v " #~ "seznamu přátel." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Označení každé sdílené složky jako pouze pro kamarády" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Přepíše možnost na akcii, což je užitečné, pokud dočasně potřebujete " #~ "zabránit veřejnému přístupu ke sdíleným složkám." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Přístup ke sdíleným s kamarádům mají pouze uživatelé, kteří jsou ve vašem " #~ "seznamu přátel označeni jako důvěryhodní." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Odfiltrovaný vyloučený výsledek vyhledávání " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Odfiltrovaný nepřesný nebo nesprávný výsledek vyhledávání " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Uložené nastavení '%(key)s' již není přítomno v pluginu \"%(name)s\"" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "Plugin %(module)s vrátil něco divného, '%(value)s', ignoroval" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "" #~ "Nekonzistentní mezipaměť pro '%(vdir)s', opětovné sestavení '%(dir)s'" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Vynechání chybějící složky %(dir)s" #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nikotin+ umožňuje sdílet složky přímo z počítače. Veškerý obsah těchto " #~ "složek (s výjimkou dotfiles) si mohou stáhnout jiní uživatelé v síti " #~ "Soulseek. Veřejné sdílené složky jsou k dispozici pro každého uživatele, " #~ "zatímco uživatelé ve vašem seznamu přátel mají kromě veřejných sdílených " #~ "složek přístup ke sdíleným spřátelům pouze s kamarády." nicotine-plus-3.3.4/po/da.po000066400000000000000000007211531461625273200156750ustar00rootroot00000000000000# Copyright (C) 2003-2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-12-01 21:04+0000\n" "Last-Translator: Sigrid Davis \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.3-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 #, fuzzy msgid "Soulseek Client" msgstr "Soulseek-klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 #, fuzzy msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafisk klient til Soulseek peer-to-peer-netværket" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;deling;chat;musik;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafisk klient til Soulseek peer-to-peer-netværket" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 #, fuzzy msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ er en grafisk klient til Soulseek peer-to-peer-netværket." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ sigter sig mod at være et letvægts, behageligt, gratis og open " "source (FOSS) alternativ til den officielle Soulseek-klient, samtidig med at " "den giver et omfattende sæt funktioner." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Søg filer" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Downloads" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Søg delinger" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Privat chat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+-holdet" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Udført: %s" #: pynicotine/__init__.py:56 #, fuzzy msgid "show this help message and exit" msgstr "vise denne Hjælp-meddelelse og afslutte" #: pynicotine/__init__.py:59 #, fuzzy msgid "file" msgstr "fil" #: pynicotine/__init__.py:60 #, fuzzy msgid "use non-default configuration file" msgstr "bruge ikke-standardkonfigurationsfil" #: pynicotine/__init__.py:63 #, fuzzy msgid "dir" msgstr "Dir" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "bruge ikke-standardmappe til plugins" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "starte programmet uden at vise vindue" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "binde sockets til den givne IP (nyttig til VPN)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "havn" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "lytte på den givne port" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "Omindexere delede filer" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "start programmet i en hovedløs tilstand (ingen GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "vis version og afslut" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Du bruger en ikke-understøttet version af Python (%(old_version)s).\n" "Du skal installere Python %(min_version)s eller nyere." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Aktierne kunne ikke scannes. Luk andre Nicotine+-forekomster, og prøv igen." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Brugeren %s er away" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Brugeren %s er online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Brugeren %s er offline" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Venneliste" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Du er blevet føjet til et privat rum: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Chatbesked fra bruger '%(user)s' i rum '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Kunne ikke skape biblioteket '%(path)s', rapporteret fejl: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Fejl ved sikkerhedskopiering af konfiguration: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Konfigurationen sikkerhedskopieret til: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Indlæser %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Afslutter %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "Afslutning" #: pynicotine/core.py:237 msgid "application closing" msgstr "programmet lukker" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Afslut %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Du skal angive et brugernavn og en adgangskode, før du skaber en forbindelse…" #: pynicotine/downloads.py:224 #, fuzzy, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Fejl: Overførselsfilteret mislykkedes! Kontroller filtrene. Årsag: %s" #: pynicotine/downloads.py:239 #, fuzzy, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Fejl: %(num)d Overførselsfiltre mislykkedes! %(error)s " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s hentet fra %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Fil hentet" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Udført: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Udførelsen af '%(command)s' mislykkedes: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s hentet fra %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Mappe hentet" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Udført på mappe: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "'%(tempfile)s' kunne ikke flyttes til '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Fejl på downloadsbibliotek" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Download færdig: %(user)s, fil %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Mislykked download: bruger %(user)s, fil %(file)s" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Hent I/O-fejl: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Kunne ikke oprette et exklusivt lås på fil - I/O-fel: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Filen %(path)s kan ikke gemmes: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Mislykked download: bruger %(user)s, fil %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "%s blev ikke fundet." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Intet grafisk miljø tilgængeligt, bruger hovedløs (ingen GUI) tilstand" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Tilslut" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "Luk ne_d" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "_Priveligiered" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Preferences" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Quit" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Browse offentlige aktier" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Bro_wse Buddy-aktier" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Bro_wse Buddy-aktier" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "Omindexere delede filer" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Configure Aktier" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Keyboard Genveje" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Setup Assistent" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "Overførsler" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Rapportér en _Bug" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Forbedre T_oversættelser" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "Om _Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Arkiv" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Shares" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Help" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Bro_wse Buddy-aktier" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Meddelelses-pop op-vinduet kunne ikke vises: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Har du virkelig lyst til at afslutte Nicotine+?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Har du virkelig lyst til at afslutte Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "N" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Kør i baggrunden" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Afslut Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Aktier ikke tilgængelige" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Kontroller, at eksterne diske er monteret, og at mappetilladelserne er " "korrekte." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Cancel" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "Forsøg igen" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Tving genscanning" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Password:" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Brugeren %s findes allerede, og den indtastede adgangskode er ugyldig. Vælg " "et andet brugernavn, hvis det er første gang, du logger på." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Skift logonoplysninger" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Brugere, der downloader beskeder" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Send privat besked til alle brugere, der downloader fra dig:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Send meddelelse" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Meddelelser" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Send privat besked til alle online venner:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Vælg en listefil til gemt shares" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kritisk fejl" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ er stødt på en kritisk fejl og skal afsluttes. Kopier følgende " "meddelelse, og medtag den i en fejlrapport:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Afslut Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Fejl i kopiering og rapport" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 #, fuzzy msgid "Country" msgstr "Land" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Bruger" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Hastighet" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Filer" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted" msgstr "Betroede" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Melde" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Prioriteret" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Sidst set" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Bemærk" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Tilføj brugeren til vennelisten" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Fjern" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Aldrig set" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Tilføj brugeren til vennelisten" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Tilføj et par noter, der er knyttet til brugeren %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Add…" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Opret nyt rum?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Vil du virkelig oprette et nyt rum \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Gør plads privat" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "_Søg filer" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Finde…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopier" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 #, fuzzy msgid "Copy All" msgstr "Kopier alle" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Ryd aktivitetsvisning" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "Forlad rummet 'rum'" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Kopier _URL" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Vis værelseslog" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Slet værelseslog…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Ryd meddelelsesvisning" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s kom ind i rummet" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s ind %(room)s kom ind i rummet" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(user)s ind %(room)s kom ind i rummet" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "%(user)s ind %(room)s kom ind i rummet" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s forlod rummet" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s er away" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s er tilbage" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Skal logførte meddelelser slettes?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "Vil du slette alle logførte meddelelser permanent for dette rum?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Djibouti" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Udført: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Der opstod en fejl under hentning af den nyeste version" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Opdateret" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Tjek _Latest version" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "_Setup Assistent" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtuel mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Klar" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Næste" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Tilføje en delt mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Delede mapper" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Angiv et nyt virtuelt navn til '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Karakter" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Egenskaber for fil" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Filegenskaber (%(num)i for %(total)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Filegenskaber (%(num)i for %(total)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Anvende" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Tilføje…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Redigere…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "Indstillninger" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Vare" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Interesser" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 #, fuzzy msgid "Unknown" msgstr "Ukendt" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Kontroller portstatus" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Ændring af adgangskode afvist" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Indtast en ny adgangskode til din Soulseek-konto:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "I er i øjeblikket logget ud af Soulseek-netværket. Hvis du vil ændre " "adgangskoden til en eksisterende Soulseek-konto, skal du være logget ind på " "den pågældende konto." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Angiv den adgangskode, der skal bruges, når du logger på:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Password:" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Ændring af adgangskode afvist" #: pynicotine/gtkgui/dialogs/preferences.py:276 #, fuzzy msgid "No one" msgstr "Ingen" #: pynicotine/gtkgui/dialogs/preferences.py:277 #, fuzzy msgid "Everyone" msgstr "Alle" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Venner" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Venner" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Ikke noget" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Næste fil" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "_Open i Filhåndtering" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Søg" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Pause" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Genoptage" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "Kig i filer" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntaks: Ufølsom mellem store og små bogstaver. Hvis det er " "aktiveret, kan Python regulære udtryk bruges, ellers understøttes kun " "wildcard * matches." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtrere" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/dialogs/preferences.py:459 #, fuzzy msgid "Enter a new download filter:" msgstr "Angiv et nyt overførselsfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Aktiver regulære udtryk" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Rediger følgende overførselsfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, fuzzy, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Mislykkedes! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtrene lykkedes" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Afbryd" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 #, fuzzy msgid "Retry" msgstr "Forsøg igen" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Runde Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 #, fuzzy msgid "First In, First Out" msgstr "Først ind, først ud" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 #, fuzzy msgid "Username" msgstr "Brugernavn" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Vis IP-a_dresse" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ignorer bruger" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Angiv navnet på den bruger, du vil ignorere:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Vis IP-a_dresse" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Angiv en IP-adresse, du vil ignorere:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* er et wildcard" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Forbyd bruger" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Angiv navnet på den bruger, du vil forbyde:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Vis IP-a_dresse" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Angiv en IP-adresse, du vil blokere:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Mønster" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Ombytning" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Censormønster" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Angiv et mønster, du vil censurere. Tilføj mellemrum omkring mønsteret, hvis " "du ikke vil matche strenge i ord (kan mislykkes i begyndelsen og slutningen " "af linjerne)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Censurerede mønstre" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Ombytning" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Indtast henholdsvis tekstmønster og erstatning:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Ombytning" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Standard" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Vis bekræftelsesdialogboks" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Kør i baggrunden" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "modig" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "Kursiv" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Meddelelser" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Buddy Liste i chatrum" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Top" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Bund" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Venstre" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Højre" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Away" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Ændring af adgangskode afvist" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Fremhæve" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Vindue" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Tilslut" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Væk (bakke)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Meddelelse (bakke)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Kommentarer" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Håndterere" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Indtast henholdsvis protokollen og kommandoen for URL-handleren:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Rediger kommentarer" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Angiv et nyt virtuelt navn til '%(dir)s':" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Brugernavn; APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "Klientnavn (f.eks. amarok, dristig, eksatilt) eller tomt for auto:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Brugernavn:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Kommentarer" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Titel" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Spiller nu (typisk \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Kunstner" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Varighed" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "Kommentar" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Spor nummer" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "År" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Filnavn (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Aktiveret" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Plugins" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Der er ikke valgt et plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Netværk" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Interface" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Delede mapper" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 #, fuzzy msgid "Uploads" msgstr "Uploads" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Søgninger" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Kig igennem filer" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Chattrum" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Spiller nu" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Logger" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Sortlistede brugere:" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Ignorerade brugere:" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Plugins" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "Håndterere" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Indstillinger" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Vælg et filnavn til sikkerhedskopiering af Config" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Overførsler" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "I alt siden %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Skal overførselsstatistikken nulstilles?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Vil du virkelig nulstille overførselsstatistik?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "_Wishlist" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Ønske" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Søg efter dette" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Karakter" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Angiv et nyt virtuelt navn til '%(dir)s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Rens afsluttede" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Vil du virkelig rydde din ønskeliste?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Søgesti" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Resume" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "P_ause" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Færdig/filtreret" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Klar" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 #, fuzzy msgid "Paused" msgstr "Standsede" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 #, fuzzy msgid "Filtered" msgstr "Filtreret" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Slettet" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "Kø…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Alt…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Ryd overførsler i kø" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Vil du virkelig rydde alle downloads i kø?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Downloads" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Ønsker du virkelig at rydde alle downloads?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Download %(num)i filer?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "Vil du virkelig hente %(num)i filer fra %(user)ss mappe %(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Downloadsmappe" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Holder" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Jeg kan ikke li'" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Karakter" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Vare" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Rekommendationer" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "Jeg kan _li' dette" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "Jeg kan _li' dette" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Rekommendationer for %s" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Lignende brugere" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Rekommendationer for %s" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Lignende brugere" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, fuzzy, python-format msgid "Private Message from %(user)s" msgstr "Privat meddelelse fra %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Ønskelisteresultater fundet" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Kig igennem filer" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Chatrum" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interesser" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Chatte" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "Forbindelser" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "Meddelelser" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "Overførsler" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "Diverse" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Finde…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopier" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopier alle" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Vis fejlfindingslogfiler" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "per overforsel" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategorier" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Rens logfil" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Overførsler: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Uploads: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Scanning Shares" #: pynicotine/gtkgui/mainwindow.py:1189 #, fuzzy msgid "Scanning Shares" msgstr "Scanning Shares" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Send meddelelse" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Rum" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Bruger" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Deltag i rummet" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Forlad plads" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Afslået privat værelse" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Annuller værelsesmedlemskab" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Luk alle faner…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "Luk" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Vis chatlog" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Slet chatlog…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Overførsler" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "Vil du slette alle gemte meddelelser permanent for denne bruger?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Meddelelser, der blev sendt, mens du var offline. Tidsstempler rapporteres " "af serveren og kan være slukket." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Global" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Venner" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Rum" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Bruger" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "I kø" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Filtype" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Filnavn" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Størrelse" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kvalitet" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopier _File sti" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopier _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Kopier mappens URL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Hent fil(er) _til..." #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Hent fil(er) _til..." #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Vis bruger _profil" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "Kig i filer" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "egenskaber for F_ile" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopier søgeord" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Ryd alle resultater" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Ryd filterhistorik" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Aktivere filtere" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIVAT]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Result filtre [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "Aktivere filtere" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Ryd alle aktive filtre" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Tilføj Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Fjern et alias" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Vælg brugeroverførsler" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Total" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Resultater" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Vælg destination for download af fil(er) fra bruger" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Vælg en mappe" #: pynicotine/gtkgui/transfers.py:60 #, fuzzy msgid "Queued" msgstr "Kø" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "prioriteret" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "(priveligieret)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Henter status" #: pynicotine/gtkgui/transfers.py:64 #, fuzzy msgid "Transferring" msgstr "Overføre" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Forbindelsen lukket av anden bruger" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Tilslutter" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Bruger logget ud" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Aflyse" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Fejl på downloadsbibliotek" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Lokalt filfejl" #: pynicotine/gtkgui/transfers.py:74 #, fuzzy msgid "Banned" msgstr "Forbudt" #: pynicotine/gtkgui/transfers.py:75 #, fuzzy msgid "File not shared" msgstr "Filen er ikke delt" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Afventer lukning" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Overførsler" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Kø" #: pynicotine/gtkgui/transfers.py:182 #, fuzzy msgid "Percent" msgstr "Procent" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Forløben tid" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Tid tilbage" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Open liste" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Åbn i _Manager" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "Søg" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Rens logfil" #: pynicotine/gtkgui/transfers.py:874 #, fuzzy msgid "Select User's Transfers" msgstr "Vælg brugeroverførsler" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "Afbryd" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Fuldført / Afbrudt / Mislykkedes" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Færdig/filtreret" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Mislykkedes" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Bruger logget ud" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Ryd uploads i kø" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Vil du virkelig rydde alle uploads i kø?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Rens logfil" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Vil du virkelig rydde alle uploads?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Save-shares-liste til disk" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Upload mappe (med undermapper) til bruger" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopier mappens URL" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Hent fil(er) _til..." #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Filnavn" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Hent fi_l(er)" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Overfør mappe til…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Hent Mappe _til..." #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Brugerens liste over delte filer er tom. Enten deler brugeren ikke noget, " "eller de deler filer privat." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Der kan ikke anmodes om delte filer fra brugeren. Enten er brugeren offline, " "I har begge en lukket lytteport, eller også er der et midlertidigt " "forbindelsesproblem." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Vælg destination for download af en mappe fra bruger" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Upload mappe (med undermapper) til bruger" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Overfør mappe til…" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Angiv navnet på den bruger, du vil overføre til:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Uploads" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Vælg destination for download af fil(er) fra bruger" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Overfør filer" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Billede:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Gem billede" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Billedet for brugeren %(user)s kunne ikke indlæses: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Der kan ikke anmodes om oplysninger fra brugeren. Enten har I begge en " "lukket lytteport, brugeren er offline, eller også er der et midlertidigt " "forbindelsesproblem." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Fjern et alias" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Tilføj ven…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Forbyd bruger" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ignorer bruger" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "Yes" msgstr "Ja" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "N" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Angiv et helt tal!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Giv dage af dine Soulseek-privilegier til brugeren %(user)s (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "%(days)s dage tilbage" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "indrømme privilegier" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "indrømme privilegier" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Luk" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Ja" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "_Søg filer" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Vælg en mappe" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Vælg Alle" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Vælg et billede" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Alle billeder" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Gem som…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Ingen)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "Luk" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Lukke alle faner?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Vil du virkelig lukke alle faner?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Ulæste faner" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Lukke alle faner?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "Luk" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Filer er markeret" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "Kig i filer" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Tilføj ven…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Vis IP-a_dresse" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "_Chattrum" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Fjern fra privat rum %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Føj til privatrum %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Fjern som operatør af %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Tilføj som operatør af %s" #: pynicotine/gtkgui/widgets/textview.py:452 #, fuzzy msgid "--- old messages above ---" msgstr "--- gamle beskeder over ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Udført: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Lyd" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Image:" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arkiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Diverse" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokument/tekst" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "" "Der opstod en fejl under indlæsning af det brugerdefinerede ikon %(path)s: " "%(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Kolonne #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Grupperet" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Kopier mappens URL" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Grupper efter bruger" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Har du virkelig lyst til at afslutte Nicotine+?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Brugeren %s findes allerede, og den indtastede adgangskode er ugyldig. Vælg " "et andet brugernavn, hvis det er første gang, du logger på." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Kodeord" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Hvis du vil oprette en ny Soulseek-konto, skal du udfylde det ønskede " "brugernavn og din ønskede adgangskode. Hvis du allerede har en konto, skal " "du udfylde dine eksisterende loginoplysninger." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Kunne ikke skrive til logfilen \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Filen %(path)s kan ikke gemmes: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "De Forenede Arabiske Emirater" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua &Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albanien" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Armenien" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktis" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Amerikansk Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Østrig" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australien" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Ålandsøerne" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Aserbajdsjan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnien -Hercegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgien" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgarien" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius og Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brasilien" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Bouvet Island" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Belarus" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Canada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Øer" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Den Demokratiske Republik Congo" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Den Centralafrikanske Republik" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Republikken Congo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Schweiz" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Elfenbenskysten" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cookøerne" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Cameroun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Kina" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Juleøen" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Cypern" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Tjekkiet" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Tyskland" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Danmark" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikanske Republik" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Algeriet" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estland" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egypten" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Vestsahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Spanien" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopien" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Finland" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandsøerne (Malvinas)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronesien" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Færøerne" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Frankrig" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Storbritannien" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Georgien" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Fransk Guyana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grønland" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Ækvatorialguinea" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Grækenland" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "South Georgia &South Sandwich Islands" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heard &McDonald Islands" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroatien" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Ungarn" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonesien" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irland" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Isle of Man" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "Indien" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Britisk territorium i Det Indiske Ocean" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italien" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordan" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japan" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgisistan" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Cambodja" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Comorerne" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Saint Kitts &Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Nordkorea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Sydkorea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Caymanøerne" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kasakhstan" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Litauen" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxembourg" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Letland" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libyen" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Marokko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Sankt Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshalløerne" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Nordmakedonien" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongoliet" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Nordmarianerne" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauretanien" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldiverne" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexico" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malaysia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mozambique" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Ny Kaledonien" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolk Island" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Holland" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norge" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "New Zealand" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Fransk Polynesien" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Ny Guinea" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filippinerne" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Polen" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Sankt Pierre &Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Staten Palæstina" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Rumænien" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbien" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Rusland" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudi-Arabien" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Salomonøerne" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychellerne" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Sverige" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Sankt Helena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovenien" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard & Jan Mayen Islands" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovakiet" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Filnavn" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Sydsudan" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome &Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Syrien" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turks & Caicosøerne" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Tchad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Franske sydlige territorier" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Thailand" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadsjikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Timor-Leste" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunesien" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Türkiye" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad &Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukraine" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "Mindre amerikanske øer i usa" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "USA" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Usbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Pavestolen (Vatikanstaten)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent &Grenadinerne" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "De Britiske Jomfruøer" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "De Amerikanske Jomfruøer" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis &Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Sydafrika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Tekst-til-tale for meddelelsen mislykkedes: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Angiv både dit Last.fm brugernavn og API-nøgle" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Spiller nu format" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "" "Last.fm: Der kunne ikke oprettes forbindelse til Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Kunne ikke få det seneste spor fra Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Der blev ikke fundet en passende MPRIS-afspiller" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Fandt flere MPRIS-afspillere: %(players)s. Bruger: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatisk registreret MPRIS-afspiller: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Noget gik galt, mens forespørgsel %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Angiv dit ListenBrainz brugernavn" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Der kunne ikke oprettes forbindelse til ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "LytBrainz: Du synes ikke at lytte til noget lige nu" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "ListenBrainz: Kunne ikke få aktuelle spor fra ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Søgninger" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Ingen kø" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Der kan ikke oprettes forbindelse til serveren. Årsag: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Frakobled fra server %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Ændrer din away-status" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Aktivere filtere" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Rense chatvinduet" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Sig noget i tredje person" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Annoncer den sang, der afspilles i øjeblikket" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Deltag eller opret rum…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Forlad rummet 'rum'" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Sig besked i det angivne chatrum" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Privat chat" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Luk den private chat" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Brugeri_nfo" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Send privat besked til alle online venner:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Tilføj brugeren 'bruger' til din ban-liste" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Fjern brugeren 'bruger' fra din ban-liste" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Se brugerens filer 'bruger'" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Brugeri_nfo" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Vis IP-adresse for brugeren 'bruger'" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Bloker forbindelser fra bruger eller IP-adresse" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Fjern brugeren 'bruger' fra din ban-liste" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Lydløs beskeder fra bruger eller IP-adresse" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Fjern brugeren 'bruger' fra din ignore-liste" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Tilføj Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Fjern et alias" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Omindexere delede filer" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Omindexere delede filer" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Start global filsøgning" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Søge i filer og mapper (nøjagtigt match)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Søge i filer og mapper (nøjagtigt match)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Søg i en brugers delede filer efter 'forespørgsel'" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Viser %(num)i tilgængelige kommandoer:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Viser %(num)i tilgængelige kommandoer, der matcher \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Skriv %(command)s for at vise lignende kommandoer" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Indtast %(command)s for at få vist tilgængelige kommandoer" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s kom ind i rummet" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Luk den private chat" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Forbudt" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Forbyd bruger" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorerade brugere:" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ignorer bruger" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Indlæst plugin %s" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Plugin kunne ikke indlæses %(name)s. Navnet på plugin-mappen indeholder " "ugyldige tegn: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Modstridende %(interface)s kommando i plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Indlæst plugin %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Plugin kunne ikke indlæses %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Fjernet plugin %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Plugin kunne ikke fjernes %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s mislykkedes med fejlen %(errortype)s: %(error)s.\n" "Sporing: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Beskrivelse:" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Mangler %s argument" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Fejlagtig SoulSeek-meta-url: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Anvendelse: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Ukendt kommando: %(command)s. Indtast %(help_command)s for at få vist " "tilgængelige kommandoer." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Ingen UPnP-enheder fundet" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Den eksterne port kunne ikke videresendes %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Den eksterne port %(external_port)s blev sendt til den lokale IP-" "adresse %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privat meddelelse fra %(user)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Søger efter ønskeseddel \"%s\"" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Ønskeliste ventetid indstillet til %s sekunder" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Brugeren %(user)s søger efter \"%(query)s\", og returnerer %(num)i-resultater" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Indexering påbegyndt" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Indexering påbegyndt" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Genscanning fuldført: %(num)s mapper fundet" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Der opstod en alvorlig fejl under genscanning af shares. Hvis problemet " "fortsætter, skal du slette %(dir)s/*.db og prøve igen. Hvis det ikke " "hjælper, skal du indsende en fejlrapport med denne staksporing inkluderet: " "%(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Der opstod en fejl under scanning af filen %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Der opstod en fejl under scanning af mappen %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "" "Der opstod en fejl under scanning af metadata for filen %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Genscanning afbrudt på grund af utilgængelige delinger" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Brugeren %(user)s gennemser listen over delte filer" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Den delte mappe %(folder)s kunne ikke hentes: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "Shares-databasen kan ikke læses. Tjek dine aktier igen. Fejl: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Den specificerede netværksgrænseflade '%s' findes ikke" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Kan ikke lytte på port %(port)s. Sørg for, at ingen andre programmer bruger " "det, eller vælg en anden port. Fejl: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Lytter på port %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Kunne ikke forbinde til serveren %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Opret automatisk forbindelse til serveren ved start" #: pynicotine/slskproto.py:1202 #, fuzzy, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Opretter forbindelse til %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Tilsluttet server %(host)s:%(port)s, logger in..." #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Frakobled fra server %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Nogen er logget ind på din Soulseek-konto et andet sted" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Download færdig: %(user)s, fil %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Mislykked download: bruger %(user)s, fil %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "Overfør I/O-fejl: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Mislykked download: bruger %(user)s, fil %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Kunne ikke skape biblioteket '%(folder)s', rapporteret fejl: %(error)s" #: pynicotine/userbrowse.py:218 #, fuzzy, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Indlæsning af shares fra disken mislykkedes: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Gemt liste over delte filer for brugeren '%(user)s' til %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Kunne ikke skape biblioteket '%(user)s', rapporteret fejl: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Billede gemt i %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Kunne ikke gemme konfigurationsfil, I/O-fel: %s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Brugeren %(user)s læser dine brugeroplysninger" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Der kan ikke oprettes forbindelse til serveren. Årsag: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Kunne ikke tilslutte" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "IP'en for brugeren %s kan ikke hentes, da denne bruger er offline" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP-adressen for %(user)s er %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek-klient" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i privilegier" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Du har ingen privilegier. Rettigheder er ikke påkrævet, men tillad, at dine " "downloads sættes i kø foran brugere uden rettigheder." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dage, %(hours)i timer, %(minutes)i minutter, %(seconds)i sekunder " "af downloadrettigheder tilbage." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Din adgangskode er blevet ændret. Adgangskoden er %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Ændring af adgangskode afvist" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Filen %(path)s kan ikke gemmes: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Kunne ikke gemme konfigurationsfil, I/O-fel: %s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Noget gik galt, mens du læser filen %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Forsøger at indlæse sikkerhedskopiering af filen %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Filen %(path)s kan ikke sikkerhedskopiers: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Filen %(path)s kan ikke gemmes: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Den forrige fil %(path)s kunne ikke gendannes: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Tilføj ven…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Søgninger" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Søgninger" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Send meddelelse" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Slå tekst-til-tale til/fra" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Hjælp til kommandokommando i chatrum" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Log" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Værelse væg" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Værelse væg" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Lavet af" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Oversat af" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licens" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Forrige fil" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Set op…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Hvis dit ønskede brugernavn allerede er taget, bliver du bedt om at ændre " "det." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Hvis lytteporten er lukket, kan du kun oprette forbindelse til brugere, hvis " "lytteporte er åbne." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Vælg om nødvendigt en anden lytteport nedenfor. Dette kan også gøres senere " "i præferencerne." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Hent fil(er) _til..." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Delede mapper" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-brugere vil kunne downloade fra dine aktier. Bidrag til Soulseek-" "netværket ved at dele din egen samling og ved at videredele det, du har " "downloadet fra andre brugere." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Du er klar til at bruge Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donere til Soulseek giver dig privilegier i en bestemt periode. Hvis du har " "rettigheder, sættes dine downloads i kø foran brugere uden rettigheder." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Forrige fil" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Næste fil" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Filnavn" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Sidste hastighed" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Eksport" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Tastaturgenveje" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Generel" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Tilslut" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Luk ned" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Omindexere delede filer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Vis ruden Log" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Konfigurer logføring" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 #, fuzzy msgid "Quit" msgstr "Afslutte" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Menuer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Åbn hovedmenu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Menuen Åbn kontekst" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Faner" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Skift primær fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Gå til forrige sekundær fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Gå til næste sekundære fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Luk sekundær fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Luk sekundær fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Lister" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Vælg Alle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Fjern den valgte række" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Karakter" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Skære" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Indsætte" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Indsæt emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Vælg Alle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 #, fuzzy msgid "Find" msgstr "Finde" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Find næste match" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Find forrige match" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Overførsler" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Fortsæt/ Overfør igen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Afbryd overførslen midlertidigt/afbryd" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Hent Mappe _til..." #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Save-shares-liste til disk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Opdatere filer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Udvid/skjul alle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Mappen kan ikke deles" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Søg" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "Aktivere filtere" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Aktuel session" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Ingen kø" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Fuldførte overførsler" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Hent fi_l(er)" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Resume" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Ønskelisteelementer søges automatisk med jævne mellemrum for at opdage " "usædvanlige filer." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Tilføj ønske…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Rens logfil" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Fil hentet" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Rens afsluttede" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Downloads" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Rens logfil" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Interesser" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Tilføj noget, du kan lide…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Jeg kan ikke li'" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Tilføj noget, du ikke kan lide…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Rekommendationer for %s" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Åbn hovedmenu" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Rum" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Brugernavn…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Søgninger" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Søgemønstre: med et ord = udtryk, uden et ord = -term, delvis ord = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Søgeområde" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Wishlist" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfigurer søgninger" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Angiv et søgeord for at søge efter filer, der deles af andre brugere på " "Soulseek-netværket" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Filgrupperingstilstand" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfigurer overførsler" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Filer, du downloader fra andre brugere, sættes i kø her og kan sættes på " "pause og genoptages efter behov" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfigurer overførsler" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Brugernes forsøg på at downloade dine delte filer sættes i kø og " "administreres her" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "_Open liste" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Åbner en lokal liste over delte filer, der tidligere blev gemt på disken" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Configure Aktier" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Angiv navnet på en bruger, hvis delte filer du vil gennemse. Du kan også " "gemme listen på disken og undersøge den senere." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Jeg kan ikke li'" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfigurer logføring" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Angiv navnet på en bruger for at få vist vedkommendes brugerbeskrivelse, " "oplysninger og personlige billede" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Chathistorik" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfigurer shares" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Angiv navnet på en bruger for at starte en tekstsamtale med vedkommende " "privat" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Meddelelser" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ignorerade brugere:" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Føje brugere til din venneliste for at dele bestemte mapper med dem og " "modtage meddelelser, når de er online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Deltag eller opret rum…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Deltag i et eksisterende chatrum, eller opret et nyt rum for at chatte med " "andre brugere på Soulseek-netværket" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Se brugerprofil" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Søgninger" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Forbindelser" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Download (hastighed / aktive brugere)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Upload (hastighed / aktive brugere)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Søgninger" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Download påbegyndt: %s" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Begræns uploadhastigheden til" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Alternativ hastighedsgrænse for download (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternativ hastighedsgrænse for download (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Søgninger" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Opdater værelsesliste" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Show feed af offentlige chatrumsbeskeder" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "_Accept invitationer til private værelser" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Værelsesvægsfunktionen giver brugerne i et rum mulighed for at angive en " "unik meddelelse, der skal vises til andre. De seneste meddelelser vises " "øverst." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Send besked" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "_Søg filer" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Søgeresultatfiltre bruges til at forfine, hvilke søgeresultater der vises." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Hver liste over søgeresultater har sit eget filter, som kan afsløres ved at " "skifte knappen Resultatfiltre. Et filter består af flere felter, som alle " "anvendes, når der trykkes på Enter i et af dets felter. Filtrering anvendes " "straks på resultater, der allerede er modtaget, og også på dem, der endnu " "ikke er ankommet. Hvis du vil se de fulde resultater igen, skal du blot " "rydde filteret for alle termer og anvende det igen. Som navnet antyder, kan " "et søgeresultatfilter ikke udvide din oprindelige søgning, det kan kun " "indsnævre det ned. Hvis du vil udvide eller ændre søgeordet, skal du udføre " "en ny søgning." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Som navnet antyder, kan et søgeresultatfilter ikke udvide din oprindelige " "søgning, det kan kun indsnævre det. Foretag en ny søgning for at udvide " "eller ændre dine søgetermer." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Aktivere filtere" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Medtag tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Filer og mapper, der indeholder denne tekst, vises." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Sagen er ufølsom, men ordrækkefølgen er vigtig: »Spears Brittany« vil ikke " "vise nogen »Brittany Spears«" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Brug | (eller rør) for at adskille flere nøjagtige sætninger. Eksempel:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Udelad tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Som ovenfor, men filer og mapper filtreres fra, hvis teksten stemmer overens." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtrerer filer baseret på deres filtypenavn." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Der kan angives flere filtypenavne, hvilket igen vil udvide listen over " "resultater.\n" " Eksempel: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Det er også muligt at invertere filteret og angive de filtypenavne, du ikke " "ønsker i resultaterne.\n" " Eksempel: !mp3|! jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Filstørrelse" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtrerer filer baseret på deres filstørrelse." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Den anvendte enhed er som standard byte, og filer, der er større end eller " "lig med værdien, vil blive matchet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Tilføj b, k, m eller g (alternativt kib, mib eller gib) for at angive " "enheder med byte, kibibyte, mebibyte eller gibibyte:\n" " <1024k vil finde filer 1024 kibibytes (dvs. 1 mebibyte) eller mindre." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Forberedelse = til en værdi for at angive et nøjagtigt match:\n" " =1024 svarer kun til filer, der har en størrelse på 1024 byte (dvs. 1 " "kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Forberedelse = til en værdi for at angive et nøjagtigt match:\n" " =1024 svarer kun til filer, der har en størrelse på 1024 byte (dvs. 1 " "kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Sæt < eller > foran for at finde filer, der er mindre/større end den givne " "værdi:\n" " >10,5m|<1g for at vise filer større end 10,5 MiB (mebibytes),\n" " men mindre end 1 GiB (gibibytes), brug en | mellem forhold." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "For nemheds skyld kan varianterne kb, mb og gb for de bedre kendte kilo-, " "mega- og gigabyte-enheder også bruges." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtrerer filer baseret på deres bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Værdier skal kun indtastes som numeriske cifre. Enheden er altid Kb/s " "(kilobit pr. sekund)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Ligesom filstørrelse (ovenfor) kan operatorer =, !, < og > bruges, og flere " "betingelser kan angives med | rør:\n" " >256|<1411 for at vise filer med en bithastighed på mindst 256 Kb/s\n" " med en maksimal bithastighed på 1411 Kb/s." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtrerer filer baseret på deres bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Som standard vil filer, der er længere end eller lig med den indtastede " "varighed, blive matchet, medmindre en operator (=, !, < eller >) bruges." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Indtast en rå værdi i sekunder, eller brug tidsformaterne MM:SS og TT:MM:" "SS:\n" " >5:30 for at vise filer på mindst 5 et halvt minut lange.\n" " <5:30:00 viser filer, der er mindre end 5 og en halv time lange." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Flere betingelser kan angives med | rørskillere:\n" " >6:00|<12:00 for at vise filer på mellem 6 og 12 minutter.\n" " !9:54|!8:43|!7:32 for at skjule nogle specifikke filer fra " "resultaterne.\n" " =5:34|=4:23|=3:05 for at inkludere filer med specifik varighed." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Bruger landekoder defineret af ISO 3166-2 (se Wikipedia):\n" " 'USA' returnerer kun filer fra brugere, der er tilsluttet via USA. På " "samme måde returnerer »GB« filer fra brugere med IPs i Det Forenede " "Kongerige." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Flere lande kan angives med kommaer eller mellemrum." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Ledig plads" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Vis kun de resultater fra brugere, der har mindst én upload slot gratis. " "Dette filter anvendes med det samme." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Overfør hastighedsgrænser" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Begræns uploadhastigheden til" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Alternativ hastighedsgrænse for upload (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternativ hastighedsgrænse for upload (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Hjælp til privat chatkommando" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Medtag tekst…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrer i resultater, hvis filstier indeholder den angivne tekst. Der kan " "specificeres flere sætninger og ord, f.eks|||." #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Udelad tekst…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Bortfiltrere resultater, hvis filstier indeholder den angivne tekst. Der kan " "specificeres flere sætninger og ord, f.eks|||." #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Filtype…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Filtype, f.eks flac|wav|ape eller !mp3|! m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Filstørrelse…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Filstørrelse, f.eks. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bitrate" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, f.eks. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Varighed…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Varighed, f.eks. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Landekode…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Landekode, f.eks. USA| GB|ES eller !DE|! GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Forbyd brugere at få adgang til dine delte filer baseret på brugernavn, IP-" "adresse eller land." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Landekoder at blokera (afgræns med komma):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Koderne skal være i ISO 3166-2-format." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Brug eget ban-besked:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Brug eget ban-besked:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adresser" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Aktiver stavekontrol (kræver genstart)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Gendan tidligere åbne private chats ved start" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Aktiver CTCP-lignende svar på private meddelelser (klientversion)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Antal seneste chatlinjer, der skal vises:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Antal seneste chatlinjer, der skal vises:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Færdiggørelse" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Aktiver fuldførelse af tabulatortast" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Aktiver rullelisten Fuldførelse" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Der kræves minimumtegn for at få vist rullelisten:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Tilladte afslutninger" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Venneliste" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Chatrumsmeddelelse:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Rum" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Kommentarer" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Forløben tid" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Privat chat" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Standard" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Chatrumsformat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Tekst-til-tale" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Aktiver tekst-til-tale" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Tekst-til-tale-kommando:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Privat chatbesked:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Chatrumsmeddelelse:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Censor" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Aktiver censurering af tekstmønstre" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Automatisk erstat" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Aktiver automatisk udskiftning af ord" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Autoclear færdig / filtreret downloads fra overførselslisten" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Gemme overførsler i undermapper til brugernavne" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Venter på download" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Tillad disse brugere at sende dig filer:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Mapper" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Fil hentet" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Ingen kø" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Spørg efter fil" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Hændelser" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Kør kommando når download er færdig ($ for filnavn):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "Kør kommando når mappe er færdig ($ for mappenavn):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "_Hent fil(er)" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Aktivere filtere" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Tilføj" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Standard" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 #, fuzzy msgid "Verify Filters" msgstr "Kontroller filtre" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Ubekræftet" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorer chatbeskeder og søgeresultater fra brugere baseret på brugernavn " "eller IP-adresse." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Logge chatrum" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Logge privatchat" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Logfør overførsler til fil" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Logfør fejlfindingsmeddelelser til fil" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Logfilformat:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Mappeplaceringer" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Mappen Chatroom logs:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Privat chat" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Overførsler" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Udført på mappe: %s" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Log ind på en eksisterende Soulseek-konto, eller opret en ny. Brugernavne " "skelner mellem store og små bogstaver og er unikke." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Vis IP-a_dresse" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Lytteportområde (kræver genstart):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Status" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutters inaktivitet, før du går væk (0 for at deaktivere):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Auto-svar ved away: " #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Videresend automatisk lytteport (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Opret automatisk forbindelse til serveren ved start" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Binder forbindelser til en bestemt netværksgrænseflade, der er nyttig til f." "eks. at sikre, at en VPN bruges til enhver tid. Lad det være tomt for at " "bruge en tilgængelig grænseflade. Kun ændre denne værdi, hvis du ved, hvad " "du gør." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Lytteportområde (kræver genstart):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Nu spiller giver dig mulighed for at vise, hvad din medieafspiller spiller " "ved hjælp af / nu kommando i chatten." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 #, fuzzy msgid "Other" msgstr "Anden" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Spiller nu format" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Afspiller nu meddelelsesformat:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Testkonfiguration" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Aktivere filtere" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "_Add Plugins" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "_Add Plugins" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Indstillninger" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Indstillninger" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Version: " #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Lavet af" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Aktiver søgehistorik" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Andre klienter kan tilbyde en mulighed for at sende privat delte filer som " "svar på søgeanmodninger. Sådanne filer er præfikset med '[PRIVATE FILE]', og " "kan ikke downloades, medmindre uploaderen giver udtrykkelig tilladelse." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Vise privat delte filer i søgeresultater" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Begræns antallet af resultater pr. søgning:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Aktivere filtere som standard" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Omfatte:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Udelukke:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Filtype:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "størrelse:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Varighed:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Landekode:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "Vis kun resultater fra brugere med en tilgængelig uploadplads." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Hjælp til resultatfilter" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Søgninger" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Besvar søgeanmodninger fra andre brugere" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Søgninger, der er kortere end dette antal tegn, ignoreres:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "søgresultat per søgning" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Ryd søgehistorik" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Ryd filterhistorik" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Automatisk scanne indholdet af dine delte mapper ved start. Hvis de er " "deaktiveret, opdateres dine shares kun, når du manuelt starter en " "genscanning." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Omindexere dine filer ved programstart" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Venneliste" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Omindexere delede filer" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Autoclear færdig / annulleret uploads fra overførsel liste" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Dobbeltklik handling for uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Begræns uploadhastigheden til" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "per overforsel" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "totalt" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Uploads" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Filer vil blive uploadet på cyklisk måde til de brugere, der venter i kø." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Overfør køtype:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Kø uploads, hvis den samlede overførselshastighed når (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Begræns uploadhastigheden til" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Mine venner går forrest i downloadkøen" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Køstørrelse: %i" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Begræns antallet af resultater pr. søgning:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Mine venner slipper kørestriktioner" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Forekomster af $ vil blive erstattet af linket. Systemets standardwebbrowser " "bruges i de tilfælde, hvor en protokol ikke er konfigureret." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Kommandoen Filhåndtering ($ for filsti):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Nulstil billede" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Beskrivelse:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Billede:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Rens" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Foretrækker mørk tilstand" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Brug _Header bar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Ikonet Vis bakke" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimer til bakke ved start" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Lytteportområde (kræver genstart):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Ved lukning af Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Meddelelser" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Aktiver lyd til pop op-meddelelser" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "Vis notifikation for private chats og omtaler i vinduestitlen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Vis meddelelsesikoner under faner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Fil hentet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Mappe hentet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Privat meddelelse fra %s" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Chatrumsmeddelelse:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Færdiggørelse" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Ønskelisteresultater fundet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Gendan tidligere åbne private chats ved start" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Luk knapper under sekundære faner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Farve på den almindelige faneetiket:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Ændret faneetiketfarve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Fremhævet etiketfarve på fanen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Synlige primære faner:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Placering på tabulatorlinjen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Hovedfaner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Vis stier til omvendte filer i søge- og overførselsvisninger (kræver " "genstart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Netværksgrænseflade (kræver genstart):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Vis tekstfarve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Tekstfarve i søgeresultatet i kø:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Chatrumsmeddelelse:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Udseende til chat brugernavn:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Tekstfarve på fjerntekst:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Lokalt filfejl" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Tekstfarve på fjerntekst:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me handlingstekstfarve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Fremhævet tekstfarve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "Tekstfarve for URL-link:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "USA" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Online tekstfarve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Tekstfarve, der ikke er på lager:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Offlinetekstfarve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Tekstposter" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Baggrundsfarve for tekstindtastning:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Tekstfarve for tekst med tekst til tekst til tekst:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Skrifttyper" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Global" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Skrifttype på liste:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Skrifttype for tekstvisning:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Chattrum" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Overførsler" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Søg filer" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Kig i filer" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Ikoner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Ufuldstændig filmappe:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Afbrudt" #: pynicotine/gtkgui/ui/uploads.ui:116 #, fuzzy msgid "Ban User(s)" msgstr "Forbyd bruger(er)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Autoclear færdig / annulleret uploads fra overførsel liste" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Meddelelser" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Rens logfil" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Save-shares-liste til disk" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Opdatere filer" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Delede mapper" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "_Søg filer" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Delede mapper" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Uploads" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Ledig plads" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Uploads" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Interesser" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "indrømme privilegier" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Opdatere filer" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+" #~ msgid "_Clear" #~ msgstr "Rens" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Kunne ikke gemme konfigurationsfil, I/O-fel: %s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Venner" #, fuzzy #~ msgid "Quit program" #~ msgstr "Afslut program" #, fuzzy #~ msgid "Username:" #~ msgstr "Brugernavn:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Re_kommendationer" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "Fjern" #~ msgid "_Remove" #~ msgstr "Fjern" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Send besked" #, fuzzy #~ msgid "Send Message" #~ msgstr "Send meddelelse" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Se brugerprofil" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Start beskeder" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Angiv navnet på den bruger, du vil sende en meddelelse til:" #, fuzzy #~ msgid "_Message" #~ msgstr "Meddelelser" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Angiv navnet på den bruger, hvis shares du vil se:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Se brugerprofil" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Angiv navnet på den bruger, hvis shares du vil se:" #, fuzzy #~ msgid "_Browse" #~ msgstr "Kig i filer" #, fuzzy #~ msgid "Password" #~ msgstr "Kodeord" #, fuzzy #~ msgid "Download File" #~ msgstr "Hent fil" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Lignende brugere" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Angiv brugernavnet på den person, hvis filer du vil se" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Angiv brugernavnet på den person, hvis oplysninger du vil se" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Angiv brugernavnet på den person, du vil sende en meddelelse til" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Angiv brugernavnet på den person, du vil føje til din venneliste" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Angiv navnet på et rum, du vil deltage i. Hvis rummet ikke eksisterer, " #~ "oprettes det." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Vis _Log rude" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Gem _Picture" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Filtrerede forkert søgeresultat %(filepath)s fra bruger %(user)s for " #~ "søgeforespørgsel \"%(query)s\"" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Visse klienter sender ikke søgeresultater, hvis specialtegn er inkluderet." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Fjerne specialtegn fra søgeord" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problemer med at udføre '%s'" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemer med at udføre på mappe: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Ikke-tilladt udvidelse" #, fuzzy #~ msgid "Too many files" #~ msgstr "For mange filer" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "For mange MEGABYTE" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Serveren tillader ikke at udføre ønskelistesøgninger på nuværende " #~ "tidspunkt" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Filoverførselshastigheder afhænger af de brugere, du henter fra. Visse " #~ "brugere vil være hurtigere, mens andre vil være langsomme." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Downloads" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Uploads" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Erstat censurerede bogstaver med:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Censurerede mønstre" #, fuzzy #~ msgid "Replacements" #~ msgstr "Udskiftninger" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Hvis en bruger på Soulseek-netværket søger efter en fil, der findes i " #~ "dine shares, sendes søgeresultaterne til brugeren." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Send til _Player" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Send til _Player" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Open i Filhåndtering" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Kommandoen Media Player ($ for filsti):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Overførslen kan ikke gemmes i undermappen brugernavn og falder tilbage " #~ "til standardoverførselsmappen. Fejl: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Kun kammerat" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Del kun med venner" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Quit" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Configure Aktier" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Fejl i fjernfilen" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "%(option1)s eller %(option2)s blev ikke fundet." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s-mapper, der blev fundet efter genscanning" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Følgende databaser kunne ikke behandles: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Antallet af delte filer kunne ikke sendes til serveren: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Kør i baggrunden" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Lytter på port %i" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Søgninger" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Begræns dele, der kun er tillid til venner, der er tillid til" #, fuzzy #~ msgid "Shared" #~ msgstr "Fælles" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Søge i filer og mapper (nøjagtigt match)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Forældet" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Version %(version)s er tilgængelig, udgivet på %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Du ser ud til at bruge en udviklingsversion af Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Du bruger den nyeste version af Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Tjek _Latest version" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Foretrækker mørke _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Vis _Log rude" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Venneliste under separat fane" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Venneliste altid synlig" #, fuzzy #~ msgid "_View" #~ msgstr "_View" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Downloadsmappe" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "Kig i filer" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 byte) pr. sekund." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Sendes til brugerne som årsag til at blive geo blokeret." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Sendes til brugere som årsag til at blive forbudt." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Når du interagerer med, at applikationen er væk, vil status blive sat til " #~ "online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "En bruger kan max. køe" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 byte)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBs" #, fuzzy #~ msgid "files" #~ msgstr "Filer" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Funktionsmåde for kø" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Hvis deaktiveret, vil slots automatisk blive bestemt af tilgængelige " #~ "båndbredde begrænsninger." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Bemærk, at operativsystemets tema kan have forrang." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Som standard er fanen søgefiler aktiveret ved opstart." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Afslut Nicotine+ %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "Afsluttet" #, fuzzy #~ msgid "done" #~ msgstr "Gjort" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Husk valg" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Interface" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Lytter på port %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Serveren ser ud til at være nede eller svarar ikke, forsøger igen om %i " #~ "sekunder" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ bruger peer-to-peer-netværk til at oprette forbindelse til " #~ "andre brugere. For at give brugerne mulighed for at oprette forbindelse " #~ "til dig uden problemer, er en åben lytteport afgørende." #~ msgid "--- disconnected ---" #~ msgstr "--- offline ---" #~ msgid "--- reconnected ---" #~ msgstr "--- tilslutted ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Jord" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Tjekkiet" #, fuzzy #~ msgid "Turkey" #~ msgstr "Tyrkiet" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Tilmeldte værelser " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-join-værelse" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ " Syntaks: Der skelnes ikke mellem store og små bogstaver. Alle " #~ "regulære Python-udtryk understøttes, hvis escapeing er deaktiveret. For " #~ "enkle filtre anbefales det at holde udslip aktiveret." #, fuzzy #~ msgid "Escaped" #~ msgstr "Undslap" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Undslap" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Indtast henholdsvis tekstmønster og erstatning:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s mapper fundet før rescanning, genopbygning …" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Ingen lytteport er tilgængelig i det angivne portområde %s–%s" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Vælg en rækkevidde at vælge en lytteport fra. Den første tilgængelige " #~ "port i rækken vil blive brugt." #, fuzzy #~ msgid "First Port" #~ msgstr "Første port" #, fuzzy #~ msgid "to" #~ msgstr "til" #, fuzzy #~ msgid "Last Port" #~ msgstr "Sidste port" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "%s blev ikke fundet." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Gtk-modulet kan ikke importeres. Dårlig installation af python-gobject " #~ "modul?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Du bruger en ikke-understøttet version af GTK %(major_version)s. Du skal " #~ "installere GTK %(complete_version)s eller nyere." #, fuzzy #~ msgid "User Info" #~ msgstr "Brugeroplysninger" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Zoom ind" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Zoom ud" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Brugeri_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Brugeri_nfo" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Omindexere delede filer" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Brugeri_nfo" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Angiv navnet på den bruger, hvis oplysninger du vil se:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Liste over anmodningsandele" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Fejlagtig SoulSeek-meta-url: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Brugere på Soulseek-netværket vil kunne downloade filer fra mapper, du " #~ "deler. Deling af filer er afgørende for Soulseek-netværkets sundhed." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Brugeri_nfo" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Om kommandon for chattrum" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'room'" #~ msgid "Join room 'room'" #~ msgstr "Stig ind i rum 'rum'" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/me 'besked'" #, fuzzy #~ msgid "Display the Now Playing script's output" #~ msgstr "Vis outputtet nu afspilning af script" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'bruger'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Tilføj brugeren 'bruger' til din ban-liste" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'user'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Fjern brugeren 'bruger' fra din ban-liste" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ban 'bruger'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Tilføj brugeren 'bruger' til din ban-liste" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban 'bruger'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Fjern brugeren 'bruger' fra din ban-liste" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ignorer 'bruger'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Tilføj brugeren 'bruger' til din ignore-liste" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'bruger'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Fjern brugeren 'bruger' fra din ignore-liste" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/gennemse /b 'bruger'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'bruger'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Hent brugerinfo fra brugeren 'bruger'" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip 'bruger'" #~ msgid "Show IP for user 'user'" #~ msgstr "Vis IP-adresse for brugeren 'bruger'" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'query'" #~ msgid "Start a new search for 'query'" #~ msgstr "Begynd søgning efter 'forespørgsel'" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'query'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Søg i tilkoblede rum efter 'forespørgsel'" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "Søg i vennelisten efter 'forespørgsel'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Søg i vennelisten efter 'forespørgsel'" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'user' 'query'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'user' 'message'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Send besked 'besked' til brugeren 'bruger'" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm 'bruger'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Åbn privat chatvindue for brugeren 'bruger'" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Om kommandon for private chattrum" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Tilføj brugeren 'bruger' til din ban-liste" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Tilføj brugeren 'bruger' til din ignore-liste" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Se brugerens filer 'bruger'" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "For ordrefølsom filtrering samt filtrering af flere nøjagtige sætninger " #~ "kan lodrette søjler bruges til at adskille sætninger og ord.\n" #~ " Eksempel: Spears| Brittany| Mit smukke album|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "For at udelukke ikke-lydfiler skal du bruge !0 i varighedsfilteret." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtrerer filer baseret på brugernes lande." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "For at se de fulde resultater igen skal du blot rydde alle aktive filtre." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Se indstillingerne for flere filterindstillinger." #, fuzzy #~ msgid "File size" #~ msgstr "Filer" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Ryd alle aktive filtre" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Bladre gennem færdiggørelser, når du trykker på tabulatortast" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Skjul rulleliste, når der kun er én tændstikker" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Hent mapper i omvendt alfanumerisk rækkefølge" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Ufuldstændig filmappe:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Mappen Hent:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Gem venners uploads på:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Brug UPnP til automatisk at tilknytte lytteporten på routeren" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Del mapper med alle Soulseek-brugere eller venner, så indhold kan " #~ "downloades direkte fra din enhed. Skjulte filer deles aldrig." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Sekundære faner" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Placering af chatrumsfanelinjen:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Stilling på privat chatfanelinje:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Placering på fanen Søg:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Placering på fanen Brugeroplysninger:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Placering på fanen Bruger gennemse:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Tabulatoretiketter" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "Opdatere" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Vis IP-a_dresse" #, fuzzy #~ msgid "Connected" #~ msgstr "Tilslut" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Luk ned" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Luk ned" #, fuzzy #~ msgid "User(s)" #~ msgstr "Bruger(er)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" returnerede intet" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Alternative hastighedsgrænser" #, fuzzy #~ msgid "Last played" #~ msgstr "Sidst spillet" #, fuzzy #~ msgid "Playing now" #~ msgstr "Spiller nu" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Filen %(path)s kan ikke gemmes: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Fejlkode %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Kunne ikke finde alias (%s)" #~ msgid "Aliases:" #~ msgstr "Alias:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Fjernede aliaset %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Kunne ikke finde alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternative hastighedsgrænser" #, fuzzy #~ msgid "Aliases" #~ msgstr "Aliaser" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'command' 'definition'" #~ msgid "Add a new alias" #~ msgstr "Tilføj et nyt alias" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'command'" #~ msgid "Remove an alias" #~ msgstr "Fjern et alias" #, fuzzy #~ msgid "Chat History" #~ msgstr "Chathistorik" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Ingen kø" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Begræns uploadhastigheden til" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Forfatter(er): " #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Begræns uploadhastigheden til" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Ønskeliste vare fundet" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Faner viser ikoner for brugerstatus i stedet for statustekst" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Aktivere værktøjstip til filsti i søge- og overførselsvisninger" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Farvede og klikbare brugernavne" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Meddelelse ændrer fanens tekstfarve" #, fuzzy #~ msgid "Cancel" #~ msgstr "Aflyse" #, fuzzy #~ msgid "OK" #~ msgstr "OK" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "Venner" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Ryd hver download markeret med en bestemt status." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Ryd hver upload markeret med en bestemt status." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "bruge ikke-standard brugerdatamappe til f.eks." #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Ukendt konfigurationssektion '%s'" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Ukendt konfigurationsindstilling '%(option)s' i afsnittet '%(section)s'" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Version %s er tilgængelig" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "udgivet på %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Kør i baggrunden" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Privat meddelelse fra %s" #~ msgid "Aborted" #~ msgstr "Afbrudt" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Blokeret land" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Rens færdige/afbrudne" #, fuzzy #~ msgid "Close tab" #~ msgstr "Luk" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "%(room)s kom ind i rummet" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Kender ikke kommandoen %s" #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Advarsel: %(realuser)s forsøger at forfalske %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Den netværksgrænseflade, du har angivet , '%s', findes ikke. Rediger " #~ "eller fjern den angivne netværksgrænseflade, og genstart Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Det område, du har angivet for klientforbindelsesporte, var {}-{}, men " #~ "ingen af disse kunne bruges. Forøg og/eller " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Bemærk, at en del af dit sortiment ligger under 1024, dette er normalt " #~ "ikke tilladt på de fleste operativsystemer med undtagelse af Windows." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Mappe: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS-fejl: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP er ikke tilgængelig på dette netværk" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Den eksterne WAN-port kunne ikke tilknyttes: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Værelse væg" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Standardlytningsporten '2234' fungerer fint i de fleste tilfælde. Hvis du " #~ "har brug for at bruge en anden port, kan du ændre den i indstillingerne " #~ "senere." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Vis brugere med lignende interesser" #, fuzzy #~ msgid "Menu" #~ msgstr "Menu" #, fuzzy #~ msgid "Expand / Collapse all" #~ msgstr "Udvid/skjul alle" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Konfigurer shares" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Opret eller deltag i rummet…" #, fuzzy #~ msgid "_Room List" #~ msgstr "Rum" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Aktiver alternative hastighedsgrænser for download og upload" #, fuzzy #~ msgid "Show log history" #~ msgstr "Vis loghistorik" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Resultatgrupperingstilstand" #~ msgid "Free slot" #~ msgstr "Ledig plads" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Gem sharesliste på disken" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Ui-filen %(file)s kunne ikke indlæses: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Forsøger at nulstille indekset for delte filer på grund af en fejl. Tjek " #~ "dine aktier igen." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Der kunne ikke opnås adgang til filindekset for delte filer. Dette kan " #~ "ske på grund af flere tilfælde af Nicotine+ er aktiv samtidigt, fil " #~ "tilladelse spørgsmål, eller et andet problem i Nicotine+." #, fuzzy #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ er en Soulseek-klient" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "aktivere bakkeikonet" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "deaktivere bakkeikonet" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Få Soulseek Privilegier…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Den offentlige IP-adresse er %(ip)s, og den aktive lytteport er " #~ "%(port)s" #, fuzzy #~ msgid "unknown" #~ msgstr "ukendt" #, fuzzy #~ msgid "Notification" #~ msgstr "Meddelelse" #~ msgid "Length" #~ msgstr "Længde" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Billedet er ikke gemt, %s findes allerede." #, fuzzy #~ msgid "_Open" #~ msgstr "_Open" #, fuzzy #~ msgid "_Save" #~ msgstr "_Save" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Plugin'%s' kunne ikke indlæses." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O-fejl: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Filstien kunne ikke åbnes: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "URL-adressen kunne ikke åbnes: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Log samtale" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Resultatfilterliste" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "< eller > for at finde filer, der er mindre/større end den angivne værdi." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-filer viser deres gennemsnitlige bithastighed og er typisk lavere i " #~ "bithastighed end en komprimeret 320 kbps CBR-fil med samme lydkvalitet." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Ligesom Størrelse ovenfor, =, < og > kan bruges." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Forhindre, at andre programmer får skriveadgang til filer, der hentes " #~ "(slå fra for NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Hvor ufuldstændige downloads er midlertidigt gemt." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Hvor vennernes uploads gemmes (med en undermappe oprettet for hver ven)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr " minutters inaktivitet" #~ msgid "Protocol:" #~ msgstr "Protokol:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikontemamappe (kræver genstart):" #~ msgid "Establishing connection" #~ msgstr "Opretter forbindelse" #, fuzzy #~ msgid "Clear Groups" #~ msgstr "Ryd grupper" #, fuzzy #~ msgid "User List" #~ msgstr "Brugerliste" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Reset Statistik…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "_Downloads" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Rens logfil" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Bloker brugerens IP-adresse" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorer brugerens IP-adresse" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Ryd hver download, der er færdig med at overføre eller er blevet fanget " #~ "af et filter." #, fuzzy #~ msgid "Usernames" #~ msgstr "Brugernavn" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "Vise meddelelser i det loggede chatrum, når et rum sluttes igen" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Ryd hver upload, der enten er færdig med at overføre eller er blevet " #~ "annulleret af fjernbrugeren." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Køposition" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Brugeren %(user)s søger direkte efter \"%(query)s\", og returnerer " #~ "%(num)i-resultater" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVAT]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Værelse væg (personlig besked sæt)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Konfigurationsfilen er beskadiget" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Vi beklager, men det ser ud til, at din konfigurationsfil er beskadiget. " #~ "Omkonfigurer Nicotine+.\n" #~ "\n" #~ "Vi omdøbte din gamle konfigurationsfil til\n" #~ "%(corrupt)s\n" #~ "Hvis du åbner denne fil med en teksteditor, kan du muligvis redde nogle " #~ "af dine indstillinger." #, fuzzy #~ msgid "User Description" #~ msgstr "Beskrivelse:" #, fuzzy #~ msgid "User Interests" #~ msgstr "Interesser" #, fuzzy #~ msgid "User Picture" #~ msgstr "Kig igennem filer" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Rens afsluttede" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Afslutter Nikotin+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Brug af Python %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Afslutter Nikotin+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Afslut Nikotin+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Bruger:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Alle %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s filer " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Använd regulære sætninger for filtrering" #, fuzzy #~ msgid "Quit…" #~ msgstr "Afslutte" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Vis forrige primære fane ved start" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Aktivere filtere som standard" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Luk Nikotin+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Har du virkelig lyst til at afslutte Nikotin +?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Kør i baggrunden" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online-notifiering" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Prioriter bruger" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Trusted" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Brugeri_nfo" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Anmod om IP-adresse" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Angiv navnet på den bruger, hvis IP-adresse du vil se:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Downloadet" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Overførslen %(filename)s kunne ikke føjes til delte filer: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Del automatisk overførsler" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Det svarer til at tilføje din downloadmappe som et offentligt share, men " #~ "filer, der er hentet til denne mappe, vil automatisk være tilgængelige " #~ "for andre (der kræves ingen genscanning)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Mappen kan ikke deles" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Det valgte virtuelle navn er tomt" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Det valgte virtuelle navn findes allerede" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Den valgte mappe er allerede delt" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Angiv virtuelt navn" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Angiv virtuelt navn til '%(dir)s':" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Det valgte virtuelle navn er enten tomt eller findes allerede" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Den valgte mappe er allerede delt." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s Egenskaber" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Indexering påbegyndt" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Plugin-liste" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Der opstod en fejl under scanningen %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Vis _Log rude" #, fuzzy #~ msgid "Addresses" #~ msgstr "Adresser" #~ msgid "Handler" #~ msgstr "Håndterere" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Kunne ikke aktiveres plugin." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Plugin kunne ikke deaktiveres." #~ msgid "Transfers" #~ msgstr "Overførsler" #, fuzzy #~ msgid "Ban List" #~ msgstr "Forbudsliste" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ignorer liste" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Censor &erstat" #, fuzzy #~ msgid "Completion" #~ msgstr "Færdiggørelse" #~ msgid "Categories" #~ msgstr "Kategorier" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Overfør mappe til…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Overfør mappe rekursiv til…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Hent _rekursivt" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Hent _rekursivt" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Hent fi_l(er)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Der opstod en fejl under forsøg på at få vist mappen '%(folder)s', " #~ "rapporteret fejl: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "Vælg destination for download af mappe med undermapper fra bruger" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Vælg destination for download af en mappe fra bruger" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Vælg destination for download af fil(er) fra bruger" #, fuzzy #~ msgid "Wishes" #~ msgstr "Ønsker" #, fuzzy #~ msgid "privileged" #~ msgstr "(priveligieret)" #, fuzzy #~ msgid "prioritized" #~ msgstr "prioriteret" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Vis IP-a_dresse" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Komplet vennenavne" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Komplet brugernavne i chatrum" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Komplet værelsesnavne" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Rulleliste" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Kommandoen Filhåndtering ($ for filsti):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Kommandoen Media Player ($ for filsti):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Ignorerade brugere:" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Vis tidsstempletter" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Pop op-vindues til meddelelse" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Vis pop op til meddelelse, når en fil er færdig med at blive downloadet" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Vis pop op til meddelelse, når en mappe er færdig med at hente" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Vis pop op-meddelelse, når du modtager en privat meddelelse" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "Vis popup til meddelelse, når nogen sender en besked i et chatrum" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Vis popup til meddelelse, når du bliver nævnt i et chatrum" #, fuzzy #~ msgid "Tray" #~ msgstr "Bakke" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Forekomster af $ vil blive erstattet af linket. Systemets " #~ "standardwebbrowser bruges i de tilfælde, hvor en protokol ikke er " #~ "konfigureret." #~ msgid "Handler:" #~ msgstr "Håndterere:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Primære faner" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Aktivere værktøjstip til filsti i søge- og overførselsvisninger" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Viser den komplette filsti for et søgeresultat eller en filoverførsel, " #~ "når du holder markøren over en mappesti eller et filnavn med markøren." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "Vis privat delte filer i brugershares" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Andre klienter kan tilbyde en mulighed for at sende privat delte filer, " #~ "når du gennemser deres aktier. Mapper, der indeholder sådanne filer, er " #~ "præfikset med '[PRIVATE FOLDER]', og kan ikke downloades, medmindre " #~ "uploaderen giver udtrykkelig tilladelse." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censor &erstat" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Vis _Debug logkontrolelementer" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Logger" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtuelt navn" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Rediger virtuelt navn" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopier mappens URL" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Hent _til..." #, fuzzy #~ msgid "Download" #~ msgstr "Downloade" #, fuzzy #~ msgid "Upload" #~ msgstr "Uploade" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Overfør mappens indhold" #, fuzzy #~ msgid "Rename" #~ msgstr "Omdøb" #, fuzzy #~ msgid "File Lists" #~ msgstr "Filer" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopier filsti" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Fjern et alias" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "" #~ "Det ser ud til, at '%s' ikke er en mappe, der ikke indlæser plugins." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Indexering påbegyndt" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Indexering påbegyndt" #, fuzzy, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Din ven, %s, forsøger at overføre filer til dig." #, fuzzy, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s er ikke tilladt at sende dig filer (r), men forsøger at, alligevel. " #~ "Advarsel sendt." #, fuzzy #~ msgid "Client Version" #~ msgstr "Klientversion" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Hvor mange dage med privilegier skal brugeren %s være begavet?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Venner har højere prioritet i køen, det samme som globalt privilegerede " #~ "brugere." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegeret" #~ msgid "_Privileged" #~ msgstr "_Priveligiered" #~ msgid "Comments" #~ msgstr "Kommentarer" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Rediger _kommentarer" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Opretter undermapper baseret på den bruger, du henter fra, og gemmer den " #~ "hentede fil /mappe der." #, fuzzy #~ msgid "Login Details" #~ msgstr "Oplysninger om logon" #, fuzzy #~ msgid "Advanced" #~ msgstr "Avanceret" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Fornyelsesinterval for porttilknytning i timer:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Aktiver dele, der kun er for venner" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Filer overføres i den rækkefølge, de blev sat i kø." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Indexering påbegyndt" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Genscanningen af offentlige aktier er afsluttet" #, fuzzy #~ msgid "Scanning Buddy Shares" #~ msgstr "Scanning af Buddy-aktier" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "Omindexere delede filer" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Indexering påbegyndt" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Omindexere delede filer" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Indexering påbegyndt" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Aktiverer venneaktier, som kun brugere på din venneliste kan få adgang " #~ "til." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Markere hver delt mappe som kun venne" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Tilsidesætter indstillingen pr. aktie, som er nyttig, hvis du " #~ "midlertidigt har brug for at forhindre offentlig adgang til aktier." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Det er kun brugere, der er markeret som pålidelige på din venneliste, der " #~ "har adgang til dine venners aktier." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Filtreret ud ekskluderet søgeresultat " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtreret ud i et uudsnit eller forkert søgeresultat " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Den gemte indstilling '%(key)s' findes ikke længere i pluginet '%(name)s'" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "Plugin %(module)s returnerede noget underligt, '%(value)s', ignorerer" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Inkonsekvent cache for '%(vdir)s', genopbygning af '%(dir)s'" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Dropper manglende mappe %(dir)s" #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nikotin+ giver dig mulighed for at dele mapper direkte fra din computer. " #~ "Alt indholdet af disse mapper (med undtagelse af dotfiles) kan downloades " #~ "af andre brugere på Soulseek-netværket. Offentlige aktier er tilgængelige " #~ "for alle brugere, mens brugere på din venneliste kan få adgang til " #~ "aktier, der kun er for venner, ud over offentlige aktier." #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Vis brugerinfo" #~ msgid "Add user 'user' to your user list" #~ msgstr "Tilføj brugeren 'bruger' til din brugerliste" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Fjern brugeren 'bruger' fra din ban-liste" #~ msgid "Request user info for user 'user'" #~ msgstr "Hent brugerinfo fra brugeren 'bruger'" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Tilføj brugeren 'bruger' til din brugerliste" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Fjern brugeren 'bruger' fra din ban-liste" #, fuzzy #~ msgid "/ignore" #~ msgstr "Ignorer" #, fuzzy #~ msgid "/unignore" #~ msgstr "Ignorer" #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "Kunne ikke gemme konfigurationsfil: %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Kunne ikke gemme konfigurationsfil, I/O-fel: %s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Forbindelsen lukket af anden bruger: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Serveren rapporterede port 0 for bruger %(user)s for tiende gang, gir' op" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Serveren rapporterede ikke-nul-port for bruger %(user)s efter %(tries)i " #~ "forsøg" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "Serveren rapporterede port 0 for bruger %(user)s, forsøger igen" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Kan ikke logge ind, årsag: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Nogen anden logger in med samme brugernavn, Serveren lukker din " #~ "forbindelse" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Ukendt besked: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Databasen for delede filer virker beskadiget, omindexer dine delede filer" #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Skabte et tomt besked, class %s" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Kunne ikke tolke indkommande besked, class %s" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Kunne ikke håndtere tilslutningstypen %s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Kunne ikke sende besked over lukket forbindels: %(type)s %(msg_obj)s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Filtrere: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "Pröver mislykked download igen: bruger %(user)s, fil %(file)s" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "Overførsels begæring modtaget %s, men kunne ikke bestemme modpart" #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Modtog okendt overførselssvar: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Download færdig: fil %(file)s" #~ msgid "(friend)" #~ msgstr "(ven)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Mislykked download: bruger %(user)s, fil %(file)s" #~ msgid "Get user i_nfo" #~ msgstr "Vis brugeri_nfo" #~ msgid "_Add user to list" #~ msgstr "Tilføj brugeren til vennelisten" #~ msgid "_Ban this user" #~ msgstr "_Banne denne bruger" #~ msgid "_Ignore this user" #~ msgstr "_Ignorer denne bruger" #~ msgid "Clear aborted" #~ msgstr "Rens afbrudne" #~ msgid "Clear queued" #~ msgstr "Rens køede" #~ msgid "Abor_t" #~ msgstr "Afbryd" #~ msgid "Directory" #~ msgstr "Mappe" #~ msgid "User info" #~ msgstr "Brugerinfo" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Indexering færdig" #~ msgid "Rescanning finished" #~ msgstr "Indexering færdig" #~ msgid "I like" #~ msgstr "Jeg kan li'" #~ msgid "I _don't like this" #~ msgstr "Jeg kan ikke li' _dette" #~ msgid "Ban this user" #~ msgstr "Banne denne bruger" #~ msgid "Ignore this user" #~ msgstr "Ignorer denne bruger" #~ msgid "In queue" #~ msgstr "Køplads" #~ msgid "Ignore user..." #~ msgstr "Ignorerade brugere:" #~ msgid "Ban user..." #~ msgstr "Banne denne bruger" #~ msgid "Server" #~ msgstr "Server" #~ msgid "Geo Block" #~ msgstr "Geo-blok" #~ msgid "URL Catching" #~ msgstr "URL-fangst" #~ msgid "Initializing transfer" #~ msgstr "Initialiserer overforsel" #~ msgid "Waiting for peer to connect" #~ msgstr "Venter på forbindelse fra anden bruger" #~ msgid "Getting address" #~ msgstr "Henter adresse" #~ msgid "Directories" #~ msgstr "Mappe" #~ msgid "Download r_ecursive to..." #~ msgstr "Hent r_ekursivt til..." #~ msgid "Upload Directory to..." #~ msgstr "Hent Mappe _til..." #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Totalt antal tilladte uploads: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Uploadforspørgsel: %s" #~ msgid "Log" #~ msgstr "Logfil" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Total antal tilladte uploads: ukendt" #~ msgid "Slots free: unknown" #~ msgstr "Pladser frie: ukendt" #~ msgid "Queue size: unknown" #~ msgstr "Længde på kø: ukendt" #~ msgid "Files: unknown" #~ msgstr "Filer: ukendt" #~ msgid "Directories: unknown" #~ msgstr "Mappe: ukendt" #~ msgid "Add..." #~ msgstr "Tilføj..." #~ msgid "About search filters" #~ msgstr "Om søgefilter" #~ msgid "_Private Chat" #~ msgstr "_Privat chat" #~ msgid "_Interests" #~ msgstr "_Interesser" #~ msgid "About _chat room commands" #~ msgstr "Om kommandon for _chattrum" #~ msgid "About _private chat commands" #~ msgstr "Om kommandon for _private chattrum" #~ msgid "About _search filters" #~ msgstr "Om _søgefilter" #~ msgid "Toggle away after " #~ msgstr "Skift till away efter " #~ msgid "Decimal separator:" #~ msgstr "Separere decimaler med:" #~ msgid "Enable geographical blocker" #~ msgstr "Aktivera geografisk blokerere" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "Geografisk paranoia (blokera ikke-identificerede IP-nummer)" #~ msgid "Send out a max of" #~ msgstr "Returnere max." #~ msgid "Filter out:" #~ msgstr "Filtrere ud:" #~ msgid "Filter in:" #~ msgstr "Filtrere ind:" #~ msgid "KBytes/sec" #~ msgstr "KB/s" #~ msgid "Megabytes" #~ msgstr "MB" #~ msgid "Enable URL catching" #~ msgstr "Aktiver URL-fangst" #~ msgid "Humanize slsk:// urls" #~ msgstr "Humanisere 'slsk://'-URL:er" nicotine-plus-3.3.4/po/de.po000066400000000000000000007410451461625273200157030ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:11+0000\n" "Last-Translator: Mat \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek-Client" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafischer Client für das Soulseek Peer-to-Peer-Netzwerk" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;Austausch;Musik;P2P;Peer-to-Peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Durchsuche das Soulseek-Netzwerk" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "" "Nicotine+ ist ein grafischer Client für das Soulseek Peer-to-Peer-Netzwerk." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ zielt darauf ab, eine leichte, angenehme, freie und eine open " "source (FOSS) Alternative zum offiziellen Soulseek-Client zu sein und auch " "eine umfassende Reihe von Funktionen zu bieten." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Dateien suchen" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Downloads" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Freigaben durchsuchen" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Privater Chat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ Team" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Webseite: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "zeige diese Hilfenachricht an und beende" #: pynicotine/__init__.py:59 msgid "file" msgstr "Datei" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "verwende eine nicht standardmäßige Konfigurationsdatei" #: pynicotine/__init__.py:63 msgid "dir" msgstr "Verzeichnis" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "alternatives Verzeichnis für Benutzerdaten und Plugins" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "Starte das Programm, ohne das Fenster anzuzeigen" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "Sockets an die gegebene IP binden (nützlich für VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "Port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "Hör auf den gegebenen Port" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "erneut freigegebene Dateien scannen" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "" "Starte das Programm im Headless-Modus (keine grafische Benutzeroberfläche)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "Version anzeigen und beenden" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Du verwendest eine nicht unterstützte Version von Python (%(old_version)s).\n" "Du solltest Python %(min_version)s oder neuer installieren." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Fehler beim Scannen der Freigaben. Bitte schließe andere Nicotine+-Instanzen " "und versuche es erneut." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s ist abwesend" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s ist online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s ist offline" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Freund Status" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Du wurdest einem privaten Raum hinzugefügt: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Chat-Nachricht von Benutzer '%(user)s' im Raum '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" "Kann Verzeichnis '%(path)s' nicht erstellen, gemeldeter Fehler: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Fehler beim Sichern der Konfiguration: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Konfiguration gesichert in: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Laden von %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Aufhören mit %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "beendend" #: pynicotine/core.py:237 msgid "application closing" msgstr "Schließen der Anwendung" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Beenden von %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Du musst einen Benutzernamen und ein Passwort angeben, bevor du dich " "verbindest…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Fehler: Download-Filter fehlgeschlagen! Überprüfe deine Filter. Grund: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Fehler: %(num)d Download der Filter fehlgeschlagen! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s heruntergeladen von %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Datei heruntergeladen" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Ausgeführt: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Die Ausführung von '%(command)s' ist fehlgeschlagen: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s heruntergeladen von %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Ordner heruntergeladen" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Ausgeführt im Ordner: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Konnte '%(tempfile)s' nicht nach '%(file)s' verschieben: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Fehler beim Herunterladen des Ordners" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Herunterladen abgeschlossen: Benutzer %(user)s, Datei %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Herunterladen abgebrochen, Benutzer %(user)s Datei %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Download I/O-Fehler: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Kann keine exklusive Sperre für Datei erhalten - I/O-Fehler: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Datei kann nicht in %(folder_path)s gespeichert werden: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Download gestartet: Benutzer %(user)s, Datei %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "%s kann nicht gefunden werden, bitte installiere es." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Keine grafische Umgebung verfügbar, verwende den Headless-Modus (keine GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "Verbindung herstellen" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Verbindung trennen" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _Privilegien" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Einstellungen" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Beenden" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "_Öffentliche Freigaben durchsuchen" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Freundenfreigaben durchsuchen" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Durchstöbere _Vertrauenswürdige Freigaben" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Freigaben aktualisieren" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Freigaben konfigurieren" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Tastaturkürzel" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Einrichtungsassistent" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Übertragungsstatistiken" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Einen _Bug melden" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Übersetzung _verbessern" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "Über _Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "Datei" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Freigaben" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Hilfe" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Freigaben durchsuchen" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Benachrichtigung kann nicht angezeigt werden: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Du lädst immer noch Dateien hoch. Willst du wirklich beenden?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Warte, bis die Uploads fertig sind" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Willst du wirklich beenden?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Nein" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Im Hintergrund ausführen" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Nicotine+ beenden" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Freigaben nicht verfügbar" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Überprüfe, ob externe Festplatten eingebunden sind und die " "Ordnerberechtigungen korrekt sind." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Abbrechen" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "Wiederholen" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Neues Scannen erzwingen" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Ungültiges Passwort" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Benutzer %s existiert bereits und das eingegebene Passwort ist ungültig. " "Bitte wähle einen anderen Benutzernamen, wenn du dich zum ersten Mal " "anmeldest." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "_Anmeldedaten ändern" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Herunterlader Nachricht senden" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Sende eine private Nachricht an alle Nutzer, die von dir herunterladen:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Nachricht senden" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Freunde Nachricht senden" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Sende eine private Nachricht an alle online Freunde:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Wähle eine gespeicherte Freigabeliste-Datei aus" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kritischer Fehler" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ ist auf einen kritischen Fehler gestoßen und muss beendet werden. " "Bitte kopiere die folgende Nachricht und füge sie in einen Fehlerbericht ein:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Nicotine+ beenden" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Kopieren & Fehler melden" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Land" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Benutzer" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Geschwindigkeit" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Dateien" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Vertrauenswürdig" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Benachrichtigung" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Priorisiert" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Zuletzt gesehen" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Notiz" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Benutzer_notiz hinzufügen …" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Entfernen" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Noch nie gesehen" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Benutzernotiz hinzufügen" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Füge eine Notiz über den Benutzer %s hinzu:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Hinzufügen" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Neuen Raum erstellen?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Willst du wirklich einen neuen Raum \"%s\" erstellen?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Mach den Raum privat" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Benutzerdateien durchsuchen" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Finden …" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopieren" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Alles kopieren" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Aktivitätsansicht löschen" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Raum verlassen" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "URL kopieren" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Raumprotokoll anzeigen" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Raumprotokoll löschen …" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Nachrichtenansicht löschen" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s ist dem Raum beigetreten" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s hat dich im Raum %(room)s erwähnt" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Erwähnt von %(user)s im Raum %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Nachricht von %(user)s im Raum %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s hat den Raum verlassen" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s ist weggegangen" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s ist zurück" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Protokollierte Nachrichten löschen?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Möchtest du wirklich alle protokollierten Nachrichten für diesen Raum " "dauerhaft löschen?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Über" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Webseite" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Fehler beim Überprüfen der neuesten Version: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Neue Version verfügbar: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Aktuäl" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Neueste Version überprüfen …" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Einrichtungsassistent" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Virtueller Ordner" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Ordner" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Beenden" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Nächste" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Einen freigegebenen Ordner hinzufügen" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Freigabe bearbeiten" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Gib einen neuen virtuellen Namen für \"%(dir)s\" ein:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Bearbeiten" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Datei-Eigenschaften" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Dateieigenschaften (%(num)i von %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Dateieigenschaften (%(num)i von %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Anwenden" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Hinzufügen …" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Bearbeiten …" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Einstellungen" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Artikel hinzufügen" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Artikel bearbeiten" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "unbekannt" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Portstatus überprüfen" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, Anschluss %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Passwortänderung abgelehnt" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Gib ein neues Passwort für dein Soulseek-Konto ein:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Du bist derzeit vom Soulseek-Netzwerk abgemeldet. Wenn du das Passwort eines " "bestehenden Soulseek-Kontos ändern möchtest, musst du bei diesem Konto " "angemeldet sein." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Gib das Passwort ein, das beim Anmelden verwendet werden soll:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Passwort ändern" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Ändern" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Niemand" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Jeder" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Freunde" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Vertrauenswürdige Freunde" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nichts" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Datei öffnen" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Im Dateimanager öffnen" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Suchen" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Anhalten" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Fortsetzen" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Ordner durchsuchen" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntax: Groß- und Kleinschreibung wird nicht beachtet. Wenn " "aktiviert, können Python-Reguläre Ausdrücke verwendet werden, ansonsten " "werden nur Platzhalter * unterstützt." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filters" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Download-Filter hinzufügen" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Gib einen neuen Download-Filter ein:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Reguläre Ausdrücke aktivieren" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Download-Filter bearbeiten" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Ändere den folgenden Download-Filter:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Fehlgeschlagen! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filter Erfolgreich" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Öffentlich" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Erreichbar für" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Abbrechen" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Wiederholen" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Rundlauf-Verfahren (Round Robin)" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Zuerst rein, zuerst raus" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Benutzername" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP-Adresse" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Benutzer ignorieren" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Gib den Namen des Benutzers ein, den du ignorieren möchtest:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "IP-Adresse ignorieren" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Gib eine IP-Adresse ein, die du ignorieren möchtest:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* ist ein Platzhalter" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Benutzer blocken" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Gib den Namen des Benutzers ein, den du bannen möchtest:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "IP-Adresse sperren" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Gib eine IP-Adresse ein, die du sperren möchtest:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Formatkodes" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Muster" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Ersatz" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Zensurmuster" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Gib ein Muster ein, das du zensieren möchtest. Füge Leerzeichen um das " "Muster ein, wenn du nicht möchtest, dass Zeichenketten innerhalb von Wörtern " "übereinstimmen (kann am Anfang und Ende von Zeilen fehlschlagen)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Zensiertes Muster bearbeiten" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Ersatz hinzufügen" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Gib ein Textmuster und das Ersetzungsmuster ein:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Ersatz bearbeiten" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Systemvoreinstellung" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Bestätigungsdialog anzeigen" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Im Hintergrund laufen" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "fett" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "kursiv" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "unterstreichen" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Getrennter Freunden Tab" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Seitenleiste im Chaträume-Tab" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Immer sichtbare Seitenleiste" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Oben" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Unten" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Links" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Rechts" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Abwesend" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Tab geändert" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Tab-Hervorhebung" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Fenster" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Online (Fach)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Abwesend (Fach)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Offline (Fach)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Nachricht (Fach)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokoll" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Befehl" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "URL-Handler hinzufügen" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Gib das Protokoll und den Befehl für den URL-Händler ein:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Befehl bearbeiten" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Gib einen neuen Befehl für das Protokoll %s ein:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Benutzername;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Musikspieler (z.B. Amarok, Audacious, Exaile); leer lassen, um automatisch " "zu erkennen:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Benutzername: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Befehl:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Titel" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Gerade läuft (typischerweise \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Künstler" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Dauer" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Kommentar" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Track" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Jahr" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Dateiname (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programm" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Aktiviert" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Kein Plugin ausgewählt" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Netzwerk" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Oberfläche" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Freigaben" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Uploads" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Suche" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Benutzerprofil" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Chats" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Jetzt spielt" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Aufzeichnung" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Verbannte Benutzer" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Ignorierte Benutzer" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Plugins" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL-Handler" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Präferenzen" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Wähle einen Dateinamen für das Konfigurations-Backup" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Transferstatistik" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Gesamt seit %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Übertragungsstatistik zurücksetzen?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Willst du wirklich die Übertragungsstatistiken zurücksetzen?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Wunschliste" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Wunsch" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Suche nach Artikel" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Wunsch bearbeiten" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Neuen Wert für den Wunsch '%s' eingeben:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Wunschliste löschen?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Möchtest du wirklich deine Wunschliste löschen?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Pfad" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Fortsetzen" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_ause" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Fertig / Gefiltert" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Abgeschlossen" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pausiert" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Gefiltert" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Gelöscht" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "In der Warteschlange …" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Alles …" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Lösche wartende Downloads" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Willst du wirklich alle Downloads in der Warteschlange löschen?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Alle Downloads löschen" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Willst du wirklich alle Downloads löschen?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "%(num)i-Dateien herunterladen?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Willst du wirklich %(num)i Dateien aus %(user)s Ordner %(folder)s " "herunterladen?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Ordner herunterladen" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Mag" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Gefällt nicht" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Bewertung" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Artikel" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Empfehlungen für Artikel" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Mir gefällt das" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Ich mag das nicht" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Empfehlungen" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Ähnliche Benutzer" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Empfehlungen (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Ähnliche Benutzer (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Private Nachricht von %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Wunschzettel-Ergebnisse gefunden" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Benutzerprofile" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Chaträume" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interessen" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Verbindungen" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Meldungen" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Übertragungen" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Sonstiges" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Finden …" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopieren" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "_Alles kopieren" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Debug-Protokolle anzeigen" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Übertragungsprotokoll anzeigen" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Protokolkategorien" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Protokollansicht löschen" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Herunterladen: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Uploads: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Freigaben vorbereiten" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Aktualisierung der Freigaben" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Beenden …" #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Neueste Nachricht" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Raum" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Benutzer" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Raum beitreten" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "_Raum verlassen" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Privaten Raum aufgeben" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Raummitgliedschaft kündigen" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Alle Tabs schließen …" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "Tab schließen" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Chat-Protokoll anzeigen" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Chatprotokoll löschen …" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Benutzeraktionen" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Möchtest du wirklich alle protokollierten Nachrichten für diesen Benutzer " "dauerhaft löschen?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Nachrichten, die gesendet wurden, während du offline warst" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Freunde" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Räume" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Benutzer" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "In der Warteschlange" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Dateityp" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Dateiname" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Größe" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Qualität" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "_Dateipfad Kopieren" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "URL kopieren" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Ordner U_RL kopieren" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "Datei(en) herunterladen" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Datei(en) herunterladen _zu …" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "_Ordner herunterladen" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Datei(en) herunterladen zu …" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Benutzer _Profil anzeigen" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Ordner durchsuchen" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "_Dateieigenschaften" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Suchbegriff kopieren" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Alle Ergebnisse löschen" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Filter löschen" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Filter wiederherstellen" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVAT] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Ergebnisfilter [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Ergebnisfilter" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d aktive Filter" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "_Wunsch hinzufügen" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "_Wunsch entfernen" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Treffer dieses Benutzers markieren" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Insgesamt %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Ergebnisse" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Wähle Zielordner für Datei(en) aus" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Zielordner auswählen" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "In Warteschlange" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "In Warteschlange (priorisiert)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "In Warteschlange (privilegiert)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Ermittle Status" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Übertragen" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Verbindung getrennt" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Verbindungszeitüberschreitung" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Benutzer abgemeldet" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Abgebrochen" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Fehler beim Herunterladen des Ordners" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Lokaler Dateifehler" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Gesperrt" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Datei nicht freigegeben" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Ausstehendes beenden" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Fehler beim Lesen der Datei" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Warteschlange" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Prozent" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Zeit vergangen" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Zeit verbleibend" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "Datei _öffnen" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Im Datei-Manager öffnen" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "Suchen" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Alles löschen" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Wähle Benutzerübertragungen aus" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Abbrechen" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Fertig / Abgebrochen / Fehlgeschlagen" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Fertig / Abgebrochen" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Gescheitert" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Benutzer abgemeldet" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Warteschlange für Uploads löschen" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Willst du wirklich alle wartenden Uploads löschen?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Alle Uploads löschen" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Willst du wirklich alle Uploads löschen?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Speicher Freigabeliste auf Festplatte" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Ordner & Unterordner hochladen…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "_Ordnerpfad kopieren" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Download-Ordner & Unterordner" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Ordner & Unterordner herunterladen _nach …" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Dateiname" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Datei(en) hochladen …" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Ordner hochladen …" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Ordner herunterladen _zu …" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Die Liste der freigegebenen Dateien des Benutzers ist leer. Entweder teilt " "der Benutzer nichts, oder er teilt Dateien privat." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Die angeforderten Freigabedateien können nicht vom Benutzer empfangen " "werden. Entweder ist der Benutzer offline, die Lauschports sind auf beiden " "Seiten geschlossen, oder es gibt ein vorübergehendes Verbindungsproblem." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Wähle Zielort für das Herunterladen mehrerer Ordner" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Ordner (mit Unterordnern) zum Benutzer hochladen" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Ordner zum Benutzer hochladen" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Gib den Namen des Benutzers ein, zu dem du hochladen möchtest:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Hochladen" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Wähle Zielordner für Dateien aus" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Datei(en) an Benutzer hochladen" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Bild kopieren" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Bild speichern" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Fehler beim Laden des Bildes für Benutzer %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Es können keine Informationen vom Benutzer angefordert werden. Entweder habt " "euch beide einen geschlossenen Empfangsport, der Benutzer ist offline oder " "es gibt ein vorübergehendes Verbindungsproblem." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "_Freund entfernen" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "_Freund hinzufügen" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Benutzer entsperren" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Benutzer nicht ignorieren" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Ja" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nein" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Bitte gib die Anzahl der Tage ein." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Verschenke Tage deiner Soulseek-Privilegien an den Benutzer %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s Tage übrig" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Privilegien geben" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "Privilegien _geben" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Schließen" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Ja" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Wähle eine Datei" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Wähle einen Ordner" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Auswählen" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Ein Bild auswählen" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Alle Bilder" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Speichern unter …" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Keine)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Tab schließen" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Alle Tabs schließen?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Willst du wirklich alle Tabs schließen?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Ungelesene Tab(s)" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Alle Tabs" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Wieder öffnen Geschlossenes Tab" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Ausgewählte Datei(en)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "Dateien durchsehen" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "Freund _hinzufügen" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "IP-_Adresse anzeigen" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Private Räume" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Aus dem privaten Raum entfernen %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Zum privaten Raum hinzufügen %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Als Operator von %s entfernen" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Als Operator von %s hinzufügen" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- alte Nachrichten oben ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Ausführbare Datei" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Bild" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Sonstiges" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Dokument" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Text" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Fehler beim Laden des benutzerdefinierten Symbols %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Nicotine+ ausblenden" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Nicotine+ anzeigen" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Spalte #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Nicht gruppiert" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Nach Ordner gruppieren" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Nach Benutzer gruppieren" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Willst du wirklich beenden? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Benutzer %s existiert bereits, und das eingegebene Passwort ist ungültig." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" "Gib %s ein, um dich mit einem anderen Benutzernamen oder Passwort anzumelden." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Passwort: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Um ein neues Soulseek-Konto zu erstellen, geben deine gewünschten " "Benutzernamen und Passwort ein. Wenn du bereits ein Konto hast, gebe die " "bestehenden Anmeldedaten ein." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Die folgenden Freigaben sind nicht verfügbar:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Scannen erneut versuchen? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" "Konnte nicht in die Protokolldatei \"%(filename)s\" schreiben: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Kann auf Logdatei %(path)s nicht zugreifen: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Vereinigte Arabische Emirate" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua und Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albanien" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenien" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktis" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentinien" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Amerikanisch-Samoa" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Österreich" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australien" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Åland-Inseln" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Aserbaidschan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnien und Herzegowina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesch" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgien" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgarien" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "St. Barthelemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivien" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius und Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasilien" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Bouvetinsel" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Weißrussland" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Kokos-(Keeling-)Inseln" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Demokratische Republik Kongo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Zentralafrikanische Republik" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Schweiz" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Elfenbeinküste" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Cookinseln" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolumbien" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Weihnachtsinsel" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Zypern" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Tschechien" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Deutschland" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Dschibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dänemark" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominikanische Republik" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algerien" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estland" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Ägypten" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Westsahara" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spanien" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Äthiopien" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finnland" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fidschi" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Falklandinseln (Malwinen)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikronesien" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Färöer Inseln" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Frankreich" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabun" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Großbritannien" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Georgien" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Französisch-Guayana" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Grönland" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Äquatorialguinea" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Griechenland" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Südgeorgien und die Südlichen Sandwichinseln" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Heard- und McDonaldinseln" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Kroatien" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Ungarn" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonesien" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irland" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Isle of Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Indien" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Britisches Territorium im Indischen Ozean" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italien" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordanien" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japan" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirgisistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kambodscha" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Komoren" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "St. Kitts und Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Nordkorea" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Südkorea" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Kaimaninseln" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kasachstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "St. Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Litauen" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Lettland" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libyen" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marokko" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldawien" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Sankt Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Marshallinseln" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Nordmazedonien" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolei" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macau" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Nördliche Marianen" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauretanien" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Malediven" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Mexiko" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malaysia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mosambik" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Neukaledonien" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Norfolkinsel" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Niederlande" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norwegen" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Neuseeland" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Französisch-Polynesien" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua-Neuguinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Phillippinen" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polen" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint-Pierre und Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palästina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumänien" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbien" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Russland" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Saudi-Arabien" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Salomoninseln" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychellen" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Schweden" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Sankt Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slowenien" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Spitzbergen & Jan Mayen Inseln" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Slowakische Republik" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Südsudan" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "São Tomé und Príncipe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Syrien" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Turks- und Caicosinseln" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Tschad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Südfranzösische Territorien" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Thailand" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadschikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor-Leste" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunesien" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Türkei" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad und Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tansania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukraine" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "US-amerikanische kleinere abgelegene Inseln" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Vereinigte Staaten" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Usbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Heiliger Stuhl (Vatikanstadt)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "St. Vincent und die Grenadinen" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Britische Jungferninseln" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "U.S. Jungferninseln" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis und Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Südafrika" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Sambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Simbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "" "Die Text-zu-Sprache-Umwandlung für die Nachricht ist fehlgeschlagen: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Bitte gib sowohl deinen Last.fm-Benutzernamen als auch deinen API-" "Schlüssel an" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Jetzt spielendes Fehler" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "" "Last.fm: Konnte keine Verbindung zu Audioscrobbler herstellen: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Konnte den letzten Track von Audioscrobbler nicht abrufen: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Konnte keinen passenden MPRIS-Mediaspieler finden" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Mehrere MPRIS-Spieler gefunden: %(players)s. Verwendet wird: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatisch erkannter MPRIS-Mediaplayer: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" "MPRIS: Beim Abfragen von %(player)s ist ein Fehler aufgetreten: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "Bitte gib deinen ListenBrainz-Benutzernamen an" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Konnte keine Verbindung zu ListenBrainz herstellen: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Es scheint, als würdest du gerade nichts hören" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Konnte den aktuellen Track von ListenBrainz nicht abrufen: " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Netzwerkschnittstelle" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Verfügbare Befehle auflisten" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Verbinde mit dem Server" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Vom Server trennen" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Abwesenheitsstatus umschalten" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Plugins verwalten" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Chat-Fenster leeren" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Sage etwas in der dritten Person" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Gib den aktuell spielenden Song bekannt" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Chatroom beitreten" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Aktuellen Raum verlassen" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Sag Nachricht im angegebenen Chatraum" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Privatchat öffnen" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Privaten Chat schließen" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Clientversion des Benutzers anfordern" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Sende private Nachricht an Benutzer" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Benutzer zur Freundesliste hinzufügen" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Entferne Kumpel aus der Kumpelliste" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Dateien des Benutzers durchsuchen" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Zeige Benutzerprofilinformationen" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "IP-Adresse oder Benutzername anzeigen" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Blockiere Verbindungen von Benutzer oder IP-Adresse" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Benutzer oder IP-Adresse aus der Sperrliste entfernen" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Nachrichten von Benutzer oder IP-Adresse stummschalten" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Benutzer oder IP-Adresse von Ignorierlisten entfernen" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Freigabe hinzufügen" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Freigabe entfernen" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Freigaben auflisten" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Freigaben aktualisieren" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Starte globale Dateisuche" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Suche Dateien in beigetretenen Räumen" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Suche Dateien von allen Kumpel" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Suche in den freigegebenen Dateien eines Benutzers" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Auflistung %(num)i verfügbarer Befehle:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Auflistung %(num)i verfügbarer Befehle, die mit \"%(query)s\" übereinstimmen:" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Gib %(command)s ein, um ähnliche Befehle aufzulisten" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Gib %(command)s ein, um verfügbare Befehle anzuzeigen" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Nicht in Raum %s beigetreten" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Nicht mit dem Benutzer %s chatten" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Geschlossener privater Chat von Benutzer %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Gesperrt (%s)" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Entsperrt %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Ignoriert %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s nicht mehr ignoriert" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s Freigaben aufgelistet (%(num_total)s konfiguriert)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Kann nicht auf den unzugänglichen Ordner \"%s\" freigeben" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "%(group_name)s-Freigabe \"%(virtual_name)s\" hinzugefügt (Neuscan " "erforderlich)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Keine Freigabe mit dem Namen \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Freigabe \"%s\" entfernt (neuer Scan erforderlich)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Plugin-System laden" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Plugin %(name)s konnte nicht geladen werden. Der Ordnername des Plugins " "enthält ungültige Zeichen: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konfliktbefehl %(interface)s im Plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Geladenes Plugin %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Plugin %(module)s konnte nicht geladen werden\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Ungeladenes Plugin %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Plugin %(module)s konnte nicht entladen werden\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s ist mit dem Fehler %(errortype)s fehlgeschlagen: " "%(error)s.\n" "Trace: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Keine Beschreibung vorhanden" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Fehlendes %s-Argument" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Ungültiges Argument, mögliche Optionen: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Verwendung: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Unbekannter Befehl: %(command)s. Gib %(help_command)s ein, um verfügbare " "Befehle anzuzeigen." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Keine UPnP-Geräte gefunden" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Weiterleitung des externen Ports fehlgeschlagen " "%(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Externer Port %(external_port)s erfolgreich an lokale IP-" "Adresse %(ip_address)s Port %(local_port)s weitergeleitet" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Private Nachricht von Benutzer '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Suche nach Wunschlistenartikel \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Wunschlisten-Wartezeit auf %s Sekunden eingestellt" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Benutzer %(user)s sucht nach \"%(query)s\", %(num)i Ergebnisse gefunden" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Freigaben aktualisieren …" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Freigaben aktualisieren …" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Neuscan abgeschlossen: %(num)s Ordner gefunden" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Ein schwerwiegender Fehler ist beim erneuten Scannen der Freigaben " "aufgetreten. Wenn das Problem weiterhin besteht, lösche %(dir)s/*.dbn und " "versuche es erneut. Wenn das nicht hilft, bitte einen Fehlerbericht mit " "diesem Stack-Trace einreichen: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Fehler beim Scannen der Datei %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Fehler beim Scannen des Ordners %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Fehler beim Scannen der Metadaten für die Datei %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "" "Das erneute Scannen wurde abgebrochen, weil Freigaben nicht verfügbar sind: " "%s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Benutzer %(user)s durchstöbert deine Liste freigegebener Dateien" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Fehler beim Abrufen des freigegebenen Ordners %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Die Freigabedatenbank kann nicht gelesen werden. Bitte scanne deine " "Freigaben erneut. Fehler: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Das angegebene Netzwerkinterface '%s' ist nicht verfügbar" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Kann nicht auf Port %(port)s lauschen. Stelle sicher, dass keine andere " "Anwendung ihn verwendet, oder wähle einen anderen Port. Fehler: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Lauschen auf Port: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "" "Kann keine Verbindung zum Server %(host)s:%(port)s: %(error)s herstellen" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Wiederverbindung zum Server in %i Sekunden" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Verbindung zu %(host)s:%(port)s herstellen" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Verbunden mit Server %(host)s:%(port)s, Anmeldung läuft…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Vom Server getrennt %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Jemand hat sich anderswo in deinem Soulseek-Konto eingeloggt" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Upload abgeschlossen: Benutzer %(user)s, IP-Adresse %(ip)s, Datei %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Upload abgebrochen, Benutzer %(user)s Datei %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Upload I/O-Fehler: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Upload gestartet: Benutzer %(user)s, IP-Adresse %(ip)s, Datei %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" "Kann Verzeichnis '%(folder)s' nicht erstellen, gemeldeter Fehler: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "" "Das Laden von Freigaben von der Festplatte ist fehlgeschlagen: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Gespeicherte Liste der freigegebenen Dateien für den Benutzer '%(user)s' auf " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "Kann Freigaben nicht speichern, '%(user)s', gemeldeter Fehler: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Bild gespeichert in %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Kann Bild nicht auf %(filename)s speichern: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Benutzer %(user)s sieht dein Profil an" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Verbindung zum Server nicht möglich. Grund: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Verbinden nicht möglich" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Kann die IP des Benutzers %s nicht abrufen, da dieser Benutzer offline ist" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP-Adresse des Benutzers %(user)s: %(ip)s, Port %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseek-Ankündigung" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i privilegierte Benutzer" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Du hast keine Soulseek Privilegien. Solange Privilegien aktiv sind, werden " "deine Downloads vor denen von nicht-privilegierten Nutzern in die " "Warteschlange eingereiht." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i Tage, %(hours)i Stunden, %(minutes)i Minuten, %(seconds)i Sekunden " "Soulseek-Privilegien verbleibend" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Dein Passwort wurde geändert" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Passwort geändert" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Kann Dateipfad %(path)s nicht öffnen: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "URL %(url)s kann nicht geöffnet werden: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "" "Beim Lesen der Datei %(filename)s ist ein Fehler aufgetreten: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Versuch, das Backup der Datei %s zu laden" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Datei %(path)s konnte nicht gesichert werden: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Datei %(path)s konnte nicht gespeichert werden: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "" "Vorherige Datei %(path)s konnte nicht wiederhergestellt werden: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Freund hinzufügen …" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Aktivitätenprotokoll durchsuchen …" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Chatprotokoll durchsuchen …" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Nachricht senden …" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Text-Zu-Sprache umschalten" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Chatraum-Befehlshilfe" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Protokoll" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Raumwand" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "R_oom Wand" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Erstellt von" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Übersetzt von" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Lizenz" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Bisherige" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Willkommen bei Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Einrichten …" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Wenn dein gewünschter Benutzername bereits vergeben ist, wirst du " "aufgefordert, ihn zu ändern." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Um eine Verbindung mit anderen Soulseek-Verwender herzustellen, muss ein " "Zuhörport auf deinem Router zu deinem Computer weitergeleitet werden." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Wenn dein Empfangsport geschlossen ist, kannst du nur Verbindungen zu " "Nutzern herstellen, deren Empfangsport offen sind." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Wenn nötig, wähle unten einen anderen Hörport aus. Das kann auch später in " "den Einstellungen gemacht werden." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Dateien in Ordner herunterladen" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Gebe Ordner frei" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-Nutzer werden in der Lage sein, von deinen Freigaben " "herunterzuladen. Trage zum Soulseek-Netzwerk bei, indem du deine eigenen " "Dateien freigibst und das, was du von anderen Nutzern heruntergeladen hast, " "weitergibst." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Du bist bereit, Nicotine+ zu nutzen!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek ist ein unverschlüsseltes Protokoll, das nicht für sichere " "Kommunikation gedacht ist." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Wenn du an Soulseek spendest, erhaltest du Privilegien für einen bestimmten " "Zeitraum. Wenn du über Berechtigungen verfügst, werden deine Downloads vor " "nicht privilegierten Benutzern in die Warteschlange gestellt." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Vorherige Datei" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Nächste Datei" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Name" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Letzte Geschwindigkeit" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exportieren …" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Tastenkürzel" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Allgemein" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Verbindung herstellen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Verbindung trennen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Freigaben aktualisieren" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Protokollfenster anzeigen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Beenden bestätigen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Beenden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menüs" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Hauptmenü öffnen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Kontextmenü öffnen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Tabs" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Hauptregisterkarte ändern" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Wechsle zum vorherigen sekundären Tab" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Wechsle zum nächsten untergeordneten Tab" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Sekundäre geschlossene Tab wieder öffnen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Sekundäre Tab schließen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Ausgewählte Zelle kopieren" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Ausgewählte Zeile entfernen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Bearbeitung" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Ausschneiden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Einfügen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Emoji einfügen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Alle auswählen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Finden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Nächsten Treffer finden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Vorherige Treffer finden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Dateiübertragungen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Transfer fortsetzen / Erneut versuchen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Transfer pausieren / abbrechen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Download / Upload zu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Liste auf Festplatte speichern" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Auffrischen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Alle erweitern / Alle zusammenklappen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Zurück zum übergeordneten Ordner" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Dateisuche" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Ergebnisfilter" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Aktuelle Sitzung" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Abgeschlossene Downloads" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Heruntergeladene Größe" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Abgeschlossene Uploads" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Hochgeladene Größe" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Insgesamt" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Zurücksetzen …" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Wunschlisten-Artikel werden regelmäßig automatisch gesucht, um seltene " "Dateien zu entdecken." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Wunsch hinzufügen …" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Alles löschen …" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Alle abgeschlossenen/gefilterten Downloads löschen" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Entferne Abgeschlossene" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Bestimmte Downloads löschen" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "_Alles löschen …" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Persönliche Interessen" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Füge etwas hinzu, das dir gefällt…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Persönliche Abneigungen" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Füge etwas hinzu, das du nicht magst…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Empfehlungen aktualisieren" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Hauptmenü" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Raum …" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Benutzername …" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Suchbegriff …" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Suchmuster: mit einem Wort = Begriff, ohne ein Wort = -Begriff, Teilwort = " "*iff" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Suchbereich" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Wunschzettel" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Suchen konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Gib einen Suchbegriff ein, um nach Dateien zu suchen, die von anderen " "Nutzern im Soulseek-Netzwerk freigegeben wurden" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Dateigruppierungsmodus" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Downloads konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Dateien, die du von anderen Nutzern herunterlädst, werden hier in die " "Warteschlange gestellt und können nach Bedarf pausiert und fortgesetzt werden" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Uploads konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Die Downloadversuche deiner freigegebenen Dateien werden hier in die " "Warteschlange eingereiht und verwaltet" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "Liste öffnen" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Öffnet eine lokale Liste von freigegebenen Dateien, die zuvor auf der " "Festplatte gespeichert wurde" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Freigaben konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Gib den Namen eines Benutzers ein, dessen freigegebene Dateien du " "durchstöbern möchtest. Du kannst die Liste auch auf der Festplatte speichern " "und später ansehen." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Persönliches Profil" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Konto konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Gib den Namen eines Benutzers ein, um seine Benutzerbeschreibung, " "Informationen und persönliches Bild anzusehen" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "Chatverlauf" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Chats konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Gib den Namen eines Benutzers ein, um eine private Textunterhaltung mit ihm " "zu beginnen" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Nachricht an alle" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Ignorierte Benutzer konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Füge Nutzer als Freunde hinzu, um bestimmte Ordner mit ihnen zu teilen und " "Benachrichtigungen zu erhalten, wenn sie online sind" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Tritt einem Raum bei oder erstelle einen…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Tritt einem bestehenden Chatraum bei oder erstelle einen neuen Raum, um mit " "anderen Nutzern im Soulseek-Netzwerk zu chatten" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Benutzerprofil konfigurieren" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Suchprotokoll …" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Verbindungen" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Download (Geschwindigkeit / Aktive Nutzer)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Hochladen (Geschwindigkeit / Aktive Nutzer)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Durchsuche Chat-Geschichte …" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Download Geschwindigkeitsbegrenzungen" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Unbegrenzte Download-Geschwindigkeit" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Download-Geschwindigkeitslimit verwenden (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Verwende alternativen Downloadgeschwindigkeitslimit (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Zimmer suchen …" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Räume aktualisieren" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Zeige den Feed der Nachrichten aus öffentlichen Chaträumen" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Akzeptiere Einladungen zu privaten Räumen" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Schreibe eine einzelne Nachricht, die andere Raum-Nutzer später lesen " "können. Neueste Nachrichten werden oben angezeigt." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Wandnachricht einstellen …" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Suchergebnisfilter" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Suchergebnisfilter werden verwendet, um zu verfeinern, welche Suchergebnisse " "angezeigt werden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Jede Suchergebnisliste hat ihren eigenen Filter, der durch Umschalten des " "Buttons \"Ergebnisfilter\" angezeigt werden kann. Ein Filter besteht aus " "mehreren Feldern, die alle angewendet werden, wenn man in einem beliebigen " "Feld Enter drückt. Die Filterung wird sofort auf bereits erhaltene " "Ergebnisse angewendet und auch auf solche, die noch eintreffen werden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Wie der Name schon sagt, kann ein Suchergebnisfilter deine ursprüngliche " "Suche nicht erweitern, er kann sie nur einschränken. Um deine Suchbegriffe " "zu erweitern oder zu ändern, führe eine neue Suche durch." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Ergebnis Filterverwendung" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Text einschließen" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Dateien, Ordner und Benutzernamen, die diesen Text enthalten, werden " "angezeigt." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Groß- und Kleinschreibung ist unwichtig, aber die Wortreihenfolge ist " "wichtig: 'Instrumental Remix' wird keinen 'Remix Instrumental' anzeigen" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Verwende | (oder Pipes), um mehrere exakte Phrasen zu trennen. Beispiel:\n" " Remix|Dub-Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Text ausschließen" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Wie oben, aber Dateien, Ordner und Benutzernamen werden herausgefiltert, " "wenn der Text übereinstimmt." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtert Dateien auf der Grundlage ihrer Dateierweiterung." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Es können mehrere Dateierweiterungen angegeben werden, was wiederum mehr aus " "der Liste der Ergebnisse offenbart. Beispiel:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Es ist auch möglich, den Filter umzukehren, mittels eines Rufzeichens.\n" " Beispiel: !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Größe der Datei" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtert Dateien basierend auf ihrer Dateigröße." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Standardmäßig wird die Einheit Byte (B) verwendet und Dateien, die größer " "oder gleich (>=) dem Wert sind, werden gefunden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Hänge b, k, m oder g (alternativ kib, mib oder gib) an, um Byte, Kibibyte, " "Mebibyte oder Gibibyte anzugeben:\n" " 20m, um Dateien anzuzeigen, die größer als 20 MiB (Mebibyte) sind." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "=1024 vor einem Wert setzen, um eine exakte Übereinstimmung anzugeben:\n" " =1024 findet Dateien, die genau 1 KiB (Kibibyte) groß sind." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Füge ein ! vor einen Wert, um Dateien einer bestimmten Größe " "auszuschließen:\n" " !30.5m, um Dateien auszublenden, die 30,5 MiB (Mebibyte) groß sind." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Füge < oder > vor den Wert ein, um Dateien zu finden, die kleiner/größer als " "der angegebene Wert sind. Benutze ein Leerzeichen zwischen jeder Bedingung, " "um einen Bereich einzuschließen:\n" " >10.5m <1g um Dateien anzuzeigen, die größer als 10,5 MiB, aber kleiner " "als 1 GiB sind." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Die bekannteren Varianten kb, mb und gb können auch für Kilobyte, Megabyte " "und Gigabyte verwendet werden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtert Dateien basierend auf ihrer Bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Werte müssen ausschließlich als numerische Ziffern eingegeben werden. Die " "Einheit ist immer Kb/s (Kilobit pro Sekunde)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Wie bei der Dateigröße (oben) können die Operatoren =, !, <, >, <= oder >= " "verwendet werden, und es können mehrere Bedingungen angegeben werden, zum " "Beispiel um Dateien mit einer Bitrate von mindestens 256 Kb/s bis zu einer " "maximalen Bitrate von 1411 Kb/s anzuzeigen:\n" " 256 <= 1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtert Dateien basierend auf ihrer Dauer." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Standardmäßig werden Dateien, die länger oder gleich (>=) der eingegebenen " "Dauer sind, abgeglichen, es sei denn, ein Operator (=, !, <=, < oder >) wird " "verwendet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Gib einen Rohwert in Sekunden ein oder verwende die Zeitformate MM:SS und HH:" "MM:SS:\n" " =53 zeigt Dateien an, die ungefähr 53 Sekunden lang sind.\n" " >5:30, um Dateien anzuzeigen, die länger als 5 Minuten und 30 Sekunden " "sind.\n" " <5:30:00 zeigt Dateien an, die weniger als 5 Stunden und 30 Minuten lang " "sind." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Es können mehrere Bedingungen festgelegt werden:\n" " >6:00 <12:00, um Dateien anzuzeigen, die zwischen 6 und 12 Minuten lang " "sind.\n" " !9:54 !8:43 !7:32, um bestimmte Dateien aus den Ergebnissen " "auszublenden.\n" " =5:34 =4:23 =3:05, um Dateien mit spezifischen Laufzeiten einzuschließen." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtert Dateien basierend auf der geografischen Lage der Benutzer gemäß den " "Ländercodes, die durch ISO 3166-2 definiert sind:\n" " US zeigt nur Ergebnisse von Benutzern mit IP-Adressen in den Vereinigten " "Staaten an.\n" " !GB blendet Ergebnisse aus, die von Benutzern in Großbritannien kommen." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Mehrere Länder können mit Kommas oder Leerzeichen angegeben werden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Freier Slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Zeige nur Ergebnisse von Nutzern, die mindestens einen Upload-Slot frei " "haben, also Dateien, die sofort verfügbar sind." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Upload-Geschwindigkeitsbegrenzungen" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Unbegrenzte Upload-Geschwindigkeit" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Lade-Geschwindigkeitslimit verwenden (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Verwende alternativen Upload-Geschwindigkeitslimit (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Private Chat Befehlshilfe" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Text einschließen …" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtere Ergebnisse, deren Dateipfade den angegebenen Text enthalten. Mehrere " "Phrasen und Wörter können angegeben werden, z.B. genaue Phrase|Musik|Begriff|" "genaue Phrase zwei" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Text ausschließen …" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtere Ergebnisse heraus, deren Dateipfade den angegebenen Text enthalten. " "Mehrere Phrasen und Wörter können angegeben werden, z.B. genaue Phrase|Musik|" "Begriff|genaue Phrase zwei" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Dateityp …" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Dateityp, z.B. flac wav oder !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Dateigröße …" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Dateigröße, z. B. >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitrate …" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, z. B. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Dauer …" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Dauer, z. B. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Landesvorwahl …" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Ländercode, z.B. US ES oder !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Benutzer basierend auf Benutzername, IP-Adresse oder Land daran hindern, auf " "deine freigegebenen Dateien zuzugreifen." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Ländercodes zum Blockieren (kommagetrennt):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Die Codes müssen im ISO 3166-2-Format sein." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Verwende eine benutzerdefinierte Geo-Block-Nachricht:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Verwende eine benutzerdefinierte Sperrnachricht:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP-Adressen" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Rechtschreibprüfung aktivieren" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Stelle beim Start zuvor geöffnete private Chats wieder her" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Aktiviere CTCP-ähnliche private Nachrichtenantworten (Client-Version)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Anzahl der kürzlich angezeigten privaten Chat-Nachrichten:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Anzahl der anzuzeigenden neuesten Chatraumnachrichten:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Chat-Vervollständigung" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Aktiviere die Tab-Tasten-Vervollständigung" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Aktiviere die Vervollständigungs-Dropdown-Liste" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" "Mindestanzahl an Zeichen, die erforderlich ist, um das Dropdown-Menü " "anzuzeigen:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Erlaubte Chat-Vervollständigungen:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Freundennamen" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Benutzernamen in Chatrooms" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Raumnamen" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Befehle" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Zeitstempel" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Privates Chat-Format:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Standard" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Chatraumformat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Text-zu-Sprache" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Text-zu-Sprache aktivieren" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Befehl für Text-zu-Sprache:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Private Nachricht:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Nachricht im Chatraum:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Zensur" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Aktiviere die Zensur von Textmustern" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Automatisch ersetzen" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Aktiviere die automatische Wortersetzung" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Automatisches Löschen von abgeschlossenen/gefilterten Downloads aus der " "Transferliste" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Gespeicherte Downloads in Benutzerunterordnern ablegen" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Doppelklick-Aktion für Downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Erlaube Nutzern, dir beliebige Dateien zu senden:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Ordner" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Abgeschlossene Downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Unvollständige Downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Empfangene Dateien:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Ereignisse" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "Führe Befehl nach Abschluss des Datei-Downloads aus ($ für Dateipfad):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Führe Befehl aus, nachdem der Download des Ordners abgeschlossen ist ($ für " "den Ordnerpfad):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Download Filters" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Downloadfilter aktivieren" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Hinzufügen" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Standards laden" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Überprüfe Filter" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Ungeprüft" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignoriere Chat-Nachrichten und Suchergebnisse von Benutzern, basierend auf " "Benutzername oder IP-Adresse." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Chaträume standardmäßig protokollieren" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Standardmäßig privaten Chat protokollieren" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Protokolliere Übertragungen in Datei" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Debug-Nachrichten in Datei protokollieren" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Protokollzeitstempelformat:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Ordnerspeicherorte" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Ordner für Chatroomprotokolle:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Privater Chatverlauf-Ordner:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Ordner für Übertragungsprotokolle:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Ordner mit Debug-Logs:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Melde dich bei einem bestehenden Soulseek-Konto an oder erstelle ein neues. " "Benutzernamen sind groß- und kleinschreibungsempfindlich und einzigartig." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Öffentliche IP-Adresse:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Lauschport (erfordert einen Neustart):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Abwesend-Status" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" "Minuten der Inaktivität, bevor der Status auf Abwesend gesetzt wird (0 zum " "Deaktivieren):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Automatische Antwortnachricht bei Abwesenheit:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatisches Weiterleiten des Hörports (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Automatische Verbindung zum Server beim Start" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek-Server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Bindet Verbindungen an eine bestimmte Netzwerkschnittstelle, nützlich z.B. " "um sicherzustellen, dass immer ein VPN verwendet wird. Lass das Feld leer, " "um jede verfügbare Schnittstelle zu nutzen. Ändere diesen Wert nur, wenn du " "genau weißt, was du tust." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Netzwerkschnittstelle (erfordert einen Neustart):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Jetzt läuft, zeigt an, was dein Mediaplayer gerade spielt, indem du den " "Befehl /now im Chat verwendest." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Anderer" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Jetzt spielendes Format" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Nachrichtenformat für aktuelle Wiedergabe:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Test-Konfiguration" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Plugins einschalten" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Plugins hinzufügen" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Plugins hinzufügen" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Einstellungen" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Einstellungen" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Version:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Erstellt von:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Suchverlauf aktivieren" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Privat geteilte Dateien, die für alle sichtbar gemacht wurden, werden mit " "'[PRIVAT]' gekennzeichnet und können nicht heruntergeladen werden, bis der " "Uploader ausdrücklich die Erlaubnis erteilt. Frag sie freundlich." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Zeige privat freigegebene Dateien in den Suchergebnissen" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Begrenze die Anzahl der Ergebnisse pro Suche:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Aktiviere standardmäßig Suchergebnisfilter" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Einschließen:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Ausschließen:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Dateityp:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Größe:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Dauer:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Landescode:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "Zeige nur Ergebnisse von Benutzern mit einem verfügbaren Upload-Slot." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Ergebnisfilter-Hilfe" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Netzwerksuchen" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Auf Suchanfragen anderer Nutzer antworten" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Suchanfragen mit weniger Zeichen als diese Zahl werden ignoriert:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Maximale Anzahl an Suchergebnissen pro Suchanfrage:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Suchverlauf löschen" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Filterverlauf löschen" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Scannt den Inhalt deiner Freigaben beim Programmstart automatisch. Wenn " "diese Funktion deaktiviert ist, werden deine Freigaben nur manuell " "aktualisiert." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Freigaben beim Start neu scannen" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Für jeden sichtbar:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Freundenfreigaben" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Gute Freundenfreigaben" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Automatisches Löschen von abgeschlossenen/abgebrochenen Uploads aus der " "Übertragungsliste" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Doppelklick-Aktion für Uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Upload-Geschwindigkeit begrenzen auf:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Pro Übertragung" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Übertragungen Insgesamt" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Slots hochladen" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Dateien werden zyklisch an die wartenden Nutzer in der " "Warteschlange hochgeladen.\n" "First In, First Out: Dateien werden in der Reihenfolge hochgeladen, in der " "sie eingereiht wurden." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Typ der Upload-Warteschlange:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Upload-Slots zuweisen, bis die Gesamtgeschwindigkeit (KiB/s) erreicht ist:" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Feste Anzahl von Upload-Slots:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Priorisiere alle Freunde" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Warteschlangenbeschränkungen" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Maximale Anzahl an Dateien in der Warteschlange pro Benutzer:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" "Maximale Gesamtgröße der in der Warteschlange stehenden Dateien pro Benutzer " "(MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Beschränkungen gelten nicht für Freunde" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Instanzen von $ werden durch die URL ersetzt. Standard-Systemanwendungen " "werden verwendet, falls kein Protokoll konfiguriert wurde." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Dateimanager-Befehl:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Bild zurücksetzen" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Selbstbeschreibung" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Füge Dinge hinzu, die jeder sehen soll, wie eine kurze Beschreibung, " "hilfreiche Tipps oder Richtlinien für das Herunterladen deiner Freigaben." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Bild:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Entfernen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Bevorzuge den Dunkelmodus" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Kopfleiste verwenden" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Symbol im Infobereich anzeigen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Beim Start in den Infobereich minimieren" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Sprache (erfordert einen Neustart):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Beim Schließen des Fensters:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Benachrichtigungen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Aktiviere Ton für Benachrichtigungen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Zeige Benachrichtigungen für private Chats und Erwähnungen im Fenstertitel an" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Benachrichtigungen anzeigen für:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Fertige Datei-Downloads" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Fertige Ordner-Downloads" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Private Nachrichten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Nachrichten im Chatraum" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Chatraum-Erwähnungen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Wunschzettelergebnisse gefunden" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Stelle beim Start den zuvor aktiven Haupt-Tab wieder her" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Schließen-Schaltflächen auf sekundären Tabs" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Farbe der normalen Tab-Beschriftung:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Farbe der Tab-Beschriftung geändert:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Hervorgehobene Tab-Bezeichnungsfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Freundenliste Stelle:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Sichtbare Hauptregisterkarten:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Tableisten-Position:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Hauptregisterkarten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Umgekehrte Dateipfade anzeigen (erfordert einen Neustart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Exakte Dateigrößen anzeigen (erfordert einen Neustart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Textfarbe der Liste:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Farbe des Suchergebnistextes in der Warteschlange:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Farbige Benutzernamen aktivieren" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aussehen des Chat-Benutzernamens:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Fernschriftfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Lokale Textfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Befehlsausgabetextfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me Aktionstextfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Hervorgehobene Textfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL-Link-Textfarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Benutzerstatus" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Online-Farbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Abwesend Farbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Offline Farbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Texteinträge" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Hintergrundfarbe der Texteingabe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Texteingabefarbe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Schriftarten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Globale Schriftart:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Schriftart für Listen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Schriftart der Textansicht:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Schriftart für Chats:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Schriftart für Transfers:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Schriftart für Suche:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Schriftart für Durchsuchen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Symbole" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Icon-Themenordner:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Benutzer abbrechen" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Benutzer sperren" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Alle abgeschlossenen/abgebrochenen Uploads löschen" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Nachricht an alle" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Bestimmte Uploads löschen" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Freigabeliste auf Festplatte speichern" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Dateien aktualisieren" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Profil bearbeiten" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Freigegebene Dateien" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Freigegebene Ordnern" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Uploads in der Warteschlange" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Freier Hochlad-Slot" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Upload-Geschwindigkeit" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Interessen bearbeiten" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "Privilegien schenken …" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "Profil _Aktualisieren" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nikotin+ Befehle" #~ msgid "_Clear" #~ msgstr "Entfernen" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Kann %(filename)s nicht speichern: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Vertrauenswürdige Freunde" #~ msgid "Quit program" #~ msgstr "Programm beenden" #~ msgid "Username:" #~ msgstr "Benutzername:" #~ msgid "Re_commendations for Item" #~ msgstr "Empfehlungen für Artikel" #~ msgid "_Remove Item" #~ msgstr "_Artikel entfernen" #~ msgid "_Remove" #~ msgstr "_Entfernen" #~ msgid "Send M_essage" #~ msgstr "_Nachricht senden" #~ msgid "Send Message" #~ msgstr "Nachricht senden" #~ msgid "View User Profile" #~ msgstr "Benutzerprofil anzeigen" #~ msgid "Start Messaging" #~ msgstr "Nachrichten senden starten" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "" #~ "Gib den Namen des Benutzers ein, dem du eine Nachricht senden möchtest:" #~ msgid "_Message" #~ msgstr "_Nachricht" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Gib den Namen des Benutzers ein, dessen Profil du sehen möchtest:" #~ msgid "_View Profile" #~ msgstr "_Profil anzeigen" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Gib den Namen des Benutzers ein, dessen Freigaben du sehen möchtest:" #~ msgid "_Browse" #~ msgstr "_Blättern" #~ msgid "Password" #~ msgstr "Passwort" #~ msgid "Download File" #~ msgstr "Datei herunterladen" #~ msgid "Refresh Similar Users" #~ msgstr "Ähnliche Benutzer aktualisieren" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Gib den Benutzernamen der Person ein, deren Dateien du sehen möchtest" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Gib den Benutzernamen der Person ein, deren Informationen du sehen " #~ "möchtest" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Gib den Benutzernamen der Person ein, der du eine Nachricht senden " #~ "möchtest" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Gib den Benutzernamen der Person ein, die du zu deiner Freundesliste " #~ "hinzufügen möchtest" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Gib den Namen eines Raums ein, den du beitreten möchtest. Wenn der Raum " #~ "nicht existiert, wird er erstellt." #~ msgid "Show Log History Pane" #~ msgstr "Protokollverlaufsfenster anzeigen" #~ msgid "Save _Picture" #~ msgstr "_Bild speichern" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Falsches Suchergebnis %(filepath)s von Benutzer %(user)s für Suchanfrage " #~ "\"%(query)s\" herausgefiltert" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Bestimmte Clients senden keine Suchergebnisse, wenn Sonderzeichen " #~ "enthalten sind." #~ msgid "Remove special characters from search terms" #~ msgstr "Sonderzeichen aus Suchbegriffen entfernen" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Probleme bei der Ausführung von '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Probleme beim Ausführen im Ordner: %s" #~ msgid "Disallowed extension" #~ msgstr "Unzulässige Erweiterung" #~ msgid "Too many files" #~ msgstr "Zu viele Dateien" #~ msgid "Too many megabytes" #~ msgstr "Zu viele Megabytes" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Server erlaubt derzeit keine Wunschlistensuche" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Die Geschwindigkeit der Dateiübertragung hängt von den Nutzern ab, von " #~ "denen du die Dateien herunterladest. Bestimmte Nutzer sind schneller, " #~ "während andere langsam sind." #~ msgid "Started Downloads" #~ msgstr "Gestartete Downloads" #~ msgid "Started Uploads" #~ msgstr "Gestartete Uploads" #~ msgid "Replace censored letters with:" #~ msgstr "Zensierte Zeichen ersetzen durch:" #~ msgid "Censored Patterns" #~ msgstr "Zensierte Muster" #~ msgid "Replacements" #~ msgstr "Ersetzung" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Wenn ein Benutzer im Soulseek-Netzwerk nach einer Datei sucht, die in " #~ "deine Freigaben vorhanden ist, werden die Suchergebnisse dem Benutzer " #~ "gesendet." #~ msgid "Send to Player" #~ msgstr "An Spieler senden" #~ msgid "Send to _Player" #~ msgstr "An _Spieler senden" #~ msgid "_Open in File Manager" #~ msgstr "In Datei-Manager öffnen" #~ msgid "Media player command:" #~ msgstr "Media-Player-Befehl:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Der Download kann nicht im Unterordner des Benutzernamens gespeichert " #~ "werden und fällt in den Standard-Download-Ordner zurück. Fehler: %s" #~ msgid "Buddy-only" #~ msgstr "Nur für Freunde" #~ msgid "Share with buddies only" #~ msgstr "Nur mit Freunden teilen" #~ msgid "_Quit…" #~ msgstr "_Beenden…" #~ msgid "_Configure Shares" #~ msgstr "_Freigaben konfigurieren" #~ msgid "Remote file error" #~ msgstr "Fehler in einer entfernten Datei" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Kann weder %(option1)s noch %(option2)s finden, bitte installiere einen " #~ "der beiden." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s Ordner vor dem erneuten Scannen gefunden" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "" #~ "Die folgenden Datenbanken konnten nicht verarbeitet werden: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "" #~ "Die Anzahl der freigegebenen Dateien konnte nicht an den Server gesendet " #~ "werden: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Beenden / Ausführen im Hintergrund" #~ msgid "Listening port:" #~ msgstr "Abhörport:" #~ msgid "Network interface:" #~ msgstr "Netzwerkschnittstelle:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Beschränkung der Freundenfreigaben auf vertrauenswürdige Freunde" #~ msgid "Shared" #~ msgstr "Freigegeben" #~ msgid "Search Files and Folders" #~ msgstr "Suche in Dateien und Ordnern" #~ msgid "Out of Date" #~ msgstr "Veraltet" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Version %(version)s ist verfügbar, veröffentlicht auf %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Du verwendest eine Entwicklungsversion von %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Du verwendest die aktuellste Version von %s" #~ msgid "Latest Version Unknown" #~ msgstr "Neueste Version unbekannt" #~ msgid "Prefer Dark _Mode" #~ msgstr "Dunkle _Mode bevorzugen" #~ msgid "Show _Log History Pane" #~ msgstr "_Protokolfenster anzeigen" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Freundeliste in separatem Tab" #~ msgid "Buddy List Always Visible" #~ msgstr "Freundeliste immer sichtbar" #~ msgid "_View" #~ msgstr "_Ansicht" #~ msgid "_Open Log Folder" #~ msgstr "_Open Protokollordner" #~ msgid "_Browse Folder(s)" #~ msgstr "_Ordner durchsuchen" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 Bytes) pro Sekunde." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Wird den Nutzern als Grund für die Geoblockade mitgeteilt." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Wird den Benutzern als Grund für die Sperrung mitgeteilt." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Sobald Sie mit der Anwendung interagieren, wird der Status auf online " #~ "gesetzt." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "" #~ "Jeder Benutzer kann maximal eines des folgendes in die Warteschlange " #~ "stellen:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 Bytes)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "Dateien" #~ msgid "Queue Behavior" #~ msgstr "Warteschlangenverhalten" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Wenn deaktiviert, wird die Anzahl freier Slots anhand der maximalen " #~ "zugestandenen Bandbreite ermittelt." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Beachten Sie, dass das Thema des Betriebssystems Vorrang haben kann." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Standardmäßig wird die Registerkarte ganz links beim Start aktiviert" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "%(program)s Beenden %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "beendet" #~ msgid "done" #~ msgstr "fertig" #~ msgid "Remember choice" #~ msgstr "Auswahl merken" #~ msgid "--- disconnected ---" #~ msgstr "–––Verbindung getrennt–––" #~ msgid "--- reconnected ---" #~ msgstr "–––Verbindung wiederhergestellt–––" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Erde" #~ msgid "Czech Republic" #~ msgstr "Tschechische Republik" #~ msgid "Turkey" #~ msgstr "Türkei" #~ msgid "Kosovo" #~ msgstr "Kosovo" #, python-format #~ msgid "Usage: %(command)s %(args)s" #~ msgstr "Nutzung: %(command)s %(args)s" #~ msgid "Joined Rooms " #~ msgstr "Besuchte Räume " #~ msgid "Unknown Network Interface" #~ msgstr "Unbekannte Netzwerkschnittstelle" #~ msgid "Listening Port Unavailable" #~ msgstr "Empfangsport nicht verfügbar" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Der Server scheint abgeschaltet zu sein oder nicht zu antworten. Versuche " #~ "es in %i Sekunden erneut" #~ msgid "_Auto-join Room" #~ msgstr "_Raum automatisch beitreten" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ verwendet Peer-to-Peer-Netzwerke, um sich mit anderen Benutzern " #~ "zu verbinden. Damit die Benutzer ohne Probleme eine Verbindung zu Ihnen " #~ "herstellen können, ist ein offener Empfangsport entscheidend." #~ msgid "System Default" #~ msgstr "Systemvorgabe" #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Syntax: Bei Buchstaben wird die Groß-/Kleinschreibung nicht " #~ "beachtet. Alle regulären Python-Ausdrücke werden unterstützt, wenn die " #~ "Escape-Funktion deaktiviert ist. Für einfache Filter wird empfohlen, die " #~ "Escape-Funktion aktiviert zu lassen." #~ msgid "Escaped" #~ msgstr "Escapet" #~ msgid "Escape filter" #~ msgstr "Fluchtfilter" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Gebe ein Textmuster ein und womit es ersetzt werden soll" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s Ordner vor erneutem Scan gefunden, Neuaufbau…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Kein Empfangsport ist im angegebenen Port-Bereich verfügbar %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Wähle einen Bereich für den Empfangsport. Der erste verfügbare Port im " #~ "Bereich wird verwendet." #~ msgid "First Port" #~ msgstr "Erster Port" #~ msgid "to" #~ msgstr "bis" #~ msgid "Last Port" #~ msgstr "Letzter Port" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Kann %s oder neuer nicht finden, bitte installiere es." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Das Gtk-Modul kann nicht importiert werden. Schlechte Installation des " #~ "Python-Gobject-Moduls?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Sie verwenden eine nicht unterstützte Version von GTK %(major_version)s. " #~ "Sie sollten GTK %(complete_version)s oder neuer installieren." #~ msgid "User Info" #~ msgstr "Benutzerinformationen" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Reinzoomen" #~ msgid "Zoom Out" #~ msgstr "Rauszoomen" #~ msgid "Show User I_nfo" #~ msgstr "Benutzer_informationen anzeigen" #~ msgid "Request User's Info" #~ msgstr "Benutzerinformationen anfordern" #~ msgid "Request User's Shares" #~ msgstr "Benutzerfreigaben anfordern" #~ msgid "Request User Info" #~ msgstr "Benutzerinformationen anfordern" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "" #~ "Geben Sie den Namen des Benutzers ein, dessen Informationen Sie sehen " #~ "möchten:" #~ msgid "Request Shares List" #~ msgstr "Liste der Freigaben anfordern" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Ungültige Soulseek-URL: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Benutzer im Soulseek-Netzwerk können Dateien aus Ordnern herunterladen, " #~ "die Sie freigeben. Das Teilen von Dateien ist entscheidend für die " #~ "Gesundheit des Soulseek-Netzwerks." #~ msgid "Update I_nfo" #~ msgstr "I_nfo aktualisieren" #~ msgid "Chat Room Commands" #~ msgstr "Chatraum-Befehle" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'Raum'" #~ msgid "Join room 'room'" #~ msgstr "Raum betreten" #~ msgid "/me 'message'" #~ msgstr "/me 'Nachricht'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Zeige Ausgabe des Now-Playing-Skripts" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'Benutzer'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Benutzer 'Benutzer' zu Ihrer Kontaktliste hinzufügen" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'Benutzer'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Benutzer 'Benutzer' aus Ihrer Freundesliste entfernen" #~ msgid "/ban 'user'" #~ msgstr "/ban 'Benutzer'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Benutzer der Sperrliste hinzufügen" #~ msgid "/unban 'user'" #~ msgstr "/unban 'Benutzer'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Benutzer aus Sperrliste entfernen" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'Benutzer'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Benutzer zur Ingnorierliste hinzufügen" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'Benutzer'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Benutzer aus Ignorierliste entfernen" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'Benutzer'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'Benutzer'" #~ msgid "Request info for 'user'" #~ msgstr "Informationen für 'Benutzer' anfordern" #~ msgid "/ip 'user'" #~ msgstr "/ip 'Benutzer'" #~ msgid "Show IP for user 'user'" #~ msgstr "IP-Adresse des Benutzers anzeigen" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'Abfrage'" #~ msgid "Start a new search for 'query'" #~ msgstr "Neue Suche starten" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'Abfrage'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Suche in den beigetretenen Räumen nach 'query'" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'Abfrage'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "In der Freundeliste suchen" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'Benutzer' 'Abfrage'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'Benutzer' 'Nachricht'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Sende Nachricht an Benutzer" #~ msgid "/pm 'user'" #~ msgstr "/pm 'Benutzer'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Öffne privaten Chat" #~ msgid "Private Chat Commands" #~ msgstr "Private Chat-Befehle" #~ msgid "Add user to your ban list" #~ msgstr "Benutzer zu Ihrer Sperrliste hinzufügen" #~ msgid "Add user to your ignore list" #~ msgstr "Benutzer zur Ingnorierliste hinzufügen" #~ msgid "Browse shares of user" #~ msgstr "Benutzerfreigaben durchsuchen" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Für eine ordnungsunempfindliche Filterung sowie zum Filtern mehrerer " #~ "exakter Phrasen können vertikale Balken verwendet werden, um Phrasen und " #~ "Wörter zu trennen.\n" #~ " Beispiel: Remix| Instrumental| Dub-Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "Verwende !0 im Dauerfilter, um Nicht-Audiodateien auszuschließen." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "" #~ "Filtert Dateien basierend auf dem geografischen Standort der Benutzer." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Lösche einfach alle aktiven Filter, um die vollständigen Ergebnisse " #~ "anzuzeigen." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "In den Einstellungen finden Sie Informationen zum Festlegen der " #~ "Standardfilteroptionen für Suchergebnisse." #~ msgid "File size" #~ msgstr "Dateigröße" #~ msgid "Clear Active Filters" #~ msgstr "Aktive Filter löschen" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Beim Drücken der Tabulatortaste durch die Vervollständigungen blättern" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Drop-Down-Liste nicht anzeigen, wenn nur ein Treffer vorliegt" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "" #~ "Herunterladen von Ordnern in umgekehrter alphanumerischer Reihenfolge" #~ msgid "Incomplete file folder:" #~ msgstr "Unvollständiger Dateiordner:" #~ msgid "Download folder:" #~ msgstr "Downloadordner:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Uploads von Freunden speichern unter:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "UPnP verwenden zum Weiterleiten des Empfangsports" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Teilen Sie Ordner mit jedem Soulseek-Benutzer oder -Freunden, sodass " #~ "Inhalte direkt von Ihrem Gerät heruntergeladen werden können. Versteckte " #~ "Dateien werden niemals freigegeben." #~ msgid "Secondary Tabs" #~ msgstr "Sekundäre Tabs" #~ msgid "Chat room tab bar position:" #~ msgstr "Position der Chatraum-Tabsleiste:" #~ msgid "Private chat tab bar position:" #~ msgstr "Position der privaten Chat-Tab-Leiste:" #~ msgid "Search tab bar position:" #~ msgstr "Position der Suchregisterkarte:" #~ msgid "User info tab bar position:" #~ msgstr "Position der Registerkarten für Benutzerinformationen:" #~ msgid "User browse tab bar position:" #~ msgstr "Position der Registerkarten für Benutzerinfos:" #~ msgid "Tab Labels" #~ msgstr "Tabsbeschriftung" #~ msgid "_Refresh Info" #~ msgstr "_Info aktualisieren" #~ msgid "Block IP Address" #~ msgstr "IP-Adresse blockieren" #~ msgid "Connected" #~ msgstr "Verbunden" #~ msgid "Disconnected" #~ msgstr "Nicht verbunden" #~ msgid "Disconnected (Tray)" #~ msgstr "Getrennt (Fach)" #~ msgid "User(s)" #~ msgstr "Benutzer" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Der Alias \"%s\" ergab nichts" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternative Geschwindigkeitsbegrenzungen" #~ msgid "Last played" #~ msgstr "Zuletzt gespielt" #~ msgid "Playing now" #~ msgstr "Jetzt spielt" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Kann Datei nicht herunterladen %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Fehlercode %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Kein solcher Alias (%s)" #~ msgid "Aliases:" #~ msgstr "Aliase:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Alias %(alias)s entfernt: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Kein solcher Alias (%(alias)s)\n" #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternative Geschwindigkeitsbegrenzungen verwenden" #~ msgid "Aliases" #~ msgstr "Aliase" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'Befehl' 'Definition'" #~ msgid "Add a new alias" #~ msgstr "Einen neuen Alias hinzufügen" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'Befehl'" #~ msgid "Remove an alias" #~ msgstr "Einen Alias entfernen" #~ msgid "Chat History" #~ msgstr "Chat-Verlauf" #~ msgid "Command aliases" #~ msgstr "Befehls-Aliase" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Download-Geschwindigkeit auf (KiB/s) begrenzen:" #~ msgid "Author(s):" #~ msgstr "Autor(en):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Upload-Geschwindigkeit begrenzen auf (KiB/s):" #~ msgid "Wishlist item found" #~ msgstr "Wunschartikel gefunden" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Tabs zeigen Benutzerstatussymbole anstelle von Statustext an" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Dateipfad-Tooltips in Dateilistenansichten anzeigen" #~ msgid "Colored and clickable usernames" #~ msgstr "Farbige und anklickbare Benutzernamen" #~ msgid "Notification changes the tab's text color" #~ msgstr "Benachrichtigung verändert die Textfarbe des Tabs" #~ msgid "Cancel" #~ msgstr "Abbrechen" #~ msgid "OK" #~ msgstr "Okay" #~ msgid "_Add to Buddy List" #~ msgstr "_Zur Freundesliste hinzufügen" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "" #~ "Alle Downloads, die mit einem bestimmten Status gekennzeichnet sind, " #~ "löschen." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "" #~ "Jeden Upload, der mit einem bestimmten Status markiert ist, löschen." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "Verwendung eines nicht standardmäßigen Benutzerdatenverzeichnisses, z. B. " #~ "für die Liste der Downloads" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Unbekannter Konfigurationsabschnitt '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Unbekannte Konfigurationsoption '%(option)s' in Abschnitt '%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "Version %s ist verfügbar" #, python-format #~ msgid "released on %s" #~ msgstr "freigegeben am %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ läuft im Hintergrund" #, python-format #~ msgid "Private message from %s" #~ msgstr "Private Nachricht von %s" #~ msgid "Aborted" #~ msgstr "Abgebrochen" #~ msgid "Blocked country" #~ msgstr "Gesperrtes Land" #~ msgid "Finished / Aborted" #~ msgstr "Beendet / Abgebrochen" #~ msgid "Close tab" #~ msgstr "Tab schließen" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Dein Name wurde im Raum „%(room)s“ erwähnt" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Befehl %s ist unbekannt" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Warnung: %(realuser)s versucht, %(fakeuser)s zu spoofen.) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Die von Ihnen angegebene Netzwerkschnittstelle '%s' existiert nicht. " #~ "Ändern oder entfernen Sie die angegebene Netzwerkschnittstelle und " #~ "starten Sie Nicotine+ neu." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Der von Ihnen angegebene Bereich für Client-Verbindungsports war {}-{}, " #~ "aber keiner dieser Ports war verwendbar. Erhöhen Sie und/oder " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Beachte dass dein Portbereich teilweise unter 1024 liegt und dies in der " #~ "Regel in den meisten Betriebssystemen nicht erlaubt ist." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Fortschritt des Rescans: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Betriebssystem-Fehler: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP ist in diesem Netzwerk nicht verfügbar" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Fehler beim Zuordnen des externen WAN-Ports: %(error)s" #~ msgid "Room wall" #~ msgstr "Raumwand" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Der Standard-Port '2234' funktioniert in den meisten Fällen gut. Wenn Sie " #~ "einen anderen Port verwenden möchten, können Sie diesen später in den " #~ "Einstellungen ändern." #~ msgid "Show users with similar interests" #~ msgstr "Benutzer mit ähnlichen Interessen anzeigen" #~ msgid "Menu" #~ msgstr "Menü" #~ msgid "Expand / Collapse all" #~ msgstr "Alle auf-/zuklappen" #~ msgid "Configure shares" #~ msgstr "Freigaben konfigurieren" #~ msgid "Create or join room…" #~ msgstr "Raum erstellen oder beitreten…" #~ msgid "_Room List" #~ msgstr "_Raumliste" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "" #~ "Alternative Geschwindigkeitsbegrenzungen für Download und Upload " #~ "aktivieren" #~ msgid "Show log history" #~ msgstr "Protokollverlauf anzeigen" #~ msgid "Result grouping mode" #~ msgstr "Ergebnisgruppierungsmodus" #~ msgid "Free slot" #~ msgstr "Freier Slot" #~ msgid "Save shares list to disk" #~ msgstr "Freigabeliste speichern" #~ msgid "_Away" #~ msgstr "_Weg" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "" #~ "Die Benutzeroberflachdatei konnte nicht geladen werden %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Der Versuch, den Index der freigegebenen Dateien aufgrund eines Fehlers " #~ "zurückzusetzen. Bitte scannen Sie Ihre Freigaben erneut." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Auf den Dateiindex der freigegebenen Dateien konnte nicht zugegriffen " #~ "werden. Dies könnte daran liegen, dass mehrere Instanzen von Nicotine+ " #~ "gleichzeitig aktiv sind, Probleme mit der Dateiberechtigung oder ein " #~ "anderes Problem in Nicotine+ auftreten ist." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ ist ein Soulseek-Kunde" #~ msgid "enable the tray icon" #~ msgstr "Aktivieren Sie das Taskleistensymbol" #~ msgid "disable the tray icon" #~ msgstr "Deaktivieren Sie das Taskleistensymbol" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Soulseek-Privilegien erhalten…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Die öffentliche IP-Adresse ist %(ip)s und der aktive Abhörsport " #~ "ist %(port)s" #~ msgid "unknown" #~ msgstr "unbekannt" #~ msgid "Notification" #~ msgstr "Benachrichtigung" #~ msgid "Length" #~ msgstr "Länge" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Bild nicht gespeichert, %s ist bereits vorhanden." #~ msgid "_Open" #~ msgstr "Ö_ffnen" #~ msgid "_Save" #~ msgstr "_Speichern" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Fehler beim Laden des Plugins '%s', konnte es nicht finden." #, python-format #~ msgid "I/O error: %s" #~ msgstr "E/A-Fehler: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Der Dateipfad konnte nicht geöffnet werden: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "URL konnte nicht geöffnet werden: %s" #~ msgid "_Log Conversation" #~ msgstr "_Konversation protokollieren" #~ msgid "_Add…" #~ msgstr "_Hinzufügen…" #~ msgid "Result Filter List" #~ msgstr "Ergebnis-Filterliste" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Stellen Sie < oder > voran, um Dateien zu finden, die kleiner/größer als " #~ "der angegebene Wert sind." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-Dateien zeigen ihre durchschnittliche Bitrate an und haben in der " #~ "Regel eine niedrigere Bitrate als eine komprimierte 320-kbit/s-CBR-Datei " #~ "mit derselben Audioqualität." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Wie oben bei Größe können =, < und > verwendet werden." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Schreibzugriff durch andere Programme für heruntergeladene Dateien " #~ "verhindern (für NFS ausschalten)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Ort für temporäre Download-Dateien." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Wo die Uploads der Freunde gespeichert werden (mit einem Unterordner, der " #~ "für jeden Freund erstellt wird)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Status wegschalten nach Minuten der Inaktivität:" #~ msgid "Protocol:" #~ msgstr "Protokoll:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Icon-Themenordner (Neustart erforderlich):" #~ msgid "Establishing connection" #~ msgstr "Stelle Verbindung her" #~ msgid "Clear Groups" #~ msgstr "Gruppen leeren" #~ msgid "User List" #~ msgstr "Benutzerliste" #~ msgid "_Reset Statistics…" #~ msgstr "Statistik zurücksetzen…" #~ msgid "Clear _Downloads…" #~ msgstr "_Downloads löschen…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Uploa_ds löschen…" #~ msgid "Block User's IP Address" #~ msgstr "IP-Adresse des Benutzers blockieren" #~ msgid "Ignore User's IP Address" #~ msgstr "IP-Adresse des Benutzers ignorieren" #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Löschen Sie jeden Download, der die Übertragung abgeschlossen hat oder " #~ "von einem Filter abgefangen wurde." #~ msgid "Usernames" #~ msgstr "Benutzernamen" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Protokollierte Nachrichten anzeigen, wenn ein Raum erneut betreten wird" #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Löschen Sie jeden Upload, der entweder fertig übertragen oder vom Remote-" #~ "Benutzer abgebrochen wurde." #~ msgid "Queue Position" #~ msgstr "Position in der Warteschlange" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Benutzer %(user)s sucht direkt nach \"%(query)s\" und erhält %(num)i " #~ "Ergebnisse" #~ msgid "Edit" #~ msgstr "Bearbeiten" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVATGELÄNDE]" #~ msgid "Room wall (personal message set)" #~ msgstr "Raumwand (persönliches Nachrichtenset)" #~ msgid "Your config file is corrupt" #~ msgstr "Ihre Konfigurationsdatei ist beschädigt" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Es tut uns leid, aber es scheint, dass Ihre Konfigurationsdatei " #~ "beschädigt ist. Bitte konfigurieren Sie Nicotine+ neu.\n" #~ "\n" #~ "Wir haben Ihre alte Konfigurationsdatei umbenannt in\n" #~ "%(corrupt)s\n" #~ "Wenn Sie diese Datei mit einem Texteditor öffnen, können Sie vielleicht " #~ "einige Ihrer Einstellungen retten." #~ msgid "User Description" #~ msgstr "Benutzer Beschreibung" #~ msgid "User Interests" #~ msgstr "Benutzerinteressen" #~ msgid "User Picture" #~ msgstr "Benutzerbild" #~ msgid "Search Wishlist" #~ msgstr "Wunschzettel suchen" #, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Laden von Nicotine+ %(nic_version)s" #, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Python %(py_version)s in Verwendung" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Nicotine+ beenden %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Nicotine+ Beenden %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Benutzer:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Alle %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s Dateien " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Reguläre Ausdrücke für das Einschließen und Ausschließen des Filters " #~ "zulassen" #~ msgid "Quit…" #~ msgstr "Beenden…" #~ msgid "Remember previous primary tab on startup" #~ msgstr "Vorherige primäre Tab beim Starten anzeigen" #~ msgid "Start with Search Files by default." #~ msgstr "Starten Sie standardmäßig mit Dateien suchen." #~ msgid "Close Nicotine+?" #~ msgstr "Nicotine+ schließen?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Möchten Sie Nikotin+ wirklich beenden?" #~ msgid "Run in Background" #~ msgstr "Im Hintergrund ausführen" #~ msgid "_Online Notify" #~ msgstr "_Online Benachrichtigen" #~ msgid "_Prioritize User" #~ msgstr "_Benutzer bevorzugen" #~ msgid "_Trust User" #~ msgstr "_Benutzer vertrauen" #~ msgid "Request User's IP Address" #~ msgstr "IP-Adresse des Benutzers anfordern" #~ msgid "Request IP Address" #~ msgstr "IP-Adresse anfordern" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "" #~ "Geben Sie den Namen des Benutzers ein, dessen IP-Adresse Sie sehen " #~ "möchten:" #~ msgid "Downloaded" #~ msgstr "Heruntergeladen" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Der Download %(filename)s konnte nicht zu den freigegebenen Dateien " #~ "hinzugefügt werden: %(error)s" #~ msgid "Automatically share completed downloads" #~ msgstr "Automatische Freigabe abgeschlossener Downloads" #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Das Äquivalent zum Hinzufügen Ihres Download-Ordners als öffentliche " #~ "Freigabe, jedoch sind Dateien, die in diesen Ordner heruntergeladen " #~ "wurden, automatisch für andere zugänglich (kein erneuter Scan " #~ "erforderlich)." #~ msgid "Unable to Share Folder" #~ msgstr "Freigabe des Ordners nicht möglich" #~ msgid "The chosen virtual name is empty" #~ msgstr "Der gewählte virtuelle Name ist leer" #~ msgid "The chosen virtual name already exists" #~ msgstr "Der gewählte virtuelle Name existiert bereits" #~ msgid "The chosen folder is already shared" #~ msgstr "Der gewählte Ordner ist bereits freigegeben" #~ msgid "Set Virtual Name" #~ msgstr "Virtuellen Namen festlegen" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Virtuellen Namen für '%(dir)s' eingeben:" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "" #~ "Der gewählte virtuelle Name ist entweder leer oder existiert bereits" #~ msgid "The chosen folder is already shared." #~ msgstr "Der gewählte Ordner ist bereits freigegeben." #, python-format #~ msgid "%s Properties" #~ msgstr "%s Eigenschaften" #~ msgid "Finished rescanning shares" #~ msgstr "Aktualisierung der Freigaben beendet" #~ msgid "Plugin List" #~ msgstr "Plugin-Liste" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Fehler beim Scannen von %(path)s: %(error)s" #~ msgid "Show _Log Pane" #~ msgstr "_Log-Fenster anzeigen" #~ msgid "Addresses" #~ msgstr "Adressen" #~ msgid "Handler" #~ msgstr "Programm" #~ msgid "Could not enable plugin." #~ msgstr "Das Plugin konnte nicht aktiviert werden." #~ msgid "Could not disable plugin." #~ msgstr "Das Plugin konnte nicht deaktiviert werden." #~ msgid "Transfers" #~ msgstr "Überträgt" #~ msgid "Ban List" #~ msgstr "Sperrliste" #~ msgid "Ignore List" #~ msgstr "Ignorier-Liste" #~ msgid "Censor & Replace" #~ msgstr "Zensieren & Ersetzen" #~ msgid "Completion" #~ msgstr "Vervollständigung" #~ msgid "Categories" #~ msgstr "Kategorien" #~ msgid "Upload Folder To…" #~ msgstr "Ordner hochladen zu…" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Ordner rekursiv hochladen zu…" #~ msgid "Download _Recursive" #~ msgstr "Rekursiv herunterladen" #~ msgid "Download R_ecursive To…" #~ msgstr "Rekursiv herunterladen zu…" #~ msgid "Up_load File(s)" #~ msgstr "_Datei(en) hochladen" #, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Fehler beim Versuch, den Ordner '%(folder)s' anzuzeigen, gemeldeter " #~ "Fehler: %(error)s" #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Ziel für das Herunterladen eines Ordners vom Benutzer auswählen" #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Wählen Sie das Ziel zum Herunterladen der Datei(en) vom Benutzer" #~ msgid "Wishes" #~ msgstr "Wünsche" #~ msgid "privileged" #~ msgstr "privilegiert" #~ msgid "prioritized" #~ msgstr "priorisiert" #~ msgid "Configure logging" #~ msgstr "Protokollierung konfigurieren" #~ msgid "Blocked IP Addresses" #~ msgstr "Geblockte IP-Adressen" #~ msgid "Complete buddy names" #~ msgstr "Vervollständige Freundennamen" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Benutzernamen vervollständigen" #~ msgid "Complete room names" #~ msgstr "Vervollständige Raumnamen" #~ msgid "Drop-down List" #~ msgstr "Auswahlliste" #~ msgid "File Manager command ($ for file path):" #~ msgstr "Dateimanager-Befehl ($ für Dateipfad):" #~ msgid "Media Player command ($ for file path):" #~ msgstr "Media Player-Befehl ($ für Dateipfad):" #~ msgid "Ignored IP Addresses" #~ msgstr "Ignorierte IP-Adressen" #~ msgid "Display timestamps" #~ msgstr "Zeitstempel anzeigen" #~ msgid "Notification Popups" #~ msgstr "Benachrichtigungs-Popups" #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Popup-Benachrichtigung anzeigen, wenn das Herunterladen einer Datei " #~ "abgeschlossen ist" #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Popup-Benachrichtigung anzeigen, wenn ein Ordner fertig heruntergeladen " #~ "ist" #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Benachrichtigungs-Popup anzeigen, wenn Sie eine private Nachricht erhalten" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Benachrichtigungs-Popup anzeigen, wenn jemand eine Nachricht in einem " #~ "Chatraum sendet" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Benachrichtigungs-Popup anzeigen, wenn Sie in einem Chat-Raum erwähnt " #~ "werden" #~ msgid "Tray" #~ msgstr "Taskleiste" #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Instanzen von $ werden durch den Link ersetzt. In Fällen, in denen kein " #~ "Protokoll konfiguriert wurde, wird der Standard-Webbrowser des Systems " #~ "verwendet." #~ msgid "Handler:" #~ msgstr "Programm:" #~ msgid "Primary Tabs" #~ msgstr "Primäre Tabs" #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Aktivieren von Dateipfad-Tooltips in Such- und Übertragungsansichten" #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Zeigt den vollständigen Dateipfad eines Suchergebnisses oder einer " #~ "Dateiübertragung an, wenn Sie mit dem Mauszeiger über einen Ordnerpfad " #~ "oder einen Dateinamen fahren." #~ msgid "Show privately shared files in user shares" #~ msgstr "Privat freigegebene Dateien in Benutzerfreigaben anzeigen" #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Andere Clients bieten möglicherweise eine Option zum Senden privat " #~ "freigegebener Dateien an, wenn Sie ihre Freigaben durchsuchen. Ordner, " #~ "die solche Dateien enthalten, sind mit dem Präfix '[PRIVATE FOLDER]' " #~ "versehen und können nicht heruntergeladen werden, es sei denn, der " #~ "Hochladende gibt seine ausdrückliche Erlaubnis." #~ msgid "Chat Censor & Replace" #~ msgstr "Chat Zensieren & Ersetzen" #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Wählen Sie das Ziel zum Herunterladen des Ordners mit Unterordnern vom " #~ "Benutzer" #~ msgid "Show _Debug Log Controls" #~ msgstr "_Debug-Log-Steuerelemente anzeigen" #~ msgid "Debug Logging" #~ msgstr "Debug Protokollierung" #~ msgid "Copy Folder URL" #~ msgstr "URL des Ordners kopieren" #~ msgid "Download _To…" #~ msgstr "Herunterladen _zu…" #~ msgid "Download" #~ msgstr "Herunterladen" #~ msgid "Upload" #~ msgstr "Hochladen" #~ msgid "Upload Folder's Contents" #~ msgstr "Inhalt des Ordners hochladen" #~ msgid "Virtual Name" #~ msgstr "Virtueller Name" #~ msgid "Edit Virtual Name" #~ msgstr "Virtuellen Namen bearbeiten" #~ msgid "File Lists" #~ msgstr "Dateilisten" #~ msgid "Copy File Path" #~ msgstr "Dateipfad kopieren" #~ msgid "R_emove Wish" #~ msgstr "_Wunsch entfernen" #~ msgid "Rename" #~ msgstr "Umbenennen" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "" #~ "Es scheint, dass '%s' kein Verzeichnis ist, Plugins werden nicht geladen." #~ msgid "Rescanning buddy shares…" #~ msgstr "Freundenfreigaben werden aktualisiert…" #~ msgid "Finished rescanning buddy shares" #~ msgstr "Aktualisierung der Freundenfreigaben beendet" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Dein Freund %s versucht dir eine Datei zu senden." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s hat versucht, dir Dateien zu senden, ist aber nicht berechtigt. " #~ "Warnung gesendet." #~ msgid "Version: " #~ msgstr "Version: " #~ msgid "Author(s): " #~ msgstr "Autor(en): " #~ msgid "Client Version" #~ msgstr "Client-Version" #, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "" #~ "Für wie viele Tage sollen dem Benutzer %s Berechtigungen eingeräumt " #~ "werden?" #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Freunde haben höhere Priorität in der Warteliste, genauso wie global " #~ "privilegierte Benutzer." #~ msgid "Privileged" #~ msgstr "Privilegiert" #~ msgid "_Privileged" #~ msgstr "_Privilegiert" #~ msgid "Comments" #~ msgstr "Kommentar" #~ msgid "Edit _Comments…" #~ msgstr "_Kommentare bearbeiten…" #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Erstellt Unterordner auf der Grundlage des Benutzers, von dem Sie " #~ "herunterladen, und speichert die heruntergeladene Datei/Ordner dort." #~ msgid "Login Details" #~ msgstr "Login-Daten" #~ msgid "Advanced" #~ msgstr "Fortgeschrittene" #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Erneuerungsintervall für die Portzuordnung in Stunden:" #~ msgid "Enable buddy-only shares" #~ msgstr "Freigaben nur für Freunde aktivieren" #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "" #~ "Dateien werden in der Reihenfolge hochgeladen, in der sie in die " #~ "Warteschlange gestellt wurden." #~ msgid "Rescanning normal shares…" #~ msgstr "Normale Freigaben erneut scannen…" #~ msgid "Finished rescanning public shares" #~ msgstr "Erneutes Scannen öffentlicher Freigaben abgeschlossen" #~ msgid "Scanning Buddy Shares" #~ msgstr "Aktualisierung privater Freigaben begonnen" #~ msgid "_Rescan Public Shares" #~ msgstr "_Publike Freigaben aktualisieren" #~ msgid "Rescan B_uddy Shares" #~ msgstr "Freundenfreigaben aktualisieren" #~ msgid "Rescan Public Shares" #~ msgstr "_Publike Freigaben aktualisieren" #~ msgid "Rescan Buddy Shares" #~ msgstr "Freuden-Freigaben erneut scannen" #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Aktiviert Freunden freigaben, auf die nur Benutzer in Ihrer Freundesliste " #~ "zugreifen können." #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Markieren Sie jeden freigegebenen Ordner als nur für Freunde" #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Überschreibt die Option pro Freigabe, die nützlich ist, wenn Sie " #~ "vorübergehend den öffentlichen Zugriff auf Freigaben verhindern müssen." #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Nur Benutzer, die in Ihrer Freudenliste als vertrauenswürdig markiert " #~ "sind, können auf Ihre Freundenfreigaben zugreifen." #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Mit Nicotine+ können Sie Ordner direkt von Ihrem Computer aus freigeben. " #~ "Der gesamte Inhalt dieser Ordner (mit Ausnahme von Punktdateien) können " #~ "von anderen Benutzern im Soulseek-Netzwerk heruntergeladen werden. " #~ "Öffentliche Freigaben sind für jeden Benutzer verfügbar, während Benutzer " #~ "in Ihrer Freunden-Liste zusätzlich zu den öffentlichen Freigaben auch " #~ "Zugriff auf Freigaben haben, die nur für Freunden-Mitglieder bestimmt " #~ "sind." #~ msgid "Filtered out excluded search result " #~ msgstr "Ausgeschlossenes Suchergebnis herausgefiltert " #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Ungenaue oder falsche Suchergebnisse werden herausgefiltert " #, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Die gespeicherte Einstellung '%(key)s' ist im Plugin '%(name)s' nicht " #~ "mehr vorhanden" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "Plugin %(module)s gab etwas Seltsames zurück, '%(value)s', ignoriert" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "" #~ "Inkonsistenter Cache für '%(vdir)s', Wiederherstellung von '%(dir)s'" #, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Löschen des fehlenden Ordners %(dir)s" #, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Alle Ticker / Wandmeldungen für %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Eigenen Ticker setzen" #~ msgid "Show all the tickers" #~ msgstr "Alle Ticker anzeigen" #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Fehler beim Scannen von Freigaben. Wenn Nicotine+ gerade läuft, schließen " #~ "Sie bitte das Programm vor dem Scannen." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Möchten Sie Nicotine+ wirklich beenden?" #~ msgid "Receive a User's IP Address" #~ msgstr "IP-Adresse des Benutzers abfragen" #~ msgid "Receive a User's Info" #~ msgstr "Benutzerinfo abfragen" #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "Der Server verbietet uns, Wunschlistensuchen durchzuführen." #, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Die Datenbank Ihrer Freigaben ist beschädigt. Bitte scannen Sie Ihre " #~ "Freigaben erneut und melden Sie eventuelle Scan-Probleme an die " #~ "Entwickler. Fehler: %s" #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Bitte denken Sie daran, dass ein Benutzername bereits vergeben sein " #~ "könnte. Wenn dies der Fall ist, werden Sie aufgefordert, Ihren " #~ "Benutzernamen zu ändern, wenn Sie sich mit dem Netz verbinden." #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "" #~ "Geben Sie den Benutzernamen der Person ein, über die Sie Informationen " #~ "erhalten möchten" #~ msgid "Add user 'user' to your user list" #~ msgstr "Benutzer der Freunde-Liste hinzufügen" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Benutzer aus der Freunde-Liste entfernen" #~ msgid "Request user info for user 'user'" #~ msgstr "Die Info des Benutzers abrufen" #~ msgid "Add user to your user list" #~ msgstr "Benutzer zu Ihrer Benutzerliste hinzufügen" #~ msgid "Remove user from your user list" #~ msgstr "Benutzer aus der Freunde-Liste entfernen" #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Suchanfragen mit weniger als diese Anzahl von Zeichen werden ignoriert:" #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Benutzer in der Warteschlange werden zyklisch eine Datei nach der anderen " #~ "hochgeladen." #~ msgid "" #~ "Could not execute now playing code. Are you sure you picked the right " #~ "player?" #~ msgstr "" #~ "Der Befehl konnte nicht ausgeführt werden. Bist du sicher, dass du den " #~ "richtigen Spieler ausgewählt hast?" #~ msgid "/leave /l /part /p" #~ msgstr "/leave /l /part /p" #~ msgid "/clear /cl" #~ msgstr "/clear /cl" #~ msgid "/tick /t" #~ msgstr "/tick /t" #~ msgid "/tickers" #~ msgstr "/tickers" #~ msgid "/now" #~ msgstr "/now" #~ msgid "/away /a" #~ msgstr "/away /a" #~ msgid "/quit /q /exit" #~ msgstr "/quit /q /exit" #~ msgid "/close /c" #~ msgstr "/close /c" #~ msgid "/add /ad" #~ msgstr "/add /ad" #~ msgid "/rem /unbuddy" #~ msgstr "/rem /unbuddy" #~ msgid "/ban" #~ msgstr "/ban" #~ msgid "/unban" #~ msgstr "/unban" #~ msgid "/ignore" #~ msgstr "/ignore" #~ msgid "/unignore" #~ msgstr "/unignore" #~ msgid "/browse /b" #~ msgstr "/browse /b" #~ msgid "/whois /w" #~ msgstr "/whois /w" #~ msgid "/ip" #~ msgstr "/ip" #~ msgid "Cannot find the pynicotine.utils module." #~ msgstr "Kann Modul pynicotine.utils nicht finden" #~ msgid "Errors occured while trying to change process name:" #~ msgstr "Beim Versuch, den Prozessnamen zu ändern, sind Fehler aufgetreten:" #, python-format #~ msgid "Can't remove %s" #~ msgstr "Kann %s nicht entfernen." #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "Kann Konfigurationsdatei nicht sichern, Fehler: %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Kann Konfigurationsdatei nicht umbenennen, Fehler: %s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Verbindung von Gegenseite getrennt: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Server nannte zum zehnten Mal Port 0 für Benutzer %(user)s, gebe auf." #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Server nennt einen Port ungleich 0 für Benutzer %(user)s nach %(tries)i " #~ "Wiederholungen." #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "Server nennt Port 0 für Benutzer %(user)s, erneuter Versuch" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Anmeldung nicht möglich, Grund: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Jemand anderes meldet sich mit demselben Nick an, Server trennt uns." #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "IP %(ip)s:%(port)s spooft Benutzer %(user)s mit einem Peer-Request. " #~ "Blockiert, da nicht die richtige IP: %(real_ip)s." #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "Blocke Benutzerinfo-Anfrage von %(user)s, möglicherweise ein " #~ "Spoofingversuch von IP %(ip)s Port %(port)s." #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "Blocke Benutzerinfo Anfrage von %s, möglicherweise ein Spoofingversuch " #~ "von einer unbekannten IP." #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "Gesperrter Benutzer %(user)s macht eine Benutzerinfo-Anfrage" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s fordert deine Freigaben an, blockiere möglichen Spoofingversuch " #~ "von IP %(ip)s Port %(port)s." #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s fordert deine Freigaben an, blockiere möglichen Spoofingversuch " #~ "von unbekannter IP." #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s fordert deine Freigaben an." #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Unbekannte getunnelte Nachricht: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "Deine Freigabendatenbank scheint defekt zu sein, erstelle sie neu." #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Leere Nachricht erzeugt, Klasse %s" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Kann eingehende Nachricht nicht parsen, Klasse %s" #~ msgid "Could not bind to a local port, aborting connection" #~ msgstr "Lokale Portreservierung fehlgeschlagen. Verbindungsabbruch." #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Kann mit Verbindungsart %s nicht umgehen." #, python-format #~ msgid "Error packaging message: %(type)s %(msg_obj)s, %(error)s" #~ msgstr "" #~ "Fehler beim Verpacken einer Nachricht: %(type)s %(msg_obj)s, %(error)s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Kann die Nachricht nicht über eine geschlossene Verbindung senden: " #~ "%(type)s %(msg_obj)s" #, python-format #~ msgid "Major Socket Error: Networking terminated! %s" #~ msgstr "Major-Socket-Fehler: Netzwerkverbindung unterbrochen! %s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Filtern: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Wiederhole fehlgeschlagenen Download: Benutzer %(user)s, Datei %(file)s" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "Bekam Transferanfrage %s aber kann Anforderer nicht ausmachen" #~ msgid "[Automatic Message] " #~ msgstr "[Automatische Nachricht] " #~ msgid "You are not allowed to send me files." #~ msgstr "You are not allowed to send me files, heh." #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Umbekannte Transfer-Antwort erhalten: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Download abgeschlossen: %(file)s" #~ msgid "(friend)" #~ msgstr "(Freund)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Upload abgeschlossen: Benutzer %(user)s, Datei %(file)s" #~ msgid "Get user i_nfo" #~ msgstr "Benutzerinfo abrufen" #~ msgid "_Add user to list" #~ msgstr "Benutzer der Liste hinzufügen" #~ msgid "_Ban this user" #~ msgstr "Diesen Benutzer sperren" #~ msgid "_Ignore this user" #~ msgstr "Diesen Benutzer ignorieren" #~ msgid "Clear finished/aborted" #~ msgstr "Entferne Abgeschlossene/Abgebrochene" #~ msgid "Clear aborted" #~ msgstr "Entferne Abgebrochene" #~ msgid "Clear queued" #~ msgstr "Entferne Wartende" #~ msgid "Abor_t" #~ msgstr "Abbrechen" #~ msgid "Directory" #~ msgstr "Verzeichnis" #~ msgid "Warning" #~ msgstr "Warnung" #~ msgid "Search files" #~ msgstr "Suche" #~ msgid "User info" #~ msgstr "Benutzerinfo" #~ msgid "Chat rooms" #~ msgstr "Chat-Räume" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "%(tab)s verstecken" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Aktualisierung der privaten Freigaben begonnen" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Aktualisierung der privaten Freigaben abgeschlossen" #~ msgid "Rescanning finished" #~ msgstr "Aktualisierung abgeschlossen" #~ msgid "Send to tray" #~ msgstr "Ins Tray minimieren" #~ msgid "I like" #~ msgstr "Ich mag" #~ msgid "I _don't like this" #~ msgstr "Das mag ich nicht" #~ msgid "Ban this user" #~ msgstr "Benutzer sperren" #~ msgid "Ignore this user" #~ msgstr "Benutzer ignorieren" #~ msgid "In queue" #~ msgstr "In Wartschlange" #, python-format #~ msgid "Client port is %(port)s" #~ msgstr "Der Client-Port ist %(port)s" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Deine IP-Adresse wurde vom Server nicht ausgegeben" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Deine IP-Adresse lautet: %(ip)s" #~ msgid "Warning: Bad Username" #~ msgstr "Achtung: schlechter Benutzername" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "Der Benutzername „None“ ist kein guter, nimm einen anderen." #~ msgid "Warning: Invalid ports" #~ msgstr "Achtung: ungültige Ports" #~ msgid "Client ports are invalid." #~ msgstr "Die Client-Ports sind ungültig." #~ msgid "Users in list" #~ msgstr "Benutzer in Liste" #, python-format #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "Sicherheitsrisiko: Du solltest das %s-Verzeichnis nicht freigeben!" #~ msgid "Ignore user..." #~ msgstr "Ignoriere Benutzer ..." #~ msgid "IP:" #~ msgstr "IP:" #~ msgid "Ban user..." #~ msgstr "Sperre Benutzer ..." #~ msgid "Server" #~ msgstr "Server" #~ msgid "Geo Block" #~ msgstr "Geo-Block" #~ msgid "Notebook Tabs" #~ msgstr "Tabs" #~ msgid "URL Catching" #~ msgstr "URL-Catching" #~ msgid "Initializing transfer" #~ msgstr "Initialisiere Transfer" #~ msgid "Waiting for peer to connect" #~ msgstr "Warte auf Gegenseite" #~ msgid "Getting address" #~ msgstr "Ermittle Adresse" #~ msgid "Lookup a User's IP" #~ msgstr "IP eines Benutzers anzeigen" #~ msgid "Clear failed" #~ msgstr "Entferne Fehlgeschlagene" #~ msgid "Directories" #~ msgstr "Verzeichnisse" #~ msgid "Download r_ecursive to..." #~ msgstr "Rekursiv herunterladen nach ..." #~ msgid "Upload Directory to..." #~ msgstr "Verzeichnis hochladen an ..." #, python-format #~ msgid "Speed: %s" #~ msgstr "Geschwindigkeit: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Dateien: %s" #~ msgid "Hates" #~ msgstr "Hasst" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Uploads erlaubt: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Slots frei: %s" #, python-format #~ msgid "%s" #~ msgstr "%s" #, python-format #~ msgid "to %(user)s" #~ msgstr "an %(user)s" #~ msgid "Log" #~ msgstr "Log" #~ msgid "Clear Queued" #~ msgstr "Entferne Wartende" #~ msgid "Clear all searches attempts" #~ msgstr "Alle offenen Suchen schließen" #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Nachrichten direkt an Gegenstelle senden (Wird von den meisten Clients " #~ "nicht unterstützt.)" #~ msgid "Stop new search results from being displayed" #~ msgstr "Keine weiteren Suchergebnisse anzeigen" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Uploads insgesamt erlaubt: unbekannt" #~ msgid "Slots free: unknown" #~ msgstr "Slots verfügbar: unbekannt" #~ msgid "Queue size: unknown" #~ msgstr "Länge der Warteschlange: unbekannt" #~ msgid "Speed: unknown" #~ msgstr "Geschwindigkeit: unbekannt" #~ msgid "Files: unknown" #~ msgstr "Dateien: unbekannt" #~ msgid "Directories: unknown" #~ msgstr "Verzeichnisse: unbekannt" #~ msgid "Accepts Uploads from:" #~ msgstr "Akzeptiert Uploads von:" #~ msgid "Add..." #~ msgstr "Hinzufügen ..." #~ msgid "About chat room commands" #~ msgstr "Über Befehle in Chat-Räumen" #~ msgid "Leave room 'room'" #~ msgstr "Raum verlassen" #~ msgid "About search filters" #~ msgstr "Über Suchfilter" #~ msgid "_Modes" #~ msgstr "Modi" #~ msgid "_Uploads" #~ msgstr "Uploads" #~ msgid "_Private Chat" #~ msgstr "Privater Chat" #~ msgid "Buddy _List" #~ msgstr "Freunde" #~ msgid "_Chat Rooms" #~ msgstr "Chat-Räume" #~ msgid "_Interests" #~ msgstr "Interessen" #~ msgid "About _chat room commands" #~ msgstr "Über Befehle in Chat-Räumen" #~ msgid "About _private chat commands" #~ msgstr "Über Befehle im privaten Chat" #~ msgid "About _search filters" #~ msgstr "Über Suchfilter" #~ msgid "Toggle away after " #~ msgstr "Zu „Abwesend“ wechseln nach " #~ msgid "Enable Censorship" #~ msgstr "Zensurfilter aktivieren" #~ msgid "Username Font Style:" #~ msgstr "Benutzernamen-Schriftart:" #~ msgid "Display away colors" #~ msgstr "Abwesenheitsfarben verwenden" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Eingehende Dateien sperren (für NFS abschalten)" #~ msgid "" #~ "The users will be able to send you files. These files will be downloaded " #~ "into the Buddy Uploads subdirectory in your Download directory" #~ msgstr "" #~ "Die Benutzer sind berechtigt, dir Dateien zu senden. Diese Dateien werden " #~ "im entsprechenden Freunde-Upload-Ordner in deinem Downloadverzeichnis " #~ "gespeichert." #~ msgid "Upload transfers" #~ msgstr "Uploads" #~ msgid "Send to player" #~ msgstr "An Player übergeben" #~ msgid "Open Directory" #~ msgstr "Verzeichnis öffnen" #~ msgid "Enable geographical blocker" #~ msgstr "Den Ländercode-Blocker aktivieren" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "Geografischer Verfolgungswahn (Unauflösbare IPs sperren)" #~ msgid "Always quit when main window is closed" #~ msgstr "Beim Schließen des Hauptfensters immer beenden" #~ msgid "Trayicon" #~ msgstr "Tray-Symbol" #~ msgid "Online:" #~ msgstr "Online:" #~ msgid "Away:" #~ msgstr "Abwesend:" #~ msgid "Offline:" #~ msgstr "Offline:" #~ msgid "Hilite:" #~ msgstr "Markiert:" #~ msgid "Status" #~ msgstr "Status" #~ msgid "Private Chat Logs directory:" #~ msgstr "Verzeichnis für Privat-Chat-Protokolle:" #~ msgid "Read" #~ msgstr "Lesen" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Letzte Privat-Chat-Mitteilungen öffnen" #~ msgid "Label Angle:" #~ msgstr "Ausrichtung:" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "Player Command/Username" #~ msgstr "Player-Kommando/Benutzer" #~ msgid "Legend:" #~ msgstr "Legende:" #~ msgid "Example:" #~ msgstr "Beispiel:" #~ msgid "Send out a max of" #~ msgstr "Liefere höchstens" #~ msgid "Filter out:" #~ msgstr "Rausfiltern:" #~ msgid "Filter in:" #~ msgstr "Reinfiltern:" #~ msgid "" #~ "If buddy shares are enabled, they will be shared. Otherwise normal shares " #~ "will be used." #~ msgstr "" #~ "Wenn private Freigaben aktiviert sind, werden diese benutzt. Ansonsten " #~ "werden normale Freigaben benutzt." #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "Es wird je eine Datei pro Benutzer gewährt, dann folgt der Nächste" #~ msgid "KBytes/sec" #~ msgstr "KByte/s" #~ msgid "Megabytes" #~ msgstr "Megabyte" #~ msgid "Enable URL catching" #~ msgstr "URL-Catching aktivieren" #~ msgid "Humanize slsk:// urls" #~ msgstr "Mache slsk://-URLs lesbar" #~ msgid "Use the first available listening port from the following range:" #~ msgstr "Lausche am ersten freien Port in diesem Bereich:" nicotine-plus-3.3.4/po/eo.po000066400000000000000000006771201461625273200157200ustar00rootroot00000000000000# Copyright (C) 2021-2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-07-25 18:31+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.0-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 #, fuzzy msgid "Soulseek Client" msgstr "Soulseek Kliento" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 #, fuzzy msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafika kliento por la kunul-al-kunula reto Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;dividado;muziko;P2P;kunulo-al-kunulo;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafika kliento por la kunul-al-kunula reto Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 #, fuzzy msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ estas grafika kliento por la kunula reto Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ celas esti agrabla, senpaga kaj malferma fonto (FOSS) alternativo " "al la oficiala Soulseek-kliento, provizante plian funkciecon konservante " "aktuala kun la Soulseek-protokolo." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Serĉu Dosieroj" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 #, fuzzy msgid "Downloads" msgstr "Elŝutoj" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Foliumi Akciojn" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Privata Babilejo" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Teamo Nicotine+" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Efektive: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "Montri ĉi tiun helpmesaĝon kaj eliri" #: pynicotine/__init__.py:59 msgid "file" msgstr "dosiero" #: pynicotine/__init__.py:60 #, fuzzy msgid "use non-default configuration file" msgstr "uzu ne-defaŭltan agordan dosieron" #: pynicotine/__init__.py:63 msgid "dir" msgstr "dosierujo" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "uzu ne-defaŭltan dosierujon por kromaĵojn" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "lanĉu la programon sen montri fenestron" #: pynicotine/__init__.py:71 msgid "ip" msgstr "IP-adreso" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "ligi ingojn al la donita IP (utila por VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "pordo" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "aŭskultu sur la donita haveno" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "reskani komunajn dosierojn" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "lanĉu la programon en senkapa reĝimo (neniu GUI)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "montri versio kaj eliro" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Vi uzas nesubtenan version de Python (%(old_version)s).\n" "Vi devus instali Python %(min_version)s aŭ pli novan." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Malsukcesis skani akciojn. Bonvolu fermi aliajn okazojn de Nicotine+ kaj " "provi denove." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Uzanto %s estas for" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Uzanto %s estas interreta" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Uzanto %s estas eksterreta" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Kamaradoj" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Vi estis aldonita al privata ĉambro: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Babilmesaĝo de uzanto '%(user)s' en ĉambro '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, fuzzy, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Ne povas krei dosierujon '%(path)s', raportita eraro: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Eraro dum sekurkopio de agordo: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Agordo konservita al: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Forlasante Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Forlasante Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "finiĝanta" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "aplikaĵo fermo" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Forlasante Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "Vi devas specifi uzantnomon kaj pasvorton antaŭ ol konekti…" #: pynicotine/downloads.py:224 #, fuzzy, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Eraro: Elŝuta Filtrilo malsukcesis! Kontrolu viajn filtrilojn. Kialo: %s" #: pynicotine/downloads.py:239 #, fuzzy, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Eraro: %(num)d Elŝutaj filtriloj malsukcesis! %(error)s " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s elŝutita de %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Dosiero elŝutita" #: pynicotine/downloads.py:366 #, fuzzy, python-format msgid "Executed: %s" msgstr "Efektive: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Ekzekutado de '%(command)s' malsukcesis: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s elŝutita de %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Dosierujo elŝutita" #: pynicotine/downloads.py:407 #, fuzzy, python-format msgid "Executed on folder: %s" msgstr "Efektive en dosierujo: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Ne eblis movi '%(tempfile)s' al '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Elŝuta dosierujo eraro" #: pynicotine/downloads.py:481 #, fuzzy, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Elŝuto finita: uzanto %(user)s, dosiero %(file)s" #: pynicotine/downloads.py:499 #, fuzzy, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Elŝuto ĉesigita, uzanto %(user)s dosiero %(file)s" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Elŝuta I/O-eraro: %s" #: pynicotine/downloads.py:1194 #, fuzzy, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Ne povas ricevi ekskluzivan ŝlosilon en dosiero - I/O-eraro: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Ne eblas konservi dosieron %(path)s: %(error)s" #: pynicotine/downloads.py:1226 #, fuzzy, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Elŝuto komencita: uzanto %(user)s, dosiero %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Ne povas trovi %s, bonvolu instali ĝin." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Neniu grafika medio havebla, uzante senkapan (sen GUI) reĝimon" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 #, fuzzy msgid "_Connect" msgstr "_Konekti" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 #, fuzzy msgid "_Disconnect" msgstr "_Malkonekti" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "Soulseek _Privilegioj" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Preferoj" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Forlasu" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Fumu Publikaj Akcioj" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Fol_vidu Buddy Shares" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Fol_vidu Buddy Shares" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "_Reskanu Akciojn" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Agordu Akciojn" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Klavaraj ŝparvojoj" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Agorda Asistanto" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "_Transdona Statistiko" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Raporti _Cimon" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Plibonigi T_tradukojn" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "_Pri Nicotine+" #: pynicotine/gtkgui/application.py:422 #, fuzzy msgid "_File" msgstr "_Dosiero" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Agoj" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Helpu" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Foliumi Akciojn" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Ne eblas montri sciigan ŝprucfenestron: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Ĉu vi vere volas eliri Nicotine+?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Ĉu vi vere volas eliri Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "Ne" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Kuru en Fono" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Forlasu Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Akcioj Ne Disponeblaj" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Kontrolu, ke eksteraj diskoj estas muntitaj kaj ke permesoj de dosierujo " "estas ĝustaj." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Nuligi" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 #, fuzzy msgid "_Retry" msgstr "_Reprovu" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Forto Rescan" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Nevalida Pasvorto" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Uzanto %s jam ekzistas, kaj la pasvorto, kiun vi enigis, estas malvalida. " "Bonvolu elekti alian uzantnomon se ĉi tio estas via unua fojo ensalutanta." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Ŝanĝi Ensalutajn Detalojn" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Mesaĝo Elŝutanta Uzantoj" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Sendu privatan mesaĝon al ĉiuj uzantoj, kiuj elŝutas de vi:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Sendi mesaĝon" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Mesaĝoj" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Sendu privatan mesaĝon al ĉiuj interretaj amikoj:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Elektu Konservitan Kundividan Liston Dosieron" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kritika Eraro" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ renkontis kritikan eraron kaj devas eliri. Bonvolu kopii la sekvan " "mesaĝon kaj inkluzivi ĝin en cimraporton:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Forlasu Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Kopiu & Raporti Cimon" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 #, fuzzy msgid "Status" msgstr "Statuso" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 #, fuzzy msgid "Country" msgstr "Lando" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 #, fuzzy msgid "User" msgstr "Uzanto" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 #, fuzzy msgid "Speed" msgstr "Rapido" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 #, fuzzy msgid "Files" msgstr "Dosieroj" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted" msgstr "Fidinda" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Sciigi" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Prioritatigita" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Laste Vidita" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Notu" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Aldoni Uzanton _Noton…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 #, fuzzy msgid "Remove" msgstr "Forigi" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Neniam vidite" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Aldonu Uzantan Noton" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Aldonu noton pri uzanto %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Aldonu…" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Ĉu krei novan ĉambron?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Ĉu vi vere volas krei novan ĉambron \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Faru ĉambron privata" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Serĉu la dosierojn de la uzanto" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Trovu…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 #, fuzzy msgid "Copy" msgstr "Kopiu" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 #, fuzzy msgid "Copy All" msgstr "Kopiu Ĉion" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Klara Agado-Vido" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "_Forlasu Ĉambron" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Kopiu Ligo" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Rigardu Ĉambran Protokolon" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Forigi ĉambran protokolon…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Klara Mesaĝa Vido" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, fuzzy, python-format msgid "%s joined the room" msgstr "%s aliĝis al la ĉambro" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s menciis vin en la %(room)s ĉambro" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mesaĝo de %(user)s en la %(room)s ĉambro" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Mesaĝo de %(user)s en la %(room)s ĉambro" #: pynicotine/gtkgui/chatrooms.py:854 #, fuzzy, python-format msgid "%s left the room" msgstr "%s forlasis la ĉambron" #: pynicotine/gtkgui/chatrooms.py:899 #, fuzzy, python-format msgid "%s has gone away" msgstr "%s foriris" #: pynicotine/gtkgui/chatrooms.py:902 #, fuzzy, python-format msgid "%s has returned" msgstr "%s revenis" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Ĉu forigi ensalutitajn mesaĝojn?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Ĉu vi vere volas konstante forigi ĉiujn registritajn mesaĝojn por ĉi tiu " "ĉambro?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Ĝibutio" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Efektive: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Eraro dum reakiro de la plej nova versio" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Ĝisdata" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Kontrolu _Lastan Version" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "_Agorda Asistanto" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtuala Dosierujo" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Dosierujo" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Finita" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Sekva" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Aldonu Komunan Dosierujon" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Komunaj Dosierujoj" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Enigu novan virtualan nomon por '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Redaktado" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Dosieraj Propraĵoj" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Dosieraj Propraĵoj (%(num)i de %(total)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Dosieraj Propraĵoj (%(num)i de %(total)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Apliki" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Aldoni…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Redaktu…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "%s Agordoj" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Ero" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Interesoj" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 #, fuzzy msgid "Unknown" msgstr "Nekonata" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Kontrolu Havenan Statuon" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, haveno %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Pasvorto Ŝanĝo Malakceptita" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Enigu novan pasvorton por via Soulseek-konto:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Vi estas nuntempe elsalutita el la Soulseek-reto. Se vi volas ŝanĝi la " "pasvorton de ekzistanta Soulseek-konto, vi devas esti ensalutinta en tiun " "konton." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Enigu pasvorton por uzi dum ensaluto:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Ŝanĝi Pasvorton" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Pasvorto Ŝanĝo Malakceptita" #: pynicotine/gtkgui/dialogs/preferences.py:276 #, fuzzy msgid "No one" msgstr "Neniu" #: pynicotine/gtkgui/dialogs/preferences.py:277 #, fuzzy msgid "Everyone" msgstr "Ĉiuj" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 #, fuzzy msgid "Buddies" msgstr "Kamaradoj" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Fidindaj Kamaradoj" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Nenio" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Sekva dosiero" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "_Malfermu en Dosiera Administranto" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 #, fuzzy msgid "Search" msgstr "Serĉu" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Paŭzo" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Rekomenci" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "_Frumu dosierujo(j)n" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintakso: Majuskle nedistinga. Se enŝaltite, Python-regulaj esprimoj " "povas esti uzataj, alie nur ĵokeraj * kongruoj estas subtenataj." #: pynicotine/gtkgui/dialogs/preferences.py:320 #, fuzzy msgid "Filter" msgstr "Filtrilo" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Aldonu Elŝutan Filtrilon" #: pynicotine/gtkgui/dialogs/preferences.py:459 #, fuzzy msgid "Enter a new download filter:" msgstr "Enigu novan elŝutan filtrilon:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Ebligu regulajn esprimojn" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Redaktu Elŝutan Filtrilon" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Modifi la sekvan elŝutan filtrilon:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, fuzzy, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Malsukcesis! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtriloj Sukcesaj" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 #, fuzzy msgid "Abort" msgstr "Ĉesigi" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 #, fuzzy msgid "Retry" msgstr "_Reprovu" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Ĉirkaŭvojo" #: pynicotine/gtkgui/dialogs/preferences.py:804 #, fuzzy msgid "First In, First Out" msgstr "First In, First Out" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 #, fuzzy msgid "Username" msgstr "Uzantnomo" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Bloki IP-adreson" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ignoru Uzanton" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Enigu la nomon de la uzanto, kiun vi volas ignori:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Ignoru IP-adreson" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Enigu IP-adreson, kiun vi volas ignori:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* estas ĵokero" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Malpermesu Uzanton" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Enigu la nomon de la uzanto, kiun vi volas malpermesi:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Bloki IP-adreson" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Enigu IP-adreson, kiun vi volas bloki:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Ŝablono" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Anstataŭaĵo" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Cenzura Ŝablono" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Enigu ŝablonon, kiun vi volas cenzuri. Aldonu spacojn ĉirkaŭ la ŝablono se " "vi ne volas kongrui ŝnurojn ene de vortoj (povas malsukcesi ĉe la komenco " "kaj fino de linioj)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Cenzuritaj Ŝablonoj" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Anstataŭaĵo" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Enigu la tekstan ŝablonon kaj anstataŭaĵon, respektive:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Anstataŭaĵo" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Defaŭlte" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Montru konfirman dialogon" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Kuru en la fono" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "aŭdaca" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "kursivo" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "substreki" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normala" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Mesaĝoj" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Listo de amikoj en Babilejoj" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Supre" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Fundo" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Maldekstre" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Ĝuste" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 #, fuzzy msgid "Online" msgstr "Rete" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 #, fuzzy msgid "Away" msgstr "For" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 #, fuzzy msgid "Offline" msgstr "Senrete" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Pasvorto Ŝanĝo Malakceptita" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Emfazu" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Fenestro" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Konektita (Pleto)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "For (Pleto)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Senrete" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Mesaĝo (Pleto)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 #, fuzzy msgid "Protocol" msgstr "Protokolo" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Komando:" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "URL-traktiloj" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Enigu la protokolon kaj komandon por la URL-manilo, respektive:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Komando:" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Enigu novan virtualan nomon por '%(dir)s':" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Uzantnomo;APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "Klientonomo (ekz. amarok, aŭdaca, exaile) aŭ malplena por aŭto:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Uzantnomo:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Komando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Titolo" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Nun Ludante (tipe \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Artisto" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Daŭro" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 #, fuzzy msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "Komento" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Albumo" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Voja Nombro" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "Jaro" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Dosiernomo (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Programo" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Ebligita" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Kromaĵoj" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Neniu Kromaĵo Elektita" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Reto" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Uzantinterfaco" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 #, fuzzy msgid "Shares" msgstr "Akcioj" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 #, fuzzy msgid "Uploads" msgstr "Alŝutoj" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 #, fuzzy msgid "Searches" msgstr "Serĉoj" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Bildo de uzanto" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Babilejoj" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Nun Ludante" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 #, fuzzy msgid "Logging" msgstr "Enhavo" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Malpermesitaj Uzantoj" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Ignoritaj Uzantoj" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Kromaĵoj" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "URL-traktiloj" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Preferoj" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Elektu Dosiernomon por Agorda Rezervo" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Transiga Statistiko" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Sumo ekde %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Restarigi Transigajn Statistikojn?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Ĉu vi vere volas restarigi transigajn statistikojn?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "_Dezirlisto" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Deziru" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Serĉi Eron" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Redaktado" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Enigu novan virtualan nomon por '%(dir)s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Ĉu forigi dezirliston?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Ĉu vi vere volas forigi vian dezirliston?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 #, fuzzy msgid "Path" msgstr "Vojo" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Rekomenci" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "P_aŭzo" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Finita / Filtrita" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 #, fuzzy msgid "Finished" msgstr "Finita" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 #, fuzzy msgid "Paused" msgstr "Paŭzita" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 #, fuzzy msgid "Filtered" msgstr "Filtrita" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Forigita" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "Envico…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Ĉio…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Forigi Vidovicajn Elŝutojn" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Ĉu vi vere volas forigi ĉiujn vicajn elŝutojn?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Forigi Ĉiuj Elŝutoj" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Ĉu vi vere volas forigi ĉiujn elŝutojn?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Ĉu elŝuti %(num)i dosierojn?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Ĉu vi vere volas elŝuti %(num)i dosierojn el la dosierujo de %(user)s " "%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Elŝutu Dosierujon" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Ŝatas" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Malŝatas" #: pynicotine/gtkgui/interests.py:104 #, fuzzy msgid "Rating" msgstr "Taksado" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Ero" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Rekomendoj por Item" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "Mi ŝatas tion ĉi" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "Mi _Malŝatas Ĉi tion" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Rekomendoj" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Similaj Uzantoj" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Rekomendoj" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Similaj Uzantoj" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, fuzzy, python-format msgid "Private Message from %(user)s" msgstr "Privata Mesaĝo de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Dezirlisto Rezultoj Trovita" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Bildo de uzanto" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Babilejoj" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 #, fuzzy msgid "Interests" msgstr "Interesoj" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Babilado" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "Konektoj" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "Mesaĝoj" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "Translokigoj" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "Diversaj" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Trovu…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopiu" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopiu Ĉion" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Vidi Sencimigajn Protokolojn" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Vidi Translokigan Protokolon" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategorioj" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Klara Ŝtipvido" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Elŝutoj: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Alŝutoj: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Skanado de Akcioj" #: pynicotine/gtkgui/mainwindow.py:1189 #, fuzzy msgid "Scanning Shares" msgstr "Skanado de Akcioj" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Sendi mesaĝon" #: pynicotine/gtkgui/popovers/roomlist.py:68 #, fuzzy msgid "Room" msgstr "Ĉambro" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 #, fuzzy msgid "Users" msgstr "Uzantoj" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Aliĝu al Ĉambro" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Forlasu Ĉambron" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Disown Privata Ĉambro" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Nuligi Ĉambron Membrecon" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Fermu ĉiujn langetojn…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "_Fermu Tab" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Rigardu Babilejan Protokolon" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Forigi babilejan protokolon…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Translokigaj Agoj" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Ĉu vi vere volas konstante forigi ĉiujn registritajn mesaĝojn por ĉi tiu " "uzanto?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Mesaĝo(j) sendita(j) dum vi estis eksterrete. Tempmarkoj estas raportitaj " "de la servilo kaj povas esti malŝaltitaj." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Tutmonda" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Kamaradoj" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Ĉambroj" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Uzanto" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "En Vico" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Dosiertipo" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 #, fuzzy msgid "Filename" msgstr "Dosiernomo" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 #, fuzzy msgid "Size" msgstr "Grandeco" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kvalito" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopiu _Dosiera Vojo" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 #, fuzzy msgid "Copy _URL" msgstr "Kopiu _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Kopiu Dosierujo U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Elŝutu dosiero(j)n" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Elŝutu dosiero(j)n _Al…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Elŝutu _dosierujo(j)n" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Elŝutu F_older(j) Al…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Rigardu Uzantan _Profilon" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Frumu dosierujo(j)n" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "Propraĵoj de dosierujo" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopiu Serĉtermino" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Forigi Ĉiuj Rezultoj" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Malplenigi Filtrilan Historion" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "_Rezultaj Filtriloj" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIVATA]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Rezultaj Filtriloj [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Rezultaj Filtriloj" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Forigi ĉiujn aktivajn filtrilojn" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Aldonu Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Forigi Wi_sh" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Elektu Uzantajn Translokiĝojn" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Entute" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Rezulto" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Elektu Celon por Elŝuti Dosieron(j)n de Uzanto" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Elektu Dosierujon" #: pynicotine/gtkgui/transfers.py:60 #, fuzzy msgid "Queued" msgstr "Envico" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "prioritatita" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "privilegiita" #: pynicotine/gtkgui/transfers.py:63 #, fuzzy msgid "Getting status" msgstr "Akirante statuson" #: pynicotine/gtkgui/transfers.py:64 #, fuzzy msgid "Transferring" msgstr "Transdono" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Konekto fermita de samulo" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Konektoj" #: pynicotine/gtkgui/transfers.py:67 #, fuzzy msgid "User logged off" msgstr "Uzanto malsalutis" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Nuligite" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Elŝuta dosierujo eraro" #: pynicotine/gtkgui/transfers.py:73 #, fuzzy msgid "Local file error" msgstr "Loka dosiera eraro" #: pynicotine/gtkgui/transfers.py:74 #, fuzzy msgid "Banned" msgstr "Malpermesita" #: pynicotine/gtkgui/transfers.py:75 #, fuzzy msgid "File not shared" msgstr "Dosiero ne dividita" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Pritraktata ĉesigo" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Translokigoj" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Envico" #: pynicotine/gtkgui/transfers.py:182 #, fuzzy msgid "Percent" msgstr "Procento" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Tempo Pasis" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Tempo restas" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Malferma Listo" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Malfermu en Dosiero_Manaĝero" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "_Serĉu" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Forigi Ĉion" #: pynicotine/gtkgui/transfers.py:874 #, fuzzy msgid "Select User's Transfers" msgstr "Elektu Uzantajn Translokiĝojn" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "_Aborti" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Finita / Abortita / Malsukcesita" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Finita / Filtrita" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Malsukcesis" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Uzanto malsalutis" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Forigi Vidovicajn Alŝutojn" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Ĉu vi vere volas forigi ĉiujn envicigitajn alŝutojn?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Forigi Ĉiuj Alŝutoj" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Ĉu vi vere volas forigi ĉiujn alŝutojn?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Konservu Liston de Akcioj al Disko" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Alŝutu Dosierujon (kun Subdosierujoj) Al Uzanto" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopiu _Dosiervojon" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Elŝutu _dosierujo(j)n" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Elŝutu F_older(j) Al…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Dosiernomo" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Alŝutu_dosiero(j)" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Alŝutu dosierujon al…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Elŝutu Dosierujon _Al…" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "La listo de uzanto de komunaj dosieroj estas malplena. Aŭ la uzanto nenion " "kundividas, aŭ ili private dividas dosierojn." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Ne eblas peti komunajn dosierojn de uzanto. Aŭ la uzanto estas eksterrete, " "vi ambaŭ havas fermitan aŭskultan havenon, aŭ estas provizora problemo pri " "konektebleco." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Elektu Celon por Elŝuti Dosierujon de Uzanto" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Alŝutu Dosierujon (kun Subdosierujoj) Al Uzanto" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Alŝutu dosierujon al…" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Enigu la nomon de la uzanto al kiu vi volas alŝuti:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "Alŝutu" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Elektu Celon por Elŝuti Dosieron(j)n de Uzanto" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Alŝutu dosiero(j)" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Bildo:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Konservu Bildon" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Malsukcesis ŝargi bildon por uzanto %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Ne eblas peti informojn de uzanto. Aŭ vi ambaŭ havas fermitan aŭskultan " "havenon, la uzanto estas eksterrete, aŭ estas provizora problemo pri " "konektebleco." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Forigi Wi_sh" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Aldonu amikon…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Malpermesu Uzanton" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ignoru Uzanton" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "Yes" msgstr "Jes" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "No" msgstr "Ne" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Bonvolu enigi nombron da tagoj!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Donacu tagojn de viaj Soulseek-privilegioj al uzanto %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "%(days)s tagoj restas" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Donacaj Privilegioj" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Donacaj Privilegioj" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Fermu langeton" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Jes" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "bone" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Elektu Dosieron" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Elektu Dosierujon" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Elekti ĉiujn" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Elektu Bildon" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Ĉiuj bildoj" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Konservi kiel…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Neniu)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "_Fermu Tab" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Ĉu fermi ĉiujn langetojn?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Ĉu vi vere volas fermi ĉiujn langetojn?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Nelegitaj Tabs" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Ĉu fermi ĉiujn langetojn?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "_Fermu Tab" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Dosiero(j) Elektita(j)." #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Fumu dosierojn" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Aldonu amikon…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Montru IP A_adreson" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Privataj Ĉambroj" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Forigi el Privata Ĉambro %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Aldoni al Privata Ĉambro %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Forigi kiel Operaciiston de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Aldoni kiel Operaciisto de %s" #: pynicotine/gtkgui/widgets/textview.py:452 #, fuzzy msgid "--- old messages above ---" msgstr "--- malnovaj mesaĝoj supre ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Efektive: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Aŭdio" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Bildo" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arkivo" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Diversaj" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokumento/Teksto" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Eraro dum ŝarĝo de kutima ikono %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Kaŝi Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Montru Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Kolumno #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Negrupigita" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Grupo per Dosierujo" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Grupo laŭ Uzanto" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Ĉu vi vere volas eliri Nicotine+?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Uzanto %s jam ekzistas, kaj la pasvorto, kiun vi enigis, estas malvalida. " "Bonvolu elekti alian uzantnomon se ĉi tio estas via unua fojo ensalutanta." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Pasvorto" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Por krei novan Soulseek-konton, enigu vian deziratan uzantnomon kaj " "pasvorton. Se vi jam havas konton, enigu viajn ekzistantajn ensalutajn " "detalojn." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Ne eblis skribi al protokoldosiero \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Ne eblas konservi dosieron %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andoro" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Unuiĝintaj Arabaj Emirlandoj" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganio" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigvo & Barbudo" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Angvilo" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albanio" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenio" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angolo" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktio" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentino" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Usona Samoo" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Aŭstrio" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Aŭstralio" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Arubo" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Alandaj Insuloj" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbajĝano" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnio kaj Hercegovino" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbado" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladeŝo" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgio" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkino" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgario" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Barejno" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundo" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benino" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Sankta Bartolomeo" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunejo Darussalam" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivio" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius kaj Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brazilo" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamoj" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Butano" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Insulo Bouvet" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Bocvano" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Belorusio" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belizo" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanado" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kokosaj (Keeling) Insuloj" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Demokratia Respubliko Kongo" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Centafrika Respubliko" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Svislando" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Ebura Bordo" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cook-Insuloj" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Ĉilio" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerunio" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Ĉinio" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolombio" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Kostariko" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kubo" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Kuraçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Kristnaskinsulo" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Kipro" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Ĉeĥio" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Germanujo" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Ĝibutio" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Danio" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominiko" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominika Respubliko" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Alĝerio" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ekvadoro" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estonio" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egiptujo" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Okcidenta Saharo" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritreo" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Hispanio" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopio" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Eŭropo" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Finnlando" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fiĝioj" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandinsuloj (Malvinoj)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronezio" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Feroaj Insuloj" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Francio" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabono" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Britio" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenado" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Kartvelio" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Franca Gujano" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Ĝerzjako" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ganao" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Ĝibraltaro" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Gronlando" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambio" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Gvineo" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Gvadelupo" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Ekvatora Gvineo" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Grekio" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Suda Kartvelio & Suda Sandviĉinsuloj" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Gvatemalo" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Gvamo" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Gvineo Bisaŭa" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Gujano" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Honkongo" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Insuloj Heard kaj McDonald" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduro" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroatio" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haitio" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Hungario" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonezio" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irlando" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Israelo" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Manksinsulo" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "Barato" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Brita Hinda Oceana Teritorio" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irako" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Irano" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Islando" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italio" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Ĵerzo" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamajko" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordanio" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japanio" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenjo" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgizio" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kamboĝo" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribato" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komoroj" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Sankta-Kito kaj Neviso" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Norda Koreio" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Sudkoreio" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuvajto" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Kajmanaj Insuloj" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazaĥio" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laoso" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libano" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Sankta Lucio" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liĥtenŝtejno" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Srilanko" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberio" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Litovio" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luksemburgio" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Latvio" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libio" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Maroko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldavio" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Sankta Marteno" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskaro" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marŝala Insularo" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Norda Makedonio" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Malio" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Mjanmao" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolio" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Makao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Nord-Marianoj" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martiniko" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Maŭritanio" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserato" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malto" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Maŭricio" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldivoj" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malavio" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Meksiko" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malajzio" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mozambiko" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibio" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Nov-Kaledonio" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niĝero" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolkinsulo" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Niĝerio" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nikaragvo" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Nederlando" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norvegio" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepalo" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauro" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Nov-Zelando" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Omano" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panamo" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peruo" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Franca Polinezio" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Nova Gvineo" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filipinoj" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistano" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Pollando" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre & Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitkarno" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Porto-Riko" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Ŝtato de Palestino" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugalio" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palaŭo" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paragvajo" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Kataro" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Reunio" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Rumanio" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbio" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Rusio" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Ruando" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saŭdiarabio" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Salomonoj" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Sejŝeloj" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudano" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Svedio" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapuro" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Sankta Heleno" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovenio" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Insuloj Svalbardo kaj Jan Mayen" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovaka Respubliko" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Siera-Leono" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegalo" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalio" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Surinamo" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Suda Sudano" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome & Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "Salvadoro" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Sirio" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Esvatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turkoj kaj Kajkoj" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Ĉadio" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Francaj Sudaj Teritorioj" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Iri" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Tajlando" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Taĝikio" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Timor-Leste" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenio" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunizio" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tongo" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turkio" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidado kaj Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalo" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Tajvano" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzanio" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukrainio" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Ugando" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "Malgrandaj Eksteraj Insuloj de Usono" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Usono" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Urugvajo" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekio" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Sankta Seĝo (Vatikanurbo Ŝtato)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Sankta Vincento kaj Grenadinoj" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuelo" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Britaj Virgulininsuloj" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Usonaj Virgulininsuloj" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vjetnamio" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatuo" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Valiso kaj Futuno" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoo" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemeno" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Majoto" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Sudafriko" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambio" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabvo" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Teksto al parolado por mesaĝo malsukcesis: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Bonvolu provizi kaj vian Last.fm uzantnomon kaj API-ŝlosilon" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Nun Ludanta Formato" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Ne eblis konektiĝi al Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Ne eblis ricevi lastatempan trakon de Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Ne eblis trovi taŭgan MPRIS-ludilon" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Trovis plurajn MPRIS-ludilojn: %(players)s. Uzante: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Aŭtomate detektita MPRIS-ludilo: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Io misfunkciis dum pridemando de %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Bonvolu doni vian uzantnomon ListenBrainz" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Ne eblis konektiĝi al ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Vi ŝajnas ne aŭskulti ion ajn nun" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "ListenBrainz: Ne eblis ricevi nunan trakon de ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Retaj Serĉoj" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Kompletaj enkonstruitaj komandoj" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Ne eblas konektiĝi al la servilo. Kialo: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Malkonektita de servilo %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Ŝaltas vian for-statuson" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Ebligu kromaĵojn" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Malplenigu la babilejon" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Diru ion en la tria persono" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Anoncu la kanton nuntempe ludantan" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Aliĝu aŭ kreu ĉambron…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Forlasu la nunan ĉambron" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Diru mesaĝon en specifita babilejo" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Privata Babilejo" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Fermu la nunan privatan babilejon" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Petu informojn de uzanto" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Sendu privatan mesaĝon al ĉiuj interretaj amikoj:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Aldonu uzanton al via kamaradlisto" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Forigu uzanton el via kamaradlisto" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Foliumi dosierojn de uzanto 'uzanto'" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Informoj pri Uzanto" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Montru IP por uzanto" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Bloki konektojn de uzanto aŭ IP-adreso" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Forigi uzanton el via malpermesa listo" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Silentigi mesaĝojn de uzanto aŭ IP-adreso" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Forigi uzanton el via ignora listo" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Aldonu Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Forigi Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Reskani akciojn" #: pynicotine/plugins/core_commands/__init__.py:239 #, fuzzy msgid "Rescan shares" msgstr "Reskani akciojn" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Komencu tutmondan dosierserĉon" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Serĉu dosierojn kaj dosierujojn (ĝusta kongruo)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Serĉu dosierojn kaj dosierujojn (ĝusta kongruo)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Serĉu la akciojn de uzanto por 'demando'" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Listo de %(num)i disponeblaj komandoj:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Listo de %(num)i disponeblaj komandoj kongruaj kun \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Tajpu %(command)s por listigi similajn komandojn" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Tajpu %(command)s por listigi disponeblajn komandojn" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s aliĝis al la ĉambro" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Fermu la nunan privatan babilejon" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Malpermesita" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Malpermesu Uzanton" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignoritaj Uzantoj" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ignoru Uzanton" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Ŝargita kromaĵo %s" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Ne eblas ŝargi kromprogramon %(name)s. Kroma dosierujo nomo enhavas " "nevalidajn signojn: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konfliktanta %(interface)s komando en kromaĵo %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Ŝargita kromaĵo %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Ne eblas ŝargi kromprogramon %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Malŝarĝita kromaĵo %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Ne eblas malŝarĝi kromaĵon %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Kromaĵo %(module)s malsukcesis kun eraro %(errortype)s: %(error)s.\n" "Spuro: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Mempriskribo" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Mankas %s argumento" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Nevalida Soulseek URL: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Uzado: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Nekonata komando: %(command)s. Tajpu %(help_command)s por listigi " "disponeblajn komandojn." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Neniuj UPnP-aparatoj trovitaj" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Malsukcesis plusendi eksteran havenon %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Ekstera haveno %(external_port)s sukcese plusendita al loka IP-adreso " "%(ip_address)s haveno %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privata Mesaĝo de %(user)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Serĉante deziralisteron \"%s\"" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Dezirlista atendperiodo agordita al %s sekundoj" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Uzanto %(user)s serĉas \"%(query)s\", donante %(num)i rezultojn" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Reskanante akciojn…" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Reskanante akciojn…" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Reskanado kompleta: %(num)s dosierujoj trovitaj" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Grava eraro okazis dum reskanado de akcioj. Se ĉi tiu problemo daŭras, " "forigu %(dir)s/*.db kaj provu denove. Se tio ne helpas, bonvolu registri " "cimraporton kun ĉi tiu stakspuro inkluzivita: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Eraro dum skanado de dosiero %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Eraro dum skanado de dosierujo %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Eraro dum skanado de metadatenoj por dosiero %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Reskanado ĉesigita pro nedisponeblaj akcioj" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Uzanto %(user)s foliumas vian liston de komunaj dosieroj" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Malsukcesis preni la komunan dosierujon %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Ne eblas legi datumbazon de akcioj. Bonvolu reskani viajn akciojn. Eraro: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Specifita retinterfaco '%s' ne ekzistas" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Ne povas aŭskulti en haveno %(port)s. Certigu, ke neniu alia aplikaĵo uzas " "ĝin, aŭ elektu alian havenon. Eraro: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Aŭskultu sur haveno %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Ne povas konektiĝi al servilo %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Aŭtomate konekti al servilo dum ekfunkciigo" #: pynicotine/slskproto.py:1202 #, fuzzy, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Konektante al %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Konektita al servilo %(host)s:%(port)s, ensalutu…" #: pynicotine/slskproto.py:1520 #, fuzzy, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Malkonektita de servilo %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Iu ensalutinta al via Soulseek-konto aliloke" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Alŝuto finita: uzanto %(user)s, IP-adreso %(ip)s, dosiero %(file)s" #: pynicotine/uploads.py:409 #, fuzzy, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Alŝuto ĉesigita, uzanto %(user)s dosiero %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "Alŝutu I/O-eraro: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Alŝuto komencita: uzanto %(user)s, IP-adreso %(ip)s, dosiero %(file)s" #: pynicotine/userbrowse.py:167 #, fuzzy, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Ne povas krei dosierujon '%(folder)s', raportita eraro: %(error)s" #: pynicotine/userbrowse.py:218 #, fuzzy, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Ŝargado de akcioj de disko malsukcesis: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Konservita listo de komunaj dosieroj por uzanto '%(user)s' al %(dir)s" #: pynicotine/userbrowse.py:268 #, fuzzy, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Ne povas konservi akciojn, '%(user)s', raportita eraro: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Bildo konservita al %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Ne povas konservi %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Uzanto %(user)s legas viajn uzantinformojn" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Ne eblas konektiĝi al la servilo. Kialo: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Ne povas konekti" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Ne povas preni la IP de uzanto %s, ĉar ĉi tiu uzanto estas eksterrete" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP-adreso de uzanto %(user)s estas %(ip)s, haveno %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek Kliento" #: pynicotine/users.py:356 #, fuzzy, python-format msgid "%i privileged users" msgstr "%i privilegiitaj uzantoj" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Vi ne havas privilegiojn. Privilegioj ne estas bezonataj, sed permesas viajn " "elŝutojn esti vicigitaj antaŭ ne-privilegiaj uzantoj." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Restas %(days)i tagoj, %(hours)i horoj, %(minutes)i minutoj, %(seconds)i " "sekundoj da elŝutaj privilegioj." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Via pasvorto estis ŝanĝita. Pasvorto estas %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Pasvorto Ŝanĝo Malakceptita" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Ne eblas konservi dosieron %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Ne povas konservi %(filename)s: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Io misfunkciis dum legado de dosiero %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Provante ŝargi sekurkopion de dosiero %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Ne eblas konservi dosieron %(path)s: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Ne eblas konservi dosieron %(path)s: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Ne eblas restarigi antaŭan dosieron %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Aldonu amikon…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Serĉa termino…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Serĉa termino…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Sendi mesaĝon" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Ŝaltu Teksto-al-Parolado" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Helpo pri komando de babilejo" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Logu" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Ĉambra muro" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Ĉambra muro" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Kreita de" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Tradukita de" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Permesilo" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Antaŭa dosiero" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Bonvenon al Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Agordi…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "Se via dezirata uzantnomo jam estas prenita, oni petos vin ŝanĝi ĝin." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Se via aŭskulta haveno estas fermita, vi nur povos konektiĝi al uzantoj, " "kies aŭskultaj havenoj estas malfermitaj." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Se necese, elektu alian aŭskultan havenon sube. Ĉi tio ankaŭ povas esti " "farita poste en la preferoj." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Elŝutu Dosieroj al Dosierujo" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Kunhavigi Dosierujojn" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Uzantoj de Soulseek povos elŝuti el viaj akcioj. Kontribuu al la reto " "Soulseek dividante vian propran kolekton kaj redividante tion, kion vi " "elŝutis de aliaj uzantoj." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Vi pretas uzi Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donacado al Soulseek donas al vi privilegiojn por certa tempoperiodo. Se vi " "havas privilegiojn, viaj elŝutoj estos vicigitaj antaŭ ne-privilegiaj " "uzantoj." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Antaŭa dosiero" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Sekva dosiero" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Dosiernomo" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Lasta Rapido" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Eksporto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Klavaraj ŝparvojoj" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Generalo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 #, fuzzy msgid "Connect" msgstr "Konekti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 #, fuzzy msgid "Disconnect" msgstr "Malkonekti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Reskani Akciojn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Montru Log-Panelon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Agordu ensalutadon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 #, fuzzy msgid "Quit" msgstr "Forlasu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Menuoj" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Malfermu Ĉefan Menuon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Malfermu Kuntekstan Menuon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Langetoj" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Ŝanĝi Ĉefan Langeton" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Iru al Antaŭa Malĉefa Langeto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Iru al Sekva Malĉefa Langeto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Fermu Sekundaran Langeton" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Fermu Sekundaran Langeton" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Listoj" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Elekti ĉiujn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Forigi Elektitan Vicon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Redaktado" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Tranĉi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Alglui" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Enigu Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Elekti ĉiujn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 #, fuzzy msgid "Find" msgstr "Trovu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Trovu Sekvan Matĉon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Trovu Antaŭan Matĉon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Translokigoj" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Rekomenci/Reprovi Translokigon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Paŭzi / Ĉesi Translokigon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Elŝutu Dosierujon _Al…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Konservu Liston de Akcioj al Disko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Refreŝigi dosierojn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Plivastigi / Kolapsigi ĉiujn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Ne eblas Kunhavigi Dosierujon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Serĉu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "_Rezultaj Filtriloj" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Nuna Sesio" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Finitaj Elŝutoj" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Elŝutita Grandeco" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Finitaj Alŝutoj" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Alŝutita Grandeco" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Entute" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Rekomenci" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Dezirlistaĵoj estas aŭtomate serĉataj je regulaj intervaloj, por malkovri " "nekutimajn dosierojn." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Aldonu Deziron…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Forigi Ĉion…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Dosiero elŝutita" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Klara Finita" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Forigi Ĉiuj Elŝutoj" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Forigi Ĉion…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Personaj Interesoj" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Aldonu ion, kion vi ŝatas…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Personaj Malŝatoj" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Aldonu ion, kion vi malŝatas…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Rekomendoj" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Malfermu Ĉefan Menuon" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Ĉambro…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Uzantnomo…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Serĉa termino…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Serĉaj ŝablonoj: kun vorto = termino, sen vorto = -termino, parta vorto = " "*erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Serĉu amplekson" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Dezirlisto" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Agordi serĉojn" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Enigu serĉterminon por serĉi dosierojn kunhavitajn de aliaj uzantoj en la " "Soulseek-reto" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Dosiera grupiga reĝimo" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Agordi elŝutojn" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Dosieroj, kiujn vi elŝutas de aliaj uzantoj, estas vicigitaj ĉi tie, kaj " "povas esti paŭzitaj kaj rekomencitaj laŭpeto" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Agordi alŝutojn" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Provoj de uzantoj elŝuti viajn komunajn dosierojn estas vicigitaj kaj " "administritaj ĉi tie" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "_Malferma Listo" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Malfermas lokan liston de komunaj dosieroj, kiuj antaŭe estis konservitaj al " "disko" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Agordu Akciojn" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Enigu la nomon de uzanto, kies komunajn dosierojn vi ŝatus foliumi. Vi ankaŭ " "povas konservi la liston al disko, kaj inspekti ĝin poste." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Personaj Malŝatoj" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Agordu ensalutadon" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Enigu la nomon de uzanto por vidi ilian uzantan priskribon, informojn kaj " "personan bildon" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Babilhistorio" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Agordi akciojn" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Enigu la nomon de uzanto por komenci tekstan konversacion kun ili private" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Mesaĝoj" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ignoritaj Uzantoj" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Aldonu uzantojn kiel amikojn por dividi specifajn dosierujojn kun ili kaj " "ricevi sciigojn kiam ili estas interretaj" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Aliĝu aŭ kreu ĉambron…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Aliĝu al ekzistanta babilejo aŭ kreu novan ĉambron por babili kun aliaj " "uzantoj en la reto Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Rigardu Uzantan Profilon" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Serĉa termino…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Konektoj" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Elŝuto (rapideco/aktivaj uzantoj)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Alŝuto (rapideco/aktivaj uzantoj)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Serĉa termino…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Elŝutu Rapidlimojn" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Limigu alŝutan rapidon:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Alternativa elŝuta rapidlimo (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternativa elŝuta rapidlimo (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Serĉa termino…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Refreŝigi liston de ĉambro" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Montri feed de publika babilejo mesaĝoj" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "_Akceptu invitojn pri privataj ĉambroj" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "La ĉambra muro-trajto permesas al uzantoj en ĉambro specifi unikan mesaĝon " "por montri al aliaj. Lastatempaj mesaĝoj estas montritaj supre." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Agordu murmesaĝon…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Serĉrezultaj Filtriloj" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Serĉrezultaj filtriloj estas uzataj por rafini kiuj serĉrezultoj estas " "montrataj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Ĉiu listo de serĉrezultoj havas sian propran filtrilon, kiu povas esti " "malkaŝita ŝaltante la butonon de Rezultaj Filtriloj. Filtrilo konsistas el " "pluraj kampoj, kiuj ĉiuj estas aplikataj kiam oni premas Enter en iu ajn el " "ĝiaj kampoj. Filtrilo estas aplikata tuj al rezultoj jam ricevitaj, kaj " "ankaŭ al tiuj ankoraŭ alvenontaj. Por vidi la plenajn rezultojn denove, " "simple forigu la filtrilon de ĉiuj terminoj kaj reapliku ĝin. Kiel la nomo " "sugestas, serĉrezulta filtrilo ne povas pligrandigi vian originalan serĉon, " "ĝi nur povas malvastigi ĝin. Por plivastigi aŭ ŝanĝi viajn serĉajn " "terminojn, faru novan serĉon." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Kiel la nomo sugestas, serĉrezulta filtrilo ne povas vastigi vian originan " "serĉon, ĝi nur povas malvastigi ĝin. Por plivastigi aŭ ŝanĝi viajn serĉajn " "terminojn, faru novan serĉon." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "_Rezultaj Filtriloj" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Inkluzivi Tekston" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Dosieroj kaj dosierujoj enhavantaj ĉi tiun tekston estos montritaj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Majuskleco estas nesentema, sed vortordo estas grava: 'Spears Bretonio' ne " "montros neniun 'Brittany Spears'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Uzu | (aŭ pipoj) por apartigi plurajn ekzaktajn frazojn. Ekzemplo:\n" " Remiksaĵo|Dub Mix|Instrumenta" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Ekskludi Tekston" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Kiel supre, sed dosieroj kaj dosierujoj estas filtritaj se la teksto " "kongruas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtrilas dosierojn surbaze de ilia dosiera etendo." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Multoblaj dosieraj etendoj povas esti specifitaj, kiuj siavice plilarĝigos " "la liston de rezultoj.\n" " Ekzemplo: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Eblas ankaŭ inversigi la filtrilon, specifante dosier-etendojn, kiujn vi ne " "volas en viaj rezultoj.\n" " Ekzemplo: !mp3|!jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Dosiera Grandeco" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtrilas dosierojn laŭ ilia grandeco de dosiero." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Defaŭlte, la unuo uzata estas bajtoj kaj dosieroj pli grandaj ol aŭ egalaj " "al la valoro estos kongruaj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Aldonu b, k, m aŭ g (alternative kib, mib aŭ gib) por specifi bajtajn, " "kibibajtajn, mebibajtajn aŭ gibibajtajn unuojn:\n" " <1024k trovos dosierojn 1024 kibibajtoj (t.e. 1 mebibajto) aŭ pli " "malgrandaj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Antaŭmeti = al valoro por specifi ĝustan kongruon:\n" " =1024 nur kongruas dosierojn kun grandeco de 1024 bajtoj (t.e. 1 " "kibibajto)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Antaŭmeti = al valoro por specifi ĝustan kongruon:\n" " =1024 nur kongruas dosierojn kun grandeco de 1024 bajtoj (t.e. 1 " "kibibajto)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Antaŭmetu < aŭ > por trovi dosierojn pli malgrandajn/pli grandajn ol la " "donita valoro:\n" " >10.5m|<1g por montri dosierojn pli grandajn ol 10.5 MiB (mebibajtoj),\n" " sed pli malgranda ol 1 GiB (gibibajtoj), uzu | inter kondiĉoj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Por oportuno, la variantoj kb, mb, kaj gb por la pli konataj kilo-, mega-, " "kaj gigabajtaj unuoj ankaŭ povas esti uzataj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtrilas dosierojn surbaze de ilia bitrateco." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Valoroj devas esti enigitaj nur kiel nombraj ciferoj. La unuo ĉiam estas Kb/" "s (Kilobitoj por sekundo)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Kiel Dosiera Grandeco (supre), operatoroj =, !, <, kaj > povas esti uzataj, " "kaj pluraj kondiĉoj povas esti specifitaj per | tuboj:\n" " >256|<1411 por montri dosierojn kun bitrapideco de almenaŭ 256 Kb/s\n" " kun maksimuma bitrapideco de 1411 Kb/s." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtrilas dosierojn surbaze de ilia bitrateco." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Defaŭlte, dosieroj pli longaj ol aŭ egalaj al la enigita daŭro estos " "kongruaj, krom se operatoro (=, !, <, aŭ >) estas uzata." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Enigu krudan valoron en sekundoj aŭ uzu la tempoformatojn MM:SS kaj HH:MM:" "SS:\n" " > 5:30 por montri dosierojn almenaŭ 5 minutojn kaj duonon.\n" " <5:30:00 montras dosierojn longajn malpli ol 5 horojn kaj duonon." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Multoblaj kondiĉoj povas esti specifitaj per | tubaj apartigiloj:\n" " >6:00|<12:00 por montri dosierojn inter 6 kaj 12 minutojn.\n" " !9:54|!8:43|!7:32 por kaŝi iujn specifajn dosierojn el la rezultoj.\n" " =5:34|=4:23|=3:05 por inkluzivi dosierojn kun specifaj daŭroj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Uzas landkodojn difinitajn de ISO 3166-2 (vidu Vikipedion):\n" " 'Usono' nur resendos dosierojn de uzantoj konektitaj per Usono. Simile, " "'GB' resendas dosierojn de uzantoj kun IP-oj en Britio." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Pluraj landoj povas esti specifitaj per komoj aŭ spacoj." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Senpaga Slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Montru nur tiujn rezultojn de uzantoj, kiuj havas almenaŭ unu alŝutan fendo " "senpage. Ĉi tiu filtrilo estas aplikata tuj." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Alŝutu Rapidlimojn" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Limigu alŝutan rapidon:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Alternativa alŝuta rapideclimo (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternativa alŝuta rapideclimo (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Privata babila komando helpo" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Enmetu tekston…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtru en rezultoj, kies dosiervojoj enhavas la specifitan tekston. " "Multoblaj frazoj kaj vortoj povas esti precizigitaj, ekz. ekzakta frazo|" "muziko|termino|preciza frazo du" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Ekskludi tekston…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtru el rezultoj, kies dosiervojoj enhavas la specifitan tekston. " "Multoblaj frazoj kaj vortoj povas esti precizigitaj, ekz. ekzakta frazo|" "muziko|termino|preciza frazo du" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Dosiertipo…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Dosiertipo, ekz. flac|wav|ape aŭ !mp3|!m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Dosiera grandeco…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Dosiera grandeco, ekz. > 10,5 m < 1 g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bitrapideco…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, ekz. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Daŭro…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Daŭro, ekz. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Landokodo…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Landkodo, ekz. US|GB|ES aŭ !DE|!GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Malpermesu uzantojn aliri viajn komunajn dosierojn, laŭ uzantnomo, IP-adreso " "aŭ lando." #: pynicotine/gtkgui/ui/settings/ban.ui:43 #, fuzzy msgid "Country codes to block (comma separated):" msgstr "Landkodoj por bloki (kome apartigitaj):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Kodoj devas esti en formato ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Uzu kutiman geoblokan mesaĝon:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 #, fuzzy msgid "Use custom ban message:" msgstr "Uzu kutiman malpermesan mesaĝon:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adresoj" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Ebligu literumkontrolilon (postulas rekomencon)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Restarigu antaŭe malfermitajn privatajn babilojn ĉe ekfunkciigo" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Ebligu CTCP-similajn privatajn mesaĝajn respondojn (klienta versio)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Nombro de lastatempaj babillinioj por montri:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Nombro de lastatempaj babillinioj por montri:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Kompletigo" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Ebligu kompletigon de tabulado" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Ebligu kompletigan falliston" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Minimumaj signoj necesaj por montri la falmenumon:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Permesitaj Kompletigoj" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Kamaradoj" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Mesaĝo pri babilejo:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Ĉambroj" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Komandoj" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Tempomarkoj" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Formato de privata ĉambro:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 #, fuzzy msgid "Default" msgstr "Defaŭlte" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Formato de babilejo:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Teksto-al-Parolado" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Ebligu Teksto-al-Parolado" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Teksto-al-Parola komando:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Privata babilmesaĝo:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Mesaĝo pri babilejo:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Cenzuri" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Ebligu cenzuradon de tekstaj ŝablonoj" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Aŭtomate Anstataŭigi" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Ebligu aŭtomatan anstataŭigon de vortoj" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Autoclear finitaj/filtritaj elŝutoj de transiga listo" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Stoku finitajn elŝutojn en uzantnomaj subdosierujoj" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Duobla alklaku ago por elŝutoj:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Permesu al ĉi tiuj uzantoj sendi al vi dosierojn:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Dosierujoj" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Dosiero elŝutita" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Finitaj Elŝutoj" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Ricevitaj dosieroj:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 #, fuzzy msgid "Events" msgstr "Eventoj" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Rulu komandon post finiĝo de dosiero ($ por dosiervojo):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Rulu komandon post la elŝuto de dosierujo finiĝas ($ por dosierujo-vojo):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Elŝutu Filtrilojn" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Ebligu elŝutajn filtrilojn" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 #, fuzzy msgid "Add" msgstr "Aldoni" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 #, fuzzy msgid "Load Defaults" msgstr "Ŝargi defaŭltojn" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 #, fuzzy msgid "Verify Filters" msgstr "Kontrolu Filtrilojn" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Nekontrolita" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignoru babilmesaĝojn kaj serĉrezultojn de uzantoj, surbaze de uzantnomo aŭ " "IP-adreso." #: pynicotine/gtkgui/ui/settings/log.ui:82 #, fuzzy msgid "Log chatrooms by default" msgstr "Ensalutu babilejojn defaŭlte" #: pynicotine/gtkgui/ui/settings/log.ui:106 #, fuzzy msgid "Log private chat by default" msgstr "Ensalutu privatan babilejon defaŭlte" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Ensalutu translokigojn al dosiero" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Ensalutu sencimigajn mesaĝojn al dosiero" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Log-dosierformato:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Dosierujoj" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Dosierujo de protokoloj de Babilejo:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Dosierujo pri privataj protokoloj:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Dosierujo de translokigaj protokoloj:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Sencimiga protokolo-dosierujo:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Ensalutu al ekzistanta Soulseek-konto aŭ kreu novan. Uzantnomoj estas " "uskleksentemaj kaj unikaj." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Bloki IP-adreson" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Aŭskultanta portintervalo (postulas rekomencon):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "For Statuso" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutoj da neaktiveco antaŭ foriro (0 por malŝalti):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Aŭtomate responda mesaĝo kiam for:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Aŭtomate plusendi aŭskultan havenon (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Aŭtomate konekti al servilo dum ekfunkciigo" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek-servilo:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Ligas ligojn al specifa retinterfaco, utila por ekz. certigante ke VPN estas " "uzata ĉiam. Lasu malplena por uzi ajnan disponeblan interfacon. Ŝanĝu ĉi " "tiun valoron nur se vi scias, kion vi faras." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Aŭskultanta portintervalo (postulas rekomencon):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Nun Ludado ebligas al vi montri tion, kion ludas via plurmedia ludilo uzante " "la /nun komandon en babilejo." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 #, fuzzy msgid "Other" msgstr "Alia" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Nun Ludanta Formato" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Nun Ludanta mesaĝformato:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Testa Agordo" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Ebligu kromaĵojn" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "_Aldonu Kromaĵojn" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "_Aldonu Kromaĵojn" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Akirante statuson" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Akirante statuson" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Versio:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Kreita de" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Ebligu serĉhistorion" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Aliaj klientoj povas proponi eblon sendi private kundividitajn dosierojn en " "respondo al serĉpetoj. Tiaj dosieroj estas antaŭfiksitaj kun '[PRIVATA " "DOSIERO]', kaj ne estas elŝuteblaj krom se la alŝutanto donas eksplicitan " "permeson." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Montru private kundividitajn dosierojn en serĉrezultoj" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Limigu nombron da rezultoj por serĉo:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Ebligu serĉrezultajn filtrilojn defaŭlte" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Inkluzivi:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Ekskludi:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Dosiertipo:" #: pynicotine/gtkgui/ui/settings/search.ui:253 #, fuzzy msgid "Size:" msgstr "Grandeco:" #: pynicotine/gtkgui/ui/settings/search.ui:280 #, fuzzy msgid "Bitrate:" msgstr "Bitrapideco:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Daŭro:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Landokodo:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "Montru nur rezultojn de uzantoj kun disponebla alŝuta fendo." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Helpo pri Filtrilo de Rezultoj" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Retaj Serĉoj" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Respondu al serĉpetoj de aliaj uzantoj" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Serĉoj pli mallongaj ol ĉi tiu nombro da signoj estos ignoritaj:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "Maksimumaj serĉrezultoj por sendi per serĉpeto:" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Klara Serĉhistorio" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Malplenigi Filtrilan Historion" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Aŭtomate resanigas la enhavon de viaj komunaj dosierujoj dum ekfunkciigo. Se " "malebligita, viaj akcioj estas ĝisdatigitaj nur kiam vi mane iniciatas " "resanon." #: pynicotine/gtkgui/ui/settings/shares.ui:39 #, fuzzy msgid "Rescan shares on startup" msgstr "Reskanu akciojn dum ekfunkciigo" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Kamaradoj" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Reskani akciojn" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Autoclear finitaj/nuligitaj alŝutoj de transiga listo" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Duobla alklaku ago por alŝutoj:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Limigu alŝutan rapidon:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Per translokigo" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Totalaj translokigoj" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Alŝutu Slots" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Dosieroj estos alŝutitaj en cikla modo al la uzantoj atendantaj " "en atendovico.\n" "First In, First Out: Dosieroj estos alŝutitaj en la ordo en kiu ili estis " "vicigitaj." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Alŝuta vostotipo:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Vico-alŝutoj se totala transiga rapideco atingas (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Limigu nombron da alŝutaj fendoj al:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Priorigu ĉiujn amikojn" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "QueueLimoj" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Limigu nombron da rezultoj por serĉo:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Vidoviclimoj ne validas por amikoj" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Kazoj de $ estos anstataŭigitaj per la ligilo. La defaŭlta retumilo de la " "sistemo estos uzata en kazoj kie protokolo ne estis agordita." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Komando de Dosiera Administranto ($ por dosiervojo):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Restarigi Bildon" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Mempriskribo" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Bildo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 #, fuzzy msgid "Clear" msgstr "Klara" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Preferu malhelan reĝimon" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Uzu _Header Bar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Montru pleto-ikonon" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimumu al pleto dum ekfunkciigo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Aŭskultanta portintervalo (postulas rekomencon):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Fermante Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Sciigoj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Ebligu sonon por sciigaj ŝprucfenestroj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "Montru sciigon por privataj babilejoj kaj mencioj en la fenestrotitolo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Montru sciigajn ikonojn sur langetoj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Dosiero elŝutita" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Dosierujo elŝutita" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Privata mesaĝo de %s" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Mesaĝo pri babilejo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Kompletigo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Dezirlisto Rezultoj Trovita" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Restarigu antaŭe malfermitajn privatajn babilojn ĉe ekfunkciigo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Fermaj butonoj sur malĉefaj langetoj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Regula etikedkoloro de langeto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Ŝanĝita langeta etikedokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Elstarigita langeta etikedokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Videblaj ĉefaj langetoj:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Pozicio de langeto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Ĉefaj langetoj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Montri inversajn dosiervojojn en serĉaj kaj translokigaj vidoj (postulas " "rekomencon)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Reta interfaco (postulas rekomencon):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Listo de tekstokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Envicigita serĉrezulta tekstkoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Mesaĝo pri babilejo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Apero de uzantnomo de babilado:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Malproksima tekstokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Koloro de loka teksto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Malproksima tekstokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me ago tekstkoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Markita tekstokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "URL-liga tekstokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Usono" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Interreta tekstkoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "For tekstkoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Senreta tekstkoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Tekstaj Eniroj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Fonkoloro de enigo de teksto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Teksta eniga tekstokoloro:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Tiparoj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Tutmonda tiparo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Listo tiparo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Tiparo de tekstvido:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Babiltiparo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Transdona tiparo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Serĉtiparo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Foliumi tiparon:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Ikonoj" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Nekompleta dosierujo:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Ĉesi Uzanton(j)" #: pynicotine/gtkgui/ui/uploads.ui:116 #, fuzzy msgid "Ban User(s)" msgstr "Malpermesu uzanton(j)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Autoclear finitaj/nuligitaj alŝutoj de transiga listo" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Mesaĝoj" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Forigi Ĉiuj Alŝutoj" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Konservu Liston de Akcioj al Disko" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Refreŝigi dosierojn" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Komunaj Dosierujoj" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Komunaj Dosieroj" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Komunaj Dosierujoj" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Envicigitaj Alŝutoj" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Senpaga Alŝuto Slots" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Alŝuto Rapido" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Interesoj" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Donacaj Privilegioj…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Refreŝigi dosierojn" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Teamo Nicotine+" #, fuzzy #~ msgid "_Clear" #~ msgstr "_Klarigu" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Ne povas konservi %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Fidindaj Kamaradoj" #, fuzzy #~ msgid "Quit program" #~ msgstr "Forlasu programon" #, fuzzy #~ msgid "Username:" #~ msgstr "Uzantnomo:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Re_rekomendoj por Item" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Forigi Eron" #, fuzzy #~ msgid "_Remove" #~ msgstr "_Forigi" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Sendi mesaĝon" #, fuzzy #~ msgid "Send Message" #~ msgstr "Sendi mesaĝon" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Rigardu Uzantan Profilon" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Komencu Mesaĝadon" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Enigu la nomon de la uzanto al kiu vi volas sendi mesaĝon:" #, fuzzy #~ msgid "_Message" #~ msgstr "Mesaĝoj" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Enigu la nomon de la uzanto, kies akciojn vi volas vidi:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Rigardu Uzantan Profilon" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Enigu la nomon de la uzanto, kies akciojn vi volas vidi:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Fumu dosierojn" #, fuzzy #~ msgid "Password" #~ msgstr "Pasvorto" #, fuzzy #~ msgid "Download File" #~ msgstr "Elŝutu dosieron" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Similaj Uzantoj" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Enigu la uzantnomon de la persono kies dosierojn vi volas vidi" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Enigu la uzantnomon de la persono, kies informojn vi volas vidi" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Enigu la uzantnomon de la persono al kiu vi volas sendi mesaĝon" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Enigu la uzantnomon de la persono, kiun vi volas aldoni al via " #~ "kamaradlisto" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Enigu la nomon de ĉambro al kiu vi volas aliĝi. Se la ĉambro ne ekzistas, " #~ "ĝi estos kreita." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Montru _Logpanelon" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Konservu _Bildon" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Filtris malĝustan serĉrezulton %(filepath)s de uzanto %(user)s por " #~ "serĉdemando \"%(query)s\"" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Iuj klientoj ne sendas serĉrezultojn se specialaj signoj estas " #~ "inkluzivitaj." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Forigi specialajn signojn de serĉaj terminoj" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problemo por ekzekuti '%s'" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemo dum ekzekuto en dosierujo: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Malpermesita etendo" #, fuzzy #~ msgid "Too many files" #~ msgstr "Tro da dosieroj" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Tro da megabajtoj" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Servilo ne permesas fari serĉlistojn de deziroj nuntempe" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Dosiera transiga rapido dependas de uzantoj, de kiuj vi elŝutas. Iuj " #~ "uzantoj estos pli rapidaj, dum aliaj estos malrapidaj." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Komencitaj Elŝutoj" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Komencitaj Alŝutoj" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Anstataŭigi cenzuritajn literojn per:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Cenzuritaj Ŝablonoj" #, fuzzy #~ msgid "Replacements" #~ msgstr "Anstataŭaĵoj" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Se uzanto en la reto Soulseek serĉas dosieron kiu ekzistas en viaj " #~ "akcioj, serĉrezultoj estos senditaj al la uzanto." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Sendu al _Ludanto" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Sendu al _Ludanto" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Malfermu en Dosiera Administranto" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Komando de Media Player ($ por dosiervojo):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Ne eblas konservi elŝuton al uzantnomo subdosierujo, revenante al " #~ "defaŭlta elŝuta dosierujo. Eraro: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Kamarad-nur" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Kunhavigu nur kun amikoj" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Forlasu" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Agordu Akciojn" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Malproksima dosiera eraro" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "Ne povas trovi %(option1)s aŭ %(option2)s, bonvolu instali ambaŭ." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s dosierujoj trovitaj post reskanado" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Malsukcesis prilabori la sekvajn datumbazojn: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Malsukcesis sendi nombron da komunaj dosieroj al la servilo: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Kuru en Fono" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Aŭskultadhaveno ne estas agordita" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Retaj Serĉoj" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Limigu nur-kamaradojn al fidindaj amikoj" #, fuzzy #~ msgid "Shared" #~ msgstr "Kunhavita" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Serĉu dosierojn kaj dosierujojn (ĝusta kongruo)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Malmodernan" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Versio %(version)s haveblas, publikigita sur %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Vi ŝajnas uzi evoluan version de Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Vi uzas la lastan version de Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Kontrolu _Lastan Version" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferas Malhelan _Reĝimon" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Montru _Logpanelon" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Kamaradlisto en Aparta Langeto" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Kamaradlisto Ĉiam Videbla" #, fuzzy #~ msgid "_View" #~ msgstr "_Vido" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Elŝutu Dosierujon" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Frumu dosierujo(j)n" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibajtoj (2^10 bajtoj) je sekundo." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Sendita al uzantoj kiel la kialo por esti geo blokita." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Sendita al uzantoj kiel la kialo por esti malpermesita." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Post kiam vi interagas kun la aplikaĵo for, stato estos agordita al " #~ "interreta." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Ĉiu uzanto povas vicigi maksimume aŭ:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibajtoj (2^20 bajtoj)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBs" #, fuzzy #~ msgid "files" #~ msgstr "dosierojn" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Queue Konduto" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Se malebligita, fendoj aŭtomate estos determinitaj per disponeblaj " #~ "bendolarĝaj limigoj." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Notu, ke la temo de la operaciumo povas havi prioritaton." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Defaŭlte la langeto de serĉdosieroj estas aktivigita ĉe ekfunkciigo." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Forlasu Nicotine+ %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "finiĝis" #, fuzzy #~ msgid "done" #~ msgstr "farita" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Memoru elekton" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Uzantinterfaco" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Aŭskultu sur haveno %i" #, fuzzy, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "La servilo ŝajnas malfunkcii aŭ ne respondas, reprovante en %i sekundoj" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ uzas kunul-al-kunulan reton por konekti al aliaj uzantoj. Por " #~ "permesi al uzantoj konektiĝi al vi sen problemoj, malferma aŭskulta " #~ "haveno estas grava." #, fuzzy #~ msgid "--- disconnected ---" #~ msgstr "--- malkonektita ---" #, fuzzy #~ msgid "--- reconnected ---" #~ msgstr "--- rekonektita ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Tero" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Ĉeĥio" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turkio" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Kunigitaj Ĉambroj " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Aŭtomate aliĝu al Ĉambro" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintakso: Literoj estas majuskloj. Ĉiuj Python-regulaj esprimoj " #~ "estas subtenataj se eskapo estas malŝaltita. Por simplaj filtriloj, teni " #~ "eskapo ebligita estas rekomendita." #, fuzzy #~ msgid "Escaped" #~ msgstr "Eskapis" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Eskapis" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Enigu la tekstan ŝablonon kaj anstataŭaĵon, respektive:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s dosierujoj trovitaj antaŭ reskanado, rekonstruado…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Neniu aŭskulta haveno disponeblas en la specifita haveno intervalo %s–%s" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Elektu intervalon por elekti aŭskultan havenon. La unua disponebla haveno " #~ "en la gamo estos uzata." #, fuzzy #~ msgid "First Port" #~ msgstr "Unua haveno" #, fuzzy #~ msgid "to" #~ msgstr "al" #, fuzzy #~ msgid "Last Port" #~ msgstr "Lasta haveno" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Ne povas trovi %s, bonvolu instali ĝin." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Ne povas importi la Gtk-modulon. Ĉu malbona instalo de la modulo python-" #~ "gobject?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Vi uzas nesubtenan version de GTK %(major_version)s. Vi devus instali GTK " #~ "%(complete_version)s aŭ pli novan." #, fuzzy #~ msgid "User Info" #~ msgstr "Informoj pri uzantoj" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zomo 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Zoom En" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Malzomi" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Montru Uzanton I_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Petu Uzantajn Informojn" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Petu Akciojn de Uzanto" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Petu Uzantinformon" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Enigu la nomon de la uzanto, kies informojn vi volas vidi:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Petu Listo de Akcioj" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Nevalida Soulseek URL: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Uzantoj en la reto Soulseek povos elŝuti dosierojn el dosierujoj, kiujn " #~ "vi kunhavas. Kunhavigi dosierojn estas kerna por la sano de la Soulseek-" #~ "reto." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Ĝisdatigu I_nfon" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Komandoj de Babilejo" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/aliĝu /j 'ĉambro'" #, fuzzy #~ msgid "Join room 'room'" #~ msgstr "Aliĝu al ĉambro \"ĉambro\"" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/mi 'mesaĝo'" #, fuzzy #~ msgid "Display the Now Playing script's output" #~ msgstr "Montru la eligon de la Nun Ludante skripto" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/aldonu /ad 'uzanto'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Aldonu uzanton 'uzanto' al via kamaradlisto" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'uzanto'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Forigu uzanton 'uzanto' el via kamaradlisto" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/malpermeso 'uzanto'" #, fuzzy #~ msgid "Add user 'user' to your ban list" #~ msgstr "Aldonu uzanton 'uzanto' al via malpermesa listo" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/malpermesu 'uzanto'" #, fuzzy #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Forigu uzanton 'uzanto' el via banlisto" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ignori 'uzanto'" #, fuzzy #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Aldonu uzanton 'uzanto' al via ignora listo" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/malignore 'uzanto'" #, fuzzy #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Forigu uzanton 'uzanto' el via ignora listo" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/foliumu /b 'uzanto'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'uzanto'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Petu informojn por 'uzanto'" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip 'uzanto'" #, fuzzy #~ msgid "Show IP for user 'user'" #~ msgstr "Montru IP por uzanto 'uzanto'" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/serĉo /s 'demando'" #, fuzzy #~ msgid "Start a new search for 'query'" #~ msgstr "Komencu novan serĉon por 'demando'" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'demando'" #, fuzzy #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Serĉu la kunigitajn ĉambrojn por 'demando'" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'demando'" #, fuzzy #~ msgid "Search the buddy list for 'query'" #~ msgstr "Serĉu la liston de amikoj por 'demando'" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'uzanto' 'demando'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'uzanto' 'mesaĝo'" #, fuzzy #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Sendu mesaĝon 'mesaĝo' al uzanto 'uzanto'" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm 'uzanto'" #, fuzzy #~ msgid "Open private chat window for user 'user'" #~ msgstr "Malfermu privatan babilejon por uzanto 'uzanto'" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Privataj Babilejo-Komandoj" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Aldonu uzanton al via malpermesa listo" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Aldonu uzanton al via ignora listo" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Foliumi akciojn de uzanto" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Por ordo-nesentema filtrado, same kiel filtrado de pluraj precizaj " #~ "frazoj, vertikalaj stangoj povas esti uzataj por apartigi frazojn kaj " #~ "vortojn.\n" #~ " Ekzemplo: Spears|Bretonio|Mia bela albumo|saluton" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "Por ekskludi nesonajn dosierojn uzu !0 en la daŭrofiltrilo." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtri dosierojn surbaze de la landoj de uzantoj." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Por vidi la plenajn rezultojn denove, simple forigu ĉiujn aktivajn " #~ "filtrilojn." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Vidu la preferojn por pliaj filtrilaj opcioj." #, fuzzy #~ msgid "File size" #~ msgstr "Dosiera grandeco" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Forigi ĉiujn aktivajn filtrilojn" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Bicikliĝu tra kompletigoj premante tabulan klavon" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Kaŝi falmenuon kiam nur unu kongruas" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Elŝutu dosierujojn en inversa alfanombra ordo" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Nekompleta dosierujo:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Elŝutu dosierujon:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Konservu la alŝutojn de amikoj al:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Uzu UPnP por plusendi aŭskultan havenon (intervalo en horoj):" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Kunhavigu dosierujojn kun ĉiu uzanto aŭ amikoj de Soulseek, permesante " #~ "elŝuti enhavon rekte de via aparato. Kaŝitaj dosieroj neniam estas " #~ "dividitaj." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Malĉefaj langetoj" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Pozicio de la langeto de babilejo:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Pozicio pri privata babileja langeto:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Serĉa langeta stango pozicio:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Pozicio de la langeto-informo pri uzanto:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Uzanto foliumi langeto-stango pozicio:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Langetaj Etikedoj" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Refreŝigi Informojn" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Bloki IP-adreson" #, fuzzy #~ msgid "Connected" #~ msgstr "Konektis" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Malkonektita" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Malkonektita (Pleto)" #, fuzzy #~ msgid "User(s)" #~ msgstr "Uzanto(j)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Kaŝnomo \"%s\" resendis nenion" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Alternativaj Rapidaj Limoj" #, fuzzy #~ msgid "Last played" #~ msgstr "Laste ludis" #, fuzzy #~ msgid "Playing now" #~ msgstr "Ludante nun" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Ne eblas konservi dosieron %(path)s: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Erarkodo %(code)s: %(description)s" #, fuzzy, python-format #~ msgid "No such alias (%s)" #~ msgstr "Ne tia kaŝnomo (%s)" #, fuzzy #~ msgid "Aliases:" #~ msgstr "Kaŝnomo:" #, fuzzy, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Forigita kaŝnomo %(alias)s: %(action)s\n" #, fuzzy, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Ne tia kaŝnomo (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternativaj Rapidaj Limoj" #, fuzzy #~ msgid "Aliases" #~ msgstr "Kaŝnomo" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'komando' 'difino'" #, fuzzy #~ msgid "Add a new alias" #~ msgstr "Aldonu novan kaŝnomon" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unualias /un 'komando'" #, fuzzy #~ msgid "Remove an alias" #~ msgstr "Forigi kaŝnomon" #, fuzzy #~ msgid "Chat History" #~ msgstr "Babilhistorio" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Kompletaj komandaj kaŝnomoj" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limigu elŝutan rapidon al (KiB/s):" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Aŭtoro(j):" #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limigu alŝutan rapidon al (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Dezirlista ero trovita" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Langetoj montras uzantajn statusajn ikonojn anstataŭ statusan tekston" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Ebligu dosiervojajn konsiletojn en serĉaj kaj translokigaj vidoj" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Koloraj kaj klakeblaj uzantnomoj" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Sciigo ŝanĝas la tekstkoloron de la langeto" #, fuzzy #~ msgid "Cancel" #~ msgstr "Nuligi" #, fuzzy #~ msgid "OK" #~ msgstr "bone" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "_Aldoni al Kamaradlisto" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Forigu ĉiun elŝuton markitan kun specifa stato." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Forigi ĉiun alŝuton markitan kun specifa stato." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "uzu ne-defaŭltan uzantdatuman dosierujon por ekz. listo de elŝutoj" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Nekonata agorda sekcio '%s'" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Nekonata agorda opcio '%(option)s' en sekcio '%(section)s'" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Versio %s disponeblas" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "liberigita sur %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Kuru en la fono" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Privata mesaĝo de %s" #, fuzzy #~ msgid "Aborted" #~ msgstr "Abortita" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Blokita lando" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Finita / Abortita" #, fuzzy #~ msgid "Close tab" #~ msgstr "Fermu langeton" #, fuzzy, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Vi estas menciita en la ĉambro %(room)s." #, fuzzy, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Komando %s ne estas rekonita" #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Averto: %(realuser)s provas falsi %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "La reto-interfaco, kiun vi specifis, '%s', ne ekzistas. Ŝanĝu aŭ forigu " #~ "la specifitan retan interfacon kaj rekomencu Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "La intervalo, kiun vi specifis por klientaj konektaj pordoj, estis {}-{}, " #~ "sed neniu el ĉi tiuj estis uzeblaj. Pliigi kaj/aŭ " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Notu, ke parto de via intervalo kuŝas sub 1024, ĉi tio kutime ne estas " #~ "permesita ĉe la plej multaj operaciumoj escepte de Vindozo." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progreso: %s" #, fuzzy, python-format #~ msgid "OS error: %s" #~ msgstr "OS-eraro: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP ne disponeblas en ĉi tiu reto" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Malsukcesis mapi la eksteran WAN-havenon: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Ĉambra muro" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "La defaŭlta aŭskulta haveno '2234' funkcias bone en la plej multaj kazoj. " #~ "Se vi bezonas uzi alian havenon, vi povos poste modifi ĝin en la preferoj." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Montru uzantojn kun similaj interesoj" #, fuzzy #~ msgid "Menu" #~ msgstr "Menuo" #, fuzzy #~ msgid "Expand / Collapse all" #~ msgstr "Plivastigi / Kolapsigi ĉiujn" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Agordi akciojn" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Kreu aŭ aliĝu al ĉambro…" #, fuzzy #~ msgid "_Room List" #~ msgstr "_Listo de Ĉambroj" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Ebligu alternativajn elŝutajn kaj alŝutajn rapidlimojn" #, fuzzy #~ msgid "Show log history" #~ msgstr "Montri protokolhistorion" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Reĝimo de grupigo de rezultoj" #, fuzzy #~ msgid "Free slot" #~ msgstr "Senpaga fendo" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Konservu liston de akcioj al disko" #, fuzzy #~ msgid "_Away" #~ msgstr "_For" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Malsukcesis ŝargi ui-dosieron %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Provante restarigi indekson de komunaj dosieroj pro eraro. Bonvolu " #~ "reskani viajn akciojn." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Dosiera indekso de komunaj dosieroj ne estis alirebla. Ĉi tio povus okazi " #~ "pro pluraj okazoj de Nicotine+ aktivado samtempe, problemoj pri " #~ "dosierpermeso aŭ alia problemo en Nicotine+." #, fuzzy #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ estas kliento de Soulseek" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "ebligu la pleto-ikonon" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "malŝalti la pleto-ikonon" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Akiru Privilegiojn de Soulseek…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Publika IP-adreso estas %(ip)s kaj aktiva aŭskulta haveno estas " #~ "%(port)s" #, fuzzy #~ msgid "unknown" #~ msgstr "nekonata" #, fuzzy #~ msgid "Notification" #~ msgstr "Sciigo" #, fuzzy #~ msgid "Length" #~ msgstr "Longo" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Bildo ne konservita, %s jam ekzistas." #, fuzzy #~ msgid "_Open" #~ msgstr "_Malfermu" #, fuzzy #~ msgid "_Save" #~ msgstr "_Savi" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Malsukcesis ŝargi kromprogramon '%s', ne povis trovi ĝin." #, fuzzy, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O-eraro: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Malsukcesis malfermi dosiervojon: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Malsukcesis malfermi URL: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Ensalutu Konversacion" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Rezulta Filtrila Listo" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Antaŭmetu < aŭ > por trovi dosierojn malpli/pli grandajn ol la donita " #~ "valoro." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-dosieroj montras sian mezan bitrapidecon kaj estas tipe pli malaltaj " #~ "en bitrapideco ol kunpremita 320 kbps CBR-dosiero de la sama sonkvalito." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Kiel Grandeco supre, =, <, kaj > povas esti uzataj." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Malhelpi skriban aliron de aliaj programoj por dosieroj elŝutitaj " #~ "(malŝaltu por NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Kie nekompletaj elŝutoj estas provizore stokitaj." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Kie la alŝutoj de amikoj estos konservitaj (kun subdosierujo kreita por " #~ "ĉiu amiko)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Forigu statuson post minutoj da neaktiveco:" #, fuzzy #~ msgid "Protocol:" #~ msgstr "Protokolo:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikono-temo-dosierujo (postulas rekomencon):" #, fuzzy #~ msgid "Establishing connection" #~ msgstr "Establi konekton" #, fuzzy #~ msgid "Clear Groups" #~ msgstr "Klarigi Grupojn" #, fuzzy #~ msgid "User List" #~ msgstr "Listo de uzantoj" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Restarigi Statistiko…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "Forigi _Elŝutojn…" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Forigi Alŝutojn_ds…" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Bloki la IP-adreson de Uzanto" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ignoru la IP-adreson de Uzanto" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Forigu ĉiun elŝuton, kiu finiĝis translokiĝi aŭ kaptita de filtrilo." #, fuzzy #~ msgid "Usernames" #~ msgstr "Uzantnomo" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Montru ensalutitajn babilejajn mesaĝojn kiam ĉambro estas denove aligita" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Forigu ĉiun alŝuton, kiu aŭ finiĝis translokiĝi, aŭ estis nuligita de la " #~ "fora uzanto." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Vico-Pozicio" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Uzanto %(user)s rekte serĉas \"%(query)s\", resendas %(num)i rezultojn" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVATA]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Ĉambra muro (persona mesaĝaro)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Via agordosiero estas korupta" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Ni bedaŭras, sed ŝajnas, ke via agorda dosiero estas korupta. Bonvolu " #~ "reagordi Nicotine+.\n" #~ "\n" #~ "Ni renomis vian malnovan agordan dosieron al\n" #~ "%(corrupt)s\n" #~ "Se vi malfermas ĉi tiun dosieron per tekstredaktilo, vi eble povos savi " #~ "iujn viajn agordojn." #, fuzzy #~ msgid "User Description" #~ msgstr "Uzanto Priskribo" #, fuzzy #~ msgid "User Interests" #~ msgstr "Interesoj de uzantoj" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Ĉu forigi dezirliston?" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Forlasante Nikotino+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Uzante Python %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Forlasante Nikotino+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Forlasu Nikotino+ %(version)s, %(status)s!" #, fuzzy #~ msgid "User:" #~ msgstr "Uzanto:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Ĉiuj %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s dosieroj " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Permesu regulajn esprimojn por inkluzivi kaj ekskludi de la filtrilo" #, fuzzy #~ msgid "Quit…" #~ msgstr "Forlasu" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Rigardu antaŭan ĉefan langeton ĉe ekfunkciigo" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Ebligu serĉrezultajn filtrilojn defaŭlte" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Ĉu fermi Nikotinon+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Ĉu vi vere volas eliri Nikotino+?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Kuru en Fono" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Enreta Sciigo" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Prioritigi Uzanton" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Fidu Uzanton" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Petu IP-adreson de Uzanto" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Petu IP-adreson" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Enigu la nomon de la uzanto, kies IP-adreson vi volas vidi:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Elŝutite" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Malsukcesis aldoni elŝuton %(filename)s al komunaj dosieroj: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Aŭtomate kundividu finitajn elŝutojn" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "La ekvivalento de aldoni vian elŝutan dosierujon kiel publikan parton, " #~ "tamen dosieroj elŝutitaj al ĉi tiu dosierujo estos aŭtomate alireblaj por " #~ "aliaj (ne necesas reskani)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Ne eblas Kunhavigi Dosierujon" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "La elektita virtuala nomo estas malplena" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "La elektita virtuala nomo jam ekzistas" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "La elektita dosierujo jam estas dividita" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Agordu Virtualan Nomon" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Enigu virtualan nomon por '%(dir)s':" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "La elektita virtuala nomo estas aŭ malplena aŭ jam ekzistas" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "La elektita dosierujo jam estas dividita." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s Propraĵoj" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Finis reskani akciojn" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Listo de Kromaĵoj" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Eraro dum skanado %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Montru _Logpanelon" #, fuzzy #~ msgid "Addresses" #~ msgstr "Adresoj" #, fuzzy #~ msgid "Handler" #~ msgstr "Pritraktanto" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Ne eblis aktivigi kromprogramon." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Ne eblis malŝalti kromprogramon." #, fuzzy #~ msgid "Transfers" #~ msgstr "Translokigoj" #, fuzzy #~ msgid "Ban List" #~ msgstr "Malpermesa Listo" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ignori Liston" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Cenzuri & Anstataŭigi" #, fuzzy #~ msgid "Completion" #~ msgstr "Kompletigo" #, fuzzy #~ msgid "Categories" #~ msgstr "Kategorioj" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Alŝutu dosierujon al…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Alŝutu Dosierujon Rekursiva Al…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Elŝutu _Recursive" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Elŝutu R_ecursive Al…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Alŝutu_dosiero(j)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Eraro dum provo montri dosierujon '%(folder)s', raportita eraro: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "Elektu Celon por Elŝuti Dosierujon kun Subdosierujoj de Uzanto" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Elektu Celon por Elŝuti Dosierujon de Uzanto" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Elektu Celon por Elŝuti Dosieron(j)n de Uzanto" #, fuzzy #~ msgid "Wishes" #~ msgstr "Deziroj" #, fuzzy #~ msgid "privileged" #~ msgstr "privilegiita" #, fuzzy #~ msgid "prioritized" #~ msgstr "prioritatita" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blokitaj IP-adresoj" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Kompletaj kamaradnomoj" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Kompletaj uzantnomoj en babilejoj" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Kompletaj ĉambronomoj" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Dropdown List" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Komando de Dosiera Administranto ($ por dosiervojo):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Komando de Media Player ($ por dosiervojo):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Ignoritaj IP-adresoj" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Montru tempomarkojn" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Sciigaj Popups" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Montru sciigan ŝprucfenestron kiam dosiero finiĝis elŝutado" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Montru sciigan ŝprucfenestron kiam dosierujo finiĝis elŝutado" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Montru sciigan ŝprucfenestron kiam vi ricevas privatan mesaĝon" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "Montru sciigan ŝprucfenestron kiam iu sendas mesaĝon en babilejo" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Montru sciigan ŝprucfenestron kiam vi estas menciita en babilejo" #, fuzzy #~ msgid "Tray" #~ msgstr "Pleto" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Kazoj de $ estos anstataŭigitaj per la ligilo. La defaŭlta retumilo de la " #~ "sistemo estos uzata en kazoj kie protokolo ne estis agordita." #, fuzzy #~ msgid "Handler:" #~ msgstr "Prizorganto:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Primaraj langetoj" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Ebligu dosiervojajn konsiletojn en serĉaj kaj translokigaj vidoj" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Montras la kompletan dosiervojon de serĉrezulto aŭ dosiertranslokigon " #~ "kiam vi ŝvebas dosierujon aŭ dosiernomon per via kursoro." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "Montru private kundividitajn dosierojn en uzantakcioj" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Aliaj klientoj povas proponi eblon sendi private kundividitajn dosierojn " #~ "kiam vi foliumas iliajn akciojn. Dosierujoj enhavantaj tiajn dosierojn " #~ "estas antaŭfiksitaj kun '[PRIVATA DOSSIERO]', kaj ne estas elŝuteblaj " #~ "krom se la alŝutanto donas eksplicitan permeson." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Cenzuri & Anstataŭigi" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Montru _Elimigi Protokolojn" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Sencimiga Registrado" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtuala Nomo" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Redaktu Virtualan Nomon" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopiu dosierujo URL" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Elŝutu _Al…" #, fuzzy #~ msgid "Download" #~ msgstr "Elŝutu" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Alŝutu Enhavon de Dosierujo" #, fuzzy #~ msgid "Rename" #~ msgstr "Alinomi" #, fuzzy #~ msgid "File Lists" #~ msgstr "Dosierlistoj" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopiu Dosiera Vojo" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "R_forigi Deziron" nicotine-plus-3.3.4/po/es_CL.po000066400000000000000000007155051461625273200163020ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Spanish (Chile) \n" "Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Cliente de Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Cliente gráfico para la red par a par de Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;compartir;charlar;mensajeria;P2P;par a par;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Cliente gráfico para la red de Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ es un cliente gráfico para la red par a par de Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ apunta a ser una alternativa agradable, libre y de código abierto " "(FOSS) al cliente oficial de Soulseek, proporcionando funcionalidad " "adicional mientras se mantiene actualizado con el protocolo de Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Buscar Archivos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Descargas" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Explorar Compartidos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Chat Privado" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Equipo de Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Sitio web: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "mostrar este mensaje de ayuda y salir" #: pynicotine/__init__.py:59 msgid "file" msgstr "archivo" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "usar archivo de configuración no predeterminado" #: pynicotine/__init__.py:63 msgid "dir" msgstr "directorio" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "directorio alternativo para datos de usuario y complementos" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "iniciar el programa sin mostrar la ventana" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "enlazar los sockets a la IP dada (útil para VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "puerto" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "escuchar en el puerto dado" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "reescanear archivos compartidos" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "iniciar el programa en modo sin cabeza (sin GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "mostrar version y salir" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Estás usando una versión no soportada de Pyhton (%(old_version)s).\n" "Deberías instalar Python %(min_version)s o más nueva." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Fallo al escanear compartidos. Por favor cierra otras instancias de " "Nicotine+ e intenta de nuevo." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "El usuario %s está fuera" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "El usuario %s está conectado" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "El usuario %s está desconectado" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Nombres de amigos" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Has sido añadido a una sala privada: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Mensaje de chat del usuario «%(user)s» en la sala «%(room)s»: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "No se puede crear el directorio '%(path)s', error reportado: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Error respaldando configuración: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configuración respaldada en: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Cargando %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Cerrando %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "terminando" #: pynicotine/core.py:237 msgid "application closing" msgstr "cierre de aplicación" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Cargando %(program)s %(version)s" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Es necesario especificar un nombre de usuario y una contraseña antes de " "conectarse…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Error: ¡Falló filtro de descarga! Verifique sus filtros. Razón: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Error: ¡%(num)d filtros de descarga fallaron! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s descargado de %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Archivo descargado" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Ejecutado: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Ejecutando «%(command)s» fallido: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s descargado de %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Carpeta descargada" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Ejecutado en directorio: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "No se pudo mover «%(tempfile)s» a «%(file)s»: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Error en la carpeta de descarga" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Descarga finalizada: usuario %(user)s, archivo %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Descarga cancelada: usuario %(user)s, archivo %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Error de E/S en la descarga: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" "No se puede lograr un bloqueo exclusivo sobre el archivo - error de E/S: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "No ha sido posible guardar el archivo %(path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Descarga iniciada: usuario %(user)s, archivo %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "No se encuentra %s, por favor instálalo." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "No hay entorno gráfico disponible, utilizando el modo sin interfaz gráfica " "de usuario (sin GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Conectar" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Desconectar" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Privilegios de Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferencias" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Salir" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Explorar Compartidos Públicos" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "_Explorar compartidos de amigos" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "_Explorar compartidos de amigos" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Reescanear compartidos" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Configurar compartidos" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "Atajos de _Teclado" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Asistente de ajuste" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Transferir Estadísticas" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Informar de un _Fallo" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Mejorar T_raducciones" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Acerca de Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Archivo" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Compartidos" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Ayuda" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Explorar Compartidos" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "No ha sido posible mostrar la notificación: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "¿Realmente quieres salir?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "¿Realmente quieres salir?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_No" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "Ejecutar en Segundo _Plano" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Salir de Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Acciones no disponibles" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Verifique que los discos externos estén montados y que los permisos de las " "carpetas sean correctos." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Cancelar" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Reintentar" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Forzar reescaneado" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Contraseña inválida" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "El usuario %s ya existe y la contraseña que ha introducido no es válida. Por " "favor, elija otro nombre de usuario si es la primera vez que se conecta." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Cambiar _los Detalles del Inicio de Sesión" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Usuarios de descarga de mensajes" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "" "Envía un mensaje privado a todos los usuarios que están descargando de ti:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Enviar mensaje" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Mensajes" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Enviar mensaje privado a todos los amigos en línea:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Seleccione un Archivo de Lista de Compartidos Guardados" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Error crítico" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ ha encontrado un error crítico y necesita salir. Por favor, copie " "el siguiente mensaje e inclúyalo en un informe de error:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Salir de Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copiar y Reportar Error" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Estado" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "País" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Usuario" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Velocidad" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Archivos" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "De Confianza" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notificar" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Priorizado" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Última vez visto" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Nota" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Añadir _Nota de Usuario…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Eliminar" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nunca visto" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Añadir Nota de Usuario" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Añadir una nota acerca del usuario %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Añadir…" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "¿Crear Nueva Sala?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "¿Realmente quiere crear una nueva sala «%s»?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Hacer la sala privada" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "_Buscar archivos de usuario" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Encontrar…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copiar" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copiar todo" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Limpiar vista de actividad" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Salir de la sala" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copiar enlace" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Ver registro de la sala" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Borrar registro de la sala…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Limpiar vista de mensaje" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s se unió a la sala" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "El usuario %(user)s te mencionó en la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mensaje de %(user)s en la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Mensaje de %(user)s en la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s abandonó la sala" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s se ha ido" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s ha regresado" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "¿Borrar mensajes registrados?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "¿Realmente quieres borrar permanentemente todos los mensajes registrados " "para esta sala?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Yibuti" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Ejecutado: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Error al obtener la última versión" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Actualizado" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Comprovar _Última Versión" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Asistente de ajuste" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Carpeta virtual" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Carpeta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Terminar" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Siguiente" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Agregar una carpeta compartida" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Editar carpeta compartida" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Introducir nuevo nombre virtual para '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Editar" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Propiedades de archivo" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" "Propiedades de archivo (%(num)i de %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Propiedades de archivo (%(num)i de %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Aplicar" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Añadir…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Editar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "Ajustes de %s" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Elemento" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Intereses" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Desconocido" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Comprobar estado de puerto" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, puerto %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Cambio de contraseña rechazado" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Ingresa una nueva contraseña para tu cuenta de Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Actualmente estás desconectado a la red de Soulseek. Si deseas cambiar la " "contraseña de una cuenta existente de Soulseek, debes estar conectado en esa " "cuenta." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Ingresa la contraseña a usar cuando inicies sesión:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Cambiar contraseña" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Cambio de contraseña rechazado" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Nadie" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Todos" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amigos" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Amigos de Confianza" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nada" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Siguiente archivo" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Abrir en el Gestor de Archivos" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Buscar" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausar" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Reanudar" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Explorar Carpeta(s)" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxis: no distingue entre mayúsculas y minúsculas. Si está " "habilitado, se pueden usar expresiones regulares de Python; de lo contrario, " "solo se admiten coincidencias con comodín *." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtro" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "expresión regular" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Agregar filtro de descarga" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Ingresar un nuevo filtro de descarga:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Habilitar expresiones regulares" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Editar filtro de descarga" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modificar el siguiente filtro de descarga:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d ¡Fallida! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtros exitosos" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Cancelar" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Reintentar" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Todos contra todos" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Primero en entrar, Primero en salir" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Nombre de usuario" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Dirección IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorar usuario" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Ingresar el nombre del usuario que quieres ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorar dirección IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Ingresar una dirección IP que quieras ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* es un comodín" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Vetar usuario" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Ingresar el nombre del usuario que quieres vetar:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Vetar dirección IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Introduzca la dirección IP que desea bloquear:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Patrón" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Sustitución" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Patrón de censura" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Introduzca el patrón que desea censurar. Añada espacios alrededor del patrón " "si no desea que coincida con cadenas que estén dentro de palabras (puede " "fallar al principio y al final de las líneas)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Patrones Censurados" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Sustitución" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Ingrese el patrón de texto y el reemplazo, respectivamente:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Sustitución" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Por omisión" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Mostrar diálogo de confirmación" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Ejecutar en segundo plano" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "negrita" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "cursiva" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "subrayado" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Mensajes" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Lista de Amigos en las Salas de Chat" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Arriba" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Abajo" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Izquierda" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Derecha" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "En línea" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Fuera" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Fuera de línea" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Cambio de contraseña rechazado" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Destacar" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Ventana" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Conectado (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Ausente (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Fuera de línea" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Mensaje (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocolo" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Manejadores de URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "" "Ingrese el protocolo y el comando para el manejador de URL, respectivamente:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Editar comentarios" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Introduzca un nuevo valor para el deseo «%s»:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nombre de usuario;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Nombre del cliente (p. ej., amarok, audacious, exaile) o dejar en blanco " "para uno automático:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Nombre de usuario:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Comando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Título" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Reproduciendo Ahora (típicamente «%(artist)s - %(title)s»)" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Duración" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Tasa de bits" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Comentario" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Álbum" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Número de Pista" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Año" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nombre del Archivo (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Habilitado" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Extensión" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "No se ha Seleccionado Ninguna Extensión" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Red" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interfaz de usuario" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Compartidos" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Subidas" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Búsquedas" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Búsqueda de usuarios" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Charlas" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Reproduciendo Ahora" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Entrando en el sistema" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Usuarios Vetados" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Usuarios Ignorados" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Complementos" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Manejadores de URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferencias" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "" "Elija un Nombre de Archivo para la Copia de Seguridad de la Configuración" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Estadísticas de transferencia" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Total desde %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "¿Reiniciar las Estadísticas de Transferencia?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "¿Está seguro de que desea reiniciar las estadísticas de transferencia?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Lista de deseos" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Deseo" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Buscar elemento" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Editar deseo" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Introduzca un nuevo valor para el deseo «%s»:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "¿Limpiar lista de deseos?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "¿Realmente quieres limpiar tu lista de deseos?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Ruta" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Reanudar" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "_Pausar" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Terminada/Filtrada" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Terminado" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pausada" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrada" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Eliminado" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "En cola…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Todo…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Limpiar descargas en cola" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "¿Realmente quieres limpiar todas las descargas en cola?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Limpiar todas las descargas" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "¿Realmente quieres limpiar todas las descargas?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Descargar %(num)i archivos?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Está seguro de que desea descargar %(num)i archivos de la carpeta %(folder)s " "de %(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Descargar Carpeta" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Le gusta" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Aversiones" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Puntuación" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Elemento" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Recomendaciones para el Ítem" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Me _Gusta Esto" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "_No me Gusta Esto" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Recomendaciones" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Usuarios Similares" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Recomendaciones (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Usuarios similares (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Mensaje Privado de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Resultados de la lista de deseos encontrados" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Búsqueda de usuarios" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Salas de Chat" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Intereses" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Charla" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Conexiones" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Mensajes" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Transferencias" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Miscelánea" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "Encon_trar…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Copiar" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copiar _Todo" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Ver registros de depuración" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Abrir Registro de _Transferencias" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "Categorías de _Registro" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Limpiar vista de registro" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Descargas: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Subidas: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Escaneando Compartidos" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Escaneando Compartidos" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Último mensaje" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Sala" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Usuarios" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Unirse a la Sala" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Dejar la Sala" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Hacer Pública la Sala Privada" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Cancelar Adhesión a la Sala" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Cerrar todas las pestañas…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Cerrar pestaña" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Ver registro de charla" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Borrar registro de charla…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Acciones de transferencia" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "¿Está seguro de que desea eliminar permanentemente todos los mensajes " "registrados de este usuario?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "* Mensaje(s) enviado(s) mientras estabas desconectado." #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amigos" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Salas" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Usuario" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "En cola" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Tipo de archivo" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nombre de archivo" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Tamaño" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Calidad" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copiar ruta de _archivo" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copiar _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copiar U_RL de carpeta" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Descargar archivo(s)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Descargar archivo(s) _a…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Descargar _Carpeta(s)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Descargar c_arpeta(s) a…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "_Búsqueda de usuario" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "Explorar Carpeta(s)" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Propiedades de a_rchivo" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copiar término de búsqueda" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Limpiar todos los resultados" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Limpiar historial de filtros" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Filtros de Resultados" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVADO] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "Filtros de _resultados [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "Filtros de _resultados" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Limpiar todos los filtros activos" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Añadir De_seo" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Eliminar De_seo" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Seleccionar Resultados del Usuario" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Total: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Resultados" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Seleccione Carpeta de Destino para el/los Archivo(s)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Seleccionar la Carpeta de Destino" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "En cola" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "En cola (con prioridad)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "En cola (con privilegio)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Obteniendo estado" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transfiriendo" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Conexión cerrada por el otro par" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Tiempo de conexión expirado" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Usuario desconectado" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Cancelada" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Error en la carpeta de descarga" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Error de archivo local" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Vetado" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Archivo no compartido" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Apagado en curso" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Transferencias de Archivos" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "En cola" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Porcentaje" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Tiempo Transcurrido" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Tiempo Restante" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Abrir Lista" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Abrir en el _Gestor de Archivos" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Buscar" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Limpiar todo" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Seleccionar transferencias de usuario" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Abortar" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Terminados/Anulados/Fallidos" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Terminada/Filtrada" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Fallida" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Usuario desconectado" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Limpiar subidas en cola" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "¿Realmente quieres limpiar todas las subidas en cola?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Limpiar todas las subidas" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "¿Realmente quieres limpiar todas las subidas?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Guardar la Lista de Compartidos en el Disco" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Subir Carpeta y Subcarpeta(s)…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copiar _Ruta de la Carpeta" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Descargar Carpeta y Subcarpeta(s)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Descargar Carpeta y Subcarpeta(s) en…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Nombre de archivo" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Enviar Archivo(s)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Subir Carpeta…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Descargar Carpeta _en…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "La lista de archivos compartidos del usuario está vacía. Bien porque el " "usuario no está compartiendo nada, o bien porque está compartiendo archivos " "de forma privada." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "No ha sido posible solicitar los archivos compartidos al usuario. Bien " "porque el usuario está desconectado, bien porque ambos tienen el puerto de " "escucha cerrado, o bien porque hay un problema temporal de conectividad." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Seleccione el Destino para Descargar Múltiples Carpetas" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Subir Carpeta (con Subcarpetas) al Usuario" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Subir Carpeta al Usuario" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Introduzca el nombre del usuario al que desea subir archivos:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "S_ubidas" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Seleccione Carpeta de Destino para el/los Archivo(s)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Subir Archivo(s) al Usuario" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Imagen:" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Guardar imagen" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "No se ha podido cargar la imagen del usuario %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "No ha sido posible solicitar la información al usuario. Bien porque ambos " "tienen el puerto de escucha cerrado, bien porque el usuario está " "desconectado, o bien porque hay un problema temporal de conectividad." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Eliminar De_seo" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Añadir amigo…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Vetar usuario" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ignorar usuario" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Sí" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "No" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "¡Por favor introduce número de días!" #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Regalar días de tus privilegios de Soulseek al usuario %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s días restantes" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Regalar privilegios" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Regalar privilegios" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Cerrar" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Sí" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_Aceptar" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Seleccionar un archivo" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Seleccionar una carpeta" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Seleccionar todo" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Seleccionar una imagen" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Todas las imágenes" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Guardar como…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Ninguno)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "_Cerrar pestaña" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "¿Cerrar todas las pestañas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "¿Está seguro de que desea cerrar todas las pestañas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Pestañas no Leídas" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "¿Cerrar todas las pestañas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "_Cerrar pestaña" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Archivo(s) Seleccionado(s)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Explorar Archivos" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Añadir amigo…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Mostrar _dirección IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Salas privadas" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Eliminar de la Sala Privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Añadir a la Sala Privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Eliminar como Operador de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Añadir como Operador de %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- mensajes antiguos encima ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Ejecutado: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Imagen" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Archivo" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Misceláneos" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Documento/Texto" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Error al cargar el icono personalizado %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Ocultar Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Mostrar Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Columna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Desagrupado" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Agrupar por carpeta" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Agrupar por usuario" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "¿Realmente quieres salir?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "El usuario %s ya existe y la contraseña que ha introducido no es válida. Por " "favor, elija otro nombre de usuario si es la primera vez que se conecta." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Contraseña" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Para crear una nueva cuenta de Soulseek, introduzca el nombre de usuario y " "la contraseña que desee. Si ya tiene una cuenta, introduzca sus datos de " "acceso existentes." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" "No se pudo escribir en el archivo de registro «%(filename)s»: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "No ha sido posible guardar el archivo %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Emiratos Árabes Unidos" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistán" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua y Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguila" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antártida" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Americana" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Aland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaiyán" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnia y Herzegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladés" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Bélgica" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Baréin" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benín" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "San Bartolomé" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudas" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunéi" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Caribe Neerlandés" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bután" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Isla Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botsuana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Bielorrusia" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belice" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canadá" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Islas Cocos" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "República Democrática del Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "República Centroafricana" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Suiza" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Costa de Marfil" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Islas Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Camerún" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curazao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Isla de Navidad" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Chipre" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Chequia" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Alemania" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Yibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dinamarca" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "República Dominicana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Argelia" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egipto" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Sahara Occidental" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "España" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiopía" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlandia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiyi" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Islas Malvinas" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Micronesia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Islas Feroe" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Francia" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabón" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Gran Bretaña" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Granada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guayana Francesa" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groenlandia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadalupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guinea Ecuatorial" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grecia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Islas Georgias del Sur y Sandwich del Sur" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinea-Bisáu" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Islas Heard y McDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croacia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haití" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hungría" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonesia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Isla de Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Territorio Británico del Océano Índico" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Irán" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islandia" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordania" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japón" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirguistán" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Camboya" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comoras" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "San Cristóbal y Nieves" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Corea del Norte" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Corea del Sur" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Islas Caimán" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazajistán" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Líbano" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Santa Lucía" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituania" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburgo" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letonia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marruecos" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Mónaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldavia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "San Martín" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Islas Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedonia del Norte" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Birmania" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Islas Marianas del Norte" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauricio" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldivas" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malaui" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "México" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malasia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambique" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nueva Caledonia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Níger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Isla Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Países Bajos" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Noruega" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nueva Zelanda" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omán" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panamá" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Perú" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinesia Francesa" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papúa Nueva Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipinas" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistán" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polonia" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "San Pedro y Miquelón" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Islas Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palaos" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Catar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Reunión" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumanía" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rusia" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arabia Saudí" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Islas Salomón" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudán" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suecia" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Santa Elena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Eslovenia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard y Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Eslovaquia" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leona" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudán del Sur" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Santo Tomé y Príncipe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "San Martín" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Siria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Suazilandia" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Islas Turcas y Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Chad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Tierras Australes y Antárticas Francesas" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailandia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tayikistán" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor Oriental" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistán" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Túnez" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turquía" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad y Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwán" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ucrania" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Islas Ultramarinas Menores de los Estados Unidos" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Estados Unidos" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Ciudad del Vaticano" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "San Vicente y las Granadinas" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Islas Vírgenes Británicas" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Islas Vírgenes de los Estados Unidos" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis y Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Sudáfrica" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabue" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "La síntesis de voz para el mensaje ha fallado: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Por favor, proporcione su nombre de usuario de Last.fm y su clave " "API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Formato de Reproduciendo Ahora" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: No se pudo conectar con Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: No se pudo obtener la pista reciente de Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: No se ha podido encontrar un reproductor MPRIS adecuado" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Encontrados múltiples reproductores MPRIS: %(players)s. Usando: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Reproductor MPRIS autodetectado: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Algo ha ido mal al consultar %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "" "ListenBrainz: Por favor, proporcione su nombre de usuario de ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: No se pudo conectar con ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Parece que no estás escuchando nada en este momento" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: No se pudo obtener la pista actual de ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Búsquedas en la Red" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Comandos integrados" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "No ha sido posible conectar al servidor. Razón: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Desconectado del servidor %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Cambiar el estado ausente/de vuelta" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Habilitar las extensiones" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Limpiar la ventana de charla" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Decir algo en tercera persona" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Anunciar la canción que se está reproduciendo actualmente" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Únete o crea una sala…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Abandonar la sala actual" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Decir mensaje en la sala de chat especificada" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Chat Privado" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Cerrar la conversación privada actual" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Solicitar la información del usuario" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Enviar mensaje privado a todos los amigos en línea:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Añadir usuario a tu lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Eliminar usuario de tu lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Explorar ficheros del usuario «usuario»" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Información de usuario" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Mostrar IP para usuario" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Bloquear conexiones de usuario o dirección IP" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Eliminar usuario de tu lista de vetados" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Silenciar mensajes de usuario o dirección IP" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Eliminar usuario de tu lista de ignorados" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Añadir De_seo" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Eliminar De_seo" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Reescanear compartidos" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Reescanear compartidos" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Iniciar búsqueda global de archivos" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Buscar archivos y carpetas (coincidencia exacta)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Buscar archivos y carpetas (coincidencia exacta)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Buscar «consulta» en los compartidos de un usuario" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Listado de %(num)i comandos disponibles:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Listado de %(num)i comandos disponibles que coinciden con \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Escriba %(command)s para enumerar comandos similares" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Escriba %(command)s para listar los comandos disponibles" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s se unió a la sala" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Cerrar la conversación privada actual" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Vetado" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Vetar usuario" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Usuarios Ignorados" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ignorar usuario" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Cargando sistema de plugins" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "No ha sido posible cargar la extensión %(name)s. El nombre de la carpeta de " "la extensión contiene caracteres inválidos: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" "Comando %(interface)s en conflicto en el complemento %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Complemento cargado %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "No ha sido posible cargar la extensión %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Complemento descargado %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "No ha sido posible descargar la extensión %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s falló con error %(errortype)s: %(error)s.\n" "Rastro: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "No se proporciona ninguna descripción" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Falta el argumento %s" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Respuesta no válida: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Uso: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comando desconocido: %(command)s. Escriba %(help_command)s para listar los " "comandos disponibles." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "No se encontraron dispositivos UPnP" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Fallo en el reenvío del puerto externo %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Puerto externo %(external_port)s reenviado con éxito a la dirección IP " "local %(ip_address)s puerto %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Mensaje privado del usuario «%(user)s»: %(message)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Buscando el elemento de la lista de deseos \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "" "El período de espera de la lista de deseos se ha establecido en %s segundos" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Usuario %(user)s está buscando por «%(query)s», encontrado(s) %(num)i " "resultado(s)" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Reescaneando compartidos…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Reescaneando compartidos…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Reescaneo completo: %(num)s carpetas encontradas" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Se ha producido un error grave al reescanear los compartidos. Si este " "problema persiste, borre %(dir)s/*.db y vuelva a intentarlo. Si eso no " "ayuda, por favor, envíe un informe de errores con este seguimiento de pila " "incluido: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Error al escanear el archivo %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Error al escanear la carpeta %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Error al escanear los metadatos del archivo %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Reanálisis abortado debido a recursos compartidos no disponibles" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" "El usuario %(user)s está navegando por su lista de archivos compartidos" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Fallo en la obtención de la carpeta compartida %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "No ha sido posible leer la base de datos de compartidos. Por favor, " "reescanee sus compartidos. Error: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "La interfaz de red especificada '%s' no existe" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "No se puede escuchar en el puerto %(port)s. Asegúrese de que ninguna otra " "aplicación lo use o elija un puerto diferente. Error: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Escuchando en el puerto %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "No se puede conectar al servidor %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Conexión automática al servidor al arranque" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Conectando a %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Conectado al servidor %(host)s:%(port)s, iniciando sesión…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Desconectado del servidor %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Alguien ha iniciado sesión con su cuenta de Soulseek en otro lugar" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Subida finalizada: usuario %(user)s, dirección IP %(ip)s, archivo %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Subida cancelada: usuario %(user)s, archivo %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Error de E/S en la subida: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Subida iniciada: usuario %(user)s, dirección IP %(ip)s, archivo %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "No se puede crear el directorio «%(folder)s», error: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "La carga desde disco de los compartidos falló: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Lista de archivos compartidos del usuario «%(user)s» guardada en %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "No se puede guardar los compartidos. Error de «%(user)s» reportado: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Imagen guardada en %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "No se puede guardar %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "El usuario %(user)s está leyendo su información de usuario" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "No ha sido posible conectar al servidor. Razón: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "No se puede conectar" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "No se puede obtener la IP del usuario %s, ya que el usuario está desconectado" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "La dirección IP del usuario %(user)s es %(ip)s, puerto %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Cliente de Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i usuarios privilegiados" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "No tiene privilegios. Los privilegios no son necesarios, pero permiten que " "sus descargas se pongan en cola antes que las de los usuarios sin " "privilegios." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Quedan %(days)i días, %(hours)i horas, %(minutes)i minutos, %(seconds)i " "segundos de privilegios de descarga." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Su contraseña ha sido cambiada. La contraseña es %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Cambio de contraseña rechazado" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "No ha sido posible guardar el archivo %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "No se puede guardar %(filename)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Algo salió mal al leer el archivo %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Intentando cargar la copia de seguridad del archivo %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "" "No ha sido posible hacer una copia de seguridad del archivo %(path)s: " "%(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "No ha sido posible guardar el archivo %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "No ha sido posible restaurar el archivo anterior %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Añadir amigo…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Buscar termino…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Buscar termino…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Enviar mensaje" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Activar/desactivar la conversión de texto a voz" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Ayuda de comandos de la sala de chat" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Registro" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Muro de la sala" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Muro de la sala" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Creado por" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Traducido por" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licencia" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Previo" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Bienvenido a Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Ajustar…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Si tu nombre de usuario ya está tomado, se te preguntara para cambiarlo." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Si su puerto de escucha está cerrado solo podrá conectarse a los usuarios " "cuyos puertos de escucha estén abiertos." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Si es necesario, elija un puerto de escucha diferente a continuación. Esto " "también se puede hacer más adelante en las preferencias." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Descargar archivos a la carpeta" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Compartir carpetas" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Los usuarios de Soulseek podrán descargar desde sus recursos compartidos. " "Contribuya a la red Soulseek compartiendo su propia colección y compartiendo " "lo que descargó de otros usuarios." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "¡Estás listo para usar Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donar a Soulseek le otorga privilegios durante un determinado periodo de " "tiempo. Si usted tiene privilegios, sus descargas se pondrán en cola antes " "que las de los usuarios sin privilegios." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Archivo previo" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Siguiente archivo" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nombre" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Última velocidad" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exportar…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "General" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Conectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Desconectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Reescanear compartidos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Mostrar Panel del Registro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Configurar el registro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Salir" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menús" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Abrir menú principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Abrir menú contextual" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Pestañas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Cambiar Pestaña Principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Ir a pestaña secundaria previa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Ir a siguiente pestaña secundaria" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Cerrar pestaña secundaria" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Cerrar pestaña secundaria" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copiar Celda Seleccionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Eliminar Fila Seleccionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Editando" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Cortar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Pegar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Insertar Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Seleccionar todo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Encontrar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Encontrar siguiente coincidencia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Encontrar coincidencia previa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transferencias de Archivos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Reanudar/Reintentar Transferencia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pausar/Abortar Transferencia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Descargar/Subir a" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Guardar Lista en Disco" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Actualizar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Expandir/Contraer todo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Regresar a Carpeta Superior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Buscar Archivo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtros de Resultados" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Sesión actual" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Descargas completadas" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Tamaño de descarga" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Subidas Completadas" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Tamaño de Subida" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Reiniciar…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Los elementos de la lista de deseos se buscan automáticamente a intervalos " "regulares para descubrir archivos poco comunes." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Añadir Deseo…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Limpiar todo…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Limpiar todas las descargas finalizadas y filtradas." #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Limpiar finalizadas" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Limpiar todas las descargas" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Limpiar _todo…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Intereses personales" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Agrega algo que te guste…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Aversiones Personales" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Añade algo que no te guste…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Actualizar lista de recomendaciones" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Abrir menú principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Nombre de usuario…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Buscar termino…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Patrones de búsqueda: con una palabra = término, sin palabra = -término, " "palabra parcial = *érmino" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Alcance de la Búsqueda" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "Lista de _deseos" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Configurar las búsquedas" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Introduzca un término de búsqueda para buscar archivos compartidos por otros " "usuarios en la red Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Modo de agrupación de archivos" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Configurar descargas" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Los archivos que descargue de otros usuarios se ponen en cola aquí, y se " "pueden pausar y reanudar cuando se desee" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Configurar Subidas" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Los intentos de los usuarios de descargar sus archivos compartidos se ponen " "en cola y se gestionan aquí" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Abrir Lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Abre una lista local de archivos compartidos que se ha guardado previamente " "en el disco" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Configurar compartidos" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Introduzca el nombre de un usuario cuya lista de archivos compartidos desee " "explorar. También puede guardar la lista en el disco e inspeccionarla " "posteriormente." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Aversiones Personales" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Configurar el registro" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Introduzca el nombre de un usuario para ver su descripción, información y " "foto personal" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Historial de charla" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Configurar los chats" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Introduzca el nombre de un usuario para iniciar una conversación de texto " "con él en privado" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Mensajes" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Usuarios Ignorados" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Añade usuarios a tu lista de amigos para compartir con ellos carpetas " "específicas y recibir notificaciones cuando estén conectados" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Únete o crea una sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Únase a una sala de chat existente, o cree una nueva sala para chatear con " "otros usuarios de la red Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Ver perfil de usuario" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Buscar termino…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Conexiones" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Descarga (velocidad/usuarios activos)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Subida (velocidad/usuarios activos)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Buscar termino…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Límites de Velocidad de Descarga" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Limitar velocidad de subida:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Límite alternativo de velocidad de descarga (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Límite alternativo de velocidad de descarga (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Buscar termino…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Refrescar la lista de salas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Mostrar el flujo de mensajes de las salas de chat públicas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Aceptar invitaciones a salas privadas" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "La función de muro de la sala permite a los usuarios de una sala especificar " "un mensaje único para mostrar a los demás. Los mensajes recientes se " "muestran en la parte superior." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Establecer mensaje en el muro…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtros de Resultados de Búsqueda" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Los filtros de resultados de búsqueda se utilizan para refinar los " "resultados de búsqueda mostrados." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Cada lista de resultados de búsqueda tiene su propio filtro, que puede " "revelarse activando el botón Filtros de Resultados de Búsqueda. Un filtro se " "compone de múltiples campos, todos los cuales se aplican al pulsar Intro en " "cualquiera de sus campos. El filtrado se aplica inmediatamente a los " "resultados ya recibidos, y también a los que están por llegar. Para volver a " "ver los resultados completos, basta con borrar todos los términos del filtro " "y volver a aplicarlo. Como su nombre indica, un filtro de resultados de " "búsqueda no puede ampliar su búsqueda original, solo puede limitarla. Para " "ampliar o cambiar sus términos de búsqueda, realice una nueva búsqueda." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Como sugiere el nombre, un filtro de resultados de búsqueda no puede " "expandir su búsqueda original, solo puede reducirla. Para ampliar o cambiar " "sus términos de búsqueda, realice una nueva búsqueda." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Filtros de Resultados" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Incluir Texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Se mostrarán los archivos y carpetas que contengan este texto." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Las mayúsculas o minúsculas son indiferentes, pero el orden de las palabras " "es importante: «Spears Brittany» no mostrará «Brittany Spears»" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Uso | (o tubos) para separar varias frases exactas. Ejemplo:\n" " Remix|Mezcla Dub|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Excluir Texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Como en el caso anterior, pero los archivos y carpetas se excluyen si el " "texto coincide." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtra los archivos en función de su extensión." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Se pueden especificar varias extensiones de archivo, lo que a su vez " "ampliará la lista de resultados.\n" " Ejemplo: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "También es posible invertir el filtro, especificando las extensiones de " "archivo que no desea ver en los resultados.\n" " Ejemplo: !mp3|!jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Tamaño de archivo" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtra los archivos en función de su tamaño." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Por defecto, la unidad utilizada es el byte, y los archivos mayores o " "iguales a este valor serán mostrados." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Añada b, k, m o g (o bien kib, mib o gib) para especificar unidades de " "bytes, kibibytes, mebibytes o gibibytes:\n" " <1024k encontrará archivos de 1024 kibytes (es decir, 1 mebibyte) o " "menores." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Anteponga = a un valor para especificar una coincidencia exacta:\n" " =1024 solo muestra archivos de 1024 bytes de tamaño (es decir, 1 " "kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Anteponga = a un valor para especificar una coincidencia exacta:\n" " =1024 solo muestra archivos de 1024 bytes de tamaño (es decir, 1 " "kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Anteponga < o > para buscar archivos más pequeños/más grandes que el valor " "dado:\n" " >10,5 m|<1 g para mostrar archivos de más de 10,5 MiB (mebibytes),\n" " pero inferior a 1 GiB (gibibytes), utilice un | entre condiciones." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Para su comodidad, también se pueden utilizar las variantes kb, mb y gb para " "las unidades más conocidas de kilo-, mega- y gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtra los archivos en función de su tasa de bits." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Los valores deben ingresarse solo como dígitos numéricos. La unidad es " "siempre Kb/s (Kilobits por segundo)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Al igual que Tamaño de archivo (arriba), se pueden usar los operadores =, !, " "< y >, y se pueden especificar múltiples condiciones con | tubería:\n" " >256|<1411 para mostrar archivos con una tasa de bits de al menos 256 Kb/" "s\n" " con un bitrate máximo de 1411 Kb/s." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtra los archivos en función de su tasa de bits." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "De forma predeterminada, los archivos con una duración mayor o igual a la " "ingresada serán emparejados, a menos que se use un operador (=, !, <, o >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Introduzca un valor bruto en segundos o utilice los formatos de hora MM:SS y " "HH:MM:SS:\n" " >5:30 para mostrar archivos de al menos 5 minutos y medio de duración.\n" " <5:30:00 muestra archivos de menos de 5 horas y media de duración." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Se pueden especificar múltiples condiciones con | separadores de tubería:\n" " >6:00|<12:00 para mostrar archivos de entre 6 y 12 minutos de duración.\n" " !9:54|!8:43|!7:32 para ocultar algunos archivos específicos de los " "resultados.\n" " =5:34|=4:23|=3:05 para incluir archivos con duraciones específicas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Utiliza los códigos de país definidos por la norma ISO 3166-2 (véase " "Wikipedia):\n" " «US» solo devolverá archivos de usuarios conectados a través de Estados " "Unidos. Del mismo modo, «GB» devuelve los archivos de los usuarios con IP en " "el Reino Unido." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Se pueden especificar varios países con comas o espacios." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Puesto Disponible" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Mostrar solo resultados de usuarios que tengan al menos un puesto de subida " "disponible. Este filtro se aplica inmediatamente." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Límites de Velocidad de Subida" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Limitar velocidad de subida:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Límite alternativo de velocidad de subida (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Límite alternativo de velocidad de subida (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Ayuda de los comandos del chat privado" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Incluir texto…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtra los resultados cuyas rutas de archivo contienen el texto " "especificado. Se pueden especificar múltiples frases y palabras, por " "ejemplo, frase exacta|música|término|frase exacta dos" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Excluir texto…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Excluye los resultados cuyas rutas de archivo contienen el texto " "especificado. Se pueden especificar múltiples frases y palabras, por " "ejemplo, frase exacta|música|término|frase exacta dos" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Tipo de archivo…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tipo de archivo, por ejemplo, flac|wav|ape o !mp3|!m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Tamaño del archivo…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Tamaño del archivo, p. >10,5 m <1 g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Tasa de bits…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Tasa de bits, p. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Duración…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Duración, p. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Código de país…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Código de país, por ejemplo, US|GB|ES o !DE|!GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Prohibir a los usuarios el acceso a los archivos que usted comparte, " "basándose en el nombre de usuario, la dirección IP o el país." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Códigos de países a bloquear (separados por comas):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Los códigos deben estar en formato ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Utilizar un mensaje de bloqueo geográfico personalizado:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Utilizar un mensaje personalizado para los vetos:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Direcciones IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Activar el corrector ortográfico (requiere un reinicio)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Restaurar al arranque los chats privados abiertos previamente" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Habilitar respuestas de mensajes privados tipo CTCP (versión cliente)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Número de charlas privadas recientes para mostrar:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Número de mensajes de salas de charlas recientes para mostrar:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Autocompletar el Chat" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Habilitar la tecla de tabulación para el autocompletado" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Activar la lista desplegable de autocompletar" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Caracteres mínimos requeridos para mostrar el desplegable:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Autocompletados permitidos:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Nombres de amigos" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nombres de usuario de las salas de chat" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nombres de las salas" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Comandos" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Marcas temporales" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Formato de charla privada:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Por omisión" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Formato de sala de chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Texto a voz" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Activar la conversión de texto a voz" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Comando de texto a voz:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Mensaje de chat privado:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Mensaje de la sala de chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censurar" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Habilitar la censura de patrones de texto" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Sustitución Automática" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Activar la sustitución automática de palabras" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Limpiar automáticamente las descargas finalizadas/filtradas de la lista de " "transferencias" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" "Almacenar las descargas completadas en subcarpetas con los nombres de usuario" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Acción de doble clic para las descargas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Permitir a estos usuarios enviarle archivos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Carpetas" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Descargas de archivos finalizadas" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Descargas completadas" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Archivos recibidos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Eventos" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Ejecutear el comando después de que termine la descarga del archivo ($ para " "la ruta del archivo):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Ejecutar el comando después de que la descarga de la carpeta termine ($ para " "la ruta de la carpeta):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtros de Descarga" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Activar los filtros de descarga" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Añador" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Cargar valores por defecto" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Verificar filtros" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "No verificado" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorar mensajes de charla y resultados de búsqueda de usuarios, basado en " "nombre de usuario o dirección IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Guardar registro de las salas de chat por defecto" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Registrar privados por omisión" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Registrar las transferencias en un archivo" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Registrar los mensajes de depuración en un archivo" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Formato de la marca temporal del archivo de registro:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Ubicaciones de las Carpetas" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Carpeta de registros de las salas de chat:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Carpeta de registros de los chats privados:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Carpeta del registro de las transferencias:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Carpeta de registros de depuración:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Inicie sesión en una cuenta existente de Soulseek o cree una nueva. Los " "nombres de usuario distinguen entre mayúsculas y minúsculas y son únicos." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Bloquear dirección IP" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Rango de puertos de escucha (requiere un reinicio):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Estado de Ausente" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutos de inactividad antes de irse (0 para deshabilitar):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Mensaje de respuesta automática en caso de estar ausente:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Reenviar automáticamente el puerto de escucha (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Conexión automática al servidor al arranque" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Servidor de Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Vincula las conexiones a una interfaz de red específica, útil para, por " "ejemplo, garantizar que se utilice una VPN en todo momento. Déjelo vacío " "para utilizar cualquier interfaz disponible. Cambie este valor solo si sabe " "lo que está haciendo." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Rango de puertos de escucha (requiere un reinicio):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Reproduciendo Ahora le permite mostrar lo que su reproductor multimedia está " "reproduciendo utilizando el comando /now en el chat." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Otro" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Formato de Reproduciendo Ahora" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Formato del mensaje Reproduciendo Ahora:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Probar la Configuración" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Habilitar las extensiones" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Agregar complementos" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Añadir Extensiones" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Ajustes" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Ajustes" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versión:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Creado por" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Activar el historial de búsqueda" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Otros clientes pueden tener la opción para compartir archivos de forma " "privada. Si es así esos archivos serán prefijados con «[PRIVADO]», y no se " "pueden descargar hasta que el subidor dé permiso explícito. Pregúntales " "amablemente." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" "Mostrar los archivos compartidos de forma privada en los resultados de la " "búsqueda" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limitar el número de resultados por búsqueda:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Activar los filtros de resultados de búsqueda por defecto" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Incluir:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Excluir:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Tipo de Archivo:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Tamaño:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Tasa de bits:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Duración:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Código de País:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Mostrar solo resultados de usuarios con algún puesto de subida disponible." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Ayuda del Filtro de Resultados" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Búsquedas en la Red" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Responder a las solicitudes de búsqueda de otros usuarios" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Las búsquedas más cortas que este número de caracteres serán ignoradas:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Número máximo de resultados de búsqueda a enviar por solicitud de búsqueda:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Limpiar historial de búsqueda" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Limpiar historial de filtros" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Reescanea automáticamente el contenido de sus carpetas compartidas al " "arranque. Si se desactiva, las carpetas compartidas solo se actualizan " "cuando se inicia manualmente un reescaneo." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Reescanear compartidos al arranque" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Nombres de amigos" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Reescanear compartidos" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Limpiar automáticamente las subidas finalizadas/canceladas de la lista de " "transferencias" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Acción de doble clic para las subidas:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limitar velocidad de subida:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Por transferencia" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Total de transferencias" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Puestos de Subida" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Los archivos se subirán de forma cíclica a los usuarios que " "están esperando en la cola.\n" "First In, First Out: Los archivos se subirán en el orden en que estaban en " "la cola." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Tipo de cola de subida:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Poner en cola las subidas si la velocidad total de transferencia alcanza " "(KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Limitar el número de puestos de subida a:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Dar prioridad a todos los amigos" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Límites de Cola" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Limitar el número de resultados por búsqueda:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Los límites de cola no se aplican a los amigos" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Las apariciones de $ son sustituidas por la URL. Se utilizan las " "aplicaciones por defecto del sistema en los casos en que no se haya " "configurado un protocolo." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Comando del gestor de archivos:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Reiniciar Imagen" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Presentación" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Imagen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Limpiar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Preferir modo oscuro" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Utilizar la Barra de _Encabezamiento" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Mostrar el icono de la bandeja de sistema" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimizar a la bandeja de sistema al arranque" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Rango de puertos de escucha (requiere un reinicio):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Al cerrar Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notificaciones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Activar el sonido de las notificaciones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Mostrar la notificación de los chats privados y las menciones en el título " "de la ventana" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Mostrar notificaciones para:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Descargas de archivos finalizadas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Descargas de carpetas finalizadas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Mensajes privados" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Mensajes de las salas de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Menciones de las salas de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Resultados de la lista de deseos encontrados" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Restaurar al arranque la pestaña principal previamente activa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Botones de cierre en las pestañas secundarias" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Color de la etiqueta de la pestaña normal:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Color de la etiqueta de la pestaña cambiada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Color de la etiqueta de la pestaña resaltada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Pestañas principales visibles:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Posición de la barra de pestañas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Pestañas principales" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Mostrar las rutas inversas de archivo en las vistas de búsqueda y " "transferencia (requiere un reinicio)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Interfaz de red (requiere un reinicio):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Color del texto de lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Color del texto de los resultados de búsqueda en cola de espera:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Nombres de usuario de las salas de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aspecto del nombre de usuario del chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Color del texto remoto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Color del texto local:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Color del texto remoto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "Color del texto de la acción /me:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Color del texto resaltado:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Color del texto de los enlaces URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Estados Unidos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Color del texto en línea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Color del texto de ausencia:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Color del texto fuera de línea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Entradas de Texto" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Color de fondo de la entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Color del texto de la entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Fuentes" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Fuente global:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Fuente de las listas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Fuente de vista de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Fuente del chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Fuente de transferencias:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Fuente de las búsquedas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Fuente de las exploraciones de usuario:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Iconos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Carpeta de archivos incompletos:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Abortar usuario(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Vetar Usuario(s)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Limpiar todas las subidas finalizadas y canceladas." #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Mensajes" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Limpiar todas las subidas" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Guardar la Lista de Compartidos en el Disco" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Actualizar archivos" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Editar carpeta compartida" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Archivos Compartidos" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Carpetas Compartidas" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Subidas en Cola" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Puestos de Subida Disponibles" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Velocidad de Subida" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Intereses" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Regalar privilegios…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Actualizar archivos" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Equipo de Nicotine+" #~ msgid "_Clear" #~ msgstr "_Limpiar" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "No se puede guardar %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Amigos de Confianza" #~ msgid "Quit program" #~ msgstr "Cerrar el programa" #~ msgid "Username:" #~ msgstr "Nombre de usuario:" #~ msgid "Re_commendations for Item" #~ msgstr "_Recomendaciones para el artículo" #~ msgid "_Remove Item" #~ msgstr "_Eliminar elemento" #~ msgid "_Remove" #~ msgstr "Eliminar" #~ msgid "Send M_essage" #~ msgstr "Enviar M_ensaje" #~ msgid "Send Message" #~ msgstr "Enviar mensaje" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Ver perfil de usuario" #~ msgid "Start Messaging" #~ msgstr "Iniciar Mensajes" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Introduzca el nombre del usuario al que desea enviar un mensaje:" #, fuzzy #~ msgid "_Message" #~ msgstr "Mensajes" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "" #~ "Introduzca el nombre del usuario cuya lista de compartidos desea recibir:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Ver perfil de usuario" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Introduzca el nombre del usuario cuya lista de compartidos desea recibir:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Explorar Archivos" #~ msgid "Password" #~ msgstr "Contraseña" #, fuzzy #~ msgid "Download File" #~ msgstr "Descargar archivo" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Usuarios Similares" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Introduzca el nombre de usuario de la persona cuyos archivos desea ver" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Introduzca el nombre de usuario de la persona cuya información desea ver" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Introduzca el nombre de usuario de la persona a la que desea enviar un " #~ "mensaje" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Introduzca el nombre de usuario de la persona que desea añadir a su lista " #~ "de amigos" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Introduzca el nombre de la sala a la que desea unirse. Si la sala no " #~ "existe, se creará." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Mostrar el Panel de Historial de _Registro" #~ msgid "Save _Picture" #~ msgstr "Guardar _Imagen" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Se descartó el resultado de búsqueda incorrecto %(filepath)s del usuario " #~ "%(user)s para la consulta de búsqueda «%(query)s»" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Algunos clientes no envían resultados de búsqueda si se incluyen " #~ "caracteres especiales." #~ msgid "Remove special characters from search terms" #~ msgstr "Eliminar los caracteres especiales de los términos de búsqueda" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problema ejecutando «%s»" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemas de ejecución en la carpeta: %s" #~ msgid "Disallowed extension" #~ msgstr "Extensión no permitida" #~ msgid "Too many files" #~ msgstr "Demasiados archivos" #~ msgid "Too many megabytes" #~ msgstr "Demasiados megabytes" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "El servidor no permite realizar búsquedas de la lista de deseos en este " #~ "momento" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "La velocidad de transferencia de archivos depende de los usuarios desde " #~ "los cuales se descargue. Algunos usuarios serán más rápidos, mientras que " #~ "otros serán más lentos." #~ msgid "Started Downloads" #~ msgstr "Descargas iniciadas" #~ msgid "Started Uploads" #~ msgstr "Subidas Iniciadas" #~ msgid "Replace censored letters with:" #~ msgstr "Sustituir las letras censuradas por:" #~ msgid "Censored Patterns" #~ msgstr "Patrones Censurados" #~ msgid "Replacements" #~ msgstr "Sustituciones" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Si un usuario de la red Soulseek busca un archivo que existe en sus " #~ "compartidos, los resultados de la búsqueda se enviarán a dicho usuario." #~ msgid "Send to Player" #~ msgstr "Enviar al Reproductor" #~ msgid "Send to _Player" #~ msgstr "Enviar al _Reproductor" #~ msgid "_Open in File Manager" #~ msgstr "_Abrir en el Gestor de Archivos" #~ msgid "Media player command:" #~ msgstr "Comando del reproductor multimedia:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "No ha sido posible guardar la descarga en la subcarpeta del nombre de " #~ "usuario, volviendo a la carpeta de descarga por defecto. Error: %s" #~ msgid "Buddy-only" #~ msgstr "Solo para amigos" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Compartir sólo con los amigos" #~ msgid "_Quit…" #~ msgstr "_Salir…" #~ msgid "_Configure Shares" #~ msgstr "_Configurar compartidos" #~ msgid "Remote file error" #~ msgstr "Error de archivo remoto" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "No se encuentra %(option1)s o %(option2)s, por favor, instala cualquiera " #~ "de los dos." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s carpetas encontradas después de un nuevo escaneo" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "No se han podido procesar las siguientes bases de datos: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Fallo al enviar el número de archivos compartidos al servidor: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Salir/Ejecutar en Segundo Plano" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Puerto de escucha no está establecido" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Búsquedas en la Red" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "" #~ "Limitar los compartidos de solo-para-amigos a los amigos de confianza" #~ msgid "Shared" #~ msgstr "Compartido" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Buscar archivos y carpetas (coincidencia exacta)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Desactualizado" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "La versión %(version)s está disponible, lanzada el %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Pareces estar usando una versión de desarrollo de Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Estás usando la última versión de Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Comprovar _Última Versión" #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferir Modo _Oscuro" #~ msgid "Show _Log History Pane" #~ msgstr "Mostrar el Panel de Historial de _Registro" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lista de Amigos en una Pestaña Separada" #~ msgid "Buddy List Always Visible" #~ msgstr "Lista de Amigos Siempre Visible" #~ msgid "_View" #~ msgstr "_Ver" #~ msgid "_Open Log Folder" #~ msgstr "_Abrir Carpeta del Registro" #~ msgid "_Browse Folder(s)" #~ msgstr "_Explorar Carpeta(s)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bytes) por segundo." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Se envía a los usuarios como razón del bloqueo geográfico." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Se envía a los usuarios como razón por la cual se les ha vetado." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Una vez que interactúe con la aplicación ausente, el estado se " #~ "establecerá en línea." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Cada usuario puede poner en cola un máximo de:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "archivos" #~ msgid "Queue Behavior" #~ msgstr "Comportamiento de la Cola" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Si se desactiva, los puestos se determinarán automáticamente según las " #~ "limitaciones del ancho de banda disponible." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Tenga en cuenta que el tema del sistema operativo puede tener prioridad." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "La pestaña más a la izquierda es activada por defecto al arranque" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "¡Cerrar %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "terminado" #~ msgid "done" #~ msgstr "hecho" #~ msgid "Remember choice" #~ msgstr "Recordar la elección" #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Interfaz de usuario" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Escuchando en el puerto %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "El servidor parece caído o no está respondiendo, reintentando en %i " #~ "segundos" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ utiliza una red peer-to-peer para conectarse con otros " #~ "usuarios. Para que los usuarios puedan conectarse a usted sin problemas " #~ "es crucial tener un puerto de escucha abierto." #~ msgid "--- disconnected ---" #~ msgstr "--- desconectado ---" #~ msgid "--- reconnected ---" #~ msgstr "--- reconectado ---" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Tierra" #~ msgid "Czech Republic" #~ msgstr "República Checa" #~ msgid "Turkey" #~ msgstr "Turquía" #~ msgid "Joined Rooms " #~ msgstr "Salas a las que se ha Unido " #~ msgid "_Auto-join Room" #~ msgstr "Unirse _Automáticamente a la Sala" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintaxis: Las letras no distinguen entre mayúsculas y minúsculas. " #~ "Todas las expresiones regulares de Python son compatibles si el escape " #~ "está desactivado. Para los filtros simples, se recomienda mantener el " #~ "escape activado." #~ msgid "Escaped" #~ msgstr "Carácter de escapado" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Carácter de escapado" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Ingrese el patrón de texto y el reemplazo, respectivamente:" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s carpetas encontradas antes del reescaneo, reconstruyendo…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "No hay ningún puerto de escucha disponible en el intervalo de puertos " #~ "especificado %s–%s" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Elija un rango para seleccionar un puerto de escucha. Se utilizará el " #~ "primer puerto disponible en el rango." #, fuzzy #~ msgid "First Port" #~ msgstr "Primer puerto" #~ msgid "to" #~ msgstr "a" #, fuzzy #~ msgid "Last Port" #~ msgstr "Último puerto" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "No se encuentra %s, por favor instálalo." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "No se puede importar el módulo Gtk. ¿Mala instalación del módulo python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Estás utilizando una versión no soportada de GTK %(major_version)s. Debes " #~ "instalar GTK %(complete_version)s o más nueva." #~ msgid "User Info" #~ msgstr "Información del usuario" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Acercarse" #~ msgid "Zoom Out" #~ msgstr "Alejarse" #~ msgid "Show User I_nfo" #~ msgstr "Mostrar I_nformación de usuario" #~ msgid "Request User's Info" #~ msgstr "Solicitar información de usuario" #~ msgid "Request User's Shares" #~ msgstr "Consultar los Compartidos del Usuario" #~ msgid "Request User Info" #~ msgstr "Solicitar información de usuario" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Introduzca el nombre del usuario cuya información desea consultar:" #~ msgid "Request Shares List" #~ msgstr "Solicitar la Lista de Compartidos" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "URL de Soulseek no válida: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Los usuarios de la red Soulseek podrán descargar archivos de las carpetas " #~ "que usted comparta. Compartir archivos es crucial para la salud de la red " #~ "Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Actualizar I_nfo" #~ msgid "Chat Room Commands" #~ msgstr "Comandos de la Sala de Chat" #~ msgid "/join /j 'room'" #~ msgstr "/join /j «sala»" #~ msgid "Join room 'room'" #~ msgstr "Unirse a la sala «sala»" #~ msgid "/me 'message'" #~ msgstr "/me «mensaje»" #~ msgid "Display the Now Playing script's output" #~ msgstr "Mostrar la salida del script de Reproduciendo Ahora" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad «usuario»" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Añadir usuario «usuario» a tu lista de amigos" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy «usuario»" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Eliminar usuario «usuario» de tu lista de amigos" #~ msgid "/ban 'user'" #~ msgstr "/ban «usuario»" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Añadir usuario «usuario» a tu lista de vetados" #~ msgid "/unban 'user'" #~ msgstr "/unban «usuario»" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Eliminar al usuario «usuario» de tu lista de vetados" #~ msgid "/ignore 'user'" #~ msgstr "/ignore «usuario»" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Añadir usuario «usuario» a tu lista de ignorados" #~ msgid "/unignore 'user'" #~ msgstr "/unignore «usuario»" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Eliminar usuario «usuario» de tu lista de ignorados" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b «usuario»" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w «usuario»" #~ msgid "Request info for 'user'" #~ msgstr "Solicitar información de «usuario»" #~ msgid "/ip 'user'" #~ msgstr "/ip «usuario»" #~ msgid "Show IP for user 'user'" #~ msgstr "Mostrar la IP del usuario «usuario»" #~ msgid "/search /s 'query'" #~ msgstr "/search /s «consulta»" #~ msgid "Start a new search for 'query'" #~ msgstr "Comenzar una nueva búsqueda para «consulta»" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs «consulta»" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Buscar «consulta» en las salas a las que se ha unido" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs «consulta»" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Buscar «consulta» en la lista de amigos" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us «usuario» «consulta»" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg «usuario» «mensaje»" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Enviar mensaje «mensaje» al usuario «usuario»" #~ msgid "/pm 'user'" #~ msgstr "/pm «usuario»" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Abre una ventana de chat privado con el usuario «usuario»" #~ msgid "Private Chat Commands" #~ msgstr "Comandos de charla privada" #~ msgid "Add user to your ban list" #~ msgstr "Añadir usuario a tu lista de vetados" #~ msgid "Add user to your ignore list" #~ msgstr "Añadir usuario a tu lista de ignorados" #~ msgid "Browse shares of user" #~ msgstr "Explorar los compartidos del usuario" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Para un filtrado sensible al orden, así como para filtrar varias frases " #~ "exactas, se pueden utilizar barras verticales para separar frases y " #~ "palabras.\n" #~ " Ejemplo: Spears|Brittany|Mi hermoso álbum|hola" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Para excluir archivos que no sean de audio, use !0 en el filtro de " #~ "duración." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtra los archivos en función de los países de los usuarios." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Para volver a ver los resultados completos, simplemente borre todos los " #~ "filtros activos." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Consulte las preferencias para conocer más opciones de filtrado." #~ msgid "File size" #~ msgstr "Tamaño del archivo" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Limpiar todos los filtros activos" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Recorrer cíclicamente las opciones de autocompletado al pulsar la tecla " #~ "de tabulación" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Ocultar el desplegable cuando solo haya una coincidencia" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Descargar carpetas en orden alfanumérico inverso" #~ msgid "Incomplete file folder:" #~ msgstr "Carpeta de archivos incompletos:" #~ msgid "Download folder:" #~ msgstr "Carpeta de Descarga:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Guardar las subidas de los amigos en:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Usar UPnP para redirigir el puerto de escucha (intervalo en horas):" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Comparta sus carpetas con todos los usuarios o amigos de Soulseek, " #~ "permitiendo que sus contenidos se descarguen directamente desde su " #~ "dispositivo. Los archivos ocultos nunca se comparten." #~ msgid "Secondary Tabs" #~ msgstr "Pestañas secundarias" #~ msgid "Chat room tab bar position:" #~ msgstr "Posición de la barra de pestañas de la sala de chat:" #~ msgid "Private chat tab bar position:" #~ msgstr "Posición de la barra de pestañas del chat privado:" #~ msgid "Search tab bar position:" #~ msgstr "Posición de la barra de pestañas de la búsqueda:" #~ msgid "User info tab bar position:" #~ msgstr "Posición de la barra de pestañas de la información del usuario:" #~ msgid "User browse tab bar position:" #~ msgstr "Posición de la barra de pestañas de la exploración del usuario:" #~ msgid "Tab Labels" #~ msgstr "Etiquetas de las Pestañas" #~ msgid "_Refresh Info" #~ msgstr "_Actualizar información" #~ msgid "Block IP Address" #~ msgstr "Bloquear dirección IP" #~ msgid "Connected" #~ msgstr "Conectado" #~ msgid "Disconnected" #~ msgstr "Desconectado" #~ msgid "Disconnected (Tray)" #~ msgstr "Desconectado (Bandeja)" #~ msgid "User(s)" #~ msgstr "Usuario(s)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "El alias «%s» no ha devuelto nada" #~ msgid "Alternative Speed Limits" #~ msgstr "Límites de velocidad alternativos" #~ msgid "Last played" #~ msgstr "Última reproducida" #~ msgid "Playing now" #~ msgstr "Reproduciendo ahora" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "No ha sido posible guardar el archivo %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Código de error %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "No existe tal nombre de usuario (%s)" #~ msgid "Aliases:" #~ msgstr "Alias:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Alias %(alias)s eliminado: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "No existe el alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Límites de velocidad alternativos" #~ msgid "Aliases" #~ msgstr "Alias" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al «comando» «definición»" #~ msgid "Add a new alias" #~ msgstr "Añadir un alias nuevo" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un «comando»" #~ msgid "Remove an alias" #~ msgstr "Elimina un alias" #~ msgid "Chat History" #~ msgstr "Historial del Chat" #~ msgid "Command aliases" #~ msgstr "Alias de comandos" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limitar la velocidad de descarga a (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autor(es):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limitar la velocidad de subida a (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Artículo de la lista de deseos encontrado" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Las pestañas muestran los iconos de estado del usuario en lugar del texto " #~ "de estado" #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Mostrar rutas de archivo emergentes en las vistas de lista de archivos" #~ msgid "Colored and clickable usernames" #~ msgstr "Nombres de usuario coloreados y clicables" #~ msgid "Notification changes the tab's text color" #~ msgstr "La notificación cambia el color del texto de la pestaña" #~ msgid "Cancel" #~ msgstr "Cancelar" #~ msgid "OK" #~ msgstr "Aceptar" #~ msgid "_Add to Buddy List" #~ msgstr "_Añadir a la Lista de Amigos" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Limpiar todas las descargas marcadas con un estado específico." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Limpiar todas las subidas marcadas con un estado específico." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "usar directorio de datos de usuario no predeterminado para p.e. lista de " #~ "descargas" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Sección de configuración desconocida '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Opción de configuración desconocida '%(option)s' en la sección " #~ "'%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "La Versión %s està disponible" #, python-format #~ msgid "released on %s" #~ msgstr "publicada en %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ está ejecutándose en segundo plano" #, python-format #~ msgid "Private message from %s" #~ msgstr "Mensaje privado de %s" #~ msgid "Aborted" #~ msgstr "Cancelado" #~ msgid "Blocked country" #~ msgstr "País bloqueado" #~ msgid "Finished / Aborted" #~ msgstr "Terminados/Anulados" #~ msgid "Close tab" #~ msgstr "Cerrar pestaña" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Has sido mencionado en la sala %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Orden %s no reconocida" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Advertencia: %(realuser)s está intentando suplantar a %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "La interfaz de red que ha especificado, «%s», no existe. Cambie o elimine " #~ "la interfaz de red especificada y reinicie Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "El rango especificado para los puertos de conexión del cliente era {}-{}, " #~ "pero ninguno de ellos era utilizable. Aumente o " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Tenga en cuenta que parte de su rango se encuentra por debajo de 1024, " #~ "esto no suele estar permitido en la mayoría de los sistemas operativos, a " #~ "excepción de Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progreso del reescaneo: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "error del SO: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP no está disponible en esta red" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Fallo en la asignación del puerto WAN externo: %(error)s" #~ msgid "Room wall" #~ msgstr "Muro de la sala" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "El puerto de escucha por defecto, «2234», funciona bien en la mayoría de " #~ "los casos. Si necesitas usar un puerto diferente podrás modificarlo en " #~ "las preferencias más adelante." #~ msgid "Show users with similar interests" #~ msgstr "Mostrar usuarios con intereses similares" #~ msgid "Menu" #~ msgstr "Menú" #~ msgid "Expand / Collapse all" #~ msgstr "Expandir/Contraer todo" #~ msgid "Configure shares" #~ msgstr "Configurar los compartidos" #~ msgid "Create or join room…" #~ msgstr "Crear o unirse a la sala…" #~ msgid "_Room List" #~ msgstr "Lista de _Salas" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Habilitar límites alternativos de velocidad de descarga y subida" #~ msgid "Show log history" #~ msgstr "Mostrar el historial del registro" #~ msgid "Result grouping mode" #~ msgstr "Modo de agrupación de resultados" #~ msgid "Free slot" #~ msgstr "Puesto disponible" #~ msgid "Save shares list to disk" #~ msgstr "Guardar lista de compartidos en el disco" #~ msgid "_Away" #~ msgstr "_Fuera" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Fallo al cargar el archivo interfaz %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Intentando reiniciar el índice de archivos compartidos debido a un error. " #~ "Por favor, reescanee sus archivos compartidos." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "No se pudo acceder al índice de archivos compartidos. Esto podría deberse " #~ "a que varias instancias de Nicotine+ estén activas simultáneamente, a " #~ "problemas de permisos de archivos o a otro problema en Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ es un cliente de Soulseek" #~ msgid "enable the tray icon" #~ msgstr "habilitar el icono de bandeja" #~ msgid "disable the tray icon" #~ msgstr "deshabilitar el icono de bandeja" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Obtener privilegios de Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Dirección IP pública es %(ip)s y el puerto de escucha activo es " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "desconocido" #~ msgid "Notification" #~ msgstr "Notificación" #~ msgid "Length" #~ msgstr "Duración" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Imagen no guardada, %s ya existe." #~ msgid "_Open" #~ msgstr "_Abrir" #~ msgid "_Save" #~ msgstr "_Guardar" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Fallo al cargar complemento «%s», no se puede encontrar." #, python-format #~ msgid "I/O error: %s" #~ msgstr "error de E/S: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Fallo al abrir la ruta del archivo: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Fallo al abrir la URL: %s" #~ msgid "_Log Conversation" #~ msgstr "_Registrar conversación" #~ msgid "Result Filter List" #~ msgstr "Lista de Filtros de Resultados" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Anteponga < o > para encontrar archivos menores/mayores que el valor dado." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Los archivos VBR muestran su tasa de bits media y suelen tener una tasa " #~ "de bits inferior a la de un archivo CBR comprimido de 320 kbps con la " #~ "misma calidad de audio." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Como en el caso del tamaño de arriba, se pueden utilizar =, < y >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Impedir el acceso de escritura de otros programas a los archivos que se " #~ "descargan (desactivar para NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Donde se almacenan temporalmente las descargas incompletas." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Donde se almacenarán las subidas de los amigos (con una subcarpeta creada " #~ "para cada amigo)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Activar el estado de ausente tras varios minutos de inactividad:" #~ msgid "Protocol:" #~ msgstr "Protocolo:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Carpeta de temas de iconos (requiere reinicio):" #~ msgid "Establishing connection" #~ msgstr "Estableciendo conexión" #~ msgid "Clear Groups" #~ msgstr "Limpiar grupos" #~ msgid "User List" #~ msgstr "Lista de usuarios" #~ msgid "_Reset Statistics…" #~ msgstr "_Reiniciar estadísticas…" #~ msgid "Clear _Downloads…" #~ msgstr "Limpiar _descargas…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Limpiar _Subidas…" #~ msgid "Block User's IP Address" #~ msgstr "Bloquear dirección IP de usuario" #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorar dirección IP del usuario" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Borre todas las descargas que hayan terminado de transferirse o hayan " #~ "sido atrapadas por un filtro." #~ msgid "Usernames" #~ msgstr "Nombres de usuario" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Mostrar el registro de mensajes de las salas de chat cuando se vuelva a " #~ "entrar a una sala" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Borre todas las cargas que hayan terminado de transferirse o que hayan " #~ "sido canceladas por el usuario remoto." #~ msgid "Queue Position" #~ msgstr "Posición en cola" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "El usuario %(user)s está buscando directamente «%(query)s», devolviéndose " #~ "%(num)i resultados" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVADO]" #~ msgid "Room wall (personal message set)" #~ msgstr "Muro de la sala (mensaje personal definido)" #~ msgid "Your config file is corrupt" #~ msgstr "Tu archivo de configuración está corrupto" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Lo sentimos, pero parece que su archivo de configuración está corrupto. " #~ "Por favor, reconfigure Nicotine+.\n" #~ "\n" #~ "Hemos renombrado su antiguo archivo de configuración a\n" #~ "%(corrupt)s\n" #~ "Si abre este archivo con un editor de texto podrá rescatar algunos de sus " #~ "ajustes." #~ msgid "User Description" #~ msgstr "Descripción de usuario" #~ msgid "User Interests" #~ msgstr "Intereses de usuario" #~ msgid "User Picture" #~ msgstr "Imagen del Usuario" #~ msgid "Search Wishlist" #~ msgstr "Buscar en la Lista de Deseos" #, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Cargando Nicotine+ %(nic_version)s" #, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Usando Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Cerrando Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "¡Cerrar Nicotine+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Usuario:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Todos %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "Archivos %(number)2s " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Permitir expresiones regulares para la inclusión y exclusión del filtro" #, fuzzy #~ msgid "Quit…" #~ msgstr "Salir" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Ver la pestaña principal anterior al inicio" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Activar los filtros de resultados de búsqueda por defecto" #~ msgid "Close Nicotine+?" #~ msgstr "Cerrar Nicotine+?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "¿Realmente quieres salir de Nicotine+?" #~ msgid "Run in Background" #~ msgstr "Ejecutar en segundo plano" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "Notificación en línea" #~ msgid "_Prioritize User" #~ msgstr "_Priorizar usuario" #~ msgid "_Trust User" #~ msgstr "_Usuario de confianza" #~ msgid "Request User's IP Address" #~ msgstr "Solicitar dirección IP de usuario" #~ msgid "Request IP Address" #~ msgstr "Solicitar dirección IP" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Introduzca el nombre de un usuario cuya dirección IP desea recibir:" #~ msgid "Downloaded" #~ msgstr "Descargado" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "No se ha podido añadir la descarga %(filename)s a los archivos " #~ "compartidos: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Compartir automáticamente las descargas" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "El equivalente a añadir su carpeta de descargas como un recurso " #~ "compartido público, sin embargo, los archivos descargados en esta carpeta " #~ "serán automáticamente accesibles a otros (no se requiere volver a " #~ "escanear)." #~ msgid "Unable to Share Folder" #~ msgstr "No es posible compartir carpeta" #~ msgid "The chosen virtual name is empty" #~ msgstr "El nombre virtual elegido está vacío" #~ msgid "The chosen virtual name already exists" #~ msgstr "El nombre virtual elegido ya existe" #~ msgid "The chosen folder is already shared" #~ msgstr "La carpeta elegida ya ha sido compartida" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Establecer nombre virtual" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Introduce nombre virtual para '%(dir)s':" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "El nombre virtual elegido está vacío o ya existe" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "La carpeta elegida ya está compartida." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "Propiedades %s" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Terminado el reescaneo de las acciones de los amigos" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Lista de plugins" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Error al escanear %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Mostrar el panel _Log" #~ msgid "Addresses" #~ msgstr "Direcciones" #~ msgid "Handler" #~ msgstr "Manejador" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "No se ha podido habilitar el plugin." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "No se ha podido desactivar el plugin." #~ msgid "Transfers" #~ msgstr "Transferencias" #~ msgid "Ban List" #~ msgstr "Lista de vetos" #~ msgid "Ignore List" #~ msgstr "Lista de ignorados" #~ msgid "Censor & Replace" #~ msgstr "Censurar y reemplazar" #, fuzzy #~ msgid "Completion" #~ msgstr "Finalización" #~ msgid "Categories" #~ msgstr "Categorías" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Cargar carpeta a…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Cargar carpeta recursiva a…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Descargar _Recursiva" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Descargar R_ecursive To…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Subir_carga Archivo(s)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Error al intentar mostrar la carpeta '%(folder)s', error reportado: " #~ "%(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Seleccione el destino para descargar la carpeta con subcarpetas del " #~ "usuario" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Seleccione el destino para descargar una carpeta del usuario" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Seleccione el destino para descargar archivos del usuario" #~ msgid "Wishes" #~ msgstr "Deseos" #~ msgid "privileged" #~ msgstr "privilegiado" #~ msgid "prioritized" #~ msgstr "priorizado" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Direcciones IP bloqueadas" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Completar los nombres de los compañeros" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Nombres de usuario completos en las salas de chat" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Nombres completos de las habitaciones" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Lista desplegable" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Comando del administrador de archivos ($ para la ruta del archivo):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Comando del reproductor multimedia ($ para la ruta del archivo):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Direcciones IP ignoradas" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Mostrar marcas de tiempo" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Ventanas emergentes de notificación" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Mostrar una notificación emergente cuando un archivo ha terminado de " #~ "descargarse" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Mostrar una notificación emergente cuando una carpeta ha terminado de " #~ "descargarse" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Mostrar ventana emergente de notificación cuando se recibe un mensaje " #~ "privado" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Mostrar una notificación emergente cuando alguien envía un mensaje en una " #~ "sala de chat" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Mostrar una notificación emergente cuando se le menciona en una sala de " #~ "chat" #, fuzzy #~ msgid "Tray" #~ msgstr "Bandeja" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Las instancias de $ serán sustituidas por el enlace. Se utilizará el " #~ "navegador web por defecto del sistema en los casos en que no se haya " #~ "configurado un protocolo." #~ msgid "Handler:" #~ msgstr "Manejador:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Pestañas primarias" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Habilitar la información sobre la ruta de los archivos en las vistas de " #~ "búsqueda y transferencia" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Muestra la ruta completa de un resultado de búsqueda o de una " #~ "transferencia de archivos cuando se pasa el cursor por encima de una ruta " #~ "de carpeta o de un nombre de archivo." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Mostrar los archivos compartidos de forma privada en los recursos " #~ "compartidos de los usuarios" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Otros clientes pueden ofrecer una opción para enviar archivos compartidos " #~ "de forma privada cuando se navega por sus recursos compartidos. Las " #~ "carpetas que contienen este tipo de archivos llevan el prefijo '[CARPETA " #~ "PRIVADA]', y no se pueden descargar a menos que el cargador dé su permiso " #~ "explícito." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censurar y reemplazar" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Mostrar controles de registro de depuración" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Registro de depuración" #~ msgid "Virtual Name" #~ msgstr "Nombre virtual" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Editar nombre virtual" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Copiar la URL de la carpeta" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Bajar" #~ msgid "Download" #~ msgstr "Bajar" #~ msgid "Upload" #~ msgstr "Subir" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Cargar el contenido de la carpeta" #, fuzzy #~ msgid "Upload File(s)" #~ msgstr "Cargar archivo(s)" #~ msgid "Rename" #~ msgstr "Renombrar" #~ msgid "File Lists" #~ msgstr "Listas de archivos" #~ msgid "Copy File Path" #~ msgstr "Copiar ruta de archivo" #~ msgid "R_emove Wish" #~ msgstr "R_emover deseo" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Parece que '%s' no es un directorio, no carga los plugins." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Comenzando a leer los compartidos de amigos" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Terminado el reescaneo de las acciones de los amigos" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Su amigo, %s, está intentando enviarle archivos" #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s no tiene permiso para enviarte archivos, pero está intentándolo de " #~ "todas formas. Advertencia enviada." #~ msgid "Client Version" #~ msgstr "Versión del cliente" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "¿Cuántos días de privilegios debe tener el usuario %s?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Los amigos tendrán mayor prioridad en la cola, al igual que los usuarios " #~ "con privilegios globales." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegiado" #~ msgid "_Privileged" #~ msgstr "_Privilegiado" #~ msgid "Comments" #~ msgstr "Comentarios" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Comentarios" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Crea subcarpetas basadas en el usuario que está descargando, y almacena " #~ "el archivo/carpeta descargado allí." #, fuzzy #~ msgid "Login Details" #~ msgstr "Datos de acceso" #, fuzzy #~ msgid "Advanced" #~ msgstr "Avanzado" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Intervalo de renovación de la asignación de puertos en horas:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Activar las acciones de los amigos" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "" #~ "Los archivos se cargarán en el orden en que se hayan puesto en cola." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Releer compartidos" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Terminado el reescaneo de las acciones públicas" #~ msgid "Scanning Buddy Shares" #~ msgstr "Comenzando a leer los compartidos de amigos" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "_Escanear las acciones públicas" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Reexaminar las acciones de B_uddy" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Reexaminar las acciones públicas" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Reexaminar las acciones de los amigos" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Activa las acciones privadas a las que sólo pueden acceder los usuarios " #~ "de tu lista de amigos. Si se desactiva, los usuarios solo podrán acceder " #~ "a tus recursos compartidos públicos." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Marcar cada carpeta compartida como de uso exclusivo de los amigos" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Anula la opción por acción, útil si necesita impedir temporalmente el " #~ "acceso público a las acciones." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Sólo los usuarios marcados como de confianza en tu lista de amigos pueden " #~ "acceder a tus acciones sólo para amigos." #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+ le permite compartir carpetas directamente desde su ordenador. " #~ "Todo el contenido de estas carpetas (a excepción de los dotfiles) puede " #~ "ser descargado por otros usuarios de la red Soulseek. Los recursos " #~ "compartidos públicos están disponibles para todos los usuarios, mientras " #~ "que los usuarios de tu lista de amigos pueden acceder a los recursos " #~ "compartidos sólo para amigos, además de los recursos compartidos públicos." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Filtrado de los resultados de búsqueda excluidos " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtrado de resultados de búsqueda inexactos o incorrectos " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "El ajuste almacenado '%(key)s' ya no está presente en el plugin '%(name)s'" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "El plugin %(module)s devuelve algo raro, '%(value)s', ignorando" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Caché inconsistente para '%(vdir)s', reconstruyendo '%(dir)s'" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Soltando la carpeta que falta %(dir)s" #, fuzzy, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Todos los tickers / mensajes de muro para %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Establecer su marcador personal" #, fuzzy #~ msgid "Show all the tickers" #~ msgstr "Mostrar todos los teletipos" #, fuzzy #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "No se han podido escanear las acciones. Si se está ejecutando Nicotine+, " #~ "cierre el programa antes de escanear." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Está seguro de que quiere salir de Nicotine+ ahora?" #, fuzzy #~ msgid "Receive a User's IP Address" #~ msgstr "Recibir la dirección IP de un usuario" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Recibir información de un usuario" #, fuzzy #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "El servidor nos prohibió hacer búsquedas en la lista de deseos." #, fuzzy, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Su base de datos de recursos compartidos está dañada. Por favor, vuelva a " #~ "escanear sus recursos compartidos e informe a los desarrolladores de " #~ "cualquier posible problema de escaneo. Error: %s" #, fuzzy #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Por favor, tenga en cuenta que algunos nombres de usuario pueden estar " #~ "tomados. Si este es el caso, se le pedirá que cambie su nombre de usuario " #~ "cuando se conecte a la red." #, fuzzy #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "" #~ "Introduzca el nombre de usuario de la persona de la que desea recibir " #~ "información" #~ msgid "Add user 'user' to your user list" #~ msgstr "Añadir usuario 'usuario' a la lista de amigos" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Eliminar al usuario 'usuario' de su lista de amigos" #~ msgid "Request user info for user 'user'" #~ msgstr "Solicitar info de usuario para 'usuario'" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Añadir un usuario a la lista de usuarios" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Eliminar un usuario de su lista de usuarios" #, fuzzy #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Responder a las solicitudes de búsqueda que contengan un número mínimo de " #~ "caracteres:" #, fuzzy #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Los usuarios en cola se cargarán un archivo a la vez de forma cíclica." #~ msgid "Find..." #~ msgstr "Buscar..." #~ msgid "Add..." #~ msgstr "Añadir..." #~ msgid "_Modes" #~ msgstr "_Modos" #~ msgid "_Chat Rooms" #~ msgstr "_Habitaciones" #~ msgid "_Private Chat" #~ msgstr "_Privados" #~ msgid "_Downloads" #~ msgstr "_Descargas" #~ msgid "_Search Files" #~ msgstr "Bú_squeda de ficheros" #~ msgid "User I_nfo" #~ msgstr "I_nfo de usuario" #~ msgid "_Interests" #~ msgstr "_Intereses" #~ msgid "Buddy _List" #~ msgstr "_Lista de amigos" #~ msgid "Enable geographical blocker" #~ msgstr "Activar bloqueo por región geográfica" #~ msgid "Enable URL catching" #~ msgstr "Activar captura de URL" #~ msgid "Geo Block" #~ msgstr "Bloqueo Geográfico" #~ msgid "URL Catching" #~ msgstr "Captura de URL" nicotine-plus-3.3.4/po/es_ES.po000066400000000000000000007133151461625273200163100ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:11+0000\n" "Last-Translator: Mat \n" "Language-Team: Spanish \n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Cliente de Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Cliente gráfico para la red P2P de Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;compartir;chat;mensajería;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Cliente gráfico para la red de Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ es un cliente gráfico para la red P2P de Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ pretende ser una alternativa ligera, agradable, libre y de código " "abierto (FOSS) al cliente oficial de Soulseek, al tiempo que ofrece un " "amplio conjunto de funciones." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Buscar archivos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Descargas" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Explorar compartidos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Chat privado" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Equipo de Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Sitio web: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "mostrar este mensaje de ayuda y salir" #: pynicotine/__init__.py:59 msgid "file" msgstr "archivo" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "usar un archivo de configuración no predeterminado" #: pynicotine/__init__.py:63 msgid "dir" msgstr "directorio" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "directorio alternativo para los datos de usuario y complementos" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "iniciar el programa sin mostrar la ventana" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "enlazar los sockets a la IP especificada (útil para las VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "puerto" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "escuchar en el puerto indicado" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "reescanear los archivos compartidos" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "lanzar el programa en modo «headless» (sin interfaz gráfica)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "mostrar la versión y salir" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Estás usando una versión no soportada de Pyhton (%(old_version)s).\n" "Deberías instalar Python %(min_version)s o superior." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Fallo al escanear los compartidos. Por favor cierra otras instancias de " "Nicotine+ e inténtalo de nuevo." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "El %(user)s está ausente" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "El %(user)s está conectado" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "El %(user)s está desconectado" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Estado de los amigos" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Has sido añadido a una sala privada: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Mensaje de chat del usuario «%(user)s» en la sala «%(room)s»: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "No se puede crear el directorio «%(path)s», error reportado: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Error en la copia de seguridad de la configuración: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configuración respaldada en: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Cargando %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Cerrando %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "cancelando" #: pynicotine/core.py:237 msgid "application closing" msgstr "cierre de aplicación" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "¡Salir de %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Es necesario especificar un nombre de usuario y una contraseña antes de " "conectarse…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Error: ¡Falló el filtro de descarga! Verifica tus filtros. Razón: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Error: ¡%(num)d filtros de descarga fallaron! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s descargado de %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Archivo descargado" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Ejecutado: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Ejecutando «%(command)s» fallido: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s descargado de %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Carpeta descargada" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Ejecutado en este directorio: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "No se pudo mover «%(tempfile)s» a «%(file)s»: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Error al descargar la carpeta" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Descarga terminada: usuario %(user)s, archivo %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Descarga interrumpida: usuario %(user)s, archivo %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Error de E/S en la descarga: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" "No se puede obtener un bloqueo exclusivo sobre el archivo - Error de E/S: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "No se puede guardar el archivo en la %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Descarga iniciada: usuario %(user)s, archivo %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "No se encuentra %s, por favor, instálalo." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "No hay entorno gráfico disponible, utilizando el modo sin interfaz gráfica " "de usuario" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Conectar" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Desconectar" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Privilegios de Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Configuración" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Salir" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Examinar las _Acciones públicas" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Examinar lo _Compartido" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Examinar _Acciones de confianza" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Reescanear compartidos" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Configurar lo _Compartido" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "Atajos de _teclado" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Asistente de configuración" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "Estadísticas de _transferencias" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Informar de un _error" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Mejorar t_raducciones" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Acerca de Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Archivo" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Compartidos" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Ayuda" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Buscar acciones" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "No ha sido posible mostrar la notificación: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Sigues subiendo los archivos. ¿Realmente quieres salir?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Espera a que finalice la carga" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "¿De verdad quieres salir?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_No" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "Ejecutar en segundo _plano" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Salir de Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Compartidos no disponibles" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Verifique que los discos externos estén montados y que los permisos de las " "carpetas sean correctos." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Cancelar" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Reintentar" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Forzar reescaneo" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Contraseña no válida" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "El usuario %s ya existe y la contraseña que has introducido no es válida. " "Por favor, elige otro nombre de usuario si es la primera vez que te conectas." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Cambiar _los detalles del inicio de sesión" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Enviar un mensaje a los usuarios que están descargando" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Enviar un mensaje privado a todos los usuarios que están descargando de ti:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Enviar un mensaje" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Enviar mensaje a amigos" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Enviar mensaje privado a todos los amigos que estén conectados:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Seleccione una lista de archivos compartidos guardada" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Error crítico" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ ha encontrado un error crítico y necesita salir. Por favor, copie " "el siguiente mensaje e inclúyalo en un informe de error:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Salir de Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copiar y reportar error" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Estado" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "País" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Usuario" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Velocidad" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Archivos" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "De confianza" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notificar" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Con prioridad" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Visto por última vez" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Nota" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Añadir _nota de usuario…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Eliminar" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nunca visto" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Añadir nota de usuario" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Añadir una nota acerca del usuario %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Añadir" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "¿Crear nueva sala?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "¿De verdad quieres crear la nueva sala «%s»?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Hacer la sala privada" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "_Buscar archivos del usuario" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Buscar…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copiar" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copiar todo" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Limpiar la vista de actividad" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Salir de la sala" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copiar enlace" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Ver registro de la sala" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Borrar registro de la sala…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Limpiar vista de mensajes" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s se unió a la sala" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "El usuario %(user)s te mencionó en la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mencionado por %(user)s en la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Mensaje de %(user)s en la sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s abandonó la sala" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s está ausente" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s ha vuelto" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "¿Borrar mensajes registrados?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "¿De verdad quieres borrar permanentemente todos los mensajes registrados en " "esta sala?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Acerca de" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Sitio web" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Error al comprobar la última versión: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Nueva versión disponible: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Actualizado" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Comprobando la última versión…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "_Asistente de configuración" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Carpeta virtual" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Carpeta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Terminar" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Siguiente" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Añadir una carpeta compartida" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Modificar carpeta compartida" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Introduzca el nuevo nombre virtual de «%(dir)s»:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Editar" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Propiedades del archivo" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" "Propiedades del archivo (%(num)i de %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Propiedades del archivo (%(num)i de %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Aplicar" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Añadir…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Editar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "Configuración de %s" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Añadir un elemento" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Editar un elemento" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Desconocido" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Comprobar el estado del puerto" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, puerto %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Cambio de contraseña rechazado" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Introduce una nueva contraseña para tu cuenta de Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "En este momento no estás conectado a la red de Soulseek. Si deseas cambiar " "la contraseña de una cuenta existente de Soulseek, debes estar conectado a " "la cuenta en cuestión." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Introduzca la contraseña que utilizará para iniciar sesión:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Cambiar la contraseña" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Cambiar" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Nadie" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Todos" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amigos" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Compañeros de confianza" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nada" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Abrir un archivo" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Mostrar en el gestor de archivos" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Buscar" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausar" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Reanudar" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Explorar carpeta" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxis: Insensible a mayúsculas y minúsculas. Si está activada, se " "pueden utilizar expresiones regulares de Python; de lo contrario, sólo se " "admiten * coincidencias con comodines." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtro" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex (Expresión regular)" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Añadir filtro de descarga" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Introducir un nuevo filtro de descarga:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Habilitar las expresiones regulares" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Editar filtro de descarga" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modifique el siguiente filtro de descarga:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "¡%(num)d ha fallado! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtros con Éxito" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Público" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Accesible para" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Interrumpir" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Reintentar" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Por turnos" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Por orden de llegada" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Nombre de usuario" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Dirección IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorar usuario" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Introduce el nombre del usuario que deseas ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorar dirección IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Introduce la dirección IP que deseas ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* es un comodín" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Vetar usuario" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Introduce el nombre del usuario que deseas vetar:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Vetar dirección IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Introduzca la dirección IP que deseas bloquear:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Códigos del formato" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Patrón" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Recambio" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Patrón de censura" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Introduce el patrón que deseas censurar. Añade espacios alrededor del patrón " "si no deseas que coincida con cadenas que estén dentro de palabras (puede " "fallar al principio y al final de las líneas)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Modificar el patrón censurado" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Añadir sustitución" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Introduce un patrón de texto y su reemplazo:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Modificar reemplazo" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Predeterminado del sistema" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Mostrar diálogo de confirmación" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Ejecutar en segundo plano" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "en negrita" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "en cursiva" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "subrayado" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Pestaña de amigos separada" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Barra lateral en la pestaña Salas del chat" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Barra lateral siempre visible" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Arriba" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Abajo" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Izquierda" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Derecha" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "En línea" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Ausente" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Fuera de línea" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Pestaña cambiada" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Resaltar pestaña" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Ventana" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Conectado (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Ausente (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Fuera de línea (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Mensaje (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocolo" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Añadir un manejador de URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Introduce el protocolo y el comando para el manejador de URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Modificar comando" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Introduce un nuevo comando para el protocolo %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nombre de usuario;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Reproductor de música (p. ej., Amarok, Audacious, Exaile); dejar vacío para " "autodetectar:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Nombre de usuario: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Comando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Título" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Reproduciendo ahora (típicamente «%(artist)s - %(title)s»)" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Duración" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Comentario" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Álbum" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Número de pista" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Año" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nombre del archivo (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Habilitado" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Complemento" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "No se ha seleccionado ningún complemento" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Red" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interfaz de usuario" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Compartidos" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Subidas" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Búsquedas" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Perfil del usuario" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Chats" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Reproduciendo ahora" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Registros" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Usuarios vetados" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Usuarios ignorados" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Complementos" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Manejadores de URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferencias" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "" "Elija un nombre de archivo para la copia de seguridad de la configuración" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Estadísticas de transferencia" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Total desde %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "¿Reiniciar las estadísticas de transferencia?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "¿De verdad quieres reiniciar las estadísticas de transferencia?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Lista de deseos" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Deseo" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Buscar elemento" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Editar deseo" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Introduzca un nuevo valor para el deseo «%s»:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "¿Limpiar la lista de deseos?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "¿De verdad quieres limpiar tu lista de deseos?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Ruta" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Reanudar" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "_Pausar" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Terminadas/filtradas" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Terminada" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "En pausa" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrada" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Eliminada" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "En cola…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Todo…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Limpiar descargas en cola" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "¿De verdad quieres limpiar todas las descargas en cola?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Limpiar todas las descargas" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "¿De verdad quieres limpiar todas las descargas?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "¿Descargar %(num)i archivos?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "¿De verdad quieres descargar %(num)i archivos de la carpeta %(folder)s de " "%(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Descargar carpeta" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Le gusta" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Aversiones" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Valoración" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Elemento" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Recomendaciones para el Ítem" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Me _gusta esto" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "_No me gusta esto" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Recomendaciones" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Usuarios similares" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Recomendaciones (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Usuarios similares (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Mensaje privado de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Encontrados resultados de la lista de deseos" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Perfiles de los usuarios" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Salas de chat" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Intereses" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Conexiones" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Mensajes" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Transferencias" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Varios" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Buscar…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Copiar" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copiar _Todo" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Ver los _Registros de depuración" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Ver los _Registros de transferencia" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "Categorías de _Registro" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Limpiar la vista de registro" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Descargas: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Subidas: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Preparación de las acciones" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Escaneando compartidos" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Saliendo..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Último mensaje" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Sala" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Usuarios" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Unirse a la sala" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Dejar la sala" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Hacer pública la sala privada" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Cancelar adhesión a la sala" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Cerrar todas las pestañas…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Cerrar pestaña" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Ver registro de charla" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Borrar registro de charla…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Acciones del usuario" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "¿De verdad quieres eliminar permanentemente todos los mensajes registrados " "de este usuario?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Mensajes enviados mientras estabas desconectado" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amigos" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Salas" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Usuario" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "En espera" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Tipo de archivo" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nombre de archivo" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Tamaño" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Calidad" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copiar ruta del _archivo" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copiar _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copiar U_RL de la carpeta" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Descargar archivo(s)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Descargar archivo(s) _a…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Descargar _carpeta(s)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Descargar c_arpeta(s) a…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Ver perfil del _usuario" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Explorar la carpeta" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Propiedades del a_rchivo" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copiar término de búsqueda" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Limpiar todos los resultados" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Limpiar los filtros" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Restaurar los filtros" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVADO] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "Filtros de _resultados [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "Filtros de _resultados" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d filtro(s) activo(s)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Añadir de_seo" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Eliminar de_seo" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Seleccionar resultados del usuario" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Total: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Resultados" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Seleccione la carpeta de destino para el(los) archivo(s)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Seleccionar la carpeta de destino" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "A la cola" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "En cola (con prioridad)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "En cola (con privilegio)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Obteniendo estado" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transfiriendo" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Conexión cerrada" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Conexión fuera de tiempo" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Usuario desconectado" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Cancelada" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Error en la carpeta de descarga" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Error de archivo local" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Vetado" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Archivo no compartido" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Apagado en curso" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Error de lectura del archivo" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Posición en la cola" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Porcentaje" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Tiempo transcurrido" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Tiempo restante" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Abrir un archivo" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Mostrar en el _gestor de archivos" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Buscar" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Borrar todo" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Seleccionar las transferencias del usuario" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Interrumpir" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Terminadas / interrumpidas / fallidas" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Terminadas / interrumpidas" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Fallida" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Usuario desconectado" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Limpiar subidas en cola" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "¿De verdad quieres limpiar todas las subidas en cola?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Limpiar todas las subidas" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "¿De verdad quieres limpiar todas las subidas?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Guardar la lista de compartidos en el disco" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Subir carpeta y subcarpeta(s)…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copiar _ruta de la carpeta" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Descargar carpeta y subcarpeta(s)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Descargar carpeta y subcarpeta(s) en…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Nombre del archivo" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Enviar archivo(s)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Subir carpeta…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Descargar carpeta _en…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "La lista de archivos compartidos del usuario está vacía. Bien porque el " "usuario no está compartiendo nada, o bien porque está compartiendo archivos " "de forma privada." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "No ha sido posible solicitar los archivos compartidos al usuario. Bien " "porque el usuario está desconectado, bien porque ambos tenéis el puerto de " "escucha cerrado, o bien porque hay un problema temporal de conectividad." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Seleccione el destino para descargar múltiples carpetas" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Subir carpeta (con subcarpetas) al usuario" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Subir carpeta al usuario" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Introduce el nombre del usuario al que deseas subir archivos:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Subir" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Seleccione carpeta de destino para el/los archivo(s)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Subir archivo(s) al usuario" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Copiar la imagen" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Guardar imagen" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "No se ha podido cargar la imagen del usuario %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "No ha sido posible solicitar la información del usuario. Bien porque ambos " "tenéis el puerto de escucha cerrado, bien porque el usuario está " "desconectado, o bien porque hay un problema temporal de conectividad." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Eliminar _amigo" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Añadir _amigo" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Retirar veto al usuario" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Dejar de ignorar al usuario" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Sí" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "No" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Por favor ingrese el número de días." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Regalar días de tus privilegios de Soulseek al usuario %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s días restantes" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Regalar privilegios" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Otorgar privilegios" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Cerrar" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Sí" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_Aceptar" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Seleccionar un archivo" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Seleccionar una carpeta" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Seleccionar" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Seleccionar una imagen" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Todas las imágenes" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Guardar como…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Ninguno)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Cerrar pestaña" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "¿Cerrar todas las pestañas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "¿De verdad quieres cerrar todas las pestañas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Pestaña(s) no leída(s)" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Todas las pestañas" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Re_abrir la pestaña cerrada" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Archivo(s) seleccionado(s)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Explorar archivos" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Añadir amigo" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Ver _dirección IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Salas privadas" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Eliminar de la sala privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Añadir a la sala privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Eliminar como operador de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Añadir como operador de %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- mensajes antiguos arriba ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Ejecutable" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Imagen" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archivo" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Varios" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Documento" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Texto" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Error al cargar el icono personalizado %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Ocultar Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Mostrar Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Columna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Desagrupado" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Agrupar por carpeta" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Agrupar por usuario" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "¿Realmente quieres salir? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "El usuario %s ya existe y la contraseña introducida no es válida." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" "Escriba %s para iniciar sesión con otro nombre de usuario o contraseña." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Contraseña: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Para crear una nueva cuenta de Soulseek, introduce el nombre de usuario y la " "contraseña que desees. Si ya tienes una cuenta, introduce tus datos de " "acceso." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Las siguientes acciones no están disponibles:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "¿Volver a escanear? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" "No se pudo escribir en el archivo de registro «%(filename)s»: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "No se ha podido acceder al archivo de registro %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Emiratos Árabes Unidos" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistán" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua y Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguila" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antártida" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Americana" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Aland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaiyán" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnia y Herzegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladés" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Bélgica" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Baréin" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benín" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "San Bartolomé" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudas" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunéi" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Caribe Neerlandés" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bután" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Isla Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botsuana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Bielorrusia" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belice" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canadá" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Islas Cocos" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "República Democrática del Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "República Centroafricana" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Suiza" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Costa de Marfil" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Islas Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Camerún" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curazao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Isla de Navidad" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Chipre" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "República Checa" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Alemania" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Yibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dinamarca" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "República Dominicana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Argelia" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egipto" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Sahara Occidental" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "España" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiopía" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlandia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiyi" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Islas Malvinas" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Micronesia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Islas Feroe" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Francia" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabón" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Gran Bretaña" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Granada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guayana Francesa" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groenlandia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadalupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guinea Ecuatorial" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grecia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Islas Georgias del Sur y Sandwich del Sur" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinea-Bisáu" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Islas Heard y McDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croacia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haití" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hungría" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonesia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Isla de Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Territorio Británico del Océano Índico" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Irán" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islandia" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordania" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japón" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirguistán" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Camboya" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comoras" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "San Cristóbal y Nieves" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Corea del Norte" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Corea del Sur" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Islas Caimán" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazajistán" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Líbano" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Santa Lucía" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituania" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburgo" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letonia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marruecos" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Mónaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldavia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "San Martín" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Islas Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedonia del Norte" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Birmania" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Islas Marianas del Norte" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauricio" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldivas" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malaui" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "México" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malasia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambique" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nueva Caledonia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Níger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Isla Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Países Bajos" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Noruega" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nueva Zelanda" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omán" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panamá" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Perú" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinesia Francesa" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papúa Nueva Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipinas" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistán" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polonia" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "San Pedro y Miquelón" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Islas Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palaos" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Catar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Reunión" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumanía" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rusia" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arabia Saudí" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Islas Salomón" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudán" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suecia" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Santa Elena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Eslovenia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard y Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Eslovaquia" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leona" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudán del Sur" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Santo Tomé y Príncipe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "San Martín" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Siria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Suazilandia" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Islas Turcas y Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Chad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Tierras Australes y Antárticas Francesas" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailandia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tayikistán" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor Oriental" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistán" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Túnez" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turquía" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad y Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwán" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ucrania" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Islas Ultramarinas Menores de los Estados Unidos" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Estados Unidos" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbekistán" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Ciudad del Vaticano" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "San Vicente y las Granadinas" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Islas Vírgenes Británicas" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Islas Vírgenes de los Estados Unidos" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis y Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Sudáfrica" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabue" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "La síntesis de voz para el mensaje ha fallado: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Por favor, proporciona tu nombre de usuario de Last.fm y tu clave " "API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Error de «Reproduciendo ahora»" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: No se pudo conectar con Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: No se pudo obtener la pista reciente de Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: No se ha podido encontrar un reproductor MPRIS adecuado" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Encontrados múltiples reproductores MPRIS: %(players)s. Usando: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Reproductor MPRIS autodetectado: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Algo ha ido mal al consultar %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "" "ListenBrainz: Por favor, proporciona tu nombre de usuario de ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: No se pudo conectar con ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Parece que no estás escuchando nada en este momento" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: No se pudo obtener la pista actual de ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Filtros de la red" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Lista de comandos disponibles" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Conectarse al servidor" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Desconectarse del servidor" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Alternar el estado" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Administrar complementos" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Limpiar la ventana del chat" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Decir algo en tercera persona" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Informa la canción que se está reproduciendo actualmente" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Únete a la sala del chat" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Abandonar la sala del chat" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Decir un mensaje a la sala de chat especificada" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Abrir un chat privado" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Cerrar el chat privado" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Solicitar información del usuario" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Enviar un mensaje privado al usuario" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Añadir al usuario a tu lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Eliminar al usuario de tu lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Explorar los archivos del usuario" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Mostrar la información del perfil del usuario" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Mostrar la dirección IP o el nombre del usuario" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Bloquear las conexiones del usuario o la dirección IP" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Eliminar al usuario o la dirección IP de las listas de baneados" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Silenciar los mensajes del usuario o la dirección IP" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Eliminar al usuario o la dirección IP de las listas de ignorados" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Añadir una acción" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Eliminar una acción" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Lista de compartidos" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Volver a escanear los compartidos" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Iniciar la búsqueda global de archivos" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Buscar los archivos en salas conectadas" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Buscar los archivos de todos los amigos" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Buscar los archivos compartidos de un usuario" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Listado de %(num)i comandos disponibles:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Listado de %(num)i comandos disponibles que coinciden con \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Escribe %(command)s para enumerar los comandos similares" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Escribe los %(command)s para listar los comandos disponibles" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "No esta conectado a la sala %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "No enviar ningún mensajes al usuario %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Cerrado el chat privado con el usuario %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Baneado %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Desbaneado %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Ignorado %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Dejar de ignorar %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s acciones mostradas y (%(num_total)s configuradas)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "No se puede acceder a la carpeta \"%s\" y no se puede compartir" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Añadido %(group_name)s y compartir \"%(virtual_name)s\" (es necesario volver " "a escanear)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "No hay ninguna acción con el nombre \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" "Se ha eliminado el recurso compartido \"%s\" (es necesario volver a " "escanearlo)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Cargando sistema de complementos" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "No ha sido posible cargar el complemento %(name)s. El nombre de la carpeta " "del complemento contiene caracteres inválidos: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Comando %(interface)s conflictivo en el plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Complemento «%s» habilitado" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "No ha sido posible cargar el complemento %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Complemento «%s» deshabilitado" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "No ha sido posible descargar el complemento %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "El complemento «%(module)s» falló con el error %(errortype)s: %(error)s.\n" "Traza: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Sin descripción" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Falta el argumento %s" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Argumento no válido, opciones posibles: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Uso: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comando desconocido: %(command)s. Escribe %(help_command)s para ver los " "comandos disponibles." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "No se han encontrado dispositivos UPnP" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Error al reenviar el puerto externo %(external_port)s : " "%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Puerto externo %(external_port)s reenviado con éxito a la " "dirección IP local %(ip_address)s puerto %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Mensaje privado del usuario «%(user)s»: %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Buscando el elemento de la lista de deseos \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "" "El período de espera de la lista de deseos se ha establecido en %s segundos" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "El usuario %(user)s está buscando «%(query)s», se han encontrado %(num)i " "resultados" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Escaneando compartidos nuevamente…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Reescaneando compartidos…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Reescaneo completo: %(num)s carpetas encontradas" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Se ha producido un error grave al volver a analizar los recursos " "compartidos. Si el problema persiste, borre %(dir)s/*.dbn e inténtelo de " "nuevo. Si eso no ayuda, por favor, envíe un informe de error con este stack " "trace incluido: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Error al escanear el archivo %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Error al escanear la carpeta %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Error al escanear los metadatos del archivo %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Reescaneo abortado debido a las acciones no disponibles: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "El usuario %(user)s está explorando tu lista de archivos compartidos" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Fallo en la obtención de la carpeta compartida %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "No ha sido posible leer la base de datos de compartidos. Por favor, " "reescanea tus compartidos. Error: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "La interfaz de red especificada '%s' no está disponible" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "No se puede escuchar en el puerto %(port)s. Asegúrate de que ningún otro " "programa esté utilizando ese puerto o elige un puerto diferente. Error: " "%(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Escuchando en el puerto %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "No se puede conectar al servidor %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Reconexión al servidor en %i segundo(s)" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Conectando a %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Conectado al servidor %(host)s:%(port)s, iniciando sesión…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Desconectado del servidor %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Alguien ha iniciado sesión con tu cuenta de Soulseek en otro lugar" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Subida terminada: usuario %(user)s, dirección IP %(ip)s, archivo %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Subida interrumpida: usuario %(user)s, archivo %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Error de E/S en la subida: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Subida iniciada: usuario %(user)s, dirección IP %(ip)s, archivo %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "No se puede crear el directorio «%(folder)s», error: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "La carga de compartidos desde el disco ha fallado: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Lista de archivos compartidos del usuario «%(user)s» guardada en %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "No se puede guardar los compartidos. Error de «%(user)s» reportado: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Imagen guardada en %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "No se ha podido guardar la imagen en %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Usuario %(user)s está viendo tu perfil" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "No ha sido posible conectar al servidor. Razón: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "No se puede conectar" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "No se puede obtener la IP del usuario %s, ya que el usuario está desconectado" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "La dirección IP del usuario %(user)s: %(ip)s, puerto %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Anuncio de Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i usuarios con privilegios" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "No tienes privilegios en Soulseek. Mientras los privilegios estén activos, " "tus descargas se pondrán en cola antes que las de los usuarios sin " "privilegios." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Quedan %(days)i días, %(hours)i horas, %(minutes)i minutos y %(seconds)i " "segundos de privilegios de Soulseek" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Tu contraseña ha sido modificada" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Contraseña modificada" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "No se ha podido abrir la ruta del archivo %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "No se ha podido abrir la URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Algo salió mal al leer el archivo %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Intentando cargar la copia de seguridad del archivo %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "" "No ha sido posible hacer una copia de seguridad del archivo %(path)s: " "%(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "No ha sido posible guardar el archivo %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "No ha sido posible restaurar el archivo anterior %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Añadir amigo…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Buscar el registro de la actividad…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Buscar en el registro del chat…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Enviar mensaje…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Activar/desactivar la conversión de texto a voz" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Ayuda con los comandos de la sala del chat" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Registro" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Pared de la habitación" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Mur_o de la sala" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Creado por" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Traducido por" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licencia" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Anterior" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Bienvenido a Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Configurar…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Si el nombre de usuario que elijas ya está ocupado, se te pedirá que lo " "cambies." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Para conectarte con otros usuarios de Soulseek, debes redirigir un puerto de " "escucha de tu router a tu ordenador." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Si tu puerto de escucha está cerrado solo podrás conectarte a los usuarios " "cuyos puertos de escucha estén abiertos." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Si es necesario, elige otro puerto de escucha a continuación o hazlo más " "tarde en las preferencias." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Descargar archivos a esta carpeta" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Compartir carpetas" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Los usuarios de Soulseek podrán descargar tus archivos compartidos. " "Contribuya a la red Soulseek compartiendo sus propios archivos y volviendo a " "compartir lo que haya descargado de otros usuarios." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "¡Estás listo para usar Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek es un protocolo no cifrado que no está pensado para la comunicación " "segura." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donar a Soulseek te otorga privilegios durante un determinado periodo de " "tiempo. Si tienes privilegios tus descargas se pondrán en cola antes que las " "de los usuarios sin privilegios." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Archivo anterior" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Archivo siguiente" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nombre" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Última velocidad" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exportar…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "General" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Conectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Desconectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Volver a escanear los compartidos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Mostrar panel del registro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Confirma que quieres salir" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Salir" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menús" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Abrir menú principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Abrir menú contextual" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Pestañas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Cambiar pestaña principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Ir a pestaña secundaria anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Ir a la pestaña secundaria siguiente" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Reabrir una pestaña secundaria cerrada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Cerrar pestaña secundaria" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copiar celda seleccionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Eliminar fila seleccionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Edición" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Cortar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Pegar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Insertar emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Seleccionar todo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Encontrar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Buscar siguiente coincidencia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Buscar coincidencia anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transferencias de archivos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Reanudar/reintentar transferencia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pausar/interrumpir transferencia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Descargar/Subir a" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Guardar lista en disco" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Actualizar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Expandir/Contraer todo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Regresar a la carpeta superior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Búsqueda de archivos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtros de resultados" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Sesión actual" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Descargas completadas" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Datos descargados" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Subidas completadas" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Datos subidos" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Reiniciar…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Los elementos de la lista de deseos se buscan automáticamente a intervalos " "regulares para descubrir archivos poco comunes." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Añadir deseo…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Limpiar todo…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Borrar todas las descargas finalizadas/filtradas" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Limpiar terminadas" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Borrar las descargas específicadas" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "_Limpiar todo…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Intereses personales" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Añade algo que te guste…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Aversiones personales" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Añade algo que no te guste…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Actualizar las recomendaciones" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menú principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Nombre de usuario…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Término de búsqueda…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Patrones de búsqueda: con una palabra = término, sin palabra = -término, " "palabra parcial = *érmino" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Rango de la búsqueda" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "Lista de _deseos" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Configurar las búsquedas" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Introduzca un término de búsqueda para buscar archivos compartidos por otros " "usuarios en la red Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Modo de agrupación de los archivos" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Configurar las descargas" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Los archivos que descargues de otros usuarios se ponen en cola aquí, y se " "pueden pausar y reanudar cuando se desee" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Configurar las subidas" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Los intentos de otros usuarios de descargar tus archivos compartidos se " "ponen en cola y se gestionan aquí" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Abrir lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Abre una lista local de archivos compartidos que se ha guardado previamente " "en el disco" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Configurar recursos compartidos" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Introduce el nombre del usuario cuya lista de archivos compartidos desees " "explorar. También puedes guardar la lista en el disco e inspeccionarla " "posteriormente." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Perfil personal" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Configurar la cuenta" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Introduzca el nombre de un usuario para ver su descripción, información y " "foto personal" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Historial de chat" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Configurar los chats" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Introduzca el nombre de un usuario para iniciar una conversación de texto " "con él en privado" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Todos los mensajes" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Configurar los usuarios ignorados" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Añade usuarios a tu lista de amigos para compartir con ellos carpetas " "específicas y recibir notificaciones cuando estén conectados" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Únete o crea una sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Únete a una sala de chat existente, o crea una nueva sala para chatear con " "otros usuarios de la red Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Configurar el perfil de usuario" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Registro de la búsqueda…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Conexiones" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Descarga (Velocidad / Usuarios activos)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Subiendo (Velocidad / Usuarios activos)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Buscar en el historial del chat…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Límites de velocidad de descarga" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Velocidad de descarga ilimitada" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Utilice el límite de velocidad de descarga (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Utiliza un límite de velocidad de descarga alternativo (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Buscar las salas…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Actualizar las salas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Mostrar el flujo de mensajes de las salas de chat públicas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Aceptar invitaciones a salas privadas" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Escribe un único mensaje que otros usuarios de la sala podrán leer más " "tarde. Los mensajes recientes se muestran en la parte superior." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Establecer mensaje en el muro…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtros de resultados de búsqueda" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Los filtros de resultados de búsqueda se utilizan para refinar los " "resultados de búsqueda mostrados." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Cada lista de resultados de búsqueda tiene su propio filtro, que puede " "mostrarse pulsando el botón Filtros de resultados. Un filtro se compone de " "múltiples campos, los cuales se aplican al pulsar «Intro» en cualquiera de " "sus campos. El filtrado se aplica inmediatamente a los resultados ya " "recibidos, y también a los que estén por llegar." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Como su propio nombre indica, un filtro de resultados de búsqueda no puede " "expandir tu búsqueda original, solo puede reducirla. Para ampliar o cambiar " "tus términos de búsqueda, haz una nueva búsqueda." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Utilización de los filtros de resultados" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Incluir texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Se mostrarán los archivos, carpetas y nombres de usuario que contienen este " "texto." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Las mayúsculas o minúsculas son indiferentes, pero el orden de las palabras " "es importante: 'Instrumental Remix' no mostrará ningún 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Utiliza | (o tubos) para separar varias frases exactas. Ejemplo:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Excluir texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Como arriba, pero los archivos, carpetas y nombres de usuario se filtran si " "el texto coincide." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtra los archivos en función de su extensión." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Se pueden especificar varias extensiones de archivo, lo que a su vez " "revelará más de la lista de resultados. Ejemplo:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "También es posible invertir el filtro, especificando con un signo de " "exclamación las extensiones de archivo que no desea que aparezcan en los " "resultados. Por ejemplo\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Tamaño del archivo" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtra los archivos en función de su tamaño." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Por defecto, la unidad utilizada es bytes (B) y los archivos mayores o " "iguales a (>=) el valor serán coincidentes." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Añada b, k, m, g (o bien kib, mib, gib) para especificar unidades en bytes, " "kibibytes, mebibytes o gibibytes:\n" " 20m para mostrar archivos mayores que 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Antepon = a un valor para especificar una coincidencia exacta:\n" " =1024 coincide con archivos que tengan exactamente 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Anteponga ! a un valor para excluir archivos de un tamaño específico:\n" " !30.5m para ocultar archivos cuyo tamaño es 30,5 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Antepon < o > para buscar los archivos menores/mayores que el valor dado. " "Utiliza un espacio entre cada condición para incluir un rango:\n" " >10.5m <1g para mostrar archivos mayores de 10.5 MiB, pero menores de 1 " "GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Las variantes kb, mb y gb, más conocidas, también pueden utilizarse en lugar " "de las unidades de kilobyte, megabyte y gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtra los archivos en función de su tasa de bits." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Los valores deben introducirse solo como dígitos numéricos. La unidad es " "siempre Kb/s (Kilobits por segundo)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Al igual que en el Tamaño del archivo (arriba), se pueden utilizar los " "operadores =, !, <, >, <= o >=, y se pueden especificar múltiples " "condiciones, por ejemplo para mostrar archivos con una tasa de bits de al " "menos 256 Kb/s con una tasa de bits máxima de 1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtra archivos en función de su duración." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Por defecto, se buscarán los archivos cuya duración sea mayor o igual (>=) a " "la introducida, a menos que se utilice un operador (=, !, <=, < o >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Introduzca un valor bruto en segundos o utilice los formatos de tiempo MM:SS " "y HH:MM:SS:\n" " =53 muestra archivos de unos 53 segundos de duración.\n" " >5:30 muestra archivos de más de 5 minutos y medio de duración.\n" " <5:30:00 muestra archivos de menos de 5 horas y media de duración." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Se pueden especificar varias condiciones:\n" " >6:00 <12:00 para mostrar ficheros de entre 6 y 12 minutos de duración.\n" " !9:54 !8:43 !7:32 para ocultar algunos archivos específicos de los " "resultados.\n" " =5:34 =4:23 =3:05 para incluir archivos con duraciones específicas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtra los archivos en función de la localización geográfica de los usuarios " "según los códigos del país definidos por la norma ISO 3166-2:\n" " US sólo mostrará resultados de usuarios con direcciones IP en Estados " "Unidos.\n" " GB ocultará los resultados procedentes de usuarios de Gran Bretaña." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Se pueden especificar varios países con comas o espacios." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Puesto disponible" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Mostrar sólo los resultados de los usuarios que tienen al menos una ranura " "de carga libre, es decir, los archivos que están disponibles inmediatamente." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Límites de velocidad de subida" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Velocidad de carga ilimitada" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Utiliza el límite de velocidad de subida (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Usar el límite de velocidad de subida alternativo (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Ayuda de las órdenes del chat privado" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Incluir texto…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtra los resultados cuyas rutas de archivo contienen el texto " "especificado. Se pueden especificar múltiples frases y palabras, por " "ejemplo, frase exacta|música|término|frase exacta dos" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Excluir texto…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Excluye los resultados cuyas rutas de archivo contienen el texto " "especificado. Se pueden especificar múltiples frases y palabras, por " "ejemplo, frase exacta|música|término|frase exacta dos" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Tipo de archivo…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tipo de archivo, por ejemplo, flac|wav|ape o !mp3|!m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Tamaño del archivo…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Tamaño del archivo, por ejemplo >10,5 m <1 g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Tasa de bits…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Tasa de bits, por ejemplo 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Duración…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Duración, por ejemplo >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Código de país…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Código de país, por ejemplo US ES o !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Prohibir a los usuarios el acceso a los archivos que compartas, basándose en " "el nombre de usuario, la dirección IP o el país." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Códigos de países a bloquear (separados por comas):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Los códigos deben estar en formato ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Utilizar un mensaje de bloqueo geográfico personalizado:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Utilizar un mensaje personalizado para los vetos:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Direcciones IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Activar el corrector ortográfico" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Restaurar al arranque los chats privados abiertos previamente" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Habilitar respuestas de mensajes privados tipo CTCP (versión cliente)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Número de mensajes privados de chat recientes a mostrar:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Número de mensajes recientes de las salas de chat a mostrar:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Autocompletar el chat" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Habilitar la tecla de tabulación para el autocompletado" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Activar la lista desplegable de autocompletar" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Caracteres mínimos requeridos para mostrar el desplegable:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Autocompletados permitidos:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Nombres de amigos" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nombres de usuario de las salas de chat" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nombres de las salas" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Comandos" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Marcas temporales" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Formato de chat privado:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Por defecto" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Formato de sala de chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Texto a voz" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Activar la conversión de texto a voz" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Comando de texto a voz:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Mensaje de chat privado:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Mensaje de la sala de chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censurar" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Habilitar la censura de patrones de texto" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Sustitución automática" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Activar la sustitución automática de palabras" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Limpiar automáticamente las descargas terminadas/filtradas de la lista de " "transferencias" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" "Almacenar las descargas completadas en subcarpetas con los nombres de usuario" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Acción de doble clic para las descargas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Permite que los usuarios te envíen cualquier archivo:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Carpetas" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Descargas finalizadas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Descargas incompletas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Archivos recibidos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Eventos" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Ejecutear el comando después de que termine la descarga del archivo ($ para " "la ruta del archivo):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Ejecutar el comando después de que la descarga de la carpeta termine ($ para " "la ruta de la carpeta):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtros de descarga" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Activar los filtros de descarga" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Añadir" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Cargar valores por defecto" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Verificar filtros" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "No verificado" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorar los mensajes de chat y los resultados de búsqueda de los usuarios " "basándose en el nombre de usuario o en la dirección IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Guardar registro de las salas de chat por defecto" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Registrar chats privados por defecto" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Registrar las transferencias en un archivo" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Registrar los mensajes de depuración en un archivo" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Formato de la marca temporal del archivo de registro:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Ubicaciones de las carpetas" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Carpeta de registros de las salas de chat:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Carpeta de registros de los chats privados:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Carpeta del registro de las transferencias:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Carpeta de registros de depuración:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Inicia sesión en una cuenta existente de Soulseek o crea una nueva. Los " "nombres de usuario distinguen entre mayúsculas y minúsculas y son únicos." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Dirección IP pública:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Puerto de escucha (requiere un reinicio):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Estado de ausencia" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutos de inactividad antes de ausentarse (0 para deshabilitar):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Mensaje de respuesta automática en caso de ausencia:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Reenviar automáticamente el puerto de la escucha (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Conexión automática al servidor al arranque" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Servidor de Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Vincula las conexiones a una interfaz de red específica, útil para, por " "ejemplo, garantizar que se utilice una VPN en todo momento. Déjalo vacío " "para utilizar cualquier interfaz disponible. Cambia este valor solo si sabes " "lo que estás haciendo." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Interfaz de la red (requiere un reinicio):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "«Reproduciendo ahora» te permite mostrar lo que tu reproductor multimedia " "está reproduciendo utilizando el comando /now en el chat." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Otro" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Formato de «Reproduciendo ahora»" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Formato del mensaje de «Reproduciendo ahora»:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Probar la configuración" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Habilitar los complementos" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Añadir complementos" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Añadir complementos" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Configuración" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Configuración" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versión:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Creado por:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Activar el historial de búsqueda" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Los archivos compartidos en privado que se hayan hecho visibles para todo el " "mundo llevarán el prefijo '[PRIVATE]', y no podrán descargarse hasta que " "quien los haya subido dé su permiso explícito. Pídeselo amablemente." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" "Mostrar los archivos compartidos de forma privada en los resultados de la " "búsqueda" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limitar el número de resultados por búsqueda:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Activar los filtros de resultados de búsqueda por defecto" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Incluir:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Excluir:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Tipo de archivo:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Tamaño:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Tasa de bits:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Duración:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Código de país:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Mostrar solo resultados de usuarios con algún puesto de subida disponible." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Ayuda del filtro de resultados" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Búsquedas en la red" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Responder a las solicitudes de búsqueda de otros usuarios" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Las búsquedas más cortas que este número de caracteres serán ignoradas:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Número máximo de resultados de búsqueda a enviar por solicitud de búsqueda:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Limpiar el historial de búsqueda" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Limpiar el historial de filtros" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Reescanea automáticamente el contenido de tus carpetas compartidas al " "arranque. Si se desactiva, tus carpetas compartidas solo se actualizarán " "cuando inicies manualmente un reescaneo." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Reescanear compartidos al arranque" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Visible para todos:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Compartidos con los amigos" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Acciones de confianza" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Limpiar automáticamente las subidas terminadas/canceladas de la lista de " "transferencias" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Acción de doble clic para las subidas:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limitar velocidad de subida:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Por transferencia" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Total de transferencias" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Puestos de subida" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Por turnos: Los archivos se subirán de forma cíclica a los usuarios que " "están esperando en la cola.\n" "Por orden de llegada: Los archivos se subirán en el orden en que estaban en " "la cola." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Tipo de cola de subida:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Asigna las ranuras de subida hasta que la velocidad total alcance (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Número fijo de las ranuras de la carga:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Dar prioridad a todos los amigos" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Límites de cola" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Número máximo de archivos en la cola por usuario:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Tamaño máximo total de los archivos en la cola por usuario (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Los límites no se aplican a los amigos" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Las apariciones de $ son sustituidas por la URL. Se utilizan las " "aplicaciones por defecto del sistema en los casos en que no se haya " "configurado un protocolo." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Comando del gestor de archivos:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Reiniciar imagen" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Presentación" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Añade las cosas que quieras que todo el mundo vea, como una breve " "descripción, consejos útiles o directrices para descargar tus " "participaciones." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Imagen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Limpiar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Modo oscuro" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Utilizar la barra de cabecera" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Mostrar el icono de la bandeja de sistema" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimizar a la bandeja de sistema al arranque" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Idioma (requiere reiniciar):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Al cerrar la ventana:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notificaciones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Activar el sonido de las notificaciones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Mostrar la notificación de los chats privados y las menciones en el título " "de la ventana" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Mostrar notificaciones para:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Descargas de archivos terminadas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Descargas de carpetas terminadas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Mensajes privados" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Mensajes de las salas de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Menciones de las salas de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Resultados de la lista de deseos encontrados" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Restaurar al arranque la pestaña principal previamente activa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Botones de cierre en las pestañas secundarias" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Color de la etiqueta de la pestaña normal:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Color de la etiqueta de la pestaña cambiada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Color de la etiqueta de la pestaña resaltada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Posición en la lista de amigos:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Pestañas principales visibles:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Posiciones de la barra de pestañas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Pestañas principales" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Mostrar las rutas de los archivo a la inversa (requiere reiniciar)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Mostrar los tamaños de exactos de los archivo (requiere reiniciar)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Color del texto de lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Color del texto de los resultados de búsqueda en cola de espera:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Habilitar los nombres de usuario de colores" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aspecto del nombre de usuario del chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Color del texto remoto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Color del texto local:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Color del texto de salida del comando:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "Color del texto de la acción /me:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Color del texto resaltado:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Color del texto de los enlaces URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Estado de los usuarios" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Color en línea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Color del visitante:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Color sin conexión:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Entradas de texto" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Color de fondo de la entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Color del texto de la entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Tipografías" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Tipografía general:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Tipografía para las listas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Fuente de la vista de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Tipografía para los chats:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Tipografía para las transferencias:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Tipografía para las búsquedas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Tipografía para las exploraciones:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Iconos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Carpeta del tema de iconos:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Interrumpir usuario(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Vetar usuario(s)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Borrar todas las subidas finalizadas/canceladas" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Todos los mensajes" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Eliminar subidas específicas" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Guardar la lista de recursos compartidos en el disco" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Actualizar archivos" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Editar perfil" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Archivos compartidos" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Carpetas compartidas" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Subidas en cola" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Puestos de subida disponibles" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Velocidad de subida" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Editar los intereses" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Regalar privilegios…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Actualizar el perfil" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Comandos para Nicotine+" #~ msgid "_Clear" #~ msgstr "_Limpiar" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "No se puede guardar %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Amigos de confianza" #~ msgid "Quit program" #~ msgstr "Cerrar el programa" #~ msgid "Username:" #~ msgstr "Nombre de usuario:" #~ msgid "Re_commendations for Item" #~ msgstr "_Recomendaciones para el elemento" #~ msgid "_Remove Item" #~ msgstr "_Eliminar elemento" #~ msgid "_Remove" #~ msgstr "Elimina_r" #~ msgid "Send M_essage" #~ msgstr "Enviar m_ensaje" #~ msgid "Send Message" #~ msgstr "Enviar mensaje" #~ msgid "View User Profile" #~ msgstr "Ver el perfil del usuario" #~ msgid "Start Messaging" #~ msgstr "Iniciar mensajes" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Introduce el nombre del usuario al que deseas enviar un mensaje:" #~ msgid "_Message" #~ msgstr "_Mensaje" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Introduce el nombre del usuario cuyo perfil quieres ver:" #~ msgid "_View Profile" #~ msgstr "_Ver el perfil" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Introduce el nombre del usuario cuya lista de compartidos deseas ver:" #~ msgid "_Browse" #~ msgstr "_Explorar" #~ msgid "Password" #~ msgstr "Contraseña" #~ msgid "Download File" #~ msgstr "Descargar el archivo" #~ msgid "Refresh Similar Users" #~ msgstr "Actualizar los usuarios similares" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Introduce el nombre de usuario de la persona cuyos archivos deseas ver" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Introduce el nombre de usuario de la persona cuya información deseas ver" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Introduce el nombre de usuario de la persona a la que deseas enviar un " #~ "mensaje" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Introduce el nombre de usuario de la persona que deseas añadir a tu lista " #~ "de amigos" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Introduce el nombre de la sala a la que deseas unirte. Si la sala no " #~ "existe, se creará." #~ msgid "Show Log History Pane" #~ msgstr "Mostrar el panel del historial de los registros" #~ msgid "Save _Picture" #~ msgstr "Guardar _Imagen" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Se descartó el resultado de búsqueda incorrecto %(filepath)s del usuario " #~ "%(user)s para la consulta de búsqueda «%(query)s»" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Algunos clientes no envían resultados de búsqueda si se incluyen " #~ "caracteres especiales." #~ msgid "Remove special characters from search terms" #~ msgstr "Eliminar los caracteres especiales de los términos de búsqueda" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problema ejecutando «%s»" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemas de ejecución en la carpeta: %s" #~ msgid "Disallowed extension" #~ msgstr "Extensión no permitida" #~ msgid "Too many files" #~ msgstr "Demasiados archivos" #~ msgid "Too many megabytes" #~ msgstr "Demasiados megabytes" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "El servidor no permite realizar búsquedas de la lista de deseos en este " #~ "momento" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "La velocidad de transferencia de archivos depende de los usuarios desde " #~ "los que estés descargando. Algunos usuarios serán más rápidos, mientras " #~ "que otros serán más lentos." #~ msgid "Started Downloads" #~ msgstr "Descargas iniciadas" #~ msgid "Started Uploads" #~ msgstr "Subidas iniciadas" #~ msgid "Replace censored letters with:" #~ msgstr "Sustituir las letras censuradas por:" #~ msgid "Censored Patterns" #~ msgstr "Patrones censurados" #~ msgid "Replacements" #~ msgstr "Sustituciones" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Si un usuario de la red Soulseek busca un archivo que existe en tus " #~ "compartidos, los resultados de la búsqueda se enviarán a dicho usuario." #~ msgid "Send to Player" #~ msgstr "Enviar al reproductor" #~ msgid "Send to _Player" #~ msgstr "Enviar al _Reproductor" #~ msgid "_Open in File Manager" #~ msgstr "_Mostrar en el gestor de archivos" #~ msgid "Media player command:" #~ msgstr "Comando del reproductor multimedia:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "No ha sido posible guardar la descarga en la subcarpeta del nombre de " #~ "usuario, volviendo a la carpeta de descarga por defecto. Error: %s" #~ msgid "Buddy-only" #~ msgstr "Solo para amigos" #~ msgid "Share with buddies only" #~ msgstr "Compartir solo con amigos" #~ msgid "_Quit…" #~ msgstr "_Salir…" #~ msgid "_Configure Shares" #~ msgstr "_Configurar compartidos" #~ msgid "Remote file error" #~ msgstr "Error de archivo remoto" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "No se encuentra %(option1)s ni %(option2)s, por favor, instale cualquiera " #~ "de los dos." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s carpetas encontradas después de un nuevo escaneo" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "No se han podido procesar las siguientes bases de datos: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Fallo al enviar el número de archivos compartidos al servidor: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Salir/ejecutar en segundo plano" #~ msgid "Listening port:" #~ msgstr "Puerto de escucha:" #~ msgid "Network interface:" #~ msgstr "Interfaz de la red:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "" #~ "Limitar los compartidos de solo-para-amigos a los amigos de confianza" #~ msgid "Shared" #~ msgstr "Compartido" #~ msgid "Search Files and Folders" #~ msgstr "Buscar en archivos y carpetas" #~ msgid "Out of Date" #~ msgstr "No actualizado" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "La versión %(version)s está disponible, publicada el %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Está utilizando una versión de desarrollo de %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Está utilizando la última versión de %s" #~ msgid "Latest Version Unknown" #~ msgstr "Última versión desconocida" #~ msgid "Prefer Dark _Mode" #~ msgstr "Modo _oscuro" #~ msgid "Show _Log History Pane" #~ msgstr "Mostrar el panel del historial del _registro" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lista de amigos en una pestaña separada" #~ msgid "Buddy List Always Visible" #~ msgstr "Lista de amigos siempre visible" #~ msgid "_View" #~ msgstr "_Ver" #~ msgid "_Open Log Folder" #~ msgstr "_Abrir carpeta del registro" #~ msgid "_Browse Folder(s)" #~ msgstr "_Explorar carpeta(s)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bytes) por segundo." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Se envía a los usuarios como razón del bloqueo geográfico." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Se envía a los usuarios como razón por la cual se les ha vetado." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Una vez que interactúe con la aplicación estando ausente, el estado " #~ "cambiará a «en línea»." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Cada usuario puede poner en cola un máximo de:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "archivos" #~ msgid "Queue Behavior" #~ msgstr "Comportamiento de la cola" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Si se desactiva, los puestos se determinarán automáticamente según las " #~ "limitaciones del ancho de banda disponible." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Tenga en cuenta que el tema del sistema operativo puede tener prioridad." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "La pestaña más a la izquierda es activada por defecto al arranque" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "¡Cerrar %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "cancelado" #~ msgid "done" #~ msgstr "hecho" #~ msgid "Remember choice" #~ msgstr "Recordar la elección" #~ msgid "Kosovo" #~ msgstr "Kosovo" #~ msgid "Unknown Network Interface" #~ msgstr "Interfaz de red desconocida" #~ msgid "Listening Port Unavailable" #~ msgstr "Puerto de escucha no disponible" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "El servidor parece caído o sin respuesta, reintentando en %i segundos" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ utiliza una red peer-to-peer para conectarse a otros usuarios. " #~ "Para que los usuarios puedan conectarse a ti sin problemas es crucial " #~ "tener un puerto de escucha abierto." #~ msgid "--- disconnected ---" #~ msgstr "--- desconectado ---" #~ msgid "--- reconnected ---" #~ msgstr "--- conectado de nuevo ---" #~ msgid "ID" #~ msgstr "Identificador" #~ msgid "Earth" #~ msgstr "Tierra" #~ msgid "Czech Republic" #~ msgstr "República Checa" #~ msgid "Turkey" #~ msgstr "Turquía" #~ msgid "Joined Rooms " #~ msgstr "Salas a las que te has unido " #~ msgid "_Auto-join Room" #~ msgstr "Unirse _automáticamente a la sala" #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintaxis: Las letras no distinguen entre mayúsculas y minúsculas. " #~ "Todas las expresiones regulares de Python son compatibles si el escape " #~ "está desactivado. Para los filtros simples, se recomienda mantener el " #~ "escape activado." #~ msgid "Escaped" #~ msgstr "Escape activado" #~ msgid "Escape filter" #~ msgstr "Filtro de escape" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "" #~ "Introduce un patrón de texto y aquello por lo vaya a ser reemplazado" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s carpetas encontradas antes del reescaneo, reconstruyendo…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "No hay ningún puerto de recepción disponible en el intervalo de puertos " #~ "especificado %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Elija un rango para el puerto de recepción. Se utiliza el primer puerto " #~ "disponible en el rango." #~ msgid "First Port" #~ msgstr "Puerto Principal" #~ msgid "to" #~ msgstr "a" #~ msgid "Last Port" #~ msgstr "Último Puerto" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "No se encuentra %s, por favor instálalo." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "No se puede importar el módulo Gtk. ¿Mala instalación del módulo python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Estás utilizando una versión no soportada de GTK %(major_version)s. " #~ "Deberías instalar GTK %(complete_version)s o superior." #~ msgid "User Info" #~ msgstr "Información de usuario" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Acercarse" #~ msgid "Zoom Out" #~ msgstr "Alejarse" #~ msgid "Show User I_nfo" #~ msgstr "Ver i_nformación de usuario" #~ msgid "Request User's Info" #~ msgstr "Solicitar información del usuario" #~ msgid "Request User's Shares" #~ msgstr "Consultar los compartidos del usuario" #~ msgid "Request User Info" #~ msgstr "Solicitar información de usuario" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Introduce el nombre del usuario cuya información deseas consultar:" #~ msgid "Request Shares List" #~ msgstr "Solicitar la lista de compartidos" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "URL de Soulseek no válida: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Los usuarios de la red Soulseek podrán descargar archivos de las carpetas " #~ "que compartas. Compartir archivos es crucial para la salud de la red " #~ "Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Actualizar i_nfo" #~ msgid "Chat Room Commands" #~ msgstr "Comandos de la sala de chat" #~ msgid "/join /j 'room'" #~ msgstr "/join /j «sala»" #~ msgid "Join room 'room'" #~ msgstr "Unirse a la sala «sala»" #~ msgid "/me 'message'" #~ msgstr "/me «mensaje»" #~ msgid "Display the Now Playing script's output" #~ msgstr "Mostrar la salida del script de «Reproduciendo ahora»" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad «usuario»" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Añadir usuario «usuario» a tu lista de amigos" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy «usuario»" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Eliminar usuario «usuario» de tu lista de amigos" #~ msgid "/ban 'user'" #~ msgstr "/ban «usuario»" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Añadir usuario «usuario» a tu lista de vetados" #~ msgid "/unban 'user'" #~ msgstr "/unban «usuario»" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Eliminar al usuario «usuario» de tu lista de vetados" #~ msgid "/ignore 'user'" #~ msgstr "/ignore «usuario»" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Añadir usuario «usuario» a tu lista de ignorados" #~ msgid "/unignore 'user'" #~ msgstr "/unignore «usuario»" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Eliminar usuario «usuario» de tu lista de ignorados" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b «usuario»" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w «usuario»" #~ msgid "Request info for 'user'" #~ msgstr "Solicitar información de «usuario»" #~ msgid "/ip 'user'" #~ msgstr "/ip «usuario»" #~ msgid "Show IP for user 'user'" #~ msgstr "Mostrar la IP del usuario «usuario»" #~ msgid "/search /s 'query'" #~ msgstr "/search /s «consulta»" #~ msgid "Start a new search for 'query'" #~ msgstr "Comenzar una nueva búsqueda para «consulta»" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs «consulta»" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Buscar «consulta» en las salas a las que se ha unido" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs «consulta»" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Buscar «consulta» en la lista de amigos" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us «usuario» «consulta»" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg «usuario» «mensaje»" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Enviar mensaje «mensaje» al usuario «usuario»" #~ msgid "/pm 'user'" #~ msgstr "/pm «usuario»" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Abre una ventana de chat privado con el usuario «usuario»" #~ msgid "Private Chat Commands" #~ msgstr "Comandos de chat privado" #~ msgid "Add user to your ban list" #~ msgstr "Añadir usuario a tu lista de vetados" #~ msgid "Add user to your ignore list" #~ msgstr "Añadir usuario a tu lista de ignorados" #~ msgid "Browse shares of user" #~ msgstr "Explorar los compartidos del usuario" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Para un filtrado no sensible al orden, así como para filtrar varias " #~ "frases exactas, se pueden utilizar barras verticales para separar frases " #~ "y palabras.\n" #~ " Ejemplo: Instrumental|Remix|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Para excluir archivos que no sean de audio, use !0 en el filtro de " #~ "duración." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "" #~ "Filtra los archivos en función de la posición geográfica de los usuarios." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Para volver a ver los resultados completos, simplemente borre todos los " #~ "filtros activos." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Vaya a Configuración para definir las opciones por defecto del filtro de " #~ "resultados." #~ msgid "File size" #~ msgstr "Tamaño del archivo" #~ msgid "Clear Active Filters" #~ msgstr "Borrar filtros activos" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Recorrer cíclicamente las opciones de autocompletado al pulsar la tecla " #~ "de tabulación" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Ocultar el desplegable cuando solo haya una coincidencia" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Descargar carpetas en orden alfanumérico inverso" #~ msgid "Incomplete file folder:" #~ msgstr "Carpeta de archivos incompletos:" #~ msgid "Download folder:" #~ msgstr "Carpeta de descarga:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Guardar las subidas de los amigos en:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Utilizar UPnP para reenviar el puerto de recepción" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Comparte tus carpetas con todos los usuarios o amigos de Soulseek, " #~ "permitiendo que los contenidos se descarguen directamente desde tu " #~ "dispositivo. Los archivos ocultos nunca se comparten." #~ msgid "Secondary Tabs" #~ msgstr "Pestañas secundarias" #~ msgid "Chat room tab bar position:" #~ msgstr "Posición de la barra de pestañas de la sala de chat:" #~ msgid "Private chat tab bar position:" #~ msgstr "Posición de la barra de pestañas del chat privado:" #~ msgid "Search tab bar position:" #~ msgstr "Posición de la barra de pestañas de la búsqueda:" #~ msgid "User info tab bar position:" #~ msgstr "Posición de la barra de pestañas de la información de usuario:" #~ msgid "User browse tab bar position:" #~ msgstr "Posición de la barra de pestañas en la exploración de usuarios:" #~ msgid "Tab Labels" #~ msgstr "Etiquetas de las pestañas" #~ msgid "_Refresh Info" #~ msgstr "_Refrescar información" #~ msgid "Block IP Address" #~ msgstr "Bloquear dirección IP" #~ msgid "Connected" #~ msgstr "Conectado" #~ msgid "Disconnected" #~ msgstr "Desconectado" #~ msgid "Disconnected (Tray)" #~ msgstr "Desconectado (Bandeja)" #~ msgid "User(s)" #~ msgstr "Usuario(s)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "El alias «%s» no ha devuelto nada" #~ msgid "Alternative Speed Limits" #~ msgstr "Límites de velocidad alternativos" #~ msgid "Last played" #~ msgstr "Última reproducción" #~ msgid "Playing now" #~ msgstr "Reproduciendo ahora" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "No se pudo abrir la ruta del archivo %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Código de error %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "No existe tal alias (%s)" #~ msgid "Aliases:" #~ msgstr "Alias:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Alias %(alias)s eliminado: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "No existe el alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Límites de velocidad alternativos" #~ msgid "Aliases" #~ msgstr "Alias" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al «comando» «definición»" #~ msgid "Add a new alias" #~ msgstr "Añadir un nuevo alias" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un «comando»" #~ msgid "Remove an alias" #~ msgstr "Eliminar un alias" #~ msgid "Chat History" #~ msgstr "Historial del chat" #~ msgid "Command aliases" #~ msgstr "Alias de comandos" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limitar la velocidad de descarga a (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autor(es):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limitar la velocidad de subida a (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Artículo de la lista de deseos encontrado" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Las pestañas muestran los iconos de estado del usuario en lugar del texto " #~ "de estado" #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Mostrar rutas de archivo emergentes en las vistas de lista de archivos" #~ msgid "Colored and clickable usernames" #~ msgstr "Nombres de usuario coloreados y clicables" #~ msgid "Notification changes the tab's text color" #~ msgstr "La notificación cambia el color del texto de la pestaña" #~ msgid "Cancel" #~ msgstr "Cancelar" #~ msgid "OK" #~ msgstr "Aceptar" #~ msgid "_Add to Buddy List" #~ msgstr "_Añadir a la lista de amigos" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Limpiar todas las descargas que tengan un estado específico." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Limpiar todas las subidas que tengan un estado específico." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "usar un directorio de datos de usuario no predeterminado para p.e. lista " #~ "de descargas" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Sección de configuración desconocida «%s»" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Opción de configuración desconocida «%(option)s» en la sección " #~ "«%(section)s»" #, python-format #~ msgid "Version %s is available" #~ msgstr "La versión %s está disponible" #, python-format #~ msgid "released on %s" #~ msgstr "publicada el %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ está ejecutándose en segundo plano" #, python-format #~ msgid "Private message from %s" #~ msgstr "Mensaje privado de %s" #~ msgid "Aborted" #~ msgstr "Interrumpida" #~ msgid "Blocked country" #~ msgstr "País bloqueado" #~ msgid "Finished / Aborted" #~ msgstr "Terminadas/interrumpidas" #~ msgid "Close tab" #~ msgstr "Cerrar pestaña" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Has sido mencionado en la sala %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Comando %s no reconocido" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Advertencia: %(realuser)s está intentando suplantar a %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "La interfaz de red que has especificado, «%s», no existe. Cambia o " #~ "elimina la interfaz de red especificada y reinicia Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "El rango especificado para los puertos de conexión del cliente era {}-{}, " #~ "pero ninguno de ellos era utilizable. Aumenta o " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Ten en cuenta que parte de tu rango se encuentra por debajo de 1024, esto " #~ "no suele estar permitido en la mayoría de los sistemas operativos, a " #~ "excepción de Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progreso del reescaneo: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Error del SO: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP no está disponible en esta red" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Fallo en la asignación del puerto WAN externo: %(error)s" #~ msgid "Room wall" #~ msgstr "Muro de la sala" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "El puerto de escucha por defecto, «2234», funciona bien en la mayoría de " #~ "los casos. Si necesitas usar un puerto diferente podrás modificarlo en la " #~ "configuración más adelante." #~ msgid "Show users with similar interests" #~ msgstr "Mostrar usuarios con intereses similares" #~ msgid "Menu" #~ msgstr "Menú" #~ msgid "Expand / Collapse all" #~ msgstr "Expandir/Contraer todo" #~ msgid "Configure shares" #~ msgstr "Configurar los compartidos" #~ msgid "Create or join room…" #~ msgstr "Crear o unirse a la sala…" #~ msgid "_Room List" #~ msgstr "Lista de _Salas" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Habilitar límites alternativos de velocidad de descarga y subida" #~ msgid "Show log history" #~ msgstr "Mostrar el historial del registro" #~ msgid "Result grouping mode" #~ msgstr "Modo de agrupación de resultados" #~ msgid "Free slot" #~ msgstr "Puesto disponible" #~ msgid "Save shares list to disk" #~ msgstr "Guardar lista de compartidos en el disco" #~ msgid "_Away" #~ msgstr "_Ausente" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Fallo al cargar el archivo interfaz %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Intentando reiniciar el índice de archivos compartidos debido a un error. " #~ "Por favor, reescanea tus archivos compartidos." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "No se pudo acceder al índice de archivos compartidos. Esto podría deberse " #~ "a que varias instancias de Nicotine+ estén activas simultáneamente, a " #~ "problemas de permisos de archivos o a otro problema en Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ es un cliente de Soulseek" #~ msgid "enable the tray icon" #~ msgstr "habilitar el icono de la bandeja de sistema" #~ msgid "disable the tray icon" #~ msgstr "deshabilitar el icono de la bandeja de sistema" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Obtener privilegios de Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "La dirección IP pública es %(ip)s y el puerto de escucha activo es " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "desconocido" #~ msgid "Notification" #~ msgstr "Notificación" #~ msgid "Length" #~ msgstr "Duración" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Imagen no guardada, %s ya existe." #~ msgid "_Open" #~ msgstr "_Abrir" #~ msgid "_Save" #~ msgstr "_Guardar" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Fallo al cargar complemento «%s», no se ha podido localizar." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Error de E/S: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Fallo al abrir la ruta del archivo: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Fallo al abrir la URL: %s" #~ msgid "_Log Conversation" #~ msgstr "_Registrar conversación" #~ msgid "Result Filter List" #~ msgstr "Lista de filtros de resultados" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Anteponga ‘<’ o ‘>’ para encontrar archivos menores o mayores que el " #~ "valor dado." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Los archivos VBR muestran su tasa de bits media y suelen tener una tasa " #~ "de bits inferior a la de un archivo CBR comprimido de 320 kbps con la " #~ "misma calidad de audio." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Como en el caso del tamaño de arriba, se pueden utilizar =, < y >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Impedir el acceso de escritura de otros programas a los archivos que se " #~ "descargan (desactivar para NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Donde se almacenan temporalmente las descargas incompletas." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Donde se almacenarán las subidas de los amigos (con una subcarpeta creada " #~ "para cada amigo)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Activar estado de ausencia tras estos minutos de inactividad:" #~ msgid "Protocol:" #~ msgstr "Protocolo:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Carpeta de temas de iconos (requiere reinicio):" #~ msgid "Establishing connection" #~ msgstr "Estableciendo conexión" #~ msgid "Clear Groups" #~ msgstr "Limpiar grupos" #~ msgid "User List" #~ msgstr "Lista de usuarios" #~ msgid "_Reset Statistics…" #~ msgstr "_Reiniciar estadísticas…" #~ msgid "Clear _Downloads…" #~ msgstr "Limpiar _descargas…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Limpiar _subidas…" #, python-format #~ msgid "File Properties (%(num)i of %(total)i)" #~ msgstr "Propiedades del archivo (%(num)i de %(total)i)" #~ msgid "" #~ "* Message(s) sent while you were offline. Timestamps are reported by the " #~ "server and can be off." #~ msgstr "" #~ "* Mensaje(s) recibidos(s) mientras estabas desconectado. Las marcas " #~ "temporales provienen del servidor y pueden estar desajustadas." #~ msgid "Block User's IP Address" #~ msgstr "Bloquear dirección IP del usuario" #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorar dirección IP del usuario" #~ msgid "Usernames" #~ msgstr "Nombres de usuario" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Mostrar el registro de mensajes de las salas de chat cuando se vuelva a " #~ "entrar a una sala" #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Limpiar todas las descargas que hayan terminado de transferirse o que " #~ "hayan sido descartadas por algún filtro." #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Limpiar todas las subidas que hayan terminado de transferirse o que hayan " #~ "sido interrumpidas por el usuario remoto." #~ msgid "Queue Position" #~ msgstr "Lugar en la cola" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "El usuario %(user)s está buscando directamente «%(query)s», devolviéndose " #~ "%(num)i resultados" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVADO]" #~ msgid "Room wall (personal message set)" #~ msgstr "Muro de la sala (mensaje personal definido)" #~ msgid "Your config file is corrupt" #~ msgstr "Tu archivo de configuración está corrupto" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Lo sentimos, pero parece que su archivo de configuración está corrupto. " #~ "Por favor, reconfigure Nicotine+.\n" #~ "\n" #~ "Hemos renombrado su antiguo archivo de configuración a\n" #~ "%(corrupt)s\n" #~ "Si abre este archivo con un editor de texto podrá rescatar algunos de sus " #~ "ajustes." #~ msgid "User Description" #~ msgstr "Descripción de usuario" #~ msgid "User Interests" #~ msgstr "Intereses de usuario" #~ msgid "User Picture" #~ msgstr "Imagen del Usuario" #~ msgid "Search Wishlist" #~ msgstr "Buscar en la Lista de Deseos" #, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Cargando Nicotine+ %(nic_version)s" #, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Usando Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Cerrando Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "¡Cerrar Nicotine+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Usuario:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Todos %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "Archivos %(number)2s " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Permitir expresiones regulares para la inclusión y exclusión del filtro" #, fuzzy #~ msgid "Quit…" #~ msgstr "Salir" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Ver la pestaña principal anterior al inicio" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Activar los filtros de resultados de búsqueda por defecto" #~ msgid "Close Nicotine+?" #~ msgstr "Cerrar Nicotine+?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "¿Realmente quieres salir de Nicotine+?" #~ msgid "Run in Background" #~ msgstr "Ejecutar en segundo plano" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "Notificación en línea" #~ msgid "_Prioritize User" #~ msgstr "_Priorizar usuario" #~ msgid "_Trust User" #~ msgstr "_Usuario de confianza" #~ msgid "Request User's IP Address" #~ msgstr "Solicitar dirección IP de usuario" #~ msgid "Request IP Address" #~ msgstr "Solicitar dirección IP" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Introduzca el nombre de un usuario cuya dirección IP desea recibir:" #~ msgid "Downloaded" #~ msgstr "Descargado" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "No se ha podido añadir la descarga %(filename)s a los archivos " #~ "compartidos: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Compartir automáticamente las descargas" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "El equivalente a añadir su carpeta de descargas como un recurso " #~ "compartido público, sin embargo, los archivos descargados en esta carpeta " #~ "serán automáticamente accesibles a otros (no se requiere volver a " #~ "escanear)." #~ msgid "Unable to Share Folder" #~ msgstr "No es posible compartir carpeta" #~ msgid "The chosen virtual name is empty" #~ msgstr "El nombre virtual elegido está vacío" #~ msgid "The chosen virtual name already exists" #~ msgstr "El nombre virtual elegido ya existe" #~ msgid "The chosen folder is already shared" #~ msgstr "La carpeta elegida ya ha sido compartida" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Establecer nombre virtual" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Introduce nombre virtual para '%(dir)s':" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "El nombre virtual elegido está vacío o ya existe" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "La carpeta elegida ya está compartida." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "Propiedades %s" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Terminado el reescaneo de las acciones de los amigos" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Lista de plugins" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Error al escanear %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Mostrar el panel _Log" #~ msgid "Addresses" #~ msgstr "Direcciones" #~ msgid "Handler" #~ msgstr "Manejador" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "No se ha podido habilitar el plugin." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "No se ha podido desactivar el plugin." #~ msgid "Transfers" #~ msgstr "Transferencias" #~ msgid "Ban List" #~ msgstr "Lista de vetos" #~ msgid "Ignore List" #~ msgstr "Lista de ignorados" #~ msgid "Censor & Replace" #~ msgstr "Censurar y reemplazar" #, fuzzy #~ msgid "Completion" #~ msgstr "Finalización" #~ msgid "Categories" #~ msgstr "Categorías" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Cargar carpeta a…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Cargar carpeta recursiva a…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Descargar _Recursiva" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Descargar R_ecursive To…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Subir_carga Archivo(s)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Error al intentar mostrar la carpeta '%(folder)s', error reportado: " #~ "%(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Seleccione el destino para descargar la carpeta con subcarpetas del " #~ "usuario" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Seleccione el destino para descargar una carpeta del usuario" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Seleccione el destino para descargar archivos del usuario" #~ msgid "Wishes" #~ msgstr "Deseos" #~ msgid "privileged" #~ msgstr "privilegiado" #~ msgid "prioritized" #~ msgstr "priorizado" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Direcciones IP bloqueadas" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Completar los nombres de los compañeros" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Nombres de usuario completos en las salas de chat" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Nombres completos de las habitaciones" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Lista desplegable" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Comando del administrador de archivos ($ para la ruta del archivo):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Comando del reproductor multimedia ($ para la ruta del archivo):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Direcciones IP ignoradas" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Mostrar marcas de tiempo" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Ventanas emergentes de notificación" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Mostrar una notificación emergente cuando un archivo ha terminado de " #~ "descargarse" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Mostrar una notificación emergente cuando una carpeta ha terminado de " #~ "descargarse" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Mostrar ventana emergente de notificación cuando se recibe un mensaje " #~ "privado" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Mostrar una notificación emergente cuando alguien envía un mensaje en una " #~ "sala de chat" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Mostrar una notificación emergente cuando se le menciona en una sala de " #~ "chat" #, fuzzy #~ msgid "Tray" #~ msgstr "Bandeja" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Las instancias de $ serán sustituidas por el enlace. Se utilizará el " #~ "navegador web por defecto del sistema en los casos en que no se haya " #~ "configurado un protocolo." #~ msgid "Handler:" #~ msgstr "Manejador:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Pestañas primarias" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Habilitar la información sobre la ruta de los archivos en las vistas de " #~ "búsqueda y transferencia" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Muestra la ruta completa de un resultado de búsqueda o de una " #~ "transferencia de archivos cuando se pasa el cursor por encima de una ruta " #~ "de carpeta o de un nombre de archivo." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Mostrar los archivos compartidos de forma privada en los recursos " #~ "compartidos de los usuarios" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Otros clientes pueden ofrecer una opción para enviar archivos compartidos " #~ "de forma privada cuando se navega por sus recursos compartidos. Las " #~ "carpetas que contienen este tipo de archivos llevan el prefijo '[CARPETA " #~ "PRIVADA]', y no se pueden descargar a menos que el cargador dé su permiso " #~ "explícito." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censurar y reemplazar" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Mostrar controles de registro de depuración" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Registro de depuración" #~ msgid "Virtual Name" #~ msgstr "Nombre virtual" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Editar nombre virtual" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Copiar la URL de la carpeta" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Bajar" #~ msgid "Download" #~ msgstr "Bajar" #~ msgid "Upload" #~ msgstr "Subir" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Cargar el contenido de la carpeta" #, fuzzy #~ msgid "Upload File(s)" #~ msgstr "Cargar archivo(s)" #~ msgid "Rename" #~ msgstr "Renombrar" #~ msgid "File Lists" #~ msgstr "Listas de archivos" #~ msgid "Copy File Path" #~ msgstr "Copiar ruta de archivo" #~ msgid "R_emove Wish" #~ msgstr "R_emover deseo" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Parece que '%s' no es un directorio, no carga los plugins." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Comenzando a leer los compartidos de amigos" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Terminado el reescaneo de las acciones de los amigos" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Su amigo, %s, está intentando enviarle archivos" #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s no tiene permiso para enviarte archivos, pero está intentándolo de " #~ "todas formas. Advertencia enviada." #~ msgid "Client Version" #~ msgstr "Versión del cliente" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "¿Cuántos días de privilegios debe tener el usuario %s?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Los amigos tendrán mayor prioridad en la cola, al igual que los usuarios " #~ "con privilegios globales." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegiado" #~ msgid "_Privileged" #~ msgstr "_Privilegiado" #~ msgid "Comments" #~ msgstr "Comentarios" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Comentarios" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Crea subcarpetas basadas en el usuario que está descargando, y almacena " #~ "el archivo/carpeta descargado allí." #, fuzzy #~ msgid "Login Details" #~ msgstr "Datos de acceso" #, fuzzy #~ msgid "Advanced" #~ msgstr "Avanzado" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Intervalo de renovación de la asignación de puertos en horas:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Activar las acciones de los amigos" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "" #~ "Los archivos se cargarán en el orden en que se hayan puesto en cola." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Releer compartidos" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Terminado el reescaneo de las acciones públicas" #~ msgid "Scanning Buddy Shares" #~ msgstr "Comenzando a leer los compartidos de amigos" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "_Escanear las acciones públicas" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Reexaminar las acciones de B_uddy" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Reexaminar las acciones públicas" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Reexaminar las acciones de los amigos" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Activa las acciones privadas a las que sólo pueden acceder los usuarios " #~ "de tu lista de amigos. Si se desactiva, los usuarios solo podrán acceder " #~ "a tus recursos compartidos públicos." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Marcar cada carpeta compartida como de uso exclusivo de los amigos" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Anula la opción por acción, útil si necesita impedir temporalmente el " #~ "acceso público a las acciones." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Sólo los usuarios marcados como de confianza en tu lista de amigos pueden " #~ "acceder a tus acciones sólo para amigos." #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+ le permite compartir carpetas directamente desde su ordenador. " #~ "Todo el contenido de estas carpetas (a excepción de los dotfiles) puede " #~ "ser descargado por otros usuarios de la red Soulseek. Los recursos " #~ "compartidos públicos están disponibles para todos los usuarios, mientras " #~ "que los usuarios de tu lista de amigos pueden acceder a los recursos " #~ "compartidos sólo para amigos, además de los recursos compartidos públicos." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Filtrado de los resultados de búsqueda excluidos " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtrado de resultados de búsqueda inexactos o incorrectos " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "El ajuste almacenado '%(key)s' ya no está presente en el plugin '%(name)s'" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "El plugin %(module)s devuelve algo raro, '%(value)s', ignorando" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Caché inconsistente para '%(vdir)s', reconstruyendo '%(dir)s'" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Soltando la carpeta que falta %(dir)s" #, fuzzy, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Todos los tickers / mensajes de muro para %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Establecer su marcador personal" #, fuzzy #~ msgid "Show all the tickers" #~ msgstr "Mostrar todos los teletipos" #, fuzzy #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "No se han podido escanear las acciones. Si se está ejecutando Nicotine+, " #~ "cierre el programa antes de escanear." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Está seguro de que quiere salir de Nicotine+ ahora?" #, fuzzy #~ msgid "Receive a User's IP Address" #~ msgstr "Recibir la dirección IP de un usuario" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Recibir información de un usuario" #, fuzzy #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "El servidor nos prohibió hacer búsquedas en la lista de deseos." #, fuzzy, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Su base de datos de recursos compartidos está dañada. Por favor, vuelva a " #~ "escanear sus recursos compartidos e informe a los desarrolladores de " #~ "cualquier posible problema de escaneo. Error: %s" #, fuzzy #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Por favor, tenga en cuenta que algunos nombres de usuario pueden estar " #~ "tomados. Si este es el caso, se le pedirá que cambie su nombre de usuario " #~ "cuando se conecte a la red." #, fuzzy #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "" #~ "Introduzca el nombre de usuario de la persona de la que desea recibir " #~ "información" #~ msgid "Add user 'user' to your user list" #~ msgstr "Añadir usuario 'usuario' a la lista de amigos" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Eliminar al usuario 'usuario' de su lista de amigos" #~ msgid "Request user info for user 'user'" #~ msgstr "Solicitar info de usuario para 'usuario'" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Añadir un usuario a la lista de usuarios" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Eliminar un usuario de su lista de usuarios" #, fuzzy #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Responder a las solicitudes de búsqueda que contengan un número mínimo de " #~ "caracteres:" #, fuzzy #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Los usuarios en cola se cargarán un archivo a la vez de forma cíclica." #~ msgid "Find..." #~ msgstr "Buscar..." #~ msgid "Add..." #~ msgstr "Añadir..." #~ msgid "_Modes" #~ msgstr "_Modos" #~ msgid "_Chat Rooms" #~ msgstr "_Habitaciones" #~ msgid "_Private Chat" #~ msgstr "_Privados" #~ msgid "_Downloads" #~ msgstr "_Descargas" #~ msgid "_Search Files" #~ msgstr "Bú_squeda de ficheros" #~ msgid "User I_nfo" #~ msgstr "I_nfo de usuario" #~ msgid "_Interests" #~ msgstr "_Intereses" #~ msgid "Buddy _List" #~ msgstr "_Lista de amigos" #~ msgid "Enable geographical blocker" #~ msgstr "Activar bloqueo por región geográfica" #~ msgid "Enable URL catching" #~ msgstr "Activar captura de URL" #~ msgid "Geo Block" #~ msgstr "Bloqueo Geográfico" #~ msgid "URL Catching" #~ msgstr "Captura de URL" nicotine-plus-3.3.4/po/et.po000066400000000000000000005737321461625273200157310ustar00rootroot00000000000000# Copyright (C) 2023-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Graafiline klient Soulseek peer-to-peer võrgu jaoks" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;jagamine;vestlus;sõnumid;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Sirvi Soulseek võrku" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ on Soulseek peer-to-peer võrgu graafiline klient." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ eesmärk on olla meeldiv, tasuta ja avatud lähtekoodiga (FOSS) " "alternatiiv ametlikule Soulseeki kliendile, pakkudes samal ajal täiendavaid " "funktsioone." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Otsi faile" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Allalaadimised" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Sirvi jagatud katalooge" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Privaatvestlus" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ meeskond" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Veebileht: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "näita seda abiteadet ja välju" #: pynicotine/__init__.py:59 msgid "file" msgstr "fail" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "kasuta mittevaikimisi konfiguratsioonifaili" #: pynicotine/__init__.py:63 msgid "dir" msgstr "kataloog" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "alternatiivne kataloog kasutajaandmete ja pluginate jaoks" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "käivita programm akent kuvamata" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "seo pesad antud IP-ga (kasulik VPN-i jaoks)" #: pynicotine/__init__.py:75 msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "kuula antud pordis" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "skaneeri jagatud failid uuesti" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "käivita programm päiseta režiimis (ilma GUI-ta)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "kuva versioon ja välju" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Kasutuses on Pythoni (%(old_version)s) toetamata versiooni.\n" "Tuleks paigaldada Python %(min_version)s või uuem." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Jagatud kataloogide skaneerimine nurjus. Sulge teised Nicotine+ instantsid " "ja proovi uuesti." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s on eemal" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s on võrgus" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s on võrgust väljas" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Sõbra olek" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Sind lisati privaatsesse ruumi: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Sõnum kasutajalt'%(user)s' ruumis '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Kataloogi' %(path)s' ei saa luua, teatati veast: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Viga seadistuse varundamisel: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Seadistus varundati: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "%(program)s %(version)s laadimine" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "%(program)s %(version)s, %(status)s väljumine…" #: pynicotine/core.py:237 msgid "terminating" msgstr "lõpetamine" #: pynicotine/core.py:237 msgid "application closing" msgstr "rakendus sulgub" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Lõpeta %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Enne ühenduse loomist tuleb määrata kasutajanimi ja parool…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Viga: Allalaadimise filter nurjus! Kontrolli oma filtreid. Põhjus: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Viga: %(num)d Allalaadimise filtrid nurjusid! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s laaditi alla kasutajalt %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Fail alla laaditud" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Teostatud: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "'%(command)s' käivitamine nurjus: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s laaditi alla kasutajalt %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Kaust alla laaditud" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Teostatud kaustas: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "" "Üksust '%(tempfile)s' ei saanud teisaldada asukohta %(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Allalaadimise kausta viga" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Allalaadimine on lõppenud: kasutaja %(user)s, fail %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Allalaadimine katkestati, kasutaja %(user)s fail %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Allalaadimise I/O viga: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Failile ei saa eksklusiivset lukustust – I/O viga: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Faili ei saa salvestada kausta %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Allalaadimine algas: kasutaja %(user)s, fail %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "%s ei leita, paigalda see." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Graafilist keskkonda pole saadaval, kasutatakse päiseta (GUI puudub) režiimi" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Ühenda" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Katkesta ühendus" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _privileegid" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Eelistused" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Välju" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Sirvi _avalikke jagatud katalooge" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Sirvi _sõbra jagatud katalooge" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Sirvi _usaldusväärseid jagatud katalooge" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Skaneeri jagatud katalooge" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Seadista _jagatud katalooge" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Klaviatuuri otseteed" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Seadistusabiline" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Ülekande statistika" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Teata _veast" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Paranda t_õlkeid" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Nicotine+ teave" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fail" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Jagatud kataloogid" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Abi" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Sirvi jagatud katalooge" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Märguannet ei saa kuvada: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Laadid endiselt faile üles. Kas soovid tõesti väljuda?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Oota, kuni üleslaadimine lõpeb" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Kas soovid tõesti väljuda?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Ei" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Tööta taustal" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Sulge Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Jagatud katalooge pole saadaval" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "Veendu, et välised kettad on ühendatud ja kausta load on õiged." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Tühista" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Proovi uuesti" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Sunni uus skaneering" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Vale parool" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Kasutaja %s on juba olemas ja sisestatud parool on kehtetu. Kui logid sisse " "esimest korda, vali mõni muu kasutajanimi." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Muuda _sisselogimise üksikasju" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Sõnum allalaadivatele kasutajatele" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "Saada privaatsõnum kõigile kasutajatele, kes sinult alla laadivad:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Saada sõnum" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Sõnum sõpradele" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Saada kõigile võrgus olevaile sõpradele privaatsõnum:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Vali salvestatud jagatud kataloogide loendi fail" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kriitiline viga" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ tabas kriitiline viga ja see tuleb sulgeda. Kopeeri järgmine teade " "ja lisa see veaaruandesse:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Sulge Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Kopeeri ja teavita veast" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Olek" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Riik" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Kasutaja" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Kiirus" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Failid" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Usaldusväärne" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Teavita" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Esikohale seatud" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Viimati nähtud" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Märge" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Lisa kasutaja _Märkus…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Eemalda" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Pole kunagi nähtud" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Lisa kasutaja märkus" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Lisa märkus kasutaja %s kohta:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Lisa" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Kas luua uus ruum?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Kas soovid tõesti luua uue ruumi \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Muuda ruum privaatseks" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "_Otsi kasutaja faile" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Leia…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopeeri" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopeeri kõik" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Tühjenda tegevuse ajalugu" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Lahku ruumist" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Kopeeri link" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Vaata ruumi logi" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Kustuta ruumi logi…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Tühjenda sõnumivaade" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s liitus ruumiga" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s mainis sind ruumis %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mainis %(user)s ruumis %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Sõnum kasutajalt %(user)s ruumis %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s lahkus ruumist" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s lahkus" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s tuli tagasi" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Kas kustutada logitud sõnumid?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Kas soovid tõesti kõik selle ruumi logitud sõnumid jäädavalt kustutada?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Programmist" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Veebileht" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Viga uusima versiooni kontrollimisel: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Uus versioon saadaval: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Ajakohane" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Uusima versiooni kontrollimine…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Seadistusabiline" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Virtuaalne kaust" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Kaust" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Lõpeta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Järgmine" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Lisa jagatud kaust" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Muuda jagatud kausta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Sisesta '%(dir)s jaoks uus virtuaalne nimi:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Muuda" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Faili omadused" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Faili omadused (%(num)i / %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Faili omadused (%(num)i / %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Rakenda" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Lisa…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Muuda…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s seaded" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Lisa üksus" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Muuda üksust" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Tundmatu" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Kontrolli pordi olekut" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Parooli vahetus tagasi lükatud" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Sisesta oma Soulseeki kontole uus parool:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Oled praegu Soulseeki võrgust välja logitud. Kui soovid olemasoleva " "Soulseeki konto parooli muuta, pead olema sellele kontole sisse logitud." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Sisesta sisselogimisel kasutatav parool:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Muuda parooli" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Muuda" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Mitte keegi" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Kõik" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Sõbrad" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Usaldusväärsed sõbrad" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Mitte midagi" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Ava fail" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Ava failihalduris" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Otsing" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Paus" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Jätka" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Sirvi kausta" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Süntaks: tõstutundlik. Kui see on lubatud, saab kasutada Pythoni " "regulaaravaldisi, vastasel juhul toetatakse ainult metamärgi * vasteid." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filter" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Lisa allalaadimisfilter" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Sisesta uus allalaadimisfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Luba regulaaravaldised" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Muuda allalaadimisfiltrit" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Muuda järgmist allalaadimisfiltrit:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d nurjus! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtrite kasutus edukas" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Avalik" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Ligipääsetav" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Katkesta" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Proovi uuesti" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Tsükliline" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Esimene sisse, esimene välja" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Kasutajanimi" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP aadress" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Eira kasutajat" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Sisesta kasutaja nimi, keda soovid ignoreerida:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Eira IP aadressi" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Sisesta IP aadress, mida soovid eirata:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* on metamärk" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Blokeeri kasutaja" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Sisesta selle kasutaja nimi, kelle soovid blokeerida:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Keela IP aadress" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Sisesta IP aadress, mille soovid keelata:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Vormingu koodid" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Muster" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Asendus" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Tsensuuri muster" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Sisesta muster, mida soovid tsenseerida. Kui ei soovi tekstis leiduvaile " "sõnadele vastet, lisa mustri ümber tühikud (ridade alguses ja lõpus võib see " "ebaõnnestuda)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Muuda tsenseeritud mustrit" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Lisa asendus" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Sisesta tekstimuster ja millega see asendada:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Muuda asendust" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Süsteemi vaikeväärtus" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Kuva kinnitusdialoog" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Tööta taustal" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "rasvane" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "kaldkiri" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "allajoonitud" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "tavaline" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Eraldi sõprade vahekaart" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Külgriba jututubade vahekaardil" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Alati nähtav külgriba" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Ülal" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "All" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Vasakul" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Paremal" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Võrgus" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Eemal" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Võrgust väljas" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Muutunud vahekaart" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Vahekaardi esiletõstmine" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Aken" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Võrgus (salv)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Eemal (salv)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Võrgust väljas (salv)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Sõnum (salv)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokoll" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Käsk" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Lisa URL-i töötleja" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Sisesta URL-i töötleja protokoll ja käsk:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Muuda käsku" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Sisesta protokollile %s uus käsk:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Kasutajanimi;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Pleier (nt amarok, audacious, exaile); jäta automaatseks tuvastamiseks " "tühjaks:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Kasutajanimi: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Käsk:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Pealkiri" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Esitamisel (tavaliselt \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Esitaja" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Kestus" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitikiirus" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Kommentaar" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Raja number" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Aasta" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Failinimi (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programm" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Lubatud" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Pluginat pole valitud" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Võrk" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Kasutajaliides" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Jagatud kataloogid" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Üleslaadimised" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Otsingud" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Kasutajaprofiil" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Vestlused" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Esitamisel" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Logimine" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Blokeeritud kasutajad" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Eiratud kasutajad" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Pluginad" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL-i töötlejad" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Eelistused" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Vali seadistuse varundamiseks failinimi" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Ülekande statistika" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Kokku alates %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Kas lähtestada ülekandestatistika?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Kas soovid tõesti ülekandestatistika lähtestada?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Sooviloend" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Soov" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Otsi üksust" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Muuda soovi" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Sisesta soovile '%s' uus väärtus:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Kas puhastada sooviloend?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Kas soovid tõesti oma soovinimekirja tühjendada?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Failitee" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Jätka" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_aus" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Valmis / filtreeritud" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Valmis" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Peatatud" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtreeritud" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Kustutatud" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Järjekorras…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Kõik…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Eemalda järjekorras olevad allalaadimised" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Kas soovid tõesti kõik järjekorras olevad allalaadimised eemaldada?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Eemalda kõik allalaadimised" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Kas soovid tõesti kõik allalaadimised eemaldada?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Kas laadida alla %(num)i faili?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Kas soovid tõesti %(num)i faili alla laadida kasutaja %(user)s kaustast " "%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Laadi kaust alla" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Meeldib" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Ei meeldi" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Hinnang" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Üksus" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Soovitused" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Mulle see meeldib" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Mulle _see ei meeldi" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Soovitused" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Sarnased kasutajad" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Soovitused (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Sarnased kasutajad (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Privaatsõnum kasutajalt %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Leiti sooviloendi tulemusi" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Kasutajaprofiilid" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Jututoad" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Huvid" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Vestlus" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Silumine] Ühendused" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Silumine] Sõnumid" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Silumine] Ülekanded" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Silumine] Mitmesugust" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Leia…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopeeri" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Kopeeri _kõik" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Kuva _silumislogid" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Kuva _ülekandelogid" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Logi kategooriad" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Tühjenda logivaade" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Allalaadimised: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Üleslaadimised: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Jagatud kataloogide ettevalmistamine" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Jagatud kataloogide skaneerimine" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Väljumine..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Uusim sõnum" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Ruum" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Kasutajad" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Liitu ruumiga" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Lahku ruumist" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Loobu privaattoast" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Tühista ruumi liikmelisus" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Sule kõik vahelehed…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Sulge vahekaart" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Vaata vestluslogi" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Kustuta vestluslogi…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Kasutaja toimingud" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Kas soovid tõesti kõik selle kasutaja logitud sõnumid jäädavalt kustutada?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Sõnumid, mis saadeti siis, kui olid võrgust väljas" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Globaalne" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Sõbrad" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Ruumid" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Kasutaja" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Järjekorras" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Faili tüüp" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Faili nimi" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Suurus" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Kvaliteet" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Kopeeri _failitee" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopeeri _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Kopeeri kausta U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Laadi fail(id) alla" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Laadi fail(id) _kataloogi…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Laadi _kaust(ad) alla" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Laadi kaust(ad) kataloogi…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Vaata kasutaja _profiili" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Sirvi kausta" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "F_aili atribuudid" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Kopeeri otsingutermin" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Eemalda kõik tulemused" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Eemalda filtrid" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Taasta filtrid" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVAATNE] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Tulemuste filtrid [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Tulemuste filtrid" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d aktiivset filtrit" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Lisa _soov" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Eemalda _soov" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Vali kasutaja tulemused" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Kokku: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Tulemused" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Vali faili(de) jaoks sihtkaust" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Vali sihtkaust" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Järjekorras" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "Järjekorras (prioriteetne)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "Järjekorras (privilegeeritud)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Oleku saamine" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Ülekandmine" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Ühendus katkestati" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Ühenduse ajalõpp" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Kasutaja logis välja" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Tühistatud" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Kausta allalaadimise viga" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Kohaliku faili viga" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Blokeeritud" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Faili ei jagata" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Seiskamise ootel" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Faili lugemise viga" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Järjekord" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "protsenti" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Möödunud aeg" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Aega jäänud" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Ava fail" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Ava _failihalduris" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Otsing" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Eemalda kõik" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Vali kasutajate ülekanded" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Katkesta" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Valmis / tühistatud / nurjunud" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Valmis / tühistatud" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Nurjunud" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Kasutaja logis välja" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Eemalda järjekorras olevad üleslaadimised" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Kas soovid tõesti kõik järjekorras olevad üleslaadimised eemaldada?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Eemalda kõik üleslaadimised" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Kas soovid tõesti kõik üleslaadimised eemaldada?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Salvesta jagatud kataloogide loend kettale" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Laadi üles kaust ja alamkaustad…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Kopeeri _kausta tee" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Laadi kaust ja alamkaustad alla" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Laadi kaust ja alamkaustad _kataloogi…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Faili nimi" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Laadi fail(id) üles…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Laadi kaust üles…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Laadi kaust _kataloogi…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Kasutaja jagatud failide loend on tühi. Kasutaja ei jaga midagi või jagab " "faile privaatselt." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Kasutajalt ei saa jagatud faile taotleda. Kas kasutaja on võrguühenduseta, " "teil mõlemal on suletud kuulamisport või on ajutine probleem ühendusega." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Vali mitme kausta allalaadimise sihtkoht" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Laadi kaust (koos alamkaustadega) üles kasutajale" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Laadi kaust üles kasutajale" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Sisesta kasutaja nimi, kellele soovid üles laadida:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Laadi üles" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Vali failide sihtkaust" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Laadi faili(d) üles kasutajale" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Kopeeri pilt" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Salvesta pilt" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Pildi laadimine kasutajale %(user)s nurjus: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Kasutajalt ei saa teavet küsida. Teil mõlemal on suletud kuulamisport, " "kasutaja pole võrgus või on ajutine probleem ühendusega." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Eemalda _sõber" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Lisa _sõber" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Tühista kasutaja blokeerimine" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Tühista kasutaja eiramine" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Jah" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Ei" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Sisesta päevade arv." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Kingi päevi oma Soulseeki privileegidest kasutajale %(user)s (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s päeva jäänud" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Kingi privileege" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Anna privileege" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Sulge" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Jah" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Vali fail" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Vali kaust" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Vali" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Vali pilt" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Kõik pildid" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Salvesta kui…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Pole)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Sule vahekaart" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Kas sulgeda kõik vahekaardid?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Kas soovid tõesti kõik vahekaardid sulgeda?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Lugemata vahekaardid" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Kõik vahekaardid" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "_Ava suletud vahekaart uuesti" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s faili valitud" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Sirvi faile" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Lisa sõber" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Näita IP _aadressi" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Privaatsed ruumid" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Eemalda privaatruumist %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Lisa privaatruumi %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Eemalda %s operaatorirollist" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Lisa %s operaatoriks" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- vanad sõnumid ülal ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Käivitatav" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Heli" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Pilt" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Arhiiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Mitmesugust" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Dokument" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Tekst" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Viga kohandatud ikooni %(path)s laadimisel: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Peida Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Kuva Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Veerg #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Rühmitamata" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Rühmita kausta järgi" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Rühmita kasutaja järgi" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Kas soovid tõesti väljuda? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "Kasutaja %s on juba olemas ja sisestatud parool on vigane." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Teise kasutajanime või parooliga sisselogimiseks kirjuta %s." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Parool: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Uue Soulseeki konto loomiseks sisesta soovitud kasutajanimi ja parool. Kui " "sul juba on konto, sisesta olemasolevad sisselogimisandmed." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Järgmised jagatud kataloogid pole saadaval:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Kas proovida uuesti skaneerida? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Logifaili \"%(filename)s\" ei saanud kirjutada: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Logifailile %(path)s puudub juurdepääs: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Araabia Ühendemiraadid" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua ja Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albaania" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armeenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktika" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Ameerika Samoa" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Austraalia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Ahvenamaa" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Aserbaidžaan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnia ja Hertsegoviina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgia" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgaaria" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrein" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Boliivia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius ja Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasiilia" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahama" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Bouvet' saar" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Valgevene" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Kookose (Keelingi) saared" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Kongo Demokraatlik Vabariik" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Kesk-Aafrika Vabariik" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Šveits" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Elevandiluurannik" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Cooki saared" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Tšiili" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Hiina" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolumbia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kuuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Jõulusaar" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Küpros" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Tšehhi" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Saksamaa" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Taani" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominikaani Vabariik" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Alžeeria" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Eesti" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egiptus" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Lääne-Sahara" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Hispaania" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etioopia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Euroopa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Soome" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fidži" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Falklandi saared (Malviinid)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikroneesia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Fääri saared" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Prantsusmaa" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Suurbritannia" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Gruusia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Prantsuse Guajaana" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Gröönimaa" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Ekvatoriaalne Guinea" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Kreeka" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Lõuna-Georgia ja Lõuna-Sandwichi saared" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guajaana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Heardi ja McDonaldi saared" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Horvaatia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Ungari" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indoneesia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Iirimaa" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Iisrael" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Mani saar" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Briti India ookeani territoorium" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Iraak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iraan" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Itaalia" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordaania" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Jaapan" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Keenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kõrgõzstan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kambodža" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Komoorid" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts ja Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Põhja-Korea" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Lõuna-Korea" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuveit" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Kaimani saared" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kasahstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Liibanon" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Libeeria" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Leedu" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luksemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Läti" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Liibüa" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Maroko" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Marshalli saared" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Põhja-Makedoonia" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongoolia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macau" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Põhja-Mariaanid" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritaania" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldiivid" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Mehhiko" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malaisia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mosambiik" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namiibia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Uus-Kaledoonia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Norfolki saar" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Holland" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norra" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Uus-Meremaa" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omaan" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peruu" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Prantsuse Polüneesia" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Paapua Uus-Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipiinid" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Poola" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre ja Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestiina riik" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumeenia" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Venemaa" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Saudi Araabia" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Saalomoni saared" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seišellid" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudaan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Rootsi" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Saint Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Sloveenia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard ja Jan Mayeni saared" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Slovakkia" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somaalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Lõuna-Sudaan" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "São Tome ja Principe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Süüria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Turksi ja Caicose saared" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Tšaad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Prantsuse lõunaterritooriumid" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tai" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadžikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Ida-Timor" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Türkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tuneesia" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Türgi" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad ja Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tansaania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "USA kõrvalsaared" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Ühendriigid" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Usbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Püha Tool (Vatikani Linnriik)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent ja Grenadiinid" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Briti Neitsisaared" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "USA Neitsisaared" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis ja Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Jeemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Lõuna-Aafrika" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Sambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Sõnumi kõneks muutmine ebaõnnestus: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: sisesta nii oma Last.fm kasutajanimi kui ka API võti" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "'Esitamsel' viga" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Audioscrobbleriga ei saanud ühendust luua: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Audioscrobblerist ei saanud viimast lugu hankida: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: ei leidnud sobivat MPRIS-mängijat" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Leiti mitu MPRIS-mängijat: %(players)s. Kasutatakse: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automaatselt tuvastatud MPRIS-mängija: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: midagi läks valesti päringul %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: palun sisesta oma ListenBrainzi kasutajanimi" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: ListenBrainziga ei saadud ühendust: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Tundub, et sa ei kuula praegu midagi" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "ListenBrainz: Praegust lugu ei saanud ListenBrainzist tuua: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Võrgu filtrid" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Loetle saadaolevad käsud" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Ühenda serveriga" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Katkesta ühendus serveriga" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Muuda äraoleku olekut" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Halda pluginaid" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Tühjenda vestlusaken" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Ütle midagi kolmandas isikus" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Teavita esitatav lugu" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Liitu jututoaga" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Lahku jututoast" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Ütle sõnum määratud jututoas" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Ava privaatne vestlus" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Sulge privaatne vestlus" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Küsi kasutaja kliendi versiooni" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Saada kasutajale privaatsõnum" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Lisa kasutaja oma sõprade nimekirja" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Eemalda kasutaja sõprade nimekirjast" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Sirvi kasutaja faile" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Kuva kasutaja profiili teave" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Kuva IP aadress või kasutajanimi" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Blokeeri ühendused kasutajalt või IP aadressilt" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Eemalda kasutaja oma keelunimekirjast" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Vaigista sõnumid kasutajalt või IP aadressilt" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Eemalda kasutaja või IP oma ignoreerimisloendist" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Lisa jagatud kataloog" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Eemalda jagatud kataloog" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Loetle jagatud kataloogid" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Skaneeri jagatud katalooge" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Käivita globaalne failiotsing" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Otsi faile liitutud ruumidest" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Otsi kõigi sõprade faile" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Otsi kasutaja jagatud faile" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Loetletakse %(num)i saadaolevat käsku:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Loetletakse %(num)i saadaolevat käsku, mis vastavad \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Sarnaste käskude kuvamiseks kirjuta %(command)s" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Saadaolevate käskude kuvamiseks kirjuta %(command)s" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Ei liitunud ruumiga %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Ei vestle kasutajaga %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Suleti privaatvestlus kasutajaga %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Blokeeritud %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Blokeering eemaldatud %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Eiratud %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Eiramine eemaldatud %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s jagatud kataloogi nähtaval (%(num_total)s seadistatud)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Ligipääsuta kausta \"%s\" ei saa jagada" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Lisati %(group_name)s jagatud kataloog \"%(virtual_name)s\" (nõuab uut " "skaneerimist)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Jagatud kataloogi nimega \"%s\" pole" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Eemaldati jagatud kataloog \"%s\" (nõuab uuesti skaneerimist)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Pluginasüsteemi laadimine" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Pluginat %(name)s ei saa laadida. Plugina kausta nimi sisaldab kehtetuid " "märke: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Vastuolus %(interface)s käsk pluginas %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Laaditud plugin %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Pluginat %(module)s ei saa laadida\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Laadimata plugin %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Pluginat %(module)s ei saa tühjendada\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s nurjus veaga %(errortype)s: %(error)s.\n" "Jälg: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Kirjeldust pole" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Argument %s puudub" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Kehtetu argument, võimalikud valikud: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Kasutus: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Tundmatu käsk: %(command)s. Saadaolevate käskude loendi kuvamiseks kirjuta " "%(help_command)s." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Ühtegi UPnP-seadet ei leitud" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "%(protocol)s: Välise pordi %(external_port)s siire nurjus: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Väline port %(external_port)s siirati edukalt kohaliku IP " "aadressi %(ip_address)s porti %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privaatsõnum kasutajalt '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Otsi sooviloendi üksust \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Sooviloendi ooteperioodiks on määratud %s sekundit" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Kasutaja %(user)s otsib \"%(query)s\", leidis %(num)i tulemust" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Jagatud kataloogide taastamine…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Jagatud kataloogide skaneerimine…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Skaneerimine on lõpetatud: leiti %(num)s kausta" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Jagatud kataloogide uuesti skaneerimisel ilmnes tõsine viga. Kui probleem " "püsib, kustuta %(dir)s/*.dbn ja proovi uuesti. Kui see ei aita, esita " "veaaruanne koos selle failiga: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Viga faili %(path)s skaneerimisel: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Viga kausta %(path)s skaneerimisel: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Viga faili %(path)s metaandmete skaneerimisel: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Skaneerimine katkestati kättesaamatu jagatud kataloogi tõttu: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Kasutaja %(user)s sirvib sinu jagatud failide loendit" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Jagatud kausta toomine nurjus %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Jagatud kataloogide andmebaasi ei saa lugeda. Palun skaneeri oma jaod " "uuesti. Viga: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Määratud võrguliides '%s' pole saadaval" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Pordi %(port)s kuulamine ei õnnestu. Veendu, et ükski teine rakendus seda ei " "kasutaks või vali mõni muu port. Viga: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Kuulatakse pordist: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Serveriga %(host)s:%(port)s ei saa ühendust luua: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Taasühendumine serveriga %i sekundi pärast" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Ühendumine võrguga %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Ühendatud serveriga %(host)s:%(port)s, sisselogimine…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Ühendus serveriga %(host)s:%(port)s katkestatud" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Keegi logis mujal sinu Soulseeki kontole sisse" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Üleslaadimine lõpetatud: kasutaja %(user)s, IP aadress %(ip)s, fail %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Üleslaadimine katkestati, kasutaja %(user)s fail %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Üleslaadimise I/O viga: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Üleslaadimine algas: kasutaja %(user)s, IP aadress %(ip)s, fail %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Kataloogi '%(folder)s' ei saa luua, veateade: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Jagatud kataloogide laadimine kettalt nurjus: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Kasutajale '%(user)s' jagatud failide loend salvestati asukohta %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Jagatud katalooge ei saa salvestada, '%(user)s', veateade: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Pilt salvestati asukohta %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Pilti ei saa salvestada asukohta %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Kasutaja %(user)s vaatab sinu profiili" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Serveriga ei saa ühendust. Põhjus: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Ei saa ühendust" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Kasutaja %s IP aadressi ei saa tuua, kuna see kasutaja pole võrgus" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Kasutaja %(user)s IP aadress: %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseeki teadaanne" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i privilegeeritud kasutajat" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Sul pole Soulseeki privileege. Kui privileegid on aktiivsed, asetatakse sinu " "allalaadimised privileegideta kasutajate omadest järjekorras ette." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i päeva, %(hours)i tundi, %(minutes)i minutit, %(seconds)i sekundit " "Soulseeki privileege on jäänud" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Sinu parool on muudetud" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Parool muudetud" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Failiteed ei saa avada %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "URL-i ei saa avada %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Faili %(filename)s lugemisel läks midagi valesti: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Proovitakse laadida faili %s varukoopiat" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Faili %(path)s ei saa varundada: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Faili %(path)s ei saa salvestada: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Eelmist faili %(path)s ei saa taastada: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Lisa sõber…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Otsingutegevuste logi…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Otsi vestluste logist…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Saada sõnum…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Tekst-kõneks lüliti" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Jututoa käskude abi" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Logi" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Ruumi sein" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "R_uumi sein" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Loonud" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Tõlkinud" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Litsents" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Eelmine" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Tere tulemast Nicotine+ kasutajaks" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Seadista…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "Kui soovitud kasutajanimi on juba hõivatud, palutakse seda muuta." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Teiste Soulseeki partneritega ühenduse loomiseks tuleb ruuteri kuulamisport " "siirata arvutisse." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Kui kuulamisport on suletud, saab ühenduse luua ainult nende kasutajatega, " "kelle kuulamispordid on avatud." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Vajadusel vali allpool mõni muu kuulamisport. Seda saab teha ka hiljem " "eelistustes." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Laadi failid kausta" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Jaga kaustu" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseeki kasutajad saavad sinu jagatud kataloogidest alla laadida. Anna oma " "panus Soulseeki võrku, jagades oma faile ja jagades edasi seda, mida oled " "teistelt kasutajatelt alla laadinud." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Oled Nicotine+ kasutamiseks valmis!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek on krüptimata protokoll, mis ei ole mõeldud turvaliseks suhtluseks." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Soulseekile annetamine annab sulle teatud ajaks privileegid. Kui sul on " "privileegid, asetatakse sinu allalaadimised privileegideta kasutajate " "omadest järjekorras ette." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Eelmine fail" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Järgmine fail" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nimi" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Viimane kiirus" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Ekspordi…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Klaviatuuri otseteed" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Üldine" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Ühenda" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Katkesta ühendus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Skaneeri jagatud kataloogid uuesti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Kuva logipaneel" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Kinnita väljumine" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Välju" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menüüd" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Ava peamenüü" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Ava kontekstimenüü" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Vahekaardid" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Muuda peamist vahekaarti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Mine eelmisele teisesele vahekaardile" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Mine järgmisele teisesele vahekaardile" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Ava suletud sekundaarne vahekaart uuesti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Sulge sekundaarne vahekaart" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Loendid" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Kopeeri valitud lahter" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Eemalda valitud rida" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Muutmine" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Lõika" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Kleebi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Sisesta emotikon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Vali kõik" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Otsi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Leia järgmine vaste" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Leia eelmine vaste" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Failiedastused" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Jätka / proovi uuesti ülekannet" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Peata / katkesta ülekanne" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Laadi alla / laadi üles" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Salvesta loend kettale" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Värskenda" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Laienda / ahenda kõik" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Tagasi ülemkausta" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Faili otsing" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Tulemuste filtrid" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Praegune seanss" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Lõpetatud allalaadimised" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Allalaaditud" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Lõpetatud üleslaadimised" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Üleslaaditud" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Kokku" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Lähtesta…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Sooviloendi üksusi otsitakse regulaarselt korrapäraste ajavahemike järel, et " "leida haruldasi faile." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Lisa soov…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Eemalda kõik…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Eemalda kõik lõpetatud/filtreeritud allalaadimised" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Eemalda lõpetatud" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Eemalda konkreetsed allalaadimised" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Eemalda _kõik…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Isiklikud huvid" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Lisa midagi, mis sulle meeldib…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Mulle ei meeldi" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Lisa midagi, mis sulle ei meeldi…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Värskenda soovitusi" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Peamenüü" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Ruum…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Kasutajanimi…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Otsingusõna…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Otsingumustrid: sõnaga = termin, ilma sõnata = -termin, osaline sõna = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Otsingu ulatus" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Sooviloend" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Seadista otsinguid" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Sisesta otsisõna teiste Soulseeki võrgu kasutajate jagatud failide otsimiseks" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Failide rühmitamise režiim" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Seadista allalaadimised" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Teistelt kasutajatelt alla laaditud failid on siin järjekorras ning neid " "saab nõudmisel peatada ja jätkata" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Seadista üleslaadimisi" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Kasutajate katsed sinu jagatud faile alla laadida pannakse järjekorda ja " "neid hallatakse siin" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Ava loend" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "Avab eelnevalt kettale salvestatud jagatud failide kohaliku loendi" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Seadista jagatud katalooge" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Sisesta kasutaja nimi, kelle jagatud faile soovid sirvida. Saad loendi ka " "kettale salvestada ja seda hiljem uurida." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Isiklik profiil" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Seadista konto" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Sisesta kasutaja nimi, et näha tema tutvustust, teavet ja isiklikku pilti" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "Vestluse _ajalugu" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Seadista vestlused" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Sisesta kasutaja nimi, et alustada temaga privaatset tekstivestlust" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Sõnum kõigile" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Seadista eiratud kasutajaid" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Lisa kasutajad sõpradeks, et jagada nendega kindlaid kaustu ja saa " "märguandeid, kui nad on võrgus" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Liitu või loo ruum…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Liitu olemasoleva jututoaga või loo uus ruum, et vestelda teiste Soulseeki " "võrgu kasutajatega" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Seadista kasutajaprofiili" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Otsingu logi…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Ühendused" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Allalaadimine (kiirus / aktiivsed kasutajad)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Üleslaadimine (kiirus / aktiivsed kasutajad)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Otsi vestluse ajaloost…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Allalaadimise kiiruspiirangud" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Piiramatu allalaadimiskiirus" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Kasuta allalaadimise kiiruspiirangut (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Kasuta alternatiivset allalaadimise kiiruspiirangut (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Otsi ruume…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Värskenda ruume" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Kuva avaliku jututoa sõnumite voog" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Nõustu privaattubade kutsetega" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Kirjuta üks sõnum, mida teised ruumi kasutajad saavad hiljem lugeda. Uusimad " "sõnumid kuvatakse ülaosas." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Määra seina sõnum…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Otsingutulemuste filtrid" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Otsingutulemuste filtreid kasutatakse kuvatavate otsingutulemuste " "täpsustamiseks." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Igal otsingutulemuste loendil on oma filter, mille saab avada vajutades " "nuppu Vastete filtrid. Filter koosneb mitmest väljast, mis kõik rakenduvad " "mõnel väljal sisestusklahvi vajutamisel. Filtreerimine rakendub kohe saadud " "tulemustele ja ka veel saabuvatele tulemustele." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Nagu nimigi ütleb, ei saa otsingutulemuste filter sinu algset otsingut " "laiendada, vaid saab seda ainult kitsendada. Otsinguterminite laiendamiseks " "või muutmiseks tee uus otsing." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Tulemuste filtri kasutus" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Hõlma tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "Kuvatakse seda teksti sisaldavad failid, kaustad ja kasutajanimed." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Tähesuurus ei ole oluline, kuid sõnade järjekord on oluline: \"Instrumental " "Remix\" ei näita tulemusi \"Remix Instrumental\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Kasuta sümbolit |, et eraldada mitut täpset väljendit. Näide:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Välista tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Nagu ülal, kuid failid, kaustad ja kasutajanimed filtreeritakse välja, kui " "tekst klapib." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtreerib failid nende faililaiendi alusel." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Määrata võib mitu faililaiendit, mis omakorda laiendab tulemuste loendit.\n" " Näide: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Filtrit on võimalik ka ümber pöörata, tähistades hüüumärgiga faililaiendid, " "mida tulemustes ei soovi! Näiteks:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Faili suurus" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtreerib faile nende suuruse alusel." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Vaikimisi kasutatakse ühikuks baite (B) ja väärtusest suuremad või sellega " "võrdsed (>=) failid loetakse vasteteks." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Lisa b, k, m või g (alternatiivselt kib, mib või gib), et määrata ühikud " "baitidena, kibibaitidena, mebibaitidena või gibibaitidena:\n" " 20m, et kuvada faile, mis on suuremad kui 20 MiB (mebibaiti)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Lisa = väärtusele, et määrata täpne vaste:\n" " =1024 vastab ainult failidele, mis on 1 KiB (kibibait)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Lisa ! väärtusele, et välistada kindla suurusega failid:\n" " !30,5m 30,5 MiB (mebibaiti) failide peitmiseks." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Lisa < või >, et leida antud väärtusest väiksemaid/suuremaid faile. Ulatuse " "lisamiseks kasuta iga tingimuse vahel tühikut:\n" " >10,5m <1g, et kuvada faile, mis on suuremad kui 10,5 MiB, kuid " "väiksemad kui 1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Üldtuntud variante kb, mb ja gb saab kasutada ka kilobaitide, megabaitide ja " "gigabaitide jaoks." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtreerib failid nende bitikiiruse alusel." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Väärtused tuleb sisestada ainult numbritena. Ühik on alati Kb/s (kilobitti " "sekundis)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Nagu 'faili suurus' (ülal), saab kasutada operaatoreid =, !, <, >, <= või >= " "ning määrata erinevaid tingimusi, näiteks kuvada faile bitikiirusega " "vähemalt 256 Kbps, kuid mitte rohkem kui 1411 Kbps:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtreerib faile nende kestuse alusel." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Vaikimisi loetakse vasteteks failid, mis on pikemad või sellega võrdsed " "(>=), välja arvatud juhul, kui kasutatakse operaatorit (=, !, < või >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Sisesta töötlemata väärtus sekundites või kasuta ajavorminguid MM:SS ja HH:" "MM:SS:\n" " =53 kuvab faile, mis on umbes 53 sekundi pikkused.\n" " >5:30, et kuvada vähemalt 5 ja poole minuti pikkusi faile.\n" " <5:30:00 kuvab alla 5 ja poole tunni pikkuseid faile." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Tingimusi võib määrata mitu:\n" " >6:00 <12:00 kuvamaks faile kestusega 6–12 minutit.\n" " !9:54 !8:43 !7:32 teatud kindlate failide peitmiseks tulemuste hulgast.\n" " =5:34 =4:23 =3:05 kindla kestusega failide hõlmamiseks." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtreerib failid kasutajate geograafilise asukoha alusel vastavalt ISO " "3166-2 määratletud riigikoodidele:\n" " USA kuvab tulemusi ainult kasutajatelt, kelle IP aadress on Ameerika " "Ühendriikides.\n" " !GB peidab tulemused, mis pärinevad Suurbritannia kasutajatelt." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Koma või tühikuga saab määrata mitu riiki." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Vaba pesa" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Kuva tulemused ainult nendelt kasutajatelt, kellel on vähemalt üks " "üleslaadimispesa vaba, st failid, mis on kohe saadaval." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Üleslaadimiskiiruse piirangud" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Piiramatu üleslaadimiskiirus" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Kasuta üleslaadimiskiiruse piirangut (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Kasuta alternatiivset üleslaadimiskiiruse piirangut (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Privaatvestluse käsu abi" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Hõlma tekst…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Kuva tulemused, mille failiteed sisaldavad määratud teksti. Määrata saab " "mitu fraasi ja sõna, nt. täpne fraas|muusika|termin|täpne fraas kaks" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Välista tekst…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Välista tulemused, mille failiteed sisaldavad määratud teksti. Määrata saab " "mitu fraasi ja sõna, nt. täpne fraas|muusika|termin|täpne fraas kaks" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Failitüüp…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Failitüüp, nt. flac|wav|ape või !mp3|!m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Faili suurus…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Faili suurus, nt. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitikiirus…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bitikiirus, nt. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Kestus…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Kestus, nt. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Riigikood…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Riigikood, nt. US|GB|ES või !DE|!GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Keela kasutajatel juurdepääs oma jagatud failidele kasutajanime, IP aadressi " "või riigi alusel." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Blokeeritavad riigikoodid (komadega eraldatud):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Koodid peavad olema ISO 3166-2 formaadis." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Kasuta kohandatud geoblokeeringu sõnumit:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Kasuta kohandatud blokeerimise sõnumit:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP aadressid" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Luba õigekirjakontroll" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Taasta käivitamisel varem avatud privaatsed vestlused" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Luba CTCP-laadsed privaatsõnumi vastused (kliendiversioon)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Uusimate privaatsete vestlussõnumite kuvamise arv:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Hiljutiste vestlussõnumite kuvamise arv:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Vestluse automaatne täiendamine" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Luba tabeldusklahviga täiendamine" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Luba täiendamise rippmenüü" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Rippmenüü kuvamiseks nõutav väikseim tähemärkide arv:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Lubatud vestluse täiendamised:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Sõprade nimed" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Jututoa kasutajanimed" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Ruumide nimed" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Käsud" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Ajatemplid" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Privaatvestluse vorming:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Vaikimisi" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Jututoa vorming:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Tekst-kõneks" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Luba tekst-kõneks" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Tekst-kõneks käsk:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Privaatvestluse sõnum:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Jututoa sõnum:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Tsenseeri" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Luba tekstimustrite tsenseerimine" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Automaatne asendamine" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Luba sõnade automaatne asendamine" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Eemalda lõpetatud/filtreeritud allalaadimised edastusloendist automaatselt" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Salvesta lõpetatud allalaadimised kasutajanimede alamkaustadesse" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Topeltklõpsu toiming allalaadimistele:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Luba neil kasutajatel endale kõiki faile saata:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Kaustad" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Lõpetatud allalaadimised:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Poolikud allalaadimised:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Vastuvõetud failid:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Sündmused" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "Käivita käsk pärast faili allalaadimist ($ failitee jaoks):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "Käivita käsk pärast kausta allalaadimiset ($ kaustatee jaoks):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Allalaadimisfiltrid" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Luba allalaadimisfiltrid" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Lisa" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Laadi vaikeväärtused" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Kinnita filtreid" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Kinnitamata" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Eira kasutajate vestlussõnumeid ja otsingutulemusi kasutajanime või IP " "aadressi alusel." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Logi jututubasid vaikimisi" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Logi privaatvestlust vaikimisi" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Logi ülekanded faili" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Logi silumissõnumid faili" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Logi ajatempli vorming:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Kaustade asukohad" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Jututoa logide kaust:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Privaatvestluse logide kaust:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Ülekandelogide kaust:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Silumislogide kaust:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Logi olemasolevale Soulseeki kontole sisse või loo uus. Kasutajanimed on " "tõusutundlikud ja ainulaadsed." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Avalik IP aadress:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Kuulamisport (nõuab taaskäivitamist):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Eemalolek" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Mitteaktiivsuse minutid enne lahkumist (0 keelamiseks):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Automaatvastuse sõnum eemal olles:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Kuulamispordi automaatne siire (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Käivitamisel ühenda automaatselt serveriga" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek-server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Seob ühendused kindla võrguliidesega, kasulik nt. veendumaks, et alati " "kasutatakse VPN-i. Mis tahes saadaoleva liidese kasutamiseks jäta tühjaks. " "Muuda seda väärtust ainult siis, kui tead, mida teed." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Võrguliides (nõuab taaskäivitamist):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "'Esitamisel' võimaldab kuvada meediamängijas esitatav lugu, kasutades " "vestluses käsku /now." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Muu" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "'Esitamisel' vorming" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "'Esitamisel' sõnumi vorming:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Testi seadistust" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Luba pluginad" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Lisa pluginaid" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Lisa pluginaid" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Seaded" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Seaded" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versioon:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Looja:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Luba otsinguajalugu" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Kõigile nähtavaks tehtud privaatselt jagatud failidele lisatakse eesliide " "„[PRIVAATNE]” ja neid ei saa alla laadida enne, kui üleslaadija on andnud " "selgesõnalise loa. Küsi neilt sõbralikult." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Kuva privaatselt jagatud failid otsingutulemustes" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Piira tulemuste arvu otsingu kohta:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Luba otsingutulemuste filtrid vaikimisi" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Hõlma:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Välista:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Failitüüp:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Suurus:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitikiirus:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Kestus:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Riigi kood:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Kuva tulemused ainult nendelt kasutajatelt, kellel on vaba üleslaadimispesa." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Tulemuste filtri abi" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Võrguotsingud" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Vasta teiste kasutajate otsingupäringutele" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Sellest tähemärkide arvust lühemaid otsinguid eiratakse:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Maksimaalne otsingu kohta saadetav tulemuste arv:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Puhasta otsingu ajalugu" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Puhasta filtri ajalugu" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Skaneerib käivitamisel automaatselt uuesti sinu jagatud kaustade sisu. Kui " "see on keelatud, värskendatakse su jagamisi ainult siis, kui käivitad " "skaneerimise käsitsi." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Skaneeri jagatud katalooge käivitamisel" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Kõigile nähtav:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Sõbra jagatud kataloogid" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Usaldusväärsed jagatud kataloogid" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Eemalda lõpetatud/tühistatud üleslaadimised ülekannete loendist automaatselt" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Topeltklõpsu toiming üleslaadimistele:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Piira üleslaadimise kiirust:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Ülekande kohta" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Kõik ülekanded" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Üleslaadimispesad" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Tsükliline: failid laaditakse tsükliliselt üles järjekorras ootavatele " "kasutajatele.\n" "Esimesena sisse, esimesena välja: failid laaditakse üles nende järjekorda " "pandud järjekorras." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Üleslaadimiste järjekorra tüüp:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Jaota üleslaadimispesad, kuni kogukiirus saavutab (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Fikseeritud üleslaadimispesade arv:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Eelista kõiki sõpru" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Järjekorra piirangud" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Maksimaalne järjekorda pandud failide arv kasutaja kohta:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Maksimaalne järjekorda pandud failide kogusuurus kasutaja kohta (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Piirangud ei kehti sõpradele" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "$ instatntsid asendatakse URL-iga. Süsteemi vaikerakendusi kasutatakse " "juhtudel, kui protokoll pole seadistatud." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Failihalduri käsk:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Lähtesta pilt" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Enesetutvustus" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Lisa asju, mida soovid kõiki nägevat, näiteks lühike tutvustus, kasulikud " "näpunäited või juhised oma jagamiste allalaadimiseks." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Pilt:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Tühjenda" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Eelista tumedat režiimi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Kasuta päiseriba" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Kuva salveikoon" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimeeri käivitamisel salve" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Keel (nõuab taaskäivitamist):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Akna sulgemisel:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Märguanded" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Luba märguannete heli" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Kuva märguanne privaatvestluste ja mainimiste kohta akna pealkirjas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Kuva märguanded:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Failide allalaadimine on lõpetatud" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Kaustade allalaadimine on lõpetatud" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Privaatsõnumid" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Jututoa sõnumid" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Jututuba mainib" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Leiti sooviloendi tulemusi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Taasta käivitamisel varem aktiivne põhikaart" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Teiseste vahekaartide sulgemisnupud" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Tavalise vahekaardi sildi värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Muutunud vahekaardi sildi värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Esiletõstetud vahekaardi sildi värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Sõbraloendi asukoht:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Nähtavad põhikaardid:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Kaardiriba asukohad:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Põhikaardid" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Kuva pööratud failiteed (vajab taaskäivitamist)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Kuva täpsed failisuurused (nõuab taaskäivitamist)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Loendi teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Järjekorras oleva otsingutulemuste teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Luba värvilised kasutajanimed" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Vestluse kasutajanime tekst:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Kaugteksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Kohaliku teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Käsu väljundi teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me toimingu teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Esiletõstetud teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL-lingi teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Kasutaja olekud" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Võrgus värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Eemal värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Võrgust väljas värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Tekstikirjed" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Tekstikirje tausta värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Tekstikirje teksti värv:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Fondid" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Globaalne font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Loendi font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Tekstivaate font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Vestluse font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Ülekande font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Otsingu font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Sirvimise font:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikoonid" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Ikooniteema kaust:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Katkesta kasutaja(d)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Blokeeri kasutaja(d)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Eemalda kõik lõpetatud/tühistatud üleslaadimised" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Sõnum kõigile" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Eemalda konkreetsed üleslaadimised" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Salvesta jagatud kataloogide loend kettale" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Värskenda faile" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Muuda profiili" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Jagatud failid" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Jagatud kaustad" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Järjekorras üleslaadimised" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Vabad üleslaadimispesad" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Üleslaadimiskiirus" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Muuda huvisid" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Kingi privileege…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Värskenda profiili" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nicotine+ käsud" #~ msgid "_Clear" #~ msgstr "_Tühjenda" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Ei saa salvestada %(filename)s: %(error)s" #, fuzzy #~ msgid "Nicotine+" #~ msgstr "Nikotiini+ meeskond" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Usaldusväärsed sõbrad" #, fuzzy #~ msgid "Quit program" #~ msgstr "Lõpeta programm" #~ msgid "Username:" #~ msgstr "Kasutajanimi:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Soovitused üksuse kohta" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Eemalda üksus" #, fuzzy #~ msgid "_Remove" #~ msgstr "_Eemalda" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Saada sõnum" #, fuzzy #~ msgid "Send Message" #~ msgstr "Saada sõnum" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Vaata kasutajaprofiili" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Käivitage sõnumside" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Sisestage selle kasutaja nimi, kellele soovite sõnumi saata:" #, fuzzy #~ msgid "_Message" #~ msgstr "_Sõnum kõigile" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Sisestage selle kasutaja nimi, kelle jagamisi soovite näha:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Vaata kasutajaprofiili" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Sisestage selle kasutaja nimi, kelle jagamisi soovite näha:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Sirvi faile" #, fuzzy #~ msgid "Password" #~ msgstr "Parool" #, fuzzy #~ msgid "Download File" #~ msgstr "Laadi fail alla" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Värskenda sarnaseid kasutajaid" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Sisestage selle inimese kasutajanimi, kelle faile soovite näha" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Sisestage selle isiku kasutajanimi, kelle teavet soovite näha" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Sisestage selle inimese kasutajanimi, kellele soovite sõnumi saata" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Sisestage selle inimese kasutajanimi, kelle soovite oma sõprade loendisse " #~ "lisada" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Sisestage ruumi nimi, millega soovite liituda. Kui ruumi pole, luuakse " #~ "see." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Kuva logiajaloo paan" #~ msgid "Save _Picture" #~ msgstr "Salvesta _Pilt" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Otsingupäringule \"%(query)s\" filtreeriti välja vale otsingutulemus " #~ "%(filepath)s kasutajalt %(user)s" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Teatud kliendid ei saada otsingutulemusi, kui kaasatud on erimärgid." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Eemaldage otsinguterminitest erimärgid" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Probleem '%s' käivitamisel" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Probleem käivitamisel kaustas: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Keelatud laiendus" #, fuzzy #~ msgid "Too many files" #~ msgstr "Liiga palju faile" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Liiga palju megabaite" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Server ei luba praegu sooviloendiotsinguid teha" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Failiedastuskiirus sõltub kasutajatest, kellelt alla laadite. Teatud " #~ "kasutajad on kiiremad, teised aga aeglased." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Alustatud allalaadimist" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Alustatud üleslaadimist" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Asendage tsenseeritud tähed järgmistega:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Tsenseeritud mustrid" #, fuzzy #~ msgid "Replacements" #~ msgstr "Asendused" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Kui Soulseeki võrgu kasutaja otsib teie aktsiatest olemasolevat faili, " #~ "saadetakse otsingutulemused kasutajale." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Saada mängijale" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Saada _Playerile" #~ msgid "_Open in File Manager" #~ msgstr "_Ava failihalduris" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Meediumipleieri käsk:" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Allalaadimist ei saa salvestada kasutajanime alamkausta, naaseb " #~ "allalaadimise vaikekausta. Viga: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Ainult sõbrale" #~ msgid "Share with buddies only" #~ msgstr "Jaga ainult sõpradega" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Lõpeta…" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Seadista jagamised" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Kaugfaili viga" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "Ei leia %(option1)s ega %(option2)s, installige kumbki." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s kausta leiti enne uuesti skannimist, taastamist…" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Järgmiste andmebaaside töötlemine ebaõnnestus: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Jagatud failide arvu serverisse saatmine nurjus: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Välju / Käita taustal" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Kuulamispordi ulatus:" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Võrgu liides:" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Piirake ainult sõpradele mõeldud jagamist usaldusväärsete sõpradega" #~ msgid "Shared" #~ msgstr "Jagatud" #~ msgid "Search Files and Folders" #~ msgstr "Otsige faile ja kaustasid" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Aegunud" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Versioon %(version)s on saadaval, välja antud %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Kasutate %s arendusversiooni" #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Kasutate %s uusimat versiooni" #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Kontrollige _Viimast versiooni" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Eelista Dark _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Kuva _Logiajaloo paan" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Sõprade nimekiri eraldi vahekaardil" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Sõprade nimekiri on alati nähtav" #, fuzzy #~ msgid "_View" #~ msgstr "_Vaata" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Ava logikaust" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Kausta(de) sirvimine" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibaiti (2^10 baiti) sekundis." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Kasutajatele saadetud geograafilise blokeerimise põhjusena." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Saadeti kasutajatele keelustamise põhjusena." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Kui suhtlete rakendusega eemaloleku ajal, määratakse olekuks võrguühendus." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Iga kasutaja võib järjekorda seada maksimaalselt kas:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibaiti (2^20 baiti)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiB" #, fuzzy #~ msgid "files" #~ msgstr "failid" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Järjekorra käitumine" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Kui see on keelatud, määratakse pesad automaatselt saadaolevate " #~ "ribalaiuse piirangute alusel." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Pange tähele, et operatsioonisüsteemi teema võib olla ülimuslik." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Vaikimisi aktiveeritakse käivitamisel vasakpoolseim vahekaart" #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Välju %(program)s %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "lõpetatud" #~ msgid "done" #~ msgstr "valmis" #~ msgid "Remember choice" #~ msgstr "Pea meeles valik" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Tundmatu võrguliides" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Kuulamisport pole saadaval" #, fuzzy, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Server näib olevat maas või ei reageeri, proovib uuesti %i sekundi pärast" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ kasutab teiste kasutajatega ühenduse loomiseks peer-to-peer " #~ "võrku. Selleks, et kasutajad saaksid teiega probleemideta ühendust luua, " #~ "on avatud kuulamisport ülioluline." #~ msgid "--- disconnected ---" #~ msgstr "--- lahti ühendatud ---" #~ msgid "--- reconnected ---" #~ msgstr "--- uuesti ühendatud ---" #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Maa" #~ msgid "Czech Republic" #~ msgstr "Tšehhi Vabariik" #, fuzzy #~ msgid "Turkey" #~ msgstr "Türgi" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Ühendatud ruumid " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Liitu ruumi automaatselt" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Süntaks: tähed ei ole tõstutundlikud. Kui põgenemine on keelatud, " #~ "toetatakse kõiki Pythoni regulaaravaldisi. Lihtsate filtrite puhul on " #~ "soovitatav hoida põgenemine lubatud." #, fuzzy #~ msgid "Escaped" #~ msgstr "Põgenes" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Põgenemisfilter" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Sisestage tekstimuster ja millega see asendada" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Määratud pordivahemikus %s–%s pole kuulamisporti saadaval" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Valige vahemik, millest kuulamisport valida. Kasutatakse esimest " #~ "saadaolevat porti vahemikus." #, fuzzy #~ msgid "First Port" #~ msgstr "Esimene sadam" #, fuzzy #~ msgid "to" #~ msgstr "juurde" #, fuzzy #~ msgid "Last Port" #~ msgstr "Viimane sadam" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Ei leia %s või uuemat, installige see." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Gtk-moodulit ei saa importida. Python-gobjecti mooduli halb installimine?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Kasutate GTK %(major_version)s toetamata versiooni. Peaksite installima " #~ "GTK %(complete_version)s või uuema." #~ msgid "User Info" #~ msgstr "Kasutajateave" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Suum 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Suurenda" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Suumi välja" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Kuva kasutaja I_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Taotlege kasutajateavet" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Taotlege kasutaja aktsiaid" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Taotlege kasutajateavet" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Sisestage selle kasutaja nimi, kelle teavet soovite näha:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Taotle aktsiate loendit" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Soulseeki kehtetu URL: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Soulseeki võrgu kasutajad saavad teie jagatud kaustadest faile alla " #~ "laadida. Failide jagamine on Soulseeki võrgu tervise jaoks ülioluline." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Uuenda infot" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Jututoa käsud" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'tuba'" #, fuzzy #~ msgid "Join room 'room'" #~ msgstr "Liitu ruumiga \"tuba\"" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/mina 'sõnum'" #, fuzzy #~ msgid "Display the Now Playing script's output" #~ msgstr "Kuvage praegu mängitava skripti väljund" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'kasutaja'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Lisage kasutaja \"kasutaja\" oma sõprade loendisse" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'kasutaja'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Eemaldage kasutaja \"kasutaja\" oma sõprade loendist" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ban 'kasutaja'" #, fuzzy #~ msgid "Add user 'user' to your ban list" #~ msgstr "Lisage kasutaja \"kasutaja\" oma keelunimekirja" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban 'kasutaja'" #, fuzzy #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Eemaldage kasutaja \"kasutaja\" oma keelunimekirjast" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'kasutaja'" #, fuzzy #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Lisa kasutaja 'kasutaja' oma ignoreerimisloendisse" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/ unignore 'kasutaja'" #, fuzzy #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Eemalda kasutaja 'kasutaja' oma ignoreerimisloendist" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'kasutaja'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'kasutaja'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Küsi teavet kasutaja kohta" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip 'kasutaja'" #, fuzzy #~ msgid "Show IP for user 'user'" #~ msgstr "Kuva kasutaja 'kasutaja' IP" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'päring'" #, fuzzy #~ msgid "Start a new search for 'query'" #~ msgstr "Alusta uut otsingut päringule" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'päring'" #, fuzzy #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Otsi ühendatud tubadest päringule" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'päring'" #, fuzzy #~ msgid "Search the buddy list for 'query'" #~ msgstr "Otsi sõprade loendist päringut" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'kasutaja' 'päring'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'kasutaja' 'sõnum'" #, fuzzy #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Saada sõnum \"sõnum\" kasutajale \"kasutaja\"" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm 'kasutaja'" #, fuzzy #~ msgid "Open private chat window for user 'user'" #~ msgstr "Ava privaatne vestlusaken kasutaja 'kasutaja' jaoks" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Privaatvestluse käsud" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Lisage kasutaja oma keelunimekirja" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Lisage kasutaja oma ignoreerimisloendisse" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Sirvige kasutaja aktsiaid" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Järjekorda mittetundlikuks filtreerimiseks, aga ka mitme täpse fraasi " #~ "filtreerimiseks saab fraaside ja sõnade eraldamiseks kasutada " #~ "vertikaalseid ribasid.\n" #~ " Näide: Remix|Instrumental|Dub Mix" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "Mittehelifailide välistamiseks kasutage kestuse filtris !0." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtreerib faile kasutaja geograafilise asukoha alusel." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Täielike tulemuste uuesti vaatamiseks tühjendage lihtsalt kõik aktiivsed " #~ "filtrid." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Vaadake eelistusi otsingutulemuste filtri vaikevalikute määramiseks." #, fuzzy #~ msgid "File size" #~ msgstr "Faili suurus" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Tühjendage aktiivsed filtrid" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Tabeldusklahvi vajutades saate läbi lõpetamiste vahel liikuda" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Peida rippmenüü, kui sobib ainult üks" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Laadige kaustad alla vastupidises tähtede ja numbrite järjekorras" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Mittetäielik failikaust:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Laadi alla kaust:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Salvestage sõprade üleslaadimised:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Kasutage kuulamispordi edastamiseks UPnP-d" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Jagage kaustu iga Soulseeki kasutaja või sõpradega, võimaldades sisu otse " #~ "oma seadmest alla laadida. Peidetud faile ei jagata kunagi." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Teisesed vahelehed" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Jututoa vahekaardiriba asukoht:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Privaatse vestluse vahekaardiriba asukoht:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Otsingu vahekaardi riba asukoht:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Kasutajateabe vahekaardi riba asukoht:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Kasutaja sirvimise vaheleheriba asukoht:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Vahekaardi sildid" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Värskenda teavet" nicotine-plus-3.3.4/po/eu.po000066400000000000000000007443611461625273200157300ustar00rootroot00000000000000# Copyright (C) 2006-2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-07-25 18:31+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.0-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 #, fuzzy msgid "Soulseek Client" msgstr "Soulseek Bezeroa" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 #, fuzzy msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Bezero grafikoa Soulseek peer-to-peer sarerako" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek; Nicotine; partekatzea; musika; P2P; parekidea; GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Bezero grafikoa Soulseek peer-to-peer sarerako" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 #, fuzzy msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ Soulseek peer-to-peer sareko bezero grafikoa da." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ Soulseek bezero ofizialaren iturri irekiko (doako eta irekia) " "(FOSS) alternatiba izan nahi du, funtzionalitate osagarria eskainiz Soulseek " "protokoloarekin gaurkotasuna mantenduz." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Bilatu Fitxategiak" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Deskargak" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Arakatu akzioak" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Txata pribatua" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 #, fuzzy msgid "Nicotine+ Team" msgstr "Nicotine+ Taldea" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Exekutatuta: %s" #: pynicotine/__init__.py:56 #, fuzzy msgid "show this help message and exit" msgstr "erakutsi laguntza mezu hau eta irten" #: pynicotine/__init__.py:59 #, fuzzy msgid "file" msgstr "fitxategia" #: pynicotine/__init__.py:60 #, fuzzy msgid "use non-default configuration file" msgstr "erabili lehenetsiak ez diren konfigurazio fitxategia" #: pynicotine/__init__.py:63 #, fuzzy msgid "dir" msgstr "zuz" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "erabili ez-lehenetsitako direktorioa pluginetarako" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "programa hasi leihoa erakutsi gabe" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "lotu sockets emandako IParekin (VPNrako erabilgarria)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "ataka" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "entzun emandako portuan" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "berriro eskaneatu partekatutako fitxategiak" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "abiarazi programa bururik gabeko moduan (GUIrik gabe)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "bistaratu bertsioa eta irten" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Onartzen ez den Python bertsioa erabiltzen ari zara (%(old_version)s).\n" "Python %(min_version)s edo berriagoa instalatu beharko zenuke." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Ezin izan dira akzioak eskaneatu. Itxi Nicotine+ beste instantzia batzuk eta " "saiatu berriro." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "%s erabiltzailea kanpoan da" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "%s erabiltzailea linean dago" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "%s erabiltzailea lineaz kanpo dago" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Lagunen Zerrenda" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Gela pribatu batera gehitu zaituzte: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "\"%(user)s\" erabiltzailearen txat-mezua \"%(room)s\" gelan: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" "Ezin da '%(path)s' direktorioa sortu, jakinarazitako errorea: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Errorea konfigurazioaren babeskopia egitean: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Konfigurazioaren babeskopia egin da: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Nicotine+ %(version)s, %(status)s uztea …" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Nicotine+ %(version)s, %(status)s uztea …" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "amaitzen" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "aplikazioaren itxiera" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Nicotine+ %(version)s, %(status)s uztea …" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "" "Erabiltzaile izena eta pasahitza zehaztu behar dituzu konektatu aurretik …" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Errorea: Deskarga Iragazkiak huts egin du! Egiaztatu iragazkiak. Arrazoia: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Deskarga amaituta: %(num)d erabiltzailea, %(error)s fitxategia " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s deskargatuta %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Deskargatutako fitxategia" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Exekutatuta: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Ezin izan da '%(command)s' exekutatzean: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s deskargatu da %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Deskargatutako karpeta" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Karpeta honetan exekutatuta: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Ezin izan da '%(tempfile)s' '%(file)s' ra eraman: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Deskargatu karpetaren errorea" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Deskarga amaituta: %(user)s erabiltzailea, %(file)s fitxategia" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "" "Deskarga bertan behera utzi da, %(user)s erabiltzailea, %(file)s fitxategia" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Deskargatu I / O errorea: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" "Ezin da blokeo esklusiboa lortu fitxategiaren gainean - S/I errorea: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Ezin da gorde %(path)s fitxategia: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Deskarga abiarazita: %(user)s erabiltzailea, %(file)s fitxategia" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Ezin da aurkitu %s, instalatu mesedez." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Ez dago ingurune grafikorik erabilgarri, bururik gabeko modua erabiliz (ez " "GUI)." #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Konektatu" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Deskonektatu" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "Soulseek _Pribilegioak" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Lehentasunak" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Quit" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Arakatu partekatze publikoak" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Arakatu Buddy Shares" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Arakatu Buddy Shares" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "_Eskaneatu berriro partekatzeak" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Konfiguratu partekatzeak" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_ Teklatuaren lasterbideak" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Konfigurazio laguntzailea" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "_Transferentzia Estatistikak" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Salatu _Bug" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Hobetu itzulpenak" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "_Nicotine+ buruz" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fitxategia" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Azioak" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Laguntza" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Arakatu akzioak" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Ezin da erakutsi jakinarazpen laster-leihoa: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Ziur Nicotine+ -tik irten nahi duzula?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Ziur Nicotine+ -tik irten nahi duzula?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "Ez" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Exekutatu atzeko planoan" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Utzi Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Akzioak ez daude erabilgarri" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Egiaztatu kanpoko diskoak muntatuta daudela eta karpeta-baimenak zuzenak " "direla." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Dan bertan behera utzi" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "Saiatu be_rriro" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Behartu berriro eskaneatzea" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "pasahitz okerra" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "%s erabiltzailea lehendik dago eta sartu duzun pasahitza baliogabea da. " "Mesedez, aukeratu beste erabiltzaile izena saioa hasten duzun lehen aldia " "bada." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Aldatu saioa hasteko xehetasunak" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Erabiltzaileak deskargatzen dituen mezua" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "" "Bidali mezu pribatua zuregandik deskargatzen ari diren erabiltzaile guztiei:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Bidali Mezua" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Mezuak" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Bidali mezu pribatua lineako lagun guztiei:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Aukeratu Gordetako akzioen zerrenda fitxategia" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Akats kritikoa" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ -k errore larria izan du eta irten behar du. Mesedez, kopiatu mezu " "hau eta sartu akatsen txosten batean:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Utzi Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Kopiatu eta jakinarazi akatsa" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Egoera" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 #, fuzzy msgid "Country" msgstr "Herrialdea" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Erabiltzailea" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Abiadura" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Fitxategiak" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Konfiantzazkoa" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Jakinarazi" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Lehentasunezkoa" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Azkenekoz ikusia" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Ohar" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Gehitu erabiltzailea _oharra…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Kendu" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Inoiz ikusi gabea" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Gehitu erabiltzailearen oharra" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Gehitu %s erabiltzaileari buruzko ohar bat:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Gehitu …" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Gela berria sortu nahi duzu?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Ziur \"%s\" gela berria sortu nahi duzula?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Gela pribatua bihurtu" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Bilatu erabiltzailearen fitxategiak" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Aurkitu…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopiatu" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopiatu dena" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Garbitu Jarduera Ikuspegia" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "_Utzi Gelatik" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Kopiatu Esteka" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Ikusi gelaren erregistroa" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Ezabatu gelaren erregistroa …" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Garbitu mezuen ikuspegia" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s gelara sartu da" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s-(e)k aipatu zaitu %(room)s gelan" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(user)s-ren mezua %(room)s gelan" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "%(user)s-ren mezua %(room)s gelan" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s-(e)k gela utzi du" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s kanpoan da" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s itzuli da" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Saiatutako mezuak ezabatu nahi dituzu?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Ziur zaude gela honetarako erregistratutako mezu guztiak behin betiko " "ezabatu nahi dituzula?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Djibuti" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Exekutatuta: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Errorea azken bertsioa eskuratzean" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Eguneratuta" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Egiaztatu _azken bertsioa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "_Konfigurazio laguntzailea" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Karpeta birtuala" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Karpeta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Amaituta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Hurrengoa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Gehitu karpeta partekatua" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Karpeta partekatuak" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Idatzi '%(dir)s' ren izen birtual berria:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Edizioa" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Fitxategiaren propietateak" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Fitxategiaren propietateak (%(total)i -ren %(num)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Fitxategiaren propietateak (%(total)i -ren %(num)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Aplikatu" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Gehitu …" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Editatu…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "Ezarpenak" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Item" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Zaletasunak" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 #, fuzzy msgid "Unknown" msgstr "Ezezaguna" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Egiaztatu portuaren egoera" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, ataka %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Pasahitz aldaketa ukatu da" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Idatzi pasahitz berria Soulseek konturako:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Une honetan Soulseek sarean amaitu duzu saioa. Lehendik dagoen Soulseek " "kontu baten pasahitza aldatu nahi baduzu, kontu horretan saioa hasi behar " "duzu." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Idatzi pasahitza saioa hastean erabiltzeko:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Aldatu pasahitza" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Pasahitz aldaketa ukatu da" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Inori" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Denei" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Lagunak" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Lagun fidagarriak" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Ezer ez" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Hurrengo fitxategia" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "_Ireki Fitxategi-kudeatzailean" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Bilatu" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Pausa" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Jarraitu" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "_Arakatu karpetak" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxia: maiuskulak eta minuskulak bereizten ditu. Gaituta badago, " "Python-en adierazpen erregularrak erabil daitezke, bestela komodin * bat-" "etortzeak soilik onartzen dira." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Iragazkia" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Gehitu deskarga-iragazkia" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Deskarga iragazki berria idatzi:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Gaitu adierazpen erregularrak" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Editatu deskarga-iragazkia" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Aldatu ondorengo deskarga-iragazkia:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d-ek huts egin du! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Iragazkiak arrakastatsuak dira" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Abortatu" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Saiatu berriro" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Lehena Sartzen, Lehena Ateratzen (FIFO)" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Erabiltzaile izena" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Blokeatu IP helbidea" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ez ikusi egin Erabiltzaileari" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Idatzi baztertu nahi duzun erabiltzailearen izena:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Ez ikusi IP helbidea" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Sartu alde batera utzi nahi duzun IP helbide bat:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* komodina da" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Debekatu erabiltzailea" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Sartu debekatu nahi duzun erabiltzailearen izena:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Blokeatu IP helbidea" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Sartu blokeatu nahi duzun IP helbidea:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Eredua" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Ordezkapena" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Zentsore eredua" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Idatzi zentsuratu nahi duzun eredua. Gehitu tarteak ereduaren inguruan " "hitzetako kateekin bat etorri nahi ez baduzu (baliteke lerroen hasieran eta " "amaieran huts egitea)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Zentsuratutako ereduak" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Ordezkapena" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Sartu testu-eredua eta ordezkoa, hurrenez hurren:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Ordezkapena" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Lehenetsia" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Erakutsi berrespen-koadroa" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Korrika bigarren planoan" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "ausarta" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "etzana" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "azpimarratu" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normala" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Mezuak" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Lagunen zerrenda txat geletan" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Gora" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Behean" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Ezkerra" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Eskubidea" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Linean" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Kanpoan" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Lineaz kanpo" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Pasahitz aldaketa ukatu da" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Nabarmendu" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Leihoa" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Konektatuta (erretilua)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Kanpoan (erretilua)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Lineaz kanpo" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Mezua (erretilua)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokoloa" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Agindua:" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "URL kudeatzaileak" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Sartu URL eskudatzailearen protokoloa eta komandoa, hurrenez hurren:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Iruzkinak editatu" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Idatzi '%(dir)s' ren izen birtual berria:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Erabiltzaile izena;APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Bezeroaren izena (adibidez, amarok, ausarta, exaile) edo hutsik dago " "automatikoki:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Erabiltzaile izena:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Agindua:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Izenburua" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Orain erreproduzitzen (normalean \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Iraupena" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate-a" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "Iruzkina" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Albuma" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Track zenbakia" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "Urtea" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Fitxategi izena (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Gaituta" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Pluginak" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Ez da Plugin hautatu" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Sarea" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Erabiltzaile Interfazea" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Partekatutakoak" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Igoerak" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Bilaketak" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "_Arakatu Erabiltzailea" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Txatak" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Orain jolasten" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Erregistroak" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Erabiltzaile debekatuak" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Ez ikusitako erabiltzaileak" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Pluginak" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "URL kudeatzaileak" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Lehentasunak" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Aukeratu fitxategi izena konfiguratzeko babeskopia egiteko" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Transferentzien Estatistikak" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Guztira %(date)s geroztik" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Transferentziaren estatistikak berrezarri nahi dituzu?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Benetan transferentzia estatistikak berrezarri nahi dituzu?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "_Nahi zerrenda" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Nahia" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Bilatu elementua" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Edizioa" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Idatzi '%(dir)s' ren izen birtual berria:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Nahi zerrenda garbitu?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Benetan nahi al duzu zure nahien zerrenda garbitu?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Bidea" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Jarraitu" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "P_ausa" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Amaitu / Iragazita" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Amaituta" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Gelditurik" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Iragazirik" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Ezabatu da" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "Ilaran jarrita…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Dena…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Garbitu Ilaran dauden deskargak" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Benetan ilaran dauden deskarga guztiak garbitu nahi dituzu?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Garbitu deskarga guztiak" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Benetan deskarga guztiak garbitu nahi dituzu?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "%(num)i fitxategiak deskargatu nahi dituzu?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Benetan al duzu %(num)i fitxategiak %(user)s karpetako %(folder)s deskargatu " "nahi dituzula?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Deskargatu Karpeta" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Gustoko du" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Gustuko ez" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Balorazioa" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Item" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Itemaren gomendioak" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "_Gustatzen zait hau" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "Ez zait gustatzen hau" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Gomendioak" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Antzeko erabiltzaileak" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Gomendioak" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Antzeko erabiltzaileak" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Mezu Pribatua %(user)s-(e)k bidalia" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Desioen zerrendako emaitzak aurkitu dira" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "_Arakatu Erabiltzailea" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Txat gelak" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Zaletasunak" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Txateatu" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "Konexioak" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "Mezuak" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "Transferentziak" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "Denetarik" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Aurkitu…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopiatu" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopiatu dena" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Ikusi arazketa erregistroak" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Ikusi transferentzien erregistroa" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategoriak" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Garbitu erregistro-ikuspegia" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Deskargak: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Kargak: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Partekatuak Eskaneatzen" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Partekatuak Eskaneatzen" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Bidali Mezua" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Gela" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Erabiltzaileak" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Sartu Gelan" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Utzi gelatik" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Disown gela pribatua" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Utzi gelako kide izatea" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Itxi fitxa guztiak …" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "_Itxi fitxa" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Ikusi txat egunkaria" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Ezabatu txataren erregistroa …" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Transferentzia Ekintzak" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Ziur zaude erabiltzaile honentzako erregistratutako mezu guztiak behin " "betiko ezabatu nahi dituzula?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Lineaz kanpo zaudenean bidali dira mezuak. Zerbitzariak jakinarazten ditu " "denbora-markak eta desaktibatuta egon daitezke." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Orokorra" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Lagunak" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Gelak" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Erabiltzailea" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "Ilaran" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Fitxategi mota" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Fitxategi-izena" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Tamaina" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kalitatea" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopiatu _Fitxategi bidea" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "_URL-a kopiatu" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Kopiatu karpeta U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Deskargatu fitxategiak" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Deskargatu fitxategia(k) _To…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Deskargatu _karpeta(k)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Deskargatu F_older(s) To…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Ikusi Erabiltzailearen _profila" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Arakatu karpetak" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "F_ileen propietateak" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopiatu bilaketa-terminoa" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Garbitu emaitza guztiak" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Garbitu iragazki historia" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "_Emaitza Iragazkiak" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIBATUA]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Emaitza-iragazkiak [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Emaitza Iragazkiak" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Garbitu iragazki aktibo guztiak" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Gehitu Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Kendu Wi_sh" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Aukeratu Erabiltzailearen Transferentziak" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Guztira" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Emaitzak" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Hautatu Erabiltzailetik fitxategiak deskargatzeko helmuga" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Aukeratu karpeta bat" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Ilaran" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "lehenetsi" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "pribilegiatua" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Egoera eskuratzen" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transferitzen" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Bezeroak konexioa itxi du" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Konektatzen" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Erabiltzaileak saioa amaitu du" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Bertan behera utzita" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Deskargatu karpetaren errorea" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Fitxategi lokalaren errorea" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Debekatuta" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Partekatu gabeko fitxategia" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Itxaron zain" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Transferentziak" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Ilaran" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Ehunekoa" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Igarotako denbora" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Denbora geratzen da" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Ireki zerrenda" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Ireki Fitxategi_kudeatzailean" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "_Bilatu" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Garbitu guztiak" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Aukeratu Erabiltzailearen Transferentziak" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "_Abortatu" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Amaitu / Abortatu / Huts egin" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Amaitu / Iragazita" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Huts egin du" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Erabiltzaileak saioa amaitu du" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Garbitu Ilaran dauden Kargak" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Benetan garbitu nahi dituzu ilaran dauden karga guztiak?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Garbitu karga guztiak" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Benetan kargatu guztiak garbitu nahi dituzu?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Gorde gordetako akzioen zerrenda diskoan" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Karpeta (azpikarpetekin) kargatu erabiltzaileari" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopiatu _Karpeta-bidea" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Deskargatu _karpeta(k)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Deskargatu F_older(s) To…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Fitxategi-izena" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Kargatu_fitxategiak" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Kargatu karpeta honetara …" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Deskargatu karpeta _To…" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Partekatutako fitxategien erabiltzailearen zerrenda hutsik dago. " "Erabiltzaileak ez du ezer partekatzen edo fitxategiak modu pribatuan " "partekatzen ditu." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Ezin zaio erabiltzaileari partekatutako fitxategirik eskatu. Erabiltzailea " "konexiorik gabe dago, biek entzute ataka itxia duzu edo aldi baterako " "konexio arazoa dago." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Hautatu Erabiltzailetik karpeta bat deskargatzeko helmuga" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Karpeta (azpikarpetekin) kargatu erabiltzaileari" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Kargatu karpeta honetara …" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Sartu kargatu nahi duzun erabiltzailearen izena:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Igoerak" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Hautatu Erabiltzailetik fitxategiak deskargatzeko helmuga" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Kargatu fitxategia (k)" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Irudia:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Gorde argazkia" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Huts egin du %(user)s erabiltzailearen argazkia kargatzean: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Ezin zaio erabiltzaileari informazioa eskatu. Entzute ataka itxia duzu biak, " "erabiltzailea konexiorik gabe dago edo aldi baterako konexio arazoa dago." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Kendu Wi_sh" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Gehitu laguna…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Debekatu erabiltzailea" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ez ikusi egin Erabiltzaileari" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Bai" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Ez" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Mesedez, idatzi egun kopurua!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Opari egunak Soulseek-en pribilegioak %(user)s (%(days_left)s) " "erabiltzaileari:" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "%(days)s egun falta dira" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Opari Pribilegioak" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Opari Pribilegioak" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Itxi fitxa" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Bai" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "Ados" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Hautatu Fitxategi bat" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Aukeratu karpeta bat" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Hautatu guztiak" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Aukeratu irudi bat" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Irudi guztiak" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Gorde…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Bat ere ez)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "_Itxi fitxa" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Fitxa guztiak itxi nahi dituzu?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Benetan nahi dituzu fitxa guztiak itxi?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Irakurri gabeko fitxak" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Fitxa guztiak itxi nahi dituzu?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "_Itxi fitxa" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Hautatutako fitxategia" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Fitxategiak arakatu" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Gehitu laguna…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Erakutsi IP A_helbidea" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Gela pribatuak" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Kendu gela pribatutik %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Gehitu gela pribatura %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Kendu %s -ren operadore gisa" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Gehitu operadore gisa %s" #: pynicotine/gtkgui/widgets/textview.py:452 #, fuzzy msgid "--- old messages above ---" msgstr "--- goiko mezu zaharrak ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Exekutatuta: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Audioa" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Irudia:" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Artxiboa" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Denetarik" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Bideoa" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokumentua/Testua" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Errorea ikono pertsonalizatua %(path)s kargatzean: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Ezkutatu Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Erakutsi Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Zutabe # %i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Taldekatu gabea" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Taldeka Karpeta" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Erabiltzaile taldeka" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Ziur Nicotine+ -tik irten nahi duzula?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "%s erabiltzailea lehendik dago eta sartu duzun pasahitza baliogabea da. " "Mesedez, aukeratu beste erabiltzaile izena saioa hasten duzun lehen aldia " "bada." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Pasahitza" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Soulseek kontu berria sortzeko, bete nahi duzun erabiltzaile izena eta " "pasahitza. Dagoeneko kontua baduzu, bete saioa hasteko datuak." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Ezin izan da idatzi \"%(filename)s\" erregistro fitxategian: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Ezin da gorde %(path)s fitxategia: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Arabiar Emirerri Batuak" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua eta Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antartika" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Amerikako Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Åland uharteak" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Azerbaijan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnia eta Herzegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgika" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "San Bartolome" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius eta Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamak" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Bouvet uhartea" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Bielorrusia" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) uharteak" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Kongoko Errepublika Demokratikoa" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Afrika Erdiko Errepublika" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Suitza" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Boli Kosta" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cook uharteak" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Txile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Txina" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Kolonbia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curazao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Gabonetako uhartea" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Zipre" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Txekia" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Alemania" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Djibuti" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Danimarka" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikar Errepublika" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Aljeria" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ekuador" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egipto" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Mendebaldeko Sahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Espainia" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopia" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Finlandia" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falkland uharteak (Malvinas)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronesia" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Faroe uharteak" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Frantzia" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Britainia Handia" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Granada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Guyana Frantsesa" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Groenlandia" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Ginea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadalupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Ekuatore Ginea" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Grezia" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Hegoaldeko Georgia eta Hegoaldeko Sandwitch uharteak" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Ginea Bissaun" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heard & McDonald Uharteak" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroazia" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Hungaria" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonesia" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Man uhartea" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Indiako Ozeanoko Lurralde Britainiarra" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Islandia" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordan" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japonia" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgizistan" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kanbodia" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komoreak" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Saint Kitts eta Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Iparraldeko Korea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Hego Korea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Kaiman Uharteak" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazakhstan" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libano" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Santa Luzia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Lituania" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxenburgo" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Letonia" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libia" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Maroko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldavia" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "San Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshall uharteak" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Ipar Mazedonia" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macau" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Ipar Marianak" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinika" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Maurizio" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldivak" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexiko" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malaysia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mozambike" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Kaledonia Berria" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolk uhartea" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nikaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Herbehereak" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norvegia" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Zelanda Berria" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Polinesia Frantsesa" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Ginea Berria" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filipinak" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Polonia" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre eta Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Palestina estatua" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguai" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Bilera" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Errumania" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Errusia" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudi Arabia" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Salomon uharteak" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Suedia" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Santa Elena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Eslovenia" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard eta Jan Mayen uharteak" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Eslovakiako Errepublika" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leona" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Hego Sudan" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome eta Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Siria" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turks & Caicos uharteak" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Txad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Frantziako Hegoaldeko Lurraldeak" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Joan" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Thailandia" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadjikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Ekialdeko Timor" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisia" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turkia" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad eta Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "AEBetako kanpoaldeko uharte txikiak" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Ameriketako Estatu Batuak" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguai" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Egoitza Santua (Vatikano Hiria)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent eta Granadinak" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Birjina Uharte Britainiarrak" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "AEBetako Birjina Uharteak" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis & Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Hegoafrika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Mezuaren ahots-mezuak huts egin du: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Mesedez, eman ezazu Last.fm erabiltzaile izena eta API gakoa" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Orain formatua jokatzen" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Ezin izan da Audioscrobbler-era konektatu: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Ezin izan da azken pista Audioscrobbler-etik eskuratu: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Ezin izan da MPRIS erreproduzitzaile egokirik aurkitu" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "MPRIS jokalari ugari aurkitu dira: %(players)s. Erabiltzen: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Auto detektatutako MPRIS erreproduzitzailea: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Arazoren bat izan da %(player)s kontsultatzean: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Mesedez, eman zure ListenBrainz erabiltzaile izena" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Ezin izan da ListenBrainz konektatu: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Ez dirudi une honetan ezer entzuten ari zarenik" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Ezin izan da uneko pista eskuratu ListenBrainz-etik: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Sareko bilaketak" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Osatu integratutako komandoak" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Ezin da zerbitzarira konektatu. Arrazoia: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "%(host)s:%(port)s zerbitzaritik deskonektatuta" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Kanpoko egoera txandakatzen du" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Gaitu pluginak" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Garbitu berriketa leihoa" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Esan zerbait hirugarren pertsonan" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Iragarri unean jotzen ari den abestia" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Sartu edo sortu gela…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Irten oraingo gela" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Esan mezua zehaztutako txat-gelan" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Txata pribatua" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Itxi uneko elkarrizketa pribatua" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Eskatu erabiltzailearen informazioa" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Bidali mezu pribatua lineako lagun guztiei:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Gehitu erabiltzailea zure lagunen zerrendara" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Kendu erabiltzailea zure lagunen zerrendatik" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Arakatu 'erabiltzailea' erabiltzailearen fitxategiak" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Erabiltzailearen informazioa" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Erakutsi IP erabiltzaileari" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blokeatu erabiltzailearen edo IP helbidearen konexioak" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Kendu erabiltzailea debekuen zerrendatik" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Isilarazi erabiltzailearen edo IP helbidearen mezuak" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Kendu erabiltzailea ez ikusiaren zerrendatik" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Gehitu Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Kendu Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Berriro eskaneatu partekatutakoak" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Berriro eskaneatu partekatutakoak" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Hasi fitxategien bilaketa globala" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Bilatu fitxategiak eta karpetak (bat-etortze zehatza)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Bilatu fitxategiak eta karpetak (bat-etortze zehatza)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Bilatu 'galdera' erabiltzaile baten partekatutakoetan" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "%(num)i komando erabilgarrien zerrenda:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "\"%(query)s\"-ekin bat datozen %(num)i komando erabilgarri zerrendatzen ditu:" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Idatzi %(command)s antzeko komandoak zerrendatzeko" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Idatzi %(command)s erabilgarri dauden komandoak zerrendatzeko" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s gelara sartu da" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Itxi uneko elkarrizketa pribatua" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Debekatuta (%s)" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Debekatuta (%s)" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ez ikusitako erabiltzaileak" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ez ikusi egin Erabiltzaileari" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Kargatutako plugin-a %s" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Ezin da kargatu %(name)s plugina. Plugin karpetaren izenak karaktere " "baliogabeak ditu: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "%(interface)s komando gatazkatsua %(name)s pluginan: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Kargatutako plugin-a %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Ezin da kargatu %(module)s plugina\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Deskargatu gabeko plugina %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Ezin da deskargatu %(module)s plugina\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "%(module)s pluginak huts egin du %(errortype)s errorearekin: %(error)s.\n" "Aztarna: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Norbere deskribapena:" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "%s argumentua falta da" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Soulseek URL baliogabea: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Erabilera: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Komando ezezaguna: %(command)s. Idatzi %(help_command)s erabilgarri dauden " "komandoak zerrendatzeko." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Ez da UPnP gailurik aurkitu" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Ezin izan da kanpoko ataka birbidali %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Kanpoko ataka %(external_port)s IP helbide lokalera %(ip_address)s " "ataka %(local_port)s behar bezala birbidali da" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Mezu Pribatua %(user)s-(e)k bidalia" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "\"%s\" nahien zerrendako elementua bilatzen" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Desioen zerrendaren itxaronaldia %s segundotan ezarri da" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "%(user)s erabiltzailea \"%(query)s\" bilatzen ari da, %(num)i emaitzak " "ematen ditu" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Partekatzeak berriro aztertzen…" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Partekatzeak berriro aztertzen…" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Berriro eskaneatuta: %(num)s karpetak aurkitu dira" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Akats larriak gertatu dira akzioak berriro eskaneatzean. Arazoak jarraitzen " "badu, ezabatu %(dir)s / *. Db eta saiatu berriro. Horrek laguntzen ez badu, " "bidali akatsen txostena pilatutako traza honekin: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Errorea %(path)s fitxategia eskaneatzean: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Errorea %(path)s karpeta eskaneatzean: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Errorea %(path)s fitxategiaren metadatuak eskaneatzean: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Berriro eskaneatzea bertan behera utzi da partekatzerik ez dagoelako" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" "%(user)s erabiltzailea partekatutako fitxategien zerrendan arakatzen ari da" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Ezin izan da %(folder)s partekatutako karpeta eskuratu: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Ezin da partekatutako datu basea irakurri. Mesedez berriro eskaneatu zure " "akzioak. Errorea: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Zehaztutako sare-interfazea '%s' ez dago" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Ezin da entzun %(port)s atakan. Ziurtatu beste aplikaziorik ez duela " "erabiltzen edo aukeratu beste ataka bat. Errorea: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "%i ataka entzuten" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Ezin da %(host)s zerbitzarira konektatu:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Konektatu automatikoki zerbitzaria abiaraztean" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "%(host)s:%(port)s-(e)ra konektatzen" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "%(host)s zerbitzariarekin konektatuta:%(port)s, saioa hasten…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "%(host)s:%(port)s zerbitzaritik deskonektatuta" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Norbaitek beste nonbait saioa hasi du zure Soulseek kontuan" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Karga amaituta: erabiltzailea %(user)s, IP helbidea %(ip)s, fitxategia " "%(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "" "Igoera bertan behera utzi da, %(user)s erabiltzailea, %(file)s fitxategia" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "I / O errorea kargatzean: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Kargatzen hasi da: erabiltzailea %(user)s, IP helbidea %(ip)s, fitxategia " "%(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" "Ezin da '%(folder)s' direktorioa sortu, jakinarazitako errorea: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Partekatutakoak diskotik kargatzeak huts egin du: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "\"%(user)s\" erabiltzailearen partekatutako fitxategien zerrenda gorde da " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "Ezin dira partekatutakoak gorde, '%(user)s', jakinarazitako errorea: " "%(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Irudia gorde da %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Ezin da %(filename)s gorde: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "" "%(user)s erabiltzailea zure erabiltzailearen informazioa irakurtzen ari da" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Ezin da zerbitzarira konektatu. Arrazoia: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Ezin da konektatu" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Ezin da %s erabiltzailearen IPa berreskuratu, erabiltzaile hau lineaz kanpo " "dagoelako" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "%(user)s erabiltzailearen IP helbidea %(ip)s da, ataka %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek Bezeroa" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i erabiltzaile pribilegiatu" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Ez duzu pribilegiorik. Pribilegioak ez dira beharrezkoak, baina baimendu " "zure deskargak pribilegiatu gabeko erabiltzaileen aurretik ilaran jartzea." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i egunak, %(hours)i orduak, %(minutes)i minutuak, %(seconds)i segundo " "deskargatzeko pribilegioak geratzen dira." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Zure pasahitza aldatu da. Pasahitza %s da" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Pasahitz aldaketa ukatu da" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Ezin da gorde %(path)s fitxategia: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Ezin da %(filename)s gorde: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Arazoren bat izan da %(filename)s fitxategia irakurtzean: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "%s fitxategiaren segurtasun kopia kargatzen saiatzen" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Ezin da %(path)s fitxategiaren babeskopia egin: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Ezin da gorde %(path)s fitxategia: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Ezin da aurreko fitxategia berreskuratu %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Gehitu laguna…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Bilaketa terminoa…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Bilaketa terminoa…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Bidali Mezua" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Txandakatu Testutik Ahotsera" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Txat gelaren komandoaren laguntza" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Sartu" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Gelako horma" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Gelako horma" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Sortua" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Itzulpena" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Lizentzia" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Aurreko fitxategia" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Ongi etorri Nicotine+-ra" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Konfiguratu …" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "Nahi duzun erabiltzaile izena hartua badago, aldatzeko eskatuko zaizu." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Zure entzuteko ataka itxita badago, entzuteko ateak irekita dituzten " "erabiltzaileekin bakarrik konektatu ahal izango zara." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Beharrezkoa izanez gero, aukeratu beste entzuteko ataka bat behean. " "Aurrerago ere egin daiteke hobespenetan." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Deskargatu fitxategiak karpetara" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Partekatu karpetak" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-eko erabiltzaileek zure parteketatik deskargatu ahal izango dute. " "Lagun ezazu Soulseek sarean zure bilduma partekatuz eta beste " "erabiltzaileengandik deskargatutakoa berriro partekatuz." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Nicotine+ erabiltzeko prest zaude!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Soulseek-i emateak pribilegioak ematen dizkizu denbora tarte jakin baterako. " "Pribilegioak badituzu, deskargak ilaran jarriko dira pribilegiatu gabeko " "erabiltzaileen aurretik." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Aurreko fitxategia" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Hurrengo fitxategia" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Fitxategi izena" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Azken abiadura" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Esportatu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Teklatu lasterbideak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Orokorra" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Konektatu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Deskonektatu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Berriro eskaneatu partekatzeak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Erakutsi erregistro panela" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Konfiguratu erregistroa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Irten" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Menuak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Ireki menu nagusia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Ireki testuinguru menua" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Fitxak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Aldatu fitxa nagusia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Joan aurreko bigarren mailako fitxara" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Joan Hurrengo Bigarren fitxa atalera" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Itxi bigarren mailako fitxa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Itxi bigarren mailako fitxa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Zerrendak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Hautatu guztiak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Kendu hautatutako errenkada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Edizioa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Ebaki" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Itsatsi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Txertatu Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Hautatu guztiak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Bilatu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Bilatu hurrengo partida" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Aurreko partida aurkitu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Transferentziak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Berrekin / Saiatu berriro transferentzia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Eten / Utzi Transferentzia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Deskargatu karpeta _To…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Gorde gordetako akzioen zerrenda diskoan" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Freskatu fitxategiak" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Zabaldu / Tolestu dena" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Ezin da karpeta partekatu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Bilatu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "_Emaitza Iragazkiak" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Oraingo saioa" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Deskargak amaituta" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Deskargatutako tamaina" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Amaitutako kargak" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Kargatutako tamaina" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Guztira" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Jarraitu" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Nahien zerrendako elementuak aldian-aldian automatikoki bilatzen dira, " "ohikoak ez diren fitxategiak aurkitzeko." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Gehitu Wish …" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Garbitu guztiak…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Deskargatutako fitxategia" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Garbitu Amaitu" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Garbitu deskarga guztiak" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Garbitu guztiak…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Interes pertsonalak" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Gehitu gustuko duzun zerbait …" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Ezats pertsonalak" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Gehitu gustatzen ez zaizun zerbait …" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Gomendioak" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Ireki menu nagusia" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Gela…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Erabiltzaile izena…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Bilaketa terminoa…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Bilaketa ereduak: hitz batekin = terminoarekin, hitzik gabe = -term, hitz " "partziala = * erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Bilatu esparrua" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Nahi zerrenda" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfiguratu bilaketak" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Sartu bilaketa termino bat Soulseek sareko beste erabiltzaile batzuek " "partekatutako fitxategiak bilatzeko" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Fitxategiak taldekatzeko modua" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfiguratu deskargak" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Beste erabiltzaileengandik deskargatzen dituzun fitxategiak ilaran daude " "hemen, eta pausatu egin daitezke eta eskaera berrekin daitezke" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfiguratu igoerak" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Erabiltzaileek partekatutako fitxategiak deskargatzeko saiakerak ilaran eta " "kudeatzen dira hemen" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "_Ireki zerrenda" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Aurretik diskoan gordetako fitxategi partekatuen zerrenda lokala irekitzen du" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Konfiguratu partekatzeak" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Idatzi erabiltzaile baten izena, zeinen partekatutako fitxategiak arakatu " "nahi dituzun. Zerrenda diskoan ere gorde dezakezu eta geroago ikuskatu." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Ezats pertsonalak" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfiguratu erregistroa" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Idatzi erabiltzaile baten izena bere erabiltzailearen deskribapena, " "informazioa eta argazki pertsonala ikusteko" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Txat historia" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfiguratu akzioak" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Idatzi erabiltzaile baten izena harekin testu elkarrizketa pribatuan hasteko" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Mezuak" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ez ikusitako erabiltzaileak" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Gehitu erabiltzaileak lagun gisa karpeta zehatzak haiekin partekatzeko eta " "jakinarazpenak jasotzeko konektatuta daudenean" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Sartu edo sortu gela…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Sartu lehendik dagoen txat gela batera edo sortu gela berri bat Soulseek " "sareko beste erabiltzaileekin txateatzeko" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Ikusi erabiltzailearen profila" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Bilaketa terminoa…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Konexioak" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Deskargatzen (abiadura / erabiltzaile aktiboak)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Kargatzen (abiadura / erabiltzaile aktiboak)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Bilaketa terminoa…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Deskargatu Abiadura Mugak" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Mugatu kargatzeko abiadura:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Deskargatzeko abiadura muga alternatiboa (KiB / s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Deskargatzeko abiadura muga alternatiboa (KiB / s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Bilaketa terminoa…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Freskatu gela zerrenda" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Erakutsi txat gelako mezu publikoen jarioa" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "_Gela pribatuko gonbidapenak onartu" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Gelako horma eginbideari esker, gela bateko erabiltzaileek mezu bakarra " "zehaztu dezakete besteei erakusteko. Azken mezuak goialdean agertzen dira." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Ezarri hormako mezua…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Bilaketa-emaitzen iragazkiak" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Bilaketaren emaitzen iragazkiak zein bilaketaren emaitzak bistaratzen diren " "zehazteko erabiltzen dira." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Bilaketa-emaitzen zerrenda bakoitzak bere iragazkia du, emaitza-iragazkiak " "botoia txandakatuz agerian egon daitekeena. Iragazki bat hainbat eremuk " "osatzen dute, guztiak Sartu bere edozein eremutan sakatzean aplikatzen " "direnak. Iragazketa berehala aplikatzen zaie jadanik jasotako emaitzei eta " "iritsi gabe daudenei ere. Emaitza osoak berriro ikusteko, garbitu termino " "guztien iragazkia eta berriro aplikatu. Izenak dioen bezala, bilaketaren " "emaitzen iragazkiak ezin du jatorrizko bilaketa zabaldu, soilik murriztu " "dezake. Bilaketa-terminoak zabaltzeko edo aldatzeko, egin bilaketa berria." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Izenak dioen bezala, bilaketa-emaitzen iragazkiak ezin du zure jatorrizko " "bilaketa zabaldu, murriztu baino ezin du egin. Bilaketa-terminoak zabaltzeko " "edo aldatzeko, egin bilaketa berri bat." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "_Emaitza Iragazkiak" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Sartu testua" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Testu hau duten fitxategiak eta karpetak erakutsiko dira." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Maiuskulak eta minuskulak ez dira sentikorrak, baina hitzaren ordena " "garrantzitsua da: \"Spears Brittany\" -k ez du \"Brittany Spears\" -rik " "erakutsiko" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Erabili | (edo hodiak) hainbat esaldi zehatz bereizteko. Adibidea:\n" " Remix|Dub Mix|Instrumentala" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Baztertu Testua" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Goian bezala, baina fitxategiak eta karpetak iragazten dira testua bat " "badator." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Fitxategiak iragazkiak luzatzen ditu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Fitxategi luzapen ugari zehaztu daitezke, eta horrek emaitza zerrenda " "zabalduko du.\n" " Adibidez: flac | wav | ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Iragazkia alderantzikatzea ere posible da, emaitzetan nahi ez dituzun " "fitxategi luzapenak zehaztuz.\n" " Adibidez:! Mp3 |! Jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Fitxategiaren tamaina" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Fitxategiak tamainan oinarrituta iragazten ditu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Lehenespenez, erabilitako unitatea byte-ak dira eta balioaren berdina edo " "handiagoa den fitxategia parekatuko da." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Erantsi b, k, m edo g (bestela, kib, mib edo gib) byte, kibibyte, mebibyte " "edo gibibyte unitateak zehazteko:\n" " <1024k 1024 kibibyte (hau da, 1 mebibyte) edo txikiagoak aurkituko ditu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Prepend = balio batera, partida zehatza zehazteko:\n" " = 1024 1024 byte-ko tamaina duten fitxategiekin (hau da, kibibyte 1) " "bakarrik dator." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Prepend = balio batera, partida zehatza zehazteko:\n" " = 1024 1024 byte-ko tamaina duten fitxategiekin (hau da, kibibyte 1) " "bakarrik dator." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Aurreratu < edo > emandako balioa baino txikiagoak/handiagoak diren " "fitxategiak aurkitzeko:\n" " >10,5 m|<1 g 10,5 MiB (mebibyte) baino handiagoak diren fitxategiak " "erakusteko\n" " baina 1 GiB (gibibyte) baino txikiagoa, erabili | baldintzen artean." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Erosotasunagatik, kilo, mega eta gigabyte unitate ezagunentzako kb, mb eta " "gb aldaerak ere erabil daitezke." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Fitxategiak iragazten ditu bit-tasaren arabera." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Balioak zenbakizko zifra gisa soilik sartu behar dira. Unitatea beti da Kb/s " "(Kilobit segundoko)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Fitxategiaren Tamaina (goian) bezala, =, !, <, eta > eragileak erabil " "daitezke, eta hainbat baldintza zehaztu daitezke | hodiak:\n" " >256|<1411 gutxienez 256 Kb/s-ko bit-abiadura duten fitxategiak " "erakusteko\n" " 1411 Kb/s-ko gehienezko bit-abiadurarekin." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Fitxategiak iragazten ditu bit-tasaren arabera." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Lehenespenez, sartutako iraupena baino luzeagoak edo berdinak diren " "fitxategiak bat etorriko dira, operadore bat (=, !, <, edo >) erabiltzen ez " "bada behintzat." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Idatzi balio gordina segundotan edo erabili MM:SS eta HH:MM:SS ordu " "formatuak:\n" " > 5:30ean gutxienez 5 minutu eta erdiko fitxategiak erakusteko.\n" " <5:30:00 5 ordu eta erdi baino gutxiagoko fitxategiak erakusten ditu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Baldintza anitz zehaztu daitezke | hodi bereizleak:\n" " >6:00|<12:00 6 eta 12 minutu arteko fitxategiak erakusteko.\n" " !9:54|!8:43|!7:32 fitxategi zehatz batzuk emaitzetatik ezkutatzeko.\n" " =5:34|=4:23|=3:05 iraupen zehatza duten fitxategiak sartzeko." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "ISO 3166-2-k definitutako herrialde-kodeak erabiltzen ditu (ikus " "Wikipedia):\n" " \"AEB\" k Estatu Batuetatik konektatutako erabiltzaileen fitxategiak " "soilik itzuliko ditu. Era berean, \"GB\" k Erresuma Batuko IPak dituzten " "erabiltzaileen fitxategiak itzultzen ditu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Hainbat herrialde zehaztu daitezke komaz edo zuriunez." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Doako Slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Erakutsi gutxienez kargatzeko zirrikitu bat doan duten erabiltzaileen " "emaitzak. Iragazki hau berehala aplikatzen da." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Kargatu Abiadura Mugak" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Mugatu kargatzeko abiadura:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Kargatzeko abiadura muga alternatiboa (KiB / s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Kargatzeko abiadura muga alternatiboa (KiB / s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Txat pribatuaren komandoaren laguntza" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Sartu testua …" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Iragazi fitxategi bideek zehaztutako testua duten emaitzak. Esaldi eta hitz " "anitz zehaztu daitezke, adibidez. esaldi zehatza | musika | terminoa | " "esaldi zehatza bi" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Baztertu testua …" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Iragazi fitxategi bideek zehaztutako testua duten emaitzak. Esaldi eta hitz " "anitz zehaztu daitezke, adibidez. esaldi zehatza | musika | terminoa | " "esaldi zehatza bi" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Fitxategi mota …" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Fitxategi mota, adibidez. flac | wav | ape or! mp3 |! m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Fitxategiaren tamaina …" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Fitxategiaren tamaina, adibidez. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bit-tasa…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bit-tasa, adibidez. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Iraupena…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Iraupena, adibidez. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Herrialde kodea…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Herrialde kodea, adibidez US | GB | ES edo! DE |! GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Debekatu erabiltzaileei zure partekatutako fitxategietara sartzea, " "erabiltzaile-izenean, IP helbidean edo herrialdean oinarrituta." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Blokeatu herrialde kodeak (komaz bananduak):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Kodeak ISO 3166-2 formatuan egon behar dute." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Erabili geoblokeo mezu pertsonalizatua:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Erabili pertsonalizatutako debeku mezua:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Helbideak" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Gaitu zuzentzaile ortografikoa (berrabiarazi behar da)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Berrezarri aurrez irekitako txata pribatuak abiaraztean" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Gaitu CTCP antzeko mezu pribatuen erantzunak (bezeroaren bertsioa)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Erakutsi berri diren berriketa lerro kopurua:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Erakutsi berri diren berriketa lerro kopurua:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Osaketa" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Gaitu fitxa-tekla osatzea" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Gaitu osatze goitibeherako zerrenda" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Goitibehera bistaratzeko gutxieneko karaktereak:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Onartutako osapenak" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Lagunen Zerrenda" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Txat gelaren mezua:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Gelak" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Aginduak" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Denbora-zigiluak" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Gela pribatuaren formatua:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Lehenetsia" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Txat gela formatua:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Testutik hizketara" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Gaitu Testutik Ahotsera" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Testutik hizketarako komandoa:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Txat mezu pribatua:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Txat gelaren mezua:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Zentsorea" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Gaitu testu ereduen zentsura" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Auto-Ordeztu" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Gaitu hitzen ordezkapen automatikoa" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Garbitu automatikoki amaitu / iragazi transferentzia zerrendako deskargak" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Gorde egindako deskargak erabiltzaile izenen azpikarpetetan" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Egin klik bikoitza ekintza deskargak egiteko:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Baimendu erabiltzaile hauei zuri fitxategiak bidaltzera:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Karpetak" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Deskargatutako fitxategia" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Deskargak amaituta" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Fitxategia eskatzen" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Gertaerak" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "" "Exekutatu komandoa fitxategia deskargatu ondoren ($ fitxategiaren biderako):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "Exekutatu komandoa karpeta deskargatu ondoren ($ karpetaren biderako):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Deskargatu iragazkiak" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Gaitu deskarga-iragazkiak" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Gehitu" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Lehenespenak Kargatu" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Iragazkiak Egiaztatu" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Egiaztatu gabe" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ez ikusi txat-mezuei eta erabiltzaileen bilaketa-emaitzak, erabiltzaile-" "izena edo IP helbidean oinarrituta." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Lehenespen bezala berriketa gelak gorde" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Lehenespen bezala berriketa pribatuak gorde" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Erregistratu transferentziak fitxategira" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Erregistratu arazteko mezuak fitxategian" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Erregistro fitxategi formatua:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Karpeten kokapenak" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Txat gela erregistroen karpeta:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Txat-erregistroen karpeta pribatua:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Transferitu erregistroen karpeta:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Araztu erregistroen karpeta:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Hasi saioa lehendik dagoen Soulseek kontu batean edo sortu berri bat. " "Erabiltzaile izenek maiuskulak eta minuskulak bereizten dituzte." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Blokeatu IP helbidea" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Entzumen ataka barrutia (berrabiaraztea eskatzen du):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Kanpoko egoera" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Aktibitaterik gabeko minutuak joan aurretik (0 desgaitzeko):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Erantzun automatikoko mezua kanpoan dagoenean:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatikoki birbidali entzuteko ataka (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Konektatu automatikoki zerbitzaria abiaraztean" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek zerbitzaria:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Konexioak sareko interfaze jakin batera lotzen ditu, erabilgarria adibidez. " "VPNa uneoro erabiltzen dela ziurtatuz. Utzi hutsik erabilgarri dagoen " "edozein interfaze erabiltzeko. Aldatu balio hori zer egiten ari zaren " "jakiten baduzu." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Entzumen ataka barrutia (berrabiaraztea eskatzen du):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Now Playing-ek zure multimedia erreproduzitzailea erreproduzitzen ari dena " "bistaratzeko aukera ematen dizu /now komandoa erabiliz txatean." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Beste bat" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Orain formatua jokatzen" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Mezu formatua erreproduzitzen ari da:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Probaren konfigurazioa" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Gaitu pluginak" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "_Aldatu pluginak" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "_Aldatu pluginak" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Ezarpenak" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Ezarpenak" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Bertsioa:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Sortua" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Gaitu bilaketa historia" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Beste bezero batzuek modu pribatuan partekatutako fitxategiak bidaltzeko " "aukera eskain dezakete bilaketa eskaerei erantzunez. Fitxategi horiek " "\"[FITXATU PRIBATUA]\" izenarekin aurrez zehaztuta daude, eta ezin dira " "deskargatu kargatzaileak baimen esplizitua eman ezean." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Erakutsi modu pribatuan partekatutako fitxategiak bilaketa-emaitzetan" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Mugatu bilaketa bakoitzeko emaitza kopurua:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Gaitu bilaketa-emaitzen iragazkiak lehenespenez" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Sartu:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Baztertu:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Fitxategi mota:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Tamaina:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate-a:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Iraupena:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Herrialde kodea:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "" "Erakutsi kargatzeko zirrikitua erabilgarri duten erabiltzaileen emaitzak." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Emaitza iragazkiaren laguntza" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Sareko bilaketak" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Beste erabiltzaile batzuen bilaketa eskaerei erantzun" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Karaktere kopuru hori baino laburragoak diren bilaketak ez dira kontuan " "hartuko:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "" "Bidali beharreko gehieneko bilaketa-emaitza bilaketa-eskaera bakoitzeko:" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Garbitu Bilaketa Historia" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Garbitu iragazki historia" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Partekatutako karpeten edukia automatikoki berrezartzen du abiaraztean. " "Desgaituta badago, zure akzioak berriro eskaneatzen hasten zarenean soilik " "eguneratuko dira." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Abiaraztean berriro eskaneatu partekatutakoak" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Lagunen Zerrenda" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Berriro eskaneatu partekatutakoak" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Garbitu automatikoki transferentzia zerrendako amaitutako / ezeztatutako " "kargak" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Egin klik bikoitza ekintza igotzeko:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Mugatu kargatzeko abiadura:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Transferentzia bakoitzeko" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Transferentziak guztira" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Kargatu Slots" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: fitxategiak modu ziklikoan igoko dira ilaran zain dauden " "erabiltzaileei.\n" "Lehen sartu, lehenik irten: fitxategiak ilaran zeuden ordenan igoko dira." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Kargatu ilara mota:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Kargatzen ilaran, transferentzia-abiadura osoa (KiB/s) lortzen bada:" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Mugatu kargatzeko tarte kopurua honetara:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Lehenetsi lagun guztiei" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Ilararen mugak" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Mugatu bilaketa bakoitzeko emaitza kopurua:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Ilararen mugak ez zaizkie lagunei aplikatzen" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "$ Instantziak estekarekin ordezkatuko dira. Sistemaren web arakatzaile " "lehenetsia protokoloa konfiguratu ez den kasuetan erabiliko da." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Fitxategi-kudeatzailearen komandoa ($ fitxategi-biderako):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Berrezarri argazkia" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Norberaren deskribapena" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Irudia:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Garbitu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Modu iluna hobetsi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Erabili _Header Bar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Bistaratu erretiluaren ikonoa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimizatu erretilura abiaraztean" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Entzumen ataka barrutia (berrabiaraztea eskatzen du):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Nicotine+ ixterakoan:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Jakinarazpenak" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Gaitu soinua jakinarazpen laster-leihoetarako" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "" "Erakutsi berriketen eta aipamen pribatuen jakinarazpena leihoaren izenburuan" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Erakutsi jakinarazpenen ikonoak fitxetan" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Deskargatutako fitxategia" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Deskargatutako karpeta" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "%s -ren mezu pribatua" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Txat gelaren mezua:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Osaketa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Desioen zerrendako emaitzak aurkitu dira" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Berrezarri aurrez irekitako txata pribatuak abiaraztean" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Itxi botoiak bigarren mailako fitxetan" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Fitxa arruntaren etiketaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Fitxa etiketaren kolorea aldatu da:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Nabarmendutako fitxa etiketaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Ikusgai dauden fitxa nagusiak:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Fitxa barraren kokapena:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Fitxa nagusiak" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Erakutsi alderantzizko fitxategien bideak bilaketan eta transferitu " "ikuspegietan (berrabiarazi behar da)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Sare interfazea (berrabiaraztea eskatzen du):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Zerrendaren testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Ilaran kokatutako bilaketa-emaitzaren testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Txat gelaren mezua:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Txataren erabiltzaile izenaren itxura:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Urruneko testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Tokiko testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Urruneko testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/ me ekintzaren testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Testu kolorea nabarmenduta:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "URL estekaren testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Ameriketako Estatu Batuak" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Lineako testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Testuaren kolorea kanpoan:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Lineaz kanpoko testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Testu sarrerak" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Testuaren sarrerako atzeko kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Testuaren sarrerako testuaren kolorea:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Letra tipoak" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Letra-tipo globala:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Zerrendako letra-tipoa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Testu-ikuspegiaren letra-tipoa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Txat letra-tipoa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Letra-tipoa transferitzen da:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Bilatu letra-tipoa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Arakatu letra-tipoa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikonoak" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Fitxategiaren karpeta osatu gabea:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Utzi erabiltzailea(k)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Debekatu Erabiltzailea(k)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "" "Garbitu automatikoki transferentzia zerrendako amaitutako / ezeztatutako " "kargak" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Mezuak" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Garbitu karga guztiak" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Gorde gordetako akzioen zerrenda diskoan" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Freskatu fitxategiak" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Karpeta partekatuak" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Partekatutako fitxategiak" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Karpeta partekatuak" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Ilaran dauden kargak" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Doako igoera zirrikituak" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Kargatzeko abiadura" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Zaletasunak" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Opari pribilegioak…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Freskatu fitxategiak" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+ Taldea" #~ msgid "_Clear" #~ msgstr "_Garbitu" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Ezin da %(filename)s gorde: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Lagun fidagarriak" #, fuzzy #~ msgid "Quit program" #~ msgstr "Irten programa" #, fuzzy #~ msgid "Username:" #~ msgstr "Erabiltzaile izena:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Elementurako gomendioak" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Kendu elementua" #~ msgid "_Remove" #~ msgstr "_Kendu" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Mezua bidali" #~ msgid "Send Message" #~ msgstr "Bidali Mezua" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Ikusi erabiltzailearen profila" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Hasi Mezularitza" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Idatzi mezu bat bidali nahi diozun erabiltzailearen izena:" #, fuzzy #~ msgid "_Message" #~ msgstr "Mezuak" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Sartu ikusi nahi dituzun erabiltzailearen izena:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Ikusi erabiltzailearen profila" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Sartu ikusi nahi dituzun erabiltzailearen izena:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Fitxategiak arakatu" #, fuzzy #~ msgid "Password" #~ msgstr "Pasahitza" #, fuzzy #~ msgid "Download File" #~ msgstr "Deskargatu fitxategia" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Antzeko erabiltzaileak" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Sartu fitxategiak ikusi nahi dituzun pertsonaren erabiltzaile-izena" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Sartu ikusi nahi duzun informazioaren erabiltzaile-izena" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Sartu mezua bidali nahi diozun pertsonaren erabiltzaile-izena" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Sartu zure lagunen zerrendara gehitu nahi duzun pertsonaren erabiltzaile-" #~ "izena" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Idatzi sartu nahi duzun gelaren izena. Gela existitzen ez bada, sortu " #~ "egingo da." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Erakutsi _Log panela" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Gorde _Irudia" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "\"%(query)s\" bilaketa-kontsultarako %(user)s erabiltzailearen " #~ "%(filepath)s bilaketa-emaitza okerra iragazi da" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Zenbait bezeroek ez dituzte bilaketaren emaitzak bidaltzen karaktere " #~ "bereziak sartzen badira." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Kendu karaktere bereziak bilaketa-terminoetatik" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Arazoak izan dira \"%s\" exekutatzean" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Arazoak ditugu karpetan exekutatzean: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Debekatutako luzapena" #, fuzzy #~ msgid "Too many files" #~ msgstr "Fitxategi gehiegi" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Megabyte gehiegi" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Zerbitzariak ez du oraingoz nahien zerrendak egitea onartzen" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Fitxategiak transferitzeko abiadura deskargatzen ari zaren erabiltzaileen " #~ "araberakoa da. Zenbait erabiltzaile azkarragoak izango dira, beste batzuk " #~ "motelak." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Deskargak hasi dira" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Kargatzen hasi da" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Ordezkatu zentsuratutako letrak honela:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Zentsuratutako ereduak" #, fuzzy #~ msgid "Replacements" #~ msgstr "Ordezkoak" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Soulseek sareko erabiltzaile batek zure akzioetan dagoen fitxategia " #~ "bilatzen badu, bilaketaren emaitzak bidaliko zaizkio erabiltzaileari." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Bidali _Jokalarira" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Bidali _Jokalarira" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Ireki Fitxategi-kudeatzailean" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Media Player komandoa ($ fitxategi-biderako):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Ezin da deskargatu erabiltzaile izenaren azpikarpetan gorde, " #~ "deskargatutako karpeta lehenetsira itzuliz. Errorea: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Lagun bakarra" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Partekatu lagunekin soilik" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Quit" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Konfiguratu partekatzeak" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Urruneko fitxategiaren errorea" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Ezin da aurkitu %(option1)s edo %(option2)s, mesedez instalatu bata." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s karpetak berriro aztertu ondoren aurkitu dira" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Ezin izan dira datu base hauek prozesatu: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "" #~ "Ezin izan da partekatutako fitxategi kopurua zerbitzarira bidali: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Exekutatu atzeko planoan" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Entzuteko ataka ez dago ezarrita" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Sareko bilaketak" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Mugatu lagunentzako soilik partekatutako konfiantzazko lagunetara" #, fuzzy #~ msgid "Shared" #~ msgstr "Partekatua" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Bilatu fitxategiak eta karpetak (bat-etortze zehatza)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Zaharkiturik" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "%(version)s bertsioa eskuragarri dago, %(date)s-n argitaratua" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "" #~ "Badirudi Nicotine+ bertsioaren garapen bertsioa erabiltzen ari zarela." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Nicotine+-en azken bertsioa daukazu." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Egiaztatu _azken bertsioa" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "_Modua iluna hobetsi" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Erakutsi _Log panela" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lagunen zerrenda bereizitako fitxan" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Lagunen zerrenda beti ikusgai" #, fuzzy #~ msgid "_View" #~ msgstr "_Ikusi" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Deskargatu Karpeta" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Arakatu karpetak" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibyte (2 ^ 10 byte) segundoko." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Erabiltzaileei bidali zaie blokeatuta egotearen arrazoia." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Erabiltzaileei bidali zaie debekatu izanaren arrazoia." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Aplikazioa kanpoan egotearekin elkarreragin duzunean, egoera linean " #~ "ezarriko da." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Erabiltzaile bakoitzak gehienez ilaran jarri dezake:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2 ^ 20 byte)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBak" #, fuzzy #~ msgid "files" #~ msgstr "fitxategiak" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Ilararen portaera" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Desgaituta badago, zirrikituak automatikoki zehaztuko dira eskuragarri " #~ "dauden banda-zabaleraren mugen arabera." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Kontuan izan sistema eragilearen gaiak lehentasuna izan dezakeela." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Lehenespenez, bilaketa-fitxategien fitxa abiaraztean aktibatuta dago." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Utzi Nicotine+ %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "amaitu" #, fuzzy #~ msgid "done" #~ msgstr "egina" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Gogoratu aukera" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Erabiltzaile Interfazea" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "%i ataka entzuten" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Zerbitzaria sarez kanpo dagoela edo erantzuten ez duela dirudi, %i " #~ "segundutan berriz saiatzen" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ -ek parez pare sareko sare bat erabiltzen du beste erabiltzaile " #~ "batzuekin konektatzeko. Erabiltzaileek arazorik gabe zurekin konektatu " #~ "ahal izateko, entzuteko ataka irekia funtsezkoa da." #~ msgid "--- disconnected ---" #~ msgstr "--- deskonektatuta ---" #~ msgid "--- reconnected ---" #~ msgstr "--- berriro konektatuta ---" #, fuzzy #~ msgid "ID" #~ msgstr "NAN" #, fuzzy #~ msgid "Earth" #~ msgstr "Lurra" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Txekiar Errepublika" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turkia" #~ msgid "Joined Rooms " #~ msgstr "Sartutako Gelak " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-join Room" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintaxia: Letrek maiuskulak eta minuskulak ez dituzte bereizten. " #~ "Python-en adierazpen erregular guztiak onartzen dira ihesa desgaituta " #~ "badago. Iragazki sinpleetarako, ihesa gaituta mantentzea gomendatzen da." #~ msgid "Escaped" #~ msgstr "Ihesita" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Ihesita" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Sartu testu-eredua eta ordezkoa, hurrenez hurren:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "" #~ "%(num)s karpetak berriro aztertu aurretik aurkitu dira, berreraikitzen …" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Ez dago entzuteko atakarik erabilgarri zehaztutako ataka barrutian %s–%s" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Aukeratu tarte bat entzuteko ataka bat hautatzeko. Barrutiko lehen portu " #~ "erabilgarri bat erabiliko da." #, fuzzy #~ msgid "First Port" #~ msgstr "Lehen portua" #, fuzzy #~ msgid "to" #~ msgstr "ra" #, fuzzy #~ msgid "Last Port" #~ msgstr "Azken portua" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Ezin da aurkitu %s, instalatu mesedez." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Ezin da Gtk modulua inportatu. Python-gobject moduluaren instalazio " #~ "txarra?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Onartzen ez den GTK %(major_version)s bertsioa erabiltzen ari zara. GTK " #~ "%(complete_version)s edo berriagoa instalatu beharko zenuke." #, fuzzy #~ msgid "User Info" #~ msgstr "Erabiltzailearen informazioa" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zooma 1: 1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Handitu" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Txikiagotu" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Erakutsi Erabiltzailearen I_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Eskatu erabiltzailearen informazioa" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Eskatu erabiltzailearen partekatzeak" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Eskatu erabiltzailearen informazioa" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Sartu ikusi nahi duzun erabiltzailearen izena:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Eskatu akzioen zerrenda" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Soulseek URL baliogabea: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Soulseek sareko erabiltzaileek partekatzen dituzun karpetetatik " #~ "fitxategiak deskargatu ahal izango dituzte. Fitxategiak partekatzea " #~ "funtsezkoa da Soulseek sarearen osasunerako." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Eguneratu I_nfo" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Txat-gelako komandoak" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/ batu / j 'gela'" #~ msgid "Join room 'room'" #~ msgstr "Sartu 'gela' gelara" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/ niri 'mezua'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Bistaratu Orain Erreproduzitzen script-aren irteera" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/ gehitu / iragarki 'erabiltzailea'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Gehitu erabiltzailea \"erabiltzailea\" zure lagunen zerrendara" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/ rem / unbuddy 'erabiltzailea'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Kendu erabiltzailea \"erabiltzailea\" zure lagunen zerrendatik" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ debekatu 'erabiltzailea'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Gehitu 'erabiltzailea' erabiltzailea debekatuen zerrendara" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/ desblokeatu 'erabiltzailea'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Kendu 'erabiltzailea' erabiltzailea debekatuen zerrendatik" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ ez ikusi 'erabiltzaileari'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Gehitu 'erabiltzailea' erabiltzailea zure ezikusi zerrendara" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/ unignore 'erabiltzailea'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Kendu 'erabiltzailea' erabiltzailea zure ezikusi zerrendatik" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/ browse / b 'erabiltzailea'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/ whois / w 'erabiltzailea'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Eskatu informazioa \"erabiltzailea\"rentzat" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ ip 'erabiltzailea'" #~ msgid "Show IP for user 'user'" #~ msgstr "Erakutsi 'erabiltzailea' erabiltzailearen IP-a" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/ search / s 'kontsulta'" #~ msgid "Start a new search for 'query'" #~ msgstr "Hasi bilaketa berri bat 'galdera'-rentzat" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/ rsearch / rs 'kontsulta'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Bilatu 'galdera' sartutako geletan" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'kontsulta'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Bilatu 'galdera' lagunen zerrendan" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/ usearch / us 'erabiltzailea' 'kontsulta'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/ msg 'erabiltzailea' 'mezua'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Bidali 'mezua' mezua 'erabiltzailea' erabiltzaileari" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/ pm 'erabiltzailea'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "" #~ "Ireki berriketa leiho pribatua 'erabiltzailea' erabiltzailearentzako" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Txat pribatuen komandoak" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Gehitu erabiltzailea zure debekuen zerrendara" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Gehitu erabiltzailea ez ikusiaren zerrendara" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Arakatu erabiltzaileen akzioak" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Ordena ez den iragazkia egiteko, baita zenbait esaldi zehatz iragazteko, " #~ "barra bertikalak erabil daitezke esaldiak eta hitzak bereizteko.\n" #~ " Adibidez: Spears | Bretainia | Nire album ederra | kaixo" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Audiokoak ez diren fitxategiak baztertzeko, erabili !0 iraupen-iragazkian." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Erabiltzaileen herrialdeen araberako fitxategiak iragazten ditu." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "Emaitza osoa berriro ikusteko, garbitu iragazki aktibo guztiak." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Ikusi lehentasunak iragazki aukera gehiagorako." #, fuzzy #~ msgid "File size" #~ msgstr "Fitxategiaren tamaina" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Garbitu iragazki aktibo guztiak" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Egin ziklo osagarrien artean fitxa tekla sakatzean" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Ezkutatu goitibehera bakarra bat datorrenean" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Deskargatu karpetak alderantzizko ordena alfanumerikoan" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Fitxategiaren karpeta osatu gabea:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Deskargatu karpeta:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Gorde lagunen igoerak hemen:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Erabili UPnP entzuteko ataka birbidaltzeko (tartea orduetan):" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Partekatu karpetak Soulseek-eko erabiltzaile edo lagun guztiekin, edukia " #~ "zuzenean zure gailutik deskargatu ahal izateko. Ezkutuko fitxategiak ez " #~ "dira inoiz partekatzen." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Bigarren mailako fitxak" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Txat gelaren fitxa barraren kokapena:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Txata pribatuko fitxa barraren kokapena:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Bilatu fitxa barraren kokapena:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Erabiltzailearen informazioa fitxa barraren kokapena:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Erabiltzailea arakatzeko fitxa barraren kokapena:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Fitxa etiketak" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Freskatu informazioa" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Blokeatu IP helbidea" #, fuzzy #~ msgid "Connected" #~ msgstr "Konektatuta" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Deskonektatuta" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Deskonektatuta (erretilua)" #, fuzzy #~ msgid "User(s)" #~ msgstr "Erabiltzailea (k)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "\"%s\" ezizenak ez du ezer itzuli" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Abiadura muga alternatiboak" #, fuzzy #~ msgid "Last played" #~ msgstr "Azkenekoz jokatu zen" #, fuzzy #~ msgid "Playing now" #~ msgstr "Orain jolasten" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Ezin da gorde %(path)s fitxategia: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Errore-kodea %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Ez dago horrelako ezizenik (%s)" #~ msgid "Aliases:" #~ msgstr "Ezizenak:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "%(alias)s ezizena kenduta: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Ez dago horrelako ezizenik (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Abiadura muga alternatiboak" #, fuzzy #~ msgid "Aliases" #~ msgstr "Ezizenak" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/ alias / al 'agindua' 'definizioa'" #~ msgid "Add a new alias" #~ msgstr "Gehitu ezizen berri bat" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/ unalias / un 'command'" #~ msgid "Remove an alias" #~ msgstr "Kendu ezizen bat" #, fuzzy #~ msgid "Chat History" #~ msgstr "Txat historia" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Osatu komandoen aliasak" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Mugatu deskarga abiadura (KiB/s):" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Egilea(k):" #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Mugatu kargatzeko abiadura (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Desioen zerrendako elementua aurkitu da" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Fitxek erabiltzaileen egoera ikonoak erakusten dituzte egoera testuaren " #~ "ordez" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Gaitu fitxategien bideen argibideak bilaketa eta transferentzia " #~ "ikuspegietan" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Koloretako eta klikatzeko erabiltzaile izenak" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Jakinarazpenak fitxaren testu kolorea aldatzen du" #~ msgid "Cancel" #~ msgstr "Utzi" #~ msgid "OK" #~ msgstr "Ados" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "_Gehitu lagunen zerrendara" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Garbitu egoera zehatz batekin markatutako deskarga guztiak." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Garbitu egoera zehatz batekin markatutako karga guztiak." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "erabili lehenetsitakoak ez diren erabiltzaileen datuen direktorioetarako " #~ "adibidez. deskargen zerrenda" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "'%s' konfigurazio atal ezezaguna" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "'%(option)s' konfigurazio aukera ezezaguna '%(section)s' atalean" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "%s bertsioa eskuragarri dago" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "kaleratu da %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Korrika bigarren planoan" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "%s -ren mezu pribatua" #~ msgid "Aborted" #~ msgstr "Abortatuta" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Herrialde blokeatua" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Amaitu / Abortatu" #, fuzzy #~ msgid "Close tab" #~ msgstr "Itxi fitxa" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "%(room)s gelan aipatu zaituzte" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "%s komandoa ez da ezagutzen" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Oharra: %(realuser)s %(fakeuser)s faltsutzen saiatzen ari da) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Zehaztu zenuen \"%s\" sareko interfazea ez da existitzen. Aldatu edo " #~ "kendu zehaztutako sareko interfazea eta berrabiarazi Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Bezeroaren konexio portuetarako zehaztutako barrutia {} - {} zen, baina " #~ "hauetako bat ere ez zen erabilgarria. Handitu eta / edo " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Kontuan izan zure barrutiaren zati bat 1024tik beherakoa dela, normalean " #~ "ez da onartzen sistema eragile gehienetan Windows izan ezik." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Aurrerapena: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "SEaren errorea: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP ez dago erabilgarri sare honetan" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Ezin izan da kanpoko WAN ataka mapatu: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Gelako horma" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "'2234' entzute ataka lehenetsiak ondo funtzionatzen du kasu gehienetan. " #~ "Beste ataka bat erabili behar baduzu, hobespenetan aldatu ahal izango " #~ "duzu gero." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Erakutsi antzeko interesak dituzten erabiltzaileak" #, fuzzy #~ msgid "Menu" #~ msgstr "Menua" #~ msgid "Expand / Collapse all" #~ msgstr "Zabaldu / Tolestu dena" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Konfiguratu akzioak" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Sortu edo sartu gela …" #, fuzzy #~ msgid "_Room List" #~ msgstr "_Gela Zerrenda" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Gaitu deskarga eta kargatzeko abiadura muga alternatiboak" #, fuzzy #~ msgid "Show log history" #~ msgstr "Erakutsi erregistroen historia" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Emaitza taldekatzeko modua" #~ msgid "Free slot" #~ msgstr "Erreten librea" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Gorde akzioen zerrenda diskoan" #, fuzzy #~ msgid "_Away" #~ msgstr "_Alde" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Ezin izan da ui fitxategia kargatu %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Partekatutako fitxategien indizea berrezartzen saiatzea errore bat dela " #~ "eta. Mesedez berriro eskaneatu zure akzioak." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Ezin izan da partekatutako fitxategien fitxategien aurkibidea ikusi. Hori " #~ "gerta liteke Nicotine+ aldi berean aktibo egoteagatik, fitxategien baimen " #~ "arazoak edo Nicotine+ bertsioaren beste arazo batengatik." #, fuzzy #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ Soulseek bezeroa da" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "gaitu erretiluaren ikonoa" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "desgaitu erretiluaren ikonoa" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Lortu Soulseek pribilegioak …" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "IP helbide publikoa %(ip)s da eta entzute aktiboaren ataka " #~ "%(port)s " #~ msgid "unknown" #~ msgstr "ezezaguna" #, fuzzy #~ msgid "Notification" #~ msgstr "Jakinarazpena" #~ msgid "Length" #~ msgstr "Luzera" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Irudia ez da gorde; dagoeneko badago %s." #, fuzzy #~ msgid "_Open" #~ msgstr "_Ireki" #, fuzzy #~ msgid "_Save" #~ msgstr "_Gorde" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Ezin izan da '%s' plugina kargatu, ezin izan da aurkitu." #, python-format #~ msgid "I/O error: %s" #~ msgstr "S/I errorea: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Huts egin du fitxategiaren bidea irekitzean: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Ezin izan da URLa ireki: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Log elkarrizketa" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Emaitzen iragazkien zerrenda" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Eman emandako balioa baino gutxiago / handiagoak diren fitxategiak " #~ "aurkitzeko." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR fitxategiek batez besteko bit tasa erakusten dute eta normalean audio " #~ "kalitate bereko 320 kbps CBR fitxategi konprimituak baino bit tasa " #~ "txikiagoa izaten dute." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Goiko tamaina bezala, =, erabil daitezke." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Saihestu beste programa batzuek idazteko sarbidea deskargatzen duten " #~ "fitxategietarako (desaktibatu NFSrako)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Deskarga osatugabeak aldi baterako gordetzen diren lekuan." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Lagunen igoerak non gordeko diren (lagun bakoitzarentzako azpikarpeta bat " #~ "sortuta)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Aktibatu minuturik gabe egon ondoren, egoera aldatzea:" #~ msgid "Protocol:" #~ msgstr "Protokoloa:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikonoen gaiaren karpeta (berrabiarazi behar da):" #~ msgid "Establishing connection" #~ msgstr "Konexioa ezartzen" #~ msgid "Clear Groups" #~ msgstr "Garbitu Taldeak" #, fuzzy #~ msgid "User List" #~ msgstr "Erabiltzaile zerrenda" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Berritu estatistikak …" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "Garbitu _Deskargak…" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Garbitu karga_ds…" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Blokeatu erabiltzailearen IP helbidea" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ez ikusi egin Erabiltzailearen IP helbideari" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Garbitu transferitzen amaitu den edo iragazki batek harrapatu dituen " #~ "deskarga guztiak." #, fuzzy #~ msgid "Usernames" #~ msgstr "Erabiltzaile izena" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Bistaratu erregistratutako txat gelako mezuak gela berriro elkartzean" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Garbitu transferitzen amaitu den edo urruneko erabiltzaileak bertan " #~ "behera utzi dituen karga guztiak." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Ilaran kokatzea" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "%(user)s erabiltzailea zuzenean \"%(query)s\" bilatzen ari da, eta " #~ "%(num)i emaitzak ematen ditu" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIBATUA]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Gelako horma (mezu pertsonalak)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Zure konfigurazio fitxategia hondatuta dago" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Sentitzen dugu, baina badirudi zure konfigurazio fitxategia hondatuta " #~ "dagoela. Mesedez, berriro konfiguratu Nikotina +.\n" #~ "\n" #~ "Zure konfigurazio fitxategi zaharra izena aldatu dugu\n" #~ "%(corrupt)s\n" #~ "Fitxategi hau testu editorearekin irekitzen baduzu, baliteke zure ezarpen " #~ "batzuk erreskatatzea." #, fuzzy #~ msgid "User Description" #~ msgstr "Erabiltzailearen deskribapena" #, fuzzy #~ msgid "User Interests" #~ msgstr "Erabiltzaileen interesak" #, fuzzy #~ msgid "User Picture" #~ msgstr "Erabiltzailearen irudia" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Nahi zerrenda garbitu?" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Nikotina + %(version)s, %(status)s uztea …" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Python erabiliz %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Nikotina + %(version)s, %(status)s uztea …" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Utzi Nikotina + %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Erabiltzailea:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Guztiak %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s fitxategiak " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Onartu iragazkiaren barne eta baztertzeko adierazpen erregularrak" #, fuzzy #~ msgid "Quit…" #~ msgstr "Irten" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Ikusi aurreko fitxa nagusia abioan" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Gaitu bilaketa-emaitzen iragazkiak lehenespenez" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Nikotina + itxi?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Ziur Nicotine + -tik irten nahi duzula?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Exekutatu atzeko planoan" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online Jakinarazpena" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Lortu lehentasuna erabiltzaileari" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Konfiantzazko erabiltzailea" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Eskatu erabiltzailearen IP helbidea" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Eskatu IP helbidea" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Sartu ikusi nahi duzun IP helbidea duen erabiltzailearen izena:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Deskargatuta" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Ezin izan da deskargatu %(filename)s fitxategi partekatuetan gehitzean: " #~ "%(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Partekatu automatikoki amaitutako deskargak" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Zure deskarga karpeta partekatze publiko gisa gehitzearen baliokidea, " #~ "hala ere karpeta honetara deskargatutako fitxategiak beste batzuentzat " #~ "automatikoki eskuragarri egongo dira (ez da berriro aztertu behar)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Ezin da karpeta partekatu" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Aukeratutako izen birtuala hutsik dago" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Aukeratutako izen birtuala dagoeneko badago" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Aukeratutako karpeta dagoeneko partekatuta dago" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Ezarri izen birtuala" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Idatzi \"%(dir)s\" ren izen birtuala:" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Aukeratutako izen birtuala hutsik dago edo dagoeneko badago" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Aukeratutako karpeta dagoeneko partekatuta dago." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s Ezaugarriak" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Akzioak berriro eskaneatzen amaitu da" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Plugin zerrenda" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Errorea %(path)s eskaneatzean: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Erakutsi _Log panela" #, fuzzy #~ msgid "Addresses" #~ msgstr "Helbideak" #~ msgid "Handler" #~ msgstr "Maneiatzailea" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Ezin izan da plugin-a gaitu." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Ezin izan da plugin-a desgaitu." #~ msgid "Transfers" #~ msgstr "Transferentziak" #, fuzzy #~ msgid "Ban List" #~ msgstr "Debekatu zerrenda" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ez ikusi egin zerrendari" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Zentsuratu eta Ordeztu" #, fuzzy #~ msgid "Completion" #~ msgstr "Osaketa" #~ msgid "Categories" #~ msgstr "Kategoriak" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Kargatu karpeta honetara …" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Kargatu karpeta errekurtsiboa hona…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Deskargatu _Recursive" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Deskargatu R_ecursive To…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Kargatu_fitxategiak" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Errorea '%(folder)s' karpeta erakusten saiatzean, jakinarazi da errorea: " #~ "%(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Hautatu Erabiltzailetik karpeta azpikarpetekin deskargatzeko helmuga" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Hautatu Erabiltzailetik karpeta bat deskargatzeko helmuga" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Hautatu Erabiltzailetik fitxategiak deskargatzeko helmuga" #, fuzzy #~ msgid "Wishes" #~ msgstr "Nahiak" #, fuzzy #~ msgid "privileged" #~ msgstr "pribilegiatua" #, fuzzy #~ msgid "prioritized" #~ msgstr "lehenetsi" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blokeatutako IP helbideak" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Lagun izenak osatu" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Osatu erabiltzaile izenak txat geletan" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Osatu gelen izenak" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Goitibeherako zerrenda" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Fitxategi-kudeatzailearen komandoa ($ fitxategi-biderako):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Media Player komandoa ($ fitxategi-biderako):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Ez ikusitako IP helbideak" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Erakutsi denbora markak" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Jakinarazpen popupak" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Erakutsi jakinarazpenen leihoa fitxategi bat deskargatzen amaitzen denean" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Erakutsi jakinarazpenen leihoa karpeta bat deskargatzen amaitzen denean" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Erakutsi jakinarazpenen leihoa mezu pribatu bat jasotzen duzunean" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Erakutsi jakinarazpenen leihoa norbaitek txat gelan mezu bat bidaltzen " #~ "duenean" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Erakutsi jakinarazpenen leihoa txat gelan aipatzen zaituztenean" #, fuzzy #~ msgid "Tray" #~ msgstr "Erretilu" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "$ Instantziak estekarekin ordezkatuko dira. Sistemaren web arakatzaile " #~ "lehenetsia protokoloa konfiguratu ez den kasuetan erabiliko da." #~ msgid "Handler:" #~ msgstr "Maneiatzailea:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Lehen fitxak" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Gaitu fitxategien bideen argibideak bilaketa eta transferentzia " #~ "ikuspegietan" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Bilaketaren emaitza edo fitxategi-transferentziaren fitxategi-bide osoa " #~ "bistaratzen du kurtsorearekin karpeta-bidea edo fitxategi-izena pasatzean." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Erakutsi modu pribatuan partekatutako fitxategiak erabiltzaileen " #~ "partekatzeetan" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Beste bezero batzuek modu partekatuan partekatutako fitxategiak " #~ "bidaltzeko aukera eskain dezakete haien akzioak arakatzen dituzunean. " #~ "Fitxategi horiek dituzten karpetek \"[KARPETA PRIBATUA]\" dute aurrizki, " #~ "eta ezin dira deskargatu kargatzaileak berariazko baimena ematen ez badu." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Zentsuratu eta Ordeztu" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Erakutsi _Depurazio erregistroaren kontrolak" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Araztu erregistroa" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Izen birtuala" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Editatu izen birtuala" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopiatu karpetaren URLa" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Deskargatu _To…" #~ msgid "Download" #~ msgstr "Deskargatu" #~ msgid "Upload" #~ msgstr "Igo" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Kargatu karpetaren edukia" #, fuzzy #~ msgid "Rename" #~ msgstr "Aldatu izena" #, fuzzy #~ msgid "File Lists" #~ msgstr "Fitxategien Zerrendak" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopiatu fitxategi bidea" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "R_Kendu nahia" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Badirudi '%s' ez dela direktorio bat, ez ditu pluginak kargatzen." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Lagunen Partekatuak Eskaneatzen" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Lagunen Partekatuak Eskaneatzen" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Zure lagun %s zuri fitxategiren bat kargatzen saiatzen ari da." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s ez dago zuri fitxategirik bidaltzeko baimenduta, hala ere saiatzen ari " #~ "da. Oharra bidali da." #~ msgid "Client Version" #~ msgstr "Bezeroaren Bertsioa" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Pribilegio globaleko zenbat egun eman erabiltzaile honi?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Lagunek lehentasun handiagoa dute ilaran, orokorki baimenduriko " #~ "erabiltzaileek bezala" #~ msgid "_Privileged" #~ msgstr "_Pribilegiatua" #~ msgid "Comments" #~ msgstr "Iruzkinak" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Editatu iru_zkinak" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Gaitu lagunei bakarrik partekatzea" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Fitxategiak ilaratutako ordena berean bidaliko dira" #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Berriro eskaneatzea hasi da" #~ msgid "Scanning Buddy Shares" #~ msgstr "Lagunen Partekatuak Eskaneatzen" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "Berriro eskaneatu partekatutakoak" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Lagunen Partekatuak Eskaneatzen" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Berriro eskaneatu partekatutakoak" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Lagunen Partekatuak Eskaneatzen" #~ msgid "Set your personal ticker" #~ msgstr "Ezarri zure erloju pertsonala" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Begiratu Erabiltzaile baten Informazioa" #~ msgid "Add user 'user' to your user list" #~ msgstr "Gehitu 'erabiltzailea' erabiltzailea erabiltzaile-zerrendara" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Kendu 'erabiltzailea' erabiltzailea erabiltzaile-zerrendatik" #~ msgid "Request user info for user 'user'" #~ msgstr "Eskatu 'erabiltzailea' erabiltzailearen informazioa" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Kendu 'erabiltzailea' erabiltzailea erabiltzaile-zerrendatik" #, fuzzy #~ msgid "/ignore" #~ msgstr "Ezikusi" #, fuzzy #~ msgid "/unignore" #~ msgstr "Ezikusi" #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "Ezin da konfigurazio-fitxategiaren babeskopia egin, errorea: %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Ezin da konfigurazio-fitxategia izenez aldatu, errorea: %s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Bezeroak konexioa itxi du: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Zerbitzariak 10. aldiz eman du 0 atakaren berri %(user)s " #~ "erabiltzailearentzat, bertan behera uzten" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Zerbitzariak zero ez den atakaren berri eman du %(user)s " #~ "erabiltzailearentzat %(tries)i saiakeren ondoren" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "" #~ "Zerbitzariak 0 atakaren berri eman du %(user)s erabiltzailearentzat, " #~ "berriro saiatzen" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Ezin da saioa hasi, arrazoia: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Beste norbait ezizen berdinarekin ari da saioa hasten, zerbitzariak " #~ "deskonektatu egingo gaitu" #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "%(ip)s:%(port)s IPa %(user)s erabiltzailea ordeztu nahian dabil bezero-" #~ "eskaera batekin, blokeatzen %(real_ip)s IParekin bat ez datorrelako" #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s UserInfo eskaera bat egitetik blokeatzen, balizko ordezte " #~ "saiakera %(ip)s IP helbidetik, %(port)s ataka" #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "%s UserInfo eskaera bat egitetik blokeatzen, balizko ordezte saiakera" #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "%(user)s debekatuta dago baina UserInfo eskaera bat egiten ari da" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s BrowseShares eskaera bat egiten ari da, balizko ordezte saiakera " #~ "blokeatzen %(ip)s IP helbidetik, %(port)s ataka" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s BrowseShares eskaera bat egiten ari da, balizko ordezte saiakera " #~ "blokeatzen" #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s BrowseShares eskaera bat egiten ari da" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Ezezaguna tunel bihurtutako mezua: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Partekatutakoen datu-baseak hondaturik dagoela dirudi, zure partekatutako " #~ "fitxategiak berriro eskaneatu" #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Mezu hutsa egin da, %s klasea" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Ezin dira sintaktikoki analizatu sarrerako mezuak, %s klasea" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Ezin da %s konexio mota kudeatu" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "Mezua ezin da bidali itxitako konexioan zehar: %(type)s %(msg_obj)s" #, python-format #~ msgid "Major Socket Error: Networking terminated! %s" #~ msgstr "Socket Errore Nagusia: Saretzea amaiturik! %s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Sarrerako iragazkia: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Huts egindako deskarga berriro saiatzen: %(user)s erabiltzailea, %(file)s " #~ "fitxategia" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "" #~ "Lortuta %s transferentziaren eskaera baina ezin da eskatzailea zehaztu" #~ msgid "[Automatic Message] " #~ msgstr "[Mezu Automatikoa] " #~ msgid "You are not allowed to send me files." #~ msgstr "Ez duzu baimenik niri fitxategiak bidaltzeko." #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Transferentzia erantzun ezezaguna: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Deskarga amaituta: %(file)s" #~ msgid "(friend)" #~ msgstr "(laguna)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Igoera amaituta: %(user)s erabiltzailea, %(file)s fitxategia" #~ msgid "Get user i_nfo" #~ msgstr "Erabiltzailearen i_nformazioa eskuratu" #~ msgid "_Add user to list" #~ msgstr "Gehitu er_abiltzaile zerrendara" #~ msgid "_Ban this user" #~ msgstr "_Debekatu erabiltzaile hau" #~ msgid "_Ignore this user" #~ msgstr "Ez_ikusi erabiltzaile hau" #~ msgid "Clear finished/aborted" #~ msgstr "Garbitu amaitutakoak/utzitakoak" #~ msgid "Clear aborted" #~ msgstr "Garbitu utzitakoak" #~ msgid "Clear queued" #~ msgstr "Garbitu ilarakoak" #~ msgid "Abor_t" #~ msgstr "Abor_tatu" #~ msgid "Directory" #~ msgstr "Direktorioa" #~ msgid "Warning" #~ msgstr "Oharra" #~ msgid "User info" #~ msgstr "Erabiltzaile-informazioa" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Lagunen Partekatutakoak eskaneatzea hasi da" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Lagunen Partekatutakoak eskaneatzea amaitu da" #~ msgid "Rescanning finished" #~ msgstr "Berriro eskaneatzea amaitu da" #~ msgid "Send to tray" #~ msgstr "Bidali Erretilura" #~ msgid "I like" #~ msgstr "Gustoko dut" #~ msgid "I _don't like this" #~ msgstr "E_z dut gustoko hau" #~ msgid "Ban this user" #~ msgstr "Debekatu erabiltzaile hau" #~ msgid "Ignore this user" #~ msgstr "Ezikusi erabiltzaile hau" #~ msgid "In queue" #~ msgstr "Ilaran" #~ msgid "Warning: Bad Username" #~ msgstr "Oharra: Erabiltzaile-izen txarra" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "" #~ "None erabiltzaile-izena ez da pasahitz on bat, mesedez aukeratu beste bat." #~ msgid "Warning: Invalid ports" #~ msgstr "Oharra: Baliogabeko atakak" #~ msgid "Client ports are invalid." #~ msgstr "Bezeroaren atakak baliogabeak dira." #~ msgid "Users in list" #~ msgstr "Zerrendako erabiltzaileei" #, python-format #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "Segurtasun Arriskua: ez zenuke %s direktorioa partekatu behar!" #~ msgid "Ignore user..." #~ msgstr "Ezikusi erabiltzailea..." #~ msgid "Ban user..." #~ msgstr "Debekatu erabiltzailea..." #~ msgid "Server" #~ msgstr "Zerbitzaria" #~ msgid "Geo Block" #~ msgstr "Blokeo Geografikoa" #~ msgid "URL Catching" #~ msgstr "URL Harrapaketa" #~ msgid "Initializing transfer" #~ msgstr "Transferentzia abiarazten" #~ msgid "Waiting for peer to connect" #~ msgstr "Konektatzeko bezeroaren zai" #~ msgid "Getting address" #~ msgstr "Helbidea eskuratzen" #~ msgid "Lookup a User's IP" #~ msgstr "Begiratu Erabiltzaile baten IP-a" #~ msgid "Directories" #~ msgstr "Direktorioak" #~ msgid "Download r_ecursive to..." #~ msgstr "Deskargatu _errekurtsiboki hona..." #~ msgid "Upload Directory to..." #~ msgstr "Igo direktorioa hona..." #, python-format #~ msgid "Speed: %s" #~ msgstr "Abiadura: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Fitxategiak: %s" #~ msgid "Hates" #~ msgstr "Gorroto du" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Guztira baimendutako igoerak: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Erretenak libre: %s" #, python-format #~ msgid "%s" #~ msgstr "%s" #~ msgid "Log" #~ msgstr "Erregistroa" #~ msgid "Clear Queued" #~ msgstr "Garbitu Ilarakoak" #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Bidali mezu-pribatua erabiltzaileari zuzenean (bezero gehienek ez dute " #~ "onartzen)" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Guztira baimendutako igoerak: ezezaguna" #~ msgid "Slots free: unknown" #~ msgstr "Erretenak libre: ezezaguna" #~ msgid "Queue size: unknown" #~ msgstr "Ilararen tamaina: ezezaguna" #~ msgid "Speed: unknown" #~ msgstr "Abiadura: ezezaguna" #~ msgid "Files: unknown" #~ msgstr "Fitxategiak: ezezaguna" #~ msgid "Directories: unknown" #~ msgstr "Direktorioa: ezezaguna" #~ msgid "Accepts Uploads from:" #~ msgstr "Onartu Igoerak honengandik:" #~ msgid "Add..." #~ msgstr "Gehitu..." #~ msgid "About search filters" #~ msgstr "Bilaketa iragazkien inguruan" #~ msgid "_Modes" #~ msgstr "_Moduak" #~ msgid "_Private Chat" #~ msgstr "Berriketa _Pribatua" #~ msgid "Buddy _List" #~ msgstr "La_gunen Zerrenda" #~ msgid "_Interests" #~ msgstr "_Zaletasunak" #~ msgid "About _chat room commands" #~ msgstr "_Berriketa geletako komandoei buruz" #~ msgid "About _private chat commands" #~ msgstr "Berriketa _pribatuko komandoei buruz" #~ msgid "About _search filters" #~ msgstr "_Bilaketa iragazkiei buruz" #~ msgid "Toggle away after " #~ msgstr "Txandakatu kanpoko egoera " #~ msgid "Username Font Style:" #~ msgstr "Erabiltzaile Letra tipo Estiloa:" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Blokeatu sarrerako fitxategiak (desgaitu NFS erabiltzeko)" #~ msgid "" #~ "The users will be able to send you files. These files will be downloaded " #~ "into the Buddy Uploads subdirectory in your Download directory" #~ msgstr "" #~ "Erabiltzaileak zuri fitxategiak bidaltzeko gai izango dira. Fitxategi " #~ "horiek Deskarga direktorioko Lagunen Igoerak azpidirektorioan " #~ "deskargatuko dira" #~ msgid "Decimal separator:" #~ msgstr "Hamartarren bereizlea:" #~ msgid "Enable geographical blocker" #~ msgstr "Gaitu blokeatzaile geografikoa" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "Paranoia geografikoa (blokeatu ebatzi ezin diren IP-ak)" #~ msgid "Trayicon" #~ msgstr "Erretilu-ikonoa" #~ msgid "Online:" #~ msgstr "Linean:" #~ msgid "Away:" #~ msgstr "Kanpoan:" #~ msgid "Offline:" #~ msgstr "Lineaz kanpo:" #~ msgid "Hilite:" #~ msgstr "Nabarmendu:" #~ msgid "Status" #~ msgstr "Egoera" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Azken berriketa mezu pribatuak berriz ireki" #~ msgid "Legend:" #~ msgstr "Historia:" #~ msgid "Example:" #~ msgstr "Adibidea:" #~ msgid "Send out a max of" #~ msgstr "Bidali gehienez" #~ msgid "Filter out:" #~ msgstr "Irteerako iragazkia:" #~ msgid "Filter in:" #~ msgstr "Sarrerako iragazkia:" #~ msgid "" #~ "If buddy shares are enabled, they will be shared. Otherwise normal shares " #~ "will be used." #~ msgstr "" #~ "Lagun partekatzea gaiturik badago, orduan hori partekatuko da. Bestela " #~ "partekatze normala erabiliko da." #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "" #~ "Erabiltzaileei fitxategiak banaka bidaliko zaizkie eta gero beste " #~ "erabiltzaile bat aukeratuko da" #~ msgid "KBytes/sec" #~ msgstr "KByte/seg" #~ msgid "Megabytes" #~ msgstr "Megabyte ilaratu ditzake" #~ msgid "Enable URL catching" #~ msgstr "Gaitu URL harrapaketa" #~ msgid "Humanize slsk:// urls" #~ msgstr "Giza kutsua eman slsk:// URL-ei" nicotine-plus-3.3.4/po/fi.po000066400000000000000000007473151461625273200157170ustar00rootroot00000000000000# Copyright (C) 2006-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-04-06 14:34+0000\n" "Last-Translator: Mat \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 #, fuzzy msgid "Soulseek Client" msgstr "Soulseek-asiakasohjelma" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 #, fuzzy msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Graafinen asiakasohjelma Soulseek vertaisverkolle" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek;Nicotine+;jakaminen;keskustelu;viestittely;P2P;vertaisverkko;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Graafinen asiakasohjelma Soulseek-verkolle" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 #, fuzzy msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ on graafinen asiakasohjelma Soulseek vertaisverkolle." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ pyrkii olemaan kevyt, miellyttävä, ilmainen ja avoimen lähdekoodin " "(FOSS) vaihtoehto viralliselle Soulseek-asiakasohjelmalle, tarjoten samalla " "kattavan valikoiman ominaisuuksia." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Etsi tiedostoja" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Lataukset" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Selaa Shares" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Yksityisviestit" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 #, fuzzy msgid "Nicotine+ Team" msgstr "Nicotine+-tiimi" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Verkkosivu: %s" #: pynicotine/__init__.py:56 #, fuzzy msgid "show this help message and exit" msgstr "näytä tämä ohjeviesti ja poistu" #: pynicotine/__init__.py:59 #, fuzzy msgid "file" msgstr "tiedosto" #: pynicotine/__init__.py:60 #, fuzzy msgid "use non-default configuration file" msgstr "käytä ei-oletusarvoista konfiguraatiotiedostoa" #: pynicotine/__init__.py:63 #, fuzzy msgid "dir" msgstr "hakemisto" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "vaihtoehtoinen hakemisto käyttäjätiedoille ja liitännäisille" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "käynnistä ohjelma ilman ikkunan näyttämistä" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "sidotaan socketit annettuun ip-osoitteeseen (hyödyllinen VPN:lle)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "portti" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "kuuntele annetussa portissa" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "skannaa jaetut tiedostot uudelleen" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "" "käynnistä ohjelma päättymättömässä tilassa (ei graafista käyttöliittymää)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "näytä versio ja poistu" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Käytät tuettamatonta Python-versiota (%(old_version)s).\n" "Sinun tulisi asentaa Python %(min_version)s tai uudempi." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Shares-tiedostojen skannaus epäonnistui. Sulje muut Nicotine+-instanssit ja " "yritä uudelleen." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "%(user)s on poissa" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "%(user)s on paikalla" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "%(user)s on offline-tilassa" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Kaverin tila" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Sinut on lisätty yksityiseen huoneeseen: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Keskusteluviesti käyttäjältä '%(user)s' huoneessa '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Ei voi luoda hakemistoa '%(path)s', virheilmoitus %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Virhe varmuuskopioidessa asetuksia: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Varmuuskopio tallennettu kohteeseen: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Ladataan %(program)s %(version)s" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Lopetetaan %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "lopetetaan" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "sovellus sulkeutuu" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Lopeta %(program)s %(version)s!" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "Sinun täytyy määrittää käyttäjänimi ja salasana ennen yhdistämistä…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Virhe: Lataussuodin epäonnistui! Tarkista suotimet. Syy: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Virhe: %(num)d Lataussuotimet epäonnistuivat! %(error)s " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s ladattu palvelusta %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Tiedosto ladattu" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Suoritettu: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Suorittaminen '%(command)s' epäonnistui: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s ladattu käyttäjältä %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Kansio ladattu" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Suoritettu kansiolle: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Ei voitu siirtää '%(tempfile)s' kohteeseen '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Latauskansion virhe" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Lataus valmis: käyttäjä %(user)s, tiedosto %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Lataus keskeytetty, käyttäjä %(user)s, tiedosto %(file)s" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Latauksen I/O-virhe: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Ei saa yksinomaista lukitusta tiedostoon - I/O -virhe: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Tiedostoa ei voi tallentaa kohteeseen %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Lataus aloitettu: käyttäjä %(user)s, tiedosto %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Ei löydy %s, asenna se." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Ei graafista ympäristöä saatavilla, käytetään päättymätöntä (ei GUI) tilaa" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Yhdistä" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Katkaise yhteys" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "Soulseek _oikeudet" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Asetukset" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Lopeta" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "Selaa _julkisia Shares" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Selaa _Kaverin Shares" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Selaa _Luotettuja Jaettuja" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "_Uudelleenskannaa Shares" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "Määritä _Shares" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Näppäinoikotiet" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Asetusapulainen" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "Siirtojen tilastot" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Ilmoita _virheestä" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Paranna k_äännöksiä" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "_Tietoja Nicotine+ -ohjelmasta" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Tiedosto" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Shares" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Apua" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "_Selaa Jakoja" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Ilmoituksen näyttäminen ei onnistu: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Olet edelleen lähettämässä tiedostoja. Haluatko varmasti poistua?" #: pynicotine/gtkgui/application.py:534 #, fuzzy msgid "Wait for uploads to finish" msgstr "Odotetaan latausten valmistumista" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Haluatko varmasti lopettaa?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "_Ei" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "_Suorita taustalla" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Lopeta Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Jaot eivät ole saatavilla" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Varmista, että ulkoiset levyt on kytketty ja kansioiden oikeudet ovat oikein." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Peruuta" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Yritä uudelleen" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "Pakota uudelleenskannaus" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Virheellinen salasana" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Käyttäjä %s on jo olemassa, ja antamasi salasana on virheellinen. Valitse " "toinen käyttäjänimi, jos kirjaudut sisään ensimmäistä kertaa." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Vaihda _kirjautumistiedot" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Lähetä viesti lataaville käyttäjille" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Lähetä yksityisviesti kaikille käyttäjille, jotka lataavat sinulta:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "_Lähetä viesti" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Viesti kavereille" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Lähetä yksityisviesti kaikille online-kavereille:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Valitse tallennettu Shares-listatiedosto" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kriittinen virhe" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ on kohdannut kriittisen virheen ja sen täytyy sulkeutua. Ole hyvä " "ja kopioi seuraava viesti ja sisällytä se vikailmoitukseen:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Lopeta Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "_Kopioi & Raportoi Bugi" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Tila" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 #, fuzzy msgid "Country" msgstr "Maa" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Käyttäjä" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Nopeus" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Tiedosto(a)/(t)" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Luotettu" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Ilmoita" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Priorisoitu" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Viimeksi nähty" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Huomio" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Lisää käyttäjä _muistio…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Poista" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Ei koskaan nähty" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Lisää käyttäjämuistiinpano" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Lisää muistiinpano käyttäjästä %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "Lisää" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Luo uusi huone?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Haluatko varmasti luoda uuden huoneen \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Tee huoneesta yksityinen" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Etsi käyttäjän tiedostoja" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Etsi…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopioi" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopioi kaikki" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Tyhjennä toimintanäkymä" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "Poistu huoneesta" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Kopioi linkki" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Näytä huoneen loki" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Poista huoneen loki…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Tyhjennä viestinäkymä" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s on liittynyt huoneeseen" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s mainitsi sinut huoneessa %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mainitsi %(user)s huoneessa %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Viesti käyttäjältä %(user)s huoneessa %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s on lähtenyt huoneesta" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s on mennyt pois" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s on palannut" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Poistetaanko kirjatut viestit?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Haluatko varmasti poistaa pysyvästi kaikki kirjatut viestit tästä huoneesta?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Tietoja" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Verkkosivusto" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Virhe tarkistettaessa uusinta versiota: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, fuzzy, python-format msgid "New release available: %s" msgstr "Uusi versio saatavilla: %s" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Ajan tasalla" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Tarkistetaan uusinta versiota…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "Asennusapuri" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtuaalikansio" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Kansio" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "_Valmis" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Seuraava" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Lisää jaettu kansio" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Muokkaa jaettua kansiota" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Anna uusi virtuaalinen nimi '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "_Muokkaa" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Tiedoston ominaisuudet" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Faili omadused (%(num)i / %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Tiedoston ominaisuudet (%(num)i / %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "_Käytä" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Lisää…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Muokkaa…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "%s Asetukset" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Lisää kohde" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Muokkaa kohdetta" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 #, fuzzy msgid "Unknown" msgstr "Tuntematon" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Tarkista portin tila" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, portti %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Salasanan vaihto hylätty" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Anna uusi salasana Soulseek-tilillesi:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Olet tällä hetkellä kirjautunut ulos Soulseek-verkosta. Jos haluat vaihtaa " "olemassa olevan Soulseek-tilin salasanan, sinun täytyy olla kirjautuneena " "kyseiselle tilille." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Anna salasana, jota käytetään kirjautumisessa:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Vaihda salasana" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "_Muuta" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Ei kukaan" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Kaikki" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Kaverit" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Luotetut kaverit" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Ei mitään" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Avaa tiedosto" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "Avaa tiedostonhallinnassa" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Etsi" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Tauko" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Jatka" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "Selaa kansiota" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntaksi: Ei oteta huomioon kirjainkokoa. Jos käytössä, Pythonin " "säännöllisiä lausekkeita voidaan käyttää, muuten vain jokerimerkki * tuetaan." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Suodin" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Lisää lataussuodatin" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Syötä uusi lataussuodin:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Ota käyttöön säännölliset lausekkeet" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Muokkaa lataussuodatinta" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Muokkaa seuraavaa lataussuodatinta:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Epäonnistui! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Suodattimet onnistuivat" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 #, fuzzy msgid "Public" msgstr "Julkinen" #: pynicotine/gtkgui/dialogs/preferences.py:612 #, fuzzy msgid "Accessible To" msgstr "Pääsy" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Keskeytä" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Yritä uudelleen" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Vuorottelu" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Ensimmäinen sisään, ensimmäinen ulos" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Käyttäjänimi" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "IP-osoite" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ohita käyttäjä" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Anna sen käyttäjän nimi, jonka haluat jättää huomiotta:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Ohita ip-osoite" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Anna ip-osoite, jonka haluat ohittaa:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* on jokerimerkki" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Estä käyttäjä" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Anna käyttäjän nimi, jonka haluat estää:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Estä ip-osoite" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Anna ip-osoite, jonka haluat estää:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 #, fuzzy msgid "Format codes" msgstr "Muotoilukoodit" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Kuvio" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Korvaus" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Sensuurimalli" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Anna kuvio, jonka haluat sensuroida. Lisää välit kuviolle, jos et halua " "vastaavan sanojen sisällä olevia merkkijonoja (ei välttämättä toimi rivien " "alussa ja lopussa)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Muokkaa sensuroitua mallia" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Lisää korvaus" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Anna tekstikuvio ja mitä sillä korvataan:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Muokkaa korvausta" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Järjestelmän oletus" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Näytä vahvistusikkuna" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Aja taustalla" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "lihavoitu" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "kursiivi" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "alleviivaus" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normaali" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Erillinen Kaverit-välilehti" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Sivupalkki Keskusteluhuoneet-välilehdellä" #: pynicotine/gtkgui/dialogs/preferences.py:1690 #, fuzzy msgid "Always visible sidebar" msgstr "Aina näkyvä sivupalkki" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Ylös" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Alaosa" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Vasen" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Oikea" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Linjalla" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Poissa" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Poissa linjalta" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Välilehti vaihdettu" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Välilehden korostus" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Ikkuna" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Online (Ilmoitusalue)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Poissa (Ilmoitusalue)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Offline (Ilmoitusalueella)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Viesti (Ilmoitusalue)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokolla" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Komento" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Lisää URL-käsittelijä" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Anna protokolla ja komento URL-käsittelijälle:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Muokkaa komentoa" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Anna uusi komento protokollalle %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Käyttäjätunnus;APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Musiikkisoitin (esim. amarok, audacious, exaile); jätä tyhjäksi " "automaattisen tunnistuksen käyttämiseksi:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Käyttäjänimi: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Komento:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Otsikko" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Nyt soi (tyypillisesti \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Artisti" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Kesto" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bittinopeus" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "Kommentti" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Albumi" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Raidan numero" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "Vuosi" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Tiedostonimi (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Ohjelma" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Käytössä" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Liitännäinen" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Ei valittua lisäosaa" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Verkko" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Käyttöliittymä" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Jaot" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Lähtevät" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Haut" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Käyttäjäprofiili" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Chats" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Nyt soi" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Kirjaus" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Estetyt käyttäjät" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Estetyt käyttäjät" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Lisäosat" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "URL-käsittelijät" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Asetukset" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Valitse tiedostonimi asetusten varmuuskopiolle" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Siirtojen tilastot" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Yhteensä alkaen %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Nollaa siirtojen tilastotiedot?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Haluatko varmasti nollata siirtojen tilastot?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "Toivelista" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Toive" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "Etsi kohdetta" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Muokkaa toivelistaa" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Anna uusi arvo toiveelle '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Tyhjennä toivelista?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Haluatko varmasti tyhjentää toivelistan?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Polku" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Jatka" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "_Tauko" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Valmis / Suodatettu" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Valmis" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Keskeytetty" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Suodatettu" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Poistettu" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "Jonossa…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Kaikki…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Tyhjennä jonossa olevat lataukset" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Haluatko varmasti tyhjentää kaikki jonossa olevat lataukset?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Tyhjennä kaikki lataukset" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Haluatko varmasti tyhjentää kaikki lataukset?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Lataa %(num)i tiedostoa?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Haluatko varmasti ladata %(num)i tiedostoa käyttäjältä %(user)s kansiosta " "%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Latauskansio" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Tykkäykset" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Ei-tykkäykset" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Arvosana" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Kohde" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "Suositukset kohteelle" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "Pidän tästä" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "En _pidä tästä" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Suositukset" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Samanhenkiset käyttäjät" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Suositukset (%s)" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Samankaltaiset käyttäjät (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Yksityinen viesti käyttäjältä %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Toivelistan tuloksia löydetty" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Käyttäjäprofiilit" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Keskusteluhuoneet" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Kiinnostuksen kohteet" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Keskustelu" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "[Debug] Yhteydet" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "[Debug] Viestit" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "[Debug] Siirrot" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "[Debug] Sekalaiset" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "_Etsi…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "_Kopioi" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopioi _kaikki" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Näytä _virhelokit" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Näytä _siirtolokit" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "_Lokikategoriat" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Tyhjennä lokinäkymä" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Downloads: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Lataukset: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Valmistellaan Shares" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Skannataan jakoja" #: pynicotine/gtkgui/mainwindow.py:1236 #, fuzzy msgid "Quitting..." msgstr "Lopetetaan..." #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Viimeisin viesti" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Huone" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Käyttäjää" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Liity huoneeseen" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Poistu huoneesta" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Luovu yksityisestä huoneesta" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Peru huoneen jäsenyys" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Sulje kaikki välilehdet…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "_Sulje välilehti" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Näytä keskusteluloki" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Poista keskusteluloki…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Käyttäjätoiminnot" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Haluatko todella poistaa pysyvästi kaikki kirjatut viestit tältä käyttäjältä?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "* Viestit, jotka on lähetetty ollessasi offline-tilassa" #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "_Globaali" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "_Kaverit" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "_Huoneet" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "_Käyttäjä" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "Jonossa" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Tiedostotyyppi" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Tiedoston nimi" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Koko" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Laatu" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopioi _tiedostopolku" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopioi_URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Kopioi kansion URL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Lataa tiedosto(t)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Lataa tiedosto(t) _kohteeseen…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Lataa _Kansio(t)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Lataa kansio(t) kohteeseen…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Näytä käyttäjäprofiili" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Selaa kansiota" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "Tiedoston ominaisuudet" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopioi hakutermi" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Tyhjennä kaikki tulokset" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Tyhjennä suodattimet" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Palauta suodattimet" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[YKSITYINEN] %s" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Tulosten suodattimet [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Tulosten suodattimet" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "%d aktiivista suodatinta" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Lisää toivomus" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Poista toive" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Valitse käyttäjän tulokset" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Yhteensä: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Tulokset" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Valitse kohdekansio tiedostoille" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Valitse kohdekansio" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Jonotettu" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "Jonossa (priorisoitu)" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "Jonossa (etuoikeutettu)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Haetaan tila" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Siirtää" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Yhteys katkaistu" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Yhteys aikakatkaistu" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Käyttäjä kirjautui ulos" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Peruutettu" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Latauskansion virhe" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Paikallinen tiedostovirhe" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Estetty" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Tiedostoa ei jaettu" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Odottava sammutus" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Tiedostonlukuvirhe" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Jono" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Prosenttia" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Kulunut aika" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Aikaa jäljellä" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Avaa tiedosto" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Avaa tiedostonhallinnassa" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "Haku" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Tyhjennä kaikki" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Valitse käyttäjän siirrot" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "Keskeytä" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Valmis / Peruutettu / Epäonnistunut" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Valmiit / Peruutetut" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Epäonnistui" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Käyttäjä kirjautui ulos" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Tyhjennä jonossa olevat lähetykset" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Haluatko varmasti tyhjentää kaikki jonossa olevat Uploads?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Tyhjennä kaikki Uploads" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Haluatko varmasti tyhjentää kaikki Uploadsit?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Tallenna Shares-lista levylle" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Lataa kansio ja alikansiot…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopioi _kansion polku" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Lataa kansio ja alikansiot" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Lataa kansio ja alikansiot…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Tiedostonimi" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Lähetä tiedosto(t)…" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Lähetyskansio…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Lataa kansio _kohteeseen…" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Käyttäjän jaettujen tiedostojen lista on tyhjä. Joko käyttäjä ei jaa mitään " "tai hän jakaa tiedostoja yksityisesti." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Jaettujen tiedostojen pyytäminen käyttäjältä epäonnistui. Joko käyttäjä on " "offline-tilassa, kuunteluportit ovat kiinni molemmilla osapuolilla tai " "kyseessä on väliaikainen yhteysongelma." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Valitse kohde useiden kansioiden lataamiselle" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Lähetä kansio (alikansioineen) käyttäjälle" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Lähetä kansio käyttäjälle" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Anna käyttäjän nimi, jolle haluat ladata:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Lähetä" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Valitse kohdekansio tiedostoille" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Lähetä tiedosto(t) käyttäjälle" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Kopioi kuva" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Tallenna kuva" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Käyttäjän %(user)s kuvan lataus epäonnistui: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Käyttäjän tiedustelua ei voi suorittaa. Joko teillä molemmilla on suljettu " "kuunteluportti, käyttäjä on offline-tilassa tai kyseessä on väliaikainen " "yhteysongelma." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Poista kaveri" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Lisää _Kaveri" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Poista käyttäjän esto" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Poista käyttäjän estäminen" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Kyllä" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "No" msgstr "Ei" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Ole hyvä ja anna päivien määrä." #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "Lahjoita Soulseek-etuoikeuksia käyttäjälle %(user)s (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "%(days)s päivää jäljellä" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Anna etuoikeuksia" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "_Annan etuoikeuksia" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Sulje" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Kyllä" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Valitse tiedosto" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Valitse kansio" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "_Valitse" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Valitse kuva" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Kaikki kuvat" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Tallenna nimellä…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Ei mitään)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "Sulje välilehti" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Sulje kaikki välilehdet?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Haluatko varmasti sulkea kaikki välilehdet?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "%i lukematonta välilehteä" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Kaikki välilehdet" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "Avaa uudelleen suljettu välilehti" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s tiedosto(a) valittu" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Selaa tiedostoja" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "_Lisää kaveri" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Näytä ip-osoite" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Yksityishuoneet" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Poista yksityisestä huoneesta %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Lisää yksityiseen huoneeseen %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Poista operaattorin roolista %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Lisää operaattoriksi %s" #: pynicotine/gtkgui/widgets/textview.py:452 #, fuzzy msgid "--- old messages above ---" msgstr "--- vanhat viestit yllä ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Suoritettava tiedosto" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Kuva" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arkisto" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Sekalaiset" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Asiakirja" #: pynicotine/gtkgui/widgets/theme.py:216 #, fuzzy msgid "Text" msgstr "Teksti" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Virhe ladattaessa mukautettua kuvaketta %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Piilota Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Näytä Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Sarake #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Ryhmittelemättömät" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Ryhmittele kansion mukaan" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Ryhmittele käyttäjän mukaan" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Haluatko varmasti poistua? %s" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "Käyttäjä %s on jo olemassa, ja syöttämäsi salasana on virheellinen." #: pynicotine/headless/application.py:80 #, fuzzy, python-format msgid "Type %s to log in with another username or password." msgstr "" "Kirjoita %s kirjautuaksesi sisään toisella käyttäjänimellä tai salasanalla." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Salasana: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Luodaksesi uuden Soulseek-tilin, täytä haluamasi käyttäjätunnus ja salasana. " "Jos sinulla on jo tili, täytä olemassa olevat kirjautumistietosi." #: pynicotine/headless/application.py:116 #, fuzzy msgid "The following shares are unavailable:" msgstr "Seuraavat jaot eivät ole saatavilla:" #: pynicotine/headless/application.py:122 #, fuzzy, python-format msgid "Retry rescan? %s" msgstr "Yritä uudelleenskannaus? %s" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Lokitiedostoon \"%(filename)s\" kirjoittaminen epäonnistui: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Lokitiedostoon %(path)s ei saada yhteyttä: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Yhdistyneet arabiemiirikunnat" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua ja Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktis" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentiina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Amerikan Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Itävalta" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Ahvenanmaa" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Azerbaidžan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnia & Hertsegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgia" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Saint-Barthélemy" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius ja Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brasilia" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahama" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Bouvetinsaari" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Valko-Venäjä" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kookossaaret (Keeling)" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Kongon demokraattinen tasavalta" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Keski-Afrikan tasavalta" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Sveitsi" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Norsunluurannikko" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cookinsaaret" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Kiina" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Kolumbia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Kuuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Kap Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Joulusaari" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Kypros" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Tšekki" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Saksa" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Tanska" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikaaninen tasavalta" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Algeria" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Viro" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egypti" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Länsi-Sahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Espanja" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopia" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Eurooppa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Suomi" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fidži" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandinsaaret (Malvinas)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronesia" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Färsaaret" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Ranska" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Iso-Britannia" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Ranskan Guayana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grönlanti" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Päiväntasaajan Guinea" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Kreikka" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Etelä-Georgia ja Eteläiset Sandwichsaaret" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heard ja McDonaldinsaaret" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroatia" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Unkari" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonesia" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irlanti" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Mansaari" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "Intia" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Brittiläinen Intian valtameren alue" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Islanti" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordania" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japani" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgisia" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kambodža" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komorit" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Saint Kitts ja Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Pohjois-Korea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Etelä-Korea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Caymansaaret" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazakstan" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Liettua" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Latvia" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libya" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Marokko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshallinsaaret" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Pohjois-Makedonia" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Pohjois-Mariaanit" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Malediivit" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Meksiko" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malesia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mosambik" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Uusi-Kaledonia" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolkinsaari" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Alankomaat" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norja" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Uusi-Seelanti" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Ranskan Polynesia" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua-Uusi-Guinea" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filippiinit" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Puola" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre & Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Palestiinan valtio" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugali" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Romania" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Venäjä" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudi-Arabia" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Salomonsaaret" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychellit" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Ruotsi" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Saint Helena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovenia" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Huippuvuoret ja Jan Mayen" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovakian tasavalta" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Etelä-Sudan" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "São Tomé ja Príncipe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Syyria" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turks- ja Caicossaaret" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Tšad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Ranskan eteläiset alueet" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Thaimaa" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadžikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Itä-Timor" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisia" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Türkiye" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad ja Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tansania" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "Yhdysvaltain pienet erillissaaret" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Yhdysvallat" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Pyhä istuin (Vatikaanivaltio)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent ja Grenadiinit" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Brittiläiset Neitsytsaaret" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Yhdysvaltain Neitsytsaaret" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis ja Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Etelä-Afrikka" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Sambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Teksti puheeksi -viestin muunto epäonnistui: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Anna sekä Last.fm-käyttäjätunnuksesi että API-avain" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Nyt soi -virhe" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Ei voitu yhdistää Audioscrobbleriin: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Ei voitu hakea viimeisintä kappaletta Audioscrobblerista: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Sopivaa MPRIS-soitinta ei löytynyt" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Löytyi useita MPRIS-soittimia: %(players)s. Käytetään: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automaattisesti tunnistettu MPRIS-soitin: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Jotain meni pieleen kysyttäessä %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Anna ListenBrainz-käyttäjänimesi" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Ei voitu yhdistää ListenBrainziin: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Näyttää siltä, että et kuuntele mitään juuri nyt" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Ei voitu hakea nykyistä kappaletta ListenBrainzista: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Verkkosuodattimet" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Listaa käytettävissä olevat komennot" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Yhdistä palvelimeen" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Katkaise yhteys palvelimeen" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Vaihda poissaoleva-status" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Hallitse lisäosia" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Tyhjennä chat-ikkuna" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Sano jotain kolmannessa persoonassa" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Ilmoita parhaillaan soiva kappale" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Liity keskusteluhuoneeseen" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Poistu keskusteluhuoneesta" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Sano viesti määritetyssä chat-huoneessa" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Avaa yksityinen keskustelu" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Sulje yksityinen keskustelu" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Pyydä käyttäjän asiakasohjelman versiota" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Lähetä yksityisviesti käyttäjälle" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Lisää käyttäjä kaverilistalle" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Poista kaveri kaverilistalta" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Selaa käyttäjän tiedostoja" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Näytä käyttäjäprofiilin tiedot" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Näytä ip-osoite tai käyttäjänimi" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Estä yhteydet käyttäjältä tai ip-osoitteesta" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Poista käyttäjä tai IP-osoite estolistalta" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Hiljennä viestit käyttäjältä tai ip-osoitteesta" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Poista käyttäjä tai ip-osoite estolistalta" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Lisää jako" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Poista jako" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Listaa jaot" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Uudelleenskannaa jakosi" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Aloita globaali tiedostohaku" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Etsi tiedostoja liittyneistä huoneista" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Etsi kaikkien kavereiden tiedostoja" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Etsi käyttäjän jaettuja tiedostoja" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Listataan %(num)i käytettävissä olevat komennot:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Listataan %(num)i käytettävissä olevaa komentoa, jotka vastaavat " "\"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Kirjoita %(command)s nähdäksesi samankaltaisia komentoja" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Kirjoita %(command)s nähdäksesi käytettävissä olevat komennot" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "Ei liittynyt huoneeseen %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, fuzzy, python-format msgid "Not messaging with user %s" msgstr "Ei viestintää käyttäjän %s kanssa" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Suljettu yksityinen keskustelu käyttäjältä %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Estetty %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Esto poistettu %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ohitettu %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Poistettu estolistalta %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, fuzzy, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s Shares näkyvillä (%(num_total)s määritetty)" #: pynicotine/plugins/core_commands/__init__.py:568 #, fuzzy, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Ei voi jakaa saavuttamatonta kansiota \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, fuzzy, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Lisätty %(group_name)s Share \"%(virtual_name)s\" (uudelleenskannaus " "vaaditaan)" #: pynicotine/plugins/core_commands/__init__.py:582 #, fuzzy, python-format msgid "No share with name \"%s\"" msgstr "Ei jakoa nimellä \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, fuzzy, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Poistettu jako \"%s\" (uudelleenskannaus vaaditaan)" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Ladataan lisäosajärjestelmää" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Lisäosaa %(name)s ei voitu ladata. Lisäosakansion nimi sisältää virheellisiä " "merkkejä: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Ristiriitainen %(interface)s-komento lisäosassa %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Ladattu lisäosa %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Lisäosan lataaminen epäonnistui %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Ladattu laajennus %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Lisäosan %(module)s purkaminen epäonnistui\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Lisäosa %(module)s epäonnistui virheellä %(errortype)s: %(error)s.\n" "Jäljitys: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Ei kuvausta" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Puuttuva %s argumentti" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Virheellinen argumentti, mahdolliset valinnat: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Käyttö: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Tuntematon komento: %(command)s. Kirjoita %(help_command)s nähdäksesi " "käytettävissä olevat komennot." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "UPnP-laitteita ei löytynyt" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Ulkoisen portin %(external_port)s uudelleenohjaus epäonnistui: " "%(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Ulkoinen portti %(external_port)s onnistuneesti ohjattu " "paikalliseen ip-osoitteeseen %(ip_address)s porttiin %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Yksityisviesti käyttäjältä '%(user)s': %(message)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Etsitään toivelistalla olevaa kohdetta \"%s\"" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Toivelistan odotusaika asetettu %s sekunniksi" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Käyttäjä %(user)s etsii \"%(query)s\", löytyi %(num)i tulosta" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Rakennetaan jakoja uudelleen…" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Skannataan Shares uudelleen…" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Uudelleenskannaus valmis: %(num)s kansiota löydetty" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Vakava virhe tapahtui uudelleenskannatessa Shares. Jos ongelma toistuu, " "poista %(dir)s/*.dbn ja yritä uudelleen. Jos se ei auta, ole hyvä ja lähetä " "vikailmoitus, johon on liitetty tämä pinorakenne: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Virhe tiedostoa %(path)s skannatessa: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Virhe skannattaessa kansiota %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Virhe tiedoston %(path)s metatietoja skannatessa: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Uudelleenskannaus keskeytetty, koska jaot eivät ole saatavilla: %s" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Käyttäjä %(user)s selaa jaettujen tiedostojesi listaa" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Jaetun kansion %(folder)s nouto epäonnistui: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Jakojen tietokantaa ei voitu lukea. Ole hyvä ja skannaa jaot uudelleen. " "Virhe: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Määritetty verkkoliitäntä '%s' ei ole käytettävissä" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Portin %(port)s kuuntelu ei onnistu. Varmista, ettei mikään muu sovellus " "käytä sitä, tai valitse toinen portti. Virhe: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Kuuntelee portissa: %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Ei voi muodostaa yhteyttä palvelimeen %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Yhdistetään uudelleen palvelimeen %i sekunnin kuluttua" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Yhdistetään %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Yhdistetty palvelimeen %(host)s:%(port)s, kirjaudutaan…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Yhteys palvelimeen %(host)s:%(port)s katkaistu" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Joku kirjautui Soulseek-tilillesi muualta" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Lähetys valmis: käyttäjä %(user)s, ip-osoite %(ip)s, tiedosto %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Lähtevä keskeytetty, käyttäjä %(user)s, tiedosto %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "Upload I/O-virhe: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Lähetys aloitettu: käyttäjä %(user)s, ip-osoite %(ip)s, tiedosto %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Ei voi luoda hakemistoa '%(folder)s', virheilmoitus %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Jakojen lataus levyltä epäonnistui: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Tallennettu käyttäjän '%(user)s' jaettujen tiedostojen lista kohteeseen " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Ei voi luoda hakemistoa '%(user)s', virheilmoitus %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Kuva tallennettu kohteeseen %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Kuvaa ei voi tallentaa kohteeseen %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Käyttäjä %(user)s katselee profiiliasi" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Yhteys palvelimeen epäonnistui. Syy: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Ei voi muodostaa yhteyttä" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Käyttäjän %s ip-osoitetta ei voi hakea, koska tämä käyttäjä on offline-" "tilassa" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Käyttäjän %(user)s ip-osoite: %(ip)s, portti %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek-ilmoitus" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i etuoikeutettua käyttäjää" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Sinulla ei ole Soulseek-etuoikeuksia. Kun etuoikeudet ovat voimassa, " "latauksesi asetetaan jonossa etusijalle verrattuna ei-etuoikeutettuihin " "käyttäjiin." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i päivää, %(hours)i tuntia, %(minutes)i minuuttia, %(seconds)i " "sekuntia Soulseek-etuoikeuksia jäljellä" #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Salasanasi on vaihdettu" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Salasana vaihdettu" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Tiedostopolkua %(path)s ei voi avata: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "URL-osoitetta %(url)s ei voi avata: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Tiedoston %(filename)s lukemisessa tapahtui virhe: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Yritetään ladata varmuuskopiota tiedostosta %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Tiedoston %(path)s varmuuskopiointi epäonnistui: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Tiedostoa %(path)s ei voi tallentaa: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Ei voitu palauttaa edellistä tiedostoa %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Lisää kaveri…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Etsi toimintalokia…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Etsi keskustelulokista…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Lähetä viesti…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Vaihda tekstistä puheeksi -toiminto" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Chat-huoneen komentojen ohje" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Loki" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Huoneen seinä" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Huoneen seinä" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Luonut" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Kääntäjä" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Lisenssi" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "_Edellinen" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Tervetuloa Nicotine+:aan" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "Aseta…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Jos haluamasi käyttäjänimi on jo varattu, sinua pyydetään vaihtamaan se." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 #, fuzzy msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Yhdistääksesi muihin Soulseek-käyttäjiin, reitittimesi kuunteluportti on " "ohjattava tietokoneellesi." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Jos kuunteluporttisi on suljettu, voit yhdistää vain käyttäjiin, joiden " "kuunteluportit ovat auki." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Tarvittaessa valitse eri kuunteluportti alla. Tämä voidaan tehdä myöhemmin " "myös asetuksissa." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Lataa tiedostot kansioon" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Jaa kansiot" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-käyttäjät voivat ladata jakamistasi tiedostoista. Osallistu " "Soulseek-verkon toimintaan jakamalla omia tiedostojasi ja uudelleenjakamalla " "muiden käyttäjien lataamiasi tiedostoja." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Olet valmis käyttämään Nicotine+ -ohjelmaa!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 #, fuzzy msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek on salaamaton protokolla, joka ei ole tarkoitettu turvalliseen " "viestintään." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Lahjoittamalla Soulseekille saat etuoikeuksia tietyn ajanjakson ajaksi. Jos " "sinulla on etuoikeuksia, latauksesi asetetaan jonossa etusijalle verrattuna " "käyttäjiin, joilla ei ole etuoikeuksia." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Edellinen tiedosto" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Seuraava tiedosto" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Nimi" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Viimeisin nopeus" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Vie…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Näppäinoikotiet" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Yleiset" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Yhdistä" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Katkaise yhteys" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Skannaa Shares uudelleen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Näytä lokipaneeli" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Vahvista lopetus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Poistu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Valikot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Avaa päävalikko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Avaa kontekstivalikko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Välilehdet" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Vaihda päävälilehteä" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Siirry edelliseen toissijaiseen välilehteen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Siirry seuraavaan sivuvälilehteen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Avaa uudelleen suljettu toissijainen välilehti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Sulje toissijainen välilehti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Listat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Kopioi valittu solu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Poista valittu rivi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Muokkaus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Leikkaa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Liitä" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Lisää emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Valitse kaikki" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Etsi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Etsi seuraava osuma" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Etsi edellinen osuma" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Tiedostonsiirrot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Jatka / Yritä uudelleen siirtoa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Keskeytä / Peru siirto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Lataa / Lähetä kohteeseen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "Tallenna lista levylle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Päivitä" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Laajenna / Supista kaikki" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Takaisin ylätasolle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Tiedostohaku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "Tulosten suodattimet" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Nykyinen istunto" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Valmiit lataukset" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Ladatun koon" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Valmiit Uploads" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Lähetetyn koon" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Yhteensä" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "Nollaa…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Toivelistalla olevia kohteita haetaan automaattisesti säännöllisin " "väliajoin, jotta harvinaisia tiedostoja voidaan löytää." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Lisää toive…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Tyhjennä kaikki…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Tyhjennä kaikki valmiit/suodatetut lataukset" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Tyhjennä valmiit" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Tyhjennä tietyt lataukset" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Tyhjennä _Kaikki…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Henkilökohtaiset kiinnostuksen kohteet" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Lisää jotain, mistä pidät…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Henkilökohtaiset inhokit" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Lisää jotain, mistä et pidä…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Päivitä suositukset" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Päävalikko" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Huone…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Käyttäjänimi…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Hakusana…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Hakumallit: sanalla = termi, ilman sanaa = -termi, osittainen sana = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Hakualue" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Toivelista" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Määritä haut" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Syötä hakusana etsiäksesi tiedostoja, joita muut käyttäjät jakavat Soulseek-" "verkossa" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Tiedostoryhmitystila" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Määritä lataukset" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Täällä näet muiden käyttäjien lataamasi tiedostot, jotka voit keskeyttää ja " "jatkaa tarpeen mukaan" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Määritä Uploads" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Käyttäjien yritykset ladata jaetut tiedostosi ovat jonossa ja hallinnassa " "täällä" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "_Avaa lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "Avaa paikallisesti tallennettu jaettujen tiedostojen lista" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "Määritä Shares" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Anna käyttäjän nimi, jonka jaettuja tiedostoja haluat selata. Voit myös " "tallentaa listan levylle ja tarkastella sitä myöhemmin." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Henkilökohtainen profiili" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Määritä tili" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Syötä käyttäjän nimi nähdäksesi heidän käyttäjäkuvauksensa, tiedot ja " "henkilökohtaisen kuvan" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Keskustelu_historia" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Määritä keskustelut" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Anna käyttäjän nimi aloittaaksesi yksityisen tekstikeskustelun heidän " "kanssaan" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "_Lähetä viesti kaikille" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Määritä sivuutettavat käyttäjät" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Lisää käyttäjiä kavereiksi jakamaan tiettyjä kansioita heidän kanssaan ja " "saadaksesi ilmoituksia, kun he ovat online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Liity tai luo huone…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Liity olemassa olevaan keskusteluhuoneeseen tai luo uusi huone " "keskustellaksesi muiden Soulseek-käyttäjien kanssa" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Määritä käyttäjäprofiili" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Haku loki…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Yhteydet" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Lataaminen (Nopeus / Aktiiviset käyttäjät)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Lähetetään (Nopeus / Aktiiviset käyttäjät)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Etsi keskusteluhistoriasta…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Latausnopeusrajoitukset" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Rajoittamaton latausnopeus" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Käytä latausnopeuden rajoitusta (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Käytä vaihtoehtoista latausnopeuden rajoitusta (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Etsi huoneita…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Päivitä huoneet" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Näytä julkisen keskusteluhuoneen viestien syöte" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "Hyväksy yksityisen huoneen kutsut" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Kirjoita yksittäinen viesti, jonka muut huoneen käyttäjät voivat lukea " "myöhemmin. Viimeisimmät viestit näkyvät ylhäällä." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Aseta seinäviesti…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Hakutulosten suodattimet" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Hakutulosten suodattimia käytetään tarkentamaan, mitkä hakutulokset " "näytetään." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Jokaisella hakutulosten listalla on oma suodattimensa, jonka voi paljastaa " "vaihtamalla Tulosten Suodattimet -painiketta. Suodatin koostuu useista " "kentistä, ja kaikki ne otetaan käyttöön painamalla Enter-näppäintä missä " "tahansa niiden kentistä. Suodatus sovelletaan välittömästi jo " "vastaanotettuihin tuloksiin sekä niihin, jotka ovat vielä tulossa." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Kuten nimi viittaa, hakutulosten suodatin ei voi laajentaa alkuperäistä " "hakua, se voi vain kaventaa sitä. Laajentaaksesi tai muuttaaksesi " "hakutermejä, tee uusi haku." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Tulossuodattimen käyttö" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Sisällytä teksti" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Tiedostot, kansiot ja käyttäjänimet, jotka sisältävät tämän tekstin, " "näytetään." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Kirjainkoko ei ole merkitsevä, mutta sanojen järjestys on tärkeä: " "'Instrumental Remix' ei näytä tuloksia 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Käytä | (eli putkimerkkejä) erottaaksesi useita tarkkoja ilmaisuja. " "Esimerkki:\n" " Remix|Dub Mix|Instrumentaali" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Poissulje teksti" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Kuten yllä, mutta tiedostot, kansiot ja käyttäjänimet suodatetaan pois, jos " "teksti täsmää." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Suodattaa tiedostoja niiden tiedostopäätteen perusteella." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Voit määrittää useita tiedostopäätteitä, mikä puolestaan paljastaa enemmän " "tuloksista. Esimerkki:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "On myös mahdollista kääntää suodatin toisin päin, määrittelemällä " "tiedostopäätteet, joita et halua tuloksiisi huutomerkkiä käyttäen! " "Esimerkki:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Tiedoston koko" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Suodattaa tiedostoja niiden koon perusteella." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Oletusarvoisesti käytetään yksikkönä tavuja (B) ja tiedostot, jotka ovat " "suurempia tai yhtä suuria kuin (>=) arvo, vastaavat hakua." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Lisää b, k, m tai g (vaihtoehtoisesti kib, mib tai gib) määrittääksesi " "yksiköt tavuina, kibitavuina, mebitavuina tai gibitavuina:\n" " 20m näyttääkseen tiedostot, jotka ovat suurempia kuin 20 MiB (mebitavua)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Lisää = arvon eteen määrittääksesi tarkan vastineen:\n" " =1024 vastaa tiedostoja, jotka ovat tarkalleen 1 KiB (kibitavu)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Lisää ! arvon eteen sulkeaksesi pois tietyn kokoiset tiedostot:\n" " !30.5m piilottaa tiedostot, jotka ovat 30.5 MiB (mebibittiä)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Lisää < tai > löytääksesi tiedostoja, jotka ovat pienempiä/suurempia kuin " "annettu arvo. Käytä välilyöntiä kunkin ehdon välillä sisällyttääksesi " "alueen:\n" " >10.5m <1g näyttääksesi tiedostot, jotka ovat suurempia kuin 10.5 MiB, " "mutta pienempiä kuin 1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Yleisesti tunnetut variantit kb, mb ja gb voidaan myös käyttää kilotavuille, " "megatavuille ja gigatavuille." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Suodattaa tiedostoja niiden bittivirran perusteella." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Arvot on syötettävä vain numeroina. Yksikkö on aina Kb/s (kilobittiä " "sekunnissa)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Kuten Tiedoston koko (yllä), operaattoreita =, !, <, >, <= tai >= voidaan " "käyttää, ja useita ehtoja voidaan määritellä, esimerkiksi näyttämään " "tiedostoja, joiden bittinopeus on vähintään 256 Kb/s, mutta enintään 1411 Kb/" "s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Suodattaa tiedostoja niiden keston perusteella." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Oletuksena yhtä pitkät tai pidemmät tiedostot (>=) kuin syötetty kesto " "vastaavat, ellei käytetä operaattoria (=, !, <=, < tai >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Anna raaka-arvo sekunteina tai käytä MM:SS ja HH:MM:SS aikamuotoja:\n" " =53 näyttää tiedostot, jotka ovat noin 53 sekuntia pitkiä.\n" " >5:30 näyttää tiedostot, jotka ovat yli 5 ja puoli minuuttia pitkiä.\n" " <5:30:00 näyttää tiedostot, jotka ovat alle 5 ja puoli tuntia pitkiä." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Voit määritellä useita ehtoja:\n" " >6:00 <12:00 näyttääkseen tiedostot, jotka ovat 6 ja 12 minuutin " "pituisia.\n" " !9:54 !8:43 !7:32 piilottaakseen tiettyjä tiedostoja tuloksista.\n" " =5:34 =4:23 =3:05 sisällyttääkseen tiedostoja tiettyjen kestojen kanssa." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Suodattaa tiedostoja käyttäjien maantieteellisen sijainnin mukaan ISO 3166-2:" "n määrittelemien maakoodien perusteella:\n" " US näyttää vain tulokset käyttäjiltä, joiden ip-osoitteet ovat " "Yhdysvalloissa.\n" " !GB piilottaa tulokset, jotka tulevat käyttäjiltä Iso-Britanniasta." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Useita maita voidaan määritellä pilkuilla tai välilyönneillä." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Vapaa paikka" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Näytä vain sellaisten käyttäjien tulokset, joilla on vähintään yksi upload-" "paikka vapaana, eli tiedostot, jotka ovat heti saatavilla." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Uploadien nopeusrajoitukset" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Rajoittamaton lähetysnopeus" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Käytä lähetysnopeuden rajoitusta (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Käytä vaihtoehtoista lähetysnopeuden rajoitusta (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Yksityisen keskustelun komentoapu" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Sisällytä teksti…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Suodata tuloksista ne, joiden tiedostopoluissa on tietty teksti. Voidaan " "määrittää useita lauseita ja sanoja, esim. tarkka lause|musiikki|termi|" "tarkka lause kaksi" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Poissulje teksti…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Suodata tulokset, joiden tiedostopoluissa on tietty teksti. Voit määrittää " "useita lauseita ja sanoja, esim. tarkka lause|musiikki|termi|tarkka lause " "kaksi" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Tiedostotyyppi…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tiedostotyyppi, esim. flac wav tai !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Tiedoston koko…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Tiedoston koko, esim. >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bittinopeus…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bittinopeus, esim. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Kesto…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Kesto, esim. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Maakoodi…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Maakoodi, esim. US ES tai !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Estä käyttäjiä pääsemästä jaettuihin tiedostoihisi käyttäjänimen, ip-" "osoitteen tai maan perusteella." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Maakoodit jotka estetään (erotetaan pilkulla):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Koodien on oltava ISO 3166-2 -muodossa." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Käytä mukautettua geoblokin viestiä:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Käytä omaa estoviestiä:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "ip-osoitteet" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Ota oikeinkirjoituksen tarkistus käyttöön" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Palauta aiemmin avatut yksityiset keskustelut käynnistyksessä" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Ota käyttöön CTCP-tyyppiset yksityisviestivastaukset (asiakasohjelman versio)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Näytettävien viimeisimpien yksityisviestien määrä:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Näytettävien viimeaikaisten keskusteluhuoneviestien määrä:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Keskustelun täydennys" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Ota käyttöön välilehden avulla täydennys" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Ota käyttöön täydennyspudotusvalikko" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Vähimmäismerkkimäärä pudotusvalikon näyttämiseen:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Sallitut chat-täydennykset:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Kaverinimet" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Keskusteluhuoneiden käyttäjänimet" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Huoneiden nimet" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Komennot" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Aikaleimat" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Yksityisen chatin muoto:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Oletus" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Keskusteluhuoneen muoto:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Teksti puheeksi" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Ota käyttöön tekstistä puheeksi -toiminto" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Teksti-puhe-komento:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Yksityinen viesti:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Keskusteluhuoneen viesti:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Sensuroi" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Ota käyttöön tekstikuvioiden sensurointi" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Automaattinen korvaus" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Ota automaattinen sananvaihto käyttöön" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Poista valmiit/suodatetut lataukset siirtolistalta automaattisesti" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Tallenna valmiit lataukset käyttäjänimen alakansioihin" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Kaksoisklikkauksen toiminto latauksille:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Salli käyttäjien lähettää sinulle mitä tahansa tiedostoja:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Kansiot" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Valmiit lataukset:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Keskeneräiset lataukset:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Vastaanotetut tiedostot:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Tapahtumat" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Suorita komento tiedoston latauksen päätyttyä ($ tiedostopolulle):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "Suorita komento kansion latauksen päätyttyä ($ kansion polulle):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Lataussuodattimet" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Ota latausrajat käyttöön" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Lisää" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Oletus" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Varmenna suotimet" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Vahvistamaton" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ohita chat-viestit ja hakutulokset käyttäjiltä, perustuen käyttäjänimeen tai " "ip-osoitteeseen." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Kirjaa keskusteluhuoneet oletuksena" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Kirjaa yksityinen keskustelu oletuksena" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Kirjaa siirrot tiedostoon" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Kirjaa debug-viestit tiedostoon" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Lokimerkinnän aikamuoto:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Kansioiden sijainnit" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Keskusteluhuoneen lokitiedostojen kansio:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Yksityisten chat-lokien kansio:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Siirtolokien kansio:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Virhelokien kansio:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Kirjaudu olemassa olevaan Soulseek-tiliin tai luo uusi. Käyttäjänimet ovat " "kirjainkoosta riippuvaisia ja uniikkeja." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Julkinen ip-osoite:" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Kuuntelun portti (vaatii uudelleenkäynnistyksen):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Poissaolotila" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" "Minuutteja toimettomuutta ennen poissa-tilaan siirtymistä (0 poistaa " "käytöstä):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Automaattivastausviesti poissa ollessa:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Välitä kuunteluportti automaattisesti eteenpäin (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Yhdistä automaattisesti palvelimeen käynnistyksen yhteydessä" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek-palvelin:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Sitoo yhteydet tiettyyn verkkoliitäntään, hyödyllistä esimerkiksi " "varmistettaessa VPN:n käyttöä jatkuvasti. Jätä tyhjäksi käyttääksesi mitä " "tahansa saatavilla olevaa liitäntää. Muuta tätä arvoa vain, jos tiedät mitä " "teet." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Verkkoliitäntä (vaatii uudelleenkäynnistyksen):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Now Playing mahdollistaa mediasoittimessa soivan kappaleen näyttämisen " "käyttämällä /now-komentoa chatissa." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Muu" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Nyt soi -muoto" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Nyt soiva -viestin muoto:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Testaa asetukset" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Ota lisäosat käyttöön" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "Lisää lisäosia" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "Lisää liitännäisiä" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Asetukset" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "_Asetukset" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Versio:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Luonut:" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Ota hakuhistoria käyttöön" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Yksityisesti jaetut tiedostot, jotka on tehty näkyviksi kaikille, merkitään " "etuliitteellä '[PRIVATE]', eikä niitä voi ladata ennen kuin lähettäjä antaa " "nimenomaisen luvan. Kysy kohteliaasti." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Näytä yksityisesti jaetut tiedostot hakutuloksissa" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Rajoita hakutulosten määrää per haku:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Ota hakutulosten suodattimet oletuksena käyttöön" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Sisällytä:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Poissulje:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Tiedostotyyppi:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Koko:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bittinopeus:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Kesto:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Maakoodi:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "Näytä tulokset vain käyttäjiltä, joilla on vapaa Uploads-paikka." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Tulosten suodattimen ohje" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Verkkohaut" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Vastaa muiden käyttäjien hakupyyntöihin" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Haut, jotka ovat lyhyempiä kuin tämä merkkien määrä, jätetään huomiotta:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "Lähetettävien hakutulosten enimmäismäärä per hakupyyntö:" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Tyhjennä hakuhistoria" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Tyhjennä suodattimen historia" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Skannaa jaetut kansiosi automaattisesti käynnistyksen yhteydessä. Jos tämä " "on poissa käytöstä, jaot päivitetään vain, kun aloitat skannauksen " "manuaalisesti." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Käy jaot läpi uudelleen käynnistyksen yhteydessä" #: pynicotine/gtkgui/ui/settings/shares.ui:68 #, fuzzy msgid "Visible to everyone:" msgstr "Näkyy kaikille:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Kaverin Shares" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Luotetut jaot" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Poista valmiit/peruutetut Uploadsit siirto listalta automaattisesti" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Kaksoisklikkauksen toiminto Uploadseissa:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Rajoita lähetysnopeutta:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Siirtoa kohden" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Kaikki siirrot" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Lähetyspaikat" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Tiedostot ladataan ylös syklisesti jonossa odottaville " "käyttäjille.\n" "First In, First Out: Tiedostot ladataan ylös siinä järjestyksessä, kuin ne " "on jonotettu." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Upload-jonon tyyppi:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Varaa lähetyspaikkoja, kunnes kokonaisnopeus saavuttaa (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Kiinteä määrä latauspaikkoja:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Priorisoi kaikki kaverit" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Jonon rajoitukset" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Maksimimäärä jonossa olevia tiedostoja käyttäjää kohden:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 #, fuzzy msgid "Maximum total size of queued files per user (MiB):" msgstr "Jonossa olevien tiedostojen enimmäiskoko käyttäjää kohden (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Rajoitukset eivät koske kavereita" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "$-merkin esiintymät korvataan URL:lla. Oletusjärjestelmäsovelluksia " "käytetään tapauksissa, joissa protokollaa ei ole määritetty." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Tiedostonhallinnan komento:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Nollaa kuva" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Oma kuvaus" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 #, fuzzy msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Lisää asioita, jotka haluat kaikkien näkevän, kuten lyhyen kuvauksen, " "hyödyllisiä vinkkejä tai ohjeita jaettujen tiedostojen lataamiseen." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Kuva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Tyhjennä" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Suosi tummaa tilaa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Käytä otsikkopalkkia" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Näytä ilmoitusalueen kuvake" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Pienennä aloittaessa ilmoitusalueelle" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Kieli (vaatii uudelleenkäynnistyksen):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Ikkunan sulkeminen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Ilmoitukset" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Ota äänet käyttöön ilmoituksille" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "" "Näytä ilmoitus yksityisistä keskusteluista ja maininnoista ikkunan otsikossa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Näytä ilmoitukset:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Valmiit tiedostolataukset" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Valmiiden kansioiden lataukset" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Yksityisviestit" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Keskusteluhuoneen viestit" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Keskusteluhuoneen maininnat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Toivelistan tuloksia löydetty" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Palauta edellinen aktiivinen päävälilehti käynnistyksessä" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Sulje-napit sivuvälilehdissä" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Tavallisen välilehden väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Muutettu välilehden väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Korostetun välilehden otsikon väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 #, fuzzy msgid "Buddy list position:" msgstr "Kaverilistan sijainti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Näkyvät päävälilehdet:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Välileistipalkin sijainnit:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Päävälilehdet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "Näytä käänteiset tiedostopolut (vaatii uudelleenkäynnistyksen)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Näytä tarkat tiedostokoot (vaatii uudelleenkäynnistyksen)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Luettelotekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Jonossa olevan hakutuloksen tekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Ota käyttöön värikkäät käyttäjänimet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Chatin käyttäjänimen ulkoasu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Kaukotekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Paikallisen tekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Komentotulosteen tekstiväri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me toimintotekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Korostetun tekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "URL-linkkitekstin väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Käyttäjätilat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Online-väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Poissaolevan väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Offline-väri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Tekstikentät" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Tekstikentän taustaväri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Tekstisyötteen tekstiväri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Fontit" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Yleinen fontti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Luettelon fontti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Tekstinäkymän fontti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Keskustelun fontti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Siirtojen fontti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Hakufontti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Selaa fonttia:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Ikonit" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Kuvaketeeman kansio:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Keskeytä Käyttäjä(t)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Estä käyttäjä(t)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Tyhjennä kaikki valmiit/peruutetut Uploads" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Viestitä kaikille" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Tyhjennä tietyt Uploads" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "Tallenna Shares-lista levylle" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Päivitä tiedostot" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Muokkaa profiilia" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Jaetut tiedostot" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Jaetut kansiot" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Jonossa olevat Uploads" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Vapaita latauspaikkoja" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Lähetysnopeus" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Muokkaa kiinnostuksen kohteita" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Lahjoita oikeuksia…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Päivitä profiili" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+ -komennot" #~ msgid "_Clear" #~ msgstr "_Tyhjennä" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Ei voi tallentaa %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Luotetut kaverit" #, fuzzy #~ msgid "Quit program" #~ msgstr "Lopeta ohjelma" #, fuzzy #~ msgid "Username:" #~ msgstr "Käyttäjänimi:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Esitykset kohteelle" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Poista kohde" #~ msgid "_Remove" #~ msgstr "_Poista" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Lähetä viesti" #, fuzzy #~ msgid "Send Message" #~ msgstr "Lähetä viesti" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Näytä käyttäjäprofiili" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Aloita viestittely" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Anna käyttäjän nimi, jolle haluat lähettää viestin:" #, fuzzy #~ msgid "_Message" #~ msgstr "_Viesti" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Anna käyttäjän nimi, jonka profiilin haluat nähdä:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Näytä profiili" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Anna käyttäjän nimi, jonka Shares haluat nähdä:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Selaa" #, fuzzy #~ msgid "Password" #~ msgstr "Salasana" #, fuzzy #~ msgid "Download File" #~ msgstr "Lataa tiedosto" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Päivitä samankaltaiset käyttäjät" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Anna sen henkilön käyttäjänimi, jonka tiedostoja haluat nähdä" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Anna käyttäjänimi, jonka tiedot haluat nähdä" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Anna viestin vastaanottajan käyttäjänimi" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Anna käyttäjänimi, jonka haluat lisätä kaverilistaasi" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Anna huoneen nimi, johon haluat liittyä. Jos huonetta ei ole olemassa, se " #~ "luodaan." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Näytä lokihistorian paneeli" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Tallenna _kuva" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Virheellinen hakutulos %(filepath)s käyttäjältä %(user)s suodatettiin " #~ "hakukyselylle \"%(query)s\"" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Tietyt asiakkaat eivät lähetä hakutuloksia, jos erikoismerkkejä on mukana." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Erikoismerkkien poistaminen hakusanasta" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Ongelmia %s-" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Ongelmia suorittamisessa kansiossa: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Kielletty pidennys" #, fuzzy #~ msgid "Too many files" #~ msgstr "Liian monta tiedostoa" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Liian monta megatavua" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Palvelin ei salli toivelistahakujen suorittamista tällä hetkellä" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Tiedostojen siirtonopeudet määräytyvät niiden käyttäjien mukaan, joilta " #~ "lataat tiedostoja. Tietyt käyttäjät ovat nopeampia, kun taas toiset ovat " #~ "hitaita." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Tulevat" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Lähtevät" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Korvaa sensuroidut kirjaimet:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Sensuroidut kuviot" #, fuzzy #~ msgid "Replacements" #~ msgstr "Korvaavia" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Jos Soulseek-verkon käyttäjä etsii jaetuissa tiedostoissasi olevaa " #~ "tiedostoa, hakutulokset lähetetään käyttäjälle." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Lähetä soittimelle" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Lähetä soittimelle" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Open tiedostonhallinnan avulla" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Media Player -komento ($ tiedostopolulle):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Latausta ei voi tallentaa käyttäjänimen alikansioon, joka palaa " #~ "oletuslatauksen kansioon. Virhe: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Vain buddy" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Jaa vain kavereiden kanssa" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Quit" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "Skannataan jakoja" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Etätiedoston virhe" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "%(option1)s tai %(option2)s ei löydä, asenna jompikumpi." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s-kansiot löytyivät uudelleenskannaumisen jälkeen" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Seuraavien tietokantojen käsitteleminen epäonnistui: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Jaettujen tiedostojen lähettäminen palvelimeen epäonnistui: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Suorita taustalla" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Kuunnellaan porttia %i" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Haut" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Rajoita vain buddy-osakkeet luotettaviin kavereihin" #, fuzzy #~ msgid "Shared" #~ msgstr "Jaettu" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Etsi tiedostoja ja kansioita (tarkka vastaavuus)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Vanhentunut" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Versio %(version)s on saatavilla, julkaistu %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Näytät käyttävän Nicotine+:n kehitysversiota." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Käytät Nicotine+:n uusinta versiota." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Asiakkaan versio" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Suosi tummaa _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Näytä _Log -ruutu" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Buddy-luettelo erillisessä välilehdessä" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Kaveriluettelo aina näkyvissä" #, fuzzy #~ msgid "_View" #~ msgstr "_View" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Lataushakemisto" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "Selaa tiedostoja" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibitavuja (2^10 tavua) sekunnissa." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Lähetetään käyttäjille syyksi maantieteelliseen estämiseen." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Lähetetään käyttäjille porttikiellon syyksi." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Kun olet vuorovaikutuksessa sovelluksen ollessa poissa, tilaksi asetetaan " #~ "online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Jokainen käyttäjä voi laittaa jonoon enintään" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebitavuja (2^20 tavua)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBs-ym." #, fuzzy #~ msgid "files" #~ msgstr "Tiedosto(a)/(t)" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Jonon toiminta" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Jos pois päältä, paikkojen määrä säädetään automaattisesti kaistan mukaan" #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Huomaa, että käyttöjärjestelmän teema saattaa olla etusijalla." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Oletusarvoisesti hakutiedostot-välilehti aktivoidaan käynnistyksen " #~ "yhteydessä." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Lopeta Nicotine+ %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "Lopettaa" #, fuzzy #~ msgid "done" #~ msgstr "valmis" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Muista valinta" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Käyttöliittymä" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Kuunnellaan porttia %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Palvelin näyttää olevan kaatunut tai se ei vastaa, yritetään uudelleen %i " #~ "sekunnin kuluttua" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ käyttää vertaisverkkoa yhteyden muodostamiseen muihin " #~ "käyttäjiin. Jotta käyttäjät voivat muodostaa sinuun yhteyden ongelmatta, " #~ "avoin kuunteluportti on ratkaisevan tärkeä." #~ msgid "--- disconnected ---" #~ msgstr "--- yhteys katkennut ---" #~ msgid "--- reconnected ---" #~ msgstr "--- udelleenyhdistetty ---" #, fuzzy #~ msgid "ID" #~ msgstr "HENKILÖLLISYYSTODISTUS" #, fuzzy #~ msgid "Earth" #~ msgstr "Maa" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Tšekin tasavalta" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turkki" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Yhdistetyt huoneet " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-join-huone" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Syntax: Letters are Case Insensitive, All Python Regular " #~ "Expressions are supported if escaping is disabled. For simple filters, " #~ "keep escaping enabled." #, fuzzy #~ msgid "Escaped" #~ msgstr "Karannut" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Karannut" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Kirjoita tekstimalli ja korvaa vastaavasti:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "" #~ "%(num)s-kansiot löytyivät ennen uudelleenskannaamista, " #~ "uudelleenrakentamista…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Määritetyllä porttialueella %s–%s ei ole käytettävissä kuunteluporttia" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Valitse alue, josta haluat valita kuunteluportin. Käytössä on ensimmäinen " #~ "käytettävissä oleva portti." #, fuzzy #~ msgid "First Port" #~ msgstr "Ensimmäinen portti" #, fuzzy #~ msgid "to" #~ msgstr "jotta" #, fuzzy #~ msgid "Last Port" #~ msgstr "Viimeinen portti" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "%s ei löydä, asenna se." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Gtk-moduulia ei voi tuoda. Virheellinen python-gobject-moduulin asennus?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Käytät GTK:n %(major_version)s versiota, jota ei tueta. Asenna GTK " #~ "%(complete_version)s tai uusi." #, fuzzy #~ msgid "User Info" #~ msgstr "Käyttäjän tiedot" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zoomaa 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Lähennä" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Loitonna" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Käyttäjätiedot" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Käyttäjätiedot" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Hae käyttäjän jaot" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Käyttäjätiedot" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Syötä sen käyttäjän nimi jolle haluat lähettää:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Pyydä jakoja -luettelo" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Väärä SoulSeek meta-url: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Soulseek-verkon käyttäjät voivat ladata tiedostoja jakamistasi " #~ "kansioista. Tiedostojen jakaminen on ratkaisevan tärkeää Soulseek-" #~ "verkoston terveydelle." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Käyttäjätiedot" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Keskusteluhuoneen komennoista" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'huone'" #~ msgid "Join room 'room'" #~ msgstr "Liity huoneeseen 'huone'" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/me 'viesti'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Näytä Nyt soi - skriptin ulostulo" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'käyttäjä'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Lisää käyttäjä 'käyttäjä' estolistallesi" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'käyttäjä'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Poista käyttäjä 'käyttäjä' estolistaltasi" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ban 'käyttäjä'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Lisää käyttäjä 'käyttäjä' estolistallesi" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban 'käyttäjä'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Poista käyttäjä 'käyttäjä' estolistaltasi" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ohita käyttäjä" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Lisää käyttäjä 'käyttäjä' jätä huomiotta-listallesi" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'käyttäjä'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Poista käyttäjä 'käyttäjä' jätä huomiotta-listaltasi" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/selaa /b 'käyttäjä'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'käyttäjä'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Pyydä käyttäjän 'käyttäjä' käyttäjätiedot" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip 'käyttäjä'" #~ msgid "Show IP for user 'user'" #~ msgstr "Näytä käyttäjän 'käyttäjä' IP" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'kysely'" #~ msgid "Start a new search for 'query'" #~ msgstr "Aloita uusi haku 'kysely'" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'kysely'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Etsi 'kysely' huoneista joissa olet" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "Etsi 'kysely' kaverilistalta" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Etsi 'kysely' kaverilistalta" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'käyttäjä' 'kysely'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'käyttäjä' 'viesti'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Lähetä viesti 'viesti' käyttäjälle 'käyttäjä'" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm 'käyttäjä'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Avaa yksityiskeskustelu käyttäjälle 'käyttäjä'" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Yksityiskeskustelun komennoista" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Lisää käyttäjä 'käyttäjä' estolistallesi" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Lisää käyttäjä 'käyttäjä' jätä huomiotta-listallesi" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Selaa käyttäjän 'käyttäjä' tiedostoja" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Järjestysherkkässä suodattamiseen sekä useiden tarkkojen lauseiden " #~ "suodattamiseen voidaan käyttää pystypalkkeja lauseiden ja sanojen " #~ "erottamiseen.\n" #~ " Esimerkki: Keihäät| Bretagne| Kaunis albumini|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Jos haluat sulkea pois muut kuin äänitiedostot, käytä kestosuodattimessa !" #~ "0." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Suodattaa tiedostot käyttäjien maiden mukaan." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Voit tarkastella kaikkia tuloksia uudelleen tyhjentämällä kaikki " #~ "aktiiviset suodattimet." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Katso lisää suodatusvaihtoehtoja." #, fuzzy #~ msgid "File size" #~ msgstr "Tiedosto(a)/(t)" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Kaikkien aktiivisten suodattimien tyhjentäminen" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Selaa valmistumisia sarkainnäppäintä painamalla" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Piilota avattava valikon, kun vain yksi vastaa vastaa vastaa" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Kansioiden lataaminen käänteisessä aakkosnumeerijärjestyksessä" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Keskeneräinen tiedostokansio:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Lataa kansio:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Tallenna kavereiden lataukset:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Reitittimen kuunteluportin automaattinen yhdistäminen UPnP:n avulla" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Jaa kansioita jokaisen Soulseekin käyttäjän tai ystävien kanssa, jolloin " #~ "sisältö voidaan ladata suoraan laitteestasi. Piilotettuja tiedostoja ei " #~ "koskaan jaeta." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Toissijaiset välilehdet" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Keskusteluryhmän välilehtipalkin sijainti:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Yksityisen keskusteluvälilehden sijainti:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Hae välilehtipalkin sijaintia:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Käyttäjätiedot-välilehtipalkin sijainti:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Käyttäjän selaamalla välilehtipalkin sijaintia:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Välilehtien otsikot" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "Virkistä" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Näytä IP-osoite" #, fuzzy #~ msgid "Connected" #~ msgstr "Yhdistä" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Katkaise yhteys" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Katkaise yhteys" #, fuzzy #~ msgid "User(s)" #~ msgstr "Käyttäjä(t)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" ei palauttanut mitään" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Vaihtoehtoiset nopeusrajoitukset" #, fuzzy #~ msgid "Last played" #~ msgstr "Viimeksi pelattu" #, fuzzy #~ msgid "Playing now" #~ msgstr "Pelataan nyt" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Tiedostoa %(path)s ei voi tallentaa: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Virhekoodi %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Ei sellaista aliasta (%s)" #~ msgid "Aliases:" #~ msgstr "Aliakset:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Poistettu alias %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Ei sellaista aliasta (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Vaihtoehtoiset nopeusrajoitukset" #, fuzzy #~ msgid "Aliases" #~ msgstr "Aliaksia" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'command' 'definition'" #~ msgid "Add a new alias" #~ msgstr "Lisää uusi alias" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'komento'" #~ msgid "Remove an alias" #~ msgstr "Poista alias" #, fuzzy #~ msgid "Chat History" #~ msgstr "Keskusteluhistoria" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Välitön lataus" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Rajoita lähetysnopeus" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Kirjoittaja(t): " #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Rajoita lähetysnopeus" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Toivelistasta löytynyt kohde" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Välilehdissä näkyy käyttäjän tilakuvakkeet tilatekstin sijaan" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Tiedostopolun työkaluvihjeiden ottaminen käyttöön haku- ja siirtonäköissä" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Värilliset ja napsautettavat käyttäjätunnukset" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Ilmoitus muuttaa välilehden tekstin väriä" #~ msgid "Cancel" #~ msgstr "Peruuta" #~ msgid "OK" #~ msgstr "OK" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "Kaverilista" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Tyhjennä kaikki tietyllä tilalla merkityt lataukset." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Tyhjennä kaikki tietyllä tilalla merkityt lataukset." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "käyttää muita kuin oletusarvoisia käyttäjätietohakemistoja esimerkiksi " #~ "latausluettelossa" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Tuntematon määritysosa '%s'" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Tuntematon määritysvaihtoehto %(option)s\" osassa '%(section)s'" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Versio %s on saatavana" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "julkaistu %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Suorita taustalla" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Yksityinen viesti %s" #~ msgid "Aborted" #~ msgstr "Keskeytetty" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Estetty maa" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Tyhjennä valmiit / keskeytetyt" #, fuzzy #~ msgid "Close tab" #~ msgstr "Sulje" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Sinun nimesi on mainittu huoneessa %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Komento %s ei ole tunnettu" #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Varoitus: %(realuser)s yrittää väärentää %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Määrittämääsi verkkoliittymää %sei ole. Muuta tai poista määritetty " #~ "verkkoliittymä ja käynnistä Nicotine+uudelleen." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Asiakasyhteysporteille määrittämäsi alue oli {}-{}, mutta mikään näistä " #~ "ei ollut käyttökelpoinen. Lisäys ja/tai " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Huomaa, että osa valikoimastasi on alle 1024, tämä ei yleensä ole " #~ "sallittua useimmissa käyttöjärjestelmissä Windowsia lukuun ottamatta." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Hakemistoja: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Käyttöjärjestelmävirhe: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP ei ole saatavilla tässä verkossa" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Ulkoisen WAN-portin yhdistäminen epäonnistui: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Huoneen seinä" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Oletuskuunteluportti '2234' toimii useimmissa tapauksissa hyvin. Jos " #~ "sinun on käytettävä toista porttia, voit muokata sitä asetuksissa " #~ "myöhemmin." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Näytä käyttäjille, joilla on samanlaiset kiinnostuksen kohteet" #, fuzzy #~ msgid "Menu" #~ msgstr "Valikko" #~ msgid "Expand / Collapse all" #~ msgstr "Laajenna / Supista kaikki" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Jaesuuksien määrittäminen" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Luo huone tai liity siihen…" #, fuzzy #~ msgid "_Room List" #~ msgstr "Huoneet" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Ota käyttöön vaihtoehtoiset lataus- ja latausnopeusrajoitukset" #, fuzzy #~ msgid "Show log history" #~ msgstr "Näytä lokihistoria" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Tuloksen ryhmittelemistila" #~ msgid "Free slot" #~ msgstr "Vapaa latauspaikka" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Tallenna jakojen luettelo levylle" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Käyttöliittymätiedoston lataaminen epäonnistui %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Yritetään palauttaa jaettujen tiedostojen indeksi virheen vuoksi. " #~ "Tarkista osakkeesi uudelleen." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Jaettujen tiedostojen tiedostoindeksiä ei voitu käyttää. Tämä voi johtua " #~ "useista Nicotine+ -tapauksista, jotka ovat aktiivisia samanaikaisesti, " #~ "tiedostojen käyttöoikeusongelmista tai toisesta Nicotine+ -ongelmasta." #, fuzzy #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ on Soulseek-asiakas" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "ota lokerokuvake käyttöön" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "poista lokeron kuvake käytöstä" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Hanki Soulseek-oikeudet…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Julkinen IP-osoite on %(ip)s ja aktiivinen kuunteluportti on " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "tuntematon" #, fuzzy #~ msgid "Notification" #~ msgstr "Ilmoitus" #~ msgid "Length" #~ msgstr "Pituus" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Kuvaa ei tallennettu, %s on jo olemassa." #, fuzzy #~ msgid "_Open" #~ msgstr "_Open" #, fuzzy #~ msgid "_Save" #~ msgstr "_Save" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Laajennuksen %s lataaminen epäonnistui, sitä ei löytänyt." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O -virhe: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Tiedostopolun avaaminen epäonnistui: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "URL-osoitteen avaaminen epäonnistui: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Log keskustelu" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Tulossuodatusluettelo" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Voit < tai > tiedostoja, jotka ovat pienempiä tai suurempia kuin annettu " #~ "arvo." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-tiedostot näyttävät keskimääräisen bittinopeuden ja ovat " #~ "tyypillisesti pienempiä bittinopeudessa kuin pakattu 320 kbps CBR-" #~ "tiedosto, jonka äänenlaatu on sama." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Kuten Koko yllä, =, < ja > voidaan käyttää." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Muiden ohjelmien kirjoitusoikeuden estäminen ladattavissa tiedostoissa " #~ "(poista NFS:n käytöstä)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Jos puutteelliset lataukset tallennetaan väliaikaisesti." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Mihin kavereiden lataukset tallennetaan (kullekin kaverille luodaan " #~ "alikansio)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr " Minuuttia ei-aktiivisena" #~ msgid "Protocol:" #~ msgstr "Protokolla:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Kuvaketeemakansio (vaatii uudelleenkäynnistyksen):" #~ msgid "Establishing connection" #~ msgstr "Muodostetaan yhteyttä" #~ msgid "Clear Groups" #~ msgstr "Tyhjennä ryhmät" #, fuzzy #~ msgid "User List" #~ msgstr "Käyttäjäluettelo" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Reset tilastot…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "_Tulevat" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Tyhjennä loki" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Estä käyttäjän IP-osoite" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ohita käyttäjän IP-osoite" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Tyhjennä kaikki lataukset, joiden siirto on päättynyt tai joiden suodatin " #~ "on jäänyt kiinni." #, fuzzy #~ msgid "Usernames" #~ msgstr "Käyttäjänimi:" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Kirjautujen keskusteluryhmäviestien näyttäminen, kun huoneeseen liityt " #~ "uudelleen" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Tyhjennä kaikki lähetykset, joiden siirto on päättynyt tai jonka " #~ "etäkäyttäjä on peruuttanut." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Jonon sijainti" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Käyttäjä %(user)s etsii suoraan \"%(query)s\", palauttaen %(num)i tulokset" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[yksityinen]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Huoneen seinä (henkilökohtainen viestisarja)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Määritystiedosto on vioittunut" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Olemme pahoillamme, mutta määritystiedostosi näyttää olevan vioittunut. " #~ "Määritä Nikotiini+uudelleen.\n" #~ "\n" #~ "Nimesimme vanhan määritystiedoston uudelleen\n" #~ "%(corrupt)s\n" #~ "Jos avaat tämän tiedoston tekstieditorilla, saatat pystyä pelastamaan " #~ "joitakin asetuksia." #, fuzzy #~ msgid "User Description" #~ msgstr "Oma kuvaus:" #, fuzzy #~ msgid "User Interests" #~ msgstr "Kiinnostuksen kohteet" #, fuzzy #~ msgid "User Picture" #~ msgstr "Käyttäjän selaus" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Tyhjennä valmiit" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Lopetamme nikotiinin+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Pythonin käyttö %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Lopetamme nikotiinin+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Lopeta Nikotiini+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Käyttäjä" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Kaikki %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s-tiedostot " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Käytä säännöllistä lauseketta sisään- ja ulos-suotimille" #, fuzzy #~ msgid "Quit…" #~ msgstr "Poistu" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Näytä edellinen ensisijainen välilehti käynnistettäessä" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Laita suodattimet päälle oletuksena" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Sulje Nikotiini+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Haluatko todella poistua Nikotiini+:sta?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Suorita taustalla" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Ilmoita kun linjalla" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Priorisoi käyttäjä" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Luotettu" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Käyttäjätiedot" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Pyydä IP-osoitetta" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Syötä sen käyttäjän nimi jolle haluat lähettää:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Ladata" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Lataustiedoston %(filename)s lisääminen jaettuihin tiedostoihin " #~ "epäonnistui: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Latausten jakaminen automaattisesti" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Latauskansion lisääminen julkiseksi jakokansioksi vastaa sitä, että tähän " #~ "kansioon ladatut tiedostot ovat automaattisesti muiden käytettävissä " #~ "(uudelleenskannausta ei tarvita)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Kansiota ei voi jakaa" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Valittu näennäisnimi on tyhjä" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Valittu näennäisnimi on jo olemassa" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Valittu kansio on jo jaettu" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Määritä näennäisnimi" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Kirjoita näennäisnimi valuutalle %(dir)s:" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Valittu näennäisnimi on tyhjä tai se on jo olemassa" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Valittu kansio on jo jaettu." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "Ei, ei, ei, ei. Majoituspaikkaa" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Kaverijakoja skannataan" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Laajennusluettelo" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Virhe skannattaessa %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Näytä _Log -ruutu" #, fuzzy #~ msgid "Addresses" #~ msgstr "Osoitteet" #~ msgid "Handler" #~ msgstr "Ajuri" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Laajennus ei voitu ottaa käyttöön." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Laajennus ei voitu poistaa käytöstä." #~ msgid "Transfers" #~ msgstr "Siirrot" #, fuzzy #~ msgid "Ban List" #~ msgstr "Kieltoluettelo" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ohita luettelo" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Sensuuri & korvaa" #, fuzzy #~ msgid "Completion" #~ msgstr "Täydellistymä" #~ msgid "Categories" #~ msgstr "Luokat" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Lataa kansio…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Lähetä r_ekursiivisesti hakemistoon.." #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Lataa_rekursiivisesti" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Lataa_rekursiivisesti" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Uploadaa tiedosto(ja)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Virhe yritettäessä näyttää kansiota %(folder)s, raportoitu virhe: " #~ "%(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "Valitse käyttäjän alikansioiden sisältävän kansion latauskohde" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Valitse kohde ladataksesi kansion käyttäjältä" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Valitse Käyttäjän tiedostojen lataamisen kohde" #, fuzzy #~ msgid "Wishes" #~ msgstr "Terveiset" #, fuzzy #~ msgid "privileged" #~ msgstr "(etuoikeutettu)" #, fuzzy #~ msgid "prioritized" #~ msgstr "etusijalla" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Näytä IP-osoite" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Täydelliset kaverinimet" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Täydelliset käyttäjätunnukset keskustelupalstoja" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Täydelliset huoneiden nimet" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Avattava luettelo" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Tiedostonhallinta-komento ($ tiedostopolulle):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Media Player -komento ($ tiedostopolulle):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Huomioimatta jätettävät käyttäjät:" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Aikaleiman näyttäminen" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Ilmoituksen ponnahdusikkunat" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Näytä ilmoitus-ponnahdusikkuna, kun tiedoston lataaminen on valmis" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Näytä ilmoitus-ponnahdusikkuna, kun kansio on latautu" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Näytä ilmoitus-ponnahdusikkuna, kun vastaanotat yksityisen viestin" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Näytä ilmoitus-ponnahdusikkuna, kun joku lähettää viestin " #~ "keskustelupalstalla" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Näytä ilmoitus-ponnahdusikkuna, kun sinut mainitaan keskustelupalstalla" #, fuzzy #~ msgid "Tray" #~ msgstr "Tarjotin" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "$-esiintymät korvataan linkillä. Järjestelmän oletusselainta käytetään " #~ "tapauksissa, joissa protokollaa ei ole määritetty." #~ msgid "Handler:" #~ msgstr "Ajuri:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Ensisijaiset välilehdet" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Tiedostopolun työkaluvihjeiden ottaminen käyttöön haku- ja siirtonäköissä" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Näyttää hakutuloksen tai tiedostonsiirron täydellisen tiedostopolun, kun " #~ "siirrät kohdistimella kansion polun tai tiedostonimen." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Yksityisesti jaettujen tiedostojen näyttäminen jaetuissa " #~ "käyttäjäkansioissa" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Muut asiakkaat voivat tarjota mahdollisuuden lähettää yksityisesti " #~ "jaettuja tiedostoja, kun selaat heidän jaettuja osakkeitaan. Tällaisia " #~ "tiedostoja sisältävien kansioiden etuliitteenä on [YKSITYINEN KANSIO], " #~ "eikä niitä voi ladata, ellei lataaja anna siihen nimenomaista lupaa." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Sensuuri & korvaa" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Näytä _Debug lokiohjausobjektit" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Kirjaus" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Näennäisnimi" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Muokkaa näennäisnimeä" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopioi kansion URL" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Lataa..." #~ msgid "Download" #~ msgstr "Tulevat" #, fuzzy #~ msgid "Upload" #~ msgstr "Lähettää tiedosto" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Lataa kansion sisältö" #, fuzzy #~ msgid "Rename" #~ msgstr "Nimetä uudelleen" #, fuzzy #~ msgid "File Lists" #~ msgstr "Tiedosto(a)/(t)" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopioi tiedoston polku" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Poista alias" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Näyttää siltä, että %s\" ei ole hakemisto, ei laajennuksia ladata." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Kaverijakoja skannataan" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Kaverijakoja skannataan" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Kaverisi, %s, yrittää lähettää sinulle tiedostoa." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s ei saa lähettää sinulle tiedostoja, mutta yrittää sitä kuitenkin. " #~ "Varoitus lähetetty." #~ msgid "Client Version" #~ msgstr "Asiakkaan versio" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Kuinka monta päivää oikeuksia käyttäjän %s tulisi olla lahjakas?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Kaverit saavat etusijan jonossa, sama kuin yleisesti etuoikeutetut " #~ "käyttäjät" #, fuzzy #~ msgid "Privileged" #~ msgstr "Etuoikeutettu" #~ msgid "_Privileged" #~ msgstr "_Etuoikeutettu" #~ msgid "Comments" #~ msgstr "Kommentit" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Muokkaa_kommentteja" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Luo alikansioita sen käyttäjän perusteella, jolta lataat, ja tallentaa " #~ "ladatun tiedoston / kansion sinne." #, fuzzy #~ msgid "Login Details" #~ msgstr "Kirjautumistiedot" #, fuzzy #~ msgid "Advanced" #~ msgstr "Edistynyt" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Porttimäärityksen uusimisväli tunteina:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Salli jaot vain ystäville" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Tiedostot lähetetään jonotusjärjestyksessä" #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Uudelleenskannaus aloitettu" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Julkisten osakkeiden uudelleentarkistus on valmis" #~ msgid "Scanning Buddy Shares" #~ msgstr "Kaverijakoja skannataan" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "Uudelleenskannaa jakosi" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Kaverijakoja skannataan" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Uudelleenskannaa jakosi" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Kaverijakoja skannataan" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Ottaa käyttöön kaverijaon, jota vain kaveriluettelosi käyttäjät voivat " #~ "käyttää." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Merkitse jokainen jaettu kansio vain kaveriksi" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Ohittaa osakekohtaisen option, joka on hyödyllinen, jos sinun on " #~ "tilapäisesti estettävä osakkeiden julkinen käyttö." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Vain käyttäjät, jotka on merkitty luotettaviksi kaveriluettelossasi, " #~ "voivat käyttää vain buddy-jakojasi." #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nikotiini+ antaa sinun jakaa kansioita suoraan tietokoneeltasi. Muut " #~ "Soulseek-verkon käyttäjät voivat ladata kaiken näiden kansioiden sisällön " #~ "(lukuun ottamatta dotfiles-tiedostoja). Julkiset osakkeet ovat kaikkien " #~ "käyttäjien käytettävissä, kun taas kaveriluettelon käyttäjät voivat " #~ "käyttää julkisten osakkeiden lisäksi vain buddy-osakkeita." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Suodatettu poissuljettu hakutulos " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Suodatettu epätaapaan tai virheelliseen hakutulokseen " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "Tallennettua asetusta %(key)s ei enää ole %(name)s-laajennuksessa" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "Laajennus %(module)s palautti jotain outoa, '%(value)s', jättäen huomiotta" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "" #~ "Epäyhtenäinen välimuisti merkinnälle %(vdir)s, uudelleenrakentaminen " #~ "%(dir)s\"" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Missing-kansion poistaminen %(dir)s" #, fuzzy, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Kaikki tikittävät / seinäviestit %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Aseta henkilökohtainen ticker" #, fuzzy #~ msgid "Show all the tickers" #~ msgstr "Näytä kaikki mittarit" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Katso käyttäjätiedot" #~ msgid "Add user 'user' to your user list" #~ msgstr "Lisää käyttäjä 'käyttäjä' käyttäjälistallesi" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Poista käyttäjä 'käyttäjä' estolistaltasi" #~ msgid "Request user info for user 'user'" #~ msgstr "Pyydä käyttäjän 'käyttäjä' käyttäjätiedot" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Lisää käyttäjä 'käyttäjä' käyttäjälistallesi" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Poista käyttäjä 'käyttäjä' estolistaltasi" #, fuzzy #~ msgid "/ignore" #~ msgstr "Jätä huomiotta" #, fuzzy #~ msgid "/unignore" #~ msgstr "Jätä huomiotta" #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "Ei voi tallentaa asetustiedoston varmuuskopiota, virhe: %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Ei voi nimetä asetustiedostoa uudelleen, virhe: %s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Vertaiskäyttäjä sulki yhteyden: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Palvelin ilmoitti portin 0 10. kerran käyttäjälle %(user)s, luovutetaan" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Palvelin raportoi muun kuin nolla-portin käyttäjälle %(user)s %(tries)i " #~ "uudelleenyrityksen jälkeen" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "" #~ "Palvelin raportoi portin 0 käyttäjälle %(user)s, yritetään uudelleen" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Ei voi kirjautua sisään, syy: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Joku muu kirjautuu sisään samalla nimellä, palvelin katkaisee tämän " #~ "yhteyden" #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "IP %(ip)s:%(port)s huijaa käyttäjää %(user)s pyynnöllä, estetään koska ei " #~ "täsmää oikeaan IP-osoitteeseen: %(real_ip)s" #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "Estetään %(user)s tekemästä Käyttäjätieto-pyyntöä, mahdollinen spoofing-" #~ "yritys. IP %(ip)s port %(port)s" #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "%(user)s on estetty, mutta tekee Käyttäjätieto-pyynnön" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s tekee SelaaJakoja-pyynnön, estetään mahdollinen spoofing-yritys " #~ "%(ip)s port %(port)s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s tekee SelaaJakoja-pyynnön, estetään mahdollinen spoofing-yritys" #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s tekee SelaaJakoja-pyynnön" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Tuntematon tunneloitu viesti: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Jaettujen tiedostojen tietokanta näyttäisi olevan vaurioitunut, skannaa " #~ "jaetut tiedostot uudelleen" #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Tyhjä viesti tehty, luokka %s" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Ei pysty tulkitsemaan saapuvia viestejä, luokka %s" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Ei pysty käsittelemään yhteystyyppiä %s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Ei voinut lähettää viestiä suljetun yhteyden takia: %(type)s %(msg_obj)s" #, python-format #~ msgid "Major Socket Error: Networking terminated! %s" #~ msgstr "Major Socket -virhe: Nettitoiminnot katkaistu! %s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Suodin: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Yritetään uudestaan epäonnistunutta latausta: käyttäjä %(user)s, tiedosto " #~ "%(file)s" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "Sain tiedonsiirtopyynnön %s mutta en pysty määrittelemään pyytäjää" #~ msgid "[Automatic Message] " #~ msgstr "[Automaattinen viesti] " #~ msgid "You are not allowed to send me files." #~ msgstr "Sinulla ei ole lupaa lähettää minulle tiedostoja." #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Sain tuntemattoman tiedonsiirtovastauksen: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Lataus valmis: %(file)s" #~ msgid "(friend)" #~ msgstr "(ystävä)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Lähetys valmis: käyttäjä %(user)s, tiedosto %(file)s" #~ msgid "Get user i_nfo" #~ msgstr "Hae käyttäjätiedot" #~ msgid "_Add user to list" #~ msgstr "_Lisää tämä käyttäjä listallesi" #~ msgid "_Ban this user" #~ msgstr "_Estä tämä käyttäjä" #~ msgid "_Ignore this user" #~ msgstr "_Jätä huomiotta tämä käyttäjä" #~ msgid "Clear finished/aborted" #~ msgstr "Tyhjennä valmiit/keskeytetyt" #~ msgid "Clear aborted" #~ msgstr "Tyhjennä keskeytetyt" #~ msgid "Clear queued" #~ msgstr "Tyhjennä jono" #~ msgid "Abor_t" #~ msgstr "Keskeytä" #~ msgid "Directory" #~ msgstr "Hakemisto" #~ msgid "Warning" #~ msgstr "Varoitus" #~ msgid "User info" #~ msgstr "Käyttäjän tiedot" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Kaverijakojen skannaus aloitettu" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Kaverijakojen uudelleenskannaus valmis" #~ msgid "Rescanning finished" #~ msgstr "Uudelleenskannaus valmis" #~ msgid "Send to tray" #~ msgstr "Lähetä tarjottimeen" #~ msgid "I like" #~ msgstr "Pidän" #~ msgid "I _don't like this" #~ msgstr "En pidä tästä" #~ msgid "Ban this user" #~ msgstr "Estä tämä käyttäjä" #~ msgid "Ignore this user" #~ msgstr "Jätä huomiotta tämä käyttäjä" #~ msgid "In queue" #~ msgstr "Jonossa" #~ msgid "Warning: Bad Username" #~ msgstr "Varoitus: huono käyttäjänimi" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "Käyttäjänimi 'ei mikään' ei ole hyvä, valitse toinen" #~ msgid "Users in list" #~ msgstr "Käyttäjät listalla" #, python-format #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "Tietoturvariski: sinun ei kannata jakaa hakemistoa %s!" #~ msgid "Ignore user..." #~ msgstr "Huomioimatta jätettävät käyttäjät:" #~ msgid "Ban user..." #~ msgstr "Estä tämä käyttäjä" #~ msgid "Server" #~ msgstr "Palvelin" #~ msgid "Geo Block" #~ msgstr "Maantieteellinen esto" #~ msgid "URL Catching" #~ msgstr "URL-sieppaus" #~ msgid "Initializing transfer" #~ msgstr "Aloitetaan siirtoa" #~ msgid "Waiting for peer to connect" #~ msgstr "Odotetaan vertaiskäyttäjän yhdistämistä" #~ msgid "Getting address" #~ msgstr "Haetaan osoitetta" #~ msgid "Lookup a User's IP" #~ msgstr "Etsi käyttäjän IP" #~ msgid "Directories" #~ msgstr "Hakemistoja" #~ msgid "Download r_ecursive to..." #~ msgstr "Lataa r_ekursiivisesti hakemistoon.." #~ msgid "Upload Directory to..." #~ msgstr "Lähetä hakemisto_paikkaan..." #, python-format #~ msgid "Speed: %s" #~ msgstr "Nopeus: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Tiedostoja jaettu: %s" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Lähetyksiä sallittu yhteensä: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Paikkoja vapaana: %s" #, python-format #~ msgid "%s" #~ msgstr "%s" #~ msgid "Log" #~ msgstr "Kirjaa" #~ msgid "Clear Queued" #~ msgstr "Tyhjennä jonotetut" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Lähteviä sallittu yhteensä: tuntematon" #~ msgid "Slots free: unknown" #~ msgstr "Latauspaikkoja vapaana: tuntematon" #~ msgid "Queue size: unknown" #~ msgstr "Jonon koko: tuntematon" #~ msgid "Speed: unknown" #~ msgstr "Nopeus: tuntematon" #~ msgid "Files: unknown" #~ msgstr "Tiedostoja: tuntematon" #~ msgid "Directories: unknown" #~ msgstr "Jaettuja hakemistoja: tuntematon" #~ msgid "Accepts Uploads from:" #~ msgstr "Hyväksy lähetykset:" #~ msgid "Add..." #~ msgstr "Lisää..." #~ msgid "About search filters" #~ msgstr "Hakusuotimista" #~ msgid "_Modes" #~ msgstr "_Moodit" #~ msgid "_Private Chat" #~ msgstr "_Yksityinen keskustelu" #~ msgid "Buddy _List" #~ msgstr "Kaverilista" #~ msgid "_Interests" #~ msgstr "_Kiinnostuksen kohteet" #~ msgid "About _chat room commands" #~ msgstr "Keskusteluhuoneen komennoista" #~ msgid "About _private chat commands" #~ msgstr "Yksityisen keskustelun komennoista" #~ msgid "About _search filters" #~ msgstr "Hakusuotimista" #~ msgid "Toggle away after " #~ msgstr "Vaihda poissa ajan jälkeen " #~ msgid "Username Font Style:" #~ msgstr "Käyttäjänimen kirjasintyyppi:" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Lukitse sisääntulevat tiedostot (laita pois päältä NFS:lle)" #~ msgid "" #~ "The users will be able to send you files. These files will be downloaded " #~ "into the Buddy Uploads subdirectory in your Download directory" #~ msgstr "" #~ "Nämä käyttäjät voivat lähettää sinulle tiedostoja. Tiedostot ladataan " #~ "Buddy Uploads-alihakemistoon Lataushakemistoosi." #~ msgid "Decimal separator:" #~ msgstr "Desimaalierotin:" #~ msgid "Enable geographical blocker" #~ msgstr "Salli maantieteellinen esto" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "" #~ "Maantieteellinen vainohrahaisuus (eli estä kaikki tunnistamattomat IP:t)" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Avaa uudelleen viimeiset Yksityisviestit" #~ msgid "Legend:" #~ msgstr "Selitys:" #~ msgid "Example:" #~ msgstr "Esimerkki:" #~ msgid "Send out a max of" #~ msgstr "Lähetä maksimissaan" #~ msgid "Filter out:" #~ msgstr "Suodin ulos:" #~ msgid "Filter in:" #~ msgstr "Suodin sisään:" #~ msgid "" #~ "If buddy shares are enabled, they will be shared. Otherwise normal shares " #~ "will be used." #~ msgstr "" #~ "Jos kaverijaot ovat päällä, ne jaetaan. Muuten käytetään tavallisia " #~ "jakoja." #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "" #~ "Käyttäjälle lähetetään yksi tiedosto ja sitten valitaan toinen käyttäjä" #~ msgid "KBytes/sec" #~ msgstr "Kilotavua/sekunti" #~ msgid "Megabytes" #~ msgstr "Megatavua" #~ msgid "Enable URL catching" #~ msgstr "Salli URL-sieppaus" #~ msgid "Humanize slsk:// urls" #~ msgstr "Muuta slsk:// -urlit selkokielisiksi" nicotine-plus-3.3.4/po/fr.po000066400000000000000000007236661461625273200157330ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:11+0000\n" "Last-Translator: Mat \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Client Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Client graphique pour le réseau pair-à-pair Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek ;Nicotine ;partage ;tchat ;messagerie ;P2P ;pair-à-pair ;GTK ;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Naviguez sur le réseau Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ est un client graphique pour le réseau pair-à-pair Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ vise à être une alternative légère, agréable, libre et ouverte " "(FOSS) au client officiel de Soulseek, tout en fournissant un ensemble " "complet de fonctionnalités." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Rechercher des fichiers" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Téléchargements" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Parcourir les partages" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Dialogues privés" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "L'équipe Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Site internet : %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "afficher ce message d'aide et quitter" #: pynicotine/__init__.py:59 msgid "file" msgstr "fichier" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "utiliser un fichier de configuration spécifique" #: pynicotine/__init__.py:63 msgid "dir" msgstr "rép" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "répertoire spécifique pour les données et extensions" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "démarrer le programme sans afficher de fenêtre" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "lier les sockets à l'IP spécifiée (utile pour les VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "écouter sur le port spécifié" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "rescanner les fichiers partagés" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "démarrer le programme en mode sans interface (« headless »)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "afficher la version et quitter" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Vous utilisez une version de Python non prise en charge (%(old_version)s).\n" "Vous devriez installer Python %(min_version)s ou supérieure." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Les partages n'ont pas pu être lus. Fermez les autres instances de Nicotine+ " "et réessayez." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "L'utilisateur %(user)s est absent" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "L'utilisateur %(user)s est en ligne" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "L'utilisateur %(user)s est déconnecté" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Status de l'ami" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Vous avez été invité dans le salon privé : %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Message de discussion de l'utilisateur '%(user)s' dans la salle '%(room)s' : " "%(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" "Impossible de créer le répertoire « %(path)s », l'erreur est  : %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Erreur à la sauvegarde de la configuration : %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configuration sauvegardée dans %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Chargement de %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Arrêt de %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "terminer" #: pynicotine/core.py:237 msgid "application closing" msgstr "fermeture du logiciel" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Fermeture de %(program)s %(version)s !" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Vous devez spécifier un nom d'utilisateur et un mot de passe avant de vous " "connecter…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Erreur  : Échec des filtres de téléchargement  ! Vérifier vos filtres. " "Raison  : %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Erreur  : %(num)d filtres de téléchargement ont échoués  ! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s téléchargé de %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Fichier téléchargé" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Exécuté  : %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "L'exécution de '%(command)s' a échoué : %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s téléchargé s de %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Dossier téléchargé" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Exécuté sur le dossier  : %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Impossible de déplacer '%(tempfile)s' vers '%(file)s'  : %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Erreur du téléchargement d'un répertoire" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Téléchargement terminé  : utilisateur %(user)s, fichier %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Téléchargement annulé, utilisateur %(user)s, fichier %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Erreur d'E/S lors du téléchargement  : %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Ne peut obtenir un verrou exclusif sur le fichier - Erreur E/S  : %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Impossible d'enregistrer le fichier sur %(folder_path)s : %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Téléchargement commencé  : utilisateur %(user)s, fichier %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Impossible de trouver %s, veuillez l'installer." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Aucun environnement graphique disponible, utilise le mode sans interface " "graphique" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "Se _connecter" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "Se _déconnecter" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Privilèges _Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Préférences" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Quitter" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "_Parcourir les partages publics" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Par_courir les partages des amis" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Par_courir les partages pour amis de confiance" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Réexaminer mes partages" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Configurer les partages" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Raccourcis clavier" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Assistant de configuration" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "Statistiques de transferts" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Signaler un _bogue" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Améliorer les t_raductions" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "À propos de _Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fichier" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Partages" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "A_ide" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Parcourir les partages" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Impossible d'afficher la notification : %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Vous téléchargez toujours des fichiers. Voulez vous vraiment quitter ?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Attendre la fin des transferts" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Voulez-vous vraiment quitter ?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Non" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "Exécuter en a_rrière-plan" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Quitter Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Partages non disponibles" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Vérifiez que les disques externes sont montés et que les permissions sur les " "dossiers sont correctes." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "A_nnuler" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Réessayer" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Forcer la réanalyse" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Mot de passe non valide" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "L'utilisateur %s existe déjà, et le mot de passe que vous avez entré n'est " "pas valide. Choisissez un autre nom d'utilisateur si c'est votre premier " "essai." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Modifier _les informations de connexion" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Envoyer un message aux utilisateurs qui téléchargent" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Envoyer un message privé à tous les utilisateurs qui téléchargent " "actuellement à partir de vous :" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Envoyer un message" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Message pour les amis" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Envoyer un message privé à tous les amis en ligne :" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Sélectionner un fichier de liste des partages sauvegardées" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Erreur critique" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ a rencontré une erreur critique et doit se terminer. Veuillez " "copier le message suivant et l'inclure dans un rapport de bogue :" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Quitter Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copier et rapporter le bogue" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "État" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Pays" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Utilisateur" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Vitesse" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Fichiers" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Utilisateur de confiance" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notifier" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "En priorité" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Vu pour la dernière fois" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Note" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Ajouter des _Notes d’utilisateur…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Enlever" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Jamais vu" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Ajouter une note utilisateur" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Ajouter des commentaires concernant l'utilisateur %s :" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Ajouter" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Créer un nouveau Salon  ?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Voulez-vous vraiment créer le nouveau salon \"%s\" ?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Rendre le Salon privée" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Recher_cher dans les fichiers de l'utilisateur" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Trouver…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copier" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copier tout" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Effacer la vue des activités" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Quitter le salon" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copier l'URL" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Afficher les logs du salon" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Supprimer le log du salon…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Effacer les messages du salon" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s a rejoint le salon" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s vous a mentionné dans le salon %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mentionné par %(user)s dans le salon %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Message de %(user)s dans le salon %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s a quitté le salon" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s s'absente" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s est de retour" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Supprimer les messages enregistrés ?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Voulez-vous vraiment supprimer définitivement tous les messages enregistrés " "de ce salon ?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "À propos" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Site Web" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Erreur lors de la vérification de la dernière version : %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Nouvelle version disponible : %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "À jour" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Vérification d'une nouvelle version…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Assistant de configuration" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Répertoire virtuel" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Répertoire" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Terminer" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Suivant" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Ajouter un répertoire partagé" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Modifier les répertoires partagés" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Choisissez un nouveau nom virtuel pour '%(dir)s'  :" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Modifier" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Propriétés du fichier" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" "Propriété du fichier (%(num)i sur %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Propriété du fichier (%(num)i sur %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Appliquer" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Ajouter…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Editer…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "Paramètres de %s" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Ajouter un élément" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Modifier un élément" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Inconnu" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Vérifier l'état du port" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Le changement de mot de passe est rejeté" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Entrez un nouveau mot de passe pour votre compte Soulseek  :" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Vous êtes actuellement déconnecté du réseau Soulseek. Si vous tentez de " "modifier le mot de passe d'un compte Soulseek existant, vous devez être " "connecté au compte en question." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Entrez le mot de passe à utiliser lors de la connexion  :" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Modifier le mot de passe" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Changer" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Personne" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Tout le monde" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amis" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Amis de confiance" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Rien" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Ouvrir le fichier" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Ouvrir dans le gestionnaire de fichiers" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Recherche" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pause" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Reprendre" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Parcourir le dossier" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntaxe : Insensible à la casse. Si activé, les expressions " "régulières de Python peuvent être utilisées, sinon seuls les correspondances " "génériques * sont pris en charge." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtrer" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex (Expression régulière)" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Ajouter un filtre de téléchargement" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Entrer un nouveau filtre de téléchargement  :" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Activer les expressions régulières" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Éditer un filtre de téléchargement" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modifiez le filtre de téléchargement suivant  :" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d a échoué  ! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtres réussis" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Public" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Accessible à" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Abandonner" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Réessayer" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Aléatoire" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Premier arrivé, premier servi" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Utilisateur" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Adresse IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorer l'utilisateur" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Saisir le nom d'un utilisateur que vous souhaitez ignorer  :" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorer l'adresse IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Saisir une adresse IP que vous souhaitez ignorer  :" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* implique tout le monde" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Bannir l'utilisateur" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Saisir le nom d'un utilisateur que vous souhaitez bannir  :" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Bannir l'adresse IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Saisir une adresse IP que vous souhaitez bannir :" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Formatage de variables" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Motif" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Remplacement" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Motif de censure" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Saisissez le motif que vous souhaitez censurer. Ajoutez des espaces autour " "du motif si vous ne souhaitez pas faire correspondre les chaînes de " "caractères à l'intérieur des mots (cela peut échouer au début et à la fin " "des lignes)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Modifier le motif de censure" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Ajouter un remplacement" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Entrez le modèle de texte et son remplacement :" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Modifier le remplacement" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Par défaut" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Afficher la boîte de dialogue de confirmation" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Exécuter en tâche de fond" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "gras" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "italique" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "souligné" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Séparer l'onglet \"Amis\"" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Barre latérale dans l'onglet \"Salon de Discussion\"" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Barre latérale toujours visible" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Haut" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Bas" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Gauche" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Droite" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Présent" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Absent" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Hors ligne" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Onglet modifié" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Mise en évidence de l'onglet" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Fenêtre" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Connecté (zone de notification)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Absent (zone de notification)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Hors ligne (zone de notification)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Message (zone de notification)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocole" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Commande" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Ajouter un gestionnaire d'URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "" "Entrez le protocole et la commande pour le gestionnaire d'URL, " "respectivement :" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Éditer les commandes" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Choisissez une nouvelle commande pour le protocole %s  :" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nom d'utilisateur;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Lecteur de musique (par exemple amarok, audacious, exaile) ou laisser-le " "vide pour une sélection automatique  :" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Nom d’utilisateur : " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Commande :" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Titre" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Joué actuellement (typiquement \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artiste" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Durée" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Taux d'encodage" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Commentaires" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Numéro de piste" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Année" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nom de fichier (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programme" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Activé" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Extension" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Aucune extension sélectionnée" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Réseau" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interface utilisateur" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Partages" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Envois" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Recherches" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Profil de l’utilisateur" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Discussions" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "En cours de lecture" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Enregistrement" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Utilisateurs bannis" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Utilisateurs ignorés" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Extensions" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Gestionnaires d'URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Préférences" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Sélectionnez un nom de fichier pour la sauvegarde de la configuration" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Statistiques de transfert" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Total depuis %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Réinitialiser les statistiques de transfert ?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Souhaitez-vous vraiment réinitialiser les statistiques de transfert ?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Liste de souhaits" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Souhait" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Recherche de l'article" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Modifier le souhait" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Choisissez une nouvelle valeur pour le souhait '%s'  :" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Effacer la liste de souhaits ?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Voulez-vous vraiment effacer votre liste de souhaits ?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Chemin" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Reprendre" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_ause" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Terminé / Filtré" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Terminé" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "En pause" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtré" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Supprimé" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "En attente…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Tout…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Effacer les téléchargements en attente" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "" "Voulez-vous vraiment effacer tous les téléchargements en file d'attente ?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Effacer tous les téléchargements" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Voulez-vous vraiment effacer tous les téléchargements ?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Télécharger %(num)i fichiers ?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Voulez-vous vraiment télécharger %(num)i fichiers du dossier %(folder)s de " "l'utilisateur %(user)s ?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Télécharger le répertoire" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Il aime" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "N'aime pas" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Classement" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Élément" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Recommandations pour l'article" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "J'_aime ceci" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Je n'aime _pas ceci" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Recommandations" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Utilisateurs similaires" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Recommandations (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Utilisateurs similaires (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Message privé de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Résultats trouvés depuis la liste de souhaits" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Profils d'utilisateurs" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Salons de discussions" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Centres d'intérêts" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Discussion" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Débogage] Connexions" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Débogage] Messages" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Débogage] Transferts" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Débogage] Divers" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Trouver…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Copier" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copier _tout" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Afficher les journaux de _déboguage" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Afficher les journaux de _transfert" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "Catégories des _journaux" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Effacer la vue des journaux" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Téléchargements : %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Envois : %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Préparation des partages" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Examen des partages" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Arrêt en cours..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Dernier message" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Salon" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Utilisateurs" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Rejoindre un salon" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Quitter un salon" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Rendre public le salon privé" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Annuler l'adhésion au salon" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Fermer tous les onglets …" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Fermer l'onglet" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Afficher le journal des discussions" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Supprimer le journal de discussion…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Actions de l'utilisateur" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Êtes-vous sûr de vouloir effacer définitivement tous les messages " "enregistrés de cet utilisateur ?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Les message(s) envoyé(s) quand vous êtes hors-ligne" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amis" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Salons" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Utilisateur" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "En liste d'attente" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Type de fichier" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nom de fichier" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Taille" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Qualité" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copier le chemin du _fichier" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copier l'_URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copier l'U_RL du répertoire" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Télécharger le(s) fichier(s)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Télécharger le(s) fichier(s) _vers…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Télécharger le(s) _répertoire(s)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Télécharger le(s) répertoire(s) v_ers…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Voir Profil _Utilisateur" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Parcourir le dossier" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Propriétés de F_ile" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copier le terme de recherche" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Effacer tous les résultats" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Effacer les filtres" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Rétablir les filtres" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVÉ] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "Filtres de résultat [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "Filtres de _Résultat" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d filtre(s) actif(s)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Ajouter _Souhait" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Supprimer _souhait" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Sélectionner les résultats de l'utilisateur" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Total : %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Résultats" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Sélectionnez la dossier de destination pour le(s) fichier(s)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Sélectionnez le dossier de destination" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "En attente" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "En attente (priorisé)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "En attente (privilégié)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Recherche le statut" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transfert en cours" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Connexion fermée" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Délai de connexion dépassé" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Utilisateur déconnecté" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Annulé" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Erreur du téléchargement d'un répertoire" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Erreur du fichier local" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Bannis" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Fichier non partagé" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Arrêt en cours" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Erreur de lecture de fichier" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "File d'attente" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Pourcentage" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Temps écoulé" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Temps restant" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Ouvrir le fichier" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Ouvrir dans le _gestionnaire de fichiers" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Rechercher" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Tout effacer" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Sélectionner les transferts de cet utilisateur" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Interrompre" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Terminés / annulés / échoués" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Terminés / Annulés" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Échoué" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Utilisateur déconnecté" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Effacer les envois en attente" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Êtes-vous sûr de vouloir effacer tous les envois en attente ?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Effacer tous les envois" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Êtes-vous sûr de vouloir effacer tous les envois ?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Sauvegarder la liste des partages sur le disque" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Envoyer le dossier et ses sous-dossiers…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copier le chemin du _répertoire" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Télécharger le dossier et ses sous-dossiers" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Télécharger le dossier et ses sous-dossiers _Dans…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Nom du fichier" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Envoyer le(s) fichier(s)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Envoyer le dossier…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Télécharger le répertoire _vers…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "La liste des fichiers partagés par l'utilisateur est vide. L'utilisateur ne " "partage aucun contenu, ou alors ses partages sont privés." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Impossible d'obtenir la liste des fichiers partagés par l'utilisateur. Soit " "l'utilisateur n'est pas connecté, soit les ports écoutés sont fermés des " "deux côtés ou alors un problème réseau est survenu." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Sélectionnez la destination pour télécharger plusieurs dossiers" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Envoyer le dossier (avec les sous-dossiers) vers l'utilisateur" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Envoyer le répertoire à l'utilisateur" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "" "Saisir le nom de l'utilisateur à qui vous souhaitez envoyer des fichiers :" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Envois" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Sélectionnez le dossier de destination pour le(s) fichier(s)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Envoyer le(s) fichier(s) à l'utilisateur" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Copier l'image" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Enregistrer l'image" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Échec du chargement de l'image de l'utilisateur %(user)s : %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Échec d'obtention d'informations sur l'utilisateur. Soit vous avez l'un et " "l'autre un port d'écoute fermé, soit l'utilisateur est hors ligne, soit il y " "a un problème de connexion temporaire." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Supprimer _l'ami" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Ajouter un ami" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Débannir l'utilisateur" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Ne plus ignorer l'utilisateur" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Oui" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Non" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Veuillez saisir le nombre de jours." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Offrez des jours de vos privilèges Soulseek à l'utilisateur %(user)s " "(%(days_left)s) :" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s jours restants" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Donner des privilèges" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Donner des privilèges" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Fermer" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Oui" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Sélectionnez un fichier" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Sélectionnez un répertoire" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Sélectionner" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Sélectionnez une image" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Toutes les images" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Enregistrer sous…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(aucun)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Fermer l'onglet" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Fermer tous les onglets ?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Voulez-vous vraiment fermer tous les onglets ?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Onglet(s) non lu(s)" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Tous les onglets" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "_Rouvrir l'onglet fermé" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s fichier(s) sélectionné(s)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Parcourir les fichiers" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "Ajouter un ami" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Afficher l'a_dresse IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Salons privés" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Se retirer du salon privé %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Ajouter au salon privé %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Supprimer comme opérateur de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Ajouter comme opérateur de %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- anciens messages au-dessus ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Fichier exécutable" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Image" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archive" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Divers" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Vidéo" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Document" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Texte" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "" "Erreur lors du chargement de l'icône personnalisée %(path)s : %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Cacher Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Afficher Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Colonne #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Non groupé" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Grouper par répertoire" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Grouper par utilisateur" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Voulez-vous vraiment quitter ? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "L'utilisateur %s existe déjà, et le mot de passe que vous avez entré n'est " "pas valide." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" "Tapez %s pour vous connecter avec un autre nom d'utilisateur ou mot de passe." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Mot de passe : " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Pour créer un nouveau compte Soulseek, saisissez votre nom d'utilisateur et " "votre mot de passe. Si vous avez déjà un compte, remplissez vos données de " "connexion existantes." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Les partages suivants ne sont pas disponibles :" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "réexamen ? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" "Impossible d'écrire dans le fichier journal \"%(filename)s\" : %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Impossible d'accéder au fichier de journal %(path)s : %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorre" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Émirats arabes unis" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua-et-Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albanie" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Arménie" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarctique" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentine" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa américaines" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Autriche" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australie" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Åland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaïdjan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnie-Herzégovine" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbade" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgique" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgarie" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahreïn" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Bénin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Saint-Barthélemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudes" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivie" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Saint-Eustache et Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brésil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhoutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Île Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Biélorussie" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Îles Cocos" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "République démocratique du Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "République centrafricaine" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Suisse" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Côte d'Ivoire" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Îles Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chili" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Cameroun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Chine" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colombie" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cap-Vert" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Île Christmas" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Chypre" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Tchéquie" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Allemagne" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Danemark" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominique" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "République dominicaine" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algérie" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Équateur" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonie" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Égypte" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Sahara occidental" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Érythrée" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Espagne" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Éthiopie" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europe" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlande" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fidji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Îles Malouines" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "États fédérés de Micronésie" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Îles Féroé" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "France" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Grande-Bretagne" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenade" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Géorgie" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guyane" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groenland" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambie" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinée" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guinée équatoriale" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grèce" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Géorgie du Sud-et-les îles Sandwich du Sud" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinée-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Îles Heard-et-MacDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croatie" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haïti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hongrie" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonésie" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlande" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israël" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Île de Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Inde" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Territoire britannique de l'océan Indien" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islande" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italie" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaïque" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordanie" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japon" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirghizistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Cambodge" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comores" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint-Christophe-et-Niévès" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Corée du Nord" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Corée du Sud" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Koweït" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Îles Caïmans" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazakhstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Liban" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Sainte-Lucie" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituanie" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxembourg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Lettonie" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libye" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Maroc" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldavie" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Saint-Martin (partie française)" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Îles Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macédoine du Nord" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Birmanie" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolie" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Îles Mariannes du Nord" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritanie" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malte" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Île Maurice" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldives" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Mexique" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malaisie" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambique" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibie" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nouvelle-Calédonie" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Île Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Pays-Bas" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norvège" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Népal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nouvelle-Zélande" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Pérou" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polynésie française" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papouasie-Nouvelle-Guinée" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Philippines" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Pologne" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint-Pierre-et-Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Îles Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Porto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Territoires palestiniens" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palaos" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "La Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Roumanie" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbie" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Russie" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arabie saoudite" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Îles Salomon" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Soudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suède" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapour" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Sainte-Hélène" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slovénie" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard et Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Slovaquie" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "Saint-Marin" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Sénégal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalie" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Soudan du Sud" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Sao Tomé-et-Principe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Saint-Martin (partie néerlandaise)" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Syrie" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Îles Turques-et-Caïques" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Tchad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Terres australes et antarctiques françaises" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Thaïlande" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadjikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor oriental" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkménistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunisie" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turquie" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinité-et-Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taïwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzanie" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukraine" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Ouganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Îles mineures éloignées des États-Unis" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "États-Unis" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Ouzbékistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Vatican" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Saint-Vincent-et-les-Grenadines" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Îles Vierges britanniques" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Îles Vierges des États-Unis" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Viêt Nam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis-et-Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Yémen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Afrique du Sud" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambie" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "La synthèse vocale du message a échoué : %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm : Veuillez fournir votre nom d'utilisateur Last.fm et votre clé API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Erreur du script Now Playing" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm : Impossible de se connecter à Audioscrobbler : %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm : Impossible d'obtenir une piste récente d'Audioscrobbler : %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS : Impossible de trouver un lecteur MPRIS approprié" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Plusieurs lecteurs MPRIS trouvés  : %(players)s. Utilisation de  : %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Lecteur MPRIS auto-détecté : %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" "MPRIS : Un problème est survenu lors de l'interrogation de %(player)s : " "%(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz : Veuillez fournir votre nom d'utilisateur ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz : Impossible de se connecter à ListenBrainz : %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "" "ListenBrainz : Vous ne semblez pas écouter quoi que ce soit en ce moment" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz : Impossible d'obtenir la piste actuelle de ListenBrainz : " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Filtres réseau" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Lister les commandes disponibles" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Connexion au serveur" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Déconnexion du serveur" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Activer/désactiver le statut absent" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Gérer les extensions" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Effacer la fenêtre de discussion" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Parler à la troisième-personne" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Annoncez la chanson en cours de lecture" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Rejoindre ou créer une salle" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Quitter le salon de discussion" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Dire un message dans le salon de discussion spécifié" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Ouvrir un salon de discussion privé" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Fermer le salon de discussion privé" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Demander la version client de l'utilisateur" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Envoyer un message privé à l'utilisateur" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Ajouter l'utilisateur à la liste d'amis" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Retirer l’utilisateur de la liste d’amis" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Voir les fichiers de l'utilisateur" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Afficher les informations du profil de l'utilisateur" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Afficher l'adresse IP ou le nom d'utilisateur" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Bloquer les connexions de l'utilisateur ou de l'adresse IP" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Supprimer l'utilisateur ou une adresse IP des listes de bannissement" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Désactiver les messages de l’utilisateur ou de l’adresse IP" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "" "Supprimer l'utilisateur ou l'adresse IP des listes d'utilisateurs ignorés" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Ajouter un partage" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Supprimer le partage" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Lister les partages" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Réexaminer mes partages" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Lancer une recherche globale de fichiers" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Rechercher des fichiers dans les salons joints" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Rechercher des fichiers dans tous les amis" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Rechercher les fichiers partagés d'un utilisateur" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Liste des commandes disponibles %(num)i :" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Liste des commandes disponibles %(num)i correspondant à \"%(query)s\" :" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Tapez %(command)s pour lister les commandes similaires" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Tapez %(command)s pour lister les commandes disponibles" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Salon %s non rejoint" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Pas de messages avec l'utilisateur %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Fermer la discussion privé de l'utilisateur %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "%s banni" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "%s débanni" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "%s ignoré" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s désignoré" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s partages listés (%(num_total)s configurés)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Impossible de partager le dossier inaccessible : \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "Partage %(group_name)s ajouté \"%(virtual_name)s\" (réexamen requis)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Aucun partage avec le nom \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Le partage \"%s\" a été retiré (Réexamen requis)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Chargement du greffon système" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Impossible de charger le plugin %(name)s. Le nom du dossier de plugin " "contient des caractères non valides : %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" "Conflit avec la commande %(interface)s dans le plugin %(name)s : %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Plugin chargé %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Impossible de charger le plugin %(module)s.\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Plugin désactivé %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Impossible de désactiver le plugin %(module)s.\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Le plugin %(module)s a échoué avec l'erreur %(errortype)s : %(error)s.\n" "Trace : %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Aucune description" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Argument %s manquant" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Argument invalide, choix possibles : %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Utilisation : %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Commande inconnue : %(command)s. Tapez %(help_command)s pour lister les " "commandes disponibles." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Aucun appareil UPnP trouvé" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s : Échec de la redirection du port externe %(external_port)s : " "%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Le port externe %(external_port)s a été transféré avec succès " "vers l'adresse IP locale %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Message privé de '%(user)s' : %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Recherche de l'élément \"%s\" dans les listes de souhaits" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "La période d'attente de la liste de souhaits est fixée à %s secondes" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "L'utilisateur %(user)s effectue une recherche sur « %(query)s », %(num)i " "résultats renvoyés" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Réexamen des partages…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Réanalyse des partages…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Réanalyse terminée : %(num)s dossiers trouvés" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Une erreur grave est survenue lors du réexamen des partages. Si le problème " "persiste, supprimez %(dir)s/*.db et réessayez. Si cela ne résout pas le " "problème, veuillez remplir un rapport de bogue en incluant cette trace " "d'appels : %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Erreur lors de l'examen du fichier %(path)s : %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Erreur lors de l'examen du répertoire %(path)s : %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "" "Erreur lors de l'examen des métadonnées du fichier %(path)s : %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Nouvelle analyse interrompue en raison de partages indisponibles : %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "L'utilisateur %(user)s parcourt votre liste de fichiers partagés" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Impossible de récupérer le dossier partagé %(folder)s : %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Impossible de lire la base de données des partages. Veuillez réanalyser vos " "partages. Erreur : %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "L'interface réseau spécifiée '%s' n'est pas disponible" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Impossible d'écouter sur le port %(port)s. Assurez-vous qu'aucune autre " "application ne l'utilise pas ou choisissez un port différent. Erreur : " "%(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Écoute du port : %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Impossible de se connecter au serveur %(host)s :%(port)s : %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Reconnexion automatique au serveur dans %i secondes" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "En cours de connexion à %(host)s :%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Connecté au serveur %(host)s :%(port)s, ouverture de session en cours…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Déconnecté du serveur %(host)s :%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Quelqu'un s'est connecté à votre compte Soulseek ailleurs" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Envoi terminé : utilisateur %(user)s, adresse IP %(ip)s, fichier %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Envoi annulé, utilisateur %(user)s, fichier %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Erreur d'E/S lors de l'envoi  : %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Envoi démarré : utilisateur %(user)s, adresse IP %(ip)s, fichier %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" "Impossible de créer le répertoire '%(folder)s', l'erreur est  : %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Le chargement des partages à partir du disque a échoué  : %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Liste des fichiers partagés par l'utilisateur %(user)s sauvegardée dans " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "Ne peut sauvegarder les partages, '%(user)s', erreur rapportée  : %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Image sauvegardée dans %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Impossible de sauvegarder l'image %(filename)s : %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "L’utilisateur %(user)s consulte votre profil" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Impossible de se connecter au serveur. Raison : %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Impossible d'établir une connexion" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "L'adresse IP de l'utilisateur %s est inconnue, car l'utilisateur est hors " "ligne" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "L'adresse IP de l'utilisateur %(user)s est %(ip)s, son port est " "%(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Annonce de Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i utilisateurs privilégiés" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Vous n'avez pas de privilèges Soulseek. Lorsque les privilèges sont activés, " "vos téléchargements seront mis en file d'attente avant ceux des utilisateurs " "non privilégiés." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i jours, %(hours)i heures, %(minutes)i minutes, %(seconds)i secondes " "restantes de privilèges Soulseek" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Votre mot de passe a été modifié" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Mot de passe modifié" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Impossible d'ouvrir le chemin du fichier %(path)s : %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Impossible d'ouvrir l'URL %(url)s : %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "" "Un problème est survenu lors de la lecture du fichier %(filename)s : " "%(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Tentative de chargement d'un fichier de sauvegarde %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Impossible de sauvegarder le fichier %(path)s : %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Impossible d'enregistrer le fichier %(path)s : %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Impossible de restaurer le fichier précédent %(path)s : %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Ajouter un ami…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "recherche de journalisation…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Recherche dans les salons…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Envoyer un message…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Activer/désactiver la synthèse vocale" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Aide sur les commandes des salons de discussion" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Journal" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Mur du salon" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Mur du sal_on" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Créé par" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Traduit par" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licence" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Précédent" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Bienvenue dans Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Configurer…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Si votre nom d'utilisateur souhaité est déjà utilisé, vous serez invité à le " "modifier." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Pour se connecter avec d'autres utilisateurs de Soulseek, un port d'écoute " "sur votre routeur doit être envoyé à votre ordinateur." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Si votre port d'écoute est fermé, vous ne pourrez vous connecter qu'aux " "utilisateurs dont le port d'écoute est ouvert." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Si nécessaire, choisissez un autre port d'écoute ci-dessous. Cela peut " "également être fait plus tard dans les préférences." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Télécharger des fichiers dans un dossier" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Répertoires partagés" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Les utilisateurs de Soulseek pourront télécharger à partir de vos partages. " "Contribuez au réseau Soulseek en partageant votre propre collection et en " "partageant à nouveau ce que vous avez téléchargé d'autres utilisateurs." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Vous êtes prêt à utiliser Nicotine+ !" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek est un protocole non encrypté et n'est en aucun prévu à une " "communication sécurisée." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Faire un don à Soulseek vous donne des privilèges pour une certaine période. " "Si vous avez des privilèges, vos téléchargements seront mis en file " "d'attente avant ceux des utilisateurs non privilégiés." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Fichier précédent" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Fichier suivant" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nom" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Dernière vitesse" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exporter…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Raccourcis clavier" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Général" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Se connecter" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Se déconnecter" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Réanalyser les partages" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Afficher le volet du journal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Confirmez Quitter" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Quitter" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Ouvrir le menu principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Ouvrir le menu contextuel" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Onglets" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Changer l'onglet principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Aller à l'onglet secondaire précédent" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Aller à l'onglet secondaire suivant" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Rouvrir l'onglet secondaire fermé" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Fermer l'onglet secondaire" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copier la cellule sélectionnée" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Supprimer la ligne sélectionnée" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Modification de" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Coupez" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Coller" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Insérer un Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Sélectionner tout" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Trouver" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Recherche l'occurrence suivante" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Recherche l'occurrence précédente" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transferts des fichiers" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Reprendre / Retenter le transfert" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pause / Abandon du transfert" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Télécharger ou envoyer à" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Sauvegarder la liste sur le disque" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Actualiser" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Tout minimiser ou maximiser" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Retour au répertoire parent" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Recherche de fichier" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtres de Résultat" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Session en cours" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Téléchargements terminés" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Quantité de données téléchargées" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Envois terminés" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Quantité de données envoyées" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Rétablir…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Les éléments de la liste de souhaits font l'objet d'une recherche " "automatique à intervalles réguliers, afin de découvrir des fichiers peu " "courants." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Ajouter un souhait…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Tout effacer…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Effacer tous les téléchargements terminés / filtrés" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Effacer terminé" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Effacer les téléchargements sélectionnés" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Tout _effacer…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Intérêts personnels" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Ajoutez ce que vous aimez…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Désintérêts personnels" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Ajoutez ce que vous n'aimez pas…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Rafraichir la liste des recommandations" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menu principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Salon…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Utilisateur…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Terme de recherche…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Modèles de recherche : avec un mot = terme, sans mot = -terme, mot partiel = " "*erme" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Champ de recherche" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Liste de souhaits" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Configurer les recherches" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Entrez un terme de recherche pour rechercher des fichiers partagés par " "d'autres utilisateurs sur le réseau Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Mode de groupement des fichiers" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Configurer les téléchargements" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Les fichiers que vous téléchargez auprès d'autres utilisateurs sont mis en " "file d'attente ici, et peuvent être mis en pause et repris à la demande" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Configurer les envois" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Les tentatives des utilisateurs pour télécharger vos fichiers partagés sont " "mises en file d'attente et gérées ici" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Ouvrir une liste de partage" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Ouvre une liste locale de fichiers partagés qui a été précédemment " "enregistrée sur le disque" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Configurer les partages" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Saisissez le nom d'un utilisateur dont vous souhaitez parcourir les fichiers " "partagés. Vous pouvez également sauvegarder la liste pour la parcourir plus " "tard." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Profil personnel" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Configurer le compte" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Saisissez le nom d'un utilisateur pour afficher sa description, ses " "informations et sa photo personnelle" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Historique des discussions" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Configurer les salons" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Saisissez le nom d'un utilisateur pour entamer une conversation textuelle " "avec lui en privé" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "Messages pour tous" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Configurer les utilisateurs ignorés" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Ajoutez des utilisateurs à votre liste d'amis pour partager des dossiers " "spécifiques avec eux et recevoir des notifications lorsqu'ils sont en ligne" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Rejoindre ou créer une salle…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Rejoignez un salon de discussion existant ou créez un nouveau salon pour " "discuter avec d'autres utilisateurs du réseau Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Configurer le Profil utilisateur" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Recherche dans les journalisations…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Connexions" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Téléchargement (vitesse / utilisateurs actifs)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Envoi (vitesse / utilisateurs actifs)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Recherche dans l’historique des salons…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Limites de vitesse de téléchargement" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Vitesse de téléchargement illimitée" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Limite de vitesse de téléchargement (Kio/s) :" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Limite alternative de vitesse de téléchargement (Kio/s) :" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Rechercher des salons…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Rafraîchir la liste des salons" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Afficher le flux des messages des salons de discussion publics" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Accepter les invitations à des salons privés" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Écrivez un seul message que les autres utilisateurs peuvent lire plus tard. " "Les messages récents sont affichés en haut." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Définir un message sur le mur…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtres de résultats de recherche" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Les filtres de résultats de recherche sont utilisés pour affiner les " "résultats de recherche affichés." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Chaque liste de résultats de recherche possède son propre filtre qui peut " "être affiché en cliquant sur le bouton « Filtres de résultats ». Un filtre " "est composé de plusieurs champs, chacun s'appliquant lorsque la touche « " "Entrée » est pressée dedans. Le filtrage s'applique alors aussitôt aux " "résultats déjà reçus ainsi qu'à ceux à venir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Comme son nom l'indique, un filtre de résultats de recherche ne peut pas " "élargir votre recherche d'origine, il ne peut que la réduire. Pour élargir " "ou modifier vos termes de recherche, effectuez une nouvelle recherche." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Utilisation des filtres de résultat" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Inclure le texte" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Les fichiers, dossiers et utilisateurs contenant ce texte seront affichés." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "La recherche n'est pas sensible à la casse mais l'ordre des mots est " "important : « Instrumental Remix » n'affichera pas les résultats avec « " "Remix Instrumental »" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Utiliser | (ou tuyaux) pour séparer plusieurs phrases exactes. Exemple :\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Exclure le texte" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Comme ci-dessus, mais les fichiers, dossiers et utilisateurs ne seront pas " "affichés si le texte correspond." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtre les fichiers en fonction de leur extension." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Plusieurs extensions de fichiers peuvent être spécifiées, ce qui élargira la " "liste des résultats. Exemple :\n" "\tflac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Il est également possible d'inverser le filtre, en spécifiant les extensions " "de fichiers que vous ne souhaitez pas voir apparaître dans vos résultats " "avec un point d'exclamation ! Exemple :\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Taille du fichier" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtre les fichiers en fonction de leur taille." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Par défaut, l'unité utilisée est l'octet (B) et les fichiers supérieurs ou " "égaux (>=) à cette valeur seront pris en compte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Ajoutez b, k, m ou g (alternativement kib, mib ou gib) pour spécifier les " "unités d'octet, de kibibyte, de mebibyte ou de gibibyte :\n" " 20m trouvera les fichiers supérieurs à 20Mio (20 mebi-octets)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Ajoutez = à une valeur pour spécifier une correspondance exacte :\n" " =1024 correspond à des fichiers d'exactement 1 KiB (kibioctet)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Ajoutez ! à une valeur pour spécifier une correspondance exacte :\n" " !30.5m ne correspond qu'aux fichiers d'une taille de 30.5 Mio (mébi-octet)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Ajoutez < ou > pour rechercher des fichiers plus petits/plus grands que la " "valeur donnée :\n" " >10,5 m|<1 g pour afficher les fichiers de plus de 10,5 Mio (mébi-" "octets), mais inférieur à 1 Gio (gibi-octets), utilisez un | entre les " "conditions." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Par commodité, les populaires variantes kb, mb et gb respectivement pour " "kilo-octet, méga-octet et giga-octet peuvent également être utilisées." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtre les fichiers en fonction de leur taux d'encodage." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Les valeurs ne doivent contenir que des chiffres. L'unité est toujours Kb/s " "(Kilobits par seconde)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Comme la taille du fichier (ci-dessus), les opérateurs =, !, <, >, <= ou >= " "peuvent être utilisés, et plusieurs conditions peuvent être spécifiées avec " "le séparateur | par exemple pour afficher les fichiers avec un débit d'au " "moins 256 Kb/s et avec un débit maximum de 1411 Kb/s :\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtre les fichiers suivant leur durée." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Par défaut, les fichiers dont la durée est supérieure ou égale (>=) à la " "durée saisie seront pris en compte, sauf si un opérateur (=, !, <=, < ou >) " "est utilisé." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Saisissez une valeur brute en secondes ou utilisez les formats d'heure MM:SS " "et HH:MM:SS :\n" " =53 pour afficher des fichiers d'une durée d'environ 53 secondes\n" " >5:30 pour afficher des fichiers de plus de 5 minutes et demie.\n" " <5:30:00 affiche les fichiers de moins de 5 heures et demie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Plusieurs conditions peuvent être spécifiées :\n" " >6:00 <12:00 pour afficher les fichiers d'une durée comprise entre 6 et " "12 minutes.\n" " !9:54 !8:43 !7:32 pour masquer certains fichiers spécifiques des " "résultats.\n" " =5:34 =4:23 =3:05 pour inclure des fichiers d'une durée spécifique." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Utilise les codes pays définis par la norme ISO 3166-2 :\n" " 'US' renvoie uniquement les fichiers des utilisateurs connectés aux États-" "Unis.\n" " '!GB' masque les fichiers des utilisateurs situés au Royaume-Uni." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "" "Plusieurs pays peuvent être spécifiés à l'aide de virgules ou d'espaces." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Place disponible" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "N'afficher que les résultats des utilisateurs qui ont au moins un créneau de " "téléchargement libre, c'est-à-dire des fichiers disponibles immédiatement." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Limites de vitesse d'envoi" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Vitesse de téléchargement illimitée" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Limiter la vitesse d'envoi (KiB/s) :" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Limite de vitesse d'envoi alternative (KiB/s) :" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Aide sur les commandes de salon privé" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Inclure le texte…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrer parmi les résultats ceux dont les chemins de fichiers contiennent le " "texte spécifié. Plusieurs expressions et mots peuvent être spécifiés, par " "exemple « expression exacte|musique|terme|expression exacte deux »" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Exclure le texte…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Exclure parmi les résultats ceux dont les chemins de fichiers contiennent le " "texte spécifié. Plusieurs expressions et mots peuvent être spécifiés, par " "exemple « expression exacte|musique|terme|expression exacte deux »" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Type de fichier…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Type de fichier, par exemple « flac|wav|ape » ou «!mp3|!m4a »" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Taille du fichier…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Taille du fichier, par exemple >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Taux d'encodage…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Débit, par exemple 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Durée…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Durée, par exemple >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Code pays…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Code pays, par exemple US ES ou !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Interdire aux utilisateurs d'accéder à vos fichiers partagés, en fonction du " "nom d'utilisateur, de l'adresse IP ou du pays." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Codes de pays à bloquer (séparés par des virgules)  :" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Les codes doivent être au format ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Utiliser un message de blocage géographique personnalisé  :" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Utiliser un message d'interdiction personnalisé  :" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Adresses IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Activer le correcteur" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "" "Restauration au démarrage des discussions privées précédemment ouvertes" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Activer les réponses aux messages privés de type CTCP (version client)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Le nombre de discussions privées récentes à afficher :" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Nombre de salons de discussion récents à afficher :" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Complétion des discussions" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Activer la touche TAB pour l'auto-complétion" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Activer la liste déroulante" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" "Nombre de caractères minimum requis pour afficher la liste déroulante :" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Complétions autorisées des discussions :" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Nom des amis" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nom des utilisateurs des salons" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nom des salons" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Commandes" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Horodatages" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Format de chat privé :" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Par défaut" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Format des salons de discussion :" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Synthèse vocale" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Activer la synthèse vocale" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Commande de synthèse vocale :" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Message des dialogues privés :" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Message des salons de discussion :" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censurer" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Activer la censure des modèles de texte" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Remplacement automatique" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Activer le remplacement automatique des mots" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Effacement automatique des téléchargements terminés/filtrés de la liste des " "transferts" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" "Stocker les téléchargements terminés dans les sous-dossiers du nom " "d'utilisateur" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Action de double-clic pour les téléchargements :" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Autoriser les utilisateurs à vous envoyer des fichiers :" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Répertoires" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Téléchargements terminés :" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Téléchargements incomplets :" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Fichiers reçus :" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Événements" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Exécuter la commande après la fin du téléchargement du fichier ($ pour le " "chemin du fichier) :" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Exécuter la commande une fois le téléchargement du dossier terminé ($ pour " "le chemin du dossier) :" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtres de téléchargement" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Activer les filtres de téléchargement" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Ajouter" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Par défaut" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Vérifier les filtres" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Non vérifié" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorer les discussions et les résultats de recherche des utilisateurs, en " "fonction du nom d'utilisateur ou de l'adresse IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Enregistrer les salons de discussion par défaut" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Enregistrer les dialogues privés par défaut" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Enregistrer les transferts dans un fichier" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Enregistrer les messages de débogage dans un fichier" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Format de l'horodatage du journal :" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Emplacement des dossiers" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Dossier des journaux du salon de discussion :" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Dossier des journaux de discussion privées  :" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Dossier des journaux de transfert :" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Dossier des journaux de débogage :" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Connectez-vous à un compte Soulseek existant ou créez-en un nouveau. Les " "noms d'utilisateur sont sensibles à la casse et uniques." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Adresse IP publique :" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Port d'écoute ( redémarrage requis) :" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Statut d'absent" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutes d'inactivité avant d'être absent (0 pour désactiver) :" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Message de réponse automatique en cas d'absence :" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Transférer automatiquement le port d'écoute (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Connexion automatique au serveur au démarrage" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Serveur Soulseek :" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Lie les connexions à une interface réseau spécifique, ce qui est utile, par " "exemple, pour s'assurer qu'un VPN est utilisé à tout moment. Laissez vide " "pour utiliser toute interface disponible. Ne modifiez cette valeur que si " "vous savez ce que vous faites." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Interface réseau (redémarrage requis) :" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Now Playing vous permet d'afficher ce que votre lecteur mutimédia est en " "train de jouer grâce à la commande /now dans une discussion." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Autres" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Format Now Playing" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Format du message Now Playing :" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Tester la configuration" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Activer les extensions" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Ajouter des extensions" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Ajouter des extensions" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Préférences" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Préférences" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Version :" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Créé par :" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Activer l'historique des recherches" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Les fichiers partagés en privé qui ont été rendus visibles à tous seront " "préfixés avec '[PRIVATE]', et ne peuvent être téléchargés que si les " "utilisateurs donnent une autorisation explicite. Demandez-leur gentiment." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" "Afficher les fichiers partagés en privé dans les résultats de recherche" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limiter le nombre de résultats par recherche :" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Activer les filtres de résultats de recherche par défaut" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Inclure :" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Exclure :" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Type de fichier :" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Taille  :" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Taux d'encodage  :" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Durée :" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Code pays :" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Afficher uniquement les résultats des utilisateurs ayant un créneau de " "téléchargement disponible." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Aide sur le filtre de résultats" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Recherches sur le réseau" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Répondre aux demandes de recherche d'autres utilisateurs" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Les recherches plus courtes que ce nombre de caractères seront ignorées :" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Nombre maximum de résultats de recherche à envoyer par demande de recherche :" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Effacer l'historique des recherches" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Effacer l'historique des filtres" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Réanalyse automatiquement le contenu de vos dossiers partagés au démarrage. " "Si cette option est désactivée, vos partages ne sont mis à jour que lorsque " "vous lancez manuellement une nouvelle analyse." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Réexaminer mes partages au démarrage" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Visible à tous :" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Partage des amis" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Partages de confiance" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Effacement automatique des téléchargements terminés/annulés de la liste des " "transferts" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Action de double-clic pour les envois :" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limitez la vitesse d'envoi :" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Par transfert" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Total des transferts" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Créneau d'envoi" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin : Les fichiers seront téléchargés de façon cyclique vers les " "utilisateurs qui font la queue.\n" "Premier entré, premier sorti : Les fichiers seront téléchargés dans l'ordre " "dans lequel ils ont été mis en file d'attente." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Type de file d'attente pour l'envoi :" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Mettre en file d'attente les téléchargements si la vitesse de transfert " "totale atteint (KiB/s) :" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Limiter le nombre d'envoi à :" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Donner la priorité à tous les amis" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Limites de file d'attente" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Nombre maximal de fichiers envoyés par utilisateur :" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Taille maximale des fichiers en queue par utilisateur (MiB) :" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Les limites ne s'appliquent pas aux amis" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Les occurrences de $ seront remplacées par son adresse. L'application par " "défaut du système sera utilisée si aucun protocole n'a pas été configuré." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Commande du gestionnaire de fichiers :" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Réinitialiser l’image" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Présentation" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Ajoutez des choses que vous voulez que tout le monde voie, comme une " "description courte, des conseils utiles ou des lignes directrices pour " "télécharger vos fichiers." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Image :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Effacer" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Privilégier le mode sombre" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Utiliser _Header Bar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Activer l'icône dans la zone de notification" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimiser dans la zone de notification au démarrage" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Langue (nécessite un redémarrage) :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Lors de la fermeture de Nicotine+ :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notifications" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Activer le son des notifications" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Afficher les notifications pour les discussions privées et les mentions dans " "le titre de la fenêtre" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Afficher les notification pour :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Fichiers téléchargés" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Dossiers téléchargés" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Messages privés" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Messages des salons" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Mentions dans les salons" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Résultats trouvés depuis la liste de souhaits" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Restaurer le dernier onglet ouvert au démarrage" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Boutons de fermeture sur les onglets secondaires" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Couleur de l'étiquette de l'onglet normal :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Changement de la couleur de l'étiquette de l'onglet :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Couleur de l'étiquette de l'onglet en surbrillance :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Position de la liste d'amis :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Onglets principaux visibles :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Positions de la barre d'onglets :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Onglets principaux" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Afficher les chemins de fichiers inversés (nécessite un redémarrage)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Afficher la taille exacte des fichiers (nécessite un redémarrage)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Couleur du texte de la liste :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Couleur du texte des recherches en attente :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Activer les noms d'utilisateurs colorés" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Apparence du nom d’utilisateur dans les discussions :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Couleur du texte distant :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Couleur du texte local :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Couleur du texte de sortie de la commande :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "Couleur du texte d’action /me :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Couleur du texte en surbrillance :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Couleur du lien URL :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Statuts des utilisateurs" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Couleur en ligne :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Couleur du texte d'absence :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Couleur hors ligne :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Saisies de texte" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Couleur de fond de la saisie de texte :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Couleur du texte de la saisie :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Polices" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Police par défaut :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Police des listes :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Police d’affichage du texte :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Police des discussions :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Police des transferts :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Police des recherches :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Police de navigation :" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Icônes" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Dossier des icônes du thème :" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Abandonner l’utilisateur (s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Bannir ce(s) utilisateur(s)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Effacer tous les envois terminés / annulés" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Envoyer un message à tous" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Effacer des envois" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Sauvegarder la liste des partages sur le disque" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Actualiser les fichiers" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Modifier le profil" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Fichiers partagés" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Répertoires partagés" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Téléchargements en file d'attente" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Créneau de téléchargement libre" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Vitesse de téléchargement" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Modifier les centres d'intérêt" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Donner des privilèges…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Actualiser le profil" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Commandes Nicotine+" #~ msgid "_Clear" #~ msgstr "Effa_cer" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Impossible de sauvegarder %(filename)s : %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Amis de confiance" #~ msgid "Quit program" #~ msgstr "Quitter le programme" #~ msgid "Username:" #~ msgstr "Nom d’utilisateur :" #~ msgid "Re_commendations for Item" #~ msgstr "Re_commandations pour l'article" #~ msgid "_Remove Item" #~ msgstr "_Retirer l'élément" #~ msgid "_Remove" #~ msgstr "Enleve_r" #~ msgid "Send M_essage" #~ msgstr "Envoyer M_essage" #~ msgid "Send Message" #~ msgstr "Envoyer un message" #~ msgid "View User Profile" #~ msgstr "Voir le profil de l'utilisateur" #~ msgid "Start Messaging" #~ msgstr "Démarrer la messagerie" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "" #~ "Saisissez le nom de l'utilisateur à qui vous voulez envoyer un message :" #~ msgid "_Message" #~ msgstr "_Message" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "" #~ "Saisissez le nom de l'utilisateur dont vous souhaitez voir le profil :" #~ msgid "_View Profile" #~ msgstr "_Voir le profil" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Saisissez le nom d'un utilisateur dont vous souhaitez recevoir la liste " #~ "du partage :" #~ msgid "_Browse" #~ msgstr "_Parcourir" #~ msgid "Password" #~ msgstr "Mot de passe" #~ msgid "Download File" #~ msgstr "Télécharger le fichier" #~ msgid "Refresh Similar Users" #~ msgstr "Rafraichir les utilisateurs similaires" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Saisissez le nom d'utilisateur de la personne dont vous souhaitez voir " #~ "les fichiers" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Entrez le nom d'utilisateur de la personne dont vous voulez voir les " #~ "informations" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Saisissez le nom d'utilisateur de la personne à qui vous souhaitez " #~ "envoyer un message" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Entrez le nom d’utilisateur que vous souhaitez ajouter à votre liste " #~ "d’amis" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Saisissez le nom du salon que vous souhaitez rejoindre. Si le salon " #~ "n'existe pas, celui-ci sera créé." #~ msgid "Show Log History Pane" #~ msgstr "Afficher le volet de l'historique du journal" #~ msgid "Save _Picture" #~ msgstr "Sauvegarder l'_image" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Filtrage des résultats de recherche incorrects %(filepath)s de " #~ "l'utilisateur %(user)s pour la requête de recherche \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Certains clients n'envoient pas les résultats de recherche si ces " #~ "derniers comportent des caractères spéciaux." #~ msgid "Remove special characters from search terms" #~ msgstr "Supprimer les caractères spéciaux des termes de recherche" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problème lors de l'exécution de '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problème lors de l'exécution sur le dossier  : %s" #~ msgid "Disallowed extension" #~ msgstr "Extension non autorisée" #~ msgid "Too many files" #~ msgstr "Trop de fichiers" #~ msgid "Too many megabytes" #~ msgstr "Trop de mégaoctets" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Le serveur ne permet pas d'effectuer des recherches de listes de souhaits " #~ "pour le moment" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "La vitesse de transfert des fichiers dépend des utilisateurs à partir " #~ "desquels vous effectuez le téléchargement. Certains utilisateurs seront " #~ "plus rapides, tandis que d'autres seront lents." #~ msgid "Started Downloads" #~ msgstr "Téléchargements démarrés" #~ msgid "Started Uploads" #~ msgstr "Envois démarrés" #~ msgid "Replace censored letters with:" #~ msgstr "Remplace les lettres censurées par  :" #~ msgid "Censored Patterns" #~ msgstr "Motifs censurés" #~ msgid "Replacements" #~ msgstr "Remplacements" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Si un utilisateur du réseau Soulseek recherche un fichier qui existe dans " #~ "vos partages, les résultats de la recherche seront envoyés à " #~ "l'utilisateur." #~ msgid "Send to Player" #~ msgstr "Envoyer au lecteur" #~ msgid "Send to _Player" #~ msgstr "Envoyer au _lecteur" #~ msgid "_Open in File Manager" #~ msgstr "_Ouvrir dans le gestionnaire de fichiers" #~ msgid "Media player command:" #~ msgstr "Commande du lecteur multimédia :" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Impossible d'enregistrer le téléchargement dans le sous-dossier du nom " #~ "d'utilisateur, retour au dossier de téléchargement par défaut. Erreur : %s" #~ msgid "Buddy-only" #~ msgstr "Pour amis uniquement" #~ msgid "Share with buddies only" #~ msgstr "Partager avec des copains seulement" #~ msgid "_Quit…" #~ msgstr "_Quitter…" #~ msgid "_Configure Shares" #~ msgstr "_Configurer les partages" #~ msgid "Remote file error" #~ msgstr "Erreur de fichier distant" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Impossible de trouver %(option1)s ou %(option2)s, veuillez installer l'un " #~ "ou l'autre." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s répertoires trouvés après réexamen" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Échec du traitement des bases de données suivantes : %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Échec d'envoi du nombre de fichiers partagés au serveur : %s" #~ msgid "Quit / Run in Background" #~ msgstr "Quitter/exécuter en arrière-plan" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Plage de ports d'écoute :" #~ msgid "Network interface:" #~ msgstr "Interface réseau :" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Limiter les partages aux amis de confiance" #~ msgid "Shared" #~ msgstr "Partagé" #~ msgid "Search Files and Folders" #~ msgstr "Rechercher dans les fichiers et dossiers" #~ msgid "Out of Date" #~ msgstr "Non à jour" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "La version %(version)s est disponible, publiée le %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Vous utilisez une version de développement de %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Vous utilisez la dernière version de %s" #~ msgid "Latest Version Unknown" #~ msgstr "Dernière version inconnue" #~ msgid "Prefer Dark _Mode" #~ msgstr "Privilégier le mode _sombre" #~ msgid "Show _Log History Pane" #~ msgstr "Afficher l'historique des _journaux" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Liste d'amis dans un onglet séparé" #~ msgid "Buddy List Always Visible" #~ msgstr "Liste d'amis toujours visible" #~ msgid "_View" #~ msgstr "_Affichage" #~ msgid "_Open Log Folder" #~ msgstr "_Ouvrir le dossier des journaux" #~ msgid "_Browse Folder(s)" #~ msgstr "_Parcourir le(s) répertoire(s)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibioctets (2^10 octets) par seconde." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Envoyé aux utilisateurs la raison du géoblocage." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "" #~ "Envoyer aux utilisateurs la raison pour laquelle ils ont été bannis." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Dès que vous interagissez avec l'application en étant absent, votre " #~ "statut sera à \"en ligne\"." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Chaque utilisateur peut mettre en file d'attente un maximum de :" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 octets)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "fichiers" #~ msgid "Queue Behavior" #~ msgstr "Comportement de la file d'attente" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "S'il est désactivé, les créneaux seront automatiquement déterminés par " #~ "les limites de la bande passante disponible." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Notez que le thème du système d'exploitation peut avoir la priorité." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Par défaut, l'onglet le plus à gauche est ouvert au démarrage" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Arrêter %(program)s %(version)s, %(status)s !" #~ msgid "terminated" #~ msgstr "terminé" #~ msgid "done" #~ msgstr "fait" #~ msgid "Remember choice" #~ msgstr "Mémoriser ce choix" #~ msgid "Kosovo" #~ msgstr "Kosovo" #~ msgid "Unknown Network Interface" #~ msgstr "Interface réseau inconnue" #~ msgid "Listening Port Unavailable" #~ msgstr "Port non disponible" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "Le serveur ne répond pas, nouvelle tentative dans %i secondes" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ utilise un réseau pair-à-pair pour se connecter aux autres " #~ "utilisateurs. Afin de permettre aux utilisateurs de se connecter à vous " #~ "sans problème, un port d'écoute ouvert est crucial." #~ msgid "--- disconnected ---" #~ msgstr "--- déconnecté ---" #~ msgid "--- reconnected ---" #~ msgstr "--- reconnecté ---" #~ msgid "ID" #~ msgstr "Identifiant" #~ msgid "Earth" #~ msgstr "Terre" #~ msgid "Czech Republic" #~ msgstr "République tchèque" #~ msgid "Turkey" #~ msgstr "Turquie" #~ msgid "Joined Rooms " #~ msgstr "Salons joints " #~ msgid "_Auto-join Room" #~ msgstr "Rejoindre automatiquement le salon" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Syntax  : Les lettres sont insensibles à la casse. Toutes les " #~ "expressions régulières Python sont prises en charge si l'indentation est " #~ "désactivée. Pour les filtres simples, il est recommandé de laisser " #~ "l'indentation activée." #~ msgid "Escaped" #~ msgstr "Sélection des filtres (echap.)" #~ msgid "Escape filter" #~ msgstr "Filtre d’échappement" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Entrez le modèle du texte et son remplacement" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s répertoires trouvés avant réexamen, reconstruction…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Aucun port n'est disponible dans la plage de ports spécifiée %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Choisissez une plage à partir de laquelle sélectionner un port d'écoute. " #~ "Le premier port disponible de la plage sera utilisé." #~ msgid "First Port" #~ msgstr "Premier port" #~ msgid "to" #~ msgstr "à" #~ msgid "Last Port" #~ msgstr "Dernier port" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Impossible de trouver %s ou plus récent, veuillez l'installer." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Impossible d'importer le module Gtk. Mauvaise installation du module " #~ "python-gobject ?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Vous utilisez une version non supportée de GTK %(major_version)s. Vous " #~ "devriez installer GTK %(complete_version)s ou plus récent." #~ msgid "User Info" #~ msgstr "Informations sur l’utilisateur" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Zoom avant" #~ msgid "Zoom Out" #~ msgstr "Zoom arrière" #~ msgid "Show User I_nfo" #~ msgstr "Afficher les i_nformation utilisateur" #~ msgid "Request User's Info" #~ msgstr "Demande d'informations sur l'utilisateur" #~ msgid "Request User's Shares" #~ msgstr "Demander les partages de l'utilisateur" #~ msgid "Request User Info" #~ msgstr "Demander des informations sur l'utilisateur" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "" #~ "Saisissez le nom de l'utilisateur dont vous souhaitez voir les " #~ "informations :" #~ msgid "Request Shares List" #~ msgstr "Demander la liste du partage" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "URL Soulseek non valide : %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Les utilisateurs du réseau Soulseek pourront télécharger des fichiers à " #~ "partir des dossiers que vous partagez. Le partage des fichiers est " #~ "crucial pour la santé du réseau Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Mise à jour de l'I_nfo" #~ msgid "Chat Room Commands" #~ msgstr "Commandes des salons de discussion" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'salon'" #~ msgid "Join room 'room'" #~ msgstr "Rejoindre le salon 'salon'" #~ msgid "/me 'message'" #~ msgstr "/me 'message'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Afficher la sortie du script du Now Playing" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'utilisateur'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Ajoutez l'utilisateur 'user' à votre liste d'amis" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'utilisateur'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Supprimez l'utilisateur 'user' de votre liste d'amis" #~ msgid "/ban 'user'" #~ msgstr "/ban 'utilisateur'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Ajoute l'utilisateur 'utilisateur' à votre liste de bannissement" #~ msgid "/unban 'user'" #~ msgstr "/unban 'utilisateur'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Retire l'utilisateur 'utilisateur' de votre liste de bannissement" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'utilisateur'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Ajoute l'utilisateur 'utilisateur' à votre liste d'ignorance" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'utilisateur'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Retire l'utilisateur 'utilisateur' de votre liste d'ignorance" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'utilisateur'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'utilisateur'" #~ msgid "Request info for 'user'" #~ msgstr "Demande d'informations pour \"user\"" #~ msgid "/ip 'user'" #~ msgstr "/ip 'utilisateur'" #~ msgid "Show IP for user 'user'" #~ msgstr "Montre l'IP de l'utilisateur 'utilisateur'" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'requête'" #~ msgid "Start a new search for 'query'" #~ msgstr "Démarrer une nouvelle recherche pour 'requête'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'requête'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Rechercher 'requête' dans les salons rejoints" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'requête'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Recherche 'requête' dans sa liste d'amis" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'utilisateur' 'requête'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'utilisateur' 'message'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Envoie le message 'message' à l'utilisateur 'utilisateur'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'utilisateur'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "" #~ "Ouvre une fenêtre de dialogue privé avec l'utilisateur 'utilisateur'" #~ msgid "Private Chat Commands" #~ msgstr "Commandes des salons privés" #~ msgid "Add user to your ban list" #~ msgstr "Ajouter l'utilisateur à votre liste de bannissement" #~ msgid "Add user to your ignore list" #~ msgstr "Ajouter l'utilisateur à votre liste d'utilisateurs ignorés" #~ msgid "Browse shares of user" #~ msgstr "Parcourir les partages de l'utilisateur" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Pour le filtrage insensible à l'ordre, ainsi que pour le filtrage de " #~ "plusieurs phrases exactes, des barres verticales peuvent être utilisées " #~ "pour séparer les phrases et les mots.\n" #~ " Exemple : Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Pour exclure les fichiers non audio, utilisez !0 dans le filtre de durée." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "" #~ "Filtre les fichiers suivant la position géographique des utilisateurs." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Pour afficher à nouveau les résultats complets, effacez simplement tous " #~ "les filtres actifs." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Consultez les préférences pour définir les options de filtrage des " #~ "résultats de recherche." #~ msgid "File size" #~ msgstr "Taille du fichier" #~ msgid "Clear Active Filters" #~ msgstr "Effacer les filtres actifs" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Faire défiler les complétions en appuyant sur la touche de tabulation" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Cacher la liste déroulante lors d'un seul choix" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Télécharger les répertoires en ordre décroissant" #~ msgid "Incomplete file folder:" #~ msgstr "Dossier incomplet :" #~ msgid "Download folder:" #~ msgstr "Dossier de téléchargement :" #~ msgid "Save buddies' uploads to:" #~ msgstr "Enregistrez les téléchargements de vos amis vers :" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Utilisez UPnP pour rediriger le port d'écoute" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Partagez vos dossiers avec tous les utilisateurs de Soulseek ou avec vos " #~ "amis, ce qui permet de télécharger les contenus directement depuis votre " #~ "appareil. Les fichiers cachés ne sont jamais partagés." #~ msgid "Secondary Tabs" #~ msgstr "Onglets secondaires" #~ msgid "Chat room tab bar position:" #~ msgstr "Position de la barre d'onglets du salon de discussion  :" #~ msgid "Private chat tab bar position:" #~ msgstr "Position de la barre d'onglet de discussion privé :" #~ msgid "Search tab bar position:" #~ msgstr "Position de la barre d'onglets de recherche :" #~ msgid "User info tab bar position:" #~ msgstr "Position de la barre d'onglet des informations utilisateur :" #~ msgid "User browse tab bar position:" #~ msgstr "Position de la barre d'onglets du navigateur de l'utilisateur :" #~ msgid "Tab Labels" #~ msgstr "Étiquettes d'onglets" #~ msgid "_Refresh Info" #~ msgstr "_Rafraîchir les informations" #~ msgid "Block IP Address" #~ msgstr "Bloquer l'adresse IP" #~ msgid "Connected" #~ msgstr "Connecté" #~ msgid "Disconnected" #~ msgstr "Déconnecté" #~ msgid "Disconnected (Tray)" #~ msgstr "Déconnecté (zone de notification)" #~ msgid "User(s)" #~ msgstr "Utilisateur(s)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "L'alias \"%s\" n'as rien retourné" #~ msgid "Alternative Speed Limits" #~ msgstr "Limites de vitesse alternatives" #~ msgid "Last played" #~ msgstr "Joué pour la dernière fois" #~ msgid "Playing now" #~ msgstr "En cours de lecture" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Impossible de télécharger le fichier %(path)s : %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Code d'erreur %(code)s : %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Ne trouve pas l'alias (%s)" #~ msgid "Aliases:" #~ msgstr "Alias :" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Alias %(alias)s enlevé : %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Ne trouve pas l'alias (%(alias)s)\n" #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Utiliser les limites de vitesse alternatives" #~ msgid "Aliases" #~ msgstr "Alias" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'commande' 'définition'" #~ msgid "Add a new alias" #~ msgstr "Ajouter un nouvel alias" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'commande'" #~ msgid "Remove an alias" #~ msgstr "Enlever un alias" #~ msgid "Chat History" #~ msgstr "Historique de discussions" #~ msgid "Command aliases" #~ msgstr "Alias des commandes" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limiter la vitesse de téléchargement à (Kio/s) :" #~ msgid "Author(s):" #~ msgstr "Auteur(s) :" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limitez la vitesse d'envoi à (KiB/s) :" #~ msgid "Wishlist item found" #~ msgstr "Élément de la liste de souhaits trouvé" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Les onglets affichent les icônes d'état de l'utilisateur au lieu du texte" #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Afficher les chemins des fichiers en info-bulles dans la liste des " #~ "fichiers" #~ msgid "Colored and clickable usernames" #~ msgstr "Noms d'utilisateurs colorés et cliquables" #~ msgid "Notification changes the tab's text color" #~ msgstr "La notification change la couleur du texte des onglets" #~ msgid "Cancel" #~ msgstr "Annuler" #~ msgid "OK" #~ msgstr "Valider" #~ msgid "_Add to Buddy List" #~ msgstr "_Ajouter à la liste d'amis" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Effacer tous les téléchargements avec un statut spécifique." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Effacer tous les envois avec un statut spécifique." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "utiliser un répertoire de données utilisateur spécifique pour, par " #~ "exemple, la liste des téléchargements" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Section de configuration inconnue « %s »" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Option de configuration inconnue « %(option)s » dans la section « " #~ "%(section)s »" #, python-format #~ msgid "Version %s is available" #~ msgstr "Version %s disponible" #, python-format #~ msgid "released on %s" #~ msgstr "publiée le %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ tourne en tâche de fond" #, python-format #~ msgid "Private message from %s" #~ msgstr "Message privé de %s" #~ msgid "Aborted" #~ msgstr "Annulé" #~ msgid "Blocked country" #~ msgstr "Pays bloqué" #~ msgid "Finished / Aborted" #~ msgstr "Terminés/annulés" #~ msgid "Close tab" #~ msgstr "Fermer l'onglet" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Vous avez été mentionné dans le salon %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "La commande %s n'est pas reconnue" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Avertissement : %(realuser)s tente d'usurper l'identité de %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "L'interface réseau que vous avez spécifiée, '%s', n'existe pas. Modifier " #~ "ou supprimer l'interface réseau spécifiée et redémarrer Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "L'intervalle de ports pour les connexions client que vous avez spécifié " #~ "était {}-{}, mais aucun d'entre eux n'est disponible. " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Notez qu'une partie de votre plage se situe en dessous de 1024. Cela " #~ "n'est généralement pas autorisé sauf sous Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progression de la réanalyse : %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Erreur du système d'exploitation  : %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP n'est pas disponible sur ce réseau" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Échec de redirection du port WAN externe  : %(error)s" #~ msgid "Room wall" #~ msgstr "Mur du salon" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Le port d'écoute par défaut '2234' fonctionne bien dans la plupart des " #~ "cas. Si vous avez besoin d'utiliser un autre port, vous pourrez le " #~ "modifier ultérieurement dans les préférences." #~ msgid "Show users with similar interests" #~ msgstr "Afficher les utilisateurs avec les mêmes intérêts" #~ msgid "Menu" #~ msgstr "Menu" #~ msgid "Expand / Collapse all" #~ msgstr "Minimiser / Maximiser" #~ msgid "Configure shares" #~ msgstr "Configuration des partages" #~ msgid "Create or join room…" #~ msgstr "Créer ou rejoindre un salon…" #~ msgid "_Room List" #~ msgstr "Liste des _salons" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Activer les limites alternatives de téléchargement et d'envoi" #~ msgid "Show log history" #~ msgstr "Afficher l'histoire du journal" #~ msgid "Result grouping mode" #~ msgstr "Mode de groupement des résultats" #~ msgid "Free slot" #~ msgstr "Emplacement libre" #~ msgid "Save shares list to disk" #~ msgstr "Enregistrer la liste des partages sur le disque" #~ msgid "_Away" #~ msgstr "_Absent" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Échec du chargement du fichier d'interface %(file)s : %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Tentative de réinitialisation de l'index des fichiers partagés en raison " #~ "d'une erreur. Veuillez rescanner vos partages." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "L'index des fichiers partagés n'a pas pu être consulté. Cela peut être dû " #~ "au fait que plusieurs instances de Nicotine+ sont actives simultanément, " #~ "à des problèmes de permission de fichiers ou à un autre problème dans " #~ "Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ est un client Soulseek" #~ msgid "enable the tray icon" #~ msgstr "activer l'icône dans la zone de notification" #~ msgid "disable the tray icon" #~ msgstr "Désactiver l'icône dans la zone de notification" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Obtenez les privilèges de Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "L'adresse IP publique est %(ip)s et le port d'écoute actif est " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "inconnu" #~ msgid "Notification" #~ msgstr "Notification" #~ msgid "Length" #~ msgstr "Durée" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Image non sauvegardée, %s existe déjà." #~ msgid "_Open" #~ msgstr "_Ouvrir" #~ msgid "_Save" #~ msgstr "_Enregistrer" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "" #~ "Échec de chargement de l'extension « %s », impossible de la localiser." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Erreur d'E/S  : %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Échec d'ouverture du fichier : %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Échec d'ouverture de l'URL : %s" #~ msgid "_Log Conversation" #~ msgstr "_journalisation des discussions" #~ msgid "Result Filter List" #~ msgstr "Liste des filtres de résultats" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Ajoutez < ou > pour rechercher des fichiers inférieurs/supérieurs à la " #~ "valeur donnée." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Les fichiers VBR affichent leur taux d'encodage moyen et sont " #~ "généralement inférieurs en taux d'encodage d'un fichier CBR compressé de " #~ "320 kbps de même qualité audio." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Comme la taille ci-dessus, =, < et > peuvent être utilisés." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Empêcher l'accès en écriture par d'autres programmes pour les fichiers en " #~ "cours de téléchargement (désactiver pour NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Où les téléchargements incomplets sont temporairement stockés." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Où les téléchargements des amis seront stockés (avec un sous-dossier créé " #~ "pour chaque ami)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Basculer l'état d'inactivité après quelques minutes d'inactivité :" #~ msgid "Protocol:" #~ msgstr "Protocole :" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Répertoire du thème d'icônes (nécessite un redémarrage)  :" #~ msgid "Establishing connection" #~ msgstr "Établissement de la connexion" #~ msgid "Clear Groups" #~ msgstr "Effacer les groupes" #~ msgid "User List" #~ msgstr "Liste des utilisateurs" #~ msgid "_Reset Statistics…" #~ msgstr "_Réinitialiser les statstiques…" #~ msgid "Clear _Downloads…" #~ msgstr "Effacer tous les téléchargements…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Effacer tous les envois…" #~ msgid "Block User's IP Address" #~ msgstr "Bloquer l'adresse IP de l'utilisateur" #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorer l'adresse IP de l'utilisateur" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Effacez tous les téléchargements dont le transfert est terminé ou qui ont " #~ "été interceptés par un filtre." #~ msgid "Usernames" #~ msgstr "Utilisateurs" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Afficher les messages enregistrés des salons des discussions lorsqu'on y " #~ "accède" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Effacez tous les téléchargements dont le transfert est terminé ou annulés " #~ "par l'utilisateur distant." #~ msgid "Queue Position" #~ msgstr "Position dans la file d'attente" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "L'utilisateur %(user)s effectue une recherche directe sur « %(query)s », " #~ "%(num)i résultats renvoyés" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVÉ]" #~ msgid "Room wall (personal message set)" #~ msgstr "Liste des salons (message personnel défini)" #~ msgid "Your config file is corrupt" #~ msgstr "Votre fichier de configuration est corrompu" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Nous sommes désolés mais il semble que votre fichier de configuration " #~ "soit corrompu. Veuillez reconfigurer Nicotine+.\n" #~ "\n" #~ "Nous avons renommé votre ancien fichier de configuration en\n" #~ "%(corrupt)s\n" #~ "Si vous ouvrez ce fichier avec un éditeur de texte, vous pourriez " #~ "éventuellement récupérer quelques-uns de vos paramètres." #~ msgid "User Description" #~ msgstr "Description de l'utilisateur" #~ msgid "User Interests" #~ msgstr "Intérêts de l'utilisateur" #~ msgid "User Picture" #~ msgstr "Image de l'utilisateur" #~ msgid "Search Wishlist" #~ msgstr "Recherche des listes de souhaits" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Arrêter Nicotine+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Utiliser Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Arrêter Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Arrêter Nicotine+ %(version)s, %(status)s !" #~ msgid "User:" #~ msgstr "Utilisateur  :" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Tous %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s fichiers " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Autoriser les expressions régulières pour l'inclusion et l'exclusion du " #~ "filtre" #, fuzzy #~ msgid "Quit…" #~ msgstr "Quitter" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Afficher le dernier onglet principal ouvert au démarrage" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Activer les filtres de résultats de recherche par défaut" #~ msgid "Close Nicotine+?" #~ msgstr "Fermer Nicotine+  ?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Voulez-vous vraiment quitter Nicotine+ ?" #~ msgid "Run in Background" #~ msgstr "Exécuter en arrière-plan" #~ msgid "_Online Notify" #~ msgstr "N_otifier de la présence en ligne" #~ msgid "_Prioritize User" #~ msgstr "_Prioriser l'utilisateur" #~ msgid "_Trust User" #~ msgstr "Faire confiance à l'u_tilisateur" #~ msgid "Request User's IP Address" #~ msgstr "Demander l'adresse IP de l'utilisateur" #~ msgid "Request IP Address" #~ msgstr "Demander l'adresse IP" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "" #~ "Saisissez le nom d'un utilisateur dont vous souhaitez recevoir l'adresse " #~ "IP :" #~ msgid "Downloaded" #~ msgstr "Téléchargé" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Impossible d'ajouter le téléchargement %(filename)s aux fichiers " #~ "partagés : %(error)s" #~ msgid "Automatically share completed downloads" #~ msgstr "Partager automatiquement les téléchargements terminés" #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "L'équivalent de l'ajout de votre dossier de téléchargement en tant que " #~ "partage public, cependant les fichiers téléchargés dans ce dossier seront " #~ "automatiquement accessibles aux autres (pas d'analyse nécessaire)." #~ msgid "Unable to Share Folder" #~ msgstr "Impossible de partager le répertoire" #~ msgid "The chosen virtual name is empty" #~ msgstr "Le nom virtuel choisi est vide" #~ msgid "The chosen virtual name already exists" #~ msgstr "Le nom virtuel choisi existe déjà" #~ msgid "The chosen folder is already shared" #~ msgstr "Le répertoire sélectionné est déjà partagé" #~ msgid "Set Virtual Name" #~ msgstr "Définir un nom virtuel" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Choisissez un nom virtuel pour '%(dir)s'  :" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Le nom virtuel choisi est vide ou bien existe déjà" #~ msgid "The chosen folder is already shared." #~ msgstr "Le répertoire sélectionné est déjà partagé." #, python-format #~ msgid "%s Properties" #~ msgstr "Propriétés %s" #~ msgid "Finished rescanning shares" #~ msgstr "Analyse des partages terminée" #~ msgid "Plugin List" #~ msgstr "Liste des extensions" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Erreur lors de l'examen de %(path)s : %(error)s" #~ msgid "Show _Log Pane" #~ msgstr "Afficher le panneau des _journaux" #~ msgid "Addresses" #~ msgstr "Adresses" #~ msgid "Handler" #~ msgstr "Logiciel" #~ msgid "Could not enable plugin." #~ msgstr "Ne peut activer l'extension." #~ msgid "Could not disable plugin." #~ msgstr "Ne peut désactiver l'extension." #~ msgid "Transfers" #~ msgstr "Transferts" #~ msgid "Ban List" #~ msgstr "Liste des bannis" #~ msgid "Ignore List" #~ msgstr "Liste des utilisateurs ignorés" #~ msgid "Censor & Replace" #~ msgstr "Censure et remplacement" #~ msgid "Completion" #~ msgstr "Complétion" #~ msgid "Categories" #~ msgstr "Catégories" #~ msgid "Upload Folder To…" #~ msgstr "Envoyer le répertoire vers…" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Envoyer récursivement le répertoire vers…" #~ msgid "Download _Recursive" #~ msgstr "Téléchargement _récursif" #~ msgid "Download R_ecursive To…" #~ msgstr "Téléchargement ré_cursivement vers…" #~ msgid "Up_load File(s)" #~ msgstr "_Envoyer des fichiers" #, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Erreur à l'affichage du répertoire %(folder)s, erreur remontée : %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Sélectionnez la destination pour le téléchargement du dossier avec les " #~ "sous-dossiers de l'utilisateur" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "" #~ "Sélectionnez la destination pour le téléchargement d'un dossier à partir " #~ "de l'utilisateur" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "" #~ "Sélectionnez la destination pour télécharger le(s) fichier(s) de " #~ "l'utilisateur" #~ msgid "Wishes" #~ msgstr "Souhaits" #~ msgid "privileged" #~ msgstr "privilégié" #~ msgid "prioritized" #~ msgstr "priorisé" #~ msgid "Blocked IP Addresses" #~ msgstr "Adresses IP bloquées" #~ msgid "Complete buddy names" #~ msgstr "Compléter les noms d'amis" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Compléter les noms d'utilisateurs dans les salons de discussion" #~ msgid "Complete room names" #~ msgstr "Compléter les noms de salons" #~ msgid "Drop-down List" #~ msgstr "Liste déroulante" #~ msgid "File Manager command ($ for file path):" #~ msgstr "" #~ "Commande du gestionnaire de fichiers ($ pour le chemin du fichier) :" #~ msgid "Media Player command ($ for file path):" #~ msgstr "Commande du lecteur multimédia ($ pour le chemin du fichier) :" #~ msgid "Ignored IP Addresses" #~ msgstr "Adresse IP ignorées" #~ msgid "Display timestamps" #~ msgstr "Afficher l'horodatage" #~ msgid "Notification Popups" #~ msgstr "Notification popups" #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Afficher une fenêtre de notification lorsque le téléchargement d'un " #~ "fichier est terminé" #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Afficher une notification lorsque le téléchargement d'un dossier est " #~ "terminé" #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Afficher une fenêtre de notification lorsque vous recevez un message privé" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Afficher une fenêtre de notification lorsque quelqu'un envoie un message " #~ "dans un salon de discussion" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Afficher une fenêtre de notification lorsque votre nom est mentionné dans " #~ "un salon de discussion" #~ msgid "Tray" #~ msgstr "Zone de notification" #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Les occurrences de $ seront remplacées par le lien. Le navigateur web par " #~ "défaut du système sera utilisé dans les cas où un protocole n'a pas été " #~ "configuré." #~ msgid "Handler:" #~ msgstr "Gestionnaire :" #~ msgid "Primary Tabs" #~ msgstr "Onglets primaires" #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Activer les info-bulles de chemin de fichier dans les vues de recherche " #~ "et de transfert" #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Affiche le chemin d'accès complet d'un résultat de recherche ou d'un " #~ "transfert de fichier lorsque vous survolez un chemin de dossier ou un nom " #~ "de fichier avec votre curseur." #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Afficher les fichiers partagés en privé dans les partages des utilisateurs" #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "D'autres clients peuvent proposer une option permettant d'envoyer des " #~ "fichiers partagés de manière privée lorsque vous parcourez leurs " #~ "partages. Les dossiers contenant de tels fichiers sont précédés du " #~ "préfixe \"[DOSSIER PRIVÉ]\" et ne peuvent être téléchargés qu'avec " #~ "l'autorisation explicite de l'expéditeur." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censure et remplacement" #~ msgid "Show _Debug Log Controls" #~ msgstr "Afficher les contrôles du journal de débogage" #~ msgid "Debug Logging" #~ msgstr "Sortie de débogage" #~ msgid "Virtual Name" #~ msgstr "Nom virtuel" #~ msgid "Edit Virtual Name" #~ msgstr "Éditer un nom virtuel" #~ msgid "Copy Folder URL" #~ msgstr "Copier l'URL du répertoire" #~ msgid "Download _To…" #~ msgstr "Télécharger _vers…" #~ msgid "Download" #~ msgstr "Télécharger" #~ msgid "Upload" #~ msgstr "Envoi" #~ msgid "Upload Folder's Contents" #~ msgstr "Envoyer le contenu du répertoire" #~ msgid "Rename" #~ msgstr "Renommer" #~ msgid "File Lists" #~ msgstr "Listes de fichiers" #~ msgid "Copy File Path" #~ msgstr "Copier le chemin du fichier" #~ msgid "R_emove Wish" #~ msgstr "S_upprimer le souhait" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "" #~ "« %s » ne semble pas être un répertoire, les extensions ne seront pas " #~ "chargées." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Réexamen des partages pour amis…" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Réexamen des partages pour amis terminé" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Votre ami %s tente de vous envoyer un(/des) fichier(s)." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s n'est pas autorisé à vous envoyer de(s) fichier(s), mais tente de le " #~ "faire quand même. Un avertissement lui a été envoyé." #~ msgid "Client Version" #~ msgstr "Version du client" #, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "" #~ "Combien de jours de privilèges doit-on accorder à l'utilisateur %s ?" #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Les amis auront une priorité plus élevée dans la file d'attente, de la " #~ "même manière que les utilisateurs privilégiés." #~ msgid "Privileged" #~ msgstr "Privilégié" #~ msgid "_Privileged" #~ msgstr "_Privilégié" #~ msgid "Comments" #~ msgstr "Commentaires" #~ msgid "Edit _Comments…" #~ msgstr "Éditer les commentaires…" #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Créer des sous-dossiers en fonction de l'utilisateur à partir duquel vous " #~ "effectuez le téléchargement, et y stocker le fichier/dossier téléchargé." #~ msgid "Login Details" #~ msgstr "Données d'identification" #~ msgid "Advanced" #~ msgstr "Avancé" #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Intervalle de renouvellement de redirection de port en heures :" #~ msgid "Enable buddy-only shares" #~ msgstr "Activer les partages réservés aux amis" #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "" #~ "Les fichiers seront envoyés dans l'ordre où ils ont été mis en file " #~ "d'attente." #~ msgid "Rescanning normal shares…" #~ msgstr "Réexamen des partages normaux…" #~ msgid "Finished rescanning public shares" #~ msgstr "Réexamen des partages publics terminé" #~ msgid "Scanning Buddy Shares" #~ msgstr "Examen des partages pour amis" #~ msgid "_Rescan Public Shares" #~ msgstr "_Reéxaminer les partages publics" #~ msgid "Rescan B_uddy Shares" #~ msgstr "Réexaminer les partages pour _amis" #~ msgid "Rescan Public Shares" #~ msgstr "Réexaminer les partages publics" #~ msgid "Rescan Buddy Shares" #~ msgstr "Réexaminer les partages pour amis" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Active les partages privés auxquels seuls les utilisateurs de votre liste " #~ "d'amis peuvent accéder. S'il est désactivé, les utilisateurs pourront " #~ "uniquement accéder à vos partages publics." #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Marquer chaque dossier partagé comme étant réservé aux amis" #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Remplace l'option par partage, utile si vous devez temporairement " #~ "empêcher l'accès public aux actions." #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Seuls les utilisateurs marqués comme étant de confiance dans votre liste " #~ "d'amis peuvent accéder à vos partages réservés aux amis." #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+ vous permet de partager des répertoires directement depuis " #~ "votre ordinateur. Tout le contenu de ces répertoires (à l'exception de " #~ "ceux dont le nom commence par un point) peut être téléchargé par d'autres " #~ "utilisateurs sur le réseau Soulseek. Les partages publics sont " #~ "disponibles pour tous les utilisateurs, tandis que seuls les utilisateurs " #~ "de votre liste d'amis peuvent accéder aux partages pour amis, en plus des " #~ "partages publics." #~ msgid "Filtered out excluded search result " #~ msgstr "Résultat de recherche exclu et filtré " #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtrage des résultats de recherche inexacts ou incorrects " #, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Le paramètre stocké '%(key)s] n'est plus présent dans le plugin '%(name)s]" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "L'extension %(module)s a remonté quelque chose d'étrange, « %(value)s », " #~ "ignoré" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "" #~ "Cache inconsistant pour le partage '%(vdir)s', reconstruction de '%(dir)s'" #, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Répertoire manquant %(dir)s ignoré" #, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Tous les messages défilants ou ceux du mur pour %(room)s :" #~ msgid "Set your personal ticker" #~ msgstr "Choisir votre message défilant personnel" #~ msgid "Show all the tickers" #~ msgstr "Montrer tous les messages défilants" #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Échec de l'examen des partages. Si Nicotine+ est en cours d'exécution, " #~ "veuillez fermer le programme avant de lancer un examen." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Etes vous sûr de vouloir fermer Nicotine+  ?" #~ msgid "Receive a User's IP Address" #~ msgstr "Recevoir l'adresse IP d'un utilisateur" #~ msgid "Receive a User's Info" #~ msgstr "Recevoir les informations d'un utilisateur" #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "Le serveur interdit les recherches sur les listes de souhaits." #, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "La base de données de vos partages est corrompue. Veuillez analyser à " #~ "nouveau vos partages et signaler tout problème d'analyse potentiel aux " #~ "développeurs. Erreur : %s" #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Veuillez garder à l'esprit que certains noms d'utilisateur peuvent être " #~ "pris. Si tel est le cas, vous serez invité à changer votre nom " #~ "d'utilisateur lors de la connexion au réseau." #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "" #~ "Saisissez le nom d'utilisateur de la personne dont vous souhaitez des " #~ "informations" #~ msgid "Add user 'user' to your user list" #~ msgstr "Ajoute l'utilisateur 'utilisateur' à votre liste d'utilisateurs" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Retire l'utilisateur 'utilisateur' de votre liste d'utilisateurs" #~ msgid "Request user info for user 'user'" #~ msgstr "Demande les informations de l'utilisateur 'utilisateur'" #~ msgid "Add user to your user list" #~ msgstr "Ajouter l'utilisateur à votre liste d'utilisateurs" #~ msgid "Remove user from your user list" #~ msgstr "Retirer l'utilisateur de votre liste d'utilisateurs" #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Répondre aux demandes de recherche contenant un nombre minimum de " #~ "caractères :" #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "Les fichiers en attente seront envoyés un à un de manière cyclique." #~ msgid "/close /c" #~ msgstr "/close /c" #~ msgid "/add /ad" #~ msgstr "/add /ad" #~ msgid "/rem /unbuddy" #~ msgstr "/rem /unbuddy" #~ msgid "/ban" #~ msgstr "/ban" #~ msgid "/unban" #~ msgstr "/unban" #~ msgid "/ignore" #~ msgstr "/ignore" #~ msgid "/unignore" #~ msgstr "/unignore" #~ msgid "/browse /b" #~ msgstr "/browse /b" #~ msgid "/whois /w" #~ msgstr "/whois /w" #~ msgid "/ip" #~ msgstr "/ip" #~ msgid "Find..." #~ msgstr "Rechercher..." #~ msgid "Queued..." #~ msgstr "Mis en file d'attente..." #~ msgid "Clear All..." #~ msgstr "Tout effacer..." #~ msgid "Edit _Comments..." #~ msgstr "Éditer les _commentaires..." #~ msgid "Room..." #~ msgstr "Salon..." #~ msgid "Username..." #~ msgstr "Nom d'utilisateur..." #~ msgid "Include text..." #~ msgstr "Include le texte..." #~ msgid "Exclude text..." #~ msgstr "Exclure le texte..." #~ msgid "File type..." #~ msgstr "Type de fichier..." #~ msgid "Bitrate..." #~ msgstr "Débit binaire..." #~ msgid "Add..." #~ msgstr "Ajouter..." #~ msgid "Edit..." #~ msgstr "Éditer..." #~ msgid "_Modes" #~ msgstr "_Onglets" #~ msgid "_Chat Rooms" #~ msgstr "_Discussions" #~ msgid "_Private Chat" #~ msgstr "Dialogues _privés" #~ msgid "_Downloads" #~ msgstr "_Téléchargements" #~ msgid "_Search Files" #~ msgstr "_Recherche de fichiers" #~ msgid "User I_nfo" #~ msgstr "Informations _utilisateur" #~ msgid "_Interests" #~ msgstr "_Centres d'intérêts" #~ msgid "Buddy _List" #~ msgstr "_Amis" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "MPRIS (v2)" #~ msgstr "MPRIS (v2)" #~ msgid "Enable geographical blocker" #~ msgstr "Activer le bloqueur géographique" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Votre adresse IP n'a pu être récupéré du serveur" #~ msgid "Enable URL catching" #~ msgstr "Activer la capture d'URL" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "Cacher %(tab)s" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Votre adresse IP est %(ip)s" #~ msgid "Geo Block" #~ msgstr "Bloqueur géographique" #~ msgid "Censor List" #~ msgstr "Liste des censures" #~ msgid "Auto-Replace List" #~ msgstr "Substitution de texte" #~ msgid "URL Catching" #~ msgstr "Capture d'URL" #~ msgid "Away Mode" #~ msgstr "Mode absent" nicotine-plus-3.3.4/po/hu.po000066400000000000000000010053221461625273200157170ustar00rootroot00000000000000# Copyright (C) 2006-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek kliens" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafikus kliens a Soulseek P2P hálózathoz" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;megosztás;csevegés;üzenetek;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "A Soulseek hálózat böngészése" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "A Nicotine+ egy grafikus kliens a Soulseek P2P hálózathoz." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "A Nicotine+ célja, hogy egy könnyű, kellemes, szabad és nyílt forráskódú " "(FOSS) alternatívája legyen a hivatalos Soulseek kliensnek, miközben a " "funkciók átfogó készletét is biztosítja." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Fájlok keresése" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Letöltések" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Megosztások böngészése" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Privát csevegés" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ csapat" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Weboldal: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "megjeleníti ezt a súgóüzenetet és kilép" #: pynicotine/__init__.py:59 msgid "file" msgstr "fájl" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "használjon nem alapértelmezett konfigurációs fájlt" #: pynicotine/__init__.py:63 msgid "dir" msgstr "könyvtár" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "választható könyvtár a felhasználói adatokhoz és a bővítményekhez" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "indítsa el a programot az ablak megjelenítése nélkül" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "socketek kötése az adott IP-hez (hasznos a VPN-hez)" #: pynicotine/__init__.py:75 msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "a megadott porton figyelni" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "megosztott fájlok újraolvasása" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "indítsa el a programot fej nélküli módban (GUI nélkül)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "változat megjelenítése és kilépés" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Ön a Python nem támogatott verzióját használja (%(old_version)s).\n" "A Python %(min_version)s vagy újabb verzióját kell telepítenie." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Nem sikerült beolvasni a megosztásokat. Kérem zárja be a többi Nicotine+ " "példányt és próbálja újra." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s távol van" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s bejelentkezett" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s nincs bejelentkezve" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Barát státusz" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Hozzá lett adva egy privát szobához: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "'%(room)s' szobában csevegőüzenet '%(user)s' felhasználótól: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" "'%(path)s' könyvtárat nem lehet létrehozni, a jelentett hiba: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Hiba a konfiguráció mentése során: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "A konfiguráció elmentve ide: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "%(program)s %(version)s betöltése" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Kilépés %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "megszűnő" #: pynicotine/core.py:237 msgid "application closing" msgstr "az alkamazás bezárása" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Kilépés a(z) %(program)s %(version)s programból!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "A csatlakozás előtt meg kell adni egy felhasználónevet és jelszót…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Hiba: A letöltésszűrő hibás! Ellenőrizze a szűrőit. Az ok: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Hiba: %(num)d letöltésszűrő hibás! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s letöltve tőle: %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Fájl letöltve" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Végrehajtva: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "'%(command)s' parancs végrehajtása sikertelen: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s letöltve tőle: %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Mappa letöltve" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "A mappán végrehajtva: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "'%(tempfile)s', nem lehetett ide mozgatni '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Letöltési mappa hiba" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Letöltés befejeződött: %(user)s felasználó, %(file)s fájl" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Letöltés megszakítva, %(user)s felhasználó, %(file)s fájl" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Letöltési I/O hiba: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Nem kaphat kizárólagos hozzáférési engedélyt a fájlhoz – I/O hiba: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Nem sikerült ide menteni a fájlt %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "A letöltés elindult: %(user)s felhasználó, %(file)s fájl" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "A(z) %s nem található, kérem telepítse." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Nem áll rendelkezésre grafikus környezet, fej nélküli mód (nincs GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "Kap_csolódás" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "S_zétkapcsolás" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _kiváltságok" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Beállítások" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Kilépés" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "N_yilvános megosztások böngészése" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Baráti megosztások b_öngészése" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Megbízható megosz_tások böngészése" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "Megosztások _újraolvasása" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "_Megosztások beállítása" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "Gyorsbillentyű_k" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Beállítási asszisztens" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Átviteli statisztikák" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "_Hibajelentés" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Fo_rdítások javítása" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_A Nicotine+ névjegye" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fájl" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Megosztások" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Súgó" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "Megosztások bön_gészése" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Az értesítés nem jeleníthető meg: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Még mindig tölt fel fájlokat. Valóban ki akar lépni?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Várja meg, amíg a feltöltés befejeződik" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Valóban ki akar lépni?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Nem" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "A háttérben _fut" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Kilépés a Nicotine+ programból" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "A megosztások nem elérhetők" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Ellenőrizze, hogy a külső lemezek felcsatolása és a mappaengedélyek helyesek-" "e." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Mégse" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Ismét" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "Újrakeresés _kényszerítése" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Érvénytelen jelszó" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "%s felhasználó már létezik, és a megadott jelszó érvénytelen. Kérem " "válasszon másik felhasználónevet ha először jelentkezik be." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Be_jelentkezési adatok módosítása" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Üzenet a letöltőknek" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "Küldjön privát üzenetet minden felhasználónak, akik letöltenek Öntől:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "Üzenet küldé_se" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Üzenetek a barátoknak" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Privát üzenet küldése az összes bejelentkezett barátnak:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Mentett megosztási listafájl kiválasztása" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kritikus hiba" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "A Nicotine+ kritikus hibát észlelt és ki kell lépnie. Kérem másolja ki az " "alábbi üzenetet és írja be a hibajelentésbe:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Kilépés a Nicotine+ programból" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Másolja és jelentse a hibát" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Állapot" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Ország" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Felhasználó" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Sebesség" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Fájlok" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Megbízható" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Értesítés" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Rangsorolt" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Utoljára megtekintve" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Jegyzet" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Felhasz_nálói megjegyzés hozzáadása…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Eltávolít" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Soha nem látott" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Felhasználói megjegyzés hozzáadása" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Megjegyzés hozzáadása a(z) %s felhasználóhoz:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Hozzáadás" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Új szoba létrehozása?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Valóban létrehoz egy új \"%s\" szobát?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Tegye a szobát priváttá" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Felhasználók fájlainak keresé_se" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Találat…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Másolás" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Az öszes másolása" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Aktivitásnézet törlése" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "Kilé_pés a szobából" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Link másolása" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Szobanapló megtekintése" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Szobanapló törlése…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Üzenetnézet törlése" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s csatlakozott a szobához" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s említette önt a(z) %(room)s szobában" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(user)s említette a(z) %(room)s szobában" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "%(user)s üzenete a(z) %(room)s szobában" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s elhagyta a szobát" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s távol van" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s visszajött" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Törli a naplózott üzeneteket?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "Véglegesen törölni akarja a szoba összes naplózott üzenetét?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Névjegy" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Weboldal" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Hiba a legújabb verzió ellenőrzése során: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Új kiadás érhető el: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Frissített" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Legújabb verzió ellenőrzése…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Beállítási asszisztens" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Virtuális mappa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Mappa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Befejez" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Következő" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Egy megosztott mappa hozzáadása" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Megosztott mappa szerkesztése" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Adjon meg új virtuális nevet a(z) '%(dir)s' számára:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Szerkesztés" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Fájl tulajdonságai" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Fájl tulajdonságai (%(num)i - %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Fájl tulajdonságai (%(num)i - %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Alkalmaz" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Hozzáadás…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Szerkesztés…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Beállítások" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Tétel hozzáadása" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Tétel szerkesztése" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Ismeretlen" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Portállapot ellenőrzése" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Jelszóváltoztatás elutasítva" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Adjon meg egy új jelszót a Soulseek fiókjához:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Ön jelenleg ki van jelentkezve a Soulseek hálózatból. Ha meg szeretné " "változtatni egy meglévő Soulseek fiók jelszavát, be kell jelentkeznie abba a " "fiókba." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Adja meg a bejelentkezéskor használandó jelszót:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Jelszó megváltoztatása" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Változtat" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Senki" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Mindenki" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Barátok" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Megbízható barátok" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Semmi" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Fájl megnyitása" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Megnyitás a fájlkezelőben" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Keresés" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Szünet" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Folytat" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Fájlok tallózása" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Szintaxis: nem különbözteti meg a kis- és nagybetűket. Ha " "engedélyezve van, a Python reguláris kifejezései használhatók, máskülönben " "csak a helyettesítő karakter (*) támogatott." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Szűrő" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Szabályos kifejezések" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Letöltésszűrő hozzáadása" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Adjon meg egy új letöltésszűrőt:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Szabályos kifejezések engedélyezése" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Letöltésszűrő szerkesztése" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Módosítsa a következő letöltésszűrőt:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Sikertelen! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "A szűrők készek" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Nyilvános" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Hozzáférhető" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Megszakít" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Újra" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin mód" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Elsőnek be, elsőnek ki" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Felhasználónév" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP-cím" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Felhasználó mellőzése" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Írja be a mellőzni kívánt felhasználó nevét:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "IP-cím mellőzése" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Adja meg a mellőzni kívánt IP-címet:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* a helyettesítő karakter" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Felhasználó tiltása" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Adja meg a tiltani kívánt felhasználó nevét:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "IP-cím tiltása" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Írja be a tiltani kívánt IP-címet:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Formátum kódok" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Minta" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Csere" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Cenzúraminta" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Adja meg a cenzúrázni kívánt mintát. Tegyen szóközt a minta köré, ha nem " "akarja egyeztetni a szavakon belüli karakterláncokat (a sorok elején és " "végén sikertelen lehet)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Cenzúrázott minták szerkesztése" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Helyettesítés hozzáadása" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Adjon meg egy szövegmintát és azt, hogy mi helyettesítse:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Helyettesítés szerkesztése" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Rendszer alapértelmezett" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Megerősítő párbeszéd megjelenítése" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Futtatás a háttérben" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "félkövér" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "dőlt" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "aláhúzott" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normál" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Különálló barátok lap" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Oldalsáv a csevegőszobák lapon" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Mindig látható oldalsáv" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Fent" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Alul" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Balra" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Jobbra" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Bejelentkezve" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Távollét" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Nincs bejelentkezve" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "A lap megváltozott" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Kiemelt lap" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Ablak" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Bejelentkezve (Tálca)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Távol (Tálca)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Kijelentkezve (Tálca)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Üzenet (Tálca)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokoll" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Parancs" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "URL-kezelők megadása" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Adja meg az URL-kezelő protokollját és a parancsát:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Parancsszerkesztés" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Adja meg a(z) %s protokoll új parancsát:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Felhasználónév;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Zenelejátszó (pl. amarok, audacious, exaile); hagyja üresen az automatikus " "felismeréshez:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Felhasználónév: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Parancs:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Cím" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Most játszott (jellemzően \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Előadó" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Időtartam" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitsűrűség" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Megjegyzés" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Sávszám" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Év" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Fájlnév (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Engedélyezve" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Bővítmény" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Nincs kiválasztva bővítmény" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Hálózat" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Felhasználói felület" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Megosztások" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Feltöltések" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Keresések" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Felhasználói profil" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Csevegések" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Most játszott" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Naplózás" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Letiltott felhasználók" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Figyelmen kívül hagyott felhasználók" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Bővítmények" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL-kezelők" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Beállítások" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Válasszon egy fájlnevet a konfiguráció biztonsági mentéséhez" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Átviteli statisztika" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Összesen %(date)s óta" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Visszaállítja az átviteli statisztikákat?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Valóban vissza szeretné állítani az átviteli statisztikákat?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Kívánságlista" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Kívánság" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "Kere_sés a tételre" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Kívánság szerkesztése" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Adjon meg új értéket a(z) '%s' kívánsághoz:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Kívánságlista törlése?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Valóban törölni szeretné a kívánságlistáját?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Útvonal" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Újra" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "Meg_állít" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Befejezett / Szűrt" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Befejezett" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Szüneteltetett" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Szűrt" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Törölt" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Sorba állított…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Minden…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Sorba állított letöltések törlése" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Valóban törölni szeretné az összes sorba állított letöltést?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Az összes letöltés törlése" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Valóban törölni szeretné az összes letöltést?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Letölti a(z) %(num)i fájlt?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "A(z) %(num)i fájlt valóban le szeretné tölteni a(z) %(user)s %(folder)s " "mappából?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "Mappa _letöltése" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Tetszik" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Nem tetszik" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Értékelés" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Tétel" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Javaslatok a tételhez" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Ez tet_szik nekem" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Ez nem tets_zik nekem" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Javaslatok" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Hasonló felhasználók" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Javaslatok (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Hasonló felhasználók (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Privát üzenet tőle: %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Talált Kívánságlista-eredmények" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Felhasználói profilok" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Csevegőszobák" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Érdeklődések" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Csevegés" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Kapcsolatok" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Üzenetek" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Átvitelek" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Egyebek" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Találat…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Másolás" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Az összes másolás_a" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Hibakeresési _naplók megtekintése" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Á_tviteli napló megnyitása" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Napló kategóriák" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Naplónézet törlése" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Letöltések: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Feltöltések: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Megosztások előkészítése" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Megosztások beolvasása" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Kilépés..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Legújabb üzenet" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Szoba" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Felhasználók" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Csatlakozás a szobához" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "A szoba elhagyása" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Privát szoba elhagyása" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Szobatagság lemondása" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Minden lapot bezár…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "Lap _bezárása" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Csevegési napló megtekintése" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Csevegési napló törlése…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Felhasználói tevékenység" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Valóban végleg törölni szeretné a felhasználó összes naplózott üzenetét?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Üzenet(ek)et kapott, amíg nem volt elérhető" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Teljes" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Barátok" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Szobák" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "Fel_használó" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Sorban áll" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Fájltípus" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Fájlnév" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Méret" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Minőség" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "_Fájl útvonal másolása" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "_URL másolása" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Mappa U_RL másolása" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "Fájl(ok) _letöltése" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Fájl(ok) letöltése _ide…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Mappá_k letöltése" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "M_appák letöltése ide…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Felhasználói _profil megtekintése" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "Mappák _böngészése" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Fájl tulajdonsága_i" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Keresési kifejezés másolása" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Minden eredmény törlése" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Szűrők törlése" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Szűrők visszaállítása" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVÁT] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "Szűrők e_redménye [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "Szűrők e_redménye" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d aktív szűrő" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Kíván_ság hozzáadása" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Kíván_ság eltávolítása" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Felhasználók eredményeinek kiválasztása" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Összesen: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Eredmények" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Fájl(ok) célmappájának kiválasztása" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Célmappa kiválasztása" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Sorba állított" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "Sorba állított (rangsorolt)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "Sorba állított (kiváltságos)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Állapot lekérése" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Átvitel" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "A kapcsolat lezárva" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Kapcsolódási időtúllépés" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "A felhasználó kilépett" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Visszavonva" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Mappa letöltési hiba" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Helyi fájl hiba" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Tiltva" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "A fájl nincs megosztva" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Leállítás folyamatban" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Fájlolvasási hiba" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Sor" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Százalék" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Eltelt idő" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Hátralévő idő" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "Fájl _megnyitása" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Megnyitás fájl_kezelőben" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "Keresé_s" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Mindent töröl" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Felhasználó átvitelének kiválasztása" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "Megsz_akítás" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Befejezett / Megszakított / Sikertelen" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Befejezett / Megszakított" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Sikertelen" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "A felhasználó kijelenkezett" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Sorba állított feltöltések törlése" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Valóban törölni szeretné az összes sorba állított feltöltést?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Minden feltöltés törlése" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Valóban törölni szeretné az összes feltöltést?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "Megosztási lista lemezre menté_se" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Mappa és almappáinak feltöltése…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "_Mappaelérési út másolása" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "Mappa és az almappáinak _letöltése" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Mappa és az almappáinak letöltése _ide…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Fájlnév" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Fájl(ok) _feltöltése…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Mappa feltöltése…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Mappa letöltése _ide…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "A felhasználó által megosztott fájlok listája üres. A felhasználó nem oszt " "meg semmit, vagy a fájlokat privát módon osztja meg." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Nem lehet megosztott fájlokat kérni a felhasználótól. A felhasználó nincs " "bejelentkezve, vagy mindkét oldalon zárt a figyelőport, vagy átmeneti " "kapcsolódási probléma áll fenn." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Válassza ki több mappa letöltésének a cél helyét" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Mappa feltöltése (az almappákkal) a felhasználónak" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Mappa feltöltése a felhasználónak" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Adja meg a nevét a felhasználónak akinek szeretne feltölteni:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Feltöltés" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Fájlok célmappájának kiválasztása" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Fájl(ok) feltöltése a felhasználónak" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Kép másolása" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Kép mentése" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "A(z) %(user)s felhasználó(k) képét nem sikerült betölteni: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Nem sikerült információt kérni a felhasználótól. Vagy mindkettőtöknek zárt a " "figyelőportja, vagy a felhasználó nincs bejelentkezve, vagy átmeneti " "kapcsolati probléma áll fenn." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "_Barát eltávolítása" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "_Barát hozzáadása" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Felhasználó tiltásának visszavonása" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Felhasználó mellőzésének visszavonása" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Igen" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nem" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Kérem adja meg a napok számát." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Ajándékozzon napokat a Soulseek kiváltságaiból a(z) %(user)s felhasználónak " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s nap maradt hátra" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Jogosultság adása" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "Kiváltságok _adása" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Bezár" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Igen" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Válasszon ki egy fájlt" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Válasszon ki egy mappát" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Kiválaszt" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Válasszon ki egy képet" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Minden kép" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Mentés másként…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Nincs)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Lap bezárása" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Minden lapot bezár?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Tényleg be szeretné zárni az összes lapot?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Olvasatlan lap" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Minden lap" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Bezárt lap ú_jramegnyitása" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s fájl(ok) kiválasztva" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "Fájlok _böngészése" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Barát hozzáadása" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "IP-_cím mutatása" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Privát szobák" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Eltávolítás a(z) %s privát szobából" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Hozzáadás a(z) %s privát szobához" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Eltávolítás a(z) %s operátoraként" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Hozzáadás a(z) %s operátoraként" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- régebbi üzenetek felül ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Végrehajtható" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Hang" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Kép" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archívum" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Egyéb" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Videó" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Dokumentum" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Szöveg" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Egyéni ikon betöltési hiba %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "A Nicotine+ elrejtése" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "A Nicotine+ mutatása" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "#%i oszlop" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Csoportosítás nélkül" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Csoportosítás mappa szerint" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Csoportosítás felhasználók szerint" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Valóban ki akar lépni? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "%s felhasználó már létezik, és a megadott jelszó érvénytelen." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" "Ha másik felhasználónévvel vagy jelszóval szeretne bejelentkezni, írja be a " "következőt: %s." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Jelszó: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Egy új Soulseek fiók létrehozásához adja meg a kívánt felhasználónevet és a " "jelszót. Ha már rendelkezik fiókkal, adja meg a bejelentkezési adatait." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "A következő megosztások nem érhetők el:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Megpróbálja újra az újrakeresést? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nem sikerült írni a \"%(filename)s\" naplófájlba: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Nem fér hozzá a naplófájlhoz %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Egyesült Arab Emírségek" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganisztán" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua és Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albánia" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Örményország" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktisz" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentína" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Amerikai-Szamoa" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Ausztria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Ausztrália" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Åland-szigetek" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbajdzsán" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosznia és Hercegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Banglades" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgium" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgária" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Saint-Barthelemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolívia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, St. Eustatius és Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brazília" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamák" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhután" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Bouvet Island" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Fehéroroszország" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Kókusz (Keeling)-szigetek" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Kongói Demokratikus Köztársaság" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Közép-afrikai Köztársaság" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongó" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Svájc" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Elefántcsontpart" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Cook-szigetek" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Kína" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolumbia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Karácsony-sziget" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Ciprus" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Csehország" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Németország" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Dzsibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dánia" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominikai Köztársaság" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algéria" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Észtország" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egyiptom" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Nyugat-Szahara" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spanyolország" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiópia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Európa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finnország" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fidzsi-szigetek" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Falkland-szigetek" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikronézia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Feröer-szigetek" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Franciaország" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Nagy-Britannia" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Grúzia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Francia Guyana" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghána" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltár" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Grönland" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Egyenlítői-Guinea" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Görögország" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Dél-Georgia és Déli-Sandwich-szigetek" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Bissau-Guinea" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Heard-sziget és McDonald-szigetek" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Horvátország" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Magyarország" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonézia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Írország" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Izrael" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Man-sziget" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Brit Indiai-óceáni terület" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Irán" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Izland" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Olaszország" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordánia" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japán" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirgizisztán" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kambodzsa" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comore-szigetek" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts és Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Észak-Korea" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Dél-Korea" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Kajmán-szigetek" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazahsztán" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laosz" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Srí Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Libéria" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Litvánia" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Lettország" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Líbia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marokkó" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegró" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaszkár" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Marshall-szigetek" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Észak-Macedónia" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Mianmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongólia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Makaó" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Északi-Mariana-szigetek" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritánia" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Málta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldív-szigetek" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Mexikó" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malajzia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambik" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namíbia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Új-Kaledónia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Norfolk-sziget" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigéria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Hollandia" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norvégia" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepál" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Új-Zéland" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omán" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Francia Polinézia" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Pápua Új-Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Fülöp-szigetek" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakisztán" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Lengyelország" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint-Pierre és Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn-szigetek" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palesztina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugália" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Románia" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Szerbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Oroszország" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Szaúd-Arábia" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Salamon-szigetek" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychelle-szigetek" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Szudán" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Svédország" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Szingapúr" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Szent Ilona-sziget" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Szlovénia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Spitzbergák és Jan Mayen-sziget" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Szlovák Köztársaság" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Szenegál" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Szomália" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Dél-Szudán" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Sao Tome és Principe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Szíria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Szváziföld" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Turks- és Caicos-szigetek" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Csád" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Francia déli és antarktiszi területek" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togó" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Thaiföld" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadzsikisztán" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau-szigetek" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Kelet-Timor" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Türkmenisztán" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunézia" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Törökország" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad és Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Tajvan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzánia" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukrajna" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Egyesült Államok külterületi kis szigetek" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Egyesült Államok" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Üzbegisztán" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Szentszék (Vatikán városállam)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent és a Grenadine-szigetek" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Brit Virgin-szigetek" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Amerikai Virgin-szigetek" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnám" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis és Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Szamoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Dél-afrikai Köztársaság" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Az üzenet szövegből beszéddé alakítása sikertelen: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Kérem adja meg a Last.fm felhasználónevét és API-kulcsát" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Most játszott hiba" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nem sikerült csatlakozni az Audioscrobblerhez: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Nem sikerült lekérni a legutóbbi számot az Audioscrobblerről: " "%(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nem található megfelelő MPRIS lejátszó" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Több MPRIS lejátszó található: %(players)s. Használatban: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "MPRIS lejátszó automatikus észlelése: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Hiba történt a(z) %(player)s lekérdezése közben: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Kérem adja meg ListenBrainz felhasználónevét" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nem sikerült csatlakozni a ListenBrainzhez: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Úgy tűnik éppen nem hallgat semmit" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Nem sikerült lekérni az aktuális számot a ListenBrainztől: " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Hálózati szűrők" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Az elérhető parancsok listája" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Csatlakozás a kiszolgálóhoz" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Lekapcsolódás a kiszolgálóról" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "A távol van állapot átkapcsolása" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Bővítmények kezelése" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Csevegőablak tisztítása" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Mond valamit kívülállóként" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Az most játszott dal bejelentése" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Csatlakozás a csevegőszobához" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Csevegőszoba elhagyása" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Mondjon üzenetet a megadott csevegőszobában" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Privát csevegés megnyitása" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Privát csevegés bezárása" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "A felhasználó ügyfélverziójának lekérése" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Privát üzenet küldése a felhasználónak" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Felhasználó hozzáadása a barátlistához" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Barát eltávolítása a barátlistáról" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Felhasználó fájljainak böngészése" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Felhasználó profiladatainak megjelenítése" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "IP-cím vagy fehasználónév mutatása" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Felhasználótól vagy IP-címről érkező kapcsolatok blokkolása" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Felhasználó vagy IP-cím eltávolítása a tiltólistákról" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Felhasználótól vagy IP-címről érkező üzenetek elnémítása" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Felhasználó vagy IP-cím eltávolítása a mellőzőlistáról" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Megosztás hozzáadása" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Megosztás eltávolítása" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Megosztások listája" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Megosztások újraolvasása" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Globális fájlkeresés indítása" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Fájlok keresése a csatlakozott szobákban" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Keresés a barátok fájljaiban" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Keresés egy felhasználó megosztott fájljaiban" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "%(num)i elérhető parancs listázása:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "A „%(query)s” kérdésnek megfelelő %(num)i elérhető parancs felsorolása:" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Írja be a(z) %(command)s parancsot a hasonló parancsok listázásához" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Az elérhető parancsok listájához írja be a(z) %(command)s parancsot" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Nincs csatlakozva a(z) %s szobához" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "%s felhasználónak nem küld üzenetet" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "%s felhasználó privát csevegése lezárva" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "%s tiltva" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "%s tiltása feloldva" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "%s mellőzve" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s mellőzése visszavonva" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s listázot megosztás (%(num_total)s beállított)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Nem lehet megosztani az elérhetetlen mappát „%s”" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "%(group_name)s „%(virtual_name)s” megosztás hozzáadva (újrakeresés szükséges)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Nincs „%s” nevű megosztás" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "„%s” megosztás eltávolítva (újrakeresés szükséges)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Bővítményrendszer betöltése" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "%(name)s bővítményt nem sikerült betölteni. A bővítmény mappa neve " "érvénytelen karaktereket tartalmaz: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" "A(z) %(interface)s parancs ütközik a(z) %(name)s bővítményben: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "%s betöltött bővítmény" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nem sikerült betölteni a bővítményt: %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "%s betöltetlen bővítmény" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "A(z) %(module)s bővítmény nem zárható be\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "%(module)s sikertelen bővítmény az alábbi hibával %(errortype)s: %(error)s.\n" "Nyomkövetés: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Nincs leírás" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Hiányzó %s argumentum" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Hibás argumentum, a lehetséges választási lehetőségek: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Használat: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Ismeretlen parancs: %(command)s. Az elérhető parancsok listájához írja be " "a(z) %(help_command)s parancsot." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Nem található UPnP eszköz" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Nem sikerült továbbítani a külső portot %(external_port)s: " "%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: %(external_port)s külső port sikeresen továbbítva a " "%(ip_address)s helyi IP-címre %(local_port)s helyi port" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privát üzenet '%(user)s' felhasználótól: %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "A(z) „%s” kívánságlista-elem keresése" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "A kívánságlista várakozási ideje %s másodpercre van beállítva" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "%(user)s felhasználó a(z) „%(query)s” kérdéssel keresett, és talált %(num)i " "eredményt" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Megosztások újraépítése…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Megosztások frissítése…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Az újrakeresés befejeződött: %(num)s mappa található" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Súlyos hiba történt a megosztások újraellenőrzése közben. Ha a probléma " "továbbra is fennáll, törölje a(z) %(dir)s/*.dbn fájlt és próbálja meg újra. " "Ha ez nem segít, kérem küldjön hibajelentést amely tartalmazza a következő " "veremnyomot: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Hiba a(z) %(path)s fájl vizsgálata közben: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Hiba a(z) %(path)s mappa vizsgálata közben: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Hiba a(z) %(path)s fájl metaadatainak vizsgálata közben: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Az újrakeresés megszakítva a nem elérhető megosztások miatt: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "%(user)s felhasználó az Ön megosztott fájllistáját böngészi" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "" "Nem sikerült lekérni a(z) %(folder)s megosztott mappa tartalmát: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "A megosztási adatbázis nem olvasható. Kérem végezze el a megosztások " "újraolvasását. Hiba: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "A(z) '%s' hálózati interfész nem elérhető" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "A(z) %(port)s porton nem lehet figyelni. Győződjön meg arról, hogy más " "alkalmazás nem használja, vagy válasszon másik portot. Hiba: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Figyelés ezen a porton: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nem lehet csatlakozni a szerverre, %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Újracsatlakozás a szerverhez %i másodperc múlva" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Csatlakozás ide: %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Csatlakozva a szerverhez: %(host)s:%(port)s, bejelentkezés…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Lekapcsolódva a szerverről %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Valaki máshol bejelentkezett az Ön Soulseek fiókjába" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "A feltöltés befejeződött: felhasználó %(user)s, IP-cím %(ip)s, fájl %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Feltöltés megszakítva: %(user)s felhasználó, %(file)s fájl" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Feltöltési I/O hiba: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "A feltöltés elindult: felhasználó %(user)s, IP-cím %(ip)s, fájl %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "'%(folder)s' nevű mappát nem lehet létrehozni, a hiba: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "A megosztások betöltése a lemezről nem sikerült: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "'%(user)s' felhasználó által megosztott fájlok listája ide lett mentve: " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "'%(user)s' megosztásait nem lehet elmenteni. A hiba: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Kép elmentve ide: %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "A kép nem menthető a(z) %(filename)s fájlba: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "%(user)s felhasználó az Ön profilját nézi" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nem sikerült csatlakozni a kiszolgálóhoz. Az ok: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Nem lehet csatlakozni" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "A(z) %s felhasználó IP-címe nem kérhető le, mert a felhasználó nincs " "bejelentkezve" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "%(user)s felhasználó IP-címe: %(ip)s, port: %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseek bejelentés" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i kiváltságos felhasználó" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Nincsenek Soulseek kiváltságai. Amíg a kiváltságok aktívak, a letöltései a " "nem kiváltságos felhasználók előtt kerülnek sorra." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Még %(days)i nap, %(hours)i óra, %(minutes)i perc és %(seconds)i másodperc " "maradt a Soulseek kiváltságából" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "A jelszava megváltozott" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "A jelszó megváltoztatva" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Nem sikerült megnyitni a fájlt %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "%(url)s URL nem nyitható meg: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Hiba történt a(z) %(filename)s fájl olvasása közben: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Biztonsági mentés betöltésének megkísérlése a(z) %s fájlból" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "" "Nem sikerült biztonsági másolatot készíteni a fájlról, %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Nem sikerült elmenteni a fájlt, %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Nem sikerült visszaállítani az előző fájlt %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Barát hozzáadása…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Tevékenységnapló keresés…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Csevegésnapló keresés…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Üzenet küldése…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Szövegfelolvasó váltás" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Csevegőszoba-parancs súgó" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Napló" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Szobafal" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Sz_obafal" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Készítette" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Fordította" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licenc" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Előző" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Üdvözli a Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Beállít…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Ha a kívánt felhasználónév már foglalt, a rendszer felszólítja a " "módosítására." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Egy Soulseek-társhoz való csatlakozáshoz, az útválasztó egy figyelőportját " "továbbítani kell az illető számítógépére." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Ha a figyelőportja zárva van, csak olyan felhasználókhoz tud csatlakozni " "akiknek a figyelőportja nyitva van." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Ha szükséges válasszon egy másik figyelőportot az alábbiakban. Ez később is " "megtehető a beállításokban." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Fájlok letöltése mappába" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Mappák megosztása" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "A Soulseek felhasználók letölthetnek a megosztásaiból. Járuljon hozzá a " "Soulseek hálózathoz saját fájljainak megosztásával és a más felhasználóktól " "letöltött tartalmak újra megosztásával." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Most már készen áll a Nicotine+ használatára!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "A Soulseek titkosítatlan protokoll, amelyet nem biztonságos kommunikációra " "találtak ki." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "A Soulseek számára történő adományozás bizonyos ideig kiváltságokat " "biztosít. Ha vannak kiváltságai akkor a letöltései a nem kiváltságos " "felhasználók előtt kerülnek sorra." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Előző fájl" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Következő fájl" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Név" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Utolsó sebesség" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "E_xportálás…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Gyorsbillentyűk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Általános" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Csatlakozás" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Lecsatlakozás" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Megosztások újra olvasása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Napló ablak megjelenítése" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Erősítse meg a kilépést" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Kilépés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menük" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Főmenü megnyitása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Helyi menü megnyitása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Lapok" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Főlapváltás" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Az előző másodlagos lapra lépés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "A következő másodlagos lapra lépés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Bezárt másodlagos lap újramegnyitása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Másodlagos lap bezárása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listák" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Kijelölt cella másolása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "A kijelölt sor eltávolítása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Szerkesztés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Kivág" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Beilleszt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Emoji beszúrása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Az összes kiválasztása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Találat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "A következő egyező találat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Az előző egyező találat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Fájlátvitelek" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Az átvitel folytatása / újrapróbálása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Az átvitel szüneteltetése / megszakítása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Letöltés / Feltöltés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Lista lemezre mentése" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Frissítés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Az összes kibontása / összecsukása" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Vissza a szülő mappához" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Fájl keresés" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Szűrési eredmélyek" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Aktuális munkamenet" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Befejezett letöltések" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Letöltött méret" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Befejezett feltöltések" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Feltöltött méret" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Teljes" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Újra…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "A kívánságlista elemei között rendszeres időközönként, automatikus keresést " "végez, a ritka fájlok felfedezéséhez." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Kívánság hozzáadása…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Mindent kitöröl…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Törölje az összes kész/szűrt letöltést" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Befejezettek törlése" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "A megadott letöltések törlése" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "_Mindent töröl…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Személyes érdeklődés" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Adja hozzá ami tetszik…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Személyes ellenszenv" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Adja hozzá azt amit nem szeret…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Frissítse a javaslatokat" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Főmenü" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Szoba…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Felhasználónév…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Keresési kifejezés…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Keresési minták: tartalmaz egy szót = kifejezés; ne tartalmazza a szót = -" "kifejezés; tartalmaz egy szórészt = *ifejezés" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Keresési tartomány" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Kívánságlista" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Keresési beállítások" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Adjon meg egy keresési kifejezést a Soulseek hálózaton más felhasználók " "által megosztott fájlok kereséséhez" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Fájlcsoportosítási mód" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Letöltési beállítások" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "A fájlok, amiket más felhasználóktól tölt le, itt vannak sorba állítva, és " "igény szerint szüneteltethetők és folytathatók" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Feltöltési beállítások" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Az Ön által megosztott fájloknak a felhasználók általi letöltése itt kerül " "sorba állításra és kezelésre" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Nyílt lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "Megnyitja a korábban lemezre mentett megosztott fájlok helyi listáját" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Megosztások beállítása" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Adja meg annak a felhasználónak a nevét, akinek a megosztott fájljait " "böngészni szeretné. A listát lemezre is mentheti, hogy később ellenőrizze." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "Személyes _profil" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Fiók beállítása" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Adja meg egy felhasználónak a nevét, a felhasználói leírás, információ és a " "személyes kép megtekintéséhez" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Csevegéselőzmények" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Csevegések beállítása" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Adja meg egy felhasználónak a nevét, hogy privát szöveges beszélgetést " "kezdeményezzen vele" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Üzenet mindenkinek" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Figyelmen kívül hagyott felhasználók beállítása" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Adjon hozzá felhasználókat barátokként, hogy mappákat oszthasson meg velük, " "és értesítést kapjon ha be vannak jelentkezve" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Csatlakozzon, vagy hozzon létre szobát…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Csatlakozzon egy meglévő csevegőszobához vagy hozzon létre egy új szobát, " "hogy cseveghessen a Soulseek hálózat többi felhasználójával" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Felhasználói profil beállítása" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Napló keresés…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Kapcsolatok" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Letöltés (Sebesség / Aktív felhasználók)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Feltöltés (Sebesség / Aktív felhasználók)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Csevegéselőzmény keresése…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Letöltési sebességkorlát" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Korlátlan letöltési sebesség" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "A használt letöltési sebességkorlát (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Választható letöltési sebességkorlát használata (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Szobák keresése…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Szobalista frissítése" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "A nyilvános csevegőszoba üzenetfolyamának _megjelenítése" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "Privát szobai meghívások el_fogadása" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Írjon egyetlen üzenetet, amelyet a szoba többi felhasználója később " "elolvashat. A legutóbbi üzenetek felül jelennek meg." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Szobafal üzenet beállítása…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Keresésieredmény-szűrők" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "A keresési eredmények szűrői a megjelenítésre kerülő keresési eredmények " "finomítására szolgálnak." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Minden keresésieredmény-listának saját szűrője van, amelyet az " "eredményszűrők gomb megnyomásával lehet megjeleníteni. Egy szűrő több " "mezőből áll, amelyek mindegyike akkor kerül alkalmazásra, ha bármelyik " "mezőjében lenyomja az Enter billentyűt. A szűrés azonnal alkalmazásra kerül " "a már beérkezett és a még beérkező eredményekre is." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Ahogy a neve is sugallja, a keresésieredmény-szűrő nem tudja kiterjeszteni " "az eredeti keresést, csak szűkíteni tudja azt. A keresési kifejezések " "bővítéséhez, vagy módosításához hajtson végre új keresést." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Keresésieredmény-szűrő használata" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Tartalmazza a szöveget" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "A megadott szöveget tartalmazó fájlok, mappák és felhasználónevek jelennek " "meg." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Nem kis- és nagybetű érzékeny, de a szórend fontos: az „Instrumental Remix” " "nem jeleníti meg a „Remix Instrumental” egyik elemét sem" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Használja a „|” karaktert (cső), több pontos kifejezés elválasztására. " "Példa:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Nem tartalmazza a szöveget" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Mint a fenti, de a fájlok, mappák és felhasználónevek kiszűrésre kerülnek, " "ha a szöveg egyezik." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Fájlok szűrése a fájlkiterjesztésük alapján." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Több fájlkiterjesztés is megadható, ami viszont bővíti az eredmények " "listáját. Például:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Lehetőség van a szűrő megfordítására is, felkiáltójellel jelölve meg azokat " "a fájlkiterjesztéseket, amelyeket nem szeretne az eredmények között látni! " "Például:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Fájlméret" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Fájlok szűrése a fájlméretük alapján." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Az alapértelmezés szerint használt mértékegység a bájt (B), és az értéknél " "nagyobb vagy azzal egyenlő (>=) méretű fájlok illeszkednek." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Kezdő betűjükkel, „b”, „k”, „m” és „g” (használható a „kib”, „mib” vagy " "„gib” is), adhatja meg a bájt, kibibájt, mebibájt vagy gibibájt egységeket:\n" " 20 m a legalább 20 MiB (mebibájt) méretű fájlok megjelenítéséhez." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "A pontos egyezés megadásához az érték elé kell tenni az egyenlőségjelet " "(=):\n" " =1024 csak az 1KiB (kibibájt) méretű fájlokra illeszkedik." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "„!” előtag az adott méretű fájlok kizárásához:\n" " !30,5 m a 30,5 MiB (mebibájt) méretű fájlok elrejtéséhez." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "A megadott értéknél kisebb/nagyobb fájlok kereséséhez tegye a „<” vagy a „>” " "karaktert az érték elé. Használjon szóközt az egyes feltételek között egy " "tartomány megadásához:\n" " >10,5 m <1g a nagyobb mint 10,5 MiB (mebibájt), de kisebb mint 1 GiB " "(gibibájt) méretű fájlok megjelenítéséhez." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "A jobban ismert változatok, a „kb”, „mb” és „gb” is használható a kilobájt, " "megabájt és gigabájt egységek megadására." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Fájlok szűrése a bitrátájuk alapján." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Az értékeket számjegykkel kell megadni. A mértékegység mindig Kb/s (Kilóbit/" "s)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "A fájlmérethez hasonlóan (fent) használhatók az operátorok =, !, <, >, <= " "vagy >= és több feltétel is megadható, például a legalább 256 Kb/s " "bitsebességű és a maximálisan 1411 Kb/s bitsebességű fájlok megjelenítése\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Fájlok szűrése az időtartamuk alapján." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Alapértelmezés szerint a megadott időtartamnál hosszabb vagy azzal egyenlő " "fájlok (>=) illeszkednek, kivéve ha operátort (=, !, <=, < vagy >) használ." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Adjon meg egy nyers értéket másodpercekben, vagy használja a PP:SS és ÓÓ:PP:" "SS időformátumokat:\n" " =53 a körülbelül 53 másodperc hosszúságú fájlok megjelenítéséhez.\n" " >5:30 legalább 5 és fél perces fájlok megjelenítéséhez.\n" " <5:30:00 5 és fél óránál rövidebb fájlokat jelenít meg." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Több feltétel is megadható:\n" " >6:00 <12:00, a 6 és 12 perc közötti időtartamú fájlok " "megjelenítéséhez.\n" " !9:54 !8:43 !7:32, a megadott időtartamú fájlok elrejtéséhez az " "eredmények közül.\n" " =5:34 =4:23 =3:05, a megadott időtartamú fájloknak az eredmények közé " "vételéhez." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "A fájlokat a felhasználók földrajzi helye alapján szűri az ISO 3166-2 " "szabványban meghatározott országkódok szerint:\n" " US csak az Egyesült Államokbeli IP-című felhasználók eredményeit " "jeleníti meg.\n" " A !GB elrejti a Nagy-Britanniai felhasználóktól származó eredményeket." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Több ország is megadható vesszővel vagy szóközzel." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Szabad feltöltési szál" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Csak azokat az eredményeket jelenítse meg a felhasználóktól, ahol legalább " "egy feltöltési szál szabad, azaz olyan fájlokat amelyek azonnal elérhetőek." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Feltöltési sebességhatárok" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Korlátlan feltöltési sebesség" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Feltöltési sebességkorlátozás használata (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Választható feltöltési sebességkorlátozás használata (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Privát csevegési parancssegítség" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Tartalmazza a szöveget…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Azokat az eredményeket jeleníti meg, amelyek fájlútvonala tartalmazza a " "megadott szöveget. Több kifejezés és szó is megadható, pl. pontos kifejezés|" "zene|szakszó|második pontos kifejezés" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Nem tartalmazza a szöveget…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Azokat az eredményeket jeleníti meg, amelyek fájlútvonala nem tartalmazza a " "megadott szöveget. Több kifejezés és szó is megadható, pl. pontos kifejezés|" "zene|szakszó|második pontos kifejezés" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Fájltípus…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Fájltípus, pl. flac wav ape vagy !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Fájlméret…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Fájlméret, pl. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitráta…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bitráta, pl. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Időtartam…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Időtartam, pl. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Országkód…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Országkód, pl. US ES vagy !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Felhasználónév, IP-cím vagy ország alapján tiltja a felhasználóknak, az Ön " "által megosztott fájlok elérését." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Blokkolás országkódokkal (vesszővel elválasztva):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "A kódoknak ISO 3166-2 formátumúaknak kell lenniük." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Egyéni földrajzi blokkoló üzenet használata:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Egyedi tiltó üzenet használata:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP-címek" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Helyesírás-ellenőrzés engedélyezése" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "A korábban megnyitott privát csevegés visszaállítása indításkor" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "CTCP protokollú privátüzenet-válaszok engedélyezése (kliens verzió)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "A megjelenítendő legutóbbi privát csevegőüzenetek száma:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "A megjelenítendő legutóbbi csevegőszoba üzenetek száma:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "A csevegés befejezése" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Befejezés engedélyezése a tabulátor billentyűvel" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Befejezés-legördülőlista engedélyezése" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "A minimum karakterszám a legördülő lista megjelenítéséhez:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Engedélyezett csevegés-befejezések:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Barát nevek" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Csevegőszoba felhasználónevei" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Szoba nevek" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Parancsok" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Időbélyegek" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Privát csevegési formátum:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Alapértelmezett" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Csevegőszoba-formátum:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Szöveg beszéddé alakítása" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Szöveg beszéddé alakításának engedélyezése" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Szöveg beszéddé alakítási parancs:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Privát csevegőüzenet:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Csevegőszoba-üzenet:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Cenzor" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Engedélyezi a szövegminták cenzúrázását" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Automatikus helyettesítés" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Engedélyezi a szavak automatikus helyettesítését" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Befejezett/szűrt letöltések automatikus törlése az átviteli listából" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "A befejezett letöltéseket a felhasználónév almappáiban tárolja" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Dupla kattintásos művelet a letöltésekhez:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Engedélyezi a felhasználóknak, hogy fájlokat küldjenek Önnek:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Mappák" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Befejezett letöltések:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Befejezetlen letöltések:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Beérkezett fájlok:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Események" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Futtassa a parancsot a fájlletöltés befejezése után ($ fájl elérési úthoz):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Futtasa a parancsot a mappaletöltés befejezése után ($ mappa elérési úthoz):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Letöltésszűrők" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Letöltésszűrők engedélyezése" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Hozzáad" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Alapértelmezések betöltése" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Szűrők ellenőrzése" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Ellenőrizetlen" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Figyelmen kívül hagyja a felhasználók csevegés üzeneteit és keresési " "eredményeit, a felhasználónév vagy az IP-cím alapján." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Csevegőszobák naplózása alapértelmezettként" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Privát csevegés naplózása alapértelmezettként" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Átvitel naplózása fájlba" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Hibakeresési üzenetek naplózása fájlba" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Napló időbélyegének formátuma:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Mappahelyek" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Csevegőszoba naplók mappája:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Privát csevegési naplók mappája:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Átviteli naplók mappája:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Hibakeresési naplók mappája:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Jelentkezzen be egy meglévő Soulseek fiókba, vagy hozzon létre egy újat. A " "felhasználónevek kis- és nagybetű érzékenyek és egyediek." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Nyilvános IP-cím:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Figyelőport (újraindítás szükséges):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Távol van állapot" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "A távol van állapot előtti tétlenség percekben (0 a letiltáshoz):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Automatikus válaszüzenet, ha távol van:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Figyelőport automatikus továbbítása (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Automatikus csatlakozás a kiszolgálóhoz indításkor" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek kiszolgáló:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "A kapcsolatokat egy adott hálózati interfészhez köti, ami hasznos például a " "VPN folyamatos használatának biztosításához. Ha üresen hagyja, akkor bármely " "rendelkezésre álló interfészt használhatja. Csak akkor változtassa meg ezt " "az értéket, ha tudja mit csinál." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Hálózati interfész (újraindítás szükséges):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "A /now paranccsal a csevegés közben megtekintheti, hogy éppen mit játszik le " "a médialejátszó." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Más" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Most játszott formátum" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "A most játszott üzenet formátuma:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Beállítások tesztelése" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Beépülők engedélyezése" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Beépülők hozzáadása" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "Beépülők _hozzáadása" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Beállítások" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Beállítások" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Verzió:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Készítette:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Keresési előzmények engedélyezése" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "A privát megosztás fájljainak - amelyeket mindenki számára láthatóvá tettek " "- az előtagja [PRIVÁT], és addig nem tölthetők le amíg a feltöltő erre " "kifejezetten engedélyt nem ad. Kérdezd meg őt kedvesen." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Privát módon megosztott fájlok megjelenítése a keresési eredményekben" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "A keresési eredmények számának korlátozása:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Keresésieredmény-szűrők engedélyezése alapértelmezettként" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Tartalmazza:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Nem tartalmazza:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Fájltípus:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Méret:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitráta:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Időtartam:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Országkód:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Csak az olyan felhasználók eredményeit jelenítse meg akiknek van szabad " "feltöltési szála." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Eredményszűrő-súgó" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Hálózati keresések" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Válaszoljon más felhasználók keresési kéréseire" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Az ennél a karakterszámnál rövidebb kereséseket figyelmen kívül hagyja:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "A keresési kérésenként elküldendő keresési eredmények maximális száma:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Keresési előzmények törlése" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Szűréselőzmények törlése" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Automatikusan újra átvizsgálja a megosztott mappák tartalmát indításkor. Ha " "kikapcsolja, a megosztások csak akkor frissülnek ha kézileg kezdeményezi az " "újbóli átvizsgálást." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Megosztások újra átvizsgálása indításkor" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Mindenki számára látható:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Baráti megosztások" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Megbízható megosztások" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "A kész/megszüntetett feltöltések automatikus törlése az átviteli listáról" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Dupla kattintás a feltöltésekhez:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Feltöltési sebesség korlátozása:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Átvitelenként" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Az összes átvitel" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Feltöltési szálak" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: A fájlok ciklikus módon lesznek feltöltve a sorban várakozó " "felhasználók számára.\n" "Elsőnek be, elsőnek ki: A fájlok feltöltése abban a sorrendben történik, " "ahogyan a sorba bekerültek." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Feltöltési sor típusa:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Feltöltései szálak hozzárendelése, ha a teljes átviteli sebesség eléri a " "(KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Feltöltési szálak száma:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Elsőbbség az összes barátnak" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Sorkorlátozás" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "A sorba állított fájlok maximális száma felhasználónként:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" "A sorba állított fájlok maximális teljes mérete felhasználónként (MIB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "A sorkorlátozások nem vonatkoznak a barátokra" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "A $ jel helyére az URL kerül. Az alapértelmezett rendszeralkalmazások olyan " "esetekben használatosak, amikor egy protokoll nincs konfigurálva." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Fájlkezelő parancs:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Kép visszaállítása" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Önleírás" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Adjon hozzá olyan dolgokat, amelyeket mindenkivek közölni szeretne, például " "egy rövid leírást, hasznos tippeket vagy útmutatókat a megosztásai " "letöltéséhez." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Kép:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Törlés" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Sötét mód előnyben részesítése" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Fejléc sáv használata" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Tálca ikon megjelenítése" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Indításkor minimalizálja a tálcára" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Nyelv (újraindítás szükséges):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Az ablak bezárásakor:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Értesítések" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Hang engedélyezése az értesítésekhez" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "A privát csevegések és az említések értesítéseinek megjelenítése az " "ablakcímmezőben" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Értesítések megjelenítése a következőhöz:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Befejezett fájlletöltések" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Befejezett mappaletöltések" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Privát üzenetek" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Csevegőszoba üzenetek" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Csevegőszoba említések" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Talált kívánságlista-eredmények" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Indításkor állítsa vissza a korábban aktív főlapot" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Bezárógombok a másodlagos lapokon" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Normál lapcímke színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "A lapcímke színe megváltozott:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Kiemelt lapcímke színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Barátlista pozíció:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Látható főlapok:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "A lapsáv helyzete:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Főlapok" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Fordított fájlútvonalak megjelenítése (újraindítást igényel)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Pontos fájlméretek megjelenítése (újraindítást igényel)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Listaszöveg színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Sorba állított keresési eredmény szövegének színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Színes felhasználónevek engedélyezése" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Csevegési felhasználónév megjelenése:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Távoli szöveg színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Helyi szöveg színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Parancskimeneti szöveg színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/ü művelet szövegének színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Kiemelt szöveg színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL hivatkozás szövegszíne:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Felhasználói állapotok" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "A „Bejelentkezve” színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "A „Távollét” színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "A „Nincs bejelentjezve” színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Szöveges bejegyzések" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Szövegbevitel háttérszíne:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Szövegbevitel szövegének a színe:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Betűtípusok" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Általános betűtípus:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Lista betűtípusa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Szövegnézet betűtípusa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Csevegés betűtípusa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Átvitelek betűtípusa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Keresés betűtípusa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Tallózás betűtípusa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikonok" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Ikontéma mappa:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Felhasználó(k) leállítása" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Felhasználó(k) tiltása" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Törölje az összes Befejezett/Megszüntetett feltöltést" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Üzenet mindenkinek" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Megadott feltöltések törlése" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Megosztási lista lemezre mentése" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Fájlok frissítése" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Profil szerkesztése" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Megosztott fájlok" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Megosztott mappák" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Sorba állított feltöltések" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Szabad feltöltési szál" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Feltöltési sebesség" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Érdeklődési körök szerkesztése" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "Kiváltságok _adása…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "P_rofil frissítése" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nicotine+ parancsok" #~ msgid "_Clear" #~ msgstr "_Töröl" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "A(z) %(filename)s nem menthető: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Megbízható barátok" #~ msgid "Quit program" #~ msgstr "Kilépés a programból" #~ msgid "Username:" #~ msgstr "Felhasználónév:" #~ msgid "Re_commendations for Item" #~ msgstr "Ja_vaslatok a tételhez" #~ msgid "_Remove Item" #~ msgstr "_Eltávolítja a tételt" #~ msgid "_Remove" #~ msgstr "_Eltávolít" #~ msgid "Send M_essage" #~ msgstr "Üzenet küldés_e" #~ msgid "Send Message" #~ msgstr "Üzenet küldése" #~ msgid "View User Profile" #~ msgstr "Felhasználói profil megtekintése" #~ msgid "Start Messaging" #~ msgstr "Üzenetküldés indítása" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "" #~ "Adja meg annak a felhasználónak a nevét akinek üzenetet szeretne küldeni:" #~ msgid "_Message" #~ msgstr "_Üzenet" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "" #~ "Adja meg annak a felhasználónak a nevét, akinek a profilját látni " #~ "szeretné:" #~ msgid "_View Profile" #~ msgstr "_Profil megtekintése" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Adja meg annak a felhasználónak a nevét, akinek a megosztásait látni " #~ "szeretné:" #~ msgid "_Browse" #~ msgstr "_Böngészés" #~ msgid "Password" #~ msgstr "Jelszó" #~ msgid "Download File" #~ msgstr "Fájlletöltés" #~ msgid "Refresh Similar Users" #~ msgstr "Frissítse a hasonló felhasználókat" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Adja meg annak a személynek a felhasználónevét, akinek a fájljait látni " #~ "szeretné" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Adja meg annak a személynek a felhasználónevét, akinek az adatait látni " #~ "szeretné" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Adja meg annak a személynek a felhasználónevét, akinek üzenetet szeretne " #~ "küldeni" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Adja meg annak a személynek a felhasználónevét, akit fel szeretne venni a " #~ "barátlistájára" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Adja meg a szoba nevét amihez csatlakozni kíván. Ha a szoba nem létezik, " #~ "akkor létrejön." #~ msgid "Show Log History Pane" #~ msgstr "Naplóelőzmények-tábla megjelenítése" #~ msgid "Save _Picture" #~ msgstr "_Kép mentése" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "%(filepath)s helytelen keresési eredménye kiszűrve a(z) %(user)s " #~ "felhasználótól, a(z) „%(query)s” keresési lekérdezésre" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Bizonyos ügyfelek nem küldenek keresési eredményeket, ha speciális " #~ "karakterek szerepelnek benne." #~ msgid "Remove special characters from search terms" #~ msgstr "Speciális karakterek eltávolítása a keresési kifejezésekből" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Hiba történt a végrehajtás közben '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Végrehajtás közben hiba történt a mappán: %s" #~ msgid "Disallowed extension" #~ msgstr "Nem engedélyezett bővítmény" #~ msgid "Too many files" #~ msgstr "Túl sok fájl" #~ msgid "Too many megabytes" #~ msgstr "Túl sok megabájt" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "A kiszolgáló jelenleg nem engedélyezi a kívánságlistás keresést" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "A fájlátvitel sebessége attól a felhasználótól függ akitől éppen letölt. " #~ "Némelyik felhasználó sebessége gyorsabb, másoké lassabb." #~ msgid "Started Downloads" #~ msgstr "Letöltések elindítása" #~ msgid "Started Uploads" #~ msgstr "Megkezdődött a feltöltés" #~ msgid "Replace censored letters with:" #~ msgstr "A cenzúrázott betűk helyettesítése ezzel:" #~ msgid "Censored Patterns" #~ msgstr "Cenzúrázási minták" #~ msgid "Replacements" #~ msgstr "Helyettesítések" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Ha egy felhasználó a Soulseek hálózaton egy olyan fájlt keres, amely " #~ "megtalálható az ön megosztásaiban, a keresési eredmények elküldésre " #~ "kerülnek a felhasználónak." #~ msgid "Send to Player" #~ msgstr "Küldés a lejátszónak" #~ msgid "Send to _Player" #~ msgstr "Küldés a le_játszónak" #~ msgid "_Open in File Manager" #~ msgstr "Meg_nyitás a fájlkezelőben" #~ msgid "Media player command:" #~ msgstr "Zenelejátszó parancs:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "A letöltés nem menthető a felhasználónév almappába, visszaáll az " #~ "alapértelmezett letöltési mappa. Hiba: %s" #~ msgid "Buddy-only" #~ msgstr "Csak barátoknak" #~ msgid "Share with buddies only" #~ msgstr "Megosztás csak barátokkal" #~ msgid "_Quit…" #~ msgstr "_Kilépés…" #~ msgid "_Configure Shares" #~ msgstr "Megosztások _beállítása" #~ msgid "Remote file error" #~ msgstr "Távoli fájl hiba" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Nem található a(z) %(option1)s vagy a(z) %(option2)s, kérem telepítse " #~ "valamelyiket." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s mappa található az újraszkennelés előtt" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Az alábbi adatbázisok feldolgozása sikertelen: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "" #~ "Nem sikerült elküldeni a megosztott fájlok számát a kiszolgálónak: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Kilépés / Futtatás a háttérben" #~ msgid "Listening port:" #~ msgstr "Figyelőport:" #~ msgid "Network interface:" #~ msgstr "Hálózati interfész:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Korlátozza a barátoknak szóló megosztásokat a megbízható barátokra" #~ msgid "Shared" #~ msgstr "Megosztott" #~ msgid "Search Files and Folders" #~ msgstr "Fájlok és mappák keresése" #~ msgid "Out of Date" #~ msgstr "Elavult" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "A(z) %(version)s verzió elérhető, kiadva %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Ön a(z) %s fejlesztői verzióját használja" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Ön a(z) %s legújabb verzióját használja" #~ msgid "Latest Version Unknown" #~ msgstr "A legújabb verzió ismeretlen" #~ msgid "Prefer Dark _Mode" #~ msgstr "Sötét _mód előnyben részesítése" #~ msgid "Show _Log History Pane" #~ msgstr "_Naplóelőzmények-tábla megjelenítése" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Barátlista külön lapon" #~ msgid "Buddy List Always Visible" #~ msgstr "A barátlista mindig látható" #~ msgid "_View" #~ msgstr "_Nézet" #~ msgid "_Open Log Folder" #~ msgstr "Naplómappa _megnyitása" #~ msgid "_Browse Folder(s)" #~ msgstr "Könyvtár(ak) _böngészése" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "KiB (2^10 bájt) másodpercenként." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Elküldve a felhasználóknak a földrajzi blokkolás okaként." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Elküldve a felhasználóknak a tiltás okaként." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Amint kapcsolatba lép az alkalmazással, az állapot bejelentkezett lesz." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Minden felhasználó maximum az alábbiakat állíthatja sorba:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Megabájt (2^20 bájt)." #~ msgid "MiB" #~ msgstr "MB" #~ msgid "files" #~ msgstr "fájlok" #~ msgid "Queue Behavior" #~ msgstr "Sorba állítási módszer" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Ha le van tiltva, a szálakat automatikusan a rendelkezésre álló " #~ "sávszélesség-korlátozások határozzák meg." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Vegye figyelembe, hogy az operációs rendszer témája elsőbbséget élvezhet." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Alapértelmezés szerint a bal szélső lap az indításkor aktiválódik" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Kilépés %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "megszűnt" #~ msgid "done" #~ msgstr "kész" #~ msgid "Remember choice" #~ msgstr "Emlékezzen a választásra" #~ msgid "Kosovo" #~ msgstr "Koszovó" #~ msgid "Unknown Network Interface" #~ msgstr "Ismeretlen hálózati interfész" #~ msgid "Listening Port Unavailable" #~ msgstr "A figyelőport nem elérhető" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "A szerver leállt, vagy nem válaszol. Újrapróbálás %i másodperc múlva" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "A Nicotine+ program P2P hálózatot használ a többi felhasználóhoz való " #~ "csatlakozáshoz. Ahhoz, hogy a felhasználók gond nélkül csatlakozhassanak " #~ "Önhöz, elengedhetetlen a nyitott figyelőport." #~ msgid "--- disconnected ---" #~ msgstr "--- szétkapcsolva ---" #~ msgid "--- reconnected ---" #~ msgstr "--- újrakapcsolódva ---" #~ msgid "ID" #~ msgstr "Azonosító" #~ msgid "Earth" #~ msgstr "Föld" #~ msgid "Czech Republic" #~ msgstr "Cseh Köztársaság" #~ msgid "Turkey" #~ msgstr "Törökország" #~ msgid "Joined Rooms " #~ msgstr "Csatlakozott szobák " #~ msgid "_Auto-join Room" #~ msgstr "_Automatikus csatlakozás a szobához" #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Szintaxis: A betűk nem kis- és nagybetű érzékenyek. Minden pontos " #~ "Python kifejezés támogatott, ha a visszavonás (escape) tiltott. Egyszerű " #~ "szűrőkhöz ajánlott a visszavonás (escape) engedélyezése." #~ msgid "Escaped" #~ msgstr "Visszavonva" #~ msgid "Escape filter" #~ msgstr "Szűrésvisszavonás" #~ msgid "" #~ "You have no Soulseek privileges. Privileges are not required, but allow " #~ "your downloads to be queued ahead of non-privileged users." #~ msgstr "" #~ "Nincsenek Soulseek kiváltságai. A kiváltságok nem szükségesek, de " #~ "lehetővé teszik, hogy a letöltései a nem kiváltságos felhasználók előtt " #~ "kerüljenek sorra." #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Nem található %s vagy újabb, kérem telepítse." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "A Gtk modult nem lehet importálni. A python-gobject modul rosszul lett " #~ "telepítve?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Ön a GTK nem támogatott verzióját használja %(major_version)s. Telepítse " #~ "a GTK %(complete_version)s vagy újabb verzióját." #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Adjon meg egy szövegmintát és azt, hogy mi helyettesítse" #~ msgid "User Info" #~ msgstr "Felhasználói információk" #~ msgid "Zoom 1:1" #~ msgstr "Nagyítás 1:1" #~ msgid "Zoom In" #~ msgstr "Nagyítás" #~ msgid "Zoom Out" #~ msgstr "Kicsinyítés" #~ msgid "Show User I_nfo" #~ msgstr "Felhasználói i_nformációk megjelenítése" #~ msgid "Request User's Info" #~ msgstr "Felhasználói információk kérése" #~ msgid "Request User's Shares" #~ msgstr "Felhasználói megosztások kérése" #~ msgid "Request User Info" #~ msgstr "Felhasználói információk kérése" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "" #~ "Adja meg annak a felhasználónak a nevét akinek az adatait látni szeretné:" #~ msgid "Request Shares List" #~ msgstr "Megosztáslista kérése" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s mappa található az újraellenőrzés, újraépítés előtt…" #~ msgid "Rescan aborted due to unavailable shares" #~ msgstr "Az újrakeresés megszakítva a nem elérhető megosztások miatt" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "A megadott porttartományban nincs elérhető figyelő port %s–%s" #, python-format #~ msgid "UPnP: Failed to forward external port %(external_port)s: %(error)s" #~ msgstr "" #~ "UPnP: Nem sikerült továbbítani a külső portot %(external_port)s: %(error)s" #, python-format #~ msgid "" #~ "UPnP: External port %(external_port)s successfully forwarded to local IP " #~ "address %(ip_address)s port %(local_port)s" #~ msgstr "" #~ "UPnP: Külső port %(external_port)s sikeresen továbbítva a helyi IP-címre " #~ "%(ip_address)s port %(local_port)s" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Érvénytelen Soulseek URL: %s" #, python-format #~ msgid "User %(user)s is reading your user info" #~ msgstr "%(user)s felhasználó az Ön felhasználói adatait olvassa" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Válasszon ki egy tartományt a figyelő porthoz. A tartomány első elérhető " #~ "portja lesz használva." #~ msgid "First Port" #~ msgstr "Első port" #~ msgid "to" #~ msgstr "eddig" #~ msgid "Last Port" #~ msgstr "Utolsó port" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "A Soulseek hálózat felhasználói letölthetnek fájlokat az ön által " #~ "megosztott mappákból. A fájlok megosztása létfontosságú a Soulseek " #~ "hálózat működése szempontjából." #~ msgid "Update I_nfo" #~ msgstr "I_nformáció frissítése" #~ msgid "Chat Room Commands" #~ msgstr "Csevegőszoba parancsok" #~ msgid "/join /j 'room'" #~ msgstr "/csatlakozás /cs 'room'" #~ msgid "Join room 'room'" #~ msgstr "'room' szobához csatlakozás" #~ msgid "Leave current room" #~ msgstr "A jelenlegi szoba elhagyása" #~ msgid "Clear the chat window" #~ msgstr "Csevegőablak tisztítása" #~ msgid "/me 'message'" #~ msgstr "/ü 'message'" #~ msgid "Display the Now Playing script's output" #~ msgstr "A most játszott parancsfájl kimenetének megjelenítése" #~ msgid "Toggles your away status" #~ msgstr "Átkapcsolja a távol van állapotodat" #~ msgid "/add /ad 'user'" #~ msgstr "/hozzáad /ad 'user'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "'user' felhasználó hozzáadása a barátlistához" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/eltáv /el 'user'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "'user' felhasználó eltávolítása a barátlistáról" #~ msgid "/ban 'user'" #~ msgstr "/tilt 'user'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "'user' felhasználó hozzáadása a tiltólistához" #~ msgid "/unban 'user'" #~ msgstr "/engedélyez 'user'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "'user' felhasználó eltávolítása a tiltólistáról" #~ msgid "/ignore 'user'" #~ msgstr "/mell 'user'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "'user' felhasználó hozzáadása a mellőzőlistához" #~ msgid "/unignore 'user'" #~ msgstr "/nemmell 'user'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "'user' felhasználó eltávolítása a mellőzőlistáról" #~ msgid "/browse /b 'user'" #~ msgstr "/böngész /b 'user'" #~ msgid "Browse files of user 'user'" #~ msgstr "'user' felhasználó fájljainak böngészése" #~ msgid "/whois /w 'user'" #~ msgstr "/ki /k 'user'" #~ msgid "Request info for 'user'" #~ msgstr "'user' felhasználó információinak lekérése" #~ msgid "/ip 'user'" #~ msgstr "/ip 'user'" #~ msgid "Show IP for user 'user'" #~ msgstr "'user' felhasználó IP-címének mutatása" #~ msgid "/search /s 'query'" #~ msgstr "/keres 'query'" #~ msgid "Start a new search for 'query'" #~ msgstr "'query' kérdéssel egy új keresés indítása" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/szkeres 'query'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "'query' kérdéssel keresés indítása a csatlakozott szobákban" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bkeres /bk 'query'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "'query' kérdéssel keres a barátlisában" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/fkeres /fk 'user' 'query'" #~ msgid "Search a user's shares for 'query'" #~ msgstr "'query' kérdéssel keres egy felhasználó megosztásaiban" #~ msgid "/msg 'user' 'message'" #~ msgstr "/üzen 'user' 'message'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "'message' üzenet küldése 'user' felhasználónak" #~ msgid "/pm 'user'" #~ msgstr "/pcs 'user'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "'user' felhasználónak privát csevegőablak megnyitása" #~ msgid "Private Chat Commands" #~ msgstr "Privátcsevegés-parancsok" #~ msgid "Close the current private chat" #~ msgstr "A jelenlegi privát csevegés bezárása" #~ msgid "Add user to your buddy-list" #~ msgstr "Felhasználó hozzáadása a barátlistához" #~ msgid "Remove user from your buddy-list" #~ msgstr "Felhasználó eltávolítása a barátlistáról" #~ msgid "Add user to your ban list" #~ msgstr "Felhasználó hozzáadása a tiltólistához" #~ msgid "Remove user from your ban list" #~ msgstr "Felhasználó eltávolítása a tiltólistáról" #~ msgid "Add user to your ignore list" #~ msgstr "Felhasználó hozzáadása a mellőzőlistához" #~ msgid "Remove user from your ignore list" #~ msgstr "Felhasználó eltávolítása a mellőzőlistáról" #~ msgid "Browse shares of user" #~ msgstr "Felhasználó megosztásainak böngészése" #~ msgid "Show IP for user" #~ msgstr "Felhasználó IP-címének mutatása" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "A sorrendérzékeny szűréshez, valamint több pontos kifejezés szűréséhez " #~ "elválasztójelek ( |, „cső”) használhatók a kifejezések és szavak " #~ "elválasztására.\n" #~ " Például: Remix|Instrumental|Dub Mix" #~ msgid "" #~ "Multiple file extensions can be specified, which in turn will broaden the " #~ "list of results.\n" #~ " Example: flac|wav|ape" #~ msgstr "" #~ "Több fájlkiterjesztés is megadható, ami viszont bővíti a találatok " #~ "listáját.\n" #~ " Például: flac|wav|ape" #~ msgid "" #~ "It is also possible to invert the filter, specifying file extensions you " #~ "don't want in your results.\n" #~ " Example: !mp3|!jpg" #~ msgstr "" #~ "Lehetőség van a szűrő megfordítására is, megadva azokat a " #~ "fájlkiterjesztéseket, amelyeket nem szeretne az eredményekben látni.\n" #~ " Például: !mp3|!jpg" #~ msgid "" #~ "By default, the unit used is bytes and files greater than or equal to the " #~ "value will be matched." #~ msgstr "" #~ "Alapértelmezés szerint a használt mértékegység bájt, és az értéknél " #~ "nagyobb vagy azzal egyenlő fájlok illeszkednek." #~ msgid "" #~ "Prepend = to a value to specify an exact match:\n" #~ " =1024 only matches files that are 1 KiB (kibibyte)." #~ msgstr "" #~ "Az = (egyenlő) jelet a pontos egyezés megadásához az érték elé kell " #~ "tenni:\n" #~ " =1024 csak az 1KiB (kilóbájt) méretű fájlokra illik." #~ msgid "" #~ "Prepend < or > to find files smaller/larger than the given value:\n" #~ " >10.5m|<1g to show files larger than 10.5 MiB (mebibytes),\n" #~ " but smaller than 1 GiB (gibibytes), use a | between conditions." #~ msgstr "" #~ "A megadott értéknél kisebb/nagyobb fájlok kereséséhez fűzze az " #~ "elválasztójelet ( |, „cső”) a <, vagy > elé:\n" #~ " >10,5 m|<1g, a 10,5 MiB (megabájtnál) nagyobb,\n" #~ " de kisebb mint 1 GiB (gigabájt) méretű fájlok megjelenítése." #~ msgid "" #~ "Like File Size (above), operators =, !, <, and > can be used, and " #~ "multiple conditions can be specified with | pipes:\n" #~ " >256|<1411 to show files with a bitrate of at least 256 Kb/s\n" #~ " with a maximum bitrate of 1411 Kb/s." #~ msgstr "" #~ "A fájlmérethez (fent) hasonlóan használhatók az operátorok =, !, < , > és " #~ "több feltétel is megadható a „|” (cső) használatával:\n" #~ " >256|<1411 , a legalább 256 Kb/s bitsebességű\n" #~ " és 1411 Kb/s maximális bitsebességű fájlok megjelenítése." #~ msgid "" #~ "By default, files longer than or equal to the entered duration will be " #~ "matched, unless an operator (=, !, <, or >) is used." #~ msgstr "" #~ "Alapértelmezés szerint a megadott időtartamnál hosszabb vagy azzal " #~ "megegyező fájlok illeszkednek, kivéve ha operátort (=, !, <, vagy >) " #~ "használ." #~ msgid "" #~ "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" #~ " >5:30 to show files at least 5 and a half minutes long.\n" #~ " <5:30:00 shows files less than 5 and a half hours long." #~ msgstr "" #~ "Adjon meg egy nyers értéket másodpercekben, vagy használja a PP:SS és ÓÓ:" #~ "PP:SS időformátumokat:\n" #~ " >5:30 legalább 5 és fél perces fájlok megjelenítéséhez.\n" #~ " <5:30:00 5 és fél óránál rövidebb fájlokat jelenít meg." #~ msgid "" #~ "Multiple conditions can be specified with | pipe separators:\n" #~ " >6:00|<12:00 to show files between 6 and 12 minutes long.\n" #~ " !9:54|!8:43|!7:32 to hide some specific files from the results.\n" #~ " =5:34|=4:23|=3:05 to include files with specific durations." #~ msgstr "" #~ "Több feltétel is megadható a „|” (cső, elválasztójel) használatával:\n" #~ " >6:00|<12:00, a 6 és 12 perc hosszúság közötti fájlok " #~ "megjelenítéséhez.\n" #~ " !9:54|!8:43|!7:32, megadott hosszúságú fájlok elrejtéséhez a " #~ "találatok közül.\n" #~ " =5:34|=4:23|=3:05, megadott időtartamú fájlok megjelenítéséhez." #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "A nem hangfájlok kizárásához használja a !0 értéket az időtartamszűrőben." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "A fájlok szűrése a felhasználók földrajzi helye alapján." #~ msgid "" #~ "Uses country codes defined by ISO 3166-2:\n" #~ " US will only show results from users with IP addresses in the United " #~ "States. !GB will hide results that come from users in the United Kingdom " #~ "(Great Britain)." #~ msgstr "" #~ "Az ISO 3166-2 országkódokat használja:\n" #~ " Az US csak az egyesült államokbeli IP-című felhasználók eredményeit " #~ "jeleníti meg. A !GB elrejti az Egyesült Királyság (Nagy-Britannia) " #~ "felhasználóitól származó eredményeket." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "A teljes eredmények ismételt megtekintéséhez egyszerűen törölje az összes " #~ "aktív szűrőt." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Lásd az alapértelmezett keresésieredmény-szűrő beállításának lehetőségeit." #~ msgid "File type, e.g. flac|wav|ape or !mp3|!m4a" #~ msgstr "Fájltípus, pl. flac|wav|ape vagy !mp3|!m4a" #~ msgid "File size" #~ msgstr "Fájlméret" #~ msgid "Duration, e.g. 2:20|!3:30|=4:40" #~ msgstr "Időtartam, pl. 2:20|!3:30|=4:40" #~ msgid "Country code, e.g. US|GB|ES or !DE|!GB" #~ msgstr "Országkód, pl. US|GB|ES vagy !DE|!GB" #~ msgid "Clear Active Filters" #~ msgstr "Aktív szűrők törlése" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "A tabulátor billentyű lenyomásával végig lépegethet a befejezéseken" #~ msgid "Hide drop-down when only one matches" #~ msgstr "A legördülő lista elrejtése, ha csak egy egyezik" #~ msgid "Built-in commands" #~ msgstr "Beépített parancsok" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Könyvtárak letöltése fordított számsorrendben" #~ msgid "Allow these users to send you files:" #~ msgstr "Engedélyezi ezeknek a felhasználóknak, hogy fájlokat küldjenek:" #~ msgid "Incomplete file folder:" #~ msgstr "Hiányos fájlmappa:" #~ msgid "Download folder:" #~ msgstr "Letöltés mappa:" #~ msgid "Save buddies' uploads to:" #~ msgstr "A barátok feltöltéseinek mentése ide:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "UPnP használata a figyelőport továbbításához" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Ossza meg a mappáit minden Soulseek-felhasználóval, vagy a barátaival, " #~ "lehetővé téve a tartalmak közvetlenül az eszközéről való letöltését. A " #~ "rejtett fájlok soha nem kerülnek megosztásra." #~ msgid "Queue limits do not apply to buddies" #~ msgstr "A sorkorlátozás nem vonatkozik a barátokra" #~ msgid "Tab bar position:" #~ msgstr "A lapsáv helyzete:" #~ msgid "Secondary Tabs" #~ msgstr "Másodlagos lapok" #~ msgid "Chat room tab bar position:" #~ msgstr "Csevegőszoba lapsávjának pozíciója:" #~ msgid "Private chat tab bar position:" #~ msgstr "Privát csevegés lapsávjának pozíciója:" #~ msgid "Search tab bar position:" #~ msgstr "Keresés lapsávjának pozíciója:" #~ msgid "User info tab bar position:" #~ msgstr "Felhasználói adatok lapsávjának pozíciója:" #~ msgid "User browse tab bar position:" #~ msgstr "Felhasználóböngészés lapsávjának pozíciója:" #~ msgid "" #~ "Show reverse file paths in search and transfer views (requires a restart)" #~ msgstr "" #~ "Fordított fájlútvonalak megjelenítése a keresési és az átviteli " #~ "nézetekben (újraindítást igényel)" #~ msgid "Tab Labels" #~ msgstr "Lapcímkék" #~ msgid "_Refresh Info" #~ msgstr "Információ _frissítése" #~ msgid "Block IP Address" #~ msgstr "IP-cím blokkolása" #~ msgid "Connected" #~ msgstr "Csatlakoztatva" #~ msgid "Disconnected" #~ msgstr "Nincs csatlakoztatva" #~ msgid "Disconnected (Tray)" #~ msgstr "Leválasztva (Tálca)" #~ msgid "User(s)" #~ msgstr "Felhasználó(k)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "\"%s\" álnév \"üresen tért vissza\"" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatív sebességkorlátozások" #~ msgid "Last played" #~ msgstr "Utoljára lejátszott" #~ msgid "Playing now" #~ msgstr "Most játszott" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Nem sikerült letölteni a fájlt %(path)s: %(error)s" #, python-format #~ msgid "Invalid response: %s" #~ msgstr "Érvénytelen válasz: %s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Hibakód %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Nincs ilyen álnév (%s)" #~ msgid "Aliases:" #~ msgstr "Álnevek:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Eltávolított %(alias)s álnév: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Nincs ilyen álnév (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternatív sebességkorlátozások" #~ msgid "Aliases" #~ msgstr "Álnevek" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'parancs' 'definíció'" #~ msgid "Add a new alias" #~ msgstr "Új álnév hozzáadása" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'parancs'" #~ msgid "Remove an alias" #~ msgstr "Egy álnév eltávolítása" #, fuzzy #~ msgid "Chat History" #~ msgstr "Csevegés története" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Álnév parancsok kiegészítése" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Teljes letöltési sebesség limitálása ennyi kB/s-re:" #~ msgid "Author(s):" #~ msgstr "Szerző(k):" #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Feltöltési sebesség korlátozása erre:" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Kívánságlista elem található" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Megjeleníti a felhasználói állapotikonokat az állapotszöveg helyett" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "A fájl elérési útvonalára vonatkozó tooltipek engedélyezése a keresési és " #~ "átviteli nézetekben" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Színes és kattintható felhasználónevek" #~ msgid "Notification changes the tab's text color" #~ msgstr "Figyelmeztetés megváltoztatja a fül szövegszínét" #~ msgid "Cancel" #~ msgstr "Mégsem" #~ msgid "OK" #~ msgstr "OK" #~ msgid "_Add to Buddy List" #~ msgstr "(_A) Hozzáadás a barátlistához" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "" #~ "Törölje az összes letöltést, amely meghatározott állapottal van " #~ "megjelölve." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "" #~ "Töröljön minden feltöltést, amely meghatározott állapottal van megjelölve." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "használjon nem alapértelmezett felhasználói adatkönyvtárt pl. a " #~ "letöltések listájához" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Ismeretlen konfigurációs szakasz '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Ismeretlen konfigurációs opció '%(option)s' az alábbi " #~ "szakaszban'%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "Elérhető a(z) %s verzió" #, python-format #~ msgid "released on %s" #~ msgstr "kiadva %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "A Nicotine+ a háttérben fut" #, python-format #~ msgid "Private message from %s" #~ msgstr "Privát üzenet tőle: %s" #~ msgid "Aborted" #~ msgstr "Megszakítva" #~ msgid "Blocked country" #~ msgstr "Blokkolt ország" #~ msgid "Finished / Aborted" #~ msgstr "Befejezett / Megszakított" #~ msgid "Close tab" #~ msgstr "A lap bezárása" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Említették az Ön nevét a(z) %(room)s szobában" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "%s parancs nem ismert" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Vigyázat: %(realuser)s megpróbálja becsapni! Hamis név: %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "A megadott '%s' hálózati interfész nem létezik. Módosítsa vagy távolítsa " #~ "el a megadott hálózati interfészt és indítsa újra a Nicotine+ programot." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Az ügyfélkapcsolati portokhoz megadott tartomány {}-{} volt, de ezek " #~ "közül egyik sem használható. Növelje és/vagy " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Jegyezze meg, hogy a tartománya része 1024 alatt van, ez általában nem " #~ "megengedett a legtöbb operációs rendszeren, a Windows kivételével." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Újrakeresés folyamata: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS hiba: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "Az UPnP nem érhető el ezen a hálózaton" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "A külső WAN-port hozzárendelése sikertelen: %(error)s" #~ msgid "Room wall" #~ msgstr "Szoba fal" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Az alapértelmezett '2234' figyelőport a legtöbb esetben jól működik. Ha " #~ "másik portot kell használnia, azt később módosíthatja a beállításokban." #~ msgid "Show users with similar interests" #~ msgstr "Hasonló érdeklődésű felhasználók megjelenítése" #~ msgid "Menu" #~ msgstr "Menü" #~ msgid "Expand / Collapse all" #~ msgstr "Kibővít / Összecsuk mindet" #~ msgid "Configure shares" #~ msgstr "Megosztás konfigurálása" #~ msgid "Create or join room…" #~ msgstr "Szoba létrehozása vagy csatlakozás…" #, fuzzy #~ msgid "_Room List" #~ msgstr "Szobák" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "" #~ "Alternatív letöltési és feltöltési sebességkorlátozások engedélyezése" #, fuzzy #~ msgid "Show log history" #~ msgstr "_Naplóablak mutatása" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Eredmény csoportosítási mód" #~ msgid "Free slot" #~ msgstr "Szabad szál" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Megosztás csak barátoknak" #~ msgid "_Away" #~ msgstr "_Távol" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "" #~ "Nem sikerült betölteni a %(file)s felhasználói felületi fájlt: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "A megosztott fájlok indexének alaphelyzetbe állítása egy hiba miatt. " #~ "Kérjük olvassa újra a megosztásokat." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "A megosztott fájlok fájlindexét nem lehet elérni. Ez előfordulhat a " #~ "Nicotine+ több példányának egyidejűleg történő futása, fájlengedélyezési " #~ "problémák vagy a Nicotine+ egyéb problémája miatt." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "A Nicotine+ egy Soulseek kliens" #~ msgid "enable the tray icon" #~ msgstr "tálcaikon engedélyezése" #~ msgid "disable the tray icon" #~ msgstr "tálcaikon letiltása" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Szerezzen Soulseek kiváltságokat…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "A nyilvános IP-cím %(ip)s és az aktív figyelő port %(port)s" #~ msgid "unknown" #~ msgstr "ismeretlen" #~ msgid "Notification" #~ msgstr "Értesítés" #~ msgid "Length" #~ msgstr "Hossz" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Kép nincs elmentve, %s már létezik." #~ msgid "_Open" #~ msgstr "Megnyitás (_O)" #~ msgid "_Save" #~ msgstr "Mentés (_S)" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "'%s' beépülő betöltése sikertelen, mert nem található." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O hiba: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Nem sikerült megnyitni a fájl elérési útvonalát: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Nem sikerült megnyitni az URL-t: %s" #~ msgid "_Log Conversation" #~ msgstr "Beszélgetés naplózása (_L)" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Eredményszűrő lista" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "A < vagy > előtaggal az értéknél kisebb/nagyobb vagy azzal egyenlő fájlok " #~ "kereséséhez." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "A VBR fájlok átlagos bitrátaértéket mutatnak, és jellemzően alacsonyabb " #~ "bitrátaértékkel rendelkeznek, mint az azonos hangminőségű, tömörített 320 " #~ "kbps CBR fájl." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "A fenti Size-hoz hasonlóan a =, < és > is használható." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Más programok írási hozzáférésének megakadályozása a letöltött fájlokhoz " #~ "(kikapcsolása NFS esetén)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Ahol a befejezetlen letöltések ideiglenesen tárolva vannak." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Ahol a haverok feltöltései tárolódnak (minden egyes haver számára " #~ "létrehozott almappával)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Kikapcsolási állapot perc inaktivitás után:" #~ msgid "Protocol:" #~ msgstr "Protokoll:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikon téma mappa (újraindítást igényel):" #~ msgid "Establishing connection" #~ msgstr "Kapcsolat létesítése" #~ msgid "Clear Groups" #~ msgstr "Csoportok Tisztítása" #~ msgid "User List" #~ msgstr "Felhasználó lista" #~ msgid "_Reset Statistics…" #~ msgstr "Statisztikák visszaállítása…" #~ msgid "Clear _Downloads…" #~ msgstr "_Letöltések törlése…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Feltöltések törlése…" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "User IP-címének b_lokkolása" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "User IP-címének mellőzése" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Töröljön minden olyan letöltést, amelynek átvitele befejeződött, vagy " #~ "amelyeket egy szűrő elkapott." #, fuzzy #~ msgid "Usernames" #~ msgstr "Felhasználónév" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Naplózott chatszoba üzenetek megjelenítése, ha egy szoba újracsatlakozik" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Töröljön minden olyan feltöltést, amelynek az átvitele befejeződött, vagy " #~ "amelyeket a távoli felhasználó törölt." #~ msgid "Queue Position" #~ msgstr "Várakozási pozíció" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Az %(user)s felhasználó közvetlenül az \"%(query)s\"-re keres, és %(num)i " #~ "eredményt ad vissza." #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[MAGÁN]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Szobafal (személyes üzenetkészlet)" #~ msgid "Your config file is corrupt" #~ msgstr "A beállítófájl sérült" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Sajnáljuk, de úgy tűnik, a beállítófájl megsérült. Állítsa be újra a " #~ "Nicotine+-t!\n" #~ "\n" #~ "Átneveztük a régi beállítófájlt erre:\n" #~ "%(corrupt)s\n" #~ "Ha ezt a fájlt szövegszerkesztővel nyitja meg, talán megmentheti néhány " #~ "beállítását." #, fuzzy #~ msgid "User Description" #~ msgstr "Leírás: " #, fuzzy #~ msgid "User Information" #~ msgstr "Useri_nfó" #, fuzzy #~ msgid "User Interests" #~ msgstr "Érdeklődések" #, fuzzy #~ msgid "User Picture" #~ msgstr "Felhasználó tallózása" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Kívánságlista keresése" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Nicotine+ verzió %s" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Python %(py_version)s használata" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Nicotine+ verzió %s" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Nicotine+ verzió %s" #~ msgid "User:" #~ msgstr "Felhasználó:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Összes %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s fájl " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Pontos kifejezést használjon a szűrőkhöz" #, fuzzy #~ msgid "Quit…" #~ msgstr "Kilépés" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Előző elsődleges lap megtekintése indításkor" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Szűrők engedélyezése alapértelmezettként" #~ msgid "Close Nicotine+?" #~ msgstr "Kilép a Nicotine+-ból?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Most már készen áll a Nicotine+ használatára!" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Fut a háttérben" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online-figyelmeztetés" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Prioritize User" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Megbízható" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "User IP-címének mellőzése" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "User IP-címének mellőzése" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Írja be a felhasználót, akinek az IP-címét le szeretné kérni:" #~ msgid "Downloaded" #~ msgstr "Letöltve" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Nem sikerült hozzáadni a letöltést %(filename)s a megosztott fájlokhoz: " #~ "%(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Letöltések automatikus megosztása" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "A letöltési mappa nyilvános megosztásként való hozzáadásának megfelelője, " #~ "azonban az ebbe a mappába letöltött fájlok automatikusan elérhetővé " #~ "válnak mások számára (nincs szükség újbóli szkennelésre)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Nem lehet megosztani a mappát" #~ msgid "The chosen virtual name is empty" #~ msgstr "A választott virtuális név üres" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "A kiválasztott virtuális név már létezik" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "A választott virtuális mappa már meg van osztva" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Virtuális név" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Írja be a %(dir)s mappa virtuális nevét:" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "A kiválasztott virtuális név vagy üres, vagy már létezik." #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "A választott virtuális mappa már meg van osztva" #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "Tulajdonságok" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Aktualizálás elindult" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Beépülők" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Hiba az %(path)s beolvasásakor: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "_Naplóablak mutatása" #~ msgid "Addresses" #~ msgstr "Címek" #~ msgid "Handler" #~ msgstr "Kezelő" #~ msgid "Could not enable plugin." #~ msgstr "Nem lehet engedélyezni beépülőt." #~ msgid "Could not disable plugin." #~ msgstr "Nem lehet letiltani beépülőt." #~ msgid "Transfers" #~ msgstr "Átvitelek" #~ msgid "Ban List" #~ msgstr "Kitiltottak listája" #~ msgid "Ignore List" #~ msgstr "Mellőzöttek listája" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Cenzúra és csere" #~ msgid "Completion" #~ msgstr "Kiegészítés" #~ msgid "Categories" #~ msgstr "Kategóriák" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Mappa feltöltése…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Mappa rekurzív feltöltése ide..." #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "_Rekurzív letöltés" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "_Rekurzív letöltés" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Fájl(ok) _feltöltése" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Hiba a '%(folder)s' mappa megjelenítésének kísérlete közben, jelentett " #~ "hiba: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Válassza ki a felhasználói almappákat tartalmazó mappa letöltési célját" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Válassza ki a Mappa felhasználótól történő letöltésének célját" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Válassza ki a Fájl(ok) felhasználótól történő letöltésének célját" #~ msgid "Wishes" #~ msgstr "Kívánságok" #, fuzzy #~ msgid "privileged" #~ msgstr "(elsőbbségi)" #, fuzzy #~ msgid "prioritized" #~ msgstr "prioritást kapott" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blokkolt IP-címek:" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Barátok nevének kiegészítése" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Felhasználónevek kiegészítése a chatszobákban" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Szobanevek kiegészítése a chatszobákban" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Legördülő lista" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Fájlkezelő parancs ($ mappaútvonalhoz):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Zenelejátszó Parancs ($ fájlnévhez):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "IP-cím mellőzése..." #~ msgid "Display timestamps" #~ msgstr "Időbélyegek megjelenítése" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Értesítési felugró ablakok" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Értesítési felugró ablak megjelenítése, ha egy fájl letöltése befejeződött" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Értesítési felugró ablak megjelenítése, ha egy mappa letöltése " #~ "befejeződött" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Értesítési felugró ablak megjelenítése, amikor privát üzenetet kap" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Értesítési felugró ablak megjelenítése, amikor valaki üzenetet küld egy " #~ "chatszobában" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Értesítési felugró ablak megjelenítése, amikor egy chatszobában " #~ "megemlítenek téged" #, fuzzy #~ msgid "Tray" #~ msgstr "Tálca" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "A $ jelet felváltja egy hivatkozás, melyet a kezelők cserélnek ki az URL-" #~ "el, hogy azt felhasználja a rendszer alapértelmezett webböngészője.\n" #~ "Protokoll kezelők: " #~ msgid "Handler:" #~ msgstr "Kezelő:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Elsődleges lapok" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "A fájl elérési útvonalára vonatkozó tooltipek engedélyezése a keresési és " #~ "átviteli nézetekben" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Megjeleníti a keresési találat vagy a fájlátvitel teljes fájlútvonalát, " #~ "amikor a kurzorral a mappaútvonal vagy a fájlnév fölé mozgatja a kurzort." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Magánszemélyek által megosztott fájlok megjelenítése a felhasználói " #~ "megosztásokban" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Más kliensek a megosztások böngészésekor lehetőséget kínálnak a privát " #~ "megosztott fájlok elküldésére. Az ilyen fájlokat tartalmazó mappák " #~ "előtagja \"[PRIVÁT MAPÍROK]\", és csak akkor tölthetők le, ha a feltöltő " #~ "erre kifejezett engedélyt ad." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Cenzúra és csere" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Show _Debug Log Controls (Hibajavító napló vezérlők)" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Naplózás" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtuális név" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Virtuális név" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Könyvtár-URL másolása" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Letöltés _ide..." #~ msgid "Download" #~ msgstr "Letöltés" #~ msgid "Upload" #~ msgstr "Feltöltés" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Mappa tartalmának feltöltése" #~ msgid "Rename" #~ msgstr "Átnevezés" #, fuzzy #~ msgid "File Lists" #~ msgstr "Fájltípusok" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Fájl elérési útvonalának másolása" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Egy álnév eltávolítása" #~ msgid "About _Nicotine+" #~ msgstr "_Névjegy" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Úgy tűnik, '%s' nem egy mappa, nincs betöltve beépülő." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Barát-_megosztás frissítése" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Aktualizálás elindult" #, fuzzy #~ msgid "User Browse" #~ msgstr "User _tallózása" #, fuzzy #~ msgid "No description provided" #~ msgstr "Leírás: " #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Partnere, %s megpróbált fájl(oka)t küldeni Önnek." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s nem engedte meg Önnek a fájlküldést, de megkísérelte. Figyelmeztetés " #~ "elküldve." #~ msgid "Client Version" #~ msgstr "Kliens verzió" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Hány nap elsőbbséget ad ennek a felhasználónak?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Barátok nagyobb prioritást élveznek várakozásban, mint az összes " #~ "elsőbbségi user" #~ msgid "Privileged" #~ msgstr "Elsőbbségi" #~ msgid "_Privileged" #~ msgstr "_Elsőbbségi" #~ msgid "Comments" #~ msgstr "Megjegyzések" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "_Megjegyzések szerkesztése" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Az átviteli sebesség attól a felhasználótól függ, akitől a letöltés " #~ "folyik. Némelyek sebessége gyorsabb, másoké lassabb." #, fuzzy #~ msgid "Login Details" #~ msgstr "Bejelentkezés Részletek" #, fuzzy #~ msgid "Advanced" #~ msgstr "Haladó" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "A port leképezés megújítási időintervallum órákban:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "„Csak Barátoknak“ megosztás engedélyezése" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "A fájlok abban a sorrendben lesznek elküldve, ahogy várakoztak" #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Aktualizálás elindult" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Publikus megosztás _frissítése" #~ msgid "Scanning Buddy Shares" #~ msgstr "Aktualizálás elindult" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "Publikus megosztás _frissítése" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Barát-_megosztás frissítése" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Publikus megosztás _frissítése" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Barát-_megosztás frissítése" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Engedélyezi a privát megosztásokat, amelyekhez csak a haverlistán " #~ "szereplő felhasználók férhetnek hozzá. Ha letiltja, a felhasználók csak a " #~ "nyilvános megosztásokhoz férhetnek hozzá." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Jelölje meg az egyes megosztott mappákat csak barátoknak" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Felülírja a megosztásonkénti opciót, hasznos, ha ideiglenesen meg kell " #~ "akadályoznia a megosztások nyilvános elérését." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Csak a haverlistán megbízhatónak jelölt felhasználók férhetnek hozzá a " #~ "csak haveroknak fenntartott megosztásokhoz." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Kiszűrt kizárt keresési eredmény " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Kiszűrte a pontatlan vagy helytelen keresési eredményt " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "A(z) '%(name)s' nevű tárolt beállítás már nincs a beépülőben" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "A(z) %(module)s beépülő furcsa eredményt adott, '%(value)s', mellőzve" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Inkonzisztens gyorsítótár '%(vdir)s' számára, '%(dir)s' újraépítése" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Hiányzó mappa elhagyása %(dir)s" #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "A Nicotine+ lehetővé teszi a mappák megosztását közvetlenül a " #~ "számítógépéről. Ezeknek a mappáknak az összes tartalma (a dotfiles " #~ "kivételével) letölthető a Soulseek hálózat más felhasználói számára. A " #~ "nyilvános megosztások minden felhasználó számára elérhetők, míg a " #~ "haverlistán szereplő felhasználók a nyilvános megosztások mellett a csak " #~ "haveroknak szóló megosztásokhoz is hozzáférhetnek." #, fuzzy, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "A %(room)s összes futó / fali üzenete:" #~ msgid "Set your personal ticker" #~ msgstr "Személyes futószöveg beállítása" #~ msgid "Show all the tickers" #~ msgstr "Összes futószöveg mutatása" #, fuzzy #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Nem sikerült beolvasni a megosztásokat. Ha a Nicotine+ jelenleg is fut, " #~ "kérjük, zárja be a programot a beolvasás előtt." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Tényleg ki szeretne lépni a Nicotine+-ból?" #, fuzzy #~ msgid "Receive a User's IP Address" #~ msgstr "User IP-címének b_lokkolása" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Userinfó kikeresése" #, fuzzy #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "A szerver megtiltotta, hogy kívánságlistás kereséseket végezzünk." #, fuzzy, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "A megosztások adatbázisa sérült. Kérjük, vizsgálja át újra a " #~ "megosztásokat, és jelentse az esetleges beolvasási problémákat a " #~ "fejlesztőknek. Hiba: %s" #, fuzzy #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Kérjük, ne feledje, hogy bizonyos felhasználónevek foglaltak lehetnek. Ha " #~ "ez a helyzet, a hálózathoz való csatlakozáskor a rendszer felszólítja " #~ "Önt, hogy változtassa meg a felhasználónevét." #, fuzzy #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "Írja be a privát szoba nevét, amit létre akar hozni" #~ msgid "Add user 'user' to your user list" #~ msgstr "'User' user hozzáadása a barátlistához" #~ msgid "Remove user 'user' from your user list" #~ msgstr "'User' user eltávolítása a barátlistáról" #~ msgid "Request user info for user 'user'" #~ msgstr "'User' userinfójának lekérése" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "'User' user hozzáadása a barátlistához" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "'User' user eltávolítása a barátlistáról" #, fuzzy #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Válaszoljon a minimális karakterszámot tartalmazó keresési kérelmekre:" #, fuzzy #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "A sorban álló felhasználóknak ciklikusan, egyenként egy-egy fájlt kell " #~ "feltölteniük." #, fuzzy #~ msgid "" #~ "Could not execute now playing code. Are you sure you picked the right " #~ "player?" #~ msgstr "" #~ "HIBA: 'Épp hallgatva' kódja nem futtatható. Biztos, hogy a helyes " #~ "lejátszót választotta?" #, fuzzy #~ msgid "/ignore" #~ msgstr "Mellőz" #, fuzzy #~ msgid "/unignore" #~ msgstr "Mellőz" #~ msgid "Cannot find the pynicotine.utils module." #~ msgstr "A pynicotine.utils modul nem található." #~ msgid "Errors occured while trying to change process name:" #~ msgstr "Hiba történt a művelet nevének megváltoztatása közben:" #, c-format #~ msgid "Starting using the profiler (saving dump to %s)" #~ msgstr "A profilozó használat indítása (mentés ide: %s)" #, python-format #~ msgid "Something went wrong while opening your transfer list: %(error)s" #~ msgstr "Hiba történt az átviteli lista megnyitásakor: %(error)s" #, python-format #~ msgid "Something went wrong while writing your transfer list: %(error)s" #~ msgstr "Hiba történt az átviteli lista írásakor: %(error)s" #, python-format #~ msgid "Can't save config file, I/O error: %s" #~ msgstr "Nem lehetett elmenteni a konfigurációs fájlokat, I/O-hiba: %s" #, python-format #~ msgid "Can't remove %s" #~ msgstr "Nem lehet eltávolítani: %s" #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "Nem lehetett archiválni a konfigurációs file-okat, hiba: %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Nem lehet átnevezni a konfigurációs fájlt, hiba: %s" #, python-format #~ msgid "ERROR: MPRIS: failed to load dbus module: %(error)s" #~ msgstr "HIBA: MPRIS: DBus modul betöltése sikertelen: %(error)s" #, python-format #~ msgid "Unable to enable plugin %s" #~ msgstr "Nem lehet engedélyezni %s beépülőt" #~ msgid "Disabled plugin {}" #~ msgstr "Letiltott beépülő {}" #, python-format #~ msgid "Unable to fully disable plugin %s" #~ msgstr "Nem lehet teljesen letiltani %s beépülőt" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Kapcsolat bezárult a peer által: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "A szerver tizedszerre 0 portot jelentett a(z) %(user)s usernek, feladva" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "A szerver \"nem-zéró\" portot jelentett %(user)s usernek %(tries)i " #~ "ismétlés után" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "A szerver 0 portot jelentett %(user)s usernek, újrapróbálás" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Nem lehet bejelentkezni, az oka: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Valaki más is bejelentkezett ugyanazzal a nicknévvel, ezért a szerver " #~ "szétkapcsol" #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "Az %(ip)s:%(port)s IP becsapós, %(user)s user peer kérést indított, de le " #~ "lett tiltva, mert nem egyezett az igazi %(real_ip)s IP-jével." #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s blokkolva az userinfó lekéréséről, lehetséges becsapási kísérlet " #~ "miatt: IP %(ip)s port %(port)s" #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "%s blokkolva az userinfó lekéréséről, lehetséges becsapási kísérlet miatt " #~ "ismeretlen IP-ről & portról" #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "%(user)s kitiltva, de userinfót lekér" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s lekéri az Ön megosztását, lehetséges becsapási kísérlet " #~ "blokkolva: IP %(ip)s port %(port)s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s lekéri az Ön megosztását, lehetséges becsapási kísérlet " #~ "blokkolva ismeretlen IP-ről & portról" #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s lekéri az Ön megosztását" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Ismeretlen kapott üzenet: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Megosztott fájlok adatbázisa megsérülhetett, aktualizálom a megosztását" #, python-format #~ msgid "" #~ "Found meta data that couldn't be encoded, possible corrupt file: " #~ "'%(file)s' has a bitrate of %(bitrate)s kbs, a length of %(length)s " #~ "seconds and a VBR of %(vbr)s" #~ msgstr "" #~ "Metaadat található, mely nem alakítható át, valószínűleg sérült: " #~ "'%(file)s', bitrátája %(bitrate)s, hossza %(length)s mp, és %(vbr)s VBR-" #~ "je van." #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Üres üzenet jött létre, %s osztály" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "A bejövő üzenetet nem lehet elemezni, %s osztály" #, python-format #~ msgid "Exception during parsing %(area)s: %(exception)s" #~ msgstr "Kivétel %(area)s elemzése közben: %(exception)s" #~ msgid "Could not bind to a local port, aborting connection" #~ msgstr "Nem lehet helyi porthoz kötni, kapcsolat megszakítva" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Nem lehet kezelni a csatlakozás típusát %s" #, python-format #~ msgid "Error packaging message: %(type)s %(msg_obj)s, %(error)s" #~ msgstr "Csomagolási hibaüzenet: %(type)s %(msg_obj)s, %(error)s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Nem lehet üzenetet küldeni bezárt kapcsolat felé: %(type)s %(msg_obj)s" #, python-format #~ msgid "Major Socket Error: Networking terminated! %s" #~ msgstr "Socket Hiba: Hálózat leállítva! %s" #, python-format #~ msgid "Ignoring connection request from blocked IP Address %(ip)s:%(port)s" #~ msgstr "" #~ "A blokkolt IP-cím ( %(ip)s:%(port)s ) csatlakozási kérésének mellőzése" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Szűrés: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "Hibás letöltés újrapróbálása: %(user)s user, %(file)s fájl" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "" #~ "Átviteli kérést kapott: %s, de nem lehet megállapítani a lekérés forrását" #, python-format #~ msgid "Denied file request: User %(user)s, %(msg)s" #~ msgstr "Tiltott fájl lekérés: %(user)s felhasználó, %(msg)s" #, python-format #~ msgid "Upload request: %(req)s Response: %(resp)s" #~ msgstr "Feltöltési kérelem: %(req)s, válasz: %(resp)s" #, python-format #~ msgid "Queued upload request: User %(user)s, %(msg)s" #~ msgstr "Várakozó feltöltési kérelem: %(user)s felhasználó, %(msg)s" #~ msgid "[Automatic Message] " #~ msgstr "[Automatikus Üzenet] " #~ msgid "You are not allowed to send me files." #~ msgstr "Nem engedélyezte a fájlküldést." #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Ismeretlen átviteli választ kapott: %s" #, python-format #~ msgid "Download started: %s" #~ msgstr "Letöltés elindult: %s" #, python-format #~ msgid "" #~ "Download error formally known as 'Unknown file request': %(req)s " #~ "(%(user)s: %(file)s)" #~ msgstr "" #~ "Letöltési hiba, hivatalosan mint 'Ismeretlen fájlkérés': %(req)s, " #~ "(%(user)s: %(file)s)" #, python-format #~ msgid "" #~ "Upload error formally known as 'Unknown file request': %(req)s (%(user)s: " #~ "%(file)s)" #~ msgstr "" #~ "Feltöltési hiba, hivatalosan mint 'Ismeretlen fájlkérés': %(req)s, " #~ "(%(user)s: %(file)s)" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Letöltés befejeződött: %(file)s" #~ msgid "(friend)" #~ msgstr "(partner)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Feltöltés befejezve: %(user)s user, %(file)s fájl" #, python-format #~ msgid "Banned (%s)" #~ msgstr "Kitiltva (%s)" #~ msgid "Join Public Room" #~ msgstr "Publikus Szobába Belépés" #, python-format #~ msgid "" #~ "I remember the room %(room)s being owned by %(previous)s, but the server " #~ "says its owned by %(new)s." #~ msgstr "" #~ "Úgy rémlik, a %(room)s szoba a(z) %(previous)s tulajdonában volt, de a " #~ "szerver szerint a(z) %(new)s tulajdonában van." #, python-format #~ msgid "" #~ "I remember the room %(room)s being owned by %(old)s, but the server says " #~ "that's not true." #~ msgstr "" #~ "Úgy rémlik, a(z) %(room)s szoba a(z) %(old)s tulajdona, de a szerver " #~ "szerint nem így van." #~ msgid "Get user i_nfo" #~ msgstr "User_infó lekérése" #~ msgid "_Add user to list" #~ msgstr "Usert hozzá_ad listára" #~ msgid "_Ban this user" #~ msgstr "User _kitiltása" #~ msgid "_Ignore this user" #~ msgstr "User _mellőzése" #~ msgid "Clear finished/aborted" #~ msgstr "Letöltöttek/megszakított tisztítása" #~ msgid "Clear aborted" #~ msgstr "Megszakított tisztítása" #~ msgid "Clear queued" #~ msgstr "Várakozó tisztítása" #~ msgid "Abor_t" #~ msgstr "Megszakí_t" #~ msgid "Virtual Directory" #~ msgstr "Virtuális mappa" #~ msgid "Directory" #~ msgstr "Mappa" #~ msgid "Dirs" #~ msgstr "Mappák" #~ msgid "Counting files..." #~ msgstr "Fájlok számolása..." #~ msgid "Warning" #~ msgstr "Figyelmeztetés" #, python-format #~ msgid "%(current)s/%(limit)s Connections" #~ msgstr "%(current)s/%(limit)s kapcsolat" #~ msgid "Search files" #~ msgstr "Fájlok keresése" #~ msgid "User info" #~ msgstr "Felhasználói infó" #~ msgid "Private chat" #~ msgstr "Privát chat" #~ msgid "Chat rooms" #~ msgstr "Chatszobák" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "%(tab)s elrejtése" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Aktualizálás elindult" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Barátmegosztás aktualizálása befejeződött" #~ msgid "Rescanning finished" #~ msgstr "Aktualizálás befejeződött" #~ msgid "Send to tray" #~ msgstr "Küldés a tálcára" #~ msgid "I like" #~ msgstr "Tetszik" #~ msgid "I _don't like this" #~ msgstr "Ezt _nem szeretem" #~ msgid "Ban this user" #~ msgstr "User kitiltása" #~ msgid "Ignore this user" #~ msgstr "User mellőzése" #~ msgid "In queue" #~ msgstr "Várakozásban" #, python-format #~ msgid "Client port is %(port)s" #~ msgstr "Kliens port: %(port)s" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Az Ön IP-címét nem lehet megszerezni a szerverről" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Az IP-címe: %(ip)s" #~ msgid "Warning: Bad Username" #~ msgstr "Figyelem: Rossz felhasználónév" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "Senki (None) felhasználónév nem jó, válasszon másikat." #~ msgid "Warning: Invalid ports" #~ msgstr "Figyelem: Érvénytelen portok" #~ msgid "Client ports are invalid." #~ msgstr "Kliens portok érvénytelenek." #~ msgid "Users in list" #~ msgstr "User a listában" #, python-format #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "Biztonsági veszély: Nem kellene megosztania a(z) %s könyvtárat!" #~ msgid "Add a shared buddy directory" #~ msgstr "Megosztott barát-mappa hozzáadása" #~ msgid "Ignore user..." #~ msgstr "User mellőzése..." #~ msgid "IP:" #~ msgstr "IP:" #~ msgid "Ban user..." #~ msgstr "User kitiltása..." #~ msgid "Pick a color, any color" #~ msgstr "Válasszon bármilyen színt" #~ msgid "Server" #~ msgstr "Szerver" #~ msgid "Geo Block" #~ msgstr "Geo tiltás" #~ msgid "Colors" #~ msgstr "Színek" #~ msgid "Notebook Tabs" #~ msgstr "Notebook lapfülek" #~ msgid "URL Catching" #~ msgstr "URL Átadás" #~ msgid "Requesting file" #~ msgstr "File kérése" #~ msgid "Initializing transfer" #~ msgstr "Átvitel inicializálása" #~ msgid "Waiting for peer to connect" #~ msgstr "Várakozás a peer-re a csatlakozáshoz" #~ msgid "Connecting" #~ msgstr "Csatlakozás" #~ msgid "Getting address" #~ msgstr "Cím lekérése" #~ msgid "Lookup a User's IP" #~ msgstr "User IP-jének kikeresése" #, python-format #~ msgid "ERROR: tray menu, %(error)s" #~ msgstr "HIBA: tálca menü, %(error)s" #, python-format #~ msgid "ERROR: cannot set trayicon image: %(error)s" #~ msgstr "HIBA: nem lehet tálcaikonképet beállítani: %(error)s" #~ msgid "Clear finished/erred" #~ msgstr "Befejezettek/hibásak törlése" #~ msgid "Clear failed" #~ msgstr "Hibásak törlése" #~ msgid "Directories" #~ msgstr "Mappák" #~ msgid "Download r_ecursive to..." #~ msgstr "R_ekurzív letöltés ide..." #~ msgid "Upload Directory to..." #~ msgstr "Mappa feltöltése ide..." #, python-format #~ msgid "Speed: %s" #~ msgstr "Sebesség: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Fájlok: %s" #~ msgid "Hates" #~ msgstr "Nem tetszik" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Összes feltöltés engedélyezve: %i" #, python-format #~ msgid "Queue size: %i" #~ msgstr "Várakozási méret: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Szabad szálak: %s" #, python-format #~ msgid "%s" #~ msgstr "%s" #, python-format #~ msgid "Unknown (%(countrycode)s)" #~ msgstr "Ismeretlen (%(countrycode)s)" #, python-format #~ msgid "to %(user)s" #~ msgstr "neki: %(user)s" #, python-format #~ msgid "UPnP exception: %(error)s" #~ msgstr "UPnP kivétel: %(error)s" #~ msgid "Failed to automate the creation of UPnP Port Mapping rule." #~ msgstr "" #~ "Nem sikerült automatizálni az UPnP port-hozzárendelési szabály " #~ "létrehozását." #~ msgid "Log" #~ msgstr "Napló" #~ msgid "Share the following directories:" #~ msgstr "Az alábbi könyvtárak megosztása:" #~ msgid "Clear Queued" #~ msgstr "Várakozók kitörlése" #~ msgid "Clear all searches attempts" #~ msgstr "Minden keresési kísérlet törlése" #~ msgid "Configure user info" #~ msgstr "Felhasználói infó beállítása" #~ msgid "Debug output:" #~ msgstr "Hibakeresés kimenete:" #~ msgid "Warnings" #~ msgstr "Figyelmeztetések" #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Privát üzenet közvetlen küldése az usernek (legtöbb kliens nem támogatja)" #~ msgid "Stop new search results from being displayed" #~ msgstr "Új keresési eredmények megjelenítésének megakadályozása" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Összes feltöltés megengedve: ismeretlen" #~ msgid "Slots free: unknown" #~ msgstr "Szabad szálak: ismeretlen" #~ msgid "Queue size: unknown" #~ msgstr "Várakozási méret: ismeretlen" #~ msgid "Speed: unknown" #~ msgstr "Sebesség: ismeretlen" #~ msgid "Files: unknown" #~ msgstr "Fájlok: ismeretlen" #~ msgid "Directories: unknown" #~ msgstr "Könyvtárak: ismeretlen" #~ msgid "Accepts Uploads from:" #~ msgstr "Feltöltés elfogadása:" #~ msgid "Add..." #~ msgstr "Hozzáad..." #~ msgid "About chat room commands" #~ msgstr "A chatszoba parancsokról" #~ msgid "Leave room 'room'" #~ msgstr "Kilépés a szobából" #~ msgid "Toggle plugin on/off state" #~ msgstr "Beépülő be/kikapcsolása" #~ msgid "About search filters" #~ msgstr "Keresési szűrőkről" #~ msgid "_Fast Configure" #~ msgstr "_Gyorsbeállítás" #~ msgid "Show _room list" #~ msgstr "_Szobalista mutatása" #~ msgid "Show _flag columns in user lists" #~ msgstr "_Zászló oszlop mutatása a felhasználói listában" #~ msgid "_Modes" #~ msgstr "_Módok" #~ msgid "_Private Chat" #~ msgstr "_Privát chat" #~ msgid "Buddy _List" #~ msgstr "Barát_lista" #~ msgid "_Chat Rooms" #~ msgstr "_Chatszobák" #~ msgid "_Interests" #~ msgstr "_Érdeklődési kör" #~ msgid "About _chat room commands" #~ msgstr "A _chatszoba parancsairól" #~ msgid "About _private chat commands" #~ msgstr "A _privát chat parancsairól" #~ msgid "About _search filters" #~ msgstr "A keresési _szűrőkről" #~ msgid "Toggle away after " #~ msgstr "Kapcsoljon be a Távollét " #~ msgid "Enable Censorship" #~ msgstr "Cenzúra engedélyezése" #~ msgid "Username Font Style:" #~ msgstr "Felhasználónév betűtípus:" #~ msgid "Username Colors and Hotspots" #~ msgstr "Felhasználónév színek és hotspotok" #~ msgid "Display away colors" #~ msgstr "Távolléti színek kijelzése" #~ msgid "Default Colors" #~ msgstr "Alapértelmezett színek" #~ msgid "Cycle completions instead of showing a dropdown" #~ msgstr "Ciklus kiegészítés legördülőmenü mutatása helyett" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Bejövő fájlok zárolása (NFS-nél kapcsolja ki)" #~ msgid "Download SFV/MD5 before anything else" #~ msgstr "SFV/MD5 letöltése bármi más előtt" #~ msgid "" #~ "The users will be able to send you files. These files will be downloaded " #~ "into the Buddy Uploads subdirectory in your Download directory" #~ msgstr "" #~ "A felhasználók képesek lesznek Önnek fájlokat küldeni. Ezek a fájlok a " #~ "Barátok feltöltései almappába lesznek letöltve a letöltési mappában" #~ msgid "Upload transfers" #~ msgstr "Feltöltési átvitelek" #~ msgid "Send to player" #~ msgstr "Küldés a lejátszóba" #~ msgid "Open Directory" #~ msgstr "Könyvtár megnyitása" #~ msgid "Decimal separator:" #~ msgstr "Tizedesvessző elválasztó:" #~ msgid "Enable geographical blocker" #~ msgstr "Országkód-tiltás engedélyezése" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "\"Földrajzi paranoia\" (Blokkolja a feloldhatatlan IP-ket)" #~ msgid "Always send Nicotine+ to tray when main window is closed" #~ msgstr "Mindig küldje a Nicotine+-t tálcára a főablak bezárásakor" #~ msgid "Always quit when main window is closed" #~ msgstr "Mindig kilép a főablak bezárásakor" #~ msgid "Trayicon" #~ msgstr "Tálcaikon" #~ msgid "Online:" #~ msgstr "Elérhető:" #~ msgid "Away:" #~ msgstr "Távollét:" #~ msgid "Offline:" #~ msgstr "Nem elérhető:" #~ msgid "Nick Hilite:" #~ msgstr "Becenév kiemelés:" #~ msgid "Hilite:" #~ msgstr "Kiemelés:" #~ msgid "Status" #~ msgstr "Állapot" #~ msgid "Notify:" #~ msgstr "Értesítés:" #~ msgid "Ignored IPs:" #~ msgstr "Mellőzött IP-k:" #~ msgid "Private Chat Logs directory:" #~ msgstr "Privát chat naplók mappája:" #~ msgid "Read" #~ msgstr "Olvas" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Utolsó privát üzenetek megnyitása" #~ msgid "Main" #~ msgstr "Fő" #~ msgid "Label Angle:" #~ msgstr "Címke szöge:" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "MPRIS (v2)" #~ msgstr "MPRIS (v2)" #~ msgid "Player Command/Username" #~ msgstr "Lejátszó parancs/usernév" #~ msgid "Legend:" #~ msgstr "Magyarázat:" #~ msgid "Example:" #~ msgstr "Példa:" #~ msgid "Send out a max of" #~ msgstr "Maximális kiküldés" #~ msgid "Max stored results per search:" #~ msgstr "Max tárolt találat keresésenként:" #~ msgid "Filter out:" #~ msgstr "Szűrés ki:" #~ msgid "Filter in:" #~ msgstr "Szűrés be:" #~ msgid "Public Shares" #~ msgstr "Publikus megosztások" #~ msgid "" #~ "If buddy shares are enabled, they will be shared. Otherwise normal shares " #~ "will be used." #~ msgstr "" #~ "Ha a barátmegosztás engedélyezve van, nekik oszt meg fájlokat. Egyébként " #~ "a normál megosztás lesz használva." #~ msgid "Buddies-Only Shares" #~ msgstr "Megosztás csak barátoknak" #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "" #~ "Az usereknek küldenek egy fájlt, és utána egy másik user lesz kijelölve" #~ msgid "KBytes/sec" #~ msgstr "kB/s" #~ msgid "Megabytes" #~ msgstr "MB-ot várakoztathat" #~ msgid "Enable URL catching" #~ msgstr "URL Átadás engedélyezése" #~ msgid "Humanize slsk:// urls" #~ msgstr "Az slsk:// hivatkozások kezelése" #~ msgid "Image:" #~ msgstr "Kép:" #~ msgid "Use the first available port in the range from " #~ msgstr "Az első elérhető portot használja ettől: " #~ msgid "Download to the following directory:" #~ msgstr "Letöltés az alábbi könyvtárba:" #~ msgid "Use the first available listening port from the following range:" #~ msgstr "Használja az első elérhető portot az alábbi tartományból:" #~ msgid "Failed to find a suitable external WAN port, bailing out." #~ msgstr "Nem sikerült megtalálni a megfelelő külső WAN-portot, kilépés." nicotine-plus-3.3.4/po/it.po000066400000000000000000007135471461625273200157350ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Client per Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Client grafico per la rete peer-to-peer Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;condivisione;chat;messaggi;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Client grafico per la rete Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ è un client grafico per la rete peer-to-peer Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ si propone di essere un'alternativa leggera, piacevole, gratuita e " "open source (FOSS) al client ufficiale di Soulseek, offrendo anche un " "insieme completo di funzionalità." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Cerca File" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Download" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Sfoglia Condivisi" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Chat Privata" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Squadra di Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Sito web: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "mostra questo messaggio di aiuto ed esci" #: pynicotine/__init__.py:59 msgid "file" msgstr "file" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "usa file non predefinito di configurazione" #: pynicotine/__init__.py:63 msgid "dir" msgstr "cartella" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "cartella alternativa per i dati utente e le estensioni" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "avvia il programma senza mostrare la finestra" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "associa socket all'IP assegnato (comodo per le VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "porta" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "ascolta sulla porta assegnata" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "Indicizza file condivisi" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "avvia il programma in modalità headless (nessuna GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "mostra versione ed esci" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Stai usando una versione non supportata di Python (%(old_version)s).\n" "Dovresti installare Python %(min_version)s o più recente." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Impossibile eseguire la scansione dei condivisi. Chiudi altre istanze di " "Nicotine+ e riprova." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s è assente" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s è online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s è offline" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Stato amici" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Sei stato aggiunto alla chat privata: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Messaggio chat dall'utente '%(user)s' nel canale '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Impossibile creare la cartella '%(path)s', errore riportato: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Errore durante il backup della configurazione: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configurazione salvata in: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Caricamento %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Uscendo %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "terminazione" #: pynicotine/core.py:237 msgid "application closing" msgstr "chiusura applicazione" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Esci da %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Devi specificare un nome utente ed una password prima di connetterti…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Errore: Filtro Download fallito! Verifica i tuoi filtri: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Errore: %(num)d Download filtri rotto %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s ricevuto da %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "File scaricato" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Eseguito: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Esecuzione fallita di '%(command)s': %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s scaricato da %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Cartella scaricata" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Eseguito sulla cartella: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Impossibile spostare '%(tempfile)s' in '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Errore download cartella" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Download completato: utente %(user)s, file %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Download interrotto: utente %(user)s, file %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Errore I/O in download: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Impossibile ottenere lock l'esclusiva su file - errore di I/O: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Impossibile salvare il file in %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Download iniziato: utente %(user)s, file %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Impossibile trovare %s, installalo." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Nessun ambiente grafico disponibile, verrà utilizzata la modalità headless " "(senza GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Connetti" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Disconnetti" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Privilegi Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferenze" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Esci" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Sfoglia _Condivisioni Pubbliche" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Sfoglia _Condividi Buddy" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Sfoglia _Condivisioni Affidabili" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "Indicizza Condivisi" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Configura _Condividi" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Scorciatoie tastiera" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "Configurazione Guidata" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Statistiche trasferimento" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Segnala un _Bug" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Migliora _Traduzioni" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "Informazioni su Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_File" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "Condivi_si" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "Aiuto" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Sfoglia Condividi" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Impossibile mostrare notifica: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Stai ancora caricando file. Sei sicuro di voler uscire?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Attendere che i carichi finiscano" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Vuoi davvero uscire?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_No" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "Esegui in Backg_round" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Esci da Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Condivisioni Non Disponibili" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Verifica che i dischi esterni siano montati e che i permessi delle cartelle " "siano corretti." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "Annulla" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Riprova" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Forza Indicizzazione" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Password Errata" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "L'utente %s esiste già e la password inserita non è valida. Scegli un altro " "nome utente se è la prima volta che accedi." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Cambia Dettagli Accesso" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Messaggia Gli Utenti Che Stanno Scaricando" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Invia un messaggio privato a tutti gli utenti che stanno scaricando da te:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Invia Messaggio" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Messaggia Amici" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Invia un messaggio privato a tutti gli amici online:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Seleziona un File Salvato di Lista Condivisi" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Errore Critico" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ ha riscontrato un errore critico e deve uscire. Copia il seguente " "messaggio e includerlo in una segnalazione di errore:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "Esci da Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copia e Segnala Errore" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Stato" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Paese" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Utente" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Velocità" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "File" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Fidato" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notifica" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Priorità" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Ultima Visita" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Nota" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Aggiungi _Nota Utente…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Rimuovi" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Mai visitato" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Aggiungi Nota Utente" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Aggiungi nota associata all'utente %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Aggiungi" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Creare Nuovo Canale?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Sei sicuro di voler creare un nuovo canale \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Rendi canale privato" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Cerca File dell'Utente" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Cerca…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copia" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copia Tutti" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Pulisci Vista Attività" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Abbandona stanza" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copia Link" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Mostra Registro Canale" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Elimina Registro Canale…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Pulisci Vista Messaggio" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s è entrato nel canale" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s ti ha menzionato nella stanza %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Menzionato da %(user)s nella stanza %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Messaggio di %(user)s nella Stanza %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s lascia il canale" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s è andato via" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s è tornato" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Eliminare i Messaggi Registrati?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Sei sicuro di voler eliminare definitivamente tutti i messaggi registrati " "per questo canale?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Riguardo al programma" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Sito web" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Errore durante il controllo dell'ultima versione: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Nuova versione disponibile: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Aggiornato" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Controlla ultima versione…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Configurazione Guidata" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Cartella Virtuale" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Cartella" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "Completato" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "Successivo" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Aggiungi una Cartella Condivisa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Modifica Cartella Condivisa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Inserisci nuovo nome per virtuale per '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Modifica" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Proprietà File" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Proprietà File (%(num)i di %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Proprietà File (%(num)i di %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Applica" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Aggiungi…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Modifica…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "Impostazioni %s" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Aggiungi elemento" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Modifica elemento" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Sconosciuto" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Controlla Stato Porta" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, porta %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Cambio Password Respinto" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Inserisci una nuova password per il tuo account Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Sei attualmente disconnesso dalla rete Soulseek. Se vuoi cambiare la " "password di un account Soulseek esistente, devi prima accedere all'account " "in questione." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Inserisci la password da utilizzare per l'accesso:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Cambia Password" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Cambia" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Nessuno" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Tutti" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amici" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Amici fidati" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Niente" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Apri File" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Apri nel Gestore dei File" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Ricerca" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausa" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Riprendi" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Sfogliare la cartella" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintassi: senza distinzione tra maiuscole e minuscole. Se abilitato, " "possono essere utilizzate le espressioni regolari Python, altrimenti sono " "supportate solo le corrispondenze con caratteri jolly *." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtro" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Aggiungi Filtro di Download" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Inserisci un nuovo filtro download:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Abilita le espressioni regolari" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Modifica Filtro di Upload" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modifica il seguente filtro download:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Fallito! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtri Riusciti" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Pubblica" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Accessibile a" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Interrompi" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Riprova" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Primo dentro, primo fuori" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Nome utente" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Indirizzo IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignora Utente" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Inserisci il nome dell'utente che desideri ignorare:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignora Indirizzo IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Inserisci un indirizzo IP che desideri ignorare:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* è un carattere jolly" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Blocca Utente" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Inserisci il nome dell'utente che desideri bloccare:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Banna indirizzo IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Inserisci un indirizzo IP che desideri bloccare:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Formato dei codici" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Modello" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Sostituzione" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Modello di Censura" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Inserisci un modello che desideri censurare. Aggiungi spazi attorno alle " "parole se non desideri corrispondenze con stringhe interne alle parole: " "(potrebbe fallire all'inizio e alla fine delle linee)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Modifica corrispondenze censurate" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Aggiungi sostituzione" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Immetti un modello di testo e la sostituzione:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Modifica sostituzione" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Predefinito di sistema" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Mostra finestra di conferma" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Esegui in background" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "grassetto" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "corsivo" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "sottolineato" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normale" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Scheda Amici separata" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Barra laterale nella scheda delle Chat Room" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Barra laterale sempre visibile" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Sopra" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Sotto" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Sinistra" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Destra" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Connesso" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Assente" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Disconnesso" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Scheda Cambiata" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Evidenziazione Scheda" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Finestra" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Connesso (Icona)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Assente (Vassoio)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Disconnesso (Icona)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Messaggio (Vassoio)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocollo" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Aggiungi Gestore URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Immetti il protocollo e il comando per il gestore URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Modifica comando" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Inserisci un nuovo comando per il protocollo '%s':" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nome Utente;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Player musicale (ad es. Amarok, Audacious, Exaile); lascia vuoto per " "rilevarlo automaticamente:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Nome utente: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Comando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Titolo" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Sta Ascoltando (di solito \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Durata" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Commento" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Numero Traccia" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Anno" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nome file (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programma" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Attivo" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Estensione" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Nessuna Estensione Selezionata" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Rete" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interfaccia Utente" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Condivisi" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Upload" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Ricerche" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Profilo Utente" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Chat" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Sta Ascoltando" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Registro" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Utenti Bloccati" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Utenti Ignorati" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Estensioni" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Associazione URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferenze" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Scegli un Nome File per il Backup di Configurazione" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Statistiche trasferimento" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Totale Da %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Azzerare le Statistiche di Trasferimento?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Sei sicuro di voler azzerare le statistiche di trasferimento?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Lista desideri" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Desideri" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "Cerca Elemento" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Modifica Desiderio" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Inserisci nuovo valore per desiderio'%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Pulire la Lista dei Desideri?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Sei sicuro di voler pulire la tua lista dei desideri?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Percorso" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Riprendi" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_ausa" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Completati / Filtrati" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Completato" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "In Pausa" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrato" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Eliminato" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "In Coda…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Tutto…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Pulire Tutti i Download Accodati" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Sei sicuro di voler pulire tutti i download accodati?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Pulisci Tutti i Download" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Sei sicuro di voler pulire tutti i download?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Scaricare %(num)i file?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Sei sicuro di voler scaricare %(num)i file dalla cartella %(folder)s " "dell'utente %(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "Scarica Cartella" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Mi piace" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Non mi piace" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Valutazione" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Elemento" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Consigli per l' Elemento" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Mi Piace Questo" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Non Mi Piace Questo" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Consigliati" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Utenti Simili" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Consigliati (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Utenti Simili (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Messaggio Privato da %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Risultati Della Lista Dei Desideri Trovati" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Profili Utente" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Canali" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interessi" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Connessioni" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Messaggi" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Trasferimenti" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Varie" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Cerca…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Copia" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copia Tutto" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Visualizza i _Debug Logs" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Visualizza _Log di Trasferimento" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "Registro Categorie" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Pulisci Vista Registro" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Download: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Upload: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Preparazione dei Condividi" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Indicizzazione Condivisi" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Smettila..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Ultimo Messaggio" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Canale" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Utenti" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Entra nel Canale" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Abbandona Canale" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Abbandona Canale Privato" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Elimina Appartenenza a Canale" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Chiudere Tutte le Schede…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Chiudi Scheda" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Mostra Registro Chat" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Elimina Registro Chat…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Azioni Utente" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Sei sicuro di voler eliminare definitivamente tutti i messaggi registrati " "per questo utente?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Messaggi inviati mentre eri disconnesso" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Globale" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amici" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "Canali" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Utente" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "In Coda" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Tipo di File" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nome file" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Dimensione" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Qualità" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copia Percorso _File" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copia _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copia U_RL Cartella" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "Scarica File" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Scarica File In…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Scarica Cartella(e)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Scarica Cartella(e) In…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Vedi _Profilo Utente" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Sfoglia Cartella" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Proprietà F_ile" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copia Termine di Ricerca" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Pulisci Tutti i Risultati" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Rimuovi Filtri" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Ripristina Filtri" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVATO] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "Filtri _Risultato [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "Filtri _Risultato" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d filtro(i) attivo(i)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Aggiungi De_siderio" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Rimuovi De_siderio" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Seleziona Risultati Utente" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Totale: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Risultati" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Seleziona Cartella Destinazione per File" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Seleziona Cartella Destinazione" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "In coda" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "In Coda (con priorità)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "In Coda (con privilegi)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Ricezione dello stato" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "In trasferimento" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Connessione chiusa" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Scadenza connessione" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Utente uscito" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Annullato" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Errore download cartella" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Errore di file locale" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Bloccati" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "File non condiviso" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "In attesa di spegnimento" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Errore di lettura del file" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Coda" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Percentuale" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Tempo Trascorso" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Tempo Rimasto" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Apri File" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Apri nel Gestore dei File" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "Ricerca" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Pulisci Tutto" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Seleziona Trasferimenti dell'Utente" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Annulla" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Completati / Interrotti / Falliti" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Completati / Interrotti" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Falliti" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "L'Utente Si È Disconnesso" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Pulire Tutti gli Upload in Coda" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Sei sicuro di voler pulire tutti gli upload accodati?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Pulisci Tutti gli Upload" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Sei sicuro di voler pulire tutti gli upload?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Salva Lista Condivisi su Disco" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Carica Cartella & Sottocartelle…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copia Percorso Cartella" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Scarica Cartella & Sottocartelle" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Scarica Cartella & Sottocartelle In…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Nome File" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Carica Fi_le…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Carica Cartella…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Scarica Cartella In…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Lista dei file condivisi dall'utente vuota. O l'utente non condivide nulla o " "condivide file in privato." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Impossibile richiedere i file condivisi dall'utente. O l'utente è " "disconnesso o entrambi avete una porta di ascolto chiusa o c'è un problema " "di connettività temporaneo." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Seleziona Destinazione per Download Cartelle Multiple" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Carica Cartella (con Sotto-cartelle) Verso Utente" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Carica Cartella Verso Utente" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Inserisci il nome dell'utente verso cui fare upload:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Upload" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Seleziona Cartella di Destinazione per i File" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Upload File verso Utente" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Copia Immagine" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Salva immagine" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Errore nel caricamento dell'immagine per l'utente %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Impossibile ottenere dettagli dall'utente. Entrambi avete una porta di " "ascolto chiusa, l'utente è disconnesso o c'è un problema di connettività " "temporaneo." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Rimuovi _Amico" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Aggiungi _Amico" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Sblocca Utente" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Annulla Ignora Utente" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Si" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "No" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Per favore inserisci il numero di giorni." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Regala giorni dei tuoi privilegi Soulseek all'utente %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s giorni rimanenti" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Regala Privilegi" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Concedi privilegi" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Chiudi" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Sì" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Seleziona un File" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Seleziona una Cartella" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Seleziona" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Seleziona un'Immagine" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Tutte le immagini" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Salva come…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Nulla)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Chiudi Scheda" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Chiudere Tutte le Schede?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Sei sicuro di voler chiudere tutte le schede?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Scheda(e) non letta(e)" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Tutte le Schede" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Riapri la scheda chiusa" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s File Selezionati" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "Sfoglia File" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Aggiungi amico" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Mostra Indirizzo IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Canali Privati" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Rimuovi dalla Chat Privata %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Aggiungi alla Chat Privata %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Rimuovi come Operatore di %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Aggiungi come Operatore di %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- vecchi messaggi sopra ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Eseguibile" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Immagine" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archivio" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Varie" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Documento" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Testo" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Errore di caricamento dell'icona personalizzata %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Nascondi Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Mostra Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Colonna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Non raggruppare" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Raggruppa per Cartella" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Raggruppa per Utente" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Vuoi davvero uscire? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "L'utente %s esiste già e la password che hai inserito non è valida." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Digitare %s per accedere con un altro nome utente o password." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Password: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Per creare un nuovo account Soulseek, inserisci il nome utente e la password " "che desideri. Se hai già un account, inserisci i dettagli di accesso." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Le seguenti azioni non sono disponibili:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Riprovare l'indicizzazione? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Impossibile scrivere su file registro \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Impossibile accedere al file log %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Emirati Arabi Uniti" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua e Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antartide" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Americane" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Isole Åland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaijan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnia ed Erzegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgio" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrein" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Saint-Barthélemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius e Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasile" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Isola Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Bielorussia" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Isole Cocos (Keeling)" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Repubblica Democratica del Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Repubblica Centrafricana" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Svizzera" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Costa d'Avorio" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Isole Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Cile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Camerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Cina" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Capo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Isola di Natale" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Cipro" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Cechia" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Germania" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Gibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Danimarca" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Repubblica Dominicana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algeria" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egitto" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Sahara Occidentale" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spagna" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiopia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlandia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Figi" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Isole Falkland (Malvine)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Stati Federati di Micronesia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Isole Faroe" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Francia" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Gran Bretagna" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guyana Francese" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibilterra" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groenlandia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadalupa" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guinea Equatoriale" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grecia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Georgia del Sud e Sandwich Australi" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Isola Heard e McDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croazia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Ungheria" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonesia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israele" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Isola di Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Territori Britannici dell'Oceano Indiano" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Iraq" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islanda" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Giamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Giordania" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Giappone" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirghizistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Cambogia" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comore" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts e Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Corea del Nord" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Corea del Sud" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Isole Cayman" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazakistan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Libano" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Santa Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituania" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Lussemburgo" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Lettonia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marocco" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldavia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Isole Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedonia del Nord" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Isole Marianne Settentrionali" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldive" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Messico" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malesia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambico" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nuova Caledonia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Isola Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Paesi Bassi" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norvegia" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nuova Zelanda" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinesia Francese" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua Nuova Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filippine" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polonia" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint-Pierre e Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Isole Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Portorico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portogallo" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Riunione" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Romania" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Russia" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arabia Saudita" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Isole Salomone" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Svezia" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Sant'Elena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slovenia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Isole Svalbard e Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Repubblica Slovacca" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudan del Sud" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Sao Tome e Principe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "San Martino" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Siria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Isole Turks e Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Ciad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Terre Australi Francesi" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailandia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tagikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor Est" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunisia" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turchia" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad e Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ucraina" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Isole Minori Esterne degli USA" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Stati Uniti" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Città del Vaticano" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "San Vincenzo e Grenadine" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Isole Vergini Britanniche" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Isole Vergini degli USA" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Viet Nam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis e Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Maiotta" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Sudafrica" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Sintesi vocale per messaggio fallita: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Si prega di fornire sia il nome utente Last.fm che la chiave API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Riproducendo Errore" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Impossibile connettersi all'Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Impossibile ottenere la traccia recente dall'Audioscrobbler: " "%(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Impossibile trovare un player compatibile con MPRIS" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Trovati più player MPRIS: %(players)s. Player scelto: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Player MPRIS autorilevato: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" "MPRIS: Qualcosa è andato storto nell'interazione con %(player)s: " "%(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Si prega di fornire il nome utente ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Impossibile connettersi a ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "" "ListenBrainz: Sembra che tu non stia ascoltando niente in questo momento" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Impossibile ottenere la traccia recente da ListenBrainz: " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Filtri di Rete" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Elenca i comandi disponibili" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Connettiti al server" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Disconnettiti dal server" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Imposta lo stato su assente" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Gestisci estensioni" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Pulisci la finestra della chat" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Scrivi qualcosa in terza persona" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Annuncia il brano attualmente in riproduzione" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Unisciti alla stanza" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Lascia la stanza" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Di' il messaggio nella stanza specificata" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Apri chat privata" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Chiudi la chat privata" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Richiedi la versione del client dell'utente" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Invia un messaggio privato all'utente" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Aggiungi utente alla lista amici" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Rimuovi utente dalla lista amici" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Sfoglia i file dell'utente" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Mostra informazioni del profilo dell'utente" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Mostra indirizzo IP o nome utente" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Blocca connessioni dall'utente o dall'indirizzo IP" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Rimuovi utente o indirizzo IP dalla lista bloccati" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Silenzia i messaggi dall'utente o dall'indirizzo IP" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Rimuovi utente o indirizzo IP dalla lista ignorati" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Aggiungi Condividi" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Rimuovi Condividi" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Elenca condivisioni" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Indicizza condivisi" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Avvia una ricerca globale del file" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Cerca file nelle stanze in cui sei" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Cerca file di tutti gli amici" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Cerca i file condivisi di un utente" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Elenco dei %(num)i comandi disponibili:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Elenco dei %(num)i comandi disponibili che combaciano con \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Digita %(command)s per elencare comandi simili" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Digita %(command)s per elencare i comandi disponibili" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Non entrato nella stanza %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Non messaggi con l'utente %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Chat privato chiuso dell'utente %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Bloccato %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Sbloccato %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Ignorato %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Rimosso dagli ignorati %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s condivisioni elencate (%(num_total)s configurate)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Impossibile condividere la cartella inaccessibile \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Aggiunto %(group_name)s condividi \"%(virtual_name)s\" (necessaria nuova " "scansione)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Nessun condiviso con nome \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Condiviso \"%s\" rimosso (richiede indicizzazione)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Caricamento del sistema di plugin" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Impossibile abilitare l'estensione %(name)s. Il nome cartella " "dell'estensione contiene caratteri non validi: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" "Comando %(interface)s in conflitto nell'estensione %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Estensione %s abilitata" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Impossibile abilitare l'estensione %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Estensione %s disabilitata" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Impossibile disabilitare l'estensione %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Estensione %(module)s fallita con errore %(errortype)s: %(error)s.\n" "Trace: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Nessuna descrizione" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Argomento %s mancante" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Parametro non valido, scelte possibili: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Utilizzo: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comando sconosciuto: %(command)s. Digita %(help_command)s per elencare i " "comandi disponibili." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Nessun dispositivo UPnP trovato" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Inoltro della porta esterna %(external_port)s fallito: " "%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Porta esterna %(external_port)s inoltrata con successo " "all'indirizzo IP locale %(ip_address)s porta %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Messaggio privato dall'utene '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Ricerca elemento della lista dei desideri \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Attesa per lista dei desideri impostata a %s secondi" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "L'utente %(user)s sta cercando \"%(query)s\", %(num)i risultati ottenuti" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Ricostruendo condivisioni…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Indicizzazione condivisi…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Indice aggiornato: %(num)s cartelle trovate" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Si è verificato un errore grave durante la nuova scansione dei Condividi. Se " "il problema persiste, elimina %(dir)s/*.dbn e prova di nuovo. Se ciò non " "aiuta, per favore invia una segnalazione di bug includendo questa traccia " "dello stack: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Errore di indicizzazione file %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Errore di indicizzazione cartella %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Errore durante l'esame dei metadati per il file %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Indicizzazione interrotta a causa di condivisi non disponibili: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "L'utente %(user)s sta sfogliando il tuo elenco di file condivisi" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Impossibile recuperare la cartella condivisa %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Impossibile leggere database dei condivisi. Indicizza di nuovo i tuoi " "condivisi. Errore: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "L'interfaccia di rete specificata '%s' non è disponibile" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Impossibile ascoltare sulla porta %(port)s. Assicurati che nessun'altra " "applicazione la utilizzi o scegli una porta diversa. Errore: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "In ascolto sulla porta: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Impossibile connettersi al server %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Riconnessione al server tra %i secondi" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Connessione a %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Connesso al server %(host)s:%(port)s, autenticazione…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Disconnesso dal server %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Qualcuno ha effettuato l'accesso al tuo account Soulseek altrove" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Invio completato: utente %(user)s, indirizzo IP %(ip)s, file %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Invio interrotto: utente %(user)s, file %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Errore I/O in Invio: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Caricamento iniziato: utente %(user)s, indirizzo IP %(ip)s, file %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" "Impossibile creare la cartella '%(folder)s', errore riportato: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Caricamento Condivisi dal disco fallito: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Lista dei file condivisi per l'utente '%(user)s' su %(dir)s salvata" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Impossibile salvare condivisi, '%(user)s', errore riportato: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Immagine salvata in %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Impossibile salvare immagine in %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "L'utente %(user)s sta guardando il tuo profilo" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Impossibile connettersi al server. Motivo: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Impossibile connettersi" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Impossibile ottenere IP dell'utente %s, poichè disconnesso" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Indirizzo IP di %(user)s: %(ip)s, porta %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Annuncio Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i utenti privilegiati" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Non hai privilegi Soulseek. Quando i privilegi sono attivi, i tuoi download " "saranno messi in coda davanti a quelli degli utenti senza privilegi." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i giorni, %(hours)i ore, %(minutes)i minuti, %(seconds)i secondi di " "privilegi Soulseek rimanenti" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "La tua password è stata cambiata" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Password Cambiata" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Impossibile aprire il percorso file %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Impossibile aprire l'URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "" "Qualcosa è andato storto nella lettura del file %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Tentativo di caricamento del backup del file %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Impossibile eseguire backup di %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Impossibile salvare il file %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Impossibile ripristinare il file precedente %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Aggiungi amico…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Cerca nel registro attività…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Cerca nel registro chat…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Invia messaggio…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Commuta Sintesi Vocale" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Chat Stanza Comando Aiuto" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Registro" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Stanza Bacheca" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "S_tanza Bacheca" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Creato da" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Tradotto da" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licenza" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Precedente" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Benvenuto in Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "Configura…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Se il nome utente desiderato è già stato preso, ti verrà richiesto di " "cambiarlo." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Per connetterti con altri peer Soulseek, una porta di ascolto sul tuo router " "deve essere inoltrata al tuo computer." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Se la tua porta di ascolto è chiusa, potrai connetterti solo agli utenti le " "cui porte di ascolto sono aperte." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Se necessario, scegli una porta di ascolto diversa qui sotto. Questo può " "essere fatto anche successivamente nelle preferenze." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Scarica File nella Cartella" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Condividi Cartelle" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Gli utenti di Soulseek potranno scaricare dai tuoi Condividi. Contribuisci " "alla rete Soulseek condividendo i tuoi file e ricondividendo ciò che hai " "scaricato da altri utenti." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Sei pronto ad usare Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek è un protocollo non crittografato non destinato alla comunicazione " "sicura." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donare a Soulseek ti concede privilegi per un certo periodo di tempo. Se si " "dispone di privilegi, i download avranno priorità maggiore rispetto agli " "utenti senza privilegi." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "File precedente" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "File successivo" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nome" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Ultima Velocità" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Esporta…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Scorciatoie da Tastiera" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Generale" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Connetti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Disconnetti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Indicizza Condivisi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Mostra Pannello Registro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Conferma l'uscita" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Esci" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Apri Menu Principale" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Apri Menu Contestuale" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Schede" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Cambia Scheda Principale" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Vai alla Scheda Secondaria Precedente" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Vai alla Scheda Secondaria Successiva" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Riapri la scheda secondaria chiusa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Chiudi Scheda Secondaria" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Liste" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copia Cella Selezionata" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Rimuovi Riga Selezionata" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Modifica" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Taglia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Incolla" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Inserisci Emoki" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Seleziona Tutto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Trova" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Cerca Corrispondenza Successiva" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Cerca Corrispondenza Precedente" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Trasferimenti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Riprendi / Riprova Trasferimento" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pausa / Annulla Trasferimento" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Download / Upload In" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Salva Lista su Disco" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Aggiorna" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Espandi / Contrai Tutto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Vai alla Cartella Superiore" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Ricerca File" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtri _Risultato" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Sessione Corrente" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Download Completati" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Dimensione Ricevuta" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Upload Completati" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Dimensione Inviata" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Totale" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "Azze_ra…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Gli elementi della lista dei desideri vengono cercati automaticamente " "periodicamente, per scoprire file non comuni." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Aggiungi Desiderio…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Pulisci Tutto…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Rimuovi Tutti i Download Finiti/Filtrati" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Pulisci Completati" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Pulisci download specifici" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Pulisci Tutto…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Mi Interessa" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Aggiungi qualcosa che ti piace…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Non Mi Interessa" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Aggiungi qualcosa che non ti piace…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Aggiorna lista consigliati" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menu principale" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Canale…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Nome utente…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Termine di ricerca…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Modelli di ricerca: con una parola = term, senza una parola = -term, parola " "parziale = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Contesto ricerca" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "Lista dei Desideri" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Configura ricerche" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Inserisci un termine di ricerca per cercare i file condivisi da altri utenti " "sulla rete Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Modalità raggruppamento file" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Configura download" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "I file scaricati da altri utenti vengono accodati qui e possono essere messi " "in pausa e ripresi su richiesta" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Configura upload" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "I tentativi degli utenti di scaricare i file condivisi vengono accodati e " "gestiti qui" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "Apri Lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Apre un elenco locale di file condivisi precedentemente salvati su disco" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Configura condivisi" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Inserisci il nome di un utente per sfogliarne i file condivisi. Puoi anche " "salvare la lista su disco e consultarla successivamente." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "Profilo _Personale" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Configura account" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Inserisci il nome di un utente per visualizzarne la descrizione, i dettagli " "e l'immagine personale" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "Cronologia C_hat" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Configura chat" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Inserisci il nome di un utente per avviare una conversazione testuale privata" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Messaggia tutti" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Configura utenti ignorati" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Aggiungi utenti come amici per condividere cartelle specifiche con loro e " "ricevere notifiche quando sono online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Unisciti o crea una stanza…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Unisciti ad un canale esistente o creane uno nuovo per parlare con altri " "utenti sulla rete Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Configura profilo utente" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Cerca nel registro…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Connessioni" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "In download (velocità / utenti attivi)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Invio (velocità / utenti attivi)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Cerca nella cronologia chat…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Limiti Velocità Download" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Velocità download illimitata" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Usa limite velocità di download (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Usa velocità alternativa di download (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Cerca stanze…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Aggiorna stanze" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Mostra feed di messaggi di chat room pubbliche" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Accetta inviti a canale privato" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Scrivi un singolo messaggio che gli altri utenti della stanza possano " "leggere in seguito. I messaggi recenti sono mostrati in alto." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Imposta messaggio di bacheca…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtri su Risultati di Ricerca" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "I filtri dei risultati di ricerca vengono utilizzati per perfezionare i " "risultati di ricerca visualizzati." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Ogni elenco di risultati di ricerca ha il proprio filtro, che può essere " "rivelato attivando il pulsante Filtra risultati. Un filtro è composto da più " "campi, che vengono tutti applicati quando si preme Invio in uno dei suoi " "campi. Il filtraggio viene applicato immediatamente ai risultati già " "ricevuti e a quelli che appariranno." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Come suggerisce il nome, un filtro dei risultati di ricerca non può " "espandere la tua ricerca originale, può solo restringerla. Per ampliare o " "modificare i termini di ricerca, esegui una nuova ricerca." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Utilizzo del filtro risultati" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Includi Testo" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Verranno visualizzati i file, le cartelle e i nomi utente contenenti questo " "testo." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Le Maiuscole/minuscole sono ignorate, ma l'ordine delle parole rimane " "importante: \"Spears Britney\" non mostrerà alcuna \"Britney Spears\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Usa | (o tubi) per separare varie frasi esatte. Esempio:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Escludi Testo" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Come sopra, ma i file, le cartelle e i nomi utente vengono scartati se il " "testo combacia." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtra file in base alla loro estensione." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "È possibile specificare più estensioni di file e, di conseguenza, verranno " "mostrati più risultati dall'elenco. Esempio:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "È anche possibile invertire il filtro, specificando le estensioni di file " "che non si desiderano nei risultati usando un punto esclamativo! Esempio:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Dimensioni File" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtra file in base alla loro dimensione." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Per impostazione predefinita, l'unità utilizzata è il byte (B) e i file con " "dimensione maggiore o uguale del (>=) valore verranno mostrati." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Aggiungi b, k, m, o g (oppure kib, mib, o gib) per specificare unità di " "byte, kibibyte, mebibyte, o gibibyte: \n" " 20m per mostrare file con dimensioni più grandi di 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Anteponi = ad un valore per specificare una corrispondenza esatta:\n" " =1024 combacia con i file di dimensione di esattamente 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Anteponi ! ad un valore per escludere i file di una dimensione specifica:\n" " !30.5m per nascondere i file che pesano 30.5 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Anteponi < o > per trovare file di dimensioni minori/maggiori del valore " "dato. Usa uno spazio tra ogni condizione per includere un intervallo:\n" " >10.5m <1g per mostrare file più grandi di 10.5 MiB, ma più piccoli di 1 " "GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Anche le più note varianti kb, mb e gb possono essere utilizzate per le " "unità kilobyte, megabyte e gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtra i file in base al bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "I valori devono essere inseriti solo come cifre numeriche. L'unità è sempre " "Kb/s (Kilobit al secondo)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Come con la Dimensione dei File (sopra), gli operatori =, !, <, >, <= o >= " "possono essere usati, e si possono specificare più condizioni, per esempio " "per mostrare file con un bitrate di almeno 256 Kb/s e con un massimo bitrate " "di 1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtra i file in base alla durata." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Per impostazione predefinita, verranno selezionati i file più lunghi o con " "durata uguale (>=) a quella immessa, a meno che non venga utilizzato un " "operatore (=, !, <=, < o >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Immettere un valore grezzo in secondi o utilizzare i formati dell'ora MM:SS " "e HH:MM:SS:\n" " =53 mostra file che sono lunghi circa 53 secondi.\n" " >5:30 per mostrare file più lunghi di 5 minuti e mezzo.\n" " <5:30:00 mostra file più corti di 5 ore e mezzo." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "È possibile specificare più condizioni:\n" " >6:00 <12:00 per mostrare file di durata compresa tra i 6 e i 12 " "minuti.\n" " !9:54 !8:43 !7:32 per nascondere alcuni file specifici dai risultati.\n" " =5:34 =4:23 =3:05 per includere file con durate specifiche." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtra i file basandosi sulla posizione geografica degli utenti secondo i " "codici dei paesi definiti da ISO 3166-2:\n" " US mostrerà risultati solamente da utenti con indirizzi IP negli Stati " "Uniti.\n" " !GB nasconderà i risultati che provengono da utenti in Gran Bretagna." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "È possibile specificare più paesi con virgole o spazi." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Slot Libero" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Mostra solo i risultati dagli utenti che hanno almeno uno slot di upload " "libero, ovvero file che sono disponibili immediatamente." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Limiti Velocità Upload" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Velocità upload illimitata" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Usa limite alla velocità di upload (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Usa limite alternativo velocità di upload (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Aiuto Comandi della Chat Privata" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Includi testo…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Includi risultati i cui percorsi dei file contengono il testo specificato. È " "possibile specificare più frasi e parole, ad es. frase esatta|musica|termine|" "frase esatta due" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Escludi testo…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Escludi risultati i cui percorsi di file contengono il testo specificato. È " "possibile specificare più frasi e parole, ad es. frase esatta|musica|termine|" "frase esatta due" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Tipo di file…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tipo di file, ad es. flac wav o !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Dimensione file…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Dimensione del file, ad es. >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitrate…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, ad es. 256<1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Durata…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Durata, ad es. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Codice paese…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Codice paese, ad es. US ES o !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Proibisci agli utenti di accedere ai tuoi file condivisi, in base a nome " "utente, indirizzo IP o paese." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Codici paese da bloccare (separati da virgole):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "I codici devono essere in formato ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Usa messaggio personalizzato per il bllocco geografico:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Usa messaggio di blocco personalizzato:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Indirizzi IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Attiva il controllo ortografico" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Ripristina chat privata precedente all'avvio" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Abilita risposte di messaggio privato alà CTCP (versione client)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Numero di righe di chat private recenti da mostrare:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Numero di righe di stanze chat recenti da mostrare:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Completamento Chat" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Abilita completamento con tasto Tab" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Abilita menu a tendina di completamento" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Numero minimo di caratteri mostrati nel menu a tendina:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Completamenti chat permessi:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Lista amici" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nomi utente in chat di canale" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nomi Canale" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Comandi" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Marcatura temporale" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Formato chat privata:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Predefinito" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Formato Chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Sintesi Vocale" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Abilita Sintesi Vocale" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Comando sintesi vocale:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Messaggio chat privata:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Messaggio di canale:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censura" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Abilita censura di modelli di testo" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Auto-Sostituzione" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Abilita sostituzione automatica delle parole" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Autopulisci download completati/filtrati dalla lista trasferimenti" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Memorizza download completati nelle sottocartelle con nome utente" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Azione di doppio clic sui download:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Permetti agli utenti di inviarti qualsiasi file:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Cartelle" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Download completati:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Download parziali:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "File ricevuti:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Eventi" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "Esegui comando a download file completato ($ per percorso file):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Esegui comando a download cartella completato ($ per percorso cartella):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtri di Download" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Abilita filtri in download" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Aggiungi" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Carica Predefinite" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Verifica Filtri" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Non verificato" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignora messaggi di chat e risultati di ricerca degli utenti, in base al nome " "utente o all'indirizzo IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Registra canali come predefinito" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Registra chat private come predefinito" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Registra trasferimenti su file" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Registra messaggi di debug su file" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Formato data file di log:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Posizioni Cartella" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Cartella registri chat di canale:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Cartella registri chat privata:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Cartella registri trasferimento:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Cartella registri di debug:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Accedi a un account Soulseek esistente o creane uno nuovo. I nomi utente " "fanno distinzione tra maiuscole e minuscole e sono univoci." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Indirizzo IP pubblico:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Porta di ascolto (richiede un riavvio):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Stato Assente" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minuti di inattività prima di andare via (0 per disabilitare):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Risposta automatica quando assente:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Apri automaticamente le porte di ascolto (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Connessione automatica al server all'avvio" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Server Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Associa le connessioni a una specifica interfaccia di rete, utile ad es. per " "assicurarti che venga sempre usata una VPN. Lascia vuoto per utilizzare " "qualsiasi interfaccia disponibile. Modifica questo valore solo se sai cosa " "stai facendo." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Interfaccia di rete (richiede un riavvio):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Sta Ascoltando ti consente di visualizzare ciò che sta riproducendo il tuo " "lettore multimediale utilizzando il comando /now in chat." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Altro" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Formato Sta Ascoltando" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Formato Sta Ascoltando:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Prova Configurazione" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Attiva estensioni" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Aggiungi Estensioni" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Aggiungi Estensioni" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Impostazioni" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "Impo_stazioni" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versione:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Creato da:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Abilita cronologia di ricerca" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "I file condivisi privatamente che sono stati resi visibili a tutti saranno " "prefissati con '[PRIVATO]', e non possono essere scaricati fino a quando " "l'uploader non dà il permesso esplicito. Chiedi gentilmente." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Mostra file condivisi privatamente nei risultati di ricerca" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limita il numero di risultati per ricerca:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Abilita, come predefinito, i filtri su risultati di ricerca" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Includi:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Escludi:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Tipo di File:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Dimensione:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Durata:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Codice Paese:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Mostra solo i risultati degli utenti con uno slot di upload disponibile." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Aiuto Filtri Risultato" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Ricerche di Rete" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Rispondi alle richieste di ricerca di altri utenti" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Le ricerche più brevi di questo numero di caratteri verranno ignorate:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Numero massimo di risultati da inviare per richiesta di ricerca:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Pulisci Cronologia Ricerca" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Pulisci Cronologia Filtri" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Indicizzazione automatica del contenuto delle cartelle condivise all'avvio. " "Se disabilitato, i condivisi vengono aggiornati solo quando avvii " "manualmente una nuova indicizzazione." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Indicizza condivisi all'avvio" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Visibile a tutti:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Amico condivide" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Condivisioni affidabili" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Auto-pulisci upload completati/annullati dalla lista trasferimenti" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Azione di doppio clic sugli upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limita velocità upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Per transferimento" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Trasferimenti totali" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Slot per Upload" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: i file verranno caricati in modo ciclico verso gli utenti in " "attesa in coda.\n" "First In, First Out: i file verranno caricati nell'ordine in cui sono stati " "messi in coda." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Tipo di Coda Upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Assegna slot di caricamento fino a raggiungere una velocità totale di (KiB/" "s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Numero fisso di slot di caricamento:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Dai la priorità a tutti gli amici" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Limiti Coda" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Numero massimo di file in coda per utente:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Dimensione totale massima dei file in coda per utente (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "I limiti non vengono applicati agli amici" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Le occorrenze di $ saranno sostituite dall'URL. Verranno aperte le " "applicazioni di sistema predefinite nei casi in cui non è stato configurato " "un protocollo." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Comando Gestore file:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Azzera Immagine" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Descrizione di sé" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Aggiungi elementi che vuoi che tutti vedano, ad esempio una breve " "descrizione, suggerimenti utili o linee guida per scaricare i tuoi condivisi." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Immagine:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Pulisci" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Preferisci modalità scura" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Usa la barra dell'intestazione" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Visualizza icona nel vassoio" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Riduci nel vassoio all'avvio" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Lingua (richiede il riavvio):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Quando si chiude la finestra:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notifiche" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Abilita suono per le notifiche" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Mostra notifica nel titolo della finestra per chat private e menzioni" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Mostra notifiche per:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Download di file completati" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Download di cartella completati" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Messaggio privato" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Messaggi di canale" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Menzioni in chat di canale" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Risultati della lista dei desideri trovati" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Ripristina l'ultima scheda principale attiva all'avvio" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Pulsanti di chiusura nelle schede secondarie" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Colore scheda regolare:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Colore scheda cambiata:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Colore scheda evidenziata:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Posizione lista amici:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Schede principali visibili:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Posizioni nella barra schede:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Schede principali" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Mostra percorsi file inversi (richiede un riavvio)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Mostra dimensioni esatte dei file (richiede un riavvio)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Colore testo Lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Colore testo Cerca nella coda:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Attiva nomi utente colorati" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aspetto nome utente in chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Colore test Remoto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Colore testo Locale:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Colore del testo dell'output dei comandi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "Colore testo azione /me:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Colore testo Evidenziato:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Colore testo Collegamento URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Stato degli utenti" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Colore Online:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Colore Assente:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Colore Offline:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Voci di Testo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Colore sfondo di voce testuale:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Colore testo di voce testuale:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Caratteri" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Carattere globale:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Carattere lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Font carattere visualizzato:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Carattere chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Carattere trasferimenti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Carattere ricerca:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Sfoglia caratteri:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Icone" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Tema icona cartella:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Interrompi Utente(i)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Blocca Utente(i)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Rimuovi Tutti gli Upload Completati/Annullati" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Messaggia tutti" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Pulisci upload specifici" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Salva l'Elenco delle Condivisioni sul Disco" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Aggiorna file" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Modifica Profilo" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "File Condivisi" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Cartelle Condivise" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Upload in Coda" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Slot Liberi per Upload" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Velocità Upload" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Modifica Interessi" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "Re_gala Privilegi…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Aggiorna Profilo" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Comandi di Nicotine+" #~ msgid "_Clear" #~ msgstr "_Pulisci" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Impossibile salvare %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Utenti Fidati" #~ msgid "Quit program" #~ msgstr "Esce dall'applicazione" #~ msgid "Username:" #~ msgstr "Nome utente:" #~ msgid "Re_commendations for Item" #~ msgstr "_Consigli per l'Elemento" #~ msgid "_Remove Item" #~ msgstr "_Rimuovi Elemento" #~ msgid "_Remove" #~ msgstr "_Rimuovi" #~ msgid "Send M_essage" #~ msgstr "Invia M_essaggio" #~ msgid "Send Message" #~ msgstr "Invia Messaggio" #~ msgid "View User Profile" #~ msgstr "Visualizza Profilo Utente" #~ msgid "Start Messaging" #~ msgstr "Messaggio Iniziale" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Inserisci il nome dell'utente a cui desideri inviare un messaggio:" #~ msgid "_Message" #~ msgstr "_Messaggia" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Inserisci il nome dell'utente di cui vuoi vedere il profilo:" #~ msgid "_View Profile" #~ msgstr "_Visualizza profilo" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Inserisci il nome dell'utente di cui desideri ricevere i condivisi:" #~ msgid "_Browse" #~ msgstr "_Sfoglia" #~ msgid "Password" #~ msgstr "Password" #~ msgid "Download File" #~ msgstr "Scarica file" #~ msgid "Refresh Similar Users" #~ msgstr "Aggiorna utenti simili" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Inserisci il nome utente della persona di cui si desidera visualizzare i " #~ "file" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Inserisci il nome utente della persona di cui si desidera mostrare i " #~ "dettagli" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Inserisci il nome utente della persona a cui desideri inviare un messaggio" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Inserisci il nome utente di chi desideri aggiungere agli amici" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Immettere il nome di un canale virtuale in cui si desidera entrare. Se il " #~ "canale non esiste, verrà creato." #~ msgid "Show Log History Pane" #~ msgstr "Mostra pannello log cronologia" #~ msgid "Save _Picture" #~ msgstr "Salva _Immagine" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Risultato di ricerca errato %(filepath)s filtrato dall'utente %(user)s " #~ "per la query di ricerca \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Alcuni client non inviano risultati di ricerca se sono inclusi caratteri " #~ "speciali." #~ msgid "Remove special characters from search terms" #~ msgstr "Rimuovi i caratteri speciali dai termini di ricerca" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problemi nell'esecuzione '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problema di esecuzione sulla cartella: %s" #~ msgid "Disallowed extension" #~ msgstr "Tipo file non consentito" #~ msgid "Too many files" #~ msgstr "Troppi file" #~ msgid "Too many megabytes" #~ msgstr "Troppi megabyte" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Il server non consente di eseguire ricerche nella lista dei desideri in " #~ "questo momento" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Le velocità di trasferimento dipendono dagli utenti dai quali stai " #~ "scaricando. Alcuni utenti saranno più veloci rispetto ad altri." #~ msgid "Started Downloads" #~ msgstr "Download Iniziati" #~ msgid "Started Uploads" #~ msgstr "Upload Iniziati" #~ msgid "Replace censored letters with:" #~ msgstr "Sostituisci le lettere censurate con:" #~ msgid "Censored Patterns" #~ msgstr "Corrispondenze Censurate" #~ msgid "Replacements" #~ msgstr "Sostituzioni" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Se un utente sulla rete Soulseek cerca un file presente nelle tue " #~ "condivisioni, i risultati della ricerca verranno inviati all'utente." #~ msgid "Send to Player" #~ msgstr "Invia al Player" #~ msgid "Send to _Player" #~ msgstr "Invia al _Player" #~ msgid "_Open in File Manager" #~ msgstr "Apri nel Gestore dei File" #~ msgid "Media player command:" #~ msgstr "Comando Media Player:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Impossibile salvare il download nella sottocartella del nome utente, " #~ "ripiego sulla cartella di download predefinita. Errore: %s" #~ msgid "Buddy-only" #~ msgstr "Solo Amici" #~ msgid "Share with buddies only" #~ msgstr "Condividi solo con gli amici" #~ msgid "_Quit…" #~ msgstr "Esci…" #~ msgid "_Configure Shares" #~ msgstr "_Configura Condivisi" #~ msgid "Remote file error" #~ msgstr "Errore di file remoto" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Impossibile trovare %(option1)s o %(option2)s,, installa uno dei due." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s cartelle trovate prima della reindicizzazione" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Elaborazione dei seguenti database fallita: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Invio del numero di file condivisi al server fallito: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Esci / Esegui in Background" #~ msgid "Listening port:" #~ msgstr "Porta di ascolto:" #~ msgid "Network interface:" #~ msgstr "Interfaccia di rete:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Limita condivisi con amici ad amici attendibili" #~ msgid "Shared" #~ msgstr "Condiviso" #~ msgid "Search Files and Folders" #~ msgstr "Cerca file e cartelle" #~ msgid "Out of Date" #~ msgstr "Versione obsoleta" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "È disponibile la versione %(version)s, rilasciata il %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Stai usando una versione di sviluppo di %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Stai usando la versione più recente di %s" #~ msgid "Latest Version Unknown" #~ msgstr "Ultima Versione Sconosciuta" #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferisci Modalità Scura" #~ msgid "Show _Log History Pane" #~ msgstr "Mostra Crono_logia Registro" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lista Amici in Scheda Separata" #~ msgid "Buddy List Always Visible" #~ msgstr "Lista Amici Sempre Visibile" #~ msgid "_View" #~ msgstr "_Visualizza" #~ msgid "_Open Log Folder" #~ msgstr "Apri Cartella Registro" #~ msgid "_Browse Folder(s)" #~ msgstr "Sfoglia Cartella(e)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibyte (2^10 byte) per secondo." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Inviato agli utenti come motivo del blocco geografico." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Inviato agli utenti come motivo per essere stato bloccato." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Se interagisci con l'applicazione mentre sei assente, lo stato verrà " #~ "impostato su online." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Ogni utente può accodare un massimo di:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibyte (2^17 byte)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "file" #~ msgid "Queue Behavior" #~ msgstr "Comportamento Coda" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Se disabilitato, gli slot verranno determinati dalle risorse di banda " #~ "disponibili." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Considera che il tema del sistema operativo potrebbe avere la precedenza." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Di predefinito, la scheda all'estrema sinistra è attivata all'avvio" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Esci da %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "terminato" #~ msgid "done" #~ msgstr "fatto" #~ msgid "Remember choice" #~ msgstr "Ricorda preferenza" #~ msgid "Kosovo" #~ msgstr "Kosovo" #~ msgid "Unknown Network Interface" #~ msgstr "Interfaccia di Rete Sconosciuta" #~ msgid "Listening Port Unavailable" #~ msgstr "Porta di ascolto non disponibile" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "Il server sembra essere non raggiungibile, tentativo fra %i secondi" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ utilizza la rete peer-to-peer per connettersi ad altri utenti. " #~ "Per consentire agli utenti di connettersi a te senza problemi, è " #~ "fondamentale una porta di ascolto aperta." #~ msgid "--- disconnected ---" #~ msgstr "--- disconnesso ---" #~ msgid "--- reconnected ---" #~ msgstr "--- riconnesso ---" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Terra" #~ msgid "Czech Republic" #~ msgstr "Repubblica Ceca" #~ msgid "Turkey" #~ msgstr "Turchia" #~ msgid "Joined Rooms " #~ msgstr "Canali Acceduti " #~ msgid "_Auto-join Room" #~ msgstr "Auto-partecipa nel Canale" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintassi: Le lettere non fanno distinzione tra Maiusc/Minusc. Sono " #~ "supportate tutte le espressioni regolari di Python con caratteri di " #~ "escape disabilitati. Per filtri semplici, si consiglia di attivare i " #~ "caratteri di escape." #~ msgid "Escaped" #~ msgstr "Con Carattere di Escape" #~ msgid "Escape filter" #~ msgstr "Filtro di escape" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Inserire il pattern di testo e con quale testo sostituirlo" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s cartelle trovate prima dell'indicizzazione, ricostruzione…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Nessuna porta di ascolto disponibile nell'intervallo di porte specificato " #~ "%s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Scegli un intervallo da cui selezionare una porta di ascolto. Verrà " #~ "utilizzata la prima porta disponibile nell'intervallo." #~ msgid "First Port" #~ msgstr "Prima porta" #~ msgid "to" #~ msgstr "a" #~ msgid "Last Port" #~ msgstr "Ultima porta" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Impossibile trovare %s o più recente, per favore installalo." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Impossibile importare il modulo Gtk. Il modulo python-gobject è " #~ "installato correttamente?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Stai usando una versione non supportata di GTK %(major_version)s. " #~ "Dovresti installare GTK %(complete_version)s o più recente." #~ msgid "User Info" #~ msgstr "Dettagli Utente" #~ msgid "Zoom 1:1" #~ msgstr "Dimensione originale" #~ msgid "Zoom In" #~ msgstr "Ingrandisci" #~ msgid "Zoom Out" #~ msgstr "Riduci" #~ msgid "Show User I_nfo" #~ msgstr "Mostra I_nfo Utente" #~ msgid "Request User's Info" #~ msgstr "Richiedi Dettagli Utente" #~ msgid "Request User's Shares" #~ msgstr "Richiedi Condivisi da Utente" #~ msgid "Request User Info" #~ msgstr "Ottieni Dettagli Utente" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Inserisci il nome dell'utente di cui desideri ricevere dettagli:" #~ msgid "Request Shares List" #~ msgstr "Ottieni Lista Condivisi" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "URL Soulseek non valido: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Gli utenti della rete Soulseek potranno scaricare file dalle cartelle che " #~ "condividi. La condivisione di file è fondamentale per la salute della " #~ "rete Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Aggiorna Dettagli" #~ msgid "Chat Room Commands" #~ msgstr "Comandi in Canale Chat" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'canale'" #~ msgid "Join room 'room'" #~ msgstr "Entra nel canale 'canale'" #~ msgid "/me 'message'" #~ msgstr "/me 'messaggio'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Mostra l'output dello script Sta Ascoltando" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'utente'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Aggiungi utente 'utente' ai tuoi amici" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'utente" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Rimuovi utente 'utente' dai tuoi amici" #~ msgid "/ban 'user'" #~ msgstr "/ban 'utente'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Aggiungi l'utente 'utente' alla tua lista degli utenti bloccati" #~ msgid "/unban 'user'" #~ msgstr "/unban 'utente'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Rimuovi l'utente 'utente' dalla lista dei bloccati" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'utente'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Aggiungi l'utente 'utente' alla tua lista degli utenti ignorati" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'utente'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Rimuovi l'utente 'utente' dalla lista degli ignorati" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'utente'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'utente'" #~ msgid "Request info for 'user'" #~ msgstr "Richiedi dettagli per 'utente'" #~ msgid "/ip 'user'" #~ msgstr "/ip 'utente'" #~ msgid "Show IP for user 'user'" #~ msgstr "Mostra IP per l'utente 'utente'" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'interrogazione'" #~ msgid "Start a new search for 'query'" #~ msgstr "Comincia una nuova ricerca per 'query'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'interrogazione'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Cerca la 'query' nei canali" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'interrogazione'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Cerca nella lista degli amici 'interrogazione'" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'utente' 'interrogazione'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'utente' 'messaggio'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Invia il messaggio 'messaggio' all'utente 'utente'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'utente'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Apri una finestra con una chat privata per l'utente 'utente'" #~ msgid "Private Chat Commands" #~ msgstr "Comandi in Chat Privata" #~ msgid "Add user to your ban list" #~ msgstr "Aggiungi utente alla tua lista bloccati" #~ msgid "Add user to your ignore list" #~ msgstr "Aggiungi utente alla tua lista ignorati" #~ msgid "Browse shares of user" #~ msgstr "Sfoglia condivisi dell'utente" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Per il filtraggio insensibile all'ordine, oltre a filtrare diverse frasi " #~ "esatte, è possibile utilizzare il carattere | (pipe) per separare frasi e " #~ "parole.\n" #~ " Esempio: Spears|Britney|Il mio bellissimo album|ciao" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "Per escludere i file non audio, usa !0 nel filtro della durata." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtra i file in base alla posizione geografica degli utenti." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Per visualizzare nuovamente i risultati completi, è sufficiente " #~ "cancellare tutti i filtri attivi." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Consulta le preferenze per ulteriori opzioni di filtro." #~ msgid "File size" #~ msgstr "Dimensione file" #~ msgid "Clear Active Filters" #~ msgstr "Pulisci filtri attivi" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Scorri i completamenti col tasto Tab" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Nascondi menu a tendina quando c'è solo una corrispondenza" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Download delle cartelle in ordine alfanumerico invertito" #~ msgid "Incomplete file folder:" #~ msgstr "Cartella dei file incompleti:" #~ msgid "Download folder:" #~ msgstr "Cartella di download:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Salva upload amici in:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Usa UPnP per l'inoltro della porta di ascolto" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Condividi le cartelle con ogni utente o amico di Soulseek, consentendo il " #~ "download dei contenuti direttamente dal tuo dispositivo. I file nascosti " #~ "non sono mai condivisi." #~ msgid "Secondary Tabs" #~ msgstr "Schede Secondarie" #~ msgid "Chat room tab bar position:" #~ msgstr "Posizione barra delle schede della chat:" #~ msgid "Private chat tab bar position:" #~ msgstr "Posizione barra delle schede della chat privata:" #~ msgid "Search tab bar position:" #~ msgstr "Posizione barra delle schede di ricerca:" #~ msgid "User info tab bar position:" #~ msgstr "Posizione barra della scheda dettagli utente:" #~ msgid "User browse tab bar position:" #~ msgstr "Posizione barra delle schede sfoglia utente:" #~ msgid "Tab Labels" #~ msgstr "Etichette Scheda" #~ msgid "_Refresh Info" #~ msgstr "Aggiorna Dettagli" #~ msgid "Block IP Address" #~ msgstr "Blocca Indirizzo IP" #~ msgid "Connected" #~ msgstr "Connesso" #~ msgid "Disconnected" #~ msgstr "Disconnesso" #~ msgid "Disconnected (Tray)" #~ msgstr "Disconnesso (Vassoio)" #~ msgid "User(s)" #~ msgstr "Utente(i)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" non ha ritornato nulla" #~ msgid "Alternative Speed Limits" #~ msgstr "Limiti Alternativi Velocità" #~ msgid "Last played" #~ msgstr "Ultimo ascolto" #~ msgid "Playing now" #~ msgstr "Sta Ascoltando" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Impossibile aprire il percorso file %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Codice di errore %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Nessun alias (%s)" #~ msgid "Aliases:" #~ msgstr "Alias:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Rimosso alias %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Nessun alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Limiti Alternativi Velocità" #~ msgid "Aliases" #~ msgstr "Alias" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'comando' 'definizione'" #~ msgid "Add a new alias" #~ msgstr "Aggiungi un nuovo alias" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'comando'" #~ msgid "Remove an alias" #~ msgstr "Rimuovi un alias" #~ msgid "Chat History" #~ msgstr "Cronologia Chat" #~ msgid "Command aliases" #~ msgstr "Alias di comando" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limita velocità download a (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autore(i):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limita velocità upload a (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Elemento della lista dei desideri trovato" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Le schede mostrano le icone di stato dell'utente invece del testo di stato" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Visualizza percorso dei file nelle viste di elenco file" #~ msgid "Colored and clickable usernames" #~ msgstr "Nomi utente colorati e cliccabili" #~ msgid "Notification changes the tab's text color" #~ msgstr "La notifica cambia il colore di testo delle schede" #~ msgid "Cancel" #~ msgstr "Annulla" #~ msgid "OK" #~ msgstr "OK" #~ msgid "_Add to Buddy List" #~ msgstr "_Aggiungi a Lista Amici" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Cancella ogni download contrassegnato con uno stato specifico." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Cancella ogni caricamento contrassegnato con uno stato specifico." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "usa cartella dei dati utente non predefinita per es. elenco di download" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Sezione di configurazione sconosciuta '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Opzione di configurazione sconosciuta '%(option)s' nella sezione " #~ "'%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "È disponibile la versione %s" #, python-format #~ msgid "released on %s" #~ msgstr "rilasciata il %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ è in esecuzione in background" #, python-format #~ msgid "Private message from %s" #~ msgstr "Messaggio privato da %s" #~ msgid "Aborted" #~ msgstr "Annullato" #~ msgid "Blocked country" #~ msgstr "Paese escluso" #~ msgid "Finished / Aborted" #~ msgstr "Completati / Interrotti" #~ msgid "Close tab" #~ msgstr "Chiudi scheda" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Qualcuno parla di te nel canale %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Il commando %s non è riconosciuto" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Attenzione: %(realuser)s sta tentando di falsificare l'identità di " #~ "%(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "L'interfaccia di rete specificata, '%s', non esiste. Modifica o rimuovi " #~ "l'interfaccia di rete specificata e riavvia Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "L'intervallo specificato per le porte di connessione del client erano {}-" #~ "{}, ma sono risultate inaccessibili. Incrementa e/o " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Nota che parte dell'intervallo è inferiore a 1024 e ciò generalmente non " #~ "è permesso su molti sistemi operativi, ad eccezione di Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progresso indicizzazione: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Errore OS: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP non è disponibile su questa rete" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Mappatura della porta esterna WAN fallita: %(error)s" #~ msgid "Room wall" #~ msgstr "Bacheca Canale" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "La porta di ascolto predefinita \"2234\" funziona bene nella maggior " #~ "parte dei casi. Se hai bisogno di usare una porta diversa, potrai " #~ "modificarla nelle preferenze in un secondo momento." #~ msgid "Show users with similar interests" #~ msgstr "Mostra utenti con interessi simili" #~ msgid "Menu" #~ msgstr "Menu" #~ msgid "Expand / Collapse all" #~ msgstr "Espandi / Contrai tutto" #~ msgid "Configure shares" #~ msgstr "Configura condivisi" #~ msgid "Create or join room…" #~ msgstr "Crea o entra nel canale…" #~ msgid "_Room List" #~ msgstr "Lista Canali" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Abilita limiti di velocità di download e upload alternativi" #~ msgid "Show log history" #~ msgstr "Mostra cronologia registro" #~ msgid "Result grouping mode" #~ msgstr "Modalità raggruppamento risultati" #~ msgid "Free slot" #~ msgstr "Slot libero" #~ msgid "Save shares list to disk" #~ msgstr "Salva lista condivisi su disco" #~ msgid "_Away" #~ msgstr "_Assente" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Errore nel caricamento del file di interfaccia %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Tentativo di reimpostare l'indice dei file condivisi a causa di un " #~ "errore. Per favore, scansiona di nuovo i tuoi condivisi." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Impossibile accedere all'indice dei file condivisi. Ciò potrebbe " #~ "verificarsi a causa di diverse istanze di Nicotine+ attive " #~ "contemporaneamente, problemi di autorizzazione dei file o un altro " #~ "problema di Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ è un client per Soulseek" #~ msgid "enable the tray icon" #~ msgstr "abilita icona nel vassoio" #~ msgid "disable the tray icon" #~ msgstr "disabilita icona nel vassoio" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Ottieni Privilegi Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "L'indirizzo IP pubblico è %(ip)s e la porta di ascolto attiva è " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "sconosciuto" #~ msgid "Notification" #~ msgstr "Notifica" #~ msgid "Length" #~ msgstr "Durata" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Immagine non salvata, %s esiste già." #~ msgid "_Open" #~ msgstr "Apri" #~ msgid "_Save" #~ msgstr "_Salva" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Caricamento dell'estensione '%s' fallito, impossibile trovarla." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Errore di I/O: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Apertura del percorso file fallita: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Apertura di URL fallita: %s" #~ msgid "_Log Conversation" #~ msgstr "Registra Conversazione" #~ msgid "Result Filter List" #~ msgstr "Lista Filtri Risultati" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Usa < o > per trovare i file con dimensioni minori/maggiori o uguali al " #~ "valore." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "I file VBR mostrano il loro bitrate medio e in genere hanno un bitrate " #~ "inferiore rispetto a un file CBR compresso da 320 kbps della stessa " #~ "qualità audio." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Come Dimensione sopra, è possibile utilizzare =, < e >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Impedisci l'accesso in scrittura da parte di altri programmi per i file " #~ "ricevuti (disattiva per NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Dove vengono conservati temporaneamente i download incompleti." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Dove saranno salvati gli upload degli amici (sottocartella per ogni " #~ "amico)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Abilita stato Assente dopo minuti di inattività:" #~ msgid "Protocol:" #~ msgstr "Protocollo:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Cartella tema icone (richiede riavvio):" #~ msgid "Establishing connection" #~ msgstr "Connessione in corso" #~ msgid "Clear Groups" #~ msgstr "Pulisci Gruppi" #~ msgid "User List" #~ msgstr "Lista Utenti" #~ msgid "_Reset Statistics…" #~ msgstr "Azze_ra Statistiche…" #~ msgid "Clear _Downloads…" #~ msgstr "Pulisci Download…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Pulisci Uploa_d…" #~ msgid "Block User's IP Address" #~ msgstr "Blocca Indirizzo IP dell'Utente" #~ msgid "Ignore User's IP Address" #~ msgstr "Ignora Indirizzo IP dell' Utente" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Cancella ogni download che ha terminato il trasferimento o è stato " #~ "catturato da un filtro." #~ msgid "Usernames" #~ msgstr "Nomi utente" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "Mostra i messaggi registrati nelle chat quando si entra in una chat" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Cancella ogni caricamento che ha terminato il trasferimento o è stato " #~ "annullato dall'utente remoto." #~ msgid "Queue Position" #~ msgstr "Posizione in Coda" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "L'utente %(user)s sta cercando direttamente %(query)s\", ottenuti %(num)i " #~ "risultati" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVATO]" #~ msgid "Room wall (personal message set)" #~ msgstr "Bacheca canale (messaggio personale impostato)" #~ msgid "Your config file is corrupt" #~ msgstr "Il file della tua configurazione è corrotto" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Spiacente, ma sembra che il file della tua configurazione sia corrotto. " #~ "Riconfigura Nicotine+.\n" #~ "\n" #~ "Il tuo vecchio file di configurazione è stato rinominato in\n" #~ "%(corrupt)s\n" #~ "Potresti essere in grado di recuperare alcune delle tue impostazioni con " #~ "editor di testo." #~ msgid "User Description" #~ msgstr "Descrizione Utente" #~ msgid "User Interests" #~ msgstr "Interessi Utente" #~ msgid "User Picture" #~ msgstr "Immagine Utente" #~ msgid "Search Wishlist" #~ msgstr "Ricerca Lista Desideri" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "In uscita da Nicotine+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Usare Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "In uscita da Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Esci da Nicotine+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Utente:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Tutti %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s files " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Permetti espressioni regolari per i filtri di inclusione e esclusione" #, fuzzy #~ msgid "Quit…" #~ msgstr "Esci" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Seleziona scheda precedente all'avvio" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Abilita, come predefinito, i filtri su risultati di ricerca" #~ msgid "Close Nicotine+?" #~ msgstr "Chiudere Nicotine+?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Vuoi davvero uscire da Nicotine+?" #~ msgid "Run in Background" #~ msgstr "Esegui in Background" #~ msgid "_Online Notify" #~ msgstr "Notifica Connessione" #~ msgid "_Prioritize User" #~ msgstr "Dai _Priorità all'Utente" #~ msgid "_Trust User" #~ msgstr "Fida_ti" #~ msgid "Request User's IP Address" #~ msgstr "Richiedi Indirizzo IP dell'Utente" #~ msgid "Request IP Address" #~ msgstr "Richiedi Indirizzo IP" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "" #~ "Inserisci il nome dell'utente di cui desideri ricevere l'indirizzo IP:" #~ msgid "Downloaded" #~ msgstr "Ricevuto" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Impossibile aggiungere il download %(filename)s ai file condivisi: " #~ "%(error)s" #~ msgid "Automatically share completed downloads" #~ msgstr "Condividi automaticamente download completati" #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Equivale ad aggiungere la cartella di download come condivisi con tutti, " #~ "tuttavia i file ricevuti in questa cartella saranno automaticamente " #~ "accessibili agli altri (nessuna indicizzazione richiesta)." #~ msgid "Unable to Share Folder" #~ msgstr "Impossibile Condividere Cartella" #~ msgid "The chosen virtual name is empty" #~ msgstr "Il nome virtuale scelto è vuoto" #~ msgid "The chosen virtual name already exists" #~ msgstr "Il nome virtuale scelto esiste già" #~ msgid "The chosen folder is already shared" #~ msgstr "La cartella scelta è già condivisa" #~ msgid "Set Virtual Name" #~ msgstr "Imposta Nome Virtuale" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Inserisci nome virtuale per '%(dir)s':" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Il nome virtuale scelto è vuoto o esiste già" #~ msgid "The chosen folder is already shared." #~ msgstr "La cartella scelta è già condivisa." #, python-format #~ msgid "%s Properties" #~ msgstr "Proprietà di %s" #~ msgid "Finished rescanning shares" #~ msgstr "Indicizzazione dei condivisi completata" #~ msgid "Plugin List" #~ msgstr "Elenco Estensioni" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Errore di indicizzazione per %(path)s: %(error)s" #~ msgid "Show _Log Pane" #~ msgstr "Mostra Pannello Registro" #~ msgid "Addresses" #~ msgstr "Indirizzi" #~ msgid "Handler" #~ msgstr "Gestore" #~ msgid "Could not enable plugin." #~ msgstr "Impossibile attivare l'estensione." #~ msgid "Could not disable plugin." #~ msgstr "Impossibile disattivare l'estensione." #~ msgid "Transfers" #~ msgstr "Trasferimenti" #~ msgid "Ban List" #~ msgstr "Lista Bloccati" #~ msgid "Ignore List" #~ msgstr "Lista Ignorati" #~ msgid "Censor & Replace" #~ msgstr "Censura & Sostituisci" #~ msgid "Completion" #~ msgstr "Completamento" #~ msgid "Categories" #~ msgstr "Categorie" #~ msgid "Upload Folder To…" #~ msgstr "Carica Cartella In…" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Carica Sottocartelle In…" #~ msgid "Download _Recursive" #~ msgstr "Scarica Sottocartelle" #~ msgid "Download R_ecursive To…" #~ msgstr "Scarica Sottocartelle In…" #~ msgid "Up_load File(s)" #~ msgstr "Carica File" #, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Errore nel tentativo di mostrare la cartella '%(folder)s', errore " #~ "riportato: %(error)s" #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Seleziona Destinazione per Download Cartella con Sotto-cartelle " #~ "dall'Utente" #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Seleziona Destinazione per Download Cartella dall'Utente" #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Seleziona Destinazione per Download File dall'Utente" #~ msgid "Wishes" #~ msgstr "Desideri" #~ msgid "privileged" #~ msgstr "privilegiato" #~ msgid "prioritized" #~ msgstr "prioritario" #~ msgid "Blocked IP Addresses" #~ msgstr "Indirizzi IP Bloccati" #~ msgid "Complete buddy names" #~ msgstr "Completa nome amici" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Completa nomi utente nelle chat" #~ msgid "Complete room names" #~ msgstr "Completa nomi canale" #~ msgid "Drop-down List" #~ msgstr "Menu a Tendina" #~ msgid "File Manager command ($ for file path):" #~ msgstr "Comando per il Gestore file ($ per percorso file):" #~ msgid "Media Player command ($ for file path):" #~ msgstr "Comando Media Player ($ per percorso file):" #~ msgid "Ignored IP Addresses" #~ msgstr "Indirizzi IP Ignorati" #~ msgid "Display timestamps" #~ msgstr "Mostra marcatura temporale" #~ msgid "Notification Popups" #~ msgstr "Notifiche" #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Mostra notifica quando un file ha terminato il download" #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Mostra notifica quando una cartella ha terminato il download" #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Mostra notifica quando ricevi un messaggio privato" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "Mostra notifica quando qualcuno invia un messaggio in una chat" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Mostra notifica quando vieni menzionato in una chat" #~ msgid "Tray" #~ msgstr "Vassoio" #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Le corrispondenze con $ saranno sostituite dal link. Nei casi in cui non " #~ "è stato configurato un protocollo, verrà utilizzato il browser Web " #~ "predefinito di sistema." #~ msgid "Handler:" #~ msgstr "Associazioni:" #~ msgid "Primary Tabs" #~ msgstr "Schede Primarie" #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Abilita descrizioni per percorso file nelle viste di ricerca e " #~ "trasferimento" #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Visualizza il percorso completo del file di un risultato di ricerca o di " #~ "un trasferimento file al passaggio del mouse sul percorso di cartella o " #~ "sul nome del file." #~ msgid "Show privately shared files in user shares" #~ msgstr "Mostra file condivisi privatamente nelle condivisioni utente" #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Altri client possono offrire un'opzione per inviare file condivisi " #~ "privatamente quando si esplorano le loro condivisioni. Le cartelle " #~ "contenenti tali file hanno il prefisso '[PRIVATE FOLDER]' e non possono " #~ "essere scaricate a meno che l'autore dell'upload non dia " #~ "un'autorizzazione esplicita." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censura & Sostituisci" #~ msgid "Show _Debug Log Controls" #~ msgstr "Mostra Controlli Registro Debug" #~ msgid "Debug Logging" #~ msgstr "Registrazione Debug" #~ msgid "Virtual Name" #~ msgstr "Nome Virtuale" #~ msgid "Edit Virtual Name" #~ msgstr "Modifica Nome Virtuale" #~ msgid "Copy Folder URL" #~ msgstr "Copia URL Cartella" #~ msgid "Download _To…" #~ msgstr "Scarica In…" #~ msgid "Download" #~ msgstr "Download" #~ msgid "Upload" #~ msgstr "Upload" #~ msgid "Upload Folder's Contents" #~ msgstr "Carica Contenuto Cartella" #~ msgid "Rename" #~ msgstr "Rinomina" #~ msgid "File Lists" #~ msgstr "Liste File" #~ msgid "Copy File Path" #~ msgstr "Copia Percorso File" #~ msgid "R_emove Wish" #~ msgstr "Rimuovi D_esiderio" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "'%s' non è una cartella, estensioni non caricate." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Indicizzazione condivisi con amici…" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Indicizzazione dei condivisi con amici completata" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Il tuo amico, %s, sta provando a inviarti dei file." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s non è autorizzato a inviarti file, ma ci sta provando comunque. Avviso " #~ "Inviato." #~ msgid "Client Version" #~ msgstr "Versione Client" #, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Quanti giorni di privilegi assegnare all'utente %s?" #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Gli amici avranno una priorità maggiore nella coda, la stessa degli " #~ "utenti globali privilegiati." #~ msgid "Privileged" #~ msgstr "Privilegiato" #~ msgid "_Privileged" #~ msgstr "_Privilegiati" #~ msgid "Comments" #~ msgstr "Commenti" #~ msgid "Edit _Comments…" #~ msgstr "Modifica _Commenti…" #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Crea sottocartelle in base all'utente da cui stai scaricando e memorizza " #~ "il file / cartella scaricato lì." #~ msgid "Login Details" #~ msgstr "Dettagli Accesso" #~ msgid "Advanced" #~ msgstr "Avanzate" #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Intervallo di rinnovo della mappatura delle porte in ore:" #~ msgid "Enable buddy-only shares" #~ msgstr "Abilita solo condivisi con amici" #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "I file saranno inviati nell'ordine di accodamento." #~ msgid "Rescanning normal shares…" #~ msgstr "Indicizzazione dei condivisi…" #~ msgid "Finished rescanning public shares" #~ msgstr "Indicizzazione dei condivisi con tutti completata" #~ msgid "Scanning Buddy Shares" #~ msgstr "Indicizzazione Condivisi con Amici" #~ msgid "_Rescan Public Shares" #~ msgstr "Indicizza Condivisi con Tutti" #~ msgid "Rescan B_uddy Shares" #~ msgstr "Indicizza Condivisi con Amici" #~ msgid "Rescan Public Shares" #~ msgstr "Indicizza Condivisi con Tutti" #~ msgid "Rescan Buddy Shares" #~ msgstr "Indicizza Condivisi con Amici" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Abilita condivisi privati a cui possono accedere solo gli utenti del tuo " #~ "elenco di amici. Se disabilitato, gli utenti potranno accedere solo ai " #~ "condivisi con tutti." #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Spunta ogni cartella condivisa come solo con amici" #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Ignora opzioni di condivisione, utile se è necessario impedire " #~ "temporaneamente l'accesso pubblico alle condivisioni." #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Solo gli utenti contrassegnati come attendibili nel tuo elenco di amici " #~ "possono accedere ai condivisi con amici." #~ msgid "Filtered out excluded search result " #~ msgstr "Risultati di ricerca esclusi dal filtro " #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Risultati di ricerca inesatti o incorretti esclusi dal filtro " #, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "L'impostazione salvata '%(key)s' non è più presente nell'estensione " #~ "'%(name)s'" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "L'estensione %(module)s presenta un insolito valore di ritorno, " #~ "'%(value)s', ignorato" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Cache inconsistente per '%(vdir)s', rigenero '%(dir)s'" #, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Rimozione della cartella mancante %(dir)s" #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+ ti permette di condividere cartelle direttamente dal tuo " #~ "computer. Tutti i contenuti di queste cartelle (ad eccezione dei dotfile) " #~ "possono essere scaricati da altri utenti sulla rete Soulseek. Le " #~ "condivisioni pubbliche sono disponibili per ogni utente, mentre gli " #~ "utenti della lista amici possono accedere ai tuoi condivisi con amici " #~ "oltre a quelli condivisi con tutti." #, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Tutti i messaggi personali / di bacheca di %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Imposta il messaggio personale" #~ msgid "Show all the tickers" #~ msgstr "Mostra tutti i messaggi personali" #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Scansione dei condivisi fallita. Se Nicotine+ è attualmente in " #~ "esecuzione, chiudi il programma prima di indicizzare." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Sei sicuro di voler uscire da Nicotine+ ora?" #~ msgid "Receive a User's IP Address" #~ msgstr "Ricevi Indirizzo IP da Utente" #~ msgid "Receive a User's Info" #~ msgstr "Ricevi Dettagli da Utente" #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "Il server ci proibisce di fare ricerche dalla lista dei desideri." #, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Il database dei tuoi condivisi è corrotto. Reindicizza i tuoi condivisi e " #~ "segnala qualsiasi potenziale problema di indicizzazione agli " #~ "sviluppatori. Errore: %s" #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Tieni presente che alcuni nomi utente potrebbero essere utilizzati. In " #~ "questo caso, ti verrà chiesto di cambiare il tuo nome utente quando ti " #~ "connetti alla rete." #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "Inserisci il nome utente della persona su cui ricevere dettagli" #~ msgid "Add user 'user' to your user list" #~ msgstr "Aggiungi l'utente 'utente' alla tua lista degli utenti" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Rimuovi l'utente 'utente' dalla lista dei bloccati" #~ msgid "Request user info for user 'user'" #~ msgstr "Richiesta dei dettagli utente per l'utente 'utente'" #~ msgid "Add user to your user list" #~ msgstr "Aggiungi utente alla tua lista utenti" #~ msgid "Remove user from your user list" #~ msgstr "Rimuovi utente dalla tua lista utenti" #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Rispondi alle richieste di ricerca che contengono un numero minimo di " #~ "caratteri:" #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Agli utenti in coda verrà inviato un file alla volta in modo ciclico." #~ msgid "" #~ "Could not execute now playing code. Are you sure you picked the right " #~ "player?" #~ msgstr "" #~ "Impossibile eseguire la funzione Sta Ascoltando. Sei sicuro di aver " #~ "scelto il player giusto?" #~ msgid "/leave /l /part /p" #~ msgstr "/leave /l /part /p" #~ msgid "/clear /cl" #~ msgstr "/clear /cl" #~ msgid "/tick /t" #~ msgstr "/tick /t" #~ msgid "/tickers" #~ msgstr "/tickers" #~ msgid "/now" #~ msgstr "/now" #~ msgid "/away /a" #~ msgstr "/away /a" #~ msgid "/quit /q /exit" #~ msgstr "/quit /q /exit" #~ msgid "/close /c" #~ msgstr "/close /c" #~ msgid "/add /ad" #~ msgstr "/add /ad" #~ msgid "/rem /unbuddy" #~ msgstr "/rem /unbuddy" #~ msgid "/ban" #~ msgstr "/ban" #~ msgid "/unban" #~ msgstr "/unban" #~ msgid "/ignore" #~ msgstr "/ignore" #~ msgid "/unignore" #~ msgstr "/unignore" #~ msgid "/browse /b" #~ msgstr "/browse /b" #~ msgid "/whois /w" #~ msgstr "/whois /w" #~ msgid "/ip" #~ msgstr "/ip" #, python-format #~ msgid "The password you've entered is invalid for user %s" #~ msgstr "La password che hai inserito non è valida per l'utente %s" #~ msgid "" #~ "You can create a new Soulseek account or log in to an existing one by " #~ "entering your desired details below. Please keep in mind that some " #~ "usernames may already be taken. If you're unable to connect with your " #~ "selected username, try choosing another one." #~ msgstr "" #~ "Puoi creare un nuovo account inserendo i dettagli desiderati qui sotto. " #~ "Ricordati che alcuni nomi utente potrebbero già esistere. Se non riesci a " #~ "collegarti col nome da te selezionato, provane un altro." #~ msgid "Find..." #~ msgstr "Trova..." #~ msgid "Queued..." #~ msgstr "In coda..." #~ msgid "Clear All..." #~ msgstr "Pulisci Tutto..." #~ msgid "Close All Tabs..." #~ msgstr "Chiudi Tutte le Schede..." #~ msgid "Edit _Comments..." #~ msgstr "Modifica _Commenti..." #~ msgid "_Add..." #~ msgstr "_Aggiungi..." #~ msgid "Room..." #~ msgstr "Canale..." #~ msgid "Username..." #~ msgstr "Nome utente..." #~ msgid "Add Wish..." #~ msgstr "Aggiungi Desiderio..." #~ msgid "Include text..." #~ msgstr "Includi testo..." #~ msgid "Exclude text..." #~ msgstr "Escludi testo..." #~ msgid "File type..." #~ msgstr "Tipo di file..." #~ msgid "Bitrate..." #~ msgstr "Bitrate..." #~ msgid "Add..." #~ msgstr "Aggiungi..." #~ msgid "Edit..." #~ msgstr "Modifica..." #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK.\n" #~ "You should install GTK %s or newer." #~ msgstr "" #~ "Stai usando una versione non supportata di GTK.\n" #~ "Dovresti installare GTK %s o più recente." #~ msgid "_Search Files" #~ msgstr "Cerca _file" #~ msgid "_Downloads" #~ msgstr "_Download" #~ msgid "User I_nfo" #~ msgstr "I_nformazioni Utente" #~ msgid "_Private Chat" #~ msgstr "Chat _Privata" #~ msgid "Buddy _List" #~ msgstr "_Lista Amici" #~ msgid "_Chat Rooms" #~ msgstr "Canali _Chat" #~ msgid "_Interests" #~ msgstr "_Interessi" #~ msgid "_Modes" #~ msgstr "_Schede" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "Nascondi %(tab)s" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Non è stato possibile ottenere il tuo indirizzo IP dal server" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Il tuo indirizzo IP è %(ip)s" #~ msgid "Geo Block" #~ msgstr "Blocco Geografico" #~ msgid "Away Mode" #~ msgstr "Modalita Assente" #~ msgid "URL Catching" #~ msgstr "Gestione URL" #~ msgid "Check _Port Status" #~ msgstr "Controlla Stato _Porta" #~ msgid "_Clear All..." #~ msgstr "Pulisci Tutto..." #~ msgid "Free Sl_ot" #~ msgstr "Sl_ot Libero" #~ msgid "Search result filter help" #~ msgstr "Aiuto filtro di ricerca" #~ msgid "" #~ "Geo Block controls from which countries users are allowed access to your " #~ "shares." #~ msgstr "" #~ "Il Blocco Geografico controlla da quali paesi gli utenti possono accedere " #~ "ai tuoi condivisi." #~ msgid "Enable geographical blocker" #~ msgstr "Abilita il blocco geografico" #~ msgid "" #~ "If the source country of an IP address cannot be determined, it will be " #~ "blocked." #~ msgstr "" #~ "Se il paese di origine di un indirizzo IP non può essere determinato, " #~ "verrà bloccato." #~ msgid "Countries" #~ msgstr "Paesi" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "MPRIS (v2)" #~ msgstr "MPRIS (v2)" #~ msgid "ListenBrainz" #~ msgstr "ListenBrainz" #~ msgid "Enable URL catching" #~ msgstr "Abilita cattura URL" #~ msgid "Humanize slsk:// URLs" #~ msgstr "Semplifica URL slsk://" #~ msgid "Protocol Handlers" #~ msgstr "Gestori Protocollo" #~ msgid "Decimal separator:" #~ msgstr "Separatore di decimali:" #~ msgid "" #~ msgstr "" #~ msgid "" #~ msgstr "" #~ msgid "Clicked usernames reveal the user context menu." #~ msgstr "Il click sui nomi utente mostrano il menu contestuale utente." #, python-format #~ msgid "Active listening port is %(port)s" #~ msgstr "La porta di ascolto attiva è %(port)s" #~ msgid "Censor List" #~ msgstr "Lista di Censura" #~ msgid "Auto-Replace List" #~ msgstr "Lista Auto-Sostituzione" #~ msgid "Get Soulseek _Privileges..." #~ msgstr "Ottieni _Privilegi Soulseek..." #~ msgid "" #~ "Wishlist items are auto-searched at regular intervals, useful for " #~ "discovering uncommon files." #~ msgstr "" #~ "Gli elementi della lista dei desideri vengono ricercati automaticamente " #~ "periodicamente, utile per scoprire file non comuni." #~ msgid "" #~ "Enable automatic replacement of chat words you've typed incorrectly or as " #~ "an acronym" #~ msgstr "" #~ "Abilita sostituzione automatica delle parole in chat non correttamente " #~ "scritte o come acronimo" #~ msgid "Custom ban message:" #~ msgstr "Messaggio di blocco personalizzato:" #~ msgid "Use custom Geo Block message:" #~ msgstr "Usa messaggio personalizzato per il Blocco Geografico:" #~ msgid "Sent to users as the reason for being blocked." #~ msgstr "Inviato agli utenti come motivo del blocco." #~ msgid "" #~ "Instances of $ will be replaced by the link, add empty handlers to use " #~ "the system default web browser." #~ msgstr "" #~ "Le corrispondenze con $ saranno sostituite dal link, aggiungi " #~ "associazioni vuote per usare il browser predefinito di sistema." #~ msgid "Show _Buttons in Transfer Tabs" #~ msgstr "Mostra Pulsanti nelle Schede Trasferimento" #~ msgid "" #~ "Nicotine+ will still work to some degree if your port is closed. However, " #~ "do keep in mind that you won't be able to connect to users whose port is " #~ "also closed." #~ msgstr "" #~ "Nicotine+ funzionerà ancora in una certa misura a porta chiusa. Tuttavia, " #~ "tieni presente che non sarai in grado di connetterti agli utenti la cui " #~ "porta è chiusa." #~ msgid "" #~ "Sharing files is crucial for the health of the Soulseek network. Many " #~ "people will ban you if you download from them without sharing anything " #~ "yourself." #~ msgstr "" #~ "La condivisione dei file è fondamentale per la salute della rete Soulseek " #~ "e molte persone ti bloccheranno se scarichi da loro senza condividere " #~ "nulla." #~ msgid "Interface" #~ msgstr "Interfaccia" #~ msgid "Show Buttons in Transfer Tabs" #~ msgstr "Mostra Pulsanti nelle Schede Trasferimento" #~ msgid "Show _Flag Columns in User Lists" #~ msgstr "Mostra Bandiere nelle Liste Utente" #, python-format #~ msgid "" #~ "Unable to fully disable plugin %(module)s\n" #~ "%(exc_trace)s" #~ msgstr "" #~ "Impossibile disabilitare completamente l'estensione %(module)s\n" #~ "%(exc_trace)s" #, python-format #~ msgid "UPnP exception: %(error)s" #~ msgstr "Eccezione UPnP: %(error)s" #~ msgid "Failed to automate the creation of UPnP Port Mapping rule." #~ msgstr "" #~ "Creazione automatica della regola di Mappatura Porte tramite UPnP fallita." #~ msgid "Show Flag Columns in User Lists" #~ msgstr "Mostra Bandiera nelle Liste Utente" #~ msgid "File _Properties" #~ msgstr "_Proprietà File" #~ msgid "File P_roperties" #~ msgstr "P_roprietà File" #~ msgid "Abor_t" #~ msgstr "Annulla" nicotine-plus-3.3.4/po/lt.po000066400000000000000000007410001461625273200157210ustar00rootroot00000000000000# Copyright (C) 2006-2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-07-25 18:31+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " "19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " "1 : 2);\n" "X-Generator: Weblate 5.0-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 #, fuzzy msgid "Soulseek Client" msgstr "Soulseek klientas" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 #, fuzzy msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafinis klientas Soulseek peer-to-peer tinklo" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;dalijimasis;muzika; P2P;lygiaverčiai; GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafinis klientas Soulseek peer-to-peer tinklo" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ yra grafinis klientas Soulseek peer-to-peer tinklo." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ siekia būti malonus, nemokamas ir atviro kodo (FOSS) alternatyva " "oficialiam Soulseek klientui, suteikiant papildomą funkcionalumą, išlaikant " "naujausią soulseek protokolą." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Ieškos failai" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Atsiuntimai" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Bro_wse Buddy Akcijos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Asmeninis pokalbis" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ komanda" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Įvykdyta: %s" #: pynicotine/__init__.py:56 #, fuzzy msgid "show this help message and exit" msgstr "rodyti šį žinyno pranešimą ir išeiti" #: pynicotine/__init__.py:59 #, fuzzy msgid "file" msgstr "failas" #: pynicotine/__init__.py:60 #, fuzzy msgid "use non-default configuration file" msgstr "naudoti nenumatytą konfigūracijos failą" #: pynicotine/__init__.py:63 #, fuzzy msgid "dir" msgstr "Dir" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "naudoti nenumatytąjį priedų katalogą" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "paleisti programą nerodant lango" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "Ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "susieti lizdus su pateiktu IP (naudinga VPN)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "uostas" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "klausytis nurodytame prievade" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "Perskanuoti viešinius" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "paleisti programą be galvos režimu (be GUI)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "rodyti versiją ir išeiti" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Naudojate nepalaikomą Python versiją (%(old_version)s).\n" "Turėtumėte įdiegti Python %(min_version)s arba naujesnę." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Nepavyko nuskaityti bendrinimo elementų. Uždarykite kitus Nicotine+ " "egzempliorius ir bandykite dar kartą." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Naudotojo %s nėra" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Naudotojas %s prisijungęs" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Naudotojas %s atsijungęs" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Bičiulių sąrašas" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Jūs buvote įtrauktas į privatų kambarį: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Pokalbio pranešimas iš vartotojo „%(user)s“ kambaryje „%(room)s“: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Nepavyko sukurti aplanko „%(path)s“, gauta klaida: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Klaida kuriant atsarginę konfigūracijos kopiją: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Config atsarginę kopiją: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Nicotine+ versija %s" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Nicotine+ versija %s" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "Nutraukti" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "programos uždarymas" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Nicotine+ versija %s" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "Prieš prijungdami turite nurodyti vartotojo vardą ir slaptažodį…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Klaida: Atsiuntimų filtravimas nepavyko! Patikrinkite filtrus: Priežastis: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Klaida: %(num)d Atsiuntimų filtravimas nesėkmingas! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s atsiųsta iš %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Atsisiųstas failas" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Įvykdyta: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "KLAIDA: nepavyko įvykdyti „%(command)s“: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s atsiųsta iš %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Aplankas atsisiųstas" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Įvykdyta aplanke: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Nepavyko perkelti „%(tempfile)s“ į „%(file)s“: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Atsiuntimo aplanko klaida" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Atsiųsta: naudotojas %(user)s, failas %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Atsiuntimas nutrauktas, naudotojas %(user)s failas %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Atsiuntimo I/O klaida: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Nepavyksta gauti išskirtinio failo užrakto - I/O klaida: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Neįmanoma įrašyti failo %(path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Pradėtas atsiuntimas: naudotojas %(user)s, failas %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Nepavyksta rasti %s, įdiekite jį." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Nėra grafinės aplinkos, naudojamas be galvutės (be GUI) režimas" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Prisijungti" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Atsijungti" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "_Privilegijuotas" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Preferences" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Quit" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Browse viešosios akcijos" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Bro_wse Buddy Akcijos" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Bro_wse Buddy Akcijos" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "Perskanuoti viešinius" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Configure Akcijos" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Keyboard nuorodos" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Setup asistentas" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "_Transfer statistika" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Pranešti apie _Bug" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Pagerinkite T_vertimus" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "Apie _Nicotine+\"" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Failas" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Shares" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Help" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Bro_wse Buddy Akcijos" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Neįmanoma parodyti pranešimo iššokančiojo meniu: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Ar tikrai norite išeiti?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Ar tikrai norite išeiti?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "Ne" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Vykdyti fone" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "_Uždarykite Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Akcijų nėra" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Patikrinkite, ar prijungti išoriniai diskai ir ar teisingi aplanko leidimai." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Cancel" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Bandyti dar kartą" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Priverstinis nuskaitymas iš naujo" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Slaptažodis:" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Vartotojas %s jau yra, o įvestas slaptažodis neleistinas. Pasirinkite kitą " "naudotojo vardą, jei tai pirmas kartas, kai prisijungiate." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Keisti prisijungimo duomenis" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Pranešimas atsisiunčiantiems vartotojams" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Siųsti asmeninę žinutę visiems vartotojams, kurie atsisiunčia iš jūsų:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Siųsti žinutę" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Žinutės" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Siųsti asmeninę žinutę visiems prisijungusiems draugams:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Įrašyto bendrai naudojamo sąrašo failo pasirinkimas" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kritinė klaida" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ susidūrė su kritine klaida ir turi išeiti. Nukopijuokite šį " "pranešimą ir įtraukite jį į pranešimą apie klaidą:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Uždarykite Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Kopijuoti & pranešti apie klaidą" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Būsena" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Valstybė" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Naudotojas" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Greitis" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Failai" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Patikimas" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Pranešti" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Pirmenybė teikiama" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Vėliausiai matytas" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Pastaba" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Pridėti naudotoją _Pastaba…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Pašalinti" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Niekada nematytas" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Pridėti vartotojo pastabą" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Įtraukite kelias pastabas, susietas su vartotoju %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Add…" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Pokalbių kambariai" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Ar tikrai norite sukurti naują kambarį \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Padarykite kambarį privatų" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Sear_ch vartotojo failai" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Rasti" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopijuoti" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopijuoti viską" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Valyti veiklos rodinį" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "_Leave kambarys" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Kopijuoti _URL" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Peržiūrėti kambario žurnalą" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Naikinti kambario žurnalą…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Valyti pranešimo rodinį" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s prisijungė prie kambario" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s paminėjo jus kambaryje %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(user)s paminėjo jus kambaryje %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "%(user)s paminėjo jus kambaryje %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s išėjo iš kambario" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s pasitraukė" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s grįžo" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Naikinti užregistruotus pranešimus?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Ar tikrai norite visam laikui panaikinti visus užregistruotus šio kambario " "pranešimus?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Džibutis" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Įvykdyta: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Nuskaitant naujausią versiją įvyko klaida" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Atnaujinti" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Tikrinti _Latest versiją" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "_Setup asistentas" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtualus aplankas" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Aplankas" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Baigta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Kitas" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Bendrinamo aplanko įtraukimas" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "V_iešiniai" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Įveskite naują virtualų pavadinimą \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Įvertinimas" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Failo ypatybės" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "%(total)i failo ypatybės (%(num)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "%(total)i failo ypatybės (%(num)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Vartoti" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Pridėti…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Redaguoti…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "%s Nustatymai" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Elementas" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Pomėgiai" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Nežinoma" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Tikrinti prievado būseną" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, prievadas %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Slaptažodžio keitimas atmestas" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Įveskite naują \"Soulseek\" paskyros slaptažodį:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Šiuo metu esate atsijungę nuo Soulseek tinklo. Jei norite pakeisti esamos " "Soulseek paskyros slaptažodį, turite būti prisijungę prie tos paskyros." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Įveskite slaptažodį, kuris bus naudojamas prisijungiant:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Slaptažodis:" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Slaptažodžio keitimas atmestas" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Niekas" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Visi" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Pas bičiulius" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Patikimi naudotojai" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Nieko" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Kitas failas" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "failų tvarkytuvo _Open" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Ieškoti" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Sulaikyta" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Atnaujinti" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "_Browse aplankas (-ai)" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaksė: neskiriamos didžiosios ir mažosios raidės. Jei įjungta, " "Python įprastos išraiškos gali būti naudojamos, kitu atveju palaikomos tik " "pakaitos simbolio * atitiktys." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtruoti" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Keiskite šį atsiuntimo filtrą:" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Įveskite naują atsiuntimo filtrą:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Įgalinti reguliariąsias išraiškas" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Keisti filtrą" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Keiskite šį atsiuntimo filtrą:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Nepavyko! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtrai sėkmingi" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Nutraukti" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Bandyti dar kartą" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "First In, First Out" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Naudotojo vardas" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Blokuoti IP adresą..." #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Nepaisyti vartotojo" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Nepaisyti IP adreso..." #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* yra kaitos simbolis" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Uždrausti vartotoją" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Blokuoti IP adresą..." #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Šablonas" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Pakeitimas" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Šablonas" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Įveskite modelį, kurį norite cenzūruoti. Pridėkite tarpų aplink modelį, jei " "nenorite suderinti žodžių eilučių (gali nepavykti eilučių pradžioje ir " "pabaigoje)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Cenzūruoti modeliai" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Pakeitimas" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Įveskite atitinkamai teksto šabloną ir pakeitimą:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Pakeitimas" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Numatytoji" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Užveriant pagrindinį langą, rodyti patvirtinimo dialogą" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Vykdyti fone" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "drąsus" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "Pasvirasis" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "Pabrėžti" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "įprastas" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Žinutės" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Bičiulių sąrašas kambariuose" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Viršuje" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Apačioje" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Kairėje" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Dešinėje" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Prisijungęs" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Pasitraukęs" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Atsijungęs" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Slaptažodžio keitimas atmestas" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Pabrėžti" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Langas:" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Prisijungta:" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Išvykęs (dėklas)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Atsijungęs" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Žinutės" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokolas" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Komentaras" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Valdiklis" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Įveskite atitinkamai URL dalyvės protokolą ir komandą:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Taisyti komentarus" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Įveskite naują virtualų pavadinimą \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Naudotojo vardas" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "Kliento vardas (pvz., amarok, įžūlus, exaile) arba tuščias auto:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Vartotojo vardas:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Komentaras" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Pavadinimas" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Dabar grojama (paprastai „%(artist)s - %(title)s“)" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Atlikėjas" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Trukmė" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitų dažnis" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Komentaras" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Albumas" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Takelio numeris" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Metai" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Failo pavadinimas (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Įjungta" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Įskiepiai" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Nepasirinktas priedas" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Tinklas" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Sąsaja" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "V_iešiniai" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Išsiuntimai" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Paieškos" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Vartotojo naršymas" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Pokalbis" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Dabar leidžiama" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Žurnalų vedimas" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Užblokuoti naudotoją(us)" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Nepaisomi naudotojai:" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Įskiepiai" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "Valdiklis" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Nuostatos" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Pasirinkite konfigūracijos atsarginės kopijos failo vardą" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Perkelti statistiką" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Iš viso nuo %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Iš naujo nustatyti perkėlimo statistiką?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Ar tikrai norite iš naujo nustatyti perkėlimo statistiką?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "Ieškoti pageidavimų sąraše" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Noras" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Ieškoti failų" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Įvertinimas" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Įveskite naują virtualų pavadinimą \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Išvalyti pageidavimų sąrašą?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Ar tikrai norite išvalyti savo pageidavimų sąrašą?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Kelias" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Resume" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "Sulaikyta" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Išvalyti baigtus / nutrauktus" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Baigta" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Sulaikyta" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Atfiltruota" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Ištrinta" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "Eilėje" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Viskas…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Valyti atsisiuntimus eilėje" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Atsiuntimai" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Atsisiųsti %(num)i failus?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Ar tikrai norite atsisiųsti %(num)i failus iš %(user)s aplanko %(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Download aplankas" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Mėgsta" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Mėgsta" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Įvertinimas" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Elementas" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "%s rekomendacijos" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "Aš _Like Tai" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "Aš _Dislike Tai" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Rekomendacijas" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Panašūs vartotojai" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Rekomendacijas" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Panašūs vartotojai" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Asmeninė žinutė nuo %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Rasti pageidavimų sąrašo rezultatai" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Vartotojo naršymas" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Pokalbių kambariai" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Pomėgiai" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Pokalbis" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "Prisijungimai" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "Žinutės" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "Siuntimai" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "Įvairūs" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Rasti" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopijuoti" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopijuoti viską" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Peržiūrėti derinimo žurnalus" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Peržiūrėti perkėlimo žurnalą" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategorijos" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Valyti žurnalo rodinį" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Parsisiųsti: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Įkeliama: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Skenuojami viešiniai" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Skenuojami viešiniai" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Siųsti žinutę" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Kambarys" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Naudotojai" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Prisijungti prie kambario" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Palikti kambarį" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Nebeturėti asmeninio kambario" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Atšaukti kambario narystę" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Uždaryti visus skirtukus…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "skirtukas _Close" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Peržiūrėti pokalbių žurnalą" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Naikinti pokalbių žurnalą…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Siuntimai" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Ar tikrai norite visam laikui panaikinti visus šio vartotojo užregistruotus " "pranešimus?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Atsiųsta žinučių, kol buvote atsijungę. Laiko įrašus praneša serveris, " "todėl jie gali būti neteisingi." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Visur" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Pas bičiulius" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Kambariuose" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Naudotojas" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "Eilėje" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Failo tipas" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Failo pavadinimas" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Dydis" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kokybė" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopijuoti _File maršrutą" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopijuoti _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Kopijuoti aplanko U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Download Failas (-ai)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Atsisiųsti failą (-us) _To…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Atsisiųsti _Folder (-us)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Atsisiųsti F_older (-us) į…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Na_ršyti naudotoją" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Browse aplankas (-ai)" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "Savybės" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopijuoti ieškos terminą" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Valyti visus rezultatus" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Valyti filtro retrospektyvą" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Patikrinti filtrus" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIVATUS]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Result filtrai [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "Patikrinti filtrus" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Valyti visus aktyvius filtrus" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Pridėti Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Pašalinti alternatyvų vardą" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Pasirinkite naudotojų siuntimus" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Bendras" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Rezultatai" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Pasirinkite failo (-ų) atsisiuntimo iš vartotojo paskirties vietą" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Pasirinkite aplanką" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Eilėje" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "teikiama pirmenybė" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "(privilegijuotas)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Gaunama būsena" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Siunčiama" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Porininkas nutraukė ryšį" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Prisijungimai" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Naudotojas atsijungęs" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Atšaukti" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Atsiuntimo aplanko klaida" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Vietinio failo klaida" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Užblokuotas" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Failas neviešinamas" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Laukiama išjungimo" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Siuntimai" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Eilėje" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Procentai" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Praėjęs laikas" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Laikas kairėje" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "Blokavimo sąrašas" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Atidaryti naudojant failų _Manager" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "_Search" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Valyti viską" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Pasirinkite naudotojų siuntimus" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "Nutraukti" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Išvalyti baigtus / nutrauktus" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Išvalyti baigtus / nutrauktus" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Nepavyko" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Naudotojas atsijungęs" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Valyti eilėje įrašytus nusiuntimus" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Valyti visus įkėlimus" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Save akcijų sąrašą į diską" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Įkelti aplanką (su poaplankiais) vartotojui" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopijuoti _Folder maršrutą" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Atsisiųsti _Folder (-us)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Atsisiųsti F_older (-us) į…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Failo pavadinimas" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Up_load Failas (-ai)" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Nusiųsti aplanką į…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Atsiuntimo aplanko klaida" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Vartotojo bendrinamų failų sąrašas tuščias. Vartotojas nieko nebendrina arba " "bendrai dalijasi failais privačiai." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Neįmanoma prašyti bendrai naudojamų failų iš vartotojo. Vartotojas yra " "neprisijungęs, abu turite uždarytą klausymosi prievadą arba yra laikina " "ryšio problema." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Pasirinkite aplanko atsisiuntimo iš vartotojo paskirties vietą" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Įkelti aplanką (su poaplankiais) vartotojui" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Nusiųsti aplanką į…" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Išsiuntimai" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Pasirinkite failo (-ų) atsisiuntimo iš vartotojo paskirties vietą" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Nusiųsti failą (-us)" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Nuotraukų:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Įrašyti paveikslėlį" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Nepavyko įkelti vartotojo %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Neįmanoma prašyti informacijos iš vartotojo. Abu turite uždarytą klausymosi " "prievadą, vartotojas yra neprisijungęs arba yra laikina ryšio problema." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Pašalinti alternatyvų vardą" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Pridėti bičiulį…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Uždrausti vartotoją" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Nepaisyti vartotojo" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Taip" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Ne" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Įveskite sveikąjį skaičių!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Dovanokite savo „Soulseek“ privilegijas vartotojui %(user)s (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "liko %(days)s" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Suteikti privilegijas" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Suteikti privilegijas" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Užvėrimo mygtukai kortelėse" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_ Taip" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "Gerai" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Pasirinkite failą" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Pasirinkite aplanką" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Žymėti viską" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Pasirinkite vaizdą" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Visi vaizdai" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Įrašyti kaip…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Nėra)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "skirtukas _Close" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Uždaryti visus skirtukus?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Neskaityti skirtukai" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Uždaryti visus skirtukus?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "skirtukas _Close" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Pasirinktas (-i) failas (-ai)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Ieškoti failų" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Pridėti bičiulį…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Rodyti IP A_ddress" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Privatūs kambariai" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Pašalinti iš asmeninio kambario %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Įtraukti į asmeninį kambarį %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Pašalinti kaip %s operatorių" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Įtraukti kaip %s operatorių" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- viršuje seni pranešimai ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Įvykdyta: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Garsas" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Paveikslėlis:" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Archyvas" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Įvairūs" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Vaizdo įrašas" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokumentas/tekstas" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Įkeliant pasirinktinę piktogramą %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Paslėpti Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Rodyti Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Stulpelis #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Išgrupuota" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Grupuoti pagal aplanką" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Grupuoti pagal vartotoją" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Ar tikrai norite išeiti?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Vartotojas %s jau yra, o įvestas slaptažodis neleistinas. Pasirinkite kitą " "naudotojo vardą, jei tai pirmas kartas, kai prisijungiate." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Slaptažodis" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Norėdami sukurti naują Soulseek paskyrą, užpildykite norimą vartotojo vardą " "ir slaptažodį. Jei jau turite paskyrą, užpildykite esamus prisijungimo " "duomenis." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nepavyko perkelti „%(tempfile)s“ į „%(file)s“: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Neįmanoma įrašyti failo %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andora" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Jungtiniai Arabų Emyratai" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afganistanas" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigva & Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Angilija" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albanija" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Armėnija" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktida" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Amerikos Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Austrija" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australija" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Alandų salos" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Azerbaidžanas" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnija ir Hercegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbadosas" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladešas" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgija" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Fasas" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgarija" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahreinas" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundis" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Beninas" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Šventoji Barthelemy" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunėjaus Darusalamas" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivija" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius ir Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brazilija" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamos" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Butanas" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Bouvet sala" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botsvana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Baltarusija" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belizas" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kokosų (Keeling) salos" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Kongo Demokratinė Respublika" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Centrinės Afrikos Respublika" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongas" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Šveicarija" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Dramblio Kaulo Krantas" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Kuko Salos" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Čilė" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerūnas" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Kinija" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Kolumbija" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Kosta Rika" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verdė" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Kiurasao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Kalėdų sala" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Kipras" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Čekija" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Vokietija" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Džibutis" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Danija" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikos Respublika" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Alžyras" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ekvadoras" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estija" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egiptas" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Vakarų Sachara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrėja" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Ispanija" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopija" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Suomija" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fidžis" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Folklando salos (Malvinai)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronezija" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Farerų salos" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Prancūzija" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabonas" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Didžioji Britanija" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Gruzija" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Prancūzijos Gviana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Gernsis" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Gana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltaras" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grenlandija" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambija" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Gvinėja" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Gvadelupa" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Pusiaujo Gvinėja" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Graikija" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Pietų Džordžija & Pietų Sandvičo salos" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Gvatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guamas" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Bisau Gvinėja" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Gajana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Honkongas" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heard & McDonald salos" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Hondūras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroatija" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haitis" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Vengrija" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonezija" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Airija" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Izraelis" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Meno sala" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "Indija" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Britų Indijos vandenyno teritorija" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irakas" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Iranas" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Islandija" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italija" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Džersis" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordanija" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japonija" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenija" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgizija" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kambodža" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribatis" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komorai" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Sent Kitsas & Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Šiaurės Korėja" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Pietų Korėja" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuveitas" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Kaimanų salos" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazachstanas" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laosas" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libanas" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Sent Lusija" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Lichtenšteinas" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Šri Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberija" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotas" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Lietuva" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Liuksemburgas" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Latvija" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libija" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Marokas" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monakas" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldavija" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Juodkalnija" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Sent Martenas" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskaras" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Maršalo salos" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Šiaurės Makedonija" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Malis" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Mianmaras" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolija" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Makao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Šiaurės Marianų salos" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinika" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritanija" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montseratas" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauricijus" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldyvai" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malavis" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Meksika" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malaizija" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mozambikas" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibija" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Naujoji Kaledonija" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Nigeris" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolko sala" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigerija" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nikaragva" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Nyderlandai" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norvegija" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepalas" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niujė" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Naujoji Zelandija" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Omanas" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Prancūzijos Polinezija" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Naujoji Gvinėja" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filipinai" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistanas" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Lenkija" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Sen Pjeras & Mikelonas" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitkernas" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rikas" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Palestinos valstybė" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugalija" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paragvajus" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Kataras" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Reunionas" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Rumunija" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbija" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Rusija" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudo Arabija" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Saliamono Salos" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seišeliai" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudanas" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Švedija" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapūras" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Šv. Elenos sala" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovėnija" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbardas & Jan Majeno salos" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovakija" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Siera Leonė" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marinas" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegalas" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalis" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Surinamas" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Pietų Sudanas" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "San Tomė > Prinsipė" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "Salvadoras" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Sirija" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Esvatinis" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turksas > Kaiicoso salos" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Čadas" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Prancūzijos pietinės teritorijos" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togas" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Tailandas" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadžikija" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Rytų Timoras" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmėnistanas" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisas" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turkija" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidadas & Tobagas" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taivanas" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzanija" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "JAV Mažosios alyškios salos" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Jungtinės Amerikos Valstijos" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Urugvajus" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistanas" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Šventasis Sostas (Vatikano Miesto Valstybė)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Sent Vinsentas & Grenadinai" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venesuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Mergelių Salos (Didžioji Britanija)" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Mergelių Salos (JAV)" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnamas" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Volisas > Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemenas" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Majotas" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Pietų Afrika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambija" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabvė" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Pranešimo tekstas į kalbą nepavyko: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: pateikite Last.fm naudotojo vardą ir API raktą" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Grojamos dainos rodymo formatas:" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nepavyko prisijungti prie Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Nepavyko gauti naujausio takelio iš Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nepavyko rasti tinkamo MPRIS grotuvo" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Rasti keli MPRIS grotuvai: %(players)s. Naudojimas: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatiškai aptiktas MPRIS grotuvas: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "Išimtis apdorojant %(area)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Prašome pateikti savo ListenBrainz vartotojo vardą" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nepavyko prisijungti prie ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Jums neatrodo, kad klausytis nieko dabar" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Nepavyko gauti dabartinio takelio iš ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Tinklo ieškos" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Užbaigti įtaisytųjų komandų" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Neįmanoma prisijungti prie serverio. Priežastis: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Atsijungta nuo serverio %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Perjungia Jūsų nebuvimo būseną" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Įgalinti papildinius" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Išvalyti pokalbio langą" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Pasakykite ką nors trečiuoju asmeniu" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Paskelbkite šiuo metu grojamą dainą" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Prisijunkite arba sukurkite kambarį…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Išeiti iš kambario „kambarys“" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Pasakykite pranešimą nurodytame pokalbių kambaryje" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Asmeninis pokalbis" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Užverti esamą privatų pokalbį" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Naudotojo i_nformacija" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Siųsti asmeninę žinutę visiems prisijungusiems draugams:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Įtraukti naudotoją „naudotojas“ į užblokuotų sąrašą" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Pašalinti naudotoją „naudotojas“ iš užblokuotų sąrašo" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Naršyti naudotojo „naudotojas“ failus" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Naudotojo i_nformacija" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Parodyti naudotojo „naudotojas“ IP" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blokuoti ryšius iš vartotojo arba IP adreso" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Pašalinti naudotoją „naudotojas“ iš užblokuotų sąrašo" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Nutildyti pranešimus iš vartotojo arba IP adreso" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Pašalinti naudotoją „naudotojas“ iš nepaisomųjų sąrašo" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Pridėti Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Pašalinti alternatyvų vardą" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Perskanuoti viešinius" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Perskanuoti viešinius" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Pradėkite visuotinę failų paiešką" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Ieškoti failų ir aplankų (tikslus atitikimas)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Ieškoti failų ir aplankų (tikslus atitikimas)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Ieškoti „užklausa“ naudotojo viešiniuose" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Galimų %(num)i komandų sąrašas:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Pateikiamas %(num)i galimų komandų, atitinkančių „%(query)s“, sąrašas:" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Įveskite %(command)s, kad pateiktumėte panašias komandas" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Įveskite %(command)s, kad pateiktumėte galimas komandas" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s prisijungė prie kambario" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Užverti esamą privatų pokalbį" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Užblokuotas (%s)" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Užblokuotas (%s)" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Nepaisomi IP:" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Nepaisyti vartotojo" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Nepavyko įjungti įskiepio %s" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Neįmanoma įkelti priedo %(name)s. Papildinio aplanko pavadinime yra " "neleistinų simbolių: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Nesuderinama %(interface)s komanda papildinyje %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Nepavyko įjungti įskiepio %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Neįmanoma įkelti priedo %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Nepavyko įjungti įskiepio %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Neįmanoma iškrauti priedo %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Įskiepis %(module)s grąžino klaidą %(errortype)s: %(error)s.\n" "Pėdsakas: %(trace)s\n" "Klaidos sritis: %(area)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Saviaprašymas:" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Trūksta %s argumento" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Netinkamas SoulSeek meta-url: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Naudojimas: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Nežinoma komanda: %(command)s. Įveskite %(help_command)s, kad pateiktumėte " "galimas komandas." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "UPnP įrenginių nerasta" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Nepavyko persiųsti išorinio prievado %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: išorinis prievadas %(external_port)s sėkmingai persiųstas į vietinį IP " "adresą %(ip_address)s prievadą %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Asmeninė žinutė nuo %(user)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Ieškoma pageidavimų sąrašo elemento „%s“" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Pageidavimų sąrašo laukimo laikotarpis nustatytas kaip %s sekundės" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Vartotojas %(user)s ieško \"%(query)s\", grąžina %(num)i rezultatus" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Skenuojami bičiulių viešiniai" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Skenuojami bičiulių viešiniai" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Pakartotinis nuskaitymas baigtas: rasta %(num)s aplankų" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Iš naujo nuskaitant akcijas įvyko rimta klaida. Jei problema kartosis, " "panaikinkite %(dir)s/*.db ir bandykite dar kartą. Jei tai nepadeda, " "pateikite klaidos ataskaitą su šiuo rietuvės sekimas įtrauktas: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Klaida nuskaitant failą %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Klaida nuskaitant aplanką %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Klaida nuskaitant failo %(path)s metaduomenis: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Pakartotinis nuskaitymas nutrauktas dėl nepasiekiamų bendrinimų" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Vartotojas %(user)s naršo jūsų bendrinamų failų sąrašą" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Nepavyko iškviesti bendrai naudojamo aplanko %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Neįmanoma nuskaityti bendrai naudojamos duomenų bazės. Prašome perskirstyti " "savo akcijas. Klaida: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Nurodytos tinklo sąsajos „%s“ nėra" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Negalima klausytis per prievadą %(port)s. Įsitikinkite, kad jokia kita " "programa jo nenaudoja, arba pasirinkite kitą prievadą. Klaida: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Klausomasi prievado %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nepavyko prisijungti prie serverio %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Automatinis prisijungimas prie serverio paleidžiant" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Jungiamasi prie %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Prisijungta prie serverio %(host)s:%(port)s, registruojamasi..." #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Atsijungta nuo serverio %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Kažkas prisijungęs prie jūsų Soulseek paskyros kitur" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Įkelti baigtas: vartotojas %(user)s, IP adresas %(ip)s, failas %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Išsiuntimas nutrauktas, naudotojas %(user)s failas %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Išsiuntimo I/O klaida: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Įkelti prasidėjo: vartotojas %(user)s, IP adresas %(ip)s, failas %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Nepavyko sukurti aplanko „%(folder)s“, gauta klaida: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Nepavyko įkelti viešinių iš disko: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Išsaugotas vartotojo %(user)s\"-%(dir)s bendrinamų failų sąrašas" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Nepavyko išsaugoti viešinių, „%(user)s“, gauta klaida: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Paveikslėlis įrašytas į %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Nepavyko perkelti „%(tempfile)s“ į „%(file)s“: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "%(user)s daro UserInfo užklausą" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Neįmanoma prisijungti prie serverio. Priežastis: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Nepavyko prisijungti" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Neįmanoma nuskaityti vartotojo IP %s, nes šis vartotojas yra neprisijungęs" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "Naudotojo %(user)s IP adresas yra %(ip)s, prievadas %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek klientas" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i privilegijuoti naudotojai" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Jūs neturite jokių privilegijų. Teisės nereikalingos, tačiau leidžia jūsų " "atsisiuntimus įtraukti į eilę prieš privilegijuotus vartotojus." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Liko %(days)i dien., %(hours)i val., %(minutes)i min., %(seconds)i sek. " "atsisiuntimo privilegijų." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Jūsų slaptažodis buvo pakeistas" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Slaptažodžio keitimas atmestas" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Neįmanoma įrašyti failo %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Nepavyko perkelti „%(tempfile)s“ į „%(file)s“: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Skaitant failą %(filename)s kažkas negerai: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Bandoma įkelti atsarginę failo kopiją %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Neįmanoma sukurti atsarginės failo %(path)s nuotraukos: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Neįmanoma įrašyti failo %(path)s: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Neįmanoma atkurti ankstesnio failo %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Pridėti bičiulį…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Paieškos" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Paieškos" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Siųsti žinutę" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Perjungti tekstą į kalbą" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Pokalbių kambarių komandų žinynas" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Log" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Kambario siena" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Kambario siena" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Sukurta" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Išvertė" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licencija" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Ankstesnis failas" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Sveiki atvykę į Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Set aukštyn…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Jei jūsų norimas naudotojo vardas jau paimtas, būsite paraginti jį pakeisti." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Jei jūsų klausymosi prievadas uždarytas, galėsite prisijungti tik prie " "vartotojų, kurių klausymosi prievadai atidaryti." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Jei reikia, toliau pasirinkite kitą klausymosi prievadą. Tai taip pat galima " "padaryti vėliau nuostatose." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Atsiuntimo aplanko klaida" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Bendrinti aplankus" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "„Soulseek“ vartotojai galės atsisiųsti iš jūsų akcijų. Prisidėkite prie " "„Soulseek“ tinklo dalindamiesi savo kolekcija ir dar kartą bendrindami tai, " "ką atsisiuntėte iš kitų vartotojų." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Jūs esate pasirengę naudoti Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Dovanodami Soulseek suteikia jums privilegijas tam tikrą laikotarpį. Jei " "turite teises, atsisiuntimai bus įtraukti į eilę prieš privilegijuotus " "vartotojus." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Ankstesnis failas" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Kitas failas" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Failo vardas" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Paskutinis greitis" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Eksportuoti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Spartieji klavišai" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Bendra" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Prisijungti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Atsijungti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Perskanuoti viešinius" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Rodyti žurnalo sritį" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Konfigūruoti registravimą" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Išeiti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Meniu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Atidaryti pagrindinį meniu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Atidaryti kontekstinį meniu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Skirtukai" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Keisti pirminį skirtuką" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Eiti į ankstesnį antrinį skirtuką" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Eiti į paskesnį antrinį skirtuką" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Uždaryti antrinį skirtuką" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Uždaryti antrinį skirtuką" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Blokavimo sąrašas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Žymėti viską" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Pašalinti pasirinktą eilutę" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Įvertinimas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Valstybė" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Įklijuoti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Įterpti jaustukus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Žymėti viską" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Rasti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Rasti kitą atitikmenį" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Rasti ankstesnį atitikmenį" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Siuntimai" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Pasirinkite naudotojų siuntimus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Pristabdyti / nutraukti perkėlimą" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Atsiuntimo aplanko klaida" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Save akcijų sąrašą į diską" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Atnaujinti failus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Išplėsti / sutraukti visus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Neįmanoma bendrai naudoti aplanko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Ieškoti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "Patikrinti filtrus" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Dabartinis seansas" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Baigti atsisiuntimai" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Atsisiųstas dydis" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Baigti nusiuntimai" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Įkeltas dydis" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Bendras" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Resume" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Pageidavimų sąrašo elementų automatiškai ieškoma reguliariais intervalais, " "kad būtų galima aptikti nedažnus failus." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Pridėti norą…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Valyti viską…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Atsisiųstas failas" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Valyti baigtą" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Atsiuntimai" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Valyti viską…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Pomėgiai" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Pridėti tai, kas jums patinka…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Mėgsta" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Pridėti tai, kas jums nepatinka…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Rekomendacijas" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Atidaryti pagrindinį meniu" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Kambarys" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Naudotojo vardas" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Paieškos" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "Paieškos šablonai: su žodžiu = žodis, be žodžio = -žodis" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Ieškos aprėptis" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "Ieškoti pageidavimų sąraše" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfigūruoti iešką" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Įveskite ieškos terminą, kad ieškotumėte failų, kuriuos bendrai naudoja kiti " "\"Soulseek\" tinklo vartotojai" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Failų grupavimo režimas" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfigūruoti atsisiuntimus" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Failai, kuriuos atsisiunčiate iš kitų vartotojų, yra eilėje čia ir gali būti " "pristabdyti ir atnaujinti pagal pareikalavimą" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfigūruoti nusiuntimus" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Vartotojų bandymai atsisiųsti bendrinamus failus yra eilėje ir tvarkomi čia" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "Blokavimo sąrašas" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Atidaro vietinį bendrinamų failų, kurie anksčiau buvo įrašyti į diską, sąrašą" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Configure Akcijos" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Įveskite vartotojo, kurio bendrinamus failus norite naršyti, vardą. Taip pat " "galite įrašyti sąrašą į diską ir patikrinti jį vėliau." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Mėgsta" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfigūruoti registravimą" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Įveskite vartotojo vardą, kad peržiūrėtumėte jo vartotojo aprašą, " "informaciją ir asmeninį paveikslėlį" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Pokalbių istorija" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfigūruoti bendrai naudojamos akcijas" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Įveskite vartotojo vardą, kad pradėtumėte tekstinį pokalbį su jais privačiai" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Žinutės" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Nepaisomi naudotojai:" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Įtraukite vartotojus į savo bičiulių sąrašą, kad galėtumėte su jais " "bendrinti konkrečius aplankus ir gauti pranešimus, kai jie yra prisijungę" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Prisijunkite arba sukurkite kambarį…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Prisijunkite prie esamo pokalbių kambario arba sukurkite naują kambarį " "pokalbiams su kitais \"Soulseek\" tinklo vartotojais" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Peržiūrėti vartotojo profilį" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Paieškos" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Prisijungimai" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Atsisiuntimas (greitis / aktyvūs vartotojai)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Įkėlimas (greitis / aktyvūs vartotojai)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Paieškos" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Atsiuntimai" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Apriboti įkėlimo greitį:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Alternatyvus atsisiuntimo greičio apribojimas (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternatyvus atsisiuntimo greičio apribojimas (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Paieškos" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Atnaujinti kambarių sąrašą" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Show viešų pokalbių kambario pranešimų sklaidos kanalas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "Įtraukti į asmeninį kambarį %s" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Kambario sienos funkcija leidžia kambario vartotojams nurodyti unikalų " "pranešimą, kuris bus rodomas kitiems. Naujausi pranešimai rodomi viršuje." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Nustatyti sienos pranešimą…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Ieškos rezultatų filtrai" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Ieškos rezultatų filtrai naudojami ieškos rezultatams rodyti patikslinti." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Kiekvienas ieškos rezultatų sąrašas turi savo filtrą, kurį galima atskleisti " "perjungus mygtuką Rezultatų filtrai. Filtrą sudaro keli laukai, kurie visi " "taikomi paspaudus Enter bet kuriame iš jo laukų. Filtravimas nedelsiant " "taikomas jau gautiems rezultatams, taip pat tiems, kurie dar neatvyks. " "Norėdami dar kartą peržiūrėti visus rezultatus, tiesiog išvalykite visų " "terminų filtrą ir taikykite jį iš naujo. Kaip rodo pavadinimas, ieškos " "rezultatų filtras negali išplėsti pradinės ieškos, jis gali tik susiaurinti. " "Norėdami išplėsti arba pakeisti paieškos terminus, atlikite naują iešką." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Kaip rodo pavadinimas, paieškos rezultatų filtras negali išplėsti pradinės " "paieškos, jis gali ją tik susiaurinti. Norėdami išplėsti arba pakeisti " "paieškos terminus, atlikite naują paiešką." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Patikrinti filtrus" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Įtraukti tekstą" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Bus rodomi failai ir aplankai, kuriuose yra šis tekstas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Byla yra nejautri, tačiau žodžio tvarka yra svarbi: \"Spears Bretanė\" " "nerodys jokių \"Bretanės ieties\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Naudokite | (arba vamzdžiai), kad atskirtumėte kelias tikslias frazes. " "Pavyzdys:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Neįtraukti teksto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Kaip nurodyta pirmiau, bet failai ir aplankai filtruojami, jei tekstas " "sutampa." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtruoja failus pagal jų failo plėtinį." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Galima nurodyti kelis failų plėtinius, kurie savo ruožtu išplės rezultatų " "sąrašą.\n" " Pavyzdys: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Taip pat galima apversti filtrą, nurodant failų plėtinius, kurių nenorite " "savo rezultatuose.\n" " Pavyzdys: !mp3|! jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Failo dydis" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtruoja failus pagal jų failo dydį." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Pagal numatytuosius nustatymus naudojamas vienetas yra baitai, o failai, " "didesni arba lygūs reikšmei, bus sugretinti." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Pridėti b, k, m arba g (arba kib, mib, arba gib) nurodyti baitų, kibibyte, " "mebibyte, arba gibibyte vienetų:\n" " <1024k rasite failus 1024 kibibytes (ty 1 mebibyte) arba mažesnis." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Prepend = reikšmei, nurodančią tikslų atitikmenį:\n" " =1024 atitinka tik 1024 baitų dydžio failus (t. y. 1 kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Prepend = reikšmei, nurodančią tikslų atitikmenį:\n" " =1024 atitinka tik 1024 baitų dydžio failus (t. y. 1 kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Pridėkite < arba >, jei norite rasti failus, mažesnius / didesnius nei " "nurodyta reikšmė:\n" " >10,5m|<1g, kad būtų rodomi didesni nei 10,5 MiB (mebibaitų) failai,\n" " bet mažesnis nei 1 GiB (gibibaitas), naudokite a | tarp sąlygų." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Kad būtų patogiau, taip pat galima naudoti geriau žinomų kilo-, mega-ir " "gigabaitų vienetų kb, mb ir gb variantus." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtruoja failus pagal jų bitų dažnį." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Reikšmes reikia įvesti tik kaip skaitinius skaitmenis. Vienetas visada yra " "Kb/s (kilobitai per sekundę)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Kaip ir Failo dydis (aukščiau), galima naudoti operatorius =, !, < ir >, o " "kelias sąlygas galima nurodyti su | vamzdžiai:\n" " >256|<1411, kad būtų rodomi failai, kurių bitų sparta ne mažesnė kaip " "256 Kb/s\n" " su maksimaliu 1411 Kb/s bitų sparta." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtruoja failus pagal jų bitų dažnį." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Pagal numatytuosius nustatymus failai, ilgesni arba lygūs įvestai, bus " "suderinti, nebent naudojamas operatorius (=, !, < arba >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Įveskite neapdorotą reikšmę sekundėmis arba naudokite MM:SS ir HH:MM:SS " "laiko formatus:\n" " >5:30, kad būtų rodomi bent 5 su puse minutės ilgio failai.\n" " <5:30:00 rodomi trumpesni nei 5 su puse valandos failai." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Su | galima nurodyti kelias sąlygas vamzdžių separatoriai:\n" " >6:00|<12:00, kad būtų rodomi 6–12 minučių ilgio failai.\n" " !9:54|!8:43|!7:32, kad paslėptumėte kai kuriuos konkrečius failus nuo " "rezultatų.\n" " =5:34|=4:23|=3:05, kad įtrauktumėte konkrečios trukmės failus." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Naudoja ISO 3166-2 apibrėžtus šalių kodus (žr. Vikipediją):\n" " \"JAV\" grąžins failus tik iš naudotojų, prijungtų per Jungtines " "Amerikos Valstijas. Panašiai \"GB\" grąžina failus iš naudotojų, turinčių IP " "Jungtinėje Karalystėje." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Kableliais arba tarpais galima nurodyti kelias šalis." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Nemokamas lizdas" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Rodyti tik tuos rezultatus iš vartotojų, kurie turi bent vieną įkėlimo lizdą " "nemokamai. Šis filtras taikomas nedelsiant." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Įkelti greičio apribojimus" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Apriboti įkėlimo greitį:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Alternatyvus įkėlimo greičio apribojimas (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternatyvus įkėlimo greičio apribojimas (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Privačių pokalbių komandų žinynas" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Įtraukti tekstą…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtruoti rezultatuose, kurių failų maršrutuose yra nurodytas tekstas. " "Galima nurodyti kelias frazes ir žodžius, pvz., tiksli frazė|music|term|" "exact frazė du" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Neįtraukti teksto…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtruoti rezultatus, kurių failų maršrutuose yra nurodytas tekstas. Galima " "nurodyti kelias frazes ir žodžius, pvz., tiksli frazė|music|term|exact frazė " "du" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Failo tipas…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Failo tipas, pvz., flac|wav|ape arba !mp3|! m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Failo dydis…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Failo dydis, pvz. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bitų dažnis" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, pvz. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Trukmė…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Trukmė, pvz. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Valstybė" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Šalies kodas, pvz., JAV| GB|ES arba !DE|! GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Uždrausti vartotojams pasiekti jūsų bendrinamus failus pagal naudotojo " "vardą, IP adresą ar šalį." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Blokuotinų valstybių kodai (atskirti kableliu):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Kodai turi būti ISO 3166-2 formato." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Naudoti pasirinktinę blokavimo žinutę:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Naudoti pasirinktinę blokavimo žinutę:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adresai" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Įjungti rašybos tikrinimą (reikia paleisti programą iš naujo)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Atkurti anksčiau atidarytus privačius pokalbius paleisties metu" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Įgalinti Į CTCP panašius asmeninius pranešimų atsakymus (kliento versija)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Rodomų naujausių pokalbių eilučių skaičius:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Rodomų naujausių pokalbių eilučių skaičius:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Užbaigimas" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Įjungti užbaigimą Tab klavišu" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Įjungti užbaigimo išskleidžiamą sąrašą" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Minimalus simbolių skaičius, kad būtų rodomas išskleidžiamas sąrašas:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Leidžiami užbaigimai" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Bičiulių sąrašas" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Pokalbių kambario pranešimas:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Kambariuose" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Komandas" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Laiko žymos" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Privataus kambario formatas:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Numatytoji" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Pokalbių kambarių formatas:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Tekstas į kalbą" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Įgalinti tekstą į kalbą" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Komanda Tekstas į kalbą:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Asmeninio pokalbio pranešimas:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Pokalbių kambario pranešimas:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Cenzūros sąrašas" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Įgalinti teksto šablonų cenzūrą" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Automatinio pakeitimo sąrašas" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Įgalinti automatinį žodžių keitimą" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Autoclear baigti / filtruoti atsisiuntimai iš perkėlimo sąrašo" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Atsisiuntimų saugojimas vartotojo vardo poaplankiuose" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Laukiama siuntimo" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Leisti šiems naudotojams atsiųsti jums failus:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Aplankus" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Atsisiųstas failas" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Baigti atsisiuntimai" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Užklausiamas failas" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Įvykiai" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Vykdyti komandą pasibaigus failo atsisiuntimui ($ už failo kelią):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Vykdyti komandą pasibaigus aplanko atsisiuntimui ($ aplanko maršrutui):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Atsisiųsti filtrus" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Įveskite naują atsiuntimo filtrą:" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Pridėti" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Įkelti numatytuosius" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Patikrinti filtrus" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Nepatikrintas" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Nepaisykite vartotojų pokalbių pranešimų ir paieškos rezultatų pagal " "naudotojo vardą arba IP adresą." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Vesti pokalbių kambarių žurnalus" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Vesti asmeninių pokalbių žurnalus" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Registruoti perkėlimus į failą" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Registruoti derinimo pranešimus į failą" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Žurnalų failų formatas:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Aplankų vietos" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Pokalbių kambario žurnalų aplankas:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Privačių pokalbių žurnalų aplankas:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Perkėlimo žurnalų aplankas:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Derinimo žurnalų aplankas:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Prisijunkite prie esamos Soulseek paskyros arba sukurkite naują. Naudotojų " "varduose taikomos didžiąsias ir mažąsias raides bei jos yra unikalios." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Blokuoti IP adresą..." #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Įjungti rašybos tikrinimą (reikia paleisti programą iš naujo)" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Būsena" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Neaktyvumo minutės prieš išvykstant (0, kad išjungtumėte):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Automatinio atsakymo pranešimas išvykęs:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatiškai persiųsti klausymosi prievadą (UPnP / NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Automatinis prisijungimas prie serverio paleidžiant" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek serveris:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Susieja ryšius su konkrečia tinklo sąsaja, naudinga, pvz., užtikrinant, kad " "VPN visada būtų naudojamas. Palikite tuščią, jei norite naudoti bet kurią " "galimą sąsają. Pakeiskite šią reikšmę tik tuo atveju, jei žinote, ką darote." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Įjungti rašybos tikrinimą (reikia paleisti programą iš naujo)" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Dabar leidžiama leidžia jums parodyti, ką leidžia medijos leistuvas, " "naudojant komandą /now pokalbyje." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Kitas" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Grojamos dainos rodymo formatas:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Grojamos dainos rodymo formatas:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Tikrinti konfigūraciją" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Įgalinti papildinius" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "Įskiepiai" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "Įskiepiai" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Gaunama būsena" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Gaunama būsena" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Versija: " #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Sukurta" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Įgalinti ieškos retrospektyvą" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Kiti klientai gali pasiūlyti galimybę siųsti privačiai bendrinamus failus " "atsakydami į ieškos užklausas. Tokie failai yra prefiksuoti \"[PRIVATE " "FILE]\" ir jų negalima atsisiųsti, nebent įkėlėjams būtų duotas aiškus " "leidimas." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Rodyti privačiai bendrinamus failus ieškos rezultatuose" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Riboti rezultatų skaičių paieškoje:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Įjungti filtrus iš karto" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Įtraukti:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Išskirti:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Failo tipas:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Dydis:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitų dažnis:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Trukmė:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Šalies kodas:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "Rodyti tik naudotojų, turinčių galimą įkėlimo lizdą, rezultatus." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Rezultatų filtro žinynas" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Tinklo ieškos" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Atsakyti į kitų vartotojų ieškos užklausas" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Ieškos, trumpesnės už šį simbolių skaičių, bus ignoruojamos:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "rezultatų paieškos užklausoje" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Valyti ieškos retrospektyvą" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Valyti filtro retrospektyvą" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Paleisties metu automatiškai iš naujo užsako bendrinamų aplankų turinį. Jei " "išjungta, jūsų akcijos atnaujinamos tik tada, kai rankiniu būdu inicijuojate " "pakartotinį informacijos skadrą." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Paleidus perskanuoti viešinius" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Bičiulių sąrašas" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Perskanuoti viešinius" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Autoclear baigti / atšaukti nusiuntimai iš perkėlimo sąrašo" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Nusiuntimo dukart spustelėkite veiksmą:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Apriboti įkėlimo greitį:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Už perkėlimą" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Iš viso pervedimų" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Išsiuntimai" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "Failai bus įkeliami cikliškai eilėje laukiantiems vartotojams." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Nusiuntimo eilės tipas:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Eilė įkeliama, jei pasiekiamas bendras perkėlimo greitis (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Apriboti įkėlimo laiko tarpsnių skaičių iki:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Privilegijuoti visus mano draugus" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Eilės padėtis" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Riboti rezultatų skaičių paieškoje:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Eilių dydžio limitas netaikomas draugams" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "$ egzemplioriai bus pakeisti nuoroda. Pridėkite tuščias dorokles, jei norite " "naudoti numatytąją sistemos žiniatinklio naršyklę.\n" "Protokolų doroklės: " #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Failų tvarkytuvo komanda ($ failo maršrutui):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Iš naujo nustatyti paveikslėlį" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Savęs aprašymas" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Nuotraukų:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Išvalyti" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Teikti pirmenybę tamsiuoju režimu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Naudoti _Header juostą" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Ekrano dėklo piktograma" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimizuoti iki dėklo paleisties metu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Įjungti rašybos tikrinimą (reikia paleisti programą iš naujo)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Uždarant Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Pranešimus" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Pranešimų iššokančių langų garso įgalinimas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "" "Rodyti pranešimą apie privačius pokalbius ir paminėjimus lango pavadinime" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Pranešimų piktogramų rodymas skirtukuose" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Atsisiųstas failas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Aplankas atsisiųstas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Privatus pranešimas iš %s" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Pokalbių kambario pranešimas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Užbaigimas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Rasti pageidavimų sąrašo rezultatai" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Atkurti anksčiau atidarytus privačius pokalbius paleisties metu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Užvėrimo mygtukai kortelėse" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Įprasta skirtuko etiketės spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Pakeista skirtuko etiketės spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Paryškinta skirtuko etiketės spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Matomi pirminiai skirtukai:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Skirtukų juostos padėtis:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Pagrindiniai skirtukai" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Rodyti atvirkštinius failų kelius ieškos ir perkėlimo rodiniuose (reikia " "paleisti iš naujo)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Įjungti rašybos tikrinimą (reikia paleisti programą iš naujo)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Sąrašo teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Eilėje esančių ieškos rezultatų teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Pokalbių kambario pranešimas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Pokalbio naudotojo vardo išvaizda:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Nuotolinio teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Vietinio failo klaida" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Nuotolinio teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me veiksmo teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Paryškinta teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "URL saito teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Jungtinės Amerikos Valstijos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Internetinė teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Teksto spalva išvykęs:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Autonominio teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Teksto įrašai" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Teksto įrašo fono spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Teksto įrašo teksto spalva:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Šriftai" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Visuotinis šriftas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Sąrašo šriftas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Teksto peržiūros šriftas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Pokalbio šriftas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Perkelia šriftą:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Paieškos šriftas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Naršyti šriftą:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Piktogramos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Nebaigtas failų aplankas:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Naudotojas (-ai)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Užblokuoti naudotoją(us)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Autoclear baigti / atšaukti nusiuntimai iš perkėlimo sąrašo" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Žinutės" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Valyti visus įkėlimus" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Save akcijų sąrašą į diską" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Atnaujinti failus" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "V_iešiniai" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "_Ieškoti failų" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "V_iešiniai" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Išsiuntimai" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Nemokami įkėlimo laiko tarpsniai" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Nusiųsti" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Pomėgiai" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "Suteikti privilegijas" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Atnaujinti failus" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+ komanda" #~ msgid "_Clear" #~ msgstr "Iš_valyti" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Nepavyko perkelti „%(tempfile)s“ į „%(file)s“: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Patikimi naudotojai" #, fuzzy #~ msgid "Quit program" #~ msgstr "Baigti programą" #, fuzzy #~ msgid "Username:" #~ msgstr "Vartotojo vardas:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "%s rekomendacijos" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Remove elementas" #~ msgid "_Remove" #~ msgstr "_Pašalinti" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Siųsti žinutę" #~ msgid "Send Message" #~ msgstr "Siųsti žinutę" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Peržiūrėti vartotojo profilį" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Pradėti pranešimus" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "_Message" #~ msgstr "Žinutės" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Peržiūrėti vartotojo profilį" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Ieškoti failų" #, fuzzy #~ msgid "Password" #~ msgstr "Slaptažodis" #, fuzzy #~ msgid "Download File" #~ msgstr "Atsisiųsti failą" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Panašūs vartotojai" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Nurodkite naudotoją, kuriam norite nusiųsti:" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Įveskite kambario, prie kurio norite prisijungti, pavadinimą. Jei " #~ "kambario nėra, jis bus sukurtas." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Rodyti _Log sritį" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Įrašyti _Picture" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Išfiltruotas neteisingas naudotojo %(user)s paieškos rezultatas " #~ "%(filepath)s pagal paieškos užklausą „%(query)s“" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Kai kurie klientai nesiunčia ieškos rezultatų, jei įtraukti specialieji " #~ "simboliai." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Specialiųjų simbolių šalinimas iš ieškos terminų" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Nesėkmė vykdant „%s“" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Klaida vykdant aplanke: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Neleidžiamas plėtinys" #, fuzzy #~ msgid "Too many files" #~ msgstr "Per daug failų" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Per daug megabaitų" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Serveris šiuo metu neleidžia atlikti pageidavimų sąrašo paieškų" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Failų perdavimo greitis priklauso nuo vartotojų, iš kurių atsisiunčiate. " #~ "Kai kurie vartotojai bus greitesni, o kiti bus lėti." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Pradėti atsisiuntimai" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Pradėti nusiuntimai" #~ msgid "Replace censored letters with:" #~ msgstr "Pakeisti cenzūruotas raides:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Cenzūruoti modeliai" #, fuzzy #~ msgid "Replacements" #~ msgstr "Pakeitimas" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Jei Soulseek tinklo vartotojas ieško failo, kuris yra jūsų bendrinimo, " #~ "ieškos rezultatai bus nusiųsti vartotojui." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Siųsti į _Player" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Siųsti į _Player" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "failų tvarkytuvo _Open" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Komanda Media Player ($ už failo kelią):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Neįmanoma įrašyti atsisiuntimo į vartotojo vardo poaplankį, grįžtant į " #~ "numatytąjį atsisiuntimo aplanką. Klaida: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Tik bičiulis" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Dalintis tik su bičiuliais" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Quit" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Configure Akcijos" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Nuotolinio failo klaida" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "Nepavyksta rasti %(option1)s arba %(option2)s, įdiekite vieną." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s aplankai rasti po rescan" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Nepavyko apdoroti šių duomenų bazių: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Nepavyko nusiųsti bendrai naudojamų failų skaičiaus į serverį: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Vykdyti fone" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Nenurodytas kliento prievadas" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Tinklo ieškos" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Apribokite tik bičiulių akcijas patikimiems bičiuliams" #, fuzzy #~ msgid "Shared" #~ msgstr "Bendra" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Ieškoti failų ir aplankų (tikslus atitikimas)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Pasenęs" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Yra %(version)s versija, išleista %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Atrodo, kad naudojate Nicotine+ kūrimo versiją." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Jūs naudojate naujausią Nicotine+ versiją." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Tikrinti _Latest versiją" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Pirmenybė teikiama tamsioms _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Rodyti _Log sritį" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Bičiulių sąrašas atskirame skirtuke" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Bičiulių sąrašas visada matomas" #, fuzzy #~ msgid "_View" #~ msgstr "_View" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Download aplankas" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Browse aplankas (-ai)" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 baitų) per sekundę." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Siunčiama vartotojams kaip geografo blokavimo priežastis." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Siunčiama vartotojams kaip priežastis, dėl kurios buvo uždrausta." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Kai sąveikausite su programa, kurios nėra, būsena bus nustatyta į " #~ "prisijungus." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Kiekvienas vartotojas gali stovėti eilėje ne daugiau kaip:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 baitų)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBs" #, fuzzy #~ msgid "files" #~ msgstr "Failus" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Eilės veikimas" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Jei išjungta, laiko tarpsniai bus automatiškai nustatomi pagal galimus " #~ "pralaidumo apribojimus." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Atkreipkite dėmesį, kad operacinės sistemos tema gali būti viršesnė." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Pagal numatytuosius nustatymus failų paieškos skirtukas suaktyvinamas " #~ "paleidžiant." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Nicotine+ versija %s" #, fuzzy #~ msgid "terminated" #~ msgstr "Nutrauktas" #, fuzzy #~ msgid "done" #~ msgstr "Padaryta" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Prisiminti pasirinkimą" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovas" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Sąsaja" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Klausomasi prievado %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "Arba serveris neveikia, arba neatsako, kitas bandymas po %i sek" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ naudoja lygiaverčius tinklus, kad prisijungtų prie kitų " #~ "vartotojų. Kad vartotojai galėtų prisijungti prie jūsų be problemų, labai " #~ "svarbus atviras klausymosi prievadas." #~ msgid "--- disconnected ---" #~ msgstr "--- atsijungta ---" #~ msgid "--- reconnected ---" #~ msgstr "--- prisijungta iš naujo ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Žemė" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Čekijos Respublika" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turkija" #~ msgid "Joined Rooms " #~ msgstr "Kambariai, kuriuose esate " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto prisijungti kambarys" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ " Sintaksė: Raidės nejautrios didžiosiomis ir mažosiomis raidėmis. " #~ "Visi Python reguliarūs posakiai palaikomi, jei pabėgimas yra išjungtas. " #~ "Paprastiems filtrams rekomenduojama išlaikyti pabėgimą." #~ msgid "Escaped" #~ msgstr "Kaitos simbolis" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Kaitos simbolis" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Įveskite atitinkamai teksto šabloną ir pakeitimą:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s aplankai rasti prieš rescan, atstatyti …" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Nurodytame prievadų diapazone %s–%s nėra klausymosi prievado" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Pasirinkite diapazoną, iš kurio norite pasirinkti klausymosi prievadą. " #~ "Bus naudojamas pirmasis prieinamas diapazono prievadas." #, fuzzy #~ msgid "First Port" #~ msgstr "Pirmasis prievadas" #~ msgid "to" #~ msgstr "iki" #, fuzzy #~ msgid "Last Port" #~ msgstr "Vėliausiai grota" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Nepavyksta rasti %s, įdiekite jį." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Negalima importuoti Gtk modulio. Netinkamas python-gobject modulio " #~ "diegimas?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Naudojate nepalaikomą GTK %(major_version)s versiją. Turėtumėte įdiegti " #~ "GTK %(complete_version)s arba naujesnį." #, fuzzy #~ msgid "User Info" #~ msgstr "Vartotojo informacija" #~ msgid "Zoom 1:1" #~ msgstr "Mastelis 1:1" #~ msgid "Zoom In" #~ msgstr "Pritraukti" #~ msgid "Zoom Out" #~ msgstr "Atitraukti" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Rodyti vartotojo I_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Naudotojo i_nformacija" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Gauti naudotojo viešinius" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Naudotojo i_nformacija" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Prašyti akcijų sąrašo" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Netinkamas SoulSeek meta-url: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "\"Soulseek\" tinklo vartotojai galės atsisiųsti failus iš jūsų bendrinamų " #~ "aplankų. Dalijimasis failais yra labai svarbus Soulseek tinklo sveikatai." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Naudotojo i_nformacija" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Pokalbių kambario komandos" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'kambarys'" #~ msgid "Join room 'room'" #~ msgstr "Įeiti į kambarį „kambarys“" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/me \"žinutė\"" #~ msgid "Display the Now Playing script's output" #~ msgstr "Rodyti scenarijaus Dabar grojama išvestį" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'naudotojas'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į užblokuotų sąrašą" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy \"vartotojas\"" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Pašalinti naudotoją „naudotojas“ iš užblokuotų sąrašo" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/uždrausti \"vartotojas\"" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į užblokuotų sąrašą" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban \"vartotojas\"" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Pašalinti naudotoją „naudotojas“ iš užblokuotų sąrašo" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/nepaisyti \"vartotojo\"" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į nepaisomųjų sąrašą" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/unignore \"vartotojas\"" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Pašalinti naudotoją „naudotojas“ iš nepaisomųjų sąrašo" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b \"vartotojas\"" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w \"vartotojas\"" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Užklausti naudotojo „naudotojas“ informacijos" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip \"vartotojas\"" #~ msgid "Show IP for user 'user'" #~ msgstr "Parodyti naudotojo „naudotojas“ IP" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s \"užklausa\"" #~ msgid "Start a new search for 'query'" #~ msgstr "Pradėti naują „užklausa“ paiešką" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs \"užklausa\"" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Ieškoti „užklausa“ kambariuose, kuriuose esate" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "Ieškoti „užklausa“ pas bičiulius" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Ieškoti „užklausa“ pas bičiulius" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us \"vartotojas\" \"užklausa\"" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg \"vartotojo\" \"pranešimas\"" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Siųsti žinutę „žinutė“ naudotojui „naudotojas“" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm \"vartotojas\"" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Atverti asmeninio pokalbio su naudotoju „naudotojas“ langą" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Privačios pokalbių komandos" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į užblokuotų sąrašą" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į nepaisomųjų sąrašą" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Naršyti naudotojo „naudotojas“ failus" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Užsakymų nejautrus filtravimas, taip pat kelių tikslių frazių " #~ "filtravimas, vertikalios juostos gali būti naudojamos frazėms ir žodžiams " #~ "atskirti.\n" #~ " Pavyzdys: Spears| Bretanė| Mano gražus albumas|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "Norėdami išskirti ne garso failus, trukmės filtre naudokite !0." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtruoja failus pagal vartotojų šalis." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Norėdami dar kartą peržiūrėti visus rezultatus, tiesiog išvalykite visus " #~ "aktyvius filtrus." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Daugiau filtro parinkčių rasite nuostatose." #, fuzzy #~ msgid "File size" #~ msgstr "Failo dydis" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Valyti visus aktyvius filtrus" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Dirbant tabuliavimo klavišu, pereiti per užbaigimus" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Paslėpti išskleidžiamą sąrašą, kai yra tik vienas atitikmuo" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Atsiųsti aplankus atvirkštine tekstine tvarka" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Nebaigtas failų aplankas:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Atsisiųsti aplanką:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Išsaugokite bičiulių įkėlimus į:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "" #~ "UPnP naudojimas norint automatiškai susieti kelvedžio klausymosi prievadą" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Bendrinkite aplankus su kiekvienu „Soulseek“ vartotoju ar bičiuliais, kad " #~ "turinį būtų galima atsisiųsti tiesiai iš jūsų įrenginio. Paslėpti failai " #~ "niekada nėra bendrinami." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Antriniai skirtukai" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Pokalbių kambario skirtuko juostos padėtis:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Privataus pokalbio skirtuko juostos padėtis:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Ieškos skirtuko juostos padėtis:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Vartotojo informacijos skirtuko juostos padėtis:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Vartotojo naršymo skirtukų juostos padėtis:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Skirtukų žymos" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Refresh informacija" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Blokuoti IP adresą..." #, fuzzy #~ msgid "Connected" #~ msgstr "Prisijungta:" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Atsijungta:" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Atsijungta:" #~ msgid "User(s)" #~ msgstr "Naudotojas (-ai)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Pseudonimas \"%s\" nieko negrąžino" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatyvūs greičio apribojimai" #~ msgid "Last played" #~ msgstr "Vėliausiai grota" #, fuzzy #~ msgid "Playing now" #~ msgstr "Žaisti dabar" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Neįmanoma įrašyti failo %(path)s: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Klaidos kodas %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Nėra tokio alternatyvaus vardo (%s)" #~ msgid "Aliases:" #~ msgstr "Alternatyvūs vardai:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Pašalintas alternatyvus vardas %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Nėra tokio alternatyvaus vardo (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternatyvūs greičio apribojimai" #~ msgid "Aliases" #~ msgstr "Alternatyvūs vardai" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'command' 'definition'" #~ msgid "Add a new alias" #~ msgstr "Pridėti naują alternatyvų vardą" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un \"komanda\"" #~ msgid "Remove an alias" #~ msgstr "Pašalinti alternatyvų vardą" #, fuzzy #~ msgid "Chat History" #~ msgstr "Pokalbių istorija" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Užbaigti kambarių pavadinimus pokalbių kambariuose" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Apriboti atsisiuntimo greitį iki (KiB/s):" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Autorius(-iai): " #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Apriboti įkėlimo greitį iki (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Rasta pageidavimų sąrašo elementas" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Skirtukuose vietoj būsenos teksto rodomos vartotojo būsenos piktogramos" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Įgalinti failų maršruto patarimus ieškos ir perkėlimo rodiniuose" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Spalvoti ir spustelimi naudotojo vardai" #~ msgid "Notification changes the tab's text color" #~ msgstr "Pranešimas keičia kortelės teksto spalvą" #~ msgid "Cancel" #~ msgstr "Atšaukti" #~ msgid "OK" #~ msgstr "Gerai" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "Bičiulių sąrašas" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Išvalykite kiekvieną atsisiuntimą, pažymėtą tam tikra būsena." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Išvalykite kiekvieną įkėlimą, pažymėtą konkrečia būsena." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "naudoti nenumatytąjį vartotojo duomenų katalogą, pvz., atsisiuntimų " #~ "sąrašui" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Nežinoma konfigūravimo sekcija \"%s\"" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Nežinoma konfigūravimo parinktis \"%(option)s\" skyriuje \"%(section)s\"" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Versija %s yra" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "išleistas %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Vykdyti fone" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Privatus pranešimas iš %s" #~ msgid "Aborted" #~ msgstr "Nutraukta" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Užblokuota šalis" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Išvalyti baigtus / nutrauktus" #, fuzzy #~ msgid "Close tab" #~ msgstr "Užvėrimo mygtukai kortelėse" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Jus paminėjo kambaryje %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Komanda %s neatpažinta" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Dėmesio: %(realuser)s bando apsimesti naudotoju %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Nurodyta tinklo sąsaja '%s' neegzistuoja. Pakeiskite arba pašalinkite " #~ "nurodytą tinklo sąsają ir iš naujo paleiskite Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Jūsų nurodytas kliento ryšio prievadų diapazonas buvo {}-{}, tačiau nė " #~ "vienas iš jų nebuvo naudotinas. Padidėjimas ir (arba) " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Pastaba: dalis nurodytojo rėžio yra žemiau 1024. Paprastai tai daugumoje " #~ "operacinių sistemų, išskyrus Windows, neleidžiama." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Pažanga: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS klaida: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP šiame tinkle nepasiekiamas" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Nepavyko susieti išorinio WAN prievado: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Kambario siena" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Numatytasis klausymosi prievadas \"2234\" daugeliu atvejų veikia gerai. " #~ "Jei jums reikia naudoti kitą prievadą, vėliau galėsite jį modifikuoti " #~ "nuostatose." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Rodyti panašius pomėgius turinčius vartotojus" #, fuzzy #~ msgid "Menu" #~ msgstr "Meniu" #~ msgid "Expand / Collapse all" #~ msgstr "Išplėsti / sutraukti visus" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Konfigūruoti bendrai naudojamos akcijas" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Kurti arba prisijungti prie kambario…" #, fuzzy #~ msgid "_Room List" #~ msgstr "Kambariuose" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Įgalinti alternatyvius atsisiuntimo ir įkėlimo greičio apribojimus" #, fuzzy #~ msgid "Show log history" #~ msgstr "Rodyti žurnalo retrospektyvą" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Rezultatų grupavimo režimas" #, fuzzy #~ msgid "Free slot" #~ msgstr "Nemokamas lizdas" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Įrašyti bendrai naudojamos akcijų sąrašą į diską" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Nepavyko įkelti ui failo %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Bandoma iš naujo nustatyti bendrinamų failų rodyklę dėl klaidos. Prašome " #~ "perskirstyti savo akcijas." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Bendrai naudojamų failų rodyklės pasiekti nepavyko. Taip gali atsitikti " #~ "dėl kelių atvejų, kai Nicotine+ yra aktyvus vienu metu, failų teisių " #~ "problemos arba kita Nicotine+ problema." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ yra Soulseek klientas" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "įjungti dėklo piktogramą" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "išjungti dėklo piktogramą" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Gaukite Soulseek privilegijas…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Viešasis IP adresas yra %(ip)s, o aktyvus klausymosi prievadas yra " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "nežinoma" #, fuzzy #~ msgid "Notification" #~ msgstr "Pranešimo" #~ msgid "Length" #~ msgstr "Ilgis" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Paveikslėlis neįrašytas, %s jau yra." #, fuzzy #~ msgid "_Open" #~ msgstr "_Open" #, fuzzy #~ msgid "_Save" #~ msgstr "_Save" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Nepavyko įkelti priedo %s\", nepavyko jo rasti." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O klaida: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Nepavyko atidaryti failo maršruto: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Nepavyko atidaryti URL: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Log pokalbis" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Rezultatų filtrų sąrašas" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Iš anksto < arba >, kad rastumėte failus, mažesnius / didesnius už " #~ "nurodytą reikšmę." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR failai rodo jų vidutinį bitų dažnį ir paprastai yra mažesni bitų " #~ "dažniu nei suglaudintas 320 kbps CBR failas tos pačios garso kokybės." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Kaip dydis aukščiau, =, galima naudoti < ir >." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "Neleisti rašyti kitų programų failams atsisiųsti (išjungti NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Kur laikinai saugomi neišsamūs atsisiuntimai." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Kur bus saugomi bičiulių įkėlimai (kiekvienam bičiuliui sukurtas " #~ "poaplankis)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Perjunkite būseną po kelių minučių neveiklumo:" #~ msgid "Protocol:" #~ msgstr "Protokolas:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Piktogramų temos aplankas (reikia paleisti iš naujo):" #~ msgid "Establishing connection" #~ msgstr "Įtvirtinamas ryšys" #~ msgid "Clear Groups" #~ msgstr "Išvalymo grupės" #, fuzzy #~ msgid "User List" #~ msgstr "Vartotojų sąrašas" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "Statistika" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "_Atsiuntimai" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Valyti Uploa_ds…" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Blokuoti IP adresą..." #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Nepaisyti vartotojo IP adreso" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Išvalykite kiekvieną atsisiuntimą, kurio perkėlimas baigtas arba kurį " #~ "užfiksavo filtras." #, fuzzy #~ msgid "Usernames" #~ msgstr "Naudotojo vardas" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Įėjus į pokalbių kambarį iš naujo, rodyti išsaugotas kambario žinutes" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Išvalykite kiekvieną įkėlimą, kurio perkėlimas baigtas arba buvo " #~ "atšauktas nuotolinio naudotojo." #~ msgid "Queue Position" #~ msgstr "Eilės padėtis" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Vartotojas %(user)s tiesiogiai ieško \"%(query)s\", grąžina %(num)i " #~ "rezultatus" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVATUS]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Kambario siena (asmeninių pranešimų rinkinys)" #~ msgid "Your config file is corrupt" #~ msgstr "Konfigūracijos failas sugadintas" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Atsiprašome, bet atrodo, kad konfigūracijos failas sugadintas. " #~ "Konfigūruokite Nikotiną+.\n" #~ "\n" #~ "Mes pervardijome seną konfigūracijos failą į\n" #~ "%(corrupt)s\n" #~ "Jei atidarysite šį failą naudodami teksto rengyklę, galbūt galėsite " #~ "išgelbėti kai kuriuos parametrus." #, fuzzy #~ msgid "User Description" #~ msgstr "Aprašymas: " #, fuzzy #~ msgid "User Interests" #~ msgstr "Pomėgiai" #, fuzzy #~ msgid "User Picture" #~ msgstr "Vartotojo paveikslėlis" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Išvalyti pageidavimų sąrašą?" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Nicotine+ versija %s" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Python %(py_version)s naudojimas" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Nicotine+ versija %s" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Nicotine+ versija %s" #~ msgid "User:" #~ msgstr "Naudotojas:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Visi %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s failų " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Leisti įprastas filtro įtraukties išraiškas ir neįtraukti" #, fuzzy #~ msgid "Quit…" #~ msgstr "Išeiti" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Peržiūrėti ankstesnį pagrindinį paleisties skirtuką" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Įjungti filtrus iš karto" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Uždaryti Nikotiną+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Ar tikrai norite išeiti iš Nikotino+?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Vykdyti fone" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online pranešti" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Prioritetas vartotojui" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Patikimas" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Nepaisyti IP adreso..." #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Nepaisyti IP adreso..." #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Įveskite naudotoją, kuriam norite nusiųsti asmeninę žinutę:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Atsisiuntė" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Nepavyko pridėti atsisiųsti %(filename)s į bendrai naudojamus failus: " #~ "%(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Automatinis atsisiuntimų bendrinimas" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Atsisiuntimo aplanko pridėjimo kaip bendro viešojo naudojimo failo " #~ "atitikmuo, tačiau į šį aplanką atsisiųsti failai bus automatiškai " #~ "pasiekiami kitiems (nereikia pakartotinio informacijos)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Neįmanoma bendrai naudoti aplanko" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Pasirinktas virtualus pavadinimas tuščias" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Pasirinktas virtualus pavadinimas jau yra" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Pasirinktas aplankas jau bendrinamas" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Nustatyti virtualų pavadinimą" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Įveskite virtualų pavadinimą \"%(dir)s\":" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Pasirinktas virtualusis pavadinimas yra tuščias arba jau yra" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Pasirinktas aplankas jau bendrai naudojamas." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "Savybės" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Baigta perrašinėti bičiulių akcijas" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Įskiepiai" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Klaida nuskaitant %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Rodyti _Log sritį" #~ msgid "Addresses" #~ msgstr "Adresai" #~ msgid "Handler" #~ msgstr "Valdiklis" #~ msgid "Could not enable plugin." #~ msgstr "Nepavyko įjungti įskiepio." #~ msgid "Could not disable plugin." #~ msgstr "Nepavyko išjungti įskiepio." #~ msgid "Transfers" #~ msgstr "Siuntimai" #~ msgid "Ban List" #~ msgstr "Blokavimo sąrašas" #~ msgid "Ignore List" #~ msgstr "Nepaisymo sąrašas" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Cenzūra & gt; Pakeisti" #~ msgid "Completion" #~ msgstr "Užbaigimas" #~ msgid "Categories" #~ msgstr "Kategorijos" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Nusiųsti aplanką į…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Nusiųsti aplanką Rekursive To…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Atsisiųsti _Recursive" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Atsisiųsti R_ecursive į…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Up_load Failas (-ai)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Klaida bandant rodyti aplanką \"%(folder)s\", pranešta apie klaidą: " #~ "%(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Pasirinkite aplanko su poaplankiais iš vartotojo atsisiuntimo paskirties " #~ "vietą" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Pasirinkite aplanko atsisiuntimo iš vartotojo paskirties vietą" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Pasirinkite failo (-ų) atsisiuntimo iš vartotojo paskirties vietą" #, fuzzy #~ msgid "Wishes" #~ msgstr "Pageidavimus" #, fuzzy #~ msgid "privileged" #~ msgstr "(privilegijuotas)" #, fuzzy #~ msgid "prioritized" #~ msgstr "teikiama pirmenybė" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blokuoti IP adresą..." #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Užbaigti bičiulių vardus" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Užbaigti naudotojų vardus pokalbių kambariuose" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Užbaigti kambarių pavadinimus pokalbių kambariuose" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Išplečiamasis sąrašas" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Failų tvarkytuvo komanda ($ failo maršrutui):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Komanda Media Player ($ už failo kelią):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Nepaisyti IP adreso..." #~ msgid "Display timestamps" #~ msgstr "Rodyti laiko žymas" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Pranešimų laikinieji meniu" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Rodyti pranešimų iššokantį langą, kai failas baigia atsisiuntimą" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Rodyti pranešimų iššokantį langą, kai aplankas baigia atsisiuntimą" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Rodyti pranešimų iššokantį langą, kai gaunate privatų pranešimą" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Rodyti pranešimų iššokantį langą, kai kas nors siunčia pranešimą pokalbių " #~ "kambaryje" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Rodyti pranešimų iššokantį langą, kai esate paminėtas pokalbių kambaryje" #, fuzzy #~ msgid "Tray" #~ msgstr "Dėklas" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "$ egzemplioriai bus pakeisti nuoroda. Pridėkite tuščias dorokles, jei " #~ "norite naudoti numatytąją sistemos žiniatinklio naršyklę.\n" #~ "Protokolų doroklės: " #~ msgid "Handler:" #~ msgstr "Valdiklis:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Pirminiai skirtukai" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Įgalinti failų maršruto patarimus ieškos ir perkėlimo rodiniuose" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Rodo visą ieškos rezultato arba failo perkėlimo failo kelią, kai žymekliu " #~ "laikote aplanko maršrutą arba failo vardą." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "Rodyti privačiai bendrinamus failus bendrai naudojamose vartotojų" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Kiti klientai gali pasiūlyti galimybę siųsti privačiai bendrinamus " #~ "failus, kai naršote jų akcijas. Aplankai, kuriuose yra tokie failai, yra " #~ "prefiksuoti \"[PRIVATUS APLANKAS]\" ir jų negalima atsisiųsti, nebent " #~ "įkėlėjas suteikia aiškų leidimą." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Cenzūra & gt; Pakeisti" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Rodyti _Debug žurnalo valdiklius" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Derinti registravimą" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtualus pavadinimas" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Redaguoti virtualų pavadinimą" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopijuoti aplanko URL" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Atsiųsti" #~ msgid "Download" #~ msgstr "Atsiųsti" #~ msgid "Upload" #~ msgstr "Nusiųsti" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Nusiuntimo aplanko turinys" #, fuzzy #~ msgid "Rename" #~ msgstr "Pervardyti" #, fuzzy #~ msgid "File Lists" #~ msgstr "Failų sąrašai" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopijuoti failo maršrutą" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Pašalinti alternatyvų vardą" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Atrodo, kad \"%s\" nėra katalogas, o ne įkeliami papildiniai." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Skenuojami bičiulių viešiniai" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Baigta perrašinėti bičiulių akcijas" #, fuzzy #~ msgid "No description provided" #~ msgstr "Aprašymas: " #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Jūsų bičiulis, %s, bando atsiųsti jums failą(us)." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s neleidžiama atsiųsti Jums failų, tačiau jis vistiek bando. Išsiųstas " #~ "įspėjimas." #~ msgid "Client Version" #~ msgstr "Kliento versija" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Nurodykite kiek dienų privilegijų norite suteikti šiam naudotojui?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Bičiuliai turės didesnį prioritetą eilėje, kaip ir visame pasaulyje " #~ "privilegijuoti vartotojai." #~ msgid "Privileged" #~ msgstr "Privilegijuotas" #~ msgid "_Privileged" #~ msgstr "_Privilegijuotas" #~ msgid "Comments" #~ msgstr "Komentarai" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Taisyti komentarus" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Sukuria poaplankius pagal vartotoją, iš kurios atsisiunčiate, ir ten " #~ "saugo atsisiųstą failą / aplanką." #, fuzzy #~ msgid "Login Details" #~ msgstr "Prisijungimo duomenys" #, fuzzy #~ msgid "Advanced" #~ msgstr "Išplėstinė" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Uosto žemėlapių atnaujinimo intervalas valandomis:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Įgalinti tik bičiulių akcijas" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Failai bus nusiųsti tokia tvarka, kokia jie buvo eilėje." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Pradėtas pakartotinis skanavimas" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Baigtas viešųjų akcijų perrašymas" #~ msgid "Scanning Buddy Shares" #~ msgstr "Skenuojami bičiulių viešiniai" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "_Rescan viešosios akcijos" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Rescan B_uddy Akcijos" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "\"Rescan\" viešosios akcijos" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Rescan Buddy Akcijos" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Įgalina bičiulių akcijas, kurias gali pasiekti tik jūsų bičiulių sąrašo " #~ "vartotojai." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "" #~ "Pažymėti kiekvieną bendrai naudojamą aplanką kaip skirtą tik bičiuliams" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Nepaisoma pasirinkimo sandorio vienai akcijai, naudinga, jei laikinai " #~ "reikia neleisti visuomenei prieiti prie akcijų." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Tik vartotojai, pažymėti kaip patikimi jūsų bičiulių sąraše, gali " #~ "pasiekti tik jūsų bičiulių akcijas." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Filtruotas neįtrauktas ieškos rezultatas " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Išfiltruotas netikslus arba neteisingas ieškos rezultatas " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "Įrašytojo parametro „%(name)s“ įskiepyje nebėra" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "Įskiepis %(module)s grąžino keistą reikšmę: „%(value)s“; nepaisoma" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Nesuderinama talpykla, skirta \"%(vdir)s\", atkurianti \"%(dir)s\"" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Trūkstamo aplanko numetimas %(dir)s" #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nikotinas+ leidžia bendrinti aplankus tiesiai iš kompiuterio. Visą šių " #~ "aplankų turinį (išskyrus dotfiles) gali atsisiųsti kiti \"Soulseek\" " #~ "tinklo vartotojai. Viešos akcijos yra prieinamos kiekvienam vartotojui, o " #~ "jūsų bičiulių sąrašo vartotojai gali pasiekti tik bičiulių akcijas be " #~ "viešųjų akcijų." #~ msgid "Set your personal ticker" #~ msgstr "Nurodykite savo asmeninę bėgančią eilutę" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Gauti naudotojo informaciją" #~ msgid "Add user 'user' to your user list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į Jūsų naudotojų sąrašą" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Pašalinti naudotoją „naudotojas“ iš naudotojų sąrašo" #~ msgid "Request user info for user 'user'" #~ msgstr "Užklausti naudotojo „naudotojas“ informacijos" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Įtraukti naudotoją „naudotojas“ į Jūsų naudotojų sąrašą" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Pašalinti naudotoją „naudotojas“ iš naudotojų sąrašo" #~ msgid "Cannot find the pynicotine.utils module." #~ msgstr "Nepavyko rasti pynicotine.utils modulio." #~ msgid "Errors occured while trying to change process name:" #~ msgstr "Bandant pakeisti proceso vardą įvyko klaidų:" #, python-format #~ msgid "Unable to fully disable plugin %s" #~ msgstr "Nepavyko visiškai išjungyi įskiepio %s" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Nepavyko prisiregistroti, priežastis: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Kažkas kitas jungiasi su tokiu pat slapyvardžiu, serveris mus atjungs" #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "IP %(ip)s:%(port)s apsimeta naudotoju %(user)s su porininko užklausa, " #~ "blokuojama, nes jis neatitiktų IP: %(real_ip)s" #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s UserInfo užklausa blokuojama, galimas bandymas apsimesti iš IP " #~ "%(ip)s prievado %(port)s" #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "%s UserInfo užklausa blokuojama, galimas bandymas apsimesti iš nežinomo " #~ "IP ir prievado" #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "%(user)s užblokuotas, tačiau daro UserInfo užklausą" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s daro viešinių naršymo užklausą, blokuojamas galimas bandymas " #~ "apsimesti iš IP %(ip)s prievado %(port)s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s daro viešinių naršymo užklausą, blokuojamas galimas bandymas " #~ "apsimesti iš nežinomo IP ir prievadas" #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s daro viešinių naršymo užklausą" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Atrodo, jog viešinamų failų duomenų bazė sugadinta, perskanuokite savo " #~ "viešinius" #~ msgid "Could not bind to a local port, aborting connection" #~ msgstr "Nepavyko susieti su vietiniu prievadu, nutraukiamas ryšys" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Pakartotinas bandymas atsisiųsti nesėkmingas: naudotojas %(user)s, failas " #~ "%(file)s" #~ msgid "[Automatic Message] " #~ msgstr "[Automatinė žinutė] " #~ msgid "You are not allowed to send me files." #~ msgstr "Jums neleidžiama atsiųsti man failų." #~ msgid "(friend)" #~ msgstr "(draugas)" #~ msgid "Clear Queued" #~ msgstr "Išvalyti eilėje" #~ msgid "Abor_t" #~ msgstr "Nu_traukti" #~ msgid "Warning" #~ msgstr "Dėmesio" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "Paslėpti %(tab)s" #~ msgid "Join Public Room" #~ msgstr "Prisijungti prie viešo kambario" #~ msgid "Immediate Download" #~ msgstr "Skubus atsiuntimas" #, python-format #~ msgid "Client port is %(port)s" #~ msgstr "Kliento prievadas yra %(port)s" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Jūsų IP adreso gauti iš serverio nepavyko" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Jūsų IP adresas yra %(ip)s" #~ msgid "IP:" #~ msgstr "IP:" #~ msgid "Server" #~ msgstr "Serveris" #~ msgid "Geo Block" #~ msgstr "Geoblokavimas" #~ msgid "URL Catching" #~ msgstr "URL surinkimas" #~ msgid "Initializing transfer" #~ msgstr "Inicializuojamas siuntimas" #~ msgid "Waiting for peer to connect" #~ msgstr "Laukiama porininko prisijungimui" #~ msgid "Connecting" #~ msgstr "Jungiamasi" #~ msgid "Getting address" #~ msgstr "Gaunamas adresas" #~ msgid "Lookup a User's IP" #~ msgstr "Gauti naudotojo IP" #, python-format #~ msgid "ERROR: tray menu, %(error)s" #~ msgstr "KLAIDA: skydelio meniu, %(error)s" #, python-format #~ msgid "Speed: %s" #~ msgstr "Greitis: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Failai: %s" #, python-format #~ msgid "Directories: %s" #~ msgstr "Aplankai: %s" #~ msgid "Hates" #~ msgstr "Nemėgsta" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Iš viso leidžiamų išsiuntimų: %i" #, python-format #~ msgid "Queue size: %i" #~ msgstr "Eilės dydis: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Laisvų vietų: %s" #~ msgid "Users in list" #~ msgstr "Sąraše esantys naudotojai" #, python-format #~ msgid "%s" #~ msgstr "%s" #, python-format #~ msgid "to %(user)s" #~ msgstr "%(user)s" #~ msgid "Warnings" #~ msgstr "Perspėjimai" #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Siųsti asmeninį pranešimą tiesiogiai naudotojui (dauguma klientų to " #~ "nepalaiko)" #~ msgid "Log" #~ msgstr "Žurnalas" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Iš viso leidžiama išsiuntimų: nežinoma" #~ msgid "Slots free: unknown" #~ msgstr "Laisvi lizdai: nežinoma" #~ msgid "Queue size: unknown" #~ msgstr "Eilės dydis: nežinoma" #~ msgid "Speed: unknown" #~ msgstr "Greitis: nežinoma" #~ msgid "Files: unknown" #~ msgstr "Failai: nežinoma" #~ msgid "Directories: unknown" #~ msgstr "Aplankai: nežinoma" #~ msgid "Accepts Uploads from:" #~ msgstr "Priima failų įkėlimus iš:" #~ msgid "_Modes" #~ msgstr "_Veiksenos" #~ msgid "_Private Chat" #~ msgstr "_Pokalbiai" #~ msgid "Buddy _List" #~ msgstr "Bičiulių _sąrašas" #~ msgid "_Chat Rooms" #~ msgstr "_Kambariai" #~ msgid "_Interests" #~ msgstr "P_omėgiai" #~ msgid "Add..." #~ msgstr "Pridėti..." #~ msgid "Away:" #~ msgstr "Neaktyvus:" #~ msgid "Offline:" #~ msgstr "Atsijungęs:" #~ msgid "Online:" #~ msgstr "Prisijungęs:" #~ msgid "Enable geographical blocker" #~ msgstr "Įjungti geografinį blokavimą" #~ msgid "Always quit when main window is closed" #~ msgstr "Užveriant pagrindinį langą, uždaryti programą" #~ msgid "Notify:" #~ msgstr "Pranešti:" #~ msgid "lines" #~ msgstr "eilutes (-čių)" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "Player Command/Username" #~ msgstr "Grotuvo komanda / naudotojo vardas" #~ msgid "Legend:" #~ msgstr "Legenda:" #~ msgid "Example:" #~ msgstr "Pavyzdys:" #~ msgid "Send out a max of" #~ msgstr "Išsiųsti daugiausiai" #~ msgid "Enable URL catching" #~ msgstr "Įjungti URL surinkimą" #~ msgid "Search results" #~ msgstr "Paieškos rezultatai" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Pradėtas pakartotinas bičiulių viešinių skanavimas" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Baigtas bičiulių viešininų pakartotinis skanavimas" #~ msgid "Rescanning finished" #~ msgstr "Baigtas pakartotinis skanavimas" nicotine-plus-3.3.4/po/lv.po000066400000000000000000006323501461625273200157320ustar00rootroot00000000000000# Copyright (C) 2022-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= " "19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek Klients" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafiskais klients Soulseek vienādranga tīklam" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek;Nicotine;kopīgošana;tērzēšana;ziņapmaiņa;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Pārlūko Soulseek tīklu" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ ir Soulseek vienādranga tīkla grafiskais klients." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ mērķis ir kļūt par vieglu, patīkamu, bezmaksas un atvērtā pirmkoda " "(FOSS) alternatīvu oficiālajam Soulseek klientam, vienlaikus nodrošinot arī " "plašu funkciju klāstu." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Meklēt Failus" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Lejupielādes" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Pārlūkot Koplietojumus" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Privātā Tērzēšana" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ Komanda" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Vietne: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "parādīt šo palīdzības ziņu un iziet" #: pynicotine/__init__.py:59 msgid "file" msgstr "fails" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "izmantot ne-noklusējuma konfigurācijas failu" #: pynicotine/__init__.py:63 msgid "dir" msgstr "dir" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "alternatīva direktorija lietotāja datiem un spraudņiem" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "palaist programmu bez loga parādīšanas" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "piesaistīt ligzdas norādītajai IP (noderīgi VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "ports" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "klausīties uz norādīto portu" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "pārskenēt koplietotos failus" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "palaist programmu bezgalvas režīmā (bez grafiskās lietotāja saskarnes)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "parādīt versiju un iziet" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Jūs izmantojat neatbalstītu Python (%(old_version)s) versiju.\n" "Jums vajadzētu instalēt Python %(min_version)s vai jaunāku versiju." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Neizdevās skenēt kopīgotos failus. Lūdzu, aizveriet citas Nicotine+ " "instances un mēģiniet vēlreiz." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s ir aizgājis" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s ir tiešsaistē" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s ir bezsaistē" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Draugu Statuss" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Jūs esat pievienots privātai istabai: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Tērzēšanas ziņa no lietotāja '%(user)s' istabā '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Nevar izveidot direktoriju '%(path)s', ziņotā kļūda: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Dublējot konfigurāciju, radās kļūda: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Konfigurācijas dublējums saglabāts: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Ielādē %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Iziet no %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "pārtrauc" #: pynicotine/core.py:237 msgid "application closing" msgstr "lietotnes aizvēršana" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Iziet no %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Pirms savienojuma izveides ir jānorāda lietotājvārds un parole…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Kļūda: Lejupielādes Filtrs neizdevās! Pārbaudiet savus filtrus. Iemesls: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Kļūda: %(num)d Lejupielādes filtri neizdevās! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s lejupielādēts(-i) no %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Fails Lejupielādēts" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Izpildīts: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Izpildīt '%(command)s' neizdevās: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s lejupielādēta(-s) no %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Mape Lejupielādēta" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Izpildīts mapē: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Nevarēja pārvietot '%(tempfile)s' uz '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Lejupielādes Mapes Kļūda" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Lejupielāde pabeigta: lietotājs %(user)s, fails %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Lejupielāde pārtraukta, lietotāja %(user)s fails %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Lejupielādes I/O kļūda: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Nevar iegūt ekskluzīvu piekļuvi failam - I/O kļūda: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Nevar saglabāt failu %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Lejupielāde sākta: lietotājs %(user)s, fails %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Nevar atrast %s, lūdzu, instalējiet to." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Nav pieejama grafiskā vide, tiek izmantots bezgalvas (bez grafiskās " "lietotāja saskarnes) režīms" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Savienoties" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Atvienoties" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _privilēģijas" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferences" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Iziet" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Pārlūkot _Publiskos Koplietojumus" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Pārlūkot _Draugu Koplietojumus" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Pārlūkot _Uzticamo Draugu Koplietojumus" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "Pā_rskenēt Koplietojumus" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Konfigurēt _Koplietojumus" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Tastatūras Īsinājumtaustiņi" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "Uz_stādīšanas Palīgs" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "Pārsū_tīšanas Statistika" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Ziņot par _kļūdu" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Uzlabot T_ulkojumus" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "P_ar Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fails" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Koplietojumi" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Palīdzība" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Pārlūkot Koplietojumus" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Nevar parādīt paziņojumu: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Jūs joprojām augšupielādējat failus. Vai tiešām vēlaties iziet?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Gaidīt, līdz augšupielādes tiks pabeigtas" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Vai tiešām vēlaties iziet?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Nē" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Palaist Fonā" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Iziet no Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Koplietojumi Nav Pieejami" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Pārbaudiet, vai ārējie diski ir pievienoti un vai mapju atļaujas ir pareizas." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "At_celt" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Mēģināt vēlreiz" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Piespiedu Pārskenēšana" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Nepareiza Parole" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Lietotājs %s jau pastāv, un ievadītā parole nav derīga. Lūdzu, izvēlieties " "citu lietotājvārdu, ja pierakstāties pirmo reizi." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Mainīt _Pierakstīšanās Informāciju" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Ziņa Lejupielādētājiem" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "Nosūtīt privātu ziņu visiem lietotājiem, kuri lejupielādē no jums:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Sūtīt Ziņu" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Sūtīt Ziņu Draugiem" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Nosūtīt privātu ziņu visiem draugiem, kas ir tiešsaistē:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Atlasiet Saglabāto Koplietojumu Saraksta Failu" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kritiska Kļūda" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ saskārās ar kritisku kļūdu, un ir jāiziet. Lūdzu, nokopējiet " "sekojošo ziņu un iekļaujiet to kļūdu ziņojumā:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Iziet no Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Kopēt un Ziņot par Kļūdu" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Statuss" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Valsts" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Lietotājs" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Ātrums" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Faili" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Uzticams" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Paziņot" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Prioritātes" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Pēdējo Reizi Redzēts" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Piezīme" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Pievienot Lietotājam _Piezīmi…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Noņemt" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nekad nav redzēts" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Pievienot Lietotājam Piezīmi" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Pievienojiet piezīmi par lietotāju %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Pievienot" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Vai Izveidot Jaunu Istabu?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Vai tiešām vēlaties izveidot jaunu istabu \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Padarīt istabu privātu" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "_Meklēt Lietotāja Failus" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Atrast…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopēt" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopēt Visu" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Notīrīt Darbību Skatu" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Iziet No Istabas" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Kopēt Saiti" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Skatīt Istabas Žurnālu" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Dzēst Istabas Žurnālu…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Notīrīt Ziņas Skatu" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s pievienojās istabai" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s pieminēja Jūs istabā %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Jūs pieminēja %(user)s istabā %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Ziņa no %(user)s istabā %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s izgāja no istabas" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s ir aizgājis" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s ir atgriezies" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Vai Dzēst Žurnālā Reģistrētās Ziņas?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Vai tiešām vēlaties neatgriezeniski dzēst visas žurnālā reģistrētās ziņas " "šai istabai?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Par" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Vietne" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Radās kļūda, pārbaudot jaunāko versiju: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Pieejama jauna versija: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Atjaunināta" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Pārbauda jaunāko versiju…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Uzstādīšanas palīgs" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Virtuālā Mape" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Mape" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Pabeigt" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Nākamais" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Pievienot Koplietotu Mapi" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Rediģēt Koplietoto Mapi" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Ievadiet jaunu virtuālo nosaukumu '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Rediģēt" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Faila Rekvizīti" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Faila Rekvizīti (%(num)i no %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Faila Rekvizīti (%(num)i no %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Pielietot" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Pievienot…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Rediģēt…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Iestatījumi" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Pievienot Vienumu" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Rediģēt Vienumu" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Nezināms" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Pārbaudīt Porta Statusu" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, ports %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Paroles Maiņa Noraidīta" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Ievadiet jaunu paroli savam Soulseek kontam:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Jūs pašlaik esat izrakstījies no Soulseek tīkla. Ja vēlaties mainīt esoša " "Soulseek konta paroli, Jums ir jāpierakstās šajā kontā." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Ievadiet paroli, ko izmantot, pierakstoties:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Mainīt Paroli" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Izmainīt" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Neviens" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Visi" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Draugi" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Uzticamie draugi" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nekas" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Atvērt Failu" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Atvērt Failu Pārvaldniekā" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Meklēšana" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pauzēt" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Atsākt" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Pārlūkot Mapi" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintakse: Nav reģistrjutīga. Ja iespējots, var izmantot Python " "regulārās izteiksmes, pretējā gadījumā tiek atbalstītas tikai aizstājējzīmju " "* sakritības." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtrs" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Pievienot Lejupielādes Filtru" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Ievadiet jaunu lejupielādes filtru:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Iespējot regulārās izteiksmes" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Rediģēt Lejupielādes Filtru" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Mainiet šo lejupielādes filtru:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Neizdevās! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtri Ir Veiksmīgi" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Publisks" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Pieejams" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Pārtraukt" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Mēģināt vēlreiz" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Pirmais Iekšā, Pirmais Ārā" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Lietotājvārds" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP Adrese" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorēt Lietotāju" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Ievadiet tā lietotāja vārdu, kuru vēlaties ignorēt:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorēt IP Adresi" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Ievadiet IP adresi, kuru vēlaties ignorēt:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* ir aizstājējzīme" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Aizliegt Lietotāju" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Ievadiet tā lietotāja vārdu, kuru vēlaties aizliegt:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Aizliegt IP Adresi" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Ievadiet IP adresi, kuru vēlaties bloķēt:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Formatēt kodus" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Modelis" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Aizvietotājs" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Cenzūras Modelis" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Ievadiet modeli, kuru vēlaties cenzēt. Pievienojiet atstarpes ap modeli, ja " "nevēlaties saskaņot virknes vārdos (var neizdoties rindu sākumā un beigās)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Rediģēt Cenzēto Modeli" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Pievienot Aizvietotāju" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Ievadiet teksta modeli un to, ar ko to aizstāt:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Rediģēt Aizvietotāju" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Sistēmas noklusējums" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Rādīt apstiprinājuma dialoglodziņu" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Palaist fonā" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "treknraksts" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "slīpraksts" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "pasvītrots" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normāls" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Atdalīt Draugu cilni" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Sānu josla cilnē Tērzēšanas Istabas" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Vienmēr redzama sānu josla" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Augša" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Apakša" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Pa kreisi" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Pa labi" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Tiešsaistē" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Aizgājis" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Bezsaistē" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Izmainīta Cilne" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Cilnes Izcelšana" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Logs" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Tiešsaistē (Ikonjosla)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Aizgājis (Ikonjosla)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Bezsaistē (Ikonjosla)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Ziņa (Ikonjosla)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokols" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Komanda" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Pievienot URL Apstrādātāju" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Ievadiet protokolu un komandu URL apstrādātājam:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Rediģēt Komandu" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Ievadiet jaunu komandu protokolam %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Lietotājvārds;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Mūzikas atskaņotājs (piem., amarok, audacious, exaile); atstāt tukšu, lai " "automātiski noteiktu:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Lietotājvārds: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Komanda:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Nosaukums" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Tagad Atskaņo (parasti \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Mākslinieks" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Ilgums" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitu pārraides ātrums" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Komentārs" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Albums" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Celiņa Numurs" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Gads" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Faila nosaukums (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programma" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Iespējots" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Spraudnis" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Nav Atlasīts Neviens Spraudnis" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Tīkls" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Lietotāja Saskarne" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Koplietojumi" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Augšupielādes" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Meklējumi" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Lietotāja Profils" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Tērzēšana" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Tagad Atskaņo" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Pierakstīšanās" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Aizliegtie Lietotāji" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Ignorētie Lietotāji" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Spraudņi" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL Apstrādātāji" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferences" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Izvēlieties Konfigurācijas Dublējuma Faila Nosaukumu" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Pārsūtīšanas Statistika" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Kopā Kopš %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Vai Atiestatīt Pārsūtīšanas Statistiku?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Vai tiešām vēlaties atiestatīt pārsūtīšanas statistiku?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Vēlmju saraksts" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Vēlme" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Meklēt vienumu" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Rediģēt Vēlmi" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Ievadiet jaunu vērtību vēlmei '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Vai Notīrīt Vēlmju Sarakstu?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Vai tiešām vēlaties notīrīt savu vēlmju sarakstu?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Ceļš" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "Tu_rpināt" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_auze" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Pabeigts / Filtrēts" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Pabeigts" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pauzēts" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrēts" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Izdzēsts" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Rindā…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Viss…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Notīrīt Rindā Esošās Lejupielādes" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Vai tiešām vēlaties notīrīt visas rindā esošās lejupielādes?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Notīrīt Visas Lejupielādes" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Vai tiešām vēlaties notīrīt visas lejupielādes?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Vai lejupielādēt %(num)i failus?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Vai tiešām vēlaties lejupielādēt %(num)i failus no %(user)s mapes %(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Lejupielādēt Mapi" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Patīk" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Nepatīk" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Vērtējums" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Vienums" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Ieteikumi vienumam" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Man Šis _Patīk" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Man Šis _Nepatīk" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Ieteikumi" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Līdzīgi Lietotāji" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Ieteikumi (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Līdzīgi Lietotāji (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Privāta Ziņa No %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Atrastie Vēlmju Saraksta Rezultāti" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Lietotāju Profili" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Tērzēšanas Istabas" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Intereses" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Tērzēšana" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Savienojumi" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Ziņas" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Pārsūtījumi" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Dažādi" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Atrast…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopēt" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Kopēt _visu" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Skatīt _Atkļūdošanas Žurnālus" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Skatīt _Pārsūtījumu Žurnālus" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "Žurnā_la Kategorijas" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Notīrīt Žurnāla Skatu" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Lejupielādes: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Augšupielādes: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Sagatavo Koplietojumus" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Skenē Koplietojumus" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Iziet..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Jaunākā Ziņa" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Istaba" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Lietotāji" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Pievienojieties Istabai" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Iziet No Istabas" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Atteikties No Privātās Istabas" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Atcelt Istabas Dalību" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Aizvērt Visas Cilnes…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "Aizvērt _Cilni" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Skatīt Tērzēšanas Žurnālu" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Dzēst Tērzēšanas Žurnālu…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Lietotāja Darbības" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Vai tiešām vēlaties neatgriezeniski dzēst visas žurnālā reģistrētās ziņas " "šim lietotājam?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Ziņas nosūtītas, kamēr bijāt bezsaistē" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Globāls" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Draugi" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Istabas" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Lietotājs" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Rindā" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Faila Tips" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Faila nosaukums" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Izmērs" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Kvalitāte" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Kopēt _Faila Ceļu" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopēt _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Kopēt Mapes U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Lejupielādēt Failu(s)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Lejupielādēt Failu(s) _Uz…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Lejupielādēt _mapi(-es)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Lejupielādēt M_api(-es) Uz…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Skatīt Lietotāja _Profilu" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Pārlūkot Mapi" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "F_aila rekvizīti" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Kopēt Meklēšanas Vienumu" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Notīrīt Visus Rezultātus" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Notīrīt Filtrus" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Atjaunot Filtrus" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVĀTS] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Rezultātu Filtri [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Rezultātu Filtri" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d aktīvais(-ie) filtrs(-i)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Pievienot Vēl_mi" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Noņemt Vēl_mi" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Atlasiet Lietotāja Rezultātus" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Kopā: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Rezultāti" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Atlasiet Faila(-u) Galamērķa Mapi" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Atlasiet Galamērķa Mapi" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Rindā" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "Rindā (prioritizēta)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "Rindā (priviliģēta)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Statusa iegūšana" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Pārsūta" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Savienojums aizvērts" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Savienojuma laika ierobežojums" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Lietotājs ir atteicies" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Atcelts" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Lejupielādes mapes kļūda" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Lokālā faila kļūda" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Aizliegts" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Fails nav kopīgots" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Gaida izslēgšanu" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Failu nolasīšanas kļūda" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Rinda" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Procenti" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Pagājušais Laiks" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Atlikušais Laiks" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Atvērt Failu" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Atvērt failu _pārvaldniekā" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Meklēt" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Notīrīt Visu" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Atlasīt Lietotāja Pārsūtījumus" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Pārtraukt" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Pabeigts / Atcelts / Neizdevās" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Pabeigts / Atcelts" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Neizdevies" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Lietotājs Ir Atteicies" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Notīrīt Rindā Esošās Augšupielādes" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Vai tiešām vēlaties notīrīt visas rindā esošās augšupielādes?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Notīrīt Visas Augšupielādes" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Vai tiešām vēlaties notīrīt visas augšupielādes?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Saglabāt Koplietojumu Sarakstu Diskā" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Augšupielādēt Mapi Un Apakšmapes…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Kopēt _Mapes Ceļu" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Lejupielādēt mapi un apakšmapes" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Lejupielādēt mapi un apakšmapes _uz…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Faila Nosaukums" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Augšup_ielādēt failu(s)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Augšupielādēt Mapi…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Lejupielādēt Mapi _Uz…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Lietotāja koplietoto failu saraksts ir tukšs. Vai nu lietotājs neko " "nekopīgo, vai arī kopīgo failus privāti." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Nevar pieprasīt koplietojamos failus no lietotāja. Vai nu lietotājs ir " "bezsaistē, vai klausīšanās porti ir aizvērti abās pusēs, vai arī ir " "īslaicīgs savienojamības traucējums." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Atlasiet Vairāku Mapju Lejupielādes Galamērķi" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Augšupielādēt Mapi (ar Apakšmapēm) Lietotājam" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Augšupielādēt Mapi Lietotājam" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Ievadiet tā lietotāja vārdu, kuram vēlaties augšupielādēt:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Augšupielāde" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Atlasiet Failu Galamērķa Mapi" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Augšupielādējiet Failu(s) Lietotājam" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Kopēt Attēlu" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Saglabāt Attēlu" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Neizdevās ielādēt attēlu lietotājam %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Nevar pieprasīt informāciju no lietotāja. Vai nu Jums abiem ir slēgts " "klausīšanās ports, lietotājs ir bezsaistē, vai arī radusies īslaicīga " "savienojuma problēma." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Noņemt _draugu" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Pievienot _draugu" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Atbloķēt Lietotāju" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Beigt Lietotāja Ignorēšanu" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Jā" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nē" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Lūdzu, ievadiet dienu skaitu." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Dāviniet savas Soulseek privilēģijas dienas lietotājam %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "Atlikušas %(days)s dienas" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Dāvināt Privilēģijas" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Dot Privilēģijas" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Aizvērt" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Jā" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_LABI" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Atlasiet failu" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Atlasiet mapi" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "Atla_sīt" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Atlasiet attēlu" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Visi attēli" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Saglabāt kā…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Neviens)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Aizvērt _Cilni" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Vai Aizvērt Visas Cilnes?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Vai tiešām vēlaties aizvērt visas cilnes?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Nelasīta(s) Cilne(s)" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Visas Cilnes" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "_Atkārtoti Atvērt Aizvērto Cilni" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "Atlasīts(-i) %s fails(-i)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Pārlūkot Failus" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "Pievienot _Draugu" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Rādīt IP A_dresi" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Privātās Istabas" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Noņemt No Privātās Istabas %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Pievienot Privātajai Istabai %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Noņemt kā %s operatoru" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Pievienot kā %s operatoru" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- iepriekšējās ziņas augstāk ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Izpildāms" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Attēls" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Arhīvs" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Dažādi" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Dokuments" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Teksts" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Radās kļūda, ielādējot pielāgoto ikonu %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Paslēpt Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Rādīt Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Kolonna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Negrupēts" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Grupēšana pēc Mapes" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Grupēšana pēc Lietotāja" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Vai tiešām vēlaties iziet? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "Lietotājs %s jau pastāv, un ievadītā parole nav derīga." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Ierakstiet %s, lai pieteiktos ar citu lietotājvārdu vai paroli." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Parole: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Lai izveidotu jaunu Soulseek kontu, ievadiet vēlamo lietotājvārdu un paroli. " "Ja Jums jau ir konts, aizpildiet esošos pierakstīšanās datus." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Tālāk norādītie koplietojumi nav pieejami:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Mēģināt atkārtotu pārskenēšanu? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nevarēja ierakstīt žurnāla failā \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Nevar piekļūt žurnāla failam %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Apvienotie Arābu Emirāti" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistāna" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigva un Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Angilja" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albānija" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armēnija" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktīda" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentīna" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Amerikas Samoa" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austrija" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Austrālija" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Ālandu salas" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaidžāna" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnija un Hercegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbadosa" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladeša" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Beļģija" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkinafaso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgārija" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahreina" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benina" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Svētā Bartelemija" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudu salas" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Bruneja Darusalama" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolīvija" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sintēstatiusa un Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brazīlija" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamu Salas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Butāna" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Buvē sala" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botsvāna" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Baltkrievija" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Beliza" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanāda" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Kokosu (Kīlinga) Salas" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Kongo Demokrātiskā Republika" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Centrālāfrikas Republika" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Šveice" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Kotdivuāra" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Kuka Salas" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Čīle" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kamerūna" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Ķīna" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolumbija" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Kostarika" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Kaboverde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Kirasao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Ziemassvētku Sala" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Kipra" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Čehija" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Vācija" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Džibutija" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dānija" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominikānas Republika" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Alžīrija" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ekvadora" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Igaunija" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Ēģipte" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Rietumsahāra" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritreja" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spānija" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiopija" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Eiropa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Somija" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fidži" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Folklenda Salas (Malvinu salas)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikronēzija" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Fēru Salas" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Francija" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabona" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Lielbritānija" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenāda" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Gruzija" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Franču Gviāna" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Gērnsija" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Gana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltārs" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Grenlande" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambija" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Gvineja" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Gvadelupa" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Ekvatoriālā Gvineja" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grieķija" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Dienviddžordžija un Dienvidsendviču Salas" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Gvatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guama" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Gvineja-Bisava" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Gajāna" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Honkonga" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Hērda un Makdonalda Salas" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Hondurasa" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Horvātija" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Ungārija" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonēzija" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Īrija" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Izraēla" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Menas Sala" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Indija" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Britu Indijas Okeāna Teritorija" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irāka" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Irāna" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islande" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Itālija" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Džērsija" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordānija" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japāna" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenija" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirgizstāna" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kambodža" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Komoras" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Sentkitsa un Nevisa" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Ziemeļkoreja" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Dienvidkoreja" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuveita" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Kaimanu Salas" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazahstāna" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laosa" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Libāna" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Sentlūsija" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Lihtenšteina" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Šrilanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Libērija" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lietuva" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luksemburga" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Latvija" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Lībija" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Maroka" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Melnkalne" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Senmartēna" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskara" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Māršala Salas" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Ziemeļmaķedonija" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Mjanma" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolija" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Makao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Ziemeļu Marianas Salas" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinika" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritānija" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrata" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Maurīcija" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldīvija" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malāvija" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Meksika" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malaizija" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambika" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namībija" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Jaunkaledonija" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Nigēra" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Norfolkas Sala" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigērija" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nikaragva" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Nīderlande" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norvēģija" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepāla" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Jaunzēlande" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omāna" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Franču Polinēzija" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua Jaungvineja" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipīnas" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistāna" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polija" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Senpjēra un Mikelona" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitkērna" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puertoriko" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestīnas Valsts" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugāle" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paragvaja" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katara" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Reinjona" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumānija" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbija" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Krievija" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Saūda Arābija" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Zālamana Salas" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seišelas" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudāna" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Zviedrija" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapūra" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Svētās Helēnas Sala" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slovēnija" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbāra un Jana Majena Salas" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Slovākijas Republika" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sjerraleone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "Sanmarīno" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegāla" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somālija" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinama" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Dienvidsudāna" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Santome un Prinsipi" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "Salvadora" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sintmartena" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Sīrija" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Esvatīni" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Tērksas un Kaikosas Salas" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Čada" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Francijas Dienvidjūru Zemes" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Taizeme" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadžikistāna" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Austrumtimora" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistāna" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunisija" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turcija" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidāda un Tobāgo" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taivāna" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzānija" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "ASV Mazās aizjūras salas" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Amerikas Savienotās Valstis" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Urugvaja" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbekistāna" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Svētais Krēsls (Vatikāna Pilsētvalsts)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Sentvinsenta un Grenadīnas" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venecuēla" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Britu Virdžīnu Salas" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "ASV Virdžīnu Salas" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vjetnama" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Volisa un Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Jemena" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Majota" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Dienvidāfrika" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambija" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabve" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Ziņas teksta pārvēršana runā neizdevās: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Lūdzu, norādiet savu Last.fm lietotājvārdu un API atslēgu" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Tagad Atskaņošanas Kļūda" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nevarēja izveidot savienojumu ar Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Nevarēja iegūt jaunāko celiņu no Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nevarēja atrast piemērotu MPRIS atskaņotāju" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Atrasti vairāki MPRIS atskaņotāji: %(players)s. Izmanto: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automātiski atrasts MPRIS atskaņotājs: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Radās problēma vaicājumā %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Lūdzu, norādiet savu ListenBrainz lietotājvārdu" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nevarēja izveidot savienojumu ar ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Neizskatās, ka Jūs šobrīd kaut ko klausāties" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Nevarēja iegūt pašreizējo celiņu no ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Tīkla Filtri" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Pieejamo komandu saraksts" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Savienoties ar serveri" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Atvienoties no servera" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Pārslēgt aizgājis statusu" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Spraudņu pārvaldība" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Notīrīt tērzēšanas logu" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Sacīt kaut ko trešajā personā" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Paziņot pašlaik atskaņoto dziesmu" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Pievienoties tērzēšanas istabai" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Iziet no tērzēšanas istabas" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Sacīt ziņu norādītajā tērzēšanas istabā" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Atvērt privāto tērzēšanu" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Aizvērt privāto tērzēšanu" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Pieprasīt lietotāja klienta versiju" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Sūtīt privātu ziņu lietotājam" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Pievienot lietotāju draugu sarakstam" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Noņemt draugu no draugu saraksta" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Pārlūkot lietotāja failus" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Rādīt lietotāja profila informāciju" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Rādīt IP adresi vai lietotājvārdu" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Bloķēt savienojumus no lietotāja vai IP adreses" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Noņemt lietotāju vai IP adresi no aizlieguma sarakstiem" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Apklusināt ziņas no lietotāja vai IP adreses" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Noņemt lietotāju vai IP adresi no ignorēšanas sarakstiem" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Pievienot koplietojumu" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Noņemt koplietojumu" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Uzskaitīt koplietojumus" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Pārskenēt koplietojumus" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Sākt globālu failu meklēšanu" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Meklēt failus pievienotajās istabās" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Meklēt visu draugu failos" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Meklēt lietotāja koplietojamos failos" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Uzskaita %(num)i pieejamās komandas:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Uzskaita %(num)i pieejamās komandas, kas atbilst \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Ievadiet %(command)s, lai uzskaitītu līdzīgas komandas" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Ievadiet %(command)s, lai uzskaitītu pieejamās komandas" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Nav pievienojies istabā %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Nav ziņapmaiņas ar lietotāju %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Aizvērta privātā tērzēšana ar lietotāju %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Aizliegts %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Atcelts aizliegums %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Ignorēts %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Neignorēts %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "Uzskaitīti %(num_listed)s koplietojumi (%(num_total)s konfigurēti)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Nevar kopīgot nepieejamu mapi \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Pievienots %(group_name)s koplietojums \"%(virtual_name)s\" (nepieciešama " "pārskenēšana)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Nav koplietojuma ar nosaukumu \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Noņemts koplietojums \"%s\" (nepieciešama pārskenēšana)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Ielādē spraudņu sistēmu" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Nevar ielādēt spraudni %(name)s. Spraudņa mapes nosaukumā ir nederīgas " "rakstzīmes: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konfliktējoša %(interface)s komanda spraudnī %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Ielādēts spraudnis %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nevar ielādēt spraudni %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Izlādēts spraudnis %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nevar izlādēt spraudni %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Spraudnis %(module)s neizdevās ar kļūdu %(errortype)s: %(error)s.\n" "Trasējums: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Nav apraksta" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Trūkst %s argumenta" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Nederīgs arguments, iespējamās izvēles: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Lietojums: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Nezināma komanda: %(command)s. Ievadiet %(help_command)s, lai atvērtu " "pieejamo komandu sarakstu." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Neviena UPnP ierīce netika atrasta" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Neizdevās pārsūtīt ārējo portu %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Ārējais ports %(external_port)s veiksmīgi pārsūtīts uz lokālo " "IP adresi %(ip_address)s ports %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privāta ziņa no lietotāja '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Meklē vēlmju saraksta vienumu \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Vēlmju saraksta gaidīšanas periods ir iestatīts uz %s sekundēm" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Lietotājs %(user)s meklē \"%(query)s\", atrada %(num)i rezultātus" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Atjauno koplietotojumus…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Pārskenē koplietotos failus…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Pārskenēšana pabeigta: %(num)s mapes atrastas" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Radusies nopietna kļūda, pārskenējot koplietojumus. Ja šī problēma " "saglabājas, izdzēsiet %(dir)s/*.dbn un mēģiniet vēlreiz. Ja tas nepalīdz, " "lūdzu, iesniedziet ziņojumu par kļūdu, iekļaujot šo steka trasējumu: " "%(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Kļūda skenējot failu %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Kļūda skenējot mapi %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Kļūda, skenējot metadatus failam %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Pārskenēšana pārtraukta, jo koplietojumi nav pieejami: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Lietotājs %(user)s pārlūko Jūsu kopīgoto failu sarakstu" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Neizdevās izgūt koplietoto mapi %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Nevar nolasīt koplietošanas datu bāzi. Lūdzu, pārskenējiet savus " "koplietojumus. Kļūda: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Norādītā tīkla saskarne '%s' nav pieejama" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Nevar klausīties portā %(port)s. Pārliecinieties, ka to neizmanto neviena " "cita lietotne, vai izvēlieties citu portu. Kļūda: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Klausīšanās portā: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nevar izveidot savienojumu ar serveri %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Atkārtota savienojuma izveide ar serveri pēc %i sekundēm" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Savienojas ar %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Savienots ar serveri %(host)s:%(port)s, pierakstās…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Atvienots no servera %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Kāds ir pierakstījies Jūsu Soulseek kontā citur" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Augšupielāde pabeigta: lietotājs %(user)s, IP adrese %(ip)s, fails %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Augšupielāde pārtraukta, lietotāja %(user)s fails %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Augšupielādes I/O kļūda: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Sākta augšupielāde: lietotājs %(user)s, IP adrese %(ip)s, fails %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Nevar izveidot direktoriju “%(folder)s”, ziņotā kļūda: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Neizdevās ielādēt koplietošanas failus no diska: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Saglabāts lietotāja %(user)s koplietoto failu saraksts uz %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Nevar saglabāt koplietojumus, “%(user)s”, ziņotā kļūda: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Attēls saglabāts uz %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Nevar saglabāt attēlu uz %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Lietotājs %(user)s skatās Jūsu profilu" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nevar izveidot savienojumu ar serveri. Iemesls: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Nevar Izveidot Savienojumu" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Nevar izgūt lietotāja %s IP, jo šis lietotājs ir bezsaistē" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Lietotāja %(user)s IP adrese: %(ip)s, ports %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseek Paziņojums" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i priviliģēti lietotāji" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Jums nav Soulseek privilēģiju. Kamēr privilēģijas ir aktīvas, jūsu " "lejupielādes tiks rindotas pirms neprivilēģēto lietotāju lejupielādēm." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Atlikušas %(days)i dienas, %(hours)i stundas, %(minutes)i minūtes, " "%(seconds)i sekundes Soulseek privilēģijām" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Jūsu parole ir nomainīta" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Parole Nomainīta" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Nevar atvērt faila ceļu %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Nevar atvērt URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Radās problēma, lasot failu %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Mēģinājums ielādēt dublējumu failam %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Nevar dublēt failu %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Nevar saglabāt failu %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Nevar atjaunot iepriekšējo failu %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Pievienot draugu…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Aktivitātes žurnāla meklēšana…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Tērzēšanas žurnāla meklēšana…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Sūtīt ziņu…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Pārslēdz Teksta Pārvēršanu Runā" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Tērzēšanas Istabas Komandu Palīdzība" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Žurnāls" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Istabas Siena" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "_Istabas siena" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Izveidoja" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Tulkojis" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "License" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Iepriekšējais" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Laipni lūgti Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Uzstādīt…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Ja vēlamais lietotājvārds jau ir aizņemts, Jums tiks piedāvāts to mainīt." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Lai savienotos ar citiem Soulseek lietotājiem, klausīšanās ports jūsu " "maršrutētājā ir jānovirza uz jūsu datoru." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Ja klausīšanās ports ir aizvērts, varēsiet izveidot savienojumu tikai ar " "tiem lietotājiem, kuru klausīšanās porti ir atvērti." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Ja nepieciešams, tālāk izvēlieties citu klausīšanās portu. To var izdarīt " "arī vēlāk preferencēs." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Lejupielādēt Failus Mapē" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Kopīgot Mapes" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek lietotāji varēs lejupielādēt no jūsu koplietojumiem. Veiciniet " "Soulseek tīkla attīstību, daloties ar saviem failus, kā arī ar to, ko esat " "lejupielādējuši no citiem lietotājiem." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Jūs esat gatavs lietot Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "Soulseek ir nešifrēts protokols, kas nav paredzēts drošai saziņai." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Ziedošana Soulseek piešķir Jums privilēģijas uz noteiktu laika periodu. Ja " "Jums ir privilēģijas, jūsu lejupielādes būs rindā pirms lietotājiem, kuriem " "nav privilēģiju." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Iepriekšējais Fails" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Nākamais Fails" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nosaukums" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Pēdējais Ātrums" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Eksportēt…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Tastatūras Īsinājumtaustiņi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Vispārīgi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Savienot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Atvienot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Pārskenēt Koplietojumus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Rādīt Žurnāla Paneli" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Apstiprināt Iziešanu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Iziet" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Izvēlnes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Atvērt Galveno Izvēlni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Atvērt Konteksta Izvēlni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Cilnes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Mainīt Galveno Cilni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Dodieties uz Iepriekšējo Sekundāro Cilni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Dodieties uz Nākamo Sekundāro Cilni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Atkārtoti Atvērt Aizvērto Sekundāro Cilni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Aizvērt Sekundāro Cilni" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Saraksti" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Kopēt Atlasīto Šūnu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Noņemt Atlasīto Rindu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Rediģēšana" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Izgriezt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Ielīmēt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Ievietot Emocijzīmes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Atlasīt Visu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Atrast" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Atrast Nākamo Atbilstību" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Atrast Iepriekšējo Atbilstību" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Failu Pārsūtīšana" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Atsākt / Atkārtot Pārsūtīšanu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pauzēt / Pārtraukt Pārsūtīšanu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Lejupielādēt / Augšupielādēt Uz" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Saglabāt Sarakstu Diskā" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Atsvaidzināt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Izvērst / Sakļaut Visu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Atpakaļ uz Vecāka Mapi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Failu Meklēšana" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Rezultātu Filtri" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Pašreizējā Sesija" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Pabeigtās Lejupielādes" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Lejupielādētais Izmērs" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Pabeigtās Augšupielādes" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Augšupielādētais Izmērs" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Kopā" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Atiestatīt…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Vēlmju saraksta vienumi tiek automātiski meklēti regulāros intervālos, lai " "atrastu reti sastopamus failus." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Pievienot Vēlmi…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Notīrīt Visu…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Notīrīt Visas Pabeigtās/Filtrētās Lejupielādes" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Notīrīt Pabeigtos" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Notīrīt Konkrētas Lejupielādes" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Notīrīt _visu…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Personīgās Intereses" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Pievienojiet kaut ko, kas Jums patīk…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Personīgi Nepatīk" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Pievienojiet kaut ko, kas Jums nepatīk…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Atsvaidzināt Ieteikumus" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Galvenā Izvēlne" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Istaba…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Lietotājvārds…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Meklēšanas vienums…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Meklēšanas modeļi: ar vārdu = vienums, bez vārda = -vienums, daļējs vārds = " "*nums" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Meklēšanas Tvērums" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Vēlmju saraksts" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Konfigurēt Meklēšanas" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Ievadiet meklēšanas terminu, lai meklētu failus, kurus koplieto citi " "lietotāji Soulseek tīklā" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Failu Grupēšanas Režīms" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Konfigurēt Lejupielādes" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Faili, kurus lejupielādējat no citiem lietotājiem, tiek ierindoti šeit, un " "tos var pauzēt un atsākt pēc pieprasījuma" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Konfigurēt Augšupielādes" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Lietotāju mēģinājumi lejupielādēt Jūsu koplietotos failus tiek ierindoti un " "pārvaldīti šeit" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Atvērt Sarakstu" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Atver lokālo koplietoto failu sarakstu, kas iepriekš tika saglabāti diskā" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Konfigurēt Koplietojumus" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Ievadiet tā lietotāja vārdu, kura koplietotos failus vēlaties pārlūkot. " "Varat arī saglabāt sarakstu diskā un pārskatīt to vēlāk." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Personīgais Profils" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Konfigurēt Kontu" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Ievadiet lietotāja vārdu, lai skatītu lietotāja aprakstu, informāciju un " "personīgo attēlu" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "Tērzēšanas _vēsture" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Konfigurēt Tērzēšanas" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Ievadiet lietotāja vārdu, lai sāktu ar viņu privātu saraksti" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "Sūtīt Ziņu Visie_m" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Konfigurēt Ignorētos Lietotājus" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Pievienojiet lietotājus kā draugus, lai koplietotu ar viņiem noteiktas mapes " "un saņemtu paziņojumus, kad viņi ir tiešsaistē" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Pievienoties vai izveidot istabu…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Pievienojieties esošai tērzēšanas istabai vai izveidojiet jaunu istabu, lai " "tērzētu ar citiem lietotājiem Soulseek tīklā" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Konfigurēt Lietotāja Profilu" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Meklēšana žurnālā…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Savienojumi" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Lejupielāde (Ātrums / Aktīvie Lietotāji)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Augšupielāde (Ātrums / Aktīvie Lietotāji)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Meklēšana tērzēšanas vēsturē…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Lejupielādes Ātruma Ierobežojumi" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Neierobežots lejupielādes ātrums" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Izmantot lejupielādes ātruma ierobežojumu (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Izmantot alternatīvu lejupielādes ātruma ierobežojumu (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Meklēšana istabās…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Atsvaidzināt Istabas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Rādīt publiskās tērzēšanas istabas ziņu plūsmu" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Pieņemt privāto istabu ielūgumus" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Uzrakstiet vienu ziņojumu, ko pārējie istabas lietotāji varēs izlasīt vēlāk. " "Jaunākās ziņas tiek rādītas augšdaļā." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Uzstādīt sienas ziņu…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Meklēšanas Rezultātu Filtri" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Meklēšanas rezultātu filtri tiek izmantoti, lai precizētu, kuri meklēšanas " "rezultāti tiek rādīti." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Katram meklēšanas rezultātu sarakstam ir savs filtrs, ko var atklāt, " "pārslēdzot pogu Rezultātu filtri. Filtrs sastāv no vairākiem laukiem, kas " "visi tiek pielietoti, nospiežot Enter jebkurā no laukiem. Filtrēšana tiek " "nekavējoties pielietota jau saņemtajiem rezultātiem, kā arī tiem, kas vēl " "nav saņemti." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Kā norāda nosaukums, meklēšanas rezultātu filtrs nevar paplašināt jūsu " "sākotnējo meklēšanu, tas var tikai to sašaurināt. Lai paplašinātu vai " "mainītu meklēšanas nosacījumus, veiciet jaunu meklēšanu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Rezultātu Filtra Lietojums" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Iekļaut Tekstu" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "Tiks parādīti faili, mapes un lietotājvārdi, kas satur šo tekstu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Lielo/mazo burtu lietojums ir nebūtisks, taču vārdu secība ir svarīga: " "'Instrumental Remix” nerādīs nevienu 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Izmantojiet | (vai caurules), lai atdalītu vairākas precīzas frāzes. " "Piemērs:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Neiekļaut Tekstu" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Tāpat kā iepriekš, bet faili, mapes un lietotājvārdi tiek filtrēti, ja " "teksts sakrīt." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtrē failus, pamatojoties uz to faila paplašinājumu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Var norādīt vairākus failu paplašinājumus, kas atklās vairāk rezultātu " "sarakstā. Piemērs:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Ir iespējams arī invertēt filtru, norādot failu paplašinājumus, kurus " "nevēlaties redzēt rezultātos, ar izsaukuma zīmi! Piemērs:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Faila Izmērs" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtrē failus, pamatojoties uz to faila izmēru." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Pēc noklusējuma izmantotā vienība ir baiti (B), un tiks saskaņoti faili, kas " "ir lielāki vai vienādi ar (>=) šo vērtību." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Pievienojiet b, k, m vai g (alternatīvi kib, mib vai gib), lai norādītu " "baita, kibibaita, mebibaita vai gibibaita vienības:\n" " 20m, lai parādītu failus, kas lielāki par 20 MiB (mebibaitiem)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Pievienojiet sākumā = vērtībai, lai norādītu precīzu atbilstību:\n" " =1024 atbilst failiem, kas ir tieši 1 KiB (kibibaits)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Pievienojiet sākumā ! vērtībai, lai neiekļautu konkrēta izmēra failus:\n" " !30.5m, lai paslēptu failus, kuru izmērs ir 30.5 MiB (megabaiti)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Pievienojiet sākumā < vai >, lai atrastu failus, kas ir mazāki/lielāki par " "norādīto vērtību. Lai iekļautu diapazonu, starp katru nosacījumu izmantojiet " "atstarpi:\n" " >10.5m <1g, lai parādītu failus, kas lielāki par 10.5 MiB, bet mazāki " "par 1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Labāk zināmos variantus kb, mb un gb var izmantot arī kilobaita, megabaita " "un gigabaita vienībām." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtrē failus, pamatojoties uz to bitu pārraides ātrumu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Vērtības jāievada tikai kā ciparu zīmes. Vienība vienmēr ir Kb/s (kilobiti " "sekundē)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Līdzīgi kā iepriekš Failu Lielumiem var izmantot operatorus =, !, <, >, <= " "vai >=, un var norādīt vairākus nosacījumus, piemēram, lai parādītu failus, " "kuru bitu pārraides ātrums ir vismaz 256 Kb/s, bet maksimālais bitrate ir " "1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtrē failus, pamatojoties uz to ilgumu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Pēc noklusējuma tiks atlasīti faili, kas ir garāki vai vienādi (>=) ar " "ievadīto ilgumu, ja vien nav izmantots kāds operators (=, !, <=, < vai >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Ievadiet neapstrādātu vērtību sekundēs vai izmantojiet laika formātus MM:SS " "un HH:MM:SS:\n" " =53 parāda failus, kuru ilgums ir aptuveni 53 sekundes.\n" " >5:30, lai parādītu failus, kas ir garāki par piecarpus minūtēm.\n" " <5:30:00 parāda failus, kas ir īsāki par piecarpus stundām." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Var norādīt vairākus nosacījumus:\n" " >6:00 <12:00, lai parādītu failus, kuru garums ir no 6 līdz 12 minūtēm.\n" " !9:54 !8:43 !7:32, lai no rezultātiem paslēptu dažus konkrētus failus.\n" " =5:34 =4:23 =3:05, lai iekļautu failus ar konkrētu ilgumu." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtrē failus, pamatojoties uz lietotāju ģeogrāfisko atrašanās vietu saskaņā " "ar ISO 3166-2 definētajiem valstu kodiem:\n" " ASV tiks rādīti tikai to lietotāju rezultāti, kuru IP adreses ir " "Amerikas Savienotajās Valstīs.\n" " !GB slēps rezultātus, kas nāk no lietotājiem Lielbritānijā." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Vairākas valstis var norādīt ar komatiem vai atstarpēm." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Brīvs Slots" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Rādīt tikai to lietotāju rezultātus, kuriem ir vismaz viens brīvs " "augšupielādes slots, t. i., failus, kas ir pieejami nekavējoties." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Augšupielādes Ātruma Ierobežojumi" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Neierobežots augšupielādes ātrums" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Izmantot augšupielādes ātruma ierobežojumu (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Izmantot alternatīvu augšupielādes ātruma ierobežojumu (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Privātās Tērzēšanas Komandu Palīdzība" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Iekļaut tekstu…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Iekļaut rezultātus, kuru failu ceļos ir norādīts specifisks teksts. Var " "norādīt vairākas frāzes un vārdus, piem., noteikta frāze|mūzika|termins|" "noteikta frāze divi" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Neiekļaut tekstu…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Neiekļaut rezultātus, kuru failu ceļos ir norādīts specifisks teksts. Var " "norādīt vairākas frāzes un vārdus, piem., noteikta frāze|mūzika|termins|" "noteikta frāze divi" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Faila tips…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Faila tips, piem., flac wav vai !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Faila izmērs…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Faila lielums, piem. >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitu pārraides ātrums…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bitu pārraides ātrums, piem. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Ilgums…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Ilgums, piem., >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Valsts kods…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Valsts kods, piem., US ES vai !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Aizliegt lietotājiem piekļūt Jūsu koplietotajiem failiem, pamatojoties uz " "lietotājvārdu, IP adresi vai valsti." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Bloķējamo valstu kodi (atdalāmi ar komatu):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Kodiem jābūt ISO 3166-2 formātā." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Izmantot pielāgotu ģeogrāfiskās bloķēšanas ziņu:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Izmantot pielāgotu aizlieguma ziņu:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP Adreses" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Iespējot pareizrakstības pārbaudi" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "" "Atjaunot iepriekš atvērtās privātās tērzēšanas sarakstes startēšanas laikā" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Iespējot CTCP-līdzīgas privāto ziņu atbildes (klienta versija)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Rādāmo pēdējo privāto tērzēšanas ziņu skaits:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Rādāmo pēdējo tērzēšanas istabu ziņu skaits:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Tērzēšanas Pabeigšana" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Iespējot tabulēšanas taustiņa aizpildīšanu" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Iespējot aizpildīšanas nolaižamo sarakstu" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" "Minimālais rakstzīmju skaits, kas nepieciešams, lai parādītu nolaižamo " "izvēlni:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Atļautās tērzēšanas aizpildīšanas:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Draugu vārdi" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Tērzēšanas istabu lietotājvārdi" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Istabu nosaukumi" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Komandas" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Laika zīmogi" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Privātās tērzēšanas formāts:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Noklusējums" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Tērzēšanas istabas formāts:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "No teksta uz runu" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Iespējot Teksta Pārvēršanu Runā" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Teksta pārvēršanas runā komanda:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Privātās tērzēšanas ziņa:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Tērzēšanas istabas ziņa:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Cenzēt" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Iespējot teksta modeļu cenzēšanu" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Automātiska aizstāšana" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Iespējot automātisku vārdu aizstāšanu" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Automātiski notīrīt pabeigtās/filtrētās lejupielādes no pārsūtīšanas saraksta" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Saglabāt pabeigtās lejupielādes lietotājvārdu apakšmapēs" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Dubultklikšķa darbība priekš lejupielādēm:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Atļaut lietotājiem sūtīt Jums jebkādus failus:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Mapes" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Pabeigtas lejupielādes:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Nepilnīgas lejupielādes:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Saņemtie faili:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Pasākumi" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "Palaist komandu pēc faila lejupielādes pabeigšanas ($ faila ceļam):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "Palaist komandu pēc mapes lejupielādes pabeigšanas ($ mapes ceļam):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Lejupielādes Filtri" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Iespējot lejupielādes filtrus" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Pievienot" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Ielādēt Noklusējumus" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Pārbaudīt Filtrus" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Nepārbaudīts" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorēt lietotāju tērzēšanas ziņas un meklēšanas rezultātus, pamatojoties uz " "lietotājvārdu vai IP adresi." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Reģistrēt žurnālā tērzētavas pēc noklusējuma" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Reģistrēt žurnālā privāto tērzēšanas sarunas pēc noklusējuma" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Reģistrēt žurnālā pārsūtījumus uz failu" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Reģistrēt žurnālā atkļūdošanas ziņojumus uz failu" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Žurnāla laika zīmoga formāts:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Mapju Atrašanās Vietas" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Tērzēšanas istabas žurnālu mape:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Privātās tērzēšanas žurnālu mape:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Pārsūtījumu žurnālu mape:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Atkļūdošanas žurnālu mape:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Pieteicieties esošā Soulseek kontā vai izveidojiet jaunu kontu. " "Lietotājvārdi ir reģistrjutīgi un unikāli." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Publiskā IP adrese:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Klausīšanās ports (nepieciešams restartēt):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Prombūtnes Statuss" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Neaktivitātes minūtes pirms aiziešanas (0, lai atspējotu):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Automātiskās atbildes ziņa, kad esat \"aizgājis\":" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automātiski pārsūtīt klausīšanās portu (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Automātiska savienošanās ar serveri startēšanas laikā" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek serveris:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Savienojumus sasaista ar konkrētu tīkla saskarni, kas noder gadījumos, kad " "jānodrošina, ka VPN tiek izmantots visu laiku. Atstājiet tukšu, lai " "izmantotu jebkuru pieejamo saskarni. Mainiet šo vērtību tikai tad, ja zināt, " "ko darāt." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Tīkla saskarne (nepieciešams restartēt):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Tagad Atskaņo ļauj parādīt, kas tiek atskaņots jūsu multivides atskaņotājā, " "tērzēšanā izmantojot komandu '/now'." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Cits" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Tagad Atskaņo Formāts" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Tagad Atskaņo ziņas formāts:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Testēt Konfigurāciju" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Iespējot spraudņus" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Pievienot Spraudņus" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Pievienot Spraudņus" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Iestatījumi" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Iestatījumi" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versija:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Izveidoja:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Iespējot meklēšanas vēsturi" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Privāti kopīgotiem failiem, kas ir padarīti redzami visiem, tiks pievienots " "prefikss '[PRIVATE]', un tos nevarēs lejupielādēt, kamēr augšupielādētājs " "nebūs devis skaidru atļauju. Laipni palūdziet to!" #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Rādīt privāti koplietotos failus meklēšanas rezultātos" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Ierobežot rezultātu skaitu vienai meklēšanai:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Iespējot meklēšanas rezultātu filtrus pēc noklusējuma" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Iekļaut:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Neiekļaut:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Faila Tips:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Izmērs:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitu pārraides ātrums:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Ilgums:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Valsts Kods:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Rādīt tikai to lietotāju rezultātus, kuriem ir pieejams augšupielādes slots." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Rezultātu Filtrēšanas Palīdzība" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Tīkla Meklēšana" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Atbildēt uz citu lietotāju meklēšanas pieprasījumiem" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Meklējumi, kas ir īsāki par šo rakstzīmju skaitu, tiks ignorēti:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Maksimālais meklēšanas rezultātu skaits, ko nosūtīt katram meklēšanas " "pieprasījumam:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Notīrīt Meklēšanas Vēsturi" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Notīrīt Filtru Vēsturi" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Automātiska kopīgo mapju satura pārskenēšana startēšanas laikā. Ja šī opcija " "ir atspējota, koplietojamās mapes tiek atjauninātas tikai tad, kad manuāli " "iniciējat pārskenēšanu." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Pārskenēt koplietojumus startēšanas laikā" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Redzams visiem:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Draugu koplietojumi" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Uzticamo Draugu koplietojumi" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Automātiski notīrīt pabeigtās/atceltās augšupielādes no pārsūtīšanas saraksta" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Dubultklikšķa darbība augšupielādei:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Ierobežot augšupielādes ātrumu:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Par pārsūtījumu" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Kopā pārsūtījumi" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Augšupielādes Sloti" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Faili cikliski tiks augšupielādēti rindā gaidošajiem " "lietotājiem.\n" "Pirmais iekšā, pirmais ārā: Faili tiks augšupielādēti tādā secībā, kādā tie " "tika ievietoti rindā." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Augšupielādes rindas tips:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Piešķirt augšupielādes slotus, līdz kopējais ātrums sasniedz (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Fiksēts augšupielādes slotu skaits:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Prioritizēt visus draugus" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Rindu Ierobežojumi" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Maksimālais rindā gaidāmo failu skaits vienam lietotājam:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" "Maksimālais rindā gaidāmo failu kopējais izmērs vienam lietotājam (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Ierobežojumi neattiecas uz draugiem" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "$ gadījumi tiek aizstāti ar URL. Noklusējuma sistēmas lietotnes tiek " "izmantotas gadījumos, kad protokols nav konfigurēts." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Failu pārvaldnieka komanda:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Atiestatīt Attēlu" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Pašapraksts" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Pievienojiet informāciju, ko vēlaties, lai ikviens redzētu, piemēram, īsu " "aprakstu, noderīgus padomus vai norādījumus par jūsu koplietojumu " "lejupielādi." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Attēls:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Notīrīt" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Priekšroka tumšajam režīmam" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Izmantot _galvenes joslu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Parādīt ikonjoslas ikonu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Startēšanas laikā samazināt ikonjoslā" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Valoda (nepieciešams restartēt):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Aizverot logu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Paziņojumi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Iespējot skaņu paziņojumiem" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Privāto tērzēšanu un pieminējumu paziņojumu rādīšana loga nosaukumā" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Rādīt paziņojumus par:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Pabeigta faila lejupielāde" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Pabeigta mapes lejupielāde" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Privātās ziņas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Tērzēšanas istabas ziņas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Tērzēšanas istabas pieminējumi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Atrastie vēlmju saraksta rezultāti" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Startēšanas laikā atjaunot iepriekš aktīvo galveno cilni" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Aizvēršanas pogas sekundārajās cilnēs" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Parasta cilnes etiķetes krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Mainīta cilnes etiķetes krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Izceltās cilnes etiķetes krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Draugu saraksta pozīcija:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Redzamās galvenās cilnes:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Cilņu joslas pozīcijas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Galvenās cilnes" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Rādīt apgrieztus failu ceļus (nepieciešama restartēšana)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Rādīt precīzus failu izmērus (nepieciešama restartēšana)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Saraksta teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Rindā ievietotā meklēšanas rezultāta teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Iespējot krāsainus lietotājvārdus" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Tērzēšanas lietotājvārda izskats:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Attālā teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Lokālā teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Komandas izvades teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me darbības teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Izceltā teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL saites teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Lietotāju Statusi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Tiešsaistes krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Aizgājis krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Bezsaistes krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Teksta Ieraksti" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Teksta ieraksta fona krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Teksta ieraksta teksta krāsa:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Fonti" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Globālais fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Saraksts fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Teksta skata fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Tērzēšana fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Pārsūtījumi fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Meklēšana fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Pārlūkot fonts:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikonas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Ikonu motīvu mape:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Pārtraukt Lietotāju(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Aizliegt Lietotāju(-us)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Notīrīt Visas Pabeigtās/Atceltās Augšupielādes" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Sūtīt Ziņu Visiem" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Notīrīt Konkrētas Augšupielādes" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Saglabāt Koplietojumu Sarakstu Diskā" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Atsvaidzināt Failus" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Rediģēt Profilu" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Koplietotie Faili" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Koplietotās Mapes" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Augšupielādes Rindā" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Brīvie Augšupielādes Sloti" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Augšupielādes Ātrums" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Rediģēt Intereses" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Dāvināt Privilēģijas…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "Atsvaidzināt P_rofilu" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nicotine+ Komandas" #~ msgid "_Clear" #~ msgstr "_Notīrīt" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Nevar saglabāt %(filename)s: %(error)s" #, fuzzy #~ msgid "Nicotine+" #~ msgstr "Nicotine+ Komanda" #~ msgid "Trusted Buddies" #~ msgstr "Uzticamie Draugi" #~ msgid "Quit program" #~ msgstr "Iziet no programmas" #~ msgid "Username:" #~ msgstr "Lietotājvārds:" #~ msgid "Re_commendations for Item" #~ msgstr "Ietei_kumi vienumam" #~ msgid "_Remove Item" #~ msgstr "_Noņemt Vienumu" #~ msgid "_Remove" #~ msgstr "_Noņemt" #~ msgid "Send M_essage" #~ msgstr "Sūtīt Z_iņu" #~ msgid "Send Message" #~ msgstr "Sūtīt Ziņu" #~ msgid "View User Profile" #~ msgstr "Skatīt Lietotāja Profilu" #~ msgid "Start Messaging" #~ msgstr "Sākt Ziņapmaiņu" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Ievadiet lietotāja vārdu, kuram vēlaties nosūtīt ziņu:" #~ msgid "_Message" #~ msgstr "_Ziņa" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Ievadiet lietotāja vārdu, kura profilu vēlaties apskatīt:" #~ msgid "_View Profile" #~ msgstr "_Skatīt Profilu" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Ievadiet lietotāja vārdu, kura koplietojumus vēlaties redzēt:" #~ msgid "_Browse" #~ msgstr "_Pārlūkot" #~ msgid "Password" #~ msgstr "Parole" #~ msgid "Download File" #~ msgstr "Lejupielādēt Failu" #~ msgid "Refresh Similar Users" #~ msgstr "Atsvaidzināt Līdzīgus Lietotājus" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Ievadiet tās personas lietotājvārdu, kuras failus vēlaties skatīt" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Ievadiet personas lietotājvārdu, kuras informāciju vēlaties redzēt" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Ievadiet personas lietotājvārdu, kurai vēlaties nosūtīt ziņu" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Ievadiet personas lietotājvārdu, kuru vēlaties pievienot savam draugu " #~ "sarakstam" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Ievadiet istabas nosaukumu, kurai vēlaties pievienoties. Ja istaba " #~ "neeksistē, tā tiks izveidota." #~ msgid "Show Log History Pane" #~ msgstr "Rādīt Žurnāla Vēstures Paneli" #~ msgid "Save _Picture" #~ msgstr "Saglabāt _attēlu" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Izfiltrēts nepareizs meklēšanas rezultāts %(filepath)s no lietotāja " #~ "%(user)s meklēšanas vaicājumam \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Daži Soulseek klienti nesūta meklēšanas rezultātus, ja ir iekļautas " #~ "speciālās rakstzīmes." #~ msgid "Remove special characters from search terms" #~ msgstr "Noņemt speciālās rakstzīmes no meklēšanas vienumiem" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problēmas, izpildot “%s”" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problēma, izpildot mapē: %s" #~ msgid "Disallowed extension" #~ msgstr "Neatļauts paplašinājums" #~ msgid "Too many files" #~ msgstr "Pārāk daudz failu" #~ msgid "Too many megabytes" #~ msgstr "Pārāk daudz megabaitu" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Serveris šobrīd neļauj veikt vēlmju saraksta meklēšanu" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Failu pārsūtīšanas ātrums ir atkarīgs no lietotājiem, no kuriem " #~ "lejupielādējat. Daži lietotāji būs ātrāki, kamēr citi lēnāki." #~ msgid "Started Downloads" #~ msgstr "Sāktās Lejupielādes" #~ msgid "Started Uploads" #~ msgstr "Sāktās Augšupielādes" #~ msgid "Replace censored letters with:" #~ msgstr "Aizstāt cenzētos burtus ar:" #~ msgid "Censored Patterns" #~ msgstr "Cenzētie Modeļi" #~ msgid "Replacements" #~ msgstr "Aizvietotāji" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Ja lietotājs Soulseek tīklā meklēs failu, kas ir jūsu koplietojumā, " #~ "meklēšanas rezultāti tiks nosūtīti lietotājam." #~ msgid "Send to Player" #~ msgstr "Sūtīt atskaņotājam" #~ msgid "Send to _Player" #~ msgstr "Nosūtīt uz _atskaņotāju" #~ msgid "_Open in File Manager" #~ msgstr "_Atvērt Failu Pārvaldniekā" #~ msgid "Media player command:" #~ msgstr "Multivides atskaņotāja komanda:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Nevar saglabāt lejupielādi lietotājvārda apakšmapē, atgriežoties " #~ "noklusējuma lejupielādes mapē. Kļūda: %s" #~ msgid "Buddy-only" #~ msgstr "Tikai draugiem" #~ msgid "Share with buddies only" #~ msgstr "Kopīgot tikai ar draugiem" #~ msgid "_Quit…" #~ msgstr "_Iziet…" #~ msgid "_Configure Shares" #~ msgstr "_Konfigurēt Koplietojumus" #~ msgid "Remote file error" #~ msgstr "Attālā faila kļūda" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Nevar atrast %(option1)s vai %(option2)s, lūdzu, instalējiet vismaz vienu." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s mapes atrastas pirms pārskenēšanas" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Neizdevās apstrādāt šīs datu bāzes: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Neizdevās uz serveri nosūtīt koplietoto failu skaitu: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Iziet / Palaist fonā" #~ msgid "Listening port:" #~ msgstr "Klausīšanās ports:" #~ msgid "Network interface:" #~ msgstr "Tīkla interfeiss:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Ierobežot tikai draugiem kopīgošanu līdz uzticamajiem draugiem" #~ msgid "Shared" #~ msgstr "Koplietots" #~ msgid "Search Files and Folders" #~ msgstr "Meklēt Failus un Mapes" #~ msgid "Out of Date" #~ msgstr "Novecojis" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Ir pieejama versija %(version)s, izlaista %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Jūs izmantojat izstrādes versiju %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Jūs izmantojat jaunāko versiju %s" #~ msgid "Latest Version Unknown" #~ msgstr "Jaunākā Versija Nezināma" #~ msgid "Prefer Dark _Mode" #~ msgstr "Dot Priekšroku Tumšajam Režīma_m" #~ msgid "Show _Log History Pane" #~ msgstr "Rādīt Žurnā_la Vēstures Paneli" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Draugu Saraksts Atsevišķā Cilnē" #~ msgid "Buddy List Always Visible" #~ msgstr "Draugu Saraksts Vienmēr Redzams" #~ msgid "_View" #~ msgstr "Ska_ts" #~ msgid "_Open Log Folder" #~ msgstr "_Atvērt Žurnāla Mapi" #~ msgid "_Browse Folder(s)" #~ msgstr "_Pārlūkot Mapi(-es)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibaiti (2^10 baiti) sekundē." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Nosūtīt lietotājiem kā ģeogrāfiskās bloķēšanas iemeslu." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Nosūtīt lietotājiem kā aizlieguma iemeslu." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Kad mijiedarbojaties ar lietojumprogrammu, kamēr esat aizgājis, statuss " #~ "tiks iestatīts uz tiešsaistē." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Katrs lietotājs rindā var iekļaut ne vairāk kā:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibaiti (2^20 baiti)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "faili" #~ msgid "Queue Behavior" #~ msgstr "Rindas Uzvedība" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Ja atspējots, sloti tiks automātiski noteikti pēc pieejamiem joslas " #~ "platuma ierobežojumiem." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Jāņem vērā, ka operētājsistēmas motīvam var būt prioritāte." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Pēc noklusējuma galējā kreisā cilne tiek aktivizēta startēšanas laikā" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Iziet no %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "pārtraukta" #~ msgid "done" #~ msgstr "gatavs" #~ msgid "Remember choice" #~ msgstr "Atcerēties izvēli" #~ msgid "Kosovo" #~ msgstr "Kosova" #~ msgid "Unknown Network Interface" #~ msgstr "Nezināms Tīkla Interfeiss" #~ msgid "Listening Port Unavailable" #~ msgstr "Klausīšanās Ports Nav Pieejams" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Šķiet, ka serveris nedarbojas vai nereaģē. Atkārtots mēģinājums pēc %i " #~ "sekundēm" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ izmanto peer-to-peer tīklus, lai izveidotu savienojumu ar " #~ "citiem lietotājiem. Lai lietotāji varētu bez problēmām izveidot " #~ "savienojumu ar Jums, ir nepieciešams atvērts klausīšanās ports." #~ msgid "--- disconnected ---" #~ msgstr "--- atvienots ---" #~ msgid "--- reconnected ---" #~ msgstr "--- atjaunoti savienots ---" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Zeme" #~ msgid "Czech Republic" #~ msgstr "Čehijas Republika" #~ msgid "Turkey" #~ msgstr "Turcija" #~ msgid "Joined Rooms " #~ msgstr "Pievienotās Istabas " #~ msgid "_Auto-join Room" #~ msgstr "_Automātiski pievienoties istabai" #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintakse: Burti nav reģistrjutīgi. Visas Python regulārās " #~ "izteiksmes tiek atbalstītas, ja izvadīšana ir atspējota. Vienkāršiem " #~ "filtriem ieteicams saglabāt ieslēgtu izvadīšanu." #~ msgid "Escaped" #~ msgstr "Izbēdzis" #~ msgid "Escape filter" #~ msgstr "Iziet no filtra" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Ievadiet teksta modeli un to, ar ko to aizstāt" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Norādītajā portu diapazonā %s–%s nav pieejams neviens klausīšanās ports" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Izvēlieties diapazonu, no kura izvēlēties klausīšanās portu. Tiks " #~ "izmantots pirmais pieejamais ports šajā diapazonā." #~ msgid "First Port" #~ msgstr "Pirmais Ports" #~ msgid "to" #~ msgstr "līdz" #~ msgid "Last Port" #~ msgstr "Pēdējais Ports" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Nevar atrast %s vai jaunāku, lūdzu, instalējiet to." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Nevar importēt Gtk moduli. Slikta python-gobject moduļa instalēšana?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Jūs izmantojat neatbalstītu GTK %(major_version)s versiju. Jums vajadzētu " #~ "instalēt GTK %(complete_version)s vai jaunāku versiju." #~ msgid "User Info" #~ msgstr "Lietotāja Informācija" #~ msgid "Zoom 1:1" #~ msgstr "Tālummaiņa 1:1" #~ msgid "Zoom In" #~ msgstr "Pietuvināt" #~ msgid "Zoom Out" #~ msgstr "Attālināt" #~ msgid "Show User I_nfo" #~ msgstr "Rādīt Lietotāja I_nformāciju" #~ msgid "Request User's Info" #~ msgstr "Pieprasīt Lietotāja Informāciju" #~ msgid "Request User's Shares" #~ msgstr "Pieprasīt Lietotāja Koplietojumus" #~ msgid "Request User Info" #~ msgstr "Pieprasīt Lietotāja Informāciju" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Ievadiet tā lietotāja vārdu, kura informāciju vēlaties redzēt:" #~ msgid "Request Shares List" #~ msgstr "Pieprasīt Koplietojumu Sarakstu" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Nederīgs Soulseek URL: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Soulseek tīkla lietotāji varēs lejupielādēt failus no Jūsu koplietotajām " #~ "mapēm. Failu koplietošana ir būtiska Soulseek tīkla veselībai un darbībai." #~ msgid "Update I_nfo" #~ msgstr "Atjaunināt I_nformāciju" #~ msgid "Chat Room Commands" #~ msgstr "Tērzēšanas Istabas Komandas" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'istaba'" #~ msgid "Join room 'room'" #~ msgstr "Pievienoties istabai \"istaba\"" #~ msgid "/me 'message'" #~ msgstr "/me 'ziņa'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Parādīt Skripta Tagad Atskaņo Izvadi" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'lietotājs'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Pievieno lietotāju \"lietotājs\" savam draugu sarakstam" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'lietotājs'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Noņem lietotāju \"lietotājs\" no sava draugu saraksta" #~ msgid "/ban 'user'" #~ msgstr "/ban 'lietotājs'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Pievieno lietotāju \"lietotājs\" savam aizlieguma sarakstam" #~ msgid "/unban 'user'" #~ msgstr "/unban 'lietotājs'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Noņem lietotāju \"lietotājs\" no aizlieguma saraksta" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'lietotājs'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Pievieno lietotāju “lietotājs” savam ignorēšanas sarakstam" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'lietotājs'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Noņem lietotāju \"lietotājs\" no sava ignorēšanas saraksta" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'lietotājs'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'lietotājs'" #~ msgid "Request info for 'user'" #~ msgstr "Pieprasīt lietotāja 'lietotājs' informāciju" #~ msgid "/ip 'user'" #~ msgstr "/ip 'lietotājs'" #~ msgid "Show IP for user 'user'" #~ msgstr "Rādīt Lietotāja 'lietotājs' IP Adresi" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'vaicājums'" #~ msgid "Start a new search for 'query'" #~ msgstr "Sākt jaunu meklēšanu 'vaicājums'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'vaicājums'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Meklēt pievienotajās telpās 'vaicājums'" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'vaicājums'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Meklēt draugu sarakstā 'vaicājums'" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'lietotājs' 'vaicājums'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'lietotājs' 'ziņa'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Sūtīt ziņu 'ziņa' lietotājam 'lietotājs'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'lietotājs'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Atvērt privāto tērzēšanas logu lietotājam 'lietotājs'" #~ msgid "Private Chat Commands" #~ msgstr "Privātās Tērzēšanas Komandas" #~ msgid "Add user to your ban list" #~ msgstr "Pievienot lietotāju savam aizliegumu sarakstam" #~ msgid "Add user to your ignore list" #~ msgstr "Pievienot lietotāju savam ignorēšanas sarakstam" #~ msgid "Browse shares of user" #~ msgstr "Pārlūkot lietotāja koplietojumus" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Lai filtrētu lielo/mazo burtu lietojumu, kā arī vairākas precīzas frāzes, " #~ "var izmantot vertikālas joslas frāžu un vārdu atdalīšanai.\n" #~ " Piemērs: Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Lai neiekļautu failus, kas nav audio faili, ilguma filtrā izmantojiet !0." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "" #~ "Filtrē failus, pamatojoties uz lietotāju ģeogrāfisko atrašanās vietu." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Lai vēlreiz skatītu visus rezultātus, notīriet visus aktīvos filtrus." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Skatiet preferences, lai iestatītu noklusējuma meklēšanas rezultātu " #~ "filtra opcijas." #~ msgid "File size" #~ msgstr "Faila izmērs" #~ msgid "Clear Active Filters" #~ msgstr "Notīrīt Aktīvos Filtrus" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Nospiežot tabulēšanas taustiņu, cikliski pārvietojaties cauri ieteikumiem" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Paslēpt nolaižamo izvēlni, ja ir tikai viena atbilstība" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Lejupielādēt mapes apgrieztā burtu un ciparu secībā" #~ msgid "Incomplete file folder:" #~ msgstr "Nepabeigtu failu mape:" #~ msgid "Download folder:" #~ msgstr "Lejupielādes mape:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Saglabāt draugu augšupielādes šeit:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Izmantot UPnP, lai pārsūtītu klausīšanās portu" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Kopīgojiet mapes ar katru Soulseek lietotāju vai draugiem, ļaujot saturu " #~ "lejupielādēt tieši no Jūsu ierīces. Slēptie faili nekad netiek koplietoti." #~ msgid "Secondary Tabs" #~ msgstr "Sekundārās Cilnes" #~ msgid "Chat room tab bar position:" #~ msgstr "Tērzēšanas istabas cilnes joslas pozīcija:" #~ msgid "Private chat tab bar position:" #~ msgstr "Privātās tērzēšanas cilnes joslas pozīcija:" #~ msgid "Search tab bar position:" #~ msgstr "Meklēšanas cilnes joslas pozīcija:" #~ msgid "User info tab bar position:" #~ msgstr "Lietotāja informācijas cilnes joslas pozīcija:" #~ msgid "User browse tab bar position:" #~ msgstr "Lietotāja pārlūkošanas cilnes joslas pozīcija:" #~ msgid "Tab Labels" #~ msgstr "Cilnes Etiķetes" #~ msgid "_Refresh Info" #~ msgstr "_Atsvaidzināt Informāciju" #~ msgid "Block IP Address" #~ msgstr "Bloķēt IP adresi" #~ msgid "Connected" #~ msgstr "Savienots" #~ msgid "Disconnected" #~ msgstr "Atvienots" #~ msgid "Disconnected (Tray)" #~ msgstr "Atvienots (Ikonjosla)" #~ msgid "User(s)" #~ msgstr "Lietotājs(-i)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" neko neatgrieza" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatīvie ātruma ierobežojumi" #~ msgid "Last played" #~ msgstr "Pēdējo reizi atskaņots" #~ msgid "Playing now" #~ msgstr "Tagad atskaņo" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Nevar atvērt faila ceļu %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Kļūdas kods %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Nav šāda aliasa (%s)" #~ msgid "Aliases:" #~ msgstr "Aliasi:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Noņemts alias %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Nav šāda aliasa (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternatīvie ātruma ierobežojumi" #~ msgid "Aliases" #~ msgstr "Aliasi" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'komanda' 'definīcija'" #~ msgid "Add a new alias" #~ msgstr "Pievienot jaunu aliasu" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'komanda'" #~ msgid "Remove an alias" #~ msgstr "Noņemt aliasu" #~ msgid "Chat History" #~ msgstr "Tērzēšanas vēsture" #~ msgid "Command aliases" #~ msgstr "Komandu aizstājvārdi" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Ierobežot lejupielādes ātrumu līdz (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autors(-i):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Ierobežot augšupielādes ātrumu līdz (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Atrasta vēlmju saraksta vienums" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Cilnēs statusa teksta vietā tiek rādītas lietotāja statusa ikonas" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Rādīt faila ceļa padomus failu saraksta skatos" #~ msgid "Colored and clickable usernames" #~ msgstr "Krāsaini un klikšķināmi lietotājvārdi" #~ msgid "Notification changes the tab's text color" #~ msgstr "Paziņojums maina cilnes teksta krāsu" #~ msgid "Cancel" #~ msgstr "Atcelt" #~ msgid "OK" #~ msgstr "LABI" #~ msgid "_Add to Buddy List" #~ msgstr "_Pievienot draugu sarakstam" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Notīrīt visas lejupielādes, kas atzīmētas ar noteiktu statusu." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Notīrīt visas augšupielādes ar noteiktu statusu." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "izmantot ne-noklusējuma lietotāja datu direktoriju, piemēram, lejupielāžu " #~ "sarakstu" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Nezināma konfigurācijas sadaļa “%s”" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Nezināma konfigurācijas opcija “%(option)s” sadaļā “%(section)s”" #, python-format #~ msgid "Version %s is available" #~ msgstr "Ir pieejama versija %s" #, python-format #~ msgid "released on %s" #~ msgstr "izlaists %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ darbojas fonā" #, python-format #~ msgid "Private message from %s" #~ msgstr "Privāta ziņa no %s" #~ msgid "Aborted" #~ msgstr "Pārtraukts" #~ msgid "Blocked country" #~ msgstr "Bloķēta valsts" #~ msgid "Finished / Aborted" #~ msgstr "Pabeigts / Pārtraukts" #~ msgid "Close tab" #~ msgstr "Aizvērt cilni" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Jūs pieminēja %(room)s istabā" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Komanda %s nav atpazīta" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Brīdinājums: %(realuser)s mēģina atdarināt %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Jūsu norādītā tīkla saskarne “%s” neeksistē. Mainiet vai noņemiet " #~ "norādīto tīkla interfeisu un restartējiet Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Diapazons, ko norādījāt klienta savienojuma portiem, bija {}-{}, taču " #~ "neviens no tiem nebija izmantojams. Palieliniet un/vai " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Ņemiet vērā, ka daļa Jūsu diapazona ir mazāka par 1024; izņemot Windows, " #~ "tas parasti nav atļauts lielākajā daļā operētājsistēmu." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Pārskenēšanas progress: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS kļūda: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP šajā tīklā nav pieejams" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Neizdevās kartēt ārējo WAN portu: %(error)s" #~ msgid "Room wall" #~ msgstr "Istabas siena" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Vairumā gadījumu ar noklusējuma klausīšanās portu '2234' nav problēmu. Ja " #~ "Jums nepieciešams izmantot citu portu, vēlāk to varēsiet mainīt " #~ "preferencēs." #~ msgid "Show users with similar interests" #~ msgstr "Rādīt lietotājus ar līdzīgām interesēm" #~ msgid "Menu" #~ msgstr "Izvēlne" #~ msgid "Expand / Collapse all" #~ msgstr "Izvērst / Sakļaut visu" #~ msgid "Configure shares" #~ msgstr "Konfigurēt koplietojumus" #~ msgid "Create or join room…" #~ msgstr "Izveidot vai pievienoties istabai…" #~ msgid "_Room List" #~ msgstr "_Istabu saraksts" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "" #~ "Iespējot alternatīvos lejupielādes un augšupielādes ātruma ierobežojumus" #~ msgid "Show log history" #~ msgstr "Rādīt žurnāla vēsturi" #~ msgid "Result grouping mode" #~ msgstr "Rezultātu grupēšanas režīms" #~ msgid "Free slot" #~ msgstr "Brīvs slots" #~ msgid "Save shares list to disk" #~ msgstr "Saglabāt koplietojumu sarakstu diskā" #~ msgid "_Away" #~ msgstr "_Aizgājis" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Neizdevās ielādēt lietotāja interfeisa failu %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Kļūdas dēļ tiek mēģināts atiestatīt koplietoto failu indeksu. Lūdzu, " #~ "pārskenējiet savus koplietojumus." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Nevarēja piekļūt koplietoto failu indeksam. Tas var notikt, kad vairāki " #~ "Nicotine+ vienlaikus ir aktīvi, faila atļauju problēmu vai citu Nicotine+ " #~ "problēmu dēļ." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ ir Soulseek klients" #~ msgid "enable the tray icon" #~ msgstr "iespējot ikonjoslas ikonu" #~ msgid "disable the tray icon" #~ msgstr "atspējojiet ikonjoslas ikonu" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Iegūt Soulseek privilēģijas…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Publiskā IP adrese ir %(ip)s un aktīvais klausīšanās ports ir " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "nezināms" #~ msgid "Notification" #~ msgstr "Paziņojums" #~ msgid "Length" #~ msgstr "Garums" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Attēls nav saglabāts, %s jau pastāv." #~ msgid "_Open" #~ msgstr "_Atvērt" #~ msgid "_Save" #~ msgstr "_Saglabāt" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Neizdevās ielādēt spraudni “%s”, nevarēja to atrast." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O kļūda: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Neizdevās atvērt faila ceļu: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Neizdevās atvērt URL: %s" #~ msgid "_Log Conversation" #~ msgstr "_Reģistrēt sarunu" #~ msgid "Result Filter List" #~ msgstr "Rezultātu filtru saraksts" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Pievienojiet sākumā < vai >, lai atrastu failus, kas ir mazāki/lielāki " #~ "par norādīto vērtību." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR faili parāda vidējo bitu pārraides ātrumu, un parasti tie ir mazāki " #~ "nekā saspiestam 320 kbps CBR failam ar tādu pašu audio kvalitāti." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Tāpat kā iepriekš norādīto izmēru, var izmantot =, < un >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Neļaut citām programmām piekļūt lejupielādējamo failu rakstīšanai " #~ "(izslēgt NFS gadījumā)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Kur uz laiku tiek uzglabātas nepabeigtās lejupielādes." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Kur tiks glabātas draugu augšupielādes (katram draugam tiek izveidota " #~ "apakšmape)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Pārslēgt \"aizgājis\" statusu pēc neaktivitātes minūtēm:" #~ msgid "Protocol:" #~ msgstr "Protokols:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikonu motīvu mape (nepieciešams restartēt):" nicotine-plus-3.3.4/po/nb_NO.po000066400000000000000000007004411461625273200163010ustar00rootroot00000000000000# Copyright (C) 2021-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-01-08 17:06+0000\n" "Last-Translator: OpenAI \n" "Language-Team: Norwegian Bokmål \n" "Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek-klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafisk klient for Soulseek-likemannsnettverket" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine+;deling;chat;messaging;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafisk klient for Soulseek-nettverket" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ er en grafisk klient for Soulseek-likemannsnettverket." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ har som mål å være et lett, behagelig, gratis og åpen kildekode " "(FOSS) alternativ til den offisielle Soulseek-klienten, samtidig som det " "tilbyr et omfattende sett med funksjoner." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Søk etter filer" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Nedlastinger" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Bla gjennom Delinger" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Privat sludring" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Laget bak Nicotine+" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Nettsted: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "vis denne meldingen og avslutt" #: pynicotine/__init__.py:59 msgid "file" msgstr "fil" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "bruk ikke-forvalgt oppsettsfil" #: pynicotine/__init__.py:63 #, fuzzy msgid "dir" msgstr "dir" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "alternativ mappe for brukerdata og plugins" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "start programmet uten å vise vindu" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "bind socket-er til angitt IP (nyttig for VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "lytt til angitt port" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "skann delte filer igjen" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "start programmet i skjermløs tilstand (uten brukergrensesnitt)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "vis versjonsinfo og avslutt" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Du bruker en ustøttet versjon av Python (%(old_version)s).\n" "Du bør installere Python %(min_version)s eller nyere." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Kunne ikke skanne delinger. Vennligst lukk andre Nicotine+-instanser og prøv " "igjen." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "%(user)s er borte" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "%(user)s er pålogget" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "%(user)s er frakoblet" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Buddy-status" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Du har blitt lagt til i et privat rom: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Chatmelding fra bruker '%(user)s' i rom '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Finner ikke mappen «%(path)s». Feil: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Feil ved backup av konfig: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Konfigurasjon sikkerhetskopiert til: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Laster %(program)s %(version)s" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Avslutter %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "avslutter" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "applikasjonen lukkes" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Avslutt %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Du må angi et brukernavn og passord før du kobler til …" #: pynicotine/downloads.py:224 #, fuzzy, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Feil: Nedlastingsfilter mislyktes! Verifiser filtrene dine. Årsak: %s" #: pynicotine/downloads.py:239 #, fuzzy, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Feil: %(num)d Nedlastingsfiltre mislyktes! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s nedlastet fra %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Fil Nedlastet" #: pynicotine/downloads.py:366 #, fuzzy, python-format msgid "Executed: %s" msgstr "Utført: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Utføring av \"%(command)s\" mislyktes: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s nedlastet fra %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Mappe Nedlastet" #: pynicotine/downloads.py:407 #, fuzzy, python-format msgid "Executed on folder: %s" msgstr "Utført på mappe: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Kunne ikke flytte '%(tempfile)s' til '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Feil ved nedlastingsmappe" #: pynicotine/downloads.py:481 #, fuzzy, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Nedlasting ferdig: bruker %(user)s, fil %(file)s" #: pynicotine/downloads.py:499 #, fuzzy, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Nedlasting avbrutt, bruker %(user)s fil %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Nedlastings-I/O-feil: %s" #: pynicotine/downloads.py:1194 #, fuzzy, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Kan ikke få eksklusiv lås på fil - I/O-feil: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Kan ikke lagre fil i %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Nedlasting startet: bruker %(user)s, fil %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Finner ikke %s. Installer det først." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Ingen grafisk miljø tilgjengelig, bruker hodeløs (ingen GUI) modus" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Koble til" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Koble fra" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek_privilegier" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Innstillinger" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Avslutt" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "Bla i _offentlige delinger" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Bla gjennom _Buddy Deler" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Bla gjennom _Pålitelige Delinger" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "_Skanne Shares på nytt" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "Konfigurer _Delinger" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Tastatursnarveier" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Oppsettsassistant" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Overføringsstatistikk" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Innrapporter en _feil" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Bistå _oversettelsen" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "_Om Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Fil" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Delinger" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Hjelp" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "_Bla gjennom Delinger" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Kan ikke vise varsling: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Du laster fortsatt opp filer. Vil du virkelig avslutte?" #: pynicotine/gtkgui/application.py:534 #, fuzzy msgid "Wait for uploads to finish" msgstr "Vent til uploadene er ferdige" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Vil du virkelig avslutte?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "_Nei" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "_Kjør i bakgrunnen" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Avslutt Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Shares ikke tilgjengelig" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Sjekk at eksterne disker er montert og at mappe tillatelser er korrekte." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Avbryt" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Prøv igjen" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Tving ny skanning" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Ugyldig passord" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Bruker %s finnes allerede, og passordet du skrev inn er ugyldig. Vennligst " "velg et annet brukernavn hvis dette er første gang du logger inn." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Endre _Innloggingsdetaljer" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Meld nedlastende brukere" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Send privat melding til alle brukere som laster ned fra deg:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "_Send melding" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Melding til venner" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Send privat melding til alle påloggede venner:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Velg en lagret Shares-listefil" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kritisk feil" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ har støtt på en kritisk feil og må avslutte. Vennligst kopier " "følgende melding og inkluder den i en feilrapport:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "_Avslutt Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "_Kopier & Rapporter feil" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Land" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Bruker" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Hastighet" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Filer" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Betrodd" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Varsle" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Prioritert" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Sist sett" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Notis" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Legg til bruker_notis …" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Fjern" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Aldri sett" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Legg til brukernotis" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Legg til en notat om bruker %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "Legg til" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Opprett et nytt rom?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Vil du virkelig opprette et nytt rom \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Gjør rommet privat" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "_Søk i brukerens filer" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Finn …" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopier" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopier alt" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Tøm aktivitetsvisning" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Forlat rom" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Kopier lenke" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Vis romlogg" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Slett romlogg …" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Tøm meldingsvisning" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s tok del i rommet" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s nevnte deg i rom %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Nevnt av %(user)s i Rom %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Melding fra %(user)s i rom %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s forlot rommet" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s har dratt sin vei" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s har kommet tilbake" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Slett loggførte meldinger?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Vil du virkelig slette alle loggførte meldinger for dette rommet permanent?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Om" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Nettside" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Feil ved sjekking av nyeste versjon: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, fuzzy, python-format msgid "New release available: %s" msgstr "Ny utgivelse tilgjengelig: %s" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Oppdatert" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Sjekker siste versjon…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "Oppsettassistent" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Virtuell mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "_Ferdig" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Neste" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Legg til en delt mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Rediger delt mappe" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Skriv inn virtuelt navn for «%(dir)s»:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "_Rediger" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Filegenskaper" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Filegenskaper (%(num)i av %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Filegenskaper (%(num)i av %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "_Bruk" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Legg til …" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Rediger …" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "%s Innstillinger" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Legg til element" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Rediger element" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Ukjent" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Sjekk portstatus" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Passordendring avslått" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Skriv inn et nytt passord for din Soulseek-konto:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Du er for øyeblikket logget ut av Soulseek-nettverket. Hvis du ønsker å " "endre passordet til en eksisterende Soulseek-konto, må du være logget inn på " "den kontoen." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Skriv inn passordet du vil bruke ved innlogging:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Endre passord" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "_Endre" #: pynicotine/gtkgui/dialogs/preferences.py:276 #, fuzzy msgid "No one" msgstr "Ingen" #: pynicotine/gtkgui/dialogs/preferences.py:277 #, fuzzy msgid "Everyone" msgstr "Alle" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Kontakter" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Pålitelige venner" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Ingenting" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Åpne fil" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "Åpne i Filbehandler" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 #, fuzzy msgid "Search" msgstr "Søk" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pause" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Fortsett" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "Bla gjennom mappe" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntaks: Ikke følsom for store/små bokstaver. Hvis aktivert, kan " "Python regulære uttrykk brukes, ellers støttes kun jokertegnet *." #: pynicotine/gtkgui/dialogs/preferences.py:320 #, fuzzy msgid "Filter" msgstr "Filtrer" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Legg til nedlastingsfilter" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Skriv inn et nytt nedlastingsfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Aktiver regulære uttrykk" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Rediger nedlastingsfilter" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Endre følgende nedlastingsfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d mislyktes. %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtre vellykket" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 #, fuzzy msgid "Public" msgstr "Offentlig" #: pynicotine/gtkgui/dialogs/preferences.py:612 #, fuzzy msgid "Accessible To" msgstr "Tilgjengelig for" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 #, fuzzy msgid "Abort" msgstr "Avbryt" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 #, fuzzy msgid "Retry" msgstr "Prøv på nytt" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Runddans" #: pynicotine/gtkgui/dialogs/preferences.py:804 #, fuzzy msgid "First In, First Out" msgstr "Først Inn, Først Ut" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 #, fuzzy msgid "Username" msgstr "Brukernavn" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "ip-adresse" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorer bruker" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Skriv inn navnet på brukeren du vil ignorere:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorer IP-adresse" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Skriv inn en ip-adresse du vil ignorere:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* er et jokertegn" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Bannlys bruker" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Skriv inn navnet på brukeren du vil bannlyse:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Blokker ip-adresse" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Skriv inn en ip-adresse du vil blokkere:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 #, fuzzy msgid "Format codes" msgstr "Formatkoder" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Mønster" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Erstatning" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Sensureringsmønster" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Skriv inn et mønster du vil sensurere. Legg til mellomrom rundt mønsteret " "hvis du ikke vil matche strenger inne i ord (kan mislykkes i begynnelsen og " "slutten av linjer)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Rediger sensurert mønster" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Legg til erstatning" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Skriv inn et tekst mønster og hva det skal erstattes med:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Rediger erstatning" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Systemstandard" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Vis bekreftelsesdialog" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Kjør i bakgrunnen" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "fet" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "kursiv" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "understreke" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Egen fane for Kompiser" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Sidefelt i Chat Rooms-fanen" #: pynicotine/gtkgui/dialogs/preferences.py:1690 #, fuzzy msgid "Always visible sidebar" msgstr "Alltid synlig sidefelt" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Topp" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Bunn" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Venstre" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Høyre" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Pålogget" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Borte" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Frakoblet" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Fane Endret" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Fremhev fane" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Vindu" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Pålogget (Brett)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Borte (systemkurv)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Frakoblet (Systemkurv)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Melding (systemkurv)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokoll" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Kommando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Legg til URL-håndterer" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Skriv inn protokollen og kommandoen for URL-håndtereren:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Rediger kommando" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Skriv inn en ny kommando for protokoll %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Brukernavn;APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Musikkspiller (f.eks. amarok, audacious, exaile); la stå tomt for å " "autodetektere:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Brukernavn: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Kommando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Tittel" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Nå Spiller (typisk \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artist" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Varighet" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 #, fuzzy msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Kommentar" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Spornummer" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "År" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Filnavn (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Påskrudd" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Tillegg" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Ingen plugin valgt" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Nettverk" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Brukergrensesnitt" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Delinger" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Opplastinger" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Søk" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Brukerprofil" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Sludringer" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Spiller nå" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Logging" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Bannlyste brukere" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Ignorerte brukere" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Programtillegg" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Nettadresse-håndterere" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Innstillinger" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Velg et filnavn for sikkerhetskopi av konfigurasjon" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Overføringsstatistikk" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Totalt siden %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Tilbakestill overføringsstatistikk?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Vil du virkelig tilbakestille overføringsstatistikken?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "Ønskeliste" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Ønske" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Søk etter element" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Rediger ønske" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Skriv inn ny verdi for ønsket '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Tøm ønskeliste?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Vil du virkelig tømme ønskelisten din?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Sti" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Fortsett" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "_Pause" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Fullført/filtrert" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Fullført" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "På pause" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrert" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Slettet" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "I kø …" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Alt…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Tøm nedlastinger i kø" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Vil du virkelig tømme alle køede nedlastinger?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Tøm alle nedlastninger" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Vil du virkelig slette alle nedlastinger?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Last ned %(num)i filer?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "Last ned %(num)i filer fra %(user)s sin %(folder)s-mappe?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Nedlastningsmappe" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Liker" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Misliker" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Vurdering" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Element" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Anbefalinger for element" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Jeg _liker dette" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Jeg _misliker dette" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Anbefalinger" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Lignende brukere" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Anbefalinger (%s)" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Lignende Brukere (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Privat melding fra %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Ønskelisteresultater funnet" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Brukerprofiler" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Sludrerom" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interesser" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "[Avlus] Tilkoblinger" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "[Avlus] Meldinger" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "[Avlus] Overføringer" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "[Avlus] Diverse" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "_Finn…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "_Kopier" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopier _Alle" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Vis _Avluslogger" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Vis _Overføringslogger" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "_Loggkategorier" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Tøm loggvisning" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Nedlastinger: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Opplastinger: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Forbereder Deler" #: pynicotine/gtkgui/mainwindow.py:1189 #, fuzzy msgid "Scanning Shares" msgstr "Skanner Shares" #: pynicotine/gtkgui/mainwindow.py:1236 #, fuzzy msgid "Quitting..." msgstr "Avslutter..." #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Siste melding" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Rom" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Brukere" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Ta del i rom" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Forlat rommet" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Fjern eierskap av privat rom" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Avbryt rommedlemskap" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Lukk alle faner …" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Lukk fane" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Vis sludringslogg" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Slett sludringslogg …" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Brukerhandlinger" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Vil du virkelig slette alle loggførte meldinger for denne brukeren permanent?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "* Meldinger sendt mens du var offline" #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "_Kompiser" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Rom" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "_Bruker" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "I kø" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Filtype" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Filnavn" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Størrelse" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kvalitet" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Kopier _filsti" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopier _nettadresse" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Kopier _mappenettadresse" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Last ned fil(er)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Last ned fil(er) _til …" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Nedlastinings_mappe(r)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Last ned mappe(r) til…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Vis bruker _Profil" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Bla gjennom mappe" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "F_ilegenskaper" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Kopier søketerm" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Tøm alle resultater" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Fjern filtre" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Gjenopprett filtre" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIVAT] %s" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Resultatfiltre [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Resultatfiltre" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "%d aktive filter" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Legg til ønske" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Fjern Wi_sh" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Velg brukerens resultater" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Totalt: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Resultater" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Velg destinasjonsmappe for fil(er)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Velg destinasjonsmappe" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "I kø" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "I kø (prioritert)" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "I kø (privilegert)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Henter status" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Overfører" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Forbindelse lukket" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Tilkoblingstidsavbrudd" #: pynicotine/gtkgui/transfers.py:67 #, fuzzy msgid "User logged off" msgstr "Bruker logget av" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Avbrutt" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Feil med nedlastingsmappe" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Lokal filfeil" #: pynicotine/gtkgui/transfers.py:74 #, fuzzy msgid "Banned" msgstr "Bannlyst" #: pynicotine/gtkgui/transfers.py:75 #, fuzzy msgid "File not shared" msgstr "Filen er ikke delt" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Ventende nedstengning" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Fil lesefeil" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Kø" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Prosent" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Forløpt tid" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Tid igjen" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Åpne fil" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Åpne i fil_behandler" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Søk" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Tøm alt" #: pynicotine/gtkgui/transfers.py:874 #, fuzzy msgid "Select User's Transfers" msgstr "Velg brukerens overføringer" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Avbryt" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Ferdig / Avbrutt / Feilet" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Ferdig / Avbrutt" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Mislykket" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Bruker Logget Av" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Tøm kø for opplastinger" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Vil du virkelig tømme alle køede uploads?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Fjern alle opplastinger" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Vil du virkelig tømme alle uploads?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Lagre liste over delinger til disk" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Last opp mappe & undermapper…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Kopier _mappesti" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Nedlastingsmappe & undermapper" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Last ned mappe & undermapper til…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Filnavn" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Last opp fil(er)…" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Last opp mappe…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Last ned mappe _til …" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Brukerens liste over delte filer er tom. Enten deler ikke brukeren noe, " "eller så deler de filer privat." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Kan ikke be om delte filer fra bruker. Enten er brukeren frakoblet, " "lytteportene er stengt på begge sider, eller det er et midlertidig " "tilkoblingsproblem." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Velg destinasjon for nedlasting av flere mapper" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Last opp mappe (med undermapper) til bruker" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Last opp mappe til bruker" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Skriv inn navnet på brukeren du vil laste opp til:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Opp" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Velg destinasjonsmappe for filer" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Last opp fil(er) til bruker" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Kopier bilde" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Lagre bilde" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Kunne ikke laste bilde for bruker %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Kan ikke be om informasjon fra bruker. Enten har dere begge en lukket " "lytteport, brukeren er offline, eller det er et midlertidig " "tilkoblingsproblem." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Fjern _Buddy" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Legg til _Venn" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Opphev brukerutestengelse" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ikke ignorer bruker" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Ja" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nei" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Vennligst skriv inn antall dager." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Gi et par dager av dine Soulseek-privilegier til brukeren %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s dager igjen" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Gi Privilegier" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "_Gi privilegier" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Lukk" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Ja" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Velg en fil" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Velg en mappe" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "_Velg" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Velg et bilde" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Alle bilder" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Lagre som …" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Ingen)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "Lukk fane" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Lukk alle faner?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Vil du virkelig lukke alle fanene?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "%i Uleste faner" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Alle faner" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "Gjenåpne lukket fane" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s fil(er) valgt" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Utforsk filer" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "_Legg til venn" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Vis IP-_adresse" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Private rom" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Fjern fra privat rom %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Legg til i privat rom %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Fjern som operatør av %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Legg til som operatør av %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- gamle meldinger ovenfor ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Kjørbar" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Lyd" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Bilde" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arkiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Ymse" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokument" #: pynicotine/gtkgui/widgets/theme.py:216 #, fuzzy msgid "Text" msgstr "Tekst" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Feil ved lasting av tilpasset ikon %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Skjul Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Vis Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Kolonne #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Ugruppert" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Grupper etter mappe" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Grupper etter bruker" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Vil du virkelig avslutte? %s" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "Bruker %s finnes allerede, og passordet du skrev inn er ugyldig." #: pynicotine/headless/application.py:80 #, fuzzy, python-format msgid "Type %s to log in with another username or password." msgstr "Skriv %s for å logge inn med et annet brukernavn eller passord." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Passord: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "For å opprette en ny Soulseek-konto, fyll inn ønsket brukernavn og passord. " "Hvis du allerede har en konto, fyll inn dine eksisterende " "innloggingsdetaljer." #: pynicotine/headless/application.py:116 #, fuzzy msgid "The following shares are unavailable:" msgstr "Følgende delinger er utilgjengelige:" #: pynicotine/headless/application.py:122 #, fuzzy, python-format msgid "Retry rescan? %s" msgstr "Prøv ny skanning? %s" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Kunne ikke skrive til loggfilen \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Kan ikke få tilgang til loggfil %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "De forente arabiske emirater" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua og Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktis" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Amerikansk Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Østerrike" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Åland" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Aserbajdsjan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnia-Hercegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgia" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius og Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Bouvetøya" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Hviterussland" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Canada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kokosøyene (Keelingøyene)" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Den demokratiske republikken Kongo" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Den sentralafrikanske republikk" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Sveits" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Elfenbenskysten" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cookøyene" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Kina" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Kapp Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Juleøya" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Kypros" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Tsjekkia" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Tyskland" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Danmark" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Den dominikanske republikk" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Algerie" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estland" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egypt" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Vest-Sahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spania" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finland" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandsøyene (Malvinas)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikronesia" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Færøyene" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Frankrike" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Storbritannia" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Fransk Guyana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grønland" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Ekvatorial-Guinea" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Hellas" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Sør-Georgia og Sør-Sandwichøyene" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heard- og McDonaldøyene" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroatia" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Ungarn" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonesia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irland" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Mann" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Britisk territorium i Indiahavet" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordan" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japan" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgisistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kambodsja" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komorene" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Saint Kitts og Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Nord-Korea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Sør-Korea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Caymanøyene" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kasakhstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Lebanon" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Litauen" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxembourg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Latvia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libya" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marokko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshalløyene" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Nord-Makedonia" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Nord-Marianene" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldivene" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexico" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malaysia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mosambik" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Ny-Caledonia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolkøya" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Nederland" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norge" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Ny-Zealand" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Fransk Polynesia" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Ny-Guinea" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filippinene" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polen" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre og Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Romania" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Russland" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudi-Arabia" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Salomonøyene" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychellene" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Sverige" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Sankt Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slovenia" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard og Jan Mayen" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovakia" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Sør-Sudan" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "São Tomé og Príncipe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Syria" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turks- og Caicosøyene" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Chad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "De franske sørterritorier" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Thailand" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadsjikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Øst-Timor" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunisia" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Tyrkia" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad & Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "USAs ytre småøyer" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "USA" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Usbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Den hellige stol (Vatikanstaten)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent & Grenadinene" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "De britiske jomfruøyene" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "De amerikanske Jomfruøyene" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis og Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Sør-Afrika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Tekst-til-tale for melding feilet: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Vennligst oppgi både ditt Last.fm-brukernavn og API-nøkkel" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Feil ved Nå spilles" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Kunne ikke koble til Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Kunne ikke hente nylig spor fra Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Finner ikke en passende MPRIS-spiller" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Fant flere MPRIS-spillere: %(players)s. Bruker: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatisk oppdaget MPRIS-spiller: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Noe gikk galt under spørring %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Angi ditt ListenBrainz-brukernavn" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Kunne ikke koble til ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Det virker ikke som om du lytter til noe akkurat nå" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Kunne ikke hente gjeldende spor fra ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Nettverksfiltre" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "List opp tilgjengelige kommandoer" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Koble til serveren" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Koble fra serveren" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Aktiver borte-status" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Administrer plugins" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Tøm chattevinduet" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Si noe i tredjeperson" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Kunngjør sangen som spilles akkurat nå" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Bli med i chattegruppe" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Forlat chatterom" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Si melding i angitt chattevindu" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Åpne privat chat" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Lukk privat chat" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Be om brukerens klientversjon" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Send privat melding til bruker" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Legg til bruker i vennelisten" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Fjern kompis fra kompislisten" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Bla gjennom filer til bruker" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Vis brukerprofilinformasjon" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Vis ip-adresse eller brukernavn" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blokker tilkoblinger fra bruker eller ip-adresse" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Fjern bruker eller ip-adresse fra utestengelseslister" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Stille meldinger fra bruker eller ip-adresse" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Fjern bruker eller ip-adresse fra ignorerte lister" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Legg til deling" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Fjern deling" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "List opp delinger" #: pynicotine/plugins/core_commands/__init__.py:239 #, fuzzy msgid "Rescan shares" msgstr "Skann Shares på nytt" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Start globalt filsøk" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Søk i filer i rom du har blitt med i" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Søk i filer fra alle venner" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Søk i en brukers delte filer" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Lister %(num)i tilgjengelige kommandoer:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Lister %(num)i tilgjengelige kommandoer som matcher \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Skriv %(command)s for å liste lignende kommandoer" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Skriv %(command)s for å liste tilgjengelige kommandoer" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "Ikke med i rom %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, fuzzy, python-format msgid "Not messaging with user %s" msgstr "Sender ikke meldinger til bruker %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Lukket privat chat for bruker %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Utestengt %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Opphevet utestengelse av %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorerte %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ikke ignorert %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, fuzzy, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s Shares oppført (%(num_total)s konfigurert)" #: pynicotine/plugins/core_commands/__init__.py:568 #, fuzzy, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Kan ikke dele utilgjengelig mappe \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, fuzzy, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "La til %(group_name)s del \"%(virtual_name)s\" (ny skanning nødvendig)" #: pynicotine/plugins/core_commands/__init__.py:582 #, fuzzy, python-format msgid "No share with name \"%s\"" msgstr "Ingen Del med navnet \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, fuzzy, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Fjernet deling \"%s\" (ny skanning nødvendig)" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Laster inn plugin-system" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Kan ikke laste inn programtillegget %(name)s. Navnet på programtillegget " "inneholder ugyldige tegn: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konflikt med %(interface)s kommando i plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Lastet inn plugin %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Kan ikke laste inn programtillegget %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Ulastet plugin %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Kan ikke laste ut plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s feilet med feil %(errortype)s: %(error)s.\n" "Spor: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Ingen beskrivelse" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Mangler %s argument" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Ugyldig argument, mulige valg: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Bruk: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Ukjent kommando: %(command)s. Skriv %(help_command)s for å liste " "tilgjengelige kommandoer." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Ingen UPnP-enheter funnet" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Kunne ikke videresende ekstern port %(external_port)s: " "%(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Ekstern port %(external_port)s videresendt til lokal ip-" "adresse %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privat melding fra bruker '%(user)s': %(message)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Søker etter ønskeliste-element \"%s\"" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Ønskelistens ventetid satt til %s sekunder" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Bruker %(user)s søker etter \"%(query)s\", fant %(num)i resultater" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Bygger opp delinger på nytt…" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Skanner delinger på nytt…" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Ny skanning fullført: %(num)s mapper funnet" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Alvorlig feil oppstod under ny skanning av delinger. Hvis dette problemet " "vedvarer, slett %(dir)s/*.dbn og prøv igjen. Hvis det ikke hjelper, " "vennligst send en feilrapport med denne stakksporingen inkludert: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Feil under skanning av fil %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Feil ved skanning av mappe %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Feil ved skanning av metadata for filen %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Avbrutt reskanning på grunn av utilgjengelige delinger: %s" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Bruker %(user)s blar gjennom listen din over delte filer" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Klarte ikke å hente den delte mappen %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Kan ikke lese databasen for delte ressurser. Skann delingene dine på nytt. " "Feil: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Angitt nettverksgrensesnitt '%s' er ikke tilgjengelig" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Kan ikke lytte på port %(port)s. Sørg for at ingen andre applikasjoner " "bruker den, eller velg en annen port. Feil: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Lytter på port: %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Kan ikke koble til server %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Kobler til serveren på nytt om %i sekunder" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Kobler til %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Koblet til server %(host)s:%(port)s, logger inn…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Frakoblet fra tjener %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Noen logget inn på din Soulseek-konto et annet sted" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Opplasting fullført: bruker %(user)s, IP-adresse %(ip)s, fil %(file)s" #: pynicotine/uploads.py:409 #, fuzzy, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Opplasting avbrutt, bruker %(user)s fil %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Opplastings-I/O-feil: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Opplasting startet: Bruker %(user)s, IP-adresse %(ip)s, fil %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Kan ikke opprette mappen «%(folder)s». Feil: %(error)s" #: pynicotine/userbrowse.py:218 #, fuzzy, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Laste Delinger fra disk mislyktes: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Lagret liste over delte filer for bruker '%(user)s' til %(dir)s" #: pynicotine/userbrowse.py:268 #, fuzzy, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Kan ikke lagre delinger, '%(user)s', rapportert feil: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Bilde lagret til %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Kan ikke lagre bilde til %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Bruker %(user)s ser på profilen din" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Kunne ikke koble til serveren. Årsak: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Kan ikke koble til" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Kan ikke hente ip-en til bruker %s, siden denne brukeren er offline" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "ip-adresse til bruker %(user)s: %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek-annonsering" #: pynicotine/users.py:356 #, fuzzy, python-format msgid "%i privileged users" msgstr "%i privilegerte brukere" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Du har ingen Soulseek-privilegier. Når privilegier er aktive, vil " "nedlastingene dine bli satt i kø foran de som ikke har privilegier." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dager, %(hours)i timer, %(minutes)i minutter, %(seconds)i sekunder " "med Soulseek-privilegier igjen" #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Passordet ditt har blitt endret" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Passord endret" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Kan ikke åpne filsti %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Kan ikke åpne URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Noe gikk galt under lesing av filen %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Prøver å laste inn backup av filen %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Kan ikke ta sikkerhetskopi av filen %(path)s: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Kunne ikke lagre filen %(path)s: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Kan ikke gjenopprette forrige fil %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Legg til kompis…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Søk i aktivitetslogg…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Søk i chatloggen…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Send melding…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Aktiver tekst-til-tale" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Hjelp med chatromkommandoer" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Logg" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Romvegg" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "_Romvegg" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Laget av" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Oversatt av" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Lisens" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "_Forrig" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Velkommen til Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Sett opp …" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Hvis ønsket brukernavn allerede er tatt, vil du bli bedt om å endre det." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 #, fuzzy msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "For å koble til andre Soulseek-brukere, må en lytteport på ruteren din " "videresendes til datamaskinen din." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Hvis lytteporten din er lukket, vil du bare kunne koble til brukere som har " "åpne lytteporter." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Om nødvendig, velg en annen lytteport nedenfor. Dette kan også gjøres senere " "i innstillingene." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Last ned filer til mappe" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Del mapper" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-brukere vil kunne laste ned fra dine Shares. Bidra til Soulseek-" "nettverket ved å dele dine egne filer og ved å dele videre det du har lastet " "ned fra andre brukere." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Du er klar til å bruke Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 #, fuzzy msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "Soulseek er et ukryptert protokoll ikke ment for sikker kommunikasjon." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Å donere til Soulseek gir deg privilegier for en viss tidsperiode. Hvis du " "har privilegier, vil nedlastingene dine bli satt i kø foran brukere uten " "privilegier." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Forrige fil" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Neste fil" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Navn" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Siste hastighet" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "_Eksporter…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Tastatursnarveier" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Generelt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Koble til" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Koble fra" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Skann Shares på nytt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Vis loggføringsfane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Bekreft avslutning" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Avslutt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menyer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Åpne hovedmeny" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Åpne bindeleddsmeny" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Faner" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Endre hovedfane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Gå til forrige sekundære fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Gå til neste sekundære fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Gjenåpne lukket sekundærfane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Tøm sekundær fane" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Lister" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Kopier valgt celle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Fjern valgt rad" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Redigering" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Klipp ut" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Lim inn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Sett inn emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Velg alt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Finn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Finn neste treff" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Finn forrige treff" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Filoverføringer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Gjenoppta / Prøv overføring på nytt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Pause / Avbryt overføring" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Last ned / Last opp til" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "Lagre liste til disk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Oppdater" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Utvid / Skjul alle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Tilbake til overordnet mappe" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Filsøk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "Resultatfiltre" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Gjeldende økt" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Fullførte nedlastninger" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Nedlastingsstørrelse" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Fullførte opplastinger" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Opplastet størrelse" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Totalt" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Tilbakestill…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Ønskelisteobjekter blir automatisk søkt etter med jevne mellomrom, for å " "oppdage uvanlige filer." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Legg til ønske…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Tøm alt …" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Tøm alle ferdige/filtrerte nedlastinger" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Tøm fullførte" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Tøm spesifikke nedlastinger" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Tøm _Alle…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Personlige interesser" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Legg til noe du liker…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Personlige mislikninger" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Legg til noe du misliker…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Oppdater anbefalinger" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Hovedmeny" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Rom …" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Brukernavn …" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Søkeord…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Søkemønstre: med et ord = term, uten et ord = -term, del av et ord = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Søkeomfang" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Ønskeliste" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfigurer søk" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Skriv inn et søkeord for å søke etter filer delt av andre brukere på " "Soulseek-nettverket" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Filergrupperingsmodus" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfigurer nedlastinger" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Filer du laster ned fra andre brukere blir satt i kø her, og kan pauses og " "gjenopptas etter behov" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfigurer Uploads" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Brukeres forsøk på å laste ned dine delte filer blir satt i kø og håndtert " "her" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Åpne liste" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Åpner en lokal liste over delte filer som tidligere ble lagret på disken" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "Konfigurer Shares" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Skriv inn navnet på en bruker hvis delte filer du ønsker å bla gjennom. Du " "kan også lagre listen på disken og inspisere den senere." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "_Personlig profil" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfigurer konto" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Skriv inn navnet på en bruker for å se deres brukerbeskrivelse, informasjon " "og personlige bilde" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Chatthistorikk" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfigurer chatter" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Skriv inn navnet på en bruker for å starte en privat tekstkonversasjon med " "dem" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "_Melding til alle" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Konfigurer Ignorerte Brukere" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Legg til brukere som kompiser for å dele spesifikke mapper med dem og motta " "varsler når de er på nett" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Bli med i eller opprett rom…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Bli med i et eksisterende chatterom, eller opprett et nytt rom for å chatte " "med andre brukere på Soulseek-nettverket" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Konfigurer Brukerprofil" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Søkelogg…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Tilkoblinger" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Nedlasting (Hastighet / Aktive Brukere)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Opplasting (Hastighet / Aktive brukere)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Søk i chat-historikk…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Nedlastingshastighetsgrenser" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Ubegrenset nedlastingshastighet" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Bruk nedlastingshastighetsgrense (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Bruk alternativ nedlastingshastighetsgrense (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Søk i rom…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Oppdater rom" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Vis feed av offentlige chatte rom meldinger" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "_Aksepter private rominvitasjoner" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Skriv en enkelt melding som andre rombrukere kan lese senere. Nylige " "meldinger vises øverst." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Sett veggmelding…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Filter for søkeresultater" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Søkeresultatfiltre brukes for å forbedre hvilke søkeresultater som vises." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Hver søkeliste har sitt eget filter som kan vises ved å veksle " "Resultatfilter-knappen. Et filter består av flere felt, og alle blir brukt " "når du trykker Enter i et av feltene. Filtreringen blir umiddelbart anvendt " "på resultater som allerede er mottatt, og også på de som ennå ikke har " "kommet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Som navnet antyder, kan ikke et søkefilter utvide det opprinnelige søket " "ditt, det kan bare innsnevre det. For å utvide eller endre søkevilkårene " "dine, utfør et nytt søk." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Bruk av resultatfilter" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Inkluder tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Filer, mapper og brukernavn som inneholder denne teksten vil bli vist." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Store og små bokstaver spiller ingen rolle, men ordrekkefølgen er viktig: " "'Instrumental Remix' vil ikke vise noen 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Bruk | (eller rør) for å skille flere eksakte fraser. Eksempel:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Ekskluder tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Som ovenfor, men filer, mapper og brukernavn filtreres ut hvis teksten " "matcher." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtrerer filer basert på filtypen deres." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Flere filutvidelser kan spesifiseres, noe som vil vise mer fra " "resultatlisten. Eksempel:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Det er også mulig å invertere filteret, ved å spesifisere filutvidelser du " "ikke vil ha i resultatene dine med et utropstegn! Eksempel:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Filstørrelse" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtrerer filer basert på filstørrelse." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Som standard er enheten som brukes bytes (B), og filer som er større enn " "eller lik (>=) verdien vil bli matchet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Legg til b, k, m eller g (alternativt kib, mib eller gib) for å spesifisere " "byte, kibibyte, mebibyte eller gibibyte enheter:\n" " 20m for å vise filer større enn 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Legg til = foran en verdi for å spesifisere et nøyaktig treff:\n" " =1024 matcher filer som er nøyaktig 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Legg til ! foran en verdi for å ekskludere filer av en spesifikk størrelse:\n" " !30.5m for å skjule filer som er 30.5 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Sett inn < eller > for å finne filer mindre/større enn den angitte verdien. " "Bruk et mellomrom mellom hver betingelse for å inkludere et område:\n" " >10.5m <1g for å vise filer større enn 10.5 MiB, men mindre enn 1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "De bedre kjente variantene kb, mb og gb kan også brukes for kilobyte, " "megabyte og gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtrerer filer basert på deres bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Verdier må kun angis som numeriske sifre. Enheten er alltid Kb/s (Kilobits " "per sekund)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Som Filstørrelse (ovenfor), kan operatører =, !, <, >, <= eller >= brukes, " "og flere betingelser kan spesifiseres, for eksempel for å vise filer med en " "bitrate på minst 256 Kb/s med en maksimal bitrate på 1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtrerer filer basert på deres varighet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Som standard vil filer som er lengre enn eller lik (>=) den inngitte " "varigheten bli matchet, med mindre en operator (=, !, <=, < eller >) brukes." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Skriv inn en råverdi i sekunder eller bruk MM:SS og HH:MM:SS tidsformatene:\n" " =53 viser filer som er omtrent 53 sekunder lange.\n" " >5:30 for å vise filer som er mer enn 5 og en halv minutt lange.\n" " <5:30:00 viser filer som er mindre enn 5 og en halv time lange." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Flere betingelser kan spesifiseres:\n" " >6:00 <12:00 for å vise filer mellom 6 og 12 minutter lange.\n" " !9:54 !8:43 !7:32 for å skjule noen spesifikke filer fra resultatene.\n" " =5:34 =4:23 =3:05 for å inkludere filer med spesifikke varigheter." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtrerer filer basert på brukeres geografiske plassering i henhold til " "landskoder definert av ISO 3166-2:\n" " US vil kun vise resultater fra brukere med ip-adresser i USA.\n" " !GB vil skjule resultater som kommer fra brukere i Storbritannia." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Flere land kan spesifiseres med komma eller mellomrom." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Ledig plass" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Vis bare resultater fra brukere som har minst én opplastningsspor ledig, " "dvs. filer som er umiddelbart tilgjengelige." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Hastighetsgrenser for opplasting" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Ubegrenset opplastningshastighet" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Bruk grense for opplastningshastighet (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Bruk alternativ opplastningshastighetsgrense (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Hjelp med private chat-kommandoer" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Inkluder tekst…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrer i resultater hvor filstiene inneholder den spesifiserte teksten. " "Flere fraser og ord kan spesifiseres, f.eks. nøyaktig frase|musikk|term|" "nøyaktig frase to" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Ekskluder tekst…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrer ut resultater hvis filstier inneholder den angitte teksten. Flere " "fraser og ord kan spesifiseres, f.eks. nøyaktig frase|musikk|term|nøyaktig " "frase to" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Filtyper…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Filtyper, f.eks. flac wav eller !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Filstørrelse…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Filstørrelse, f.eks. >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bithastighet…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bitrate, f.eks. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Varighet…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Varighet, f.eks. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Landkode…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Landkode, f.eks. US ES eller !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Forby brukere fra å få tilgang til dine delte filer, basert på brukernavn, " "ip-adresse eller land." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Landskoder å blokkere (kommainndelt):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Koder må være i ISO 3166-2-format." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Bruk egendefinert geo blokk-melding:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 #, fuzzy msgid "Use custom ban message:" msgstr "Bruk egendefinert utestengelsesmelding:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "IP-adresser" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Aktiver stavekontroll" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Gjenopprett tidligere åpne private chatter ved oppstart" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Aktiver CTCP-lignende private meldingssvar (klientversjon)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Antall nylige private chattemeldinger å vise:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Antall nylige chatrommeldinger å vise:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Chatfullføring" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Aktiver tab-tast fullføring" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Aktiver rullegardinliste for fullføring" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Minimum antall tegn som kreves for å vise nedtrekksmeny:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Tillatte chat-fullføringer:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Buddy-navn" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Chatrom-brukernavn" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Romnavn" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Kommandoer" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Tidsstempler" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Format for privat chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Forvalg" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Sludreromsformat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Tekst-til-tale" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Skru på tekst-til-tale" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Tekst-til-tale-kommando:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Privat sludremelding:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Sludreromsmelding:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Sensur" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Aktiver sensurering av tekst mønstre" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Erstatt automatisk" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Aktiver automatisk erstatning av ord" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Automatisk fjerning av ferdige/filtrerte nedlastinger fra overføringslisten" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Lagre fullførte nedlastinger i brukernavn-undermapper" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Dobbeltklikk-aksjon for nedlastinger:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Tillat brukere å sende deg hvilke som helst filer:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Mapper" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Ferdige nedlastinger:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Ufullstendige nedlastinger:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Mottatte filer:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Hendelser" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Kjør kommando etter at filnedlasting er ferdig ($ for filbane):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "Kjør kommando etter nedlasting av mappe er ferdig ($ for mappesti):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Nedlastingsfiltre" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Aktiver nedlastingsfiltre" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Legg til" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 #, fuzzy msgid "Load Defaults" msgstr "Last inn standardinnstillinger" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 #, fuzzy msgid "Verify Filters" msgstr "Verifiser Filtre" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Uverifisert" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorer chattemeldinger og søkeresultater fra brukere, basert på brukernavn " "eller ip-adresse." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Loggfør sludrerom som forvalg" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Loggfør private sludringer som forvalg" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Loggfør overføringer til fil" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Loggfør avlusningsmeldinger til fil" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Logg tidsstempelformat:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Mappeplasseringer" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Mappe for chatloggføringer:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Mappe for loggføring av privat chat:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Mappe for overføringslogger:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Mappe for avlusloggfiler:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Logg inn på en eksisterende Soulseek-konto eller opprett en ny. Brukernavn " "er skriftsensitivt og unikt." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Offentlig ip-adresse:" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Lytteport (krever omstart):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Borte-status" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutter med inaktivitet før du blir borte (0 for å deaktivere):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Automatisk svarmelding når du er borte:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatisk videresending av lytteport (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Koble automatisk til server ved oppstart" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek-tjener:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Binder tilkoblinger til et spesifikt nettverksgrensesnitt, nyttig for f.eks. " "å sikre at en VPN brukes til enhver tid. La stå tomt for å bruke et hvilket " "som helst tilgjengelig grensesnitt. Endre kun denne verdien hvis du vet hva " "du gjør." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Nettverksgrensesnitt (krever omstart):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Nå spiller lar deg vise hva mediespilleren din spiller ved å bruke /now-" "kommandoen i chatten." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Annet" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Nå spilles-format" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Format for nå spilles-melding:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Test konfigurasjon" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Aktiver plugins" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "Legg til Plugins" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Legg til programtillegg" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Innstillinger" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "_Innstillinger" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versjon:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Opprettet av:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Aktiver søkehistorikk" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Private delte filer som har blitt synlige for alle vil bli prefikset med " "'[PRIVATE]', og kan ikke lastes ned før opplasteren gir eksplisitt " "tillatelse. Spør dem pent." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Vis privat delte filer i søkeresultater" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Begrens antall resultater per søk:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Aktiver søkeresultatfiltre som forvalg" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Inkluder:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Ekskluder:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Filtype:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Størrelse:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Varighet:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Landskode:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "Vis kun resultater fra brukere med en ledig opplastningsspor." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Hjelp til resultatfilter" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Nettverkssøk" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Svar på søkeforespørsler fra andre brukere" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Søk kortere enn dette antall tegn vil bli ignorert:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "Maksimalt antall søkeresultater å sende per søkeforespørsel:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Tøm søkehistorikk" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Tøm filterhistorikk" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Skanner automatisk innholdet i dine delte mapper ved oppstart. Hvis " "deaktivert, blir delingene dine kun oppdatert når du manuelt initierer en ny " "skanning." #: pynicotine/gtkgui/ui/settings/shares.ui:39 #, fuzzy msgid "Rescan shares on startup" msgstr "Skann Shares på nytt ved oppstart" #: pynicotine/gtkgui/ui/settings/shares.ui:68 #, fuzzy msgid "Visible to everyone:" msgstr "Synlig for alle:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Buddy-deler" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Betrodde delinger" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Autoslett ferdige/avbrutte uploads fra overføringslisten" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Dobbeltklikk-handling for uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Begrens opplastningshastighet:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Per overføring" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Totalt antall overføringer" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Opplastningsspor" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Runddans: Filer vil bli lastet opp i syklisk rekkefølge til brukerne som " "venter i kø.\n" "Først Inn, Først Ut: Filer vil bli lastet opp i den rekkefølgen de ble satt " "i kø." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Type kø for Uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Tildel opplastningsspor til total hastighet når (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Fast antall opplastningsspor:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Prioriter alle venner" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Grenser for Kø" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Maksimalt antall køede filer per bruker:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 #, fuzzy msgid "Maximum total size of queued files per user (MiB):" msgstr "Maksimal total størrelse på køede filer per bruker (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Begrensninger gjelder ikke for venner" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Forekomster av $ erstattes med URL-en. Standard systemapplikasjoner brukes i " "tilfeller der et protokoll ikke har blitt konfigurert." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Filbehandlerkommando:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Tilbakestill bilde" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Selvbeskrivelse" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 #, fuzzy msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Legg til ting du vil at alle skal se, som en kort beskrivelse, nyttige tips, " "eller retningslinjer for nedlasting av dine delinger." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Bilde:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Tøm" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Foretrekk mørk drakt" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Bruk topptekstfelt" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Vis systemkurvsikon" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimer til systemkurv ved oppstart" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Språk (krever omstart):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Når vindu lukkes:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Merknader" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Aktiver lyd for varsler" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "Vis varsling for private chatter og nevnelser i vindustittelen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Vis varsler for:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Ferdige filnedlastinger" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Ferdige mappe-nedlastinger" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Private meldinger" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Meldinger i chatteområdet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Chatrom nevner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Resultater funnet i ønskelisten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Gjenopprett den tidligere aktive hovedfanen ved oppstart" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Lukkeknapper i sekundærfaner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Farge på vanlig faneetikett:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Endret farge på fanetekst:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Fremhevet faneetikettfarge:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 #, fuzzy msgid "Buddy list position:" msgstr "Buddy-listeposisjon:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Synlige hovedfaner:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Posisjoner for faner:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Hovedfaner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "Vis omvendte filstier (krever omstart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Vis nøyaktige filstørrelser (krever omstart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Farge på listetekst:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Farge på tekst for køet søketreff:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Aktiver fargede brukernavn" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Utseende på chattebrukernavn:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Tekstfarge for fjernmeldinger:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Lokal tekstfarge:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Tekstfarge for kommandooutput:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me handlingstekstfarge:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Fremhevet tekstfarge:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "Tekstfarge for URL-lenke:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Brukerstatusser" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Farge på nett:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Farge når borte:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Farge når frakoblet:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Tekstfelt" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Bakgrunnsfarge for tekstinnføring:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Tekstfarge for tekstinnføring:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Skrifttyper" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Global skrifttype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Listeskrift:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Skrifttype for tekstvisning:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Chattefont:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Skrifttype for overføringer:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Søkeskrift:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Bla igjennom skrifttype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Ikoner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Mappe for ikontema:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Avbryt bruker(e)" #: pynicotine/gtkgui/ui/uploads.ui:116 #, fuzzy msgid "Ban User(s)" msgstr "Utesteng bruker(e)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Slett alle ferdige/avbrutte Uploads" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Meld Alle" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Fjern spesifikke Uploads" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "Lagre Shares-liste til disk" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Oppdater filer" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Rediger profil" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Delte filer" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Delte mapper" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Køede Uploads" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Ledige opplastningsspor" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Opplastningshastighet" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Rediger interesser" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Gi Privilegier…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "_Oppdater profil" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+ kommandoer" #~ msgid "_Clear" #~ msgstr "_Tøm" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Kan ikke lagre %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Pålitelige venner" #, fuzzy #~ msgid "Quit program" #~ msgstr "Avslutt program" #~ msgid "Username:" #~ msgstr "Brukernavn:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Anbefalinger for Objekt" #~ msgid "_Remove Item" #~ msgstr "_Fjern element" #~ msgid "_Remove" #~ msgstr "_Fjern" #~ msgid "Send M_essage" #~ msgstr "Send m_elding" #~ msgid "Send Message" #~ msgstr "Send melding" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Vis brukerprofil" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Start Meldingsutveksling" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Skriv inn navnet på brukeren du vil sende en melding til:" #, fuzzy #~ msgid "_Message" #~ msgstr "Melding" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Skriv inn navnet på brukeren hvis profil du vil se:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "_Vis profil" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Skriv inn navnet på brukeren du vil se delinger fra:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Bla gjennom" #, fuzzy #~ msgid "Password" #~ msgstr "Passord" #, fuzzy #~ msgid "Download File" #~ msgstr "Last ned fil" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Oppdater lignende brukere" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Skriv inn brukernavnet til personen du vil se filene til" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Skriv inn brukernavnet til personen du vil se informasjonen til" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Skriv inn brukernavnet til personen du vil sende en melding til" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Skriv inn brukernavnet til personen du vil legge til i vennelisten din" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Skriv inn navnet på et rom du vil bli med i. Hvis rommet ikke eksisterer, " #~ "vil det bli opprettet." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Vis logghistorikk-panelet" #~ msgid "Save _Picture" #~ msgstr "Lagre _bilde" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Filtrerte ut feil søkeresultat %(filepath)s fra bruker %(user)s for søket " #~ "\"%(query)s\"" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Enkelte klienter sender ikke søkeresultater hvis spesialtegn er inkludert." #~ msgid "Remove special characters from search terms" #~ msgstr "Fjern spesialtegn fra søkeord" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problemer med å utføre %s'" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemer med å kjøre på mappen: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Ikke tillatt utvidelse" #~ msgid "Too many files" #~ msgstr "For mange filer" #~ msgid "Too many megabytes" #~ msgstr "For mange megabyte" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Serveren tillater for øyeblikket ikke å utføre ønskelistesøk" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Filoverføringshastighetene avhenger av brukerne du laster ned fra. Visse " #~ "brukere vil være raskere, mens andre vil være trege." #~ msgid "Started Downloads" #~ msgstr "Startede nedlastinger" #~ msgid "Started Uploads" #~ msgstr "Startede opplastinger" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Erstatt sensurerte bokstaver med:" #~ msgid "Censored Patterns" #~ msgstr "Sensurerte mønstre" #~ msgid "Replacements" #~ msgstr "Erstatninger" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Hvis en bruker på Soulseek-nettverket søker etter en fil som finnes i de " #~ "delte ressursene dine, sendes søkeresultatene til brukeren." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Send til _spiller" #~ msgid "Send to _Player" #~ msgstr "Send til _spiller" #~ msgid "_Open in File Manager" #~ msgstr "_Åpne i filbehandler" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Media Player-kommando ($ for filbane):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "Kan ikke lagre nedlasting til undermappe for brukernavn. Feil: %s" #~ msgid "Buddy-only" #~ msgstr "Kun kontakter" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Kun del med kontakter" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Avslutt" #~ msgid "_Configure Shares" #~ msgstr "_Set opp delinger" #~ msgid "Remote file error" #~ msgstr "Feil med fil annensteds hen" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "Finner ikke %(option1)s eller %(option2)s. Installer én av delene." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s-mapper funnet etter ny skanning" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Kan ikke behandle følgende databaser: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Klarte ikke å sende antall delte filer til tjeneren: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Kjør i bakgrunnen" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Lytteport er ikke valgt" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Nettverkssøk" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Begrens delte venner til betrodde venner" #, fuzzy #~ msgid "Shared" #~ msgstr "Delte" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Søke i filer og mapper (nøyaktig samsvar)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Utdatert" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Versjon %(version)s er tilgjengelig, utgitt på %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Det ser ut til at du bruker en utviklingsversjon av Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Du bruker nyeste versjon av Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Se etter _nye versjoner" #~ msgid "Prefer Dark _Mode" #~ msgstr "Foretrekk _mørk drakt" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Vis _loggfane" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Kontaktliste i egen fane" #~ msgid "Buddy List Always Visible" #~ msgstr "Alltid synlig kontaktliste" #~ msgid "_View" #~ msgstr "_Vis" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Nedlastningsmappe" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Browse mappe(r)" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibyte (2^10 byte) per sekund." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Sendt til brukere som årsak til å være geo-blokkert." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Sendes til brukere som årsak til at de blir utestengt." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Når du samhandler med at applikasjonen er borte, settes statusen til " #~ "online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Hver bruker kan legge maksimalt ett av følgende i kø:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibyte (2^20 byte)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiB" #, fuzzy #~ msgid "files" #~ msgstr "Filer" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Virkemåte for kø" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Hvis den deaktiveres, bestemmes sporene automatisk av tilgjengelige " #~ "båndbreddebegrensninger." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Vær oppmerksom på at operativsystemets tema kan ha forrang." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Som standard er fanen for søkefiler aktivert ved oppstart." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Avslutt Nicotine+ %(version)s, %(status)s." #, fuzzy #~ msgid "terminated" #~ msgstr "Avsluttet" #, fuzzy #~ msgid "done" #~ msgstr "gjort" #~ msgid "Remember choice" #~ msgstr "Husk valg" #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Brukergrensesnitt" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Lytter til port %i" #, fuzzy, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Serveren ser ut til å være nede eller ikke svare, og prøver på nytt om %i " #~ "sekunder" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ bruker node-til-node-nettverk for å koble til andre brukere. " #~ "For å tillate brukere å koble til deg uten problemer, er en åpen " #~ "lytteport avgjørende." #~ msgid "--- disconnected ---" #~ msgstr "--- frakoblet ---" #~ msgid "--- reconnected ---" #~ msgstr "--- tilkoblet igjen ---" #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Jord" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Tsjekkia" #~ msgid "Turkey" #~ msgstr "Tyrkia" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Sammenføyde rom " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-join rom" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ " Syntaks: Bokstaver skiller ikke mellom store og små bokstaver. " #~ "Alle vanlige Python-uttrykk støttes hvis rømming er deaktivert. For enkle " #~ "filtre anbefales det å holde rømming aktivert." #, fuzzy #~ msgid "Escaped" #~ msgstr "Rømte" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Rømte" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Skriv inn henholdsvis tekstmønsteret og erstatningen:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s mapper funnet før ny skanning, gjenoppbygging…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Ingen lytteport er tilgjengelig i det angitte portområdet %s–%s" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Velg en rekkevidde å velge en lytteport fra. Den første tilgjengelige " #~ "porten i serien vil bli brukt." #, fuzzy #~ msgid "First Port" #~ msgstr "Første port" #~ msgid "to" #~ msgstr "til" #, fuzzy #~ msgid "Last Port" #~ msgstr "Siste port" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Finner ikke %s. Installer det først." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Kan ikke importere GTK-modulen. Har python-gobject-modulen blitt " #~ "installert på feil vis?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Du bruker en ustøttet versjon av GTK %(major_version)s. Du bør installere " #~ "GTK %(complete_version)s eller nyere." #~ msgid "User Info" #~ msgstr "Brukerinfo" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Zoom inn" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Zoom ut" #~ msgid "Show User I_nfo" #~ msgstr "Vis brukeri_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Forespør brukerinfo" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Forespør brukerinfo" #~ msgid "Request User Info" #~ msgstr "Forespør brukerinfo" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Skriv inn navnet på brukeren du ønsker å bannlyse:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Liste over delte forespørselsressurser" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Ugyldig Soulseek URL: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Brukere på Soulseek-nettverket vil kunne laste ned filer fra mapper du " #~ "deler. Deling av filer er avgjørende for helsen til Soulseek-nettverket." #~ msgid "Update I_nfo" #~ msgstr "Oppdater i_nfo" #~ msgid "Chat Room Commands" #~ msgstr "Ludreromskommandoer" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'rom'" #, fuzzy #~ msgid "Join room 'room'" #~ msgstr "Bli med i rommet 'rom'" #~ msgid "/me 'message'" #~ msgstr "/me «melding»" #, fuzzy #~ msgid "Display the Now Playing script's output" #~ msgstr "Vise utdata fra skriptet som spilles av nå" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'bruker'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Legge til brukerbruker i vennelisten" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /ubuddy 'bruker'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Fjerne brukerbrukeren fra vennelisten" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ban 'bruker'" #, fuzzy #~ msgid "Add user 'user' to your ban list" #~ msgstr "Legge til brukerbruker i forbudslisten" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban 'bruker'" #, fuzzy #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Fjern brukerens bruker fra utestengingslisten" #~ msgid "/ignore 'user'" #~ msgstr "/ignore «bruker»" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Legg til bruker «bruker» i ignoreringslisten din" #~ msgid "/unignore 'user'" #~ msgstr "/unignore «bruker»" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Fjern bruker «bruker» fra ignoreringslisten" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b «bruker»" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'bruker'" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Be om informasjon for bruker" #~ msgid "/ip 'user'" #~ msgstr "/ip «bruker»" #~ msgid "Show IP for user 'user'" #~ msgstr "Vis IP for bruker «bruker»" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'spørring'" #, fuzzy #~ msgid "Start a new search for 'query'" #~ msgstr "Start et nytt søk etter spørring" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'spørring'" #, fuzzy #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Søk i de sammenføyde rommene etter 'spørring'" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'spørring'" #, fuzzy #~ msgid "Search the buddy list for 'query'" #~ msgstr "Søk etter spørring i vennelisten" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'bruker' 'spørring'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'bruker' 'melding'" #, fuzzy #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Send meldingen \"message\" til brukeren \"user\"" #~ msgid "/pm 'user'" #~ msgstr "/pm «bruker»" #, fuzzy #~ msgid "Open private chat window for user 'user'" #~ msgstr "Åpne privat sludrevindu med brukeren «bruker»" #~ msgid "Private Chat Commands" #~ msgstr "Kommandoer for privat sludring" #~ msgid "Add user to your ban list" #~ msgstr "Legg til bruker på bannlysningslisten din" #~ msgid "Add user to your ignore list" #~ msgstr "Legg til bruker på ignoreringslisten" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Bla gjennom delte ressurser for bruker" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "For ordensfølsom filtrering, i tillegg til filtrering av flere eksakte " #~ "setninger, kan loddrette stolper brukes til å skille setninger og ord.\n" #~ " Eksempel: Spyd| Bretagne| Mitt vakre album|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "For å ekskludere ikke-lydfiler, bruk !0 i varighetsfilteret." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtrerer filer basert på brukernes land." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "For å se de fullstendige resultatene igjen, slett alle aktive filtre." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Se innstillingene for flere filteralternativer." #~ msgid "File size" #~ msgstr "Filstørrelse" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Fjern alle aktive filtre" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Bla gjennom fullføringer når du trykker tab-taster" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Skjul rullegardinliste når bare ett treff" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Last ned mapper i omvendt alfanumerisk rekkefølge" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Ufullstendig filmappe:" #~ msgid "Download folder:" #~ msgstr "Nedlastningsmappe:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Lagre venners opplastinger i:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Bruk UPnP til automatisk å tilordne lytteporten på ruteren" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Del mapper med alle Soulseek-brukere eller kontakter, noe som tillater " #~ "nedlasting direkte fra enheten din. Skjulte filer deles aldri." #~ msgid "Secondary Tabs" #~ msgstr "Sekundærfaner" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Plassering av fanelinje for chatterom:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Plassering av fanelinje for privat chat:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Plassering av søkefanelinje:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Plassering av kategorilinje for brukerinformasjon:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Plassering av fanelinje for bruker bla gjennom:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Tabulatoretiketter" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Refresh informasjon" #~ msgid "Block IP Address" #~ msgstr "Blokker IP-adresse" #~ msgid "Connected" #~ msgstr "Tilkoblet" #~ msgid "Disconnected" #~ msgstr "Frakoblet" #~ msgid "Disconnected (Tray)" #~ msgstr "Frakoblet (systemkurv)" #~ msgid "User(s)" #~ msgstr "Bruker(e)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Aliaset \"%s\" returnerte ingenting" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternative hastighetsgrenser" #~ msgid "Last played" #~ msgstr "Sist spilt" #, fuzzy #~ msgid "Playing now" #~ msgstr "Spiller nå" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Kan ikke lagre filen %(path)s: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Feilkode %(code)s: %(description)s" #, fuzzy, python-format #~ msgid "No such alias (%s)" #~ msgstr "Ikke noe slikt alias (%s)" #, fuzzy #~ msgid "Aliases:" #~ msgstr "Aliaser:" #, fuzzy, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Fjernet alias %(alias)s: %(action)s\n" #, fuzzy, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Ikke noe slikt alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternative hastighetsgrenser" #, fuzzy #~ msgid "Aliases" #~ msgstr "Aliaser" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'kommando' 'definisjon'" #, fuzzy #~ msgid "Add a new alias" #~ msgstr "Legge til et nytt alias" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'kommando'" #, fuzzy #~ msgid "Remove an alias" #~ msgstr "Fjerne et alias" #~ msgid "Chat History" #~ msgstr "Sludrehistorikk" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Fullførte nedlastninger" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Begrens nedlastingshastigheten til (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Forfatter(e):" #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Begrens opplastingshastigheten til (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Ønskelisteelement funnet" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Faner viser brukerstatusikoner i stedet for statustekst" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Aktivere verktøytips for filbaner i søke- og overføringsvisninger" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Fargede og klikkbare brukernavn" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Varsling endrer tekstfargen i kategorien" #~ msgid "Cancel" #~ msgstr "Avbryt" #~ msgid "OK" #~ msgstr "OK" #~ msgid "_Add to Buddy List" #~ msgstr "_Legg til på kontaktliste" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Fjern hver nedlasting som er merket med en bestemt status." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Fjern hver opplasting som er merket med en bestemt status." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "bruk ikke-forvalgt brukerdatamappe, for f.eks. liste over nedlastninger" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Ukjent oppsettsdel «%s»" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Ukjent oppsettsvalg «%(option)s» i delen «%(section)s»" #, python-format #~ msgid "Version %s is available" #~ msgstr "Versjon %s er tilgjengelig" #, python-format #~ msgid "released on %s" #~ msgstr "utgitt %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Kjør i bakgrunnen" #, python-format #~ msgid "Private message from %s" #~ msgstr "Privat melding fra %s" #, fuzzy #~ msgid "Aborted" #~ msgstr "Avbrutt" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Blokkert land" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Fullført/avbrutt" #~ msgid "Close tab" #~ msgstr "Lukk fane" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Du har blitt nevnt i %(room)s-rommet" #, fuzzy, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Kommandoen %s gjenkjennes ikke" #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Advarsel: %(realuser)s prøver å forfalske %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Nettverksgrensesnittet du angav, %s, finnes ikke. Endre eller fjern det " #~ "angitte nettverksgrensesnittet og start Nicotine+ på nytt." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Området du angav for klienttilkoblingsporter, var {}-{}, men ingen av " #~ "disse kunne brukes. Øke og/eller " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Vær oppmerksom på at en del av rekkevidden din ligger under 1024, dette " #~ "er vanligvis ikke tillatt på de fleste operativsystemer med unntak av " #~ "Windows." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Framdrift: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS-feil: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP er ikke tilgjengelig på dette nettverket" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Kan ikke tilordne den eksterne WAN-porten: %(error)s" #~ msgid "Room wall" #~ msgstr "Romvegg" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Standard lytteport '2234' fungerer fint i de fleste tilfeller. Hvis du må " #~ "bruke en annen port, kan du endre den i innstillingene senere." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Vis brukere med lignende interesser" #~ msgid "Menu" #~ msgstr "Meny" #, fuzzy #~ msgid "Expand / Collapse all" #~ msgstr "Vis/skjul alle" #~ msgid "Configure shares" #~ msgstr "Sett opp delinger" #~ msgid "Create or join room…" #~ msgstr "Opprett eller ta del i rom …" #~ msgid "_Room List" #~ msgstr "_Romliste" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Aktiver alternative fartsgrenser for nedlasting og opplasting" #~ msgid "Show log history" #~ msgstr "Vis logghistorikk" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Modus for resultatgruppering" #, fuzzy #~ msgid "Free slot" #~ msgstr "Gratis spor" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Lagre deleliste på disk" #~ msgid "_Away" #~ msgstr "_Borte" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Klarte ikke å laste inn grensesnittsfil %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Prøver å tilbakestille indeksen over delte filer på grunn av en feil. " #~ "Vennligst skann aksjene dine på nytt." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Får ikke tilgang til filindeks for delte filer. Dette kan skje på grunn " #~ "av at flere tilfeller av Nicotine+ er aktive samtidig, " #~ "filtillatelsesproblemer eller et annet problem i Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ er en Soulseek-klient" #~ msgid "enable the tray icon" #~ msgstr "skru på systemkurvsikon" #~ msgid "disable the tray icon" #~ msgstr "skru av systemkurvsikonet" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Skaff Soulseek-privilegier …" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Offentlig IP-adresse er %(ip)s og aktiv lytteport er %(port)s" #~ msgid "unknown" #~ msgstr "ukjent" #~ msgid "Notification" #~ msgstr "Merknad" #~ msgid "Length" #~ msgstr "Lengde" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Bildet er ikke lagret, %s finnes allerede." #~ msgid "_Open" #~ msgstr "_Åpne" #~ msgid "_Save" #~ msgstr "_Lagre" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Finner ikke programtilleggsmodulen «%s»." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O-feil: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Kan ikke åpne filbane: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Kan ikke åpne URL-adresse: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Log samtale" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Filterliste for resultat" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Sett inn < eller > for å finne filer som er mindre/større enn den angitte " #~ "verdien." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-filer viser sin gjennomsnittlige bithastighet og er vanligvis lavere " #~ "i bithastighet enn en komprimert CBR-fil på 320 kbps av samme lydkvalitet." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "I likhet med Størrelse ovenfor kan =, < og > brukes." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Forhindre skrivetilgang fra andre programmer for filer som lastes ned " #~ "(slå av for NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Der ufullstendige nedlastinger lagres midlertidig." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Hvor kameratenes opplastinger lagres (med en undermappe opprettet for " #~ "hver venn)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Slå av status etter minutter med inaktivitet:" #, fuzzy #~ msgid "Protocol:" #~ msgstr "Protokoll:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikontemamappe (krever omstart):" #~ msgid "Establishing connection" #~ msgstr "Kobler til" #~ msgid "Clear Groups" #~ msgstr "Tøm grupper" #, fuzzy #~ msgid "User List" #~ msgstr "Brukerliste" #~ msgid "_Reset Statistics…" #~ msgstr "_Tilbakestill statistikk …" #~ msgid "Clear _Downloads…" #~ msgstr "Tøm _nedlastninger …" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Fjern Uploa_ds…" #~ msgid "Block User's IP Address" #~ msgstr "Blokker brukerens IP-adresse" #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorer brukerens IP-adresse" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Fjern hver nedlasting som er fullført eller blitt fanget opp av et filter." #, fuzzy #~ msgid "Usernames" #~ msgstr "Brukernavn" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "Vise meldinger i loggførte chatterom når et rom blir med igjen" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Fjern hver opplasting som enten er ferdig med overføringen, eller som er " #~ "kansellert av den eksterne brukeren." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Plassering av kø" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Brukeren %(user)s søker direkte etter \"%(query)s\", og returnerer " #~ "%(num)i-resultater" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVAT]" #~ msgid "Room wall (personal message set)" #~ msgstr "Romvegg (personlig melding satt)" #~ msgid "Your config file is corrupt" #~ msgstr "Oppsettsfilen din er skadet" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Beklager, men det ser ut til at oppsettsfilen er skadet. Sett opp " #~ "Nicotine+på nytt.\n" #~ "\n" #~ "Navn på gammel oppsettsfil har blitt endret til\n" #~ "%(corrupt)s\n" #~ "Hvis du åpner denne filen med et tekstredigeringsprogram, kan det hende " #~ "du kan redde noen av innstillingene dine." #, fuzzy #~ msgid "User Description" #~ msgstr "Beskrivelse av bruker" #, fuzzy #~ msgid "User Interests" #~ msgstr "Brukerinteresser" #, fuzzy #~ msgid "User Picture" #~ msgstr "Bilde av bruker" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Tøm ønskeliste?" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Avslutter Nicotine+ %(version)s, %(status)s …" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Bruker Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Avslutter Nicotine+ %(version)s, %(status)s …" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Avslutt Nicotine+ %(version)s, %(status)s." #, fuzzy #~ msgid "User:" #~ msgstr "Bruker:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Alle %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s filer " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Tillat vanlige uttrykk for filterets inkludering og utelate" #, fuzzy #~ msgid "Quit…" #~ msgstr "Avslutt" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Vis forrige primære fane ved oppstart" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Aktiver søkeresultatfiltre som forvalg" #~ msgid "Close Nicotine+?" #~ msgstr "Lukk Nicotine+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Avslutt Nicotine+ nå?" #~ msgid "Run in Background" #~ msgstr "Kjør i bakgrunnen" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online Varsle" #~ msgid "_Prioritize User" #~ msgstr "_Prioriter bruker" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Betrodd" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Forespør IP-adresse" #~ msgid "Request IP Address" #~ msgstr "Forespør IP-adresse" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Skriv inn navnet på brukeren du ønsker å bannlyse:" #~ msgid "Downloaded" #~ msgstr "Nedlastet" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "Kan ikke legge til nedlasting %(filename)s i delte filer: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Dele nedlastinger automatisk" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Det samme gjelder å legge til nedlastingsmappen som en delt ressurs, men " #~ "filer som lastes ned til denne mappen, vil automatisk være tilgjengelige " #~ "for andre (ingen ny skanning kreves)." #~ msgid "Unable to Share Folder" #~ msgstr "Kunne ikke dele mappe" #~ msgid "The chosen virtual name is empty" #~ msgstr "Valgt virtuelt navn er tomt" #~ msgid "The chosen virtual name already exists" #~ msgstr "Valgt virtuelt navn finnes allerede" #~ msgid "The chosen folder is already shared" #~ msgstr "Valgt mappe er allerede delt" #~ msgid "Set Virtual Name" #~ msgstr "Sett virtuelt navn" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Skriv inn virtuelt navn for «%(dir)s»:" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Det valgte virtuelle navnet er enten tomt eller finnes allerede" #~ msgid "The chosen folder is already shared." #~ msgstr "Valgt mappe er allerede delt." #, python-format #~ msgid "%s Properties" #~ msgstr "%s-egenskaper" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Ferdig med å skanne delte venner på nytt" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Liste over plugin-moduler" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Feil under skanning av %(path)s: %(error)s" #~ msgid "Show _Log Pane" #~ msgstr "Vis _loggfane" #~ msgid "Addresses" #~ msgstr "Adresser" #, fuzzy #~ msgid "Handler" #~ msgstr "Heler" #~ msgid "Could not enable plugin." #~ msgstr "Kunne ikke skru på programtillegg." #~ msgid "Could not disable plugin." #~ msgstr "Kunne ikke skru av programtillegg." #~ msgid "Transfers" #~ msgstr "Overføringer" #~ msgid "Ban List" #~ msgstr "Bannlysningsliste" #~ msgid "Ignore List" #~ msgstr "Ignoreringsliste" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Sensurer og erstatt" #, fuzzy #~ msgid "Completion" #~ msgstr "Fullførelse" #~ msgid "Categories" #~ msgstr "Kategorier" #~ msgid "Upload Folder To…" #~ msgstr "Last opp mappe til …" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Last opp mappe rekursivt til …" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Last ned _rekursivt" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Last ned R_ekursivt til …" #~ msgid "Up_load File(s)" #~ msgstr "Last _opp fil(er)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Feil under forsøk på å vise mappen %(folder)s, rapportert feil: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "Velg Destinasjon for nedlasting av mappe med undermapper fra bruker" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Velg Destinasjon for nedlasting av en mappe fra bruker" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Velg Destinasjon for nedlasting av fil(er) fra bruker" #~ msgid "Wishes" #~ msgstr "Ønsker" #, fuzzy #~ msgid "privileged" #~ msgstr "Privilegert" #~ msgid "prioritized" #~ msgstr "prioritert" #~ msgid "Blocked IP Addresses" #~ msgstr "Blokkerte IP-adresser" #~ msgid "Complete buddy names" #~ msgstr "Fullstendige kontaktlistenavn" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Fullstendige brukernavn i sludrerom" #~ msgid "Complete room names" #~ msgstr "Fullstendige romnavn" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Rullegardinliste" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Kommandoen Filbehandling ($ for filbane):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Media Player-kommando ($ for filbane):" #~ msgid "Ignored IP Addresses" #~ msgstr "Ignorerte IP-adresser" #~ msgid "Display timestamps" #~ msgstr "Vis tidsstempler" #~ msgid "Notification Popups" #~ msgstr "Merknadsoppsprett" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Vis hurtigmeny for varsling når nedlastingen av en fil er fullført" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Vis hurtigmeny for varsling når nedlastingen av en mappe er fullført" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Vis popup-vindu for varsling når du mottar en privat melding" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "Vis oppsprettsmerknad når noen sender en melding i et sludrerom" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Vis oppsprettsmerknadsvindu for varsling når du nevnes i et sludrerom" #~ msgid "Tray" #~ msgstr "Systemkurv" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Forekomster av $ vil bli erstattet av koblingen. Standard webleser for " #~ "systemet vil bli brukt i tilfeller der en protokoll ikke er konfigurert." #, fuzzy #~ msgid "Handler:" #~ msgstr "Heler:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Hovedfaner" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Aktivere verktøytips for filbaner i søke- og overføringsvisninger" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Viser den fullstendige filbanen til et søkeresultat eller filoverføring " #~ "når du holder en mappebane eller et mappenavn med markøren." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "Vis personlig delte filer i delte brukerressurser" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Andre klienter kan tilby et alternativ for å sende private delte filer " #~ "når du blar gjennom de delte ressursene deres. Mapper som inneholder " #~ "slike filer, har prefikset [PRIVATE FOLDER], og kan ikke lastes ned med " #~ "mindre opplasteren gir eksplisitt tillatelse." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Sensurer og erstatt" #~ msgid "Show _Debug Log Controls" #~ msgstr "Vis kontroller for _avlusingslogg" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Logging av feilsøking" #~ msgid "Virtual Name" #~ msgstr "Virtuelt navn" #~ msgid "Edit Virtual Name" #~ msgstr "Rediger virtuelt navn" #~ msgid "Copy Folder URL" #~ msgstr "Kopier mappe-nettadresse" #~ msgid "Download _To…" #~ msgstr "Last ned _til …" #~ msgid "Download" #~ msgstr "Last ned" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Last opp innholdet i mappen" #~ msgid "Rename" #~ msgstr "Gi nytt navn" #~ msgid "File Lists" #~ msgstr "Fillister" #~ msgid "Copy File Path" #~ msgstr "Kopier filsti" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "R_emove ønske" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "" #~ "Det ser ut til at %s ikke er en katalog, ikke innlasting av plugins." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Skanner delte venner på nytt…" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Ferdig med å skanne delte venner på nytt" #, fuzzy, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Vennen din, %s, prøver å laste opp fil(er) til deg." #, fuzzy, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s har ikke tillatelse til å sende deg fil(er), men prøver likevel å " #~ "sende deg filer. Advarsel sendt." #~ msgid "Client Version" #~ msgstr "Klientversjon" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Hvor mange dager med rettigheter skal brukeren %s fås?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Venner vil ha høyere prioritet i køen, det samme som globalt privilegerte " #~ "brukere." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegert" #, fuzzy #~ msgid "_Privileged" #~ msgstr "_Privilegiert" #~ msgid "Comments" #~ msgstr "Kommentarer" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Rediger _Comments…" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Oppretter undermapper basert på brukeren du laster ned fra, og lagrer den " #~ "nedlastede filen / mappen der." #~ msgid "Login Details" #~ msgstr "Innloggingsdetaljer" #~ msgid "Advanced" #~ msgstr "Avansert" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Fornyelsesintervall for porttilordning i timer:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Aktiver delte ressurser som bare er for venner" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Filer lastes opp i den rekkefølgen de ble lagt i kø." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Skanner normale delte ressurser på nytt…" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Ferdig med å skanne delte ressurser på nytt" #, fuzzy #~ msgid "Scanning Buddy Shares" #~ msgstr "Skanner delte venner" #~ msgid "_Rescan Public Shares" #~ msgstr "Skann _offentlige delinger på ny" #~ msgid "Rescan B_uddy Shares" #~ msgstr "Skann _kontaktdelinger på ny" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Skann offentlige aksjer på nytt" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Skann buddy-ressurser på nytt" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Aktiverer delte venner som bare brukere på vennelisten har tilgang til." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Merke hver delte mappe som bare for venner" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Overstyrer alternativet per aksje, nyttig hvis du midlertidig trenger å " #~ "hindre offentlig tilgang til delte ressurser." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Bare brukere som er merket som klarerte i vennelisten din, har tilgang " #~ "til de delte venneressursene dine." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Filtrert ut utelatt søkeresultat " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtrert ut uaktsomt eller feil søkeresultat " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Den lagrede innstillingen %(key)s finnes ikke lenger i plugin-modulen " #~ "%(name)s" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "Plugin %(module)s returnerte noe rart, '%(value)s', ignorerer" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Inkonsekvent hurtigbuffer for %(vdir)s, gjenoppbygging av %(dir)s'" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Sletter manglende mappe %(dir)s" #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nikotin+ lar deg dele mapper direkte fra datamaskinen din. Alt innholdet " #~ "i disse mappene (med unntak av dotfiles) kan lastes ned av andre brukere " #~ "på Soulseek-nettverket. Delte ressurser er tilgjengelige for alle " #~ "brukere, mens brukere i vennelisten har tilgang til delte venner i " #~ "tillegg til delte ressurser." #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Klarte ikke å skanne delinger. Hvis Nicotine+ kjører må du lukke " #~ "programmet før skanning." #~ msgid "Receive a User's IP Address" #~ msgstr "Motta en brukers IP-adresse" nicotine-plus-3.3.4/po/nicotine.pot000066400000000000000000004154201461625273200173020ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "" #: pynicotine/__init__.py:59 msgid "file" msgstr "" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "" #: pynicotine/__init__.py:63 msgid "dir" msgstr "" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "" #: pynicotine/__init__.py:71 msgid "ip" msgstr "" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "" #: pynicotine/__init__.py:75 msgid "port" msgstr "" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "" #: pynicotine/core.py:237 msgid "terminating" msgstr "" #: pynicotine/core.py:237 msgid "application closing" msgstr "" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "" #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "" #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "" #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "" nicotine-plus-3.3.4/po/nl.po000066400000000000000000010010731461625273200157130ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek client" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafische client voor het Soulseek peer-to-peer netwerk" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;delen;chatten;berichten;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Verken het Soulseek-netwerk" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "" "Nicotine+ is een grafische client voor het Soulseek peer-to-peer netwerk." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ wil een lichtgewicht aangename, gratis en open source (FOSS) " "alternatief zijn voor de officiële Soulseek-client, met een logische set " "features." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Bestanden zoeken" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Downloads" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Shares verkennen" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Privéchat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ team" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Website: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "toon dit hulpbericht en sluit af" #: pynicotine/__init__.py:59 msgid "file" msgstr "bestand" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "gebruik niet-standaard configuratiebestand" #: pynicotine/__init__.py:63 msgid "dir" msgstr "map" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "alternatieve map voor gebruikersgegevens en plugins" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "start het programma zonder venster weer te geven" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "sockets verbinden aan het opgegeven IP (nuttig voor VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "poort" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "op de gegeven poort luisteren" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "gedeelde bestanden opnieuw scannen" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "start het programma in headless modus (zonder GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "versie weergeven en afsluiten" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Je gebruikt een niet-ondersteunde versie van Python (%(old_version)s).\n" "Installeer Python %(min_version)s of nieuwer." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Scannen van shares mislukt. Sluit andere Nicotine+ instanties en probeer " "opnieuw." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s is afwezig" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s is aanwezig" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s is offline" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Vriendstatus" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Je bent toegevoegd aan een privékamer: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Chatbericht van gebruiker '%(user)s' in kamer '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Kan map '%(path)s' niet aanmaken, gerapporteerde fout: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Fout bij het back-uppen van de configuratie: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configuratie geback-upt naar: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Bezig met laden van %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "%(program)s %(version)s, %(status)s afsluiten…" #: pynicotine/core.py:237 msgid "terminating" msgstr "aan het afsluiten" #: pynicotine/core.py:237 msgid "application closing" msgstr "applicatie aan het sluiten" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Stop %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Je moet een gebruikersnaam en wachtwoord opgeven voordat je verbindt…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Fout: Downloadfilter mislukt! Controleer je filters. Reden: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Fout: %(num)d Downloadfilters mislukt! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s gedownload van %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Bestand gedownload" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Uitgevoerd: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Uitvoeren van '%(command)s' mislukt: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s gedownload van %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Map gedownload" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Uitgevoerd op map: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Kon '%(tempfile)s' niet naar '%(file)s' verplaatsen: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Map downloaden fout" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Download voltooid: gebruiker %(user)s, bestand %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Download afgebroken, gebruiker %(user)s bestand %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Download I/O-fout: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Kan geen exclusief slot op bestand krijgen - I/O-fout: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Kan bestand niet opslaan in %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Download gestart: gebruiker %(user)s, bestand %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Kan %s niet vinden, installeer het alsjeblieft." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Geen grafische omgeving beschikbaar, headless modus (geen GUI) wordt gebruikt" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Verbinden" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Verbinding verbreken" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Soulseek-privileges" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Voorkeuren" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Afsluiten" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "_Openbare shares verkennen" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "_Vriendenshares verkennen" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "_Vertrouwde shares verkennen" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Shares opnieuw scannen" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "_Shares configureren" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Sneltoetsen" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Installatie-assistent" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Overdrachtstatistieken" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Meld een _bug" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Verbeter v_ertaling" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Over Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Bestand" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Shares" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Help" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Shares verkennen" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Kan melding niet weergeven: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Je bent nog aan het uploaden. Wil je echt afsluiten?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Wachten tot het uploaden is voltooid" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Wil je echt afsluiten?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Nee" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Uitvoeren op achtergrond" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Nicotine+ afsluiten" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Shares niet beschikbaar" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Controleer of externe schijven zijn aangesloten en of de maprechten correct " "zijn." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Annuleren" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Opnieuw proberen" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Forceer opnieuw scannen" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Ongeldig wachtwoord" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Gebruiker %s bestaat al, en het wachtwoord dat je hebt ingevoerd is " "ongeldig. Kies een andere gebruikersnaam, als dit de eerste keer is dat je " "inlogt." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Wijzig _inloggegevens" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Gebruikers die downloaden een bericht sturen" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "Stuur een privébericht naar alle gebruikers die van je downloaden:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Bericht sturen" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Vrienden bericht sturen" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Stuur privébericht naar alle online vrienden:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Selecteer een opgeslagen Shares-lijstbestand" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kritieke fout" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ is op een kritieke fout gestuit en moet worden afgesloten. Kopieer " "het volgende bericht en voeg het toe aan een bugrapport:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Nicotine+ afsluiten" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Kopiëren & bug rapporteren" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Land" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Gebruiker" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Snelheid" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Bestanden" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Vertrouwd" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Melden" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Geprioriteerd" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Laatst gezien" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Notitie" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "_Gebruikersnotitie toevoegen…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Verwijderen" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nooit gezien" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Gebruikersnotitie toevoegen" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Voeg een notitie toe over gebruiker %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Toevoegen" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Nieuwe ruimte creëren?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Wil je echt een nieuwe kamer \"%s\" aanmaken?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Kamer privé maken" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Gebruikersbestanden doorzoeken" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Vinden…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopiëren" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Alles kopiëren" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Activiteitenweergave wissen" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Kamer verlaten" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Link kopiëren" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Kamerlog bekijken" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Vamerlog verwijderen…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Berichtweergave wissen" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s is de kamer binnengekomen" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s heeft je genoemd in kamer %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Vermeld door %(user)s in kamer %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Bericht van %(user)s in kamer %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s heeft de kamer verlaten" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s is weggegaan" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s is terug" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Gelogde berichten verwijderen?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Wil je echt alle gelogde berichten voor deze kamer permanent verwijderen?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Over" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Website" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Fout bij het controleren van de nieuwste versie: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Nieuwe versie beschikbaar: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Actueel" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Laatste versie controleren…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Installatie-assistent" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Virtuele map" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Map" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Voltooien" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Volgende" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Een share toevoegen" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Gedeelde map bewerken" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Voer een nieuwe virtuele naam in voor '%(dir)s’:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Bewerken" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Bestandseigenschappen" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Bestandseigenschappen (%(num)i van %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Bestandseigenschappen (%(num)i van %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Toepassen" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Toevoegen…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Bewerken…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s instellingen" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Item toevoegen" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Item bewerken" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Onbekend" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Poortstatus controleren" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, poort %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Wachtwoordwijziging afgewezen" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Voer een nieuw wachtwoord in voor je Soulseek-account:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Je bent momenteel uitgelogd van het Soulseek-netwerk. Als je het wachtwoord " "van een bestaand Soulseek-account wilt wijzigen, moet je ingelogd zijn op " "dat account." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Voer wachtwoord in om te gebruiken bij het inloggen:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Wachtwoord veranderen" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Veranderen" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Niemand" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Iedereen" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Vrienden" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Vertrouwde vrienden" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Niks" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Open bestand" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Open in bestandsbeheer" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Zoeken" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pauzeren" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Hervatten" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Map verkennen" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntax: Niet hoofdlettergevoelig. Als dit ingeschakeld is, kunnen " "Python reguliere expressies gebruikt worden, anders worden alleen " "jokertekens * ondersteund." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filter" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Voeg een downloadfilter toe" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Voer een nieuw downloadfilter in:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Reguliere expressies inschakelen" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Downloadfilter bewerken" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Pas het volgende downloadfilter aan:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d mislukt! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filters succesvol" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Openbaar" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Toegankelijk voor" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Afbreken" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Opnieuw proberen" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round-Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "FIFO (First In, First Out)" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Gebruikersnaam" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP-adres" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Gebruiker negeren" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Voer de naam in van de gebruiker die je wilt negeren:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "IP-adres negeren" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Voer het IP-adres in dat je wilt negeren:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* is een jokerteken" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Gebruiker verbannen" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Voer de naam in van de gebruiker die je wilt verbannen:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "IP-adres verbannen" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Voer het IP-adres in dat je wilt blokkeren:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Format codes" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Patroon" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Vervanging" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Censuur-patroon" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Voer een patroon in dat je wilt censureren. Voeg spaties toe rond het " "patroon als je niet wilt dat strings binnen woorden overeenkomen (kan " "mislukken aan het begin en einde van regels)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Gecensureerd patroon bewerken" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Vervanging toevoegen" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Voer een tekstpatroon in en waarmee je het wilt vervangen:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Vervanging bewerken" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Systeemstandaard" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Bevestigingsvenster weergeven" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Op de achtergrond uitvoeren" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "vetgedrukt" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "schuingedrukt" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "onderstrepen" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normaal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Vrienden-tab loskoppelen" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Zijbalk in chatkamers-tab" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Altijd zichtbare zijbalk" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Boven" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Onder" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Links" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Rechts" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Afwezig" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Afgemeld" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Tab veranderd" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Tab markering" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Venster" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Online (taakbalk)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Afwezig (taakbalk)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Offline (taakbalk)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Bericht (taakbalk)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Commando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "URL-handler toevoegen" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Voer het protocol en de commando in voor de URL-handler:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Commando bewerken" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Voer een nieuw commando in voor protocol %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Gebruikersnaam;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Muziekspeler (bijv. amarok, audacious, exaile); laat leeg om automatisch te " "detecteren:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Gebruikersnaam: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Commando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Titel" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Nu aan het afspelen (meestal \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artiest" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Duur" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Opmerking" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Tracknummer" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Jaar" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Bestandsnaam (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programma" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Ingeschakeld" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Geen plugin geselecteerd" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Netwerk" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Uiterlijk" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Shares" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Uploads" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Zoekopdrachten" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Gebruikersprofiel" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Chats" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Nu aan het afspelen" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Loggen" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Verbande gebruikers" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Genegeerde gebruikers" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Plugins" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL-handlers" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Voorkeuren" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Kies een bestandsnaam voor de configuratieback-up" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Overdrachtstatistieken" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Totaal sinds %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Overdrachtstatistieken wissen?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Wil je echt de overdrachtstatistieken resetten?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Verlanglijst" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Wens" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Zoeken naar item" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Wens bewerken" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Voer nieuwe waarde in voor wens '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Verlanglijst wissen?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Wil je echt je verlanglijst wissen?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Pad" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Hervatten" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_auzeren" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Voltooid / Gefilterd" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Voltooid" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Gepauzeerd" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Gefilterd" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Verwijderd" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "In wachtrij…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Alles…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Downloads in wachtrij wissen" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Wil je echt alle downloads in de wachtrij wissen?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Alle downloads wissen" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Wil je echt alle downloads wissen?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "%(num)i bestanden downloaden?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Wil je echt %(num)i bestanden downloaden uit de map %(folder)s van %(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Map downloaden" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Leuk" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Niet leuk" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Score" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Onderwerp" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Aanbevelingen voor onderwerp" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Vind ik _leuk" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Vind ik _niet leuk" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Aanbevelingen" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Vergelijkbare gebruikers" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Aanbevelingen (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Vergelijkbare gebruikers (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Privébericht van %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Verlanglijst resultaten gevonden" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Gebruikersprofielen" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Chatkamers" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interesses" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debug] Verbindingen" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debug] Berichten" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Overdrachten" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Diversen" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Vinden…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopiëren" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "_Alles kopiëren" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "_Debug logs bekijken" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "_Overdracht logs bekijken" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Categorieën loggen" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Logweergave wissen" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Downloads: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Uploads: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Shares aan het voorbereiden" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Shares aan het scannen" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Stoppen..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Laatste bericht" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Kamer" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Gebruikers" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Kamer binnengaan" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Kamer verlaten" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Geef beheer van privékamer op" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Kamerlidmaatschap annuleren" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Alle tabs sluiten…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Tab sluiten" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Chatlog bekijken" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Chatlog verwijderen…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Gebruikersacties" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Wil je echt alle gelogde berichten voor deze gebruiker permanent verwijderen?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Berichten verzonden terwijl je offline was" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Globaal" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Vrienden" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Kamers" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Gebruiker" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "In de wachtrij" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Bestandstype" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Bestandsnaam" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Grootte" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Kwaliteit" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "_Bestandspad kopiëren" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "_URL kopiëren" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "_Map-URL kopiëren" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Bestand(en) downloaden" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Bestand(en) _downloaden naar…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "_Map(pen) downloaden" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Map(pen) _downloaden naar…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "_Gebruikersprofiel bekijken" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Map verkennen" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "_Bestandseigenschappen" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Zoekterm kopiëren" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Alle resultaten wissen" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Filters wissen" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Filters herstellen" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVÉ] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Resultaatfilters [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Resultaatfilters" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d actieve filter(s)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Wens _toevoegen" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Wens _verwijderen" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Resultaten gebruiker selecteren" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Totaal: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Resultaten" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Doelmap selecteren voor bestand(en)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Doelmap selecteren" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "In wachtrij" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "In wachtrij (geprioriteerd)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "In wachtrij (geprivilegieerd)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Status opvragen" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Overbrengen" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Verbinding gesloten" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Verbinding time-out" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Gebruiker afgemeld" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Geannuleerd" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Fout in downloadmap" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Lokale bestandsfout" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Verbannen" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Bestand niet gedeeld" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "In afwachting van afsluiten" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Fout bij het lezen van het bestand" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Wachtrij" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Procent" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Verstreken tijd" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Resterende tijd" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Bestand openen" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "In bestandsbeheer openen" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Zoeken" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Alles wissen" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Gebruikersoverdrachten selecteren" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Afbreken" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Voltooid / Geannuleerd / Mislukt" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Voltooid / Geannuleerd" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Mislukt" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Gebruiker is afgemeld" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Uploads in wachtrij wissen" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Wil je echt alle uploads in de wachtrij wissen?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Alle uploads wissen" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Wil je echt alle uploads wissen?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Shares-lijst opslaan naar schijf" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Map & submappen uploaden…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "_Map pad kopiëren" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Map & submappen downloaden" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Map & submappen downloaden_naar…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Bestandsnaam" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Bestand(en) _uploaden…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Map uploaden…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Map downloaden naar…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "De lijst met gedeelde bestanden van de gebruiker is leeg. Of de gebruiker " "deelt niets, of ze delen bestanden privé." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Kan geen gedeelde bestanden opvragen van gebruiker. Of de gebruiker is " "offline, de luisterpoorten zijn aan beide kanten gesloten, of er is een " "tijdelijk verbindingsprobleem." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Selecteer bestemming voor het downloaden van meerdere mappen" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Map (met submappen) uploaden naar gebruiker" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Map uploaden naar gebruiker" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Voer de naam in van de gebruiker waarnaar je wilt uploaden:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Uploaden" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Selecteer doelmap voor bestanden" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Bestand(en) uploaden naar gebruiker" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Afbeelding kopiëren" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Afbeelding opslaan" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Kan afbeelding voor gebruiker %(user)s niet laden: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Kan geen informatie van gebruiker opvragen. Jullie hebben allebei een " "gesloten luisterpoort, of de gebruiker is offline, of is er een tijdelijk " "verbindingsprobleem." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Vriend _verwijderen" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Vriend _toevoegen" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Gebruiker niet-verbannen" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Gebruiker niet-negeren" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Ja" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nee" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Voer het aantal dagen in." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Geef dagen van je Soulseek-privileges cadeau aan gebruiker %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s dagen over" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Privileges geven" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Privileges geven" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Sluiten" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Ja" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_Oké" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Selecteer een bestand" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Selecteer een map" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Selecteren" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Selecteer een afbeelding" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Alle afbeeldingen" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Opslaan als…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Geen)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Tab sluiten" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Alle tabs sluiten?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Wil je echt alle tabs sluiten?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i ongelezen tab(s)" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Alle tabs" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "_Gesloten tab opnieuw openen" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s bestand(en) geselecteerd" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Bestanden verkennen" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "Vriend _toevoegen" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "_IP-adres weergeven" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Privékamers" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Uit privékamer %s verwijderen" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Aan privékamer %s toevoegen" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Als operator van %s verwijderen" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Als operator van %s toevoegen" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- oude berichten hierboven ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Uitvoerbaar" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Afbeelding" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archief" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Diversen" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Document" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Tekst" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Fout bij het laden van aangepast pictogram %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Nicotine+ verbergen" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Nicotine+ weergeven" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Kolom #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Ongegroepeerd" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Groeperen per map" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Groeperen per gebruiker" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Wil je echt afsluiten? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Gebruiker %s bestaat al, en het wachtwoord dat je hebt ingevoerd is ongeldig." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Typ %s om in te loggen met een andere gebruikersnaam of wachtwoord." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Wachtwoord: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Om een nieuw Soulseek-account aan te maken, vul je gewenste gebruikersnaam " "en wachtwoord in. Als je al een account hebt, vul dan je bestaande " "inloggegevens in." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "De volgende shares zijn niet beschikbaar:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Opnieuw scannen proberen? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Kon niet naar logbestand \"%(filename)s\" schrijven : %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Kan logbestand %(path)s niet openen: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Verenigde Arabische Emiraten" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua en Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albanië" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenië" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarctica" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentinië" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Amerikaans Samoa" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Oostenrijk" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australië" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Åland eilanden" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbeidzjan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosnië en Herzegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "België" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgarije" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrein" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Sint-Bartholomeus" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius en Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brazilië" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Bouvet Eiland" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Wit-Rusland" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Cocoseilanden" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Democratische Republiek van Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Centraal-Afrikaanse Republiek" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Zwitserland" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Ivoorkust" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Cookeilanden" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chili" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kameroen" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Kaapverdië" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Kersteiland" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Cyprus" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Tsjechië" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Duitsland" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Denemarken" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominicaanse Republiek" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algerije" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estland" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egypte" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Westelijke Sahara" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spanje" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Ethiopië" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finland" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Falklandeilanden (Malvinas)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Micronesië" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Faeröer Eilanden" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Frankrijk" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Groot-Brittannië" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Georgië" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Frans-Guyana" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groenland" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinee" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Equatoriaal-Guinea" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Griekenland" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Zuid-Georgië & de Zuidelijke Sandwicheilanden" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guinee-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Heard- en McDonaldeilanden" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Kroatië" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haïti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hongarije" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonesië" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Ierland" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israël" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Isle of Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Brits Indische Oceaanterritorium" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "IJsland" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italië" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordanië" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japan" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirgizië" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Cambodja" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comoren" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts en Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Noord-Korea" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Zuid-Korea" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Koeweit" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Kaaimaneilanden" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazachstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Sint Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Litouwen" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letland" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libië" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marokko" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldavië" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Sint-Maarten" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Marshall eilanden" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Noord-Macedonië" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolië" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Noordelijke Marianen" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritanië" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldiven" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Mexico" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Maleisië" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambique" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibië" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nieuw Caledonië" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Norfolk Eiland" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Nederland" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Noorwegen" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nieuw Zeeland" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Pamama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Frans Polynesië" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papoea Nieuw Guinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filippijnen" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polen" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre en Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Roemenië" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Servië" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rusland" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Saoedi-Arabië" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Solomon eilanden" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seychellen" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Soedan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Zweden" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Sint Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slovenië" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard en Jan Mayen-eilanden" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Slowakije" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalië" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Zuid Soedan" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Sao Tomé en Principe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Syrië" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Turks- en Caicoseilanden" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Tsjaad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Franse zuidelijke gebieden" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Thailand" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadzjikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Oost-Timor" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunesië" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turkije" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad en Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Oekraïne" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Oeganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Amerikaanse kleine afgelegen eilanden" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Verenigde Staten" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Oezbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Heilige Stoel (Vaticaanstad)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent en de Grenadines" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Britse Maagdeneilanden" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "V.S. Maagdeneilanden" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis en Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Zuid-Afrika" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Tekst-naar-spraak voor bericht mislukt: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Geef zowel je Last.fm gebruikersnaam als API-sleutel op" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "'Nu aan het afspelen' fout" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Kon niet verbinden met Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Kon recent nummer niet ophalen van Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: kon geen geschikte MPRIS-speler vinden" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Meerdere MPRIS-spelers gevonden: %(players)s. Gebruik: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatisch gedetecteerde MPRIS-speler: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" "MPRIS: Er is iets misgegaan bij het opvragen van %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: vul je ListenBrainz gebruikersnaam in" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Kon geen verbinding maken met ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Het lijkt erop dat je nu niets aan het luisteren bent" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Kon het huidige nummer niet ophalen van ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Netwerkfilters" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Beschikbare commando's" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Met server verbinden" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Serververbinding verbreken" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Aanwezig/afwezig omschakelen" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Plugins beheren" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Chatvenster wissen" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Zeg iets in de derde persoon" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Kondig het nummer aan dat nu afspeelt" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Chatkamer binnengaan" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Chatkamer verlaten" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Zeg bericht in de opgegeven chatruimte" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Privéchat openen" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Privéchat sluiten" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "De clientversie van de gebruiker opvragen" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Stuur privébericht naar gebruiker" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Gebruiker toevoegen aan vriendenlijst" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Verwijder vriend uit vriendenlijst" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Verken bestanden van gebruiker" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Gebruikersinformatie weergeven" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "IP-adres of gebruikersnaam weergeven" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Verbindingen blokkeren van gebruiker of IP-adres" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Verwijder gebruiker of IP-adres uit de banlijsten" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Berichten van gebruiker of IP-adres negeren" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Verwijder gebruiker of IP-adres uit negeerlijsten" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Share toevoegen" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Verwijder share" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Shares weergeven" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Shares opnieuw scannen" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Globaal naar bestanden zoeken" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Bestanden zoeken in deelnemende kamers" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Bestanden zoeken van alle vrienden" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Gedeelde bestanden zoeken van gebruiker" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "%(num)i beschikbare commando's tonen:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "%(num)i beschikbare commando's tonen die overeenkomen met \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Typ %(command)s om vergelijkbare commando's te zien" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Typ %(command)s om de beschikbare commando's te zien" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Niet in de kamer %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Niet met gebruiker %s aan het chatten" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Privéchat met gebruiker %s gesloten" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "%s verbannen" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "%s niet-verbannen" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "%s genegeerd" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s niet-genegeerd" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s Shares weergegeven (%(num_total)s geconfigureerd)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Kan ontoegankelijke map \"%s\" niet delen" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "Share %(group_name)s toegevoegd \"%(virtual_name)s\" (herscan nodig)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Geen share met de naam \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Share \"%s\" verwijderd (opnieuw scannen vereist)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Bezig met laden van plugin systeem" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Kan plugin %(name)s niet laden. Mapnaam van de plugin bevat ongeldige " "tekens: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Conflicterend %(interface)s commando in plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Plugin %s geladen" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Kan plugin %(module)s niet laden\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Plugin %s uitgeschakeld" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Kan plugin %(module)s niet ontladen\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s is mislukt met fout %(errortype)s: %(error)s\n" "Trace: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Geen beschrijving" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Ontbrekend argument %s" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Ongeldig argument, mogelijke keuzes: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Gebruik: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Onbekend commando: %(command)s. Typ %(help_command)s om de beschikbare " "commando's te zien." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Geen UPnP-apparaten gevonden" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Externe poort doorsturen mislukt %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Externe poort %(external_port)s succesvol doorgestuurd naar " "lokaal IP-adres %(ip_address)s poort %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privébericht van gebruiker '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Zoeken naar verlanglijst-item \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Wachttijd voor verlanglijst ingesteld op %s seconden" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Gebruiker %(user)s zoekt naar \"%(query)s\", %(num)i resultaten gevonden" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Shares opnieuw bouwen…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Shares opnieuw scannen…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Opnieuw scannen voltooid: %(num)s mappen gevonden" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Ernstige fout opgetreden tijdens het opnieuw scannen van shares. Als dit " "probleem aanhoudt, verwijder %(dir)s/*.dbn en probeer opnieuw. Als dat niet " "helpt, dien dan een bugrapport in met deze stacktrace erbij: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Fout tijdens het scannen van bestand %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Fout tijdens het scannen van map %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Fout tijdens het scannen van metadata voor bestand %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Opnieuw scannen afgebroken vanwege niet beschikbare shares: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Gebruiker %(user)s bekijkt jouw lijst van gedeelde bestanden" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Kan de gedeelde map %(folder)s niet ophalen: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "Kan de shares-database niet lezen. Scan je shares opnieuw. Fout: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Opgegeven netwerkinterface '%s' is niet beschikbaar" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Kan niet luisteren op poort %(port)s. Zorg ervoor dat geen andere applicatie " "het gebruikt, of kies een andere poort. Fout: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Luistert op poort %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Kan geen verbinding maken met server %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Opnieuw verbinden met de server over %i seconden" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Bezig met verbinden met: %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Verbonden met server %(host)s:%(port)s, bezig met inloggen…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Verbinding met server verbroken %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Iemand heeft elders ingelogd op je Soulseek-account" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Upload voltooid: gebruiker %(user)s, IP-adres %(ip)s, bestand %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Upload afgebroken, gebruiker %(user)s bestand %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Upload I/O-fout: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Upload gestart: gebruiker %(user)s, IP-adres %(ip)s, bestand %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Kan map '%(folder)s' niet aanmaken, fout: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Laden van Shares van schijf mislukt: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Opgeslagen lijst van gedeelde bestanden voor gebruiker '%(user)s' naar " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Kan shares niet opslaan, '%(user)s', fout: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Foto opgeslagen in %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Kan afbeelding niet opslaan op %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Gebruiker %(user)s bekijkt je profiel" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Kan geen verbinding maken met de server. Reden: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Kan niet verbinden" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Kan IP van gebruiker %s niet opvragen, omdat deze gebruiker offline is" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP-adres van gebruiker %(user)s: %(ip)s, poort %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseek aankondiging" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i gebruikers met privileges" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Je hebt geen Soulseek-privileges. Zolang privileges actief zijn, worden je " "downloads voorrang gegeven boven die van niet-geprivilegieerde gebruikers." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dagen, %(hours)i uur, %(minutes)i minuten, %(seconds)i seconden " "Soulseek-privileges resterend" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Je wachtwoord is gewijzigd" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Wachtwoord gewijzigd" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Kan bestandspad niet openen %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Kan URL %(url)s niet openen: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Er is iets misgegaan bij het lezen van bestand %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Poging om back-up van bestand %s te laden" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Kan bestand %(path)s niet back-uppen: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Kan bestand %(path)s niet opslaan: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Kan vorige bestand niet herstellen %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Vriend toevoegen…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Activiteitenlog zoeken…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Chatlog zoeken…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Bericht versturen…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Tekst-naar-spraak togglen" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Chatkamer commando-help" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Log" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Kamermuur" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "_Kamermuur" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Gemaakt door" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Vertaald door" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licentie" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Vorige" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Welkom bij Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Instellen…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Als de gebruikersnaam die je wilt al in gebruik is, word je gevraagd deze te " "wijzigen." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Om verbinding te maken met andere Soulseek-peers, moet een luisterpoort op " "je router doorgestuurd worden naar je computer." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Als je luisterpoort gesloten is, kun je alleen verbinden met gebruikers " "wiens luisterpoorten open zijn." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Kies indien nodig een andere luisterpoort. Dit kun je ook later in de " "voorkeuren doen." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Bestanden downloaden naar map" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Mappen delen" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-gebruikers kunnen downloaden uit jouw Shares. Draag bij aan het " "Soulseek-netwerk door je eigen bestanden te delen en door opnieuw te delen " "wat je van andere gebruikers hebt gedownload." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Nicotine+ is klaar voor gebruik!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek is een ongecodeerd protocol dat niet bedoeld is voor veilige " "communicatie." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Doneren aan Soulseek geeft je privileges voor een bepaalde tijd. Zolang je " "privileges hebt, krijgen jouw downloads voorrang." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Vorige bestand" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Volgende bestand" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Naam" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Laatste snelheid" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exporteren…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Sneltoetsen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Algemeen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Verbinden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Verbinding verbreken" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Shares opnieuw scannen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Logpaneel weergeven" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Afsluiten bevestigen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Afsluiten" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menu's" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Hoofdmenu openen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Contextmenu openen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Tabs" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Hoofd-tab wijzigen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Ga naar vorige secundaire tab" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Ga naar volgende secundaire tab" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Secundaire tab opnieuw openen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Secundaire tab sluiten" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Lijsten" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Geselecteerde cel kopiëren" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Geselecteerde rij verwijderen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Bewerken" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Knippen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Plakken" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Emoji invoegen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Alles selecteren" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Vinden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Volgende overeenkomst vinden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Vorige overeenkomst vinden" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Bestandsoverdrachten" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Overdracht hervatten / opnieuw proberen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Overdracht pauzeren / afbreken" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Downloaden / Uploaden naar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Lijst opslaan naar schijf" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Verversen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Alles uitvouwen / samenvouwen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Terug naar bovenliggende map" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Bestand zoeken" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Resultaatfilters" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Huidige sessie" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Voltooide downloads" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Gedownloade grootte" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Voltooide uploads" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Geüploade grootte" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Totaal" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Resetten…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Verlanglijst-items worden automatisch met regelmatige tussenpozen gezocht om " "ongebruikelijke bestanden te ontdekken." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Wens toevoegen…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Alles wissen…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Alle voltooide/gefilterde downloads wissen" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Voltooide wissen" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Specifieke downloads wissen" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "_Alles wissen…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Interesses" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Voeg iets toe dat je wel leuk vindt…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Niet leuk" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Voeg iets toe wat je niet leuk vindt…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Aanbevelingen verversen" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Hoofdmenu" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Kamer…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Gebruikersnaam…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Zoekterm…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Zoekpatronen: met een woord = term, zonder een woord = -term, gedeeltelijk " "woord = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Zoekbereik" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Verlanglijst" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Zoekopdrachten configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Voer een zoekterm in om te zoeken naar bestanden die door andere gebruikers " "op het Soulseek-netwerk zijn gedeeld" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Bestandsgroepering modus" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Downloads configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Bestanden die je van andere gebruikers downloadt, worden hier in de wachtrij " "gezet en kunnen naar wens worden gepauzeerd en hervat" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Uploads configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Aanvragen van gebruikers om jouw gedeelde bestanden te downloaden worden " "hier in de wachtrij gezet en beheerd" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Lijst openen" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Opent een lokale lijst van gedeelde bestanden die eerder naar een schijf was " "opgeslagen" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Shares configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Voer de naam in van een gebruiker wiens gedeelde bestanden je wilt " "verkennen. Je kan de lijst ook opslaan naar een schijf en later inspecteren." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Persoonlijk profiel" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Account configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Voer de naam van een gebruiker in om hun gebruikersbeschrijving, informatie " "en persoonlijke foto te bekijken" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Chatgeschiedenis" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Chats configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Voer de naam van een gebruiker in om een privéchat met hen te starten" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Allen bericht sturen" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Genegeerde gebruikers configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Voeg gebruikers toe als vrienden om specifieke mappen met hen te delen en " "ontvang meldingen wanneer ze online zijn" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Kamer binnengaan of maken…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Betreed een bestaande chatkamer, of maak een nieuwe kamer om te chatten met " "andere gebruikers op het Soulseek-netwerk" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Gebruikersprofiel configureren" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Log zoeken…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Verbindingen" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Downloaden (Snelheid / Actieve gebruikers)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Uploaden (Snelheid / Actieve gebruikers)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Chatgeschiedenis zoeken…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Download snelheidslimieten" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Onbeperkte downloadsnelheid" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Download snelheidslimiet (KiB/s) gebruiken:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternatieve download snelheidslimiet (KiB/s) gebruiken:" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Chatkamers zoeken…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Kamers vernieuwen" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Feed van openbare chatkamer berichten weergeven" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Uitnodigingen voor privékamers accepteren" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Schrijf een enkel bericht dat andere kamergebruikers later kunnen lezen. " "Recente berichten worden bovenaan weergegeven." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Prikbordbericht instellen…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Zoekresultaatfilters" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Zoekresultaatfilters worden gebruikt om te verfijnen welke zoekresultaten " "worden weergegeven." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Elke lijst met zoekresultaten heeft zijn eigen filter die zichtbaar gemaakt " "kan worden door op de resultaatfilters-knop te klikken. Een filter bestaat " "uit meerdere velden, die allemaal worden toegepast wanneer je Enter drukt in " "een van de velden. Het filteren wordt direct toegepast op de al ontvangen " "resultaten, en ook op de resultaten die nog moeten binnenkomen." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Zoals de naam al doet vermoeden, kan een zoekresultatenfilter je " "oorspronkelijke zoekopdracht niet uitbreiden, het kan deze alleen verfijnen. " "Om je zoektermen te verbreden of te wijzigen, voer je een nieuwe " "zoekopdracht uit." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Resultaatfilter gebruik" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Tekst opnemen" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Bestanden, mappen en gebruikersnamen die deze tekst bevatten, worden " "weergegeven." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Hoofdlettergebruik is niet belangrijk, maar de volgorde van woorden wel: " "'Instrumental Remix' zal geen 'Remix Instrumental' weergeven" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Gebruik | (of pijp) om verschillende exacte zinnen van elkaar te scheiden. " "Voorbeeld:\n" " Remix|Dubmix|Instrumentaal" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Tekst uitsluiten" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Zoals hierboven, maar bestanden, mappen en gebruikersnamen worden gefilterd " "als de tekst overeenkomt." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtert bestanden op basis van hun bestandsextensie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Meerdere bestandsextensies kunnen worden opgegeven, wat op zijn beurt meer " "zal onthullen uit de lijst met resultaten. Voorbeeld:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Het is ook mogelijk om het filter om te keren, door bestandsextensies die je " "niet in de resultaten wilt hebben te specificeren met een uitroepteken. " "Voorbeeld:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Bestandsgrootte" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtert bestanden op basis van hun bestandsgrootte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Standaard is de gebruikte eenheid bytes (B) en bestanden groter dan of " "gelijk aan (>=) de waarde zullen overeenkomen." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Voeg b, k, m of g toe (alternatief kib, mib of gib) om byte, kibibyte, " "mebibyte of gibibyte eenheden te specificeren:\n" " 20m om bestanden groter dan 20 MiB (mebibytes) weer te geven." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Voeg = toe aan een waarde om een exacte overeenkomst te specificeren:\n" " =1024 komt overeen met bestanden die precies 1 KiB (kibibyte) zijn." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Voeg ! toe aan een waarde om bestanden van een specifieke grootte uit te " "sluiten:\n" " !30.5m om bestanden die 30.5 MiB (mebibytes) zijn te verbergen." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Voeg < of > toe om bestanden te vinden die kleiner/groter zijn dan de " "gegeven waarde. Gebruik een spatie tussen elke voorwaarde om een bereik op " "te nemen:\n" " >10.5m <1g om bestanden weer te geven die groter zijn dan 10,5 MiB, maar " "kleiner dan 1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "De beter bekende varianten kb, mb en gb kunnen ook gebruikt worden voor " "kilobyte, megabyte en gigabyte eenheden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtert bestanden op basis van hun bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Waarden mogen alleen als numerieke cijfers worden ingevoerd. De eenheid is " "altijd Kb/s (Kilobits per seconde)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Net als bestandsgrootte (hierboven), kunnen de operators =, !, <, >, <= of " ">= gebruikt worden, en meerdere voorwaarden kunnen gespecificeerd worden, " "bijvoorbeeld om bestanden weer te geven met een bitrate van ten minste 256 " "Kb/s met een maximale bitrate van 1411 Kb/s:\n" "256 <= 1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtert bestanden op basis van hun duur." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Standaard worden bestanden die groter of gelijk zijn aan de ingevoerde duur " "vergeleken, tenzij een operator (=, !, < of >) wordt gebruikt." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Voer een ruwe waarde in seconden in of gebruik de MM:SS en HH:MM:SS " "tijdformats:\n" " =53 geeft bestanden weer die ongeveer 53 seconden lang zijn.\n" " >5:30 geeft bestanden weer die langer dan 5 en een halve minuut zijn.\n" " <5:30:00 geeft bestanden weer die minder dan 5 en een half uur lang zijn." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Er kunnen meerdere voorwaarden worden opgegeven:\n" " >6:00 <12:00 om bestanden weer te geven die tussen de 6 en 12 minuten " "lang zijn.\n" " !9:54 !8:43 !7:32 om bepaalde specifieke bestanden uit de resultaten te " "verbergen.\n" " =5:34 =4:23 =3:05 om bestanden met specifieke duur op te nemen." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtert bestanden op basis van de geografische locatie van gebruikers " "volgens landcodes gedefinieerd door ISO 3166-2:\n" " US geeft alleen resultaten weer van gebruikers met IP-adressen in de " "Verenigde Staten.\n" " !GB verbergt resultaten die afkomstig zijn van gebruikers in Groot-" "Brittannië." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Meerdere landen kunnen worden opgegeven met komma's of spaties." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Vrije slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Alleen resultaten van gebruikers weergeven die ten minste één uploadslot " "vrij hebben, oftewel bestanden die direct beschikbaar zijn." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Upload snelheidslimieten" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Onbeperkte uploadsnelheid" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Upload snelheidslimiet (KiB/s) gebruiken:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternatieve upload snelheidslimiet (KiB/s) gebruiken:" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Privéchat commando-help" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Tekst opnemen…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Resultaten in-filteren waarvan de bestandspaden de opgegeven tekst bevatten. " "Meerdere zinnen en woorden kunnen worden opgegeven, bijvoorbeeld exacte zin|" "muziek|term|exacte zin twee" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Tekst uitsluiten…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Resultaten uit-filteren waarvan de bestandspaden de opgegeven tekst " "bevatten. Meerdere zinnen en woorden kunnen worden opgegeven, bijvoorbeeld " "exacte zin|muziek|term|exacte zin twee" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Bestandtypes…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Bestandstype, bijv. flac wav of !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Bestandsgrootte…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Bestandsgrootte, bijv. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitrate…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bitsnelheid, b.v. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Duur…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Duur, bijv. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Landcode…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Landcode, bijv. US ES of !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Gebruikers verbieden toegang tot je gedeelde bestanden op basis van " "gebruikersnaam, IP-adres of land." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Landcodes om te blokkeren (gescheiden door komma's):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Codes moeten in ISO 3166-2 format zijn." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Aangepast geoblock berich gebruiken:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Aangepast verban bericht gebruiken:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP-adressen" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Spellingscontrole inschakelen" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Eerder geopende privéchats herstellen bij opstarten" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "CTCP-achtige privéberichtreacties inchakelen (clientversie)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Aantal recente privéchatberichten om weer te geven:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Aantal recente chatberichten om weer te geven:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Chat aanvulling" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Tab-toets aanvulling inschakelen" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Dropdown-lijst aanvulling inschakelen" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Minimaal aantal tekens vereist om dropdown weer te geven:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Toegestane chat aanvullingen:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Vriendnamen" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Chatkamer gebruikersnamen" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Kamernamen" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Commando’s" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Tijdstempels" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Privéchat format:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Standaard" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Chatkamer format:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Tekst naar spraak" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Tekst-naar-spraak inschakelen" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Tekst-naar-spraak commando:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Privéchat bericht:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Chatkamer bericht:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censureren" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Schakel het censureren van tekstpatronen in" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Automatisch vervangen" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Automatisch woordenvervanging inschakelen" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Automatisch voltooide/gefilterde downloads uit overdrachtslijst wissen" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Voltooide downloads opslaan in gebruikersnaam-submappen" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Dubbelklik-actie voor downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Gebruikers toestaan om je bestanden te sturen:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Mappen" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Voltooide downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Onvoltooide downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Ontvangen bestanden:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Gebeurtenissen" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Voer commando uit nadat het downloaden van het bestand is voltooid ($ voor " "bestandspad):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Voer commando uit nadat het downloaden van de map is voltooid ($ voor map " "pad):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Downloadfilters" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Downloadfilters inschakelen" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Toevoegen" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Standaardwaarden laden" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Filters controleren" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Niet geverifieerd" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Chatberichten en zoekresultaten van gebruikers negeren, op basis van " "gebruikersnaam of IP-adres." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Standaard chatkamers loggen" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Standaard privéchat loggen" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Overdrachten loggen naar bestand" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Debugberichten loggen naar bestand" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Log tijdstempel format:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Map locaties" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Chatkamer logs map:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Privéchat logs map:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Overdracht logs map:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Debug logs map:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Log in op een bestaand Soulseek-account of maak een nieuw account aan. " "Gebruikersnamen zijn hoofdlettergevoelig en uniek." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Publiek IP-adres:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Luisterpoort (vereist een herstart):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Afwezigheidsstatus" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" "Minuten van inactiviteit voordat je afwezig bent (0 om uit te schakelen):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Automatisch antwoord bij afwezigheid:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatisch luisterpoort doorsturen (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Automatisch verbinden met server bij opstarten" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek-server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Bindt verbindingen aan een specifieke netwerkinterface, handig om er " "bijvoorbeeld voor te zorgen dat er altijd een VPN wordt gebruikt. Laat leeg " "om elke beschikbare interface te gebruiken. Verander deze waarde alleen als " "je weet wat je doet." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Netwerkinterface (vereist een herstart):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Met 'Nu aan het afspelen' kun je laten zien wat je mediaspeler afspeelt door " "de commando /now in chat te gebruiken." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Andere" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "'Nu aan het afspelen' format" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "'Nu aan het afspelen' berichtformat:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Configuratie testen" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Plugins inschakelen" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Plugins toevoegen" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Plugins toevoegen" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Instellingen" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Instellingen" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versie:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Gemaakt door:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Zoekgeschiedenis inschakelen" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Privé gedeelde bestanden die voor iedereen zichtbaar zijn gemaakt, krijgen " "het voorvoegsel '[PRIVÉ]', en kunnen niet worden gedownload totdat de " "uploader expliciete toestemming geeft. Vraag het hen vriendelijk." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Privé gedeelde bestanden in zoekresultaten weergeven" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Aantal resultaten per zoekopdracht beperken:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Standaard zoekresultaatfilters inschakelen" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Opnemen:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Uitsluiten:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Bestandstype:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Grootte:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Duur:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Landcode:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Alleen resultaten van gebruikers met een beschikbare uploadslot weergeven." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Resultaatfilter help" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Netwerk zoekopdrachten" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Reageer op zoekverzoeken van andere gebruikers" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Zoekopdrachten korter dan dit aantal tekens worden genegeerd:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Maximaal aantal zoekresultaten om per zoekopdracht te versturen:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Zoekgeschiedenis wissen" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Filtergeschiedenis wissen" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Bij het opstarten van het programma worden jouw gedeelde mappen automatisch " "opnieuw gescand. Als je de optie 'Automatisch Scannen' uitstaat, worden je " "mappen alleen bijgewerkt als je een nieuwe scan aanklikt." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Shares opnieuw scannen bij opstarten" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Voor iedereen zichtbaar:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Vrienden shares" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Vertrouwde shares" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Automatisch voltooide/geannuleerde uploads uit overdrachtslijst wissen" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Dubbelklik-actie voor uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Beperk uploadsnelheid:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Per overdracht" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Totaal aantal overdrachten" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Uploadslots" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Bestanden worden cyclisch geüpload naar de gebruikers die in de " "wachtrij staan.\n" "First In, First Out: Bestanden worden geüpload in de volgorde waarin ze in " "de wachtrij zijn geplaatst." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Upload wachtrijtype:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Wijs uploadslots toe totdat de totale snelheid (KiB/s) bereikt is:" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Vast aantal uploadslots:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Geef prioriteit aan alle vrienden" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Wachtrijlimieten" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Maximaal aantal bestanden in wachtrij per gebruiker:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Maximale totale grootte van bestanden in wachtrij per gebruiker (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Limieten gelden niet voor vrienden" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Instanties van $ worden vervangen door de URL. Standaard systeemapplicaties " "worden gebruikt in gevallen waar een protocol niet is geconfigureerd." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Bestandsbeheer commando:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Afbeelding resetten" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Zelfomschrijving" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Voeg dingen toe die je wilt dat iedereen ziet, zoals een korte beschrijving, " "handige tips of richtlijnen voor het downloaden van je shares." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Afbeelding:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Wissen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Voorkeur donkere modus" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Header-balk gebruiken" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Pictogram weergeven in taakbalk" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimaliseer naar taakbalk bij opstarten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Taal (herstart vereist):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Wanneer venster wordt gesloten:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Meldingen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Geluid inschakelen voor meldingen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Meldingen voor privéchats en vermeldingen in de titel van het venster " "weergeven" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Meldingen weergeven voor:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Voltooide bestandsdownloads" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Voltooide mapdownloads" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Privéberichten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Chatkamer berichten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Chatkamer vermeldingen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Verlanglijst-resultaten gevonden" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Eerder actieve hoofd-tab herstellen bij opstarten" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Sluitknoppen op secundaire tabs" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Gewone tab labelkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Veranderde tab labelkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Gemarkeerde tab labelkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Vriendenlijst positie:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Zichtbare hoofd-tabs:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Tab-balk posities:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Hoofd-tabs" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Bestandspaden omgekeerd weergeven (herstart vereist)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Exacte bestandsgroottes weergeven (vereist een herstart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Lijst tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Zoekresultaten in wachtrij tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Gekleurde gebruikersnamen inschakelen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Chat gebruikersnaam uiterlijk:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Extern tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Lokaal tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Commando-uitvoer tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me actie tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Gemarkeerde tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL-link tekstkleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Gebruikersstatussen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Online kleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Afwezig kleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Offline kleur:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Items tekst" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Aachtergrondkleur voor tekstinvoer:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Tekstkleur voor tekstinvoer:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Lettertypes" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Globaal lettertype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Lijst lettertype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Tekstweergave lettertype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Chat lettertype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Overdrachten lettertype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Zoeken lettertype:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Lettertype verkennen:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Pictogrammen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Pictogrammen-thema map:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Gebruiker(s) afbreken" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Gebruiker(s) verbannen" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Alle voltooide/geannuleerde uploads wissen" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Allen bericht sturen" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Specifieke uploads wissen" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Shares-lijst opslaan naar schijf" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Bestanden vernieuwen" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Profiel bewerken" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Gedeelde bestanden" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Gedeelde mappen" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Uploads in wachtrij" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Vrije uploadslots" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Uploadsnelheid" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Interesses bewerken" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Privileges geven…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Profiel vernieuwen" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nicotine+ commando's" #~ msgid "_Clear" #~ msgstr "Wissen" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Kan %(filename)s: %(error)s niet opslaan" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Vertrouwde vrienden" #~ msgid "Quit program" #~ msgstr "Programma afsluiten" #~ msgid "Username:" #~ msgstr "Gebruikersnaam:" #~ msgid "Re_commendations for Item" #~ msgstr "_Aanbevelingen voor voorwerp" #~ msgid "_Remove Item" #~ msgstr "_Verwijder voorwerp" #~ msgid "_Remove" #~ msgstr "_Verwijderen" #~ msgid "Send M_essage" #~ msgstr "Verstuur _bericht" #~ msgid "Send Message" #~ msgstr "Verstuur bericht" #~ msgid "View User Profile" #~ msgstr "Bekijk gebruikersprofiel" #~ msgid "Start Messaging" #~ msgstr "Berichten starten" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "" #~ "Voer de naam in van de gebruiker aan wie je een bericht wilt sturen:" #~ msgid "_Message" #~ msgstr "_Bericht" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Voer de naam in van de gebruiker wiens profiel je wilt zien:" #~ msgid "_View Profile" #~ msgstr "_Bekijk profiel" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Voer de naam in van de gebruiker wiens shares je wilt zien:" #~ msgid "_Browse" #~ msgstr "_Verkennen" #~ msgid "Password" #~ msgstr "Wachtwoord" #~ msgid "Download File" #~ msgstr "Download bestand" #~ msgid "Refresh Similar Users" #~ msgstr "Vergelijkbare gebruikers vernieuwen" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Voer de gebruikersnaam in van de persoon wiens bestanden je wilt zien" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Voer de gebruikersnaam in van de persoon wiens informatie je wilt zien" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Voer de gebruikersnaam in van de persoon die je een bericht wilt sturen" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Voer de gebruikersnaam in van de persoon die je aan je vriendenlijst wilt " #~ "toevoegen" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Voer de naam van een kamer in die je wilt betreden. Als de kamer niet " #~ "bestaat, zal deze worden aangemaakt." #~ msgid "Show Log History Pane" #~ msgstr "Toon Log Geschiedenis Paneel" #~ msgid "Save _Picture" #~ msgstr "Bewaar _foto" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Gefilterde onjuiste zoekresultaat %(filepath)s van gebruiker %(user)s " #~ "voor zoekopdracht \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Sommige cliënten sturen geen zoekresultaten als er speciale tekens in " #~ "voorkomen." #~ msgid "Remove special characters from search terms" #~ msgstr "Verwijder speciale tekens uit zoektermen" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problemen bij het uitvoeren van '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemen bij het uitvoeren op map: %s" #~ msgid "Disallowed extension" #~ msgstr "Niet-toegestane extensie" #~ msgid "Too many files" #~ msgstr "Te veel bestanden" #~ msgid "Too many megabytes" #~ msgstr "Te veel megabytes" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "De server heeft het te druk om naar verlanglijsten te zoeken" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Overdrachtssnelheden zijn afhankelijk van de gebruikers waarvan je " #~ "downloadt. Sommige gebruikers zullen snel zijn, terwijl anderen langzaam " #~ "zullen zijn." #~ msgid "Started Downloads" #~ msgstr "Gestarte downloads" #~ msgid "Started Uploads" #~ msgstr "Gestarte uploads" #~ msgid "Replace censored letters with:" #~ msgstr "Vervang gecensureerde letters door:" #~ msgid "Censored Patterns" #~ msgstr "Gecensureerde Patronen" #~ msgid "Replacements" #~ msgstr "Vervangingen" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Als een gebruiker op het Soulseek-netwerk zoekt naar een bestand dat " #~ "bestaat in jouw shares, worden de zoekresultaten naar de gebruiker " #~ "gestuurd." #~ msgid "Send to Player" #~ msgstr "Stuur naar mediaspeler" #~ msgid "Send to _Player" #~ msgstr "Verstuur naar s_peler" #~ msgid "_Open in File Manager" #~ msgstr "_Open in Bestandsbeheer" #~ msgid "Media player command:" #~ msgstr "Mediaspeler commando:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Kan download niet opslaan in gebruikersnaam submap, valt terug op " #~ "standaard download map. Fout: %s" #~ msgid "Buddy-only" #~ msgstr "Alleen voor vrienden" #~ msgid "Share with buddies only" #~ msgstr "Alleen met vrienden delen" #~ msgid "_Quit…" #~ msgstr "_Afsluiten…" #~ msgid "_Configure Shares" #~ msgstr "_Configureer shares" #~ msgid "Remote file error" #~ msgstr "Fout in extern bestand" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Kan %(option1)s of %(option2)s niet vinden, installeer een van beide." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s mappen gevonden voor rescan" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Kan de volgende databases niet verwerken: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "" #~ "Het is niet gelukt om het aantal gedeelde bestanden naar de server te " #~ "sturen: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Afsluiten / In de achtergrond uitvoeren" #~ msgid "Listening port:" #~ msgstr "Luisterpoort:" #~ msgid "Network interface:" #~ msgstr "Netwerkinterface:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Beperk shares voor vrienden tot vertrouwde vrienden" #~ msgid "Shared" #~ msgstr "Gedeeld" #~ msgid "Search Files and Folders" #~ msgstr "Bestanden en mappen zoeken" #~ msgid "Out of Date" #~ msgstr "Verouderd" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Versie %(version)s is beschikbaar, uitgebracht op %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Je gebruikt een ontwikkelingsversie van %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Je gebruikt de laatste versie van %s" #~ msgid "Latest Version Unknown" #~ msgstr "Laatste versie onbekend" #~ msgid "Prefer Dark _Mode" #~ msgstr "Liever donkere _Modus" #~ msgid "Show _Log History Pane" #~ msgstr "Toon _Log Geschiedenis Paneel" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Vriendenlijst in afzonderlijke tab" #~ msgid "Buddy List Always Visible" #~ msgstr "Vriendenlijst altijd zichtbaar" #~ msgid "_View" #~ msgstr "_Weergave" #~ msgid "_Open Log Folder" #~ msgstr "_Open Log Map" #~ msgid "_Browse Folder(s)" #~ msgstr "_Blader door map(pen)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bytes) per seconde." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Wordt naar gebruikers gestuurd als reden voor geo-blokkering." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Wordt naar gebruikers gestuurd als reden voor verbanning." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Zodra u in interactie bent met de applicatie die weg is, zal de status op " #~ "online worden gezet." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Elke gebruiker kan maximaal in één wachtrij staan:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "bestanden" #~ msgid "Queue Behavior" #~ msgstr "Wachtrij Gedrag" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Indien uitgeschakeld, zullen de slots automatisch worden bepaald door de " #~ "beschikbare bandbreedtebeperkingen." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Merk op dat het thema van het besturingssysteem voorrang kan hebben." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "Standaard wordt het meest linkse tabblad geactiveerd bij het opstarten" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "%(program)s afsluiten, %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "beëindigd" #~ msgid "done" #~ msgstr "klaar" #~ msgid "Remember choice" #~ msgstr "Onthoud keuze" #~ msgid "--- disconnected ---" #~ msgstr "--- verbinding verbroken ---" #~ msgid "--- reconnected ---" #~ msgstr "--- opnieuw verbonden ---" #~ msgid "ID" #~ msgstr "ID kaart" #~ msgid "Earth" #~ msgstr "Aarde" #~ msgid "Czech Republic" #~ msgstr "Tsjechië" #~ msgid "Turkey" #~ msgstr "Turkije" #~ msgid "Kosovo" #~ msgstr "Kosovo" #, python-format #~ msgid "Usage: %(command)s %(args)s" #~ msgstr "Gebruik: %(command)s %(args)s" #~ msgid "Joined Rooms " #~ msgstr "Betreden kamers " #~ msgid "Unknown Network Interface" #~ msgstr "Onbekende netwerkkaart" #~ msgid "Listening Port Unavailable" #~ msgstr "Luisterpoort niet beschikbaar" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "De server lijkt uitgevallen of antwoordt niet, over %i seconden wordt een " #~ "nieuwe poging gedaan" #~ msgid "_Auto-join Room" #~ msgstr "_Auto-join Kamer" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ gebruikt peer-to-peer netwerken om verbinding te maken met " #~ "andere gebruikers. Om gebruikers in staat te stellen zonder problemen " #~ "verbinding met je te maken, is een open luisterpoort van cruciaal belang." #~ msgid "System Default" #~ msgstr "Systeemstandaard" #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Syntaxis: Letters zijn niet hoofdlettergevoelig. Alle reguliere " #~ "expressies van Python worden ondersteund als \"escaping\" is " #~ "uitgeschakeld. Voor eenvoudige filters wordt aanbevolen om \"escape\" " #~ "ingeschakeld te houden." #~ msgid "Escaped" #~ msgstr "Ontsnapt" #~ msgid "Escape filter" #~ msgstr "Escape-filter" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Voer een tekstpatroon in en waar het door vervangen moet worden" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s mappen gevonden vóór opnieuw scannen, opnieuw doorzoeken…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Er is geen luisterpoort beschikbaar in het opgegeven poortbereik %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Kies een bereik om een luisterpoort uit te kiezen. De eerste beschikbare " #~ "poort in het bereik wordt gebruikt." #~ msgid "First Port" #~ msgstr "Eerste poort" #~ msgid "to" #~ msgstr "tot" #~ msgid "Last Port" #~ msgstr "Laatste poort" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Kan %s of nieuwer niet vinden, installeer het alstublieft." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Kan de Gtk-module niet importeren. Slechte installatie van de python-" #~ "gobject-module?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Je gebruikt een niet-ondersteunde versie van GTK %(major_version)s. GTK " #~ "%(complete_version)s of nieuwer is vereist." #~ msgid "User Info" #~ msgstr "Gebruikersinfo" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Zoom In" #~ msgid "Zoom Out" #~ msgstr "Zoom Uit" #~ msgid "Show User I_nfo" #~ msgstr "Toon gebruiker I_nfo" #~ msgid "Request User's Info" #~ msgstr "Gebruikersinformatie opvragen" #~ msgid "Request User's Shares" #~ msgstr "Shares van gebruiker opvragen" #~ msgid "Request User Info" #~ msgstr "Gebruikersinformatie opvragen" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Voer de naam in van de gebruiker wiens gegevens je wilt zien:" #~ msgid "Request Shares List" #~ msgstr "Shares opvragen" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Ongeldige Soulseek URL: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Gebruikers op het Soulseek-netwerk kunnen bestanden downloaden uit de " #~ "mappen die je deelt. Het delen van bestanden is van cruciaal belang voor " #~ "het Soulseek-netwerk." #~ msgid "Update I_nfo" #~ msgstr "I_nfo bijwerken" #~ msgid "Chat Room Commands" #~ msgstr "Chatkamer commando's" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'kamer'" #~ msgid "Join room 'room'" #~ msgstr "Kamer 'room' betreden" #~ msgid "/me 'message'" #~ msgstr "/me 'bericht'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Toon wat je mediaspeler nu afspeelt" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'gebruiker'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Voeg gebruiker 'gebruiker' toe aan je vriendenlijst" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'gebruiker'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Verwijder gebruiker 'gebruiker' uit je vriendenlijst" #~ msgid "/ban 'user'" #~ msgstr "/ban 'user'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Verban gebruiker 'user'" #~ msgid "/unban 'user'" #~ msgstr "/unban 'gebruiker'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Hef de verbanning van gebruiker 'user' op" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'user'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Negeer gebruiker 'user'" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'user'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Gebruiker 'user' niet meer negeren" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'user'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'gebruiker'" #~ msgid "Request info for 'user'" #~ msgstr "Vraag informatie aan voor 'gebruiker'" #~ msgid "/ip 'user'" #~ msgstr "/ip 'gebruiker'" #~ msgid "Show IP for user 'user'" #~ msgstr "Toon IP van gebruiker 'user'" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'zoekopdracht'" #~ msgid "Start a new search for 'query'" #~ msgstr "Start nieuwe zoekopdracht naar '…'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'query'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Doorzoek de betreden kamers naar '…'" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'zoekterm'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Doorzoek de vriendenlijst naar '…'" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'gebruiker' 'zoekopdracht'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'gebruiker' 'bericht'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Verstuur bericht 'message' naar gebruiker 'user'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'gebruiker'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Start privégesprek met gebruiker 'user'" #~ msgid "Private Chat Commands" #~ msgstr "Privé Chat Commando's" #~ msgid "Add user to your ban list" #~ msgstr "Verban gebruiker" #~ msgid "Add user to your ignore list" #~ msgstr "Negeer gebruiker" #~ msgid "Browse shares of user" #~ msgstr "Bestanden van gebruiker bekijken" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Voor volgorde-ongevoelig filteren, evenals voor het filteren van " #~ "verschillende exacte zinnen, kunnen verticale balken worden gebruikt om " #~ "zinnen en woorden te scheiden.\n" #~ " Voorbeeld: Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Om niet-audiobestanden uit te sluiten, gebruik !0 in het duurfilter." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "" #~ "Filtert bestanden op basis van de geografische locatie van gebruikers." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Om de volledige resultaten opnieuw te bekijken, verwijder eenvoudig alle " #~ "actieve filters." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Zie de voorkeuren om standaard zoekresultaten filteropties in te stellen." #~ msgid "File size" #~ msgstr "Bestandsgrootte" #~ msgid "Clear Active Filters" #~ msgstr "Actieve filters wissen" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Doorloop voltooiingen bij het indrukken van de tab-toets" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Verberg drop-down lijst wanneer er maar één passende term is" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Download mappen in omgekeerde alfanumerieke volgorde" #~ msgid "Incomplete file folder:" #~ msgstr "Onvolledige bestandsmap:" #~ msgid "Download folder:" #~ msgstr "Download map:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Sla uploads van vrienden op naar:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Gebruik UPnP om de luisterpoort door te sturen" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Deel mappen met elke Soulseek-gebruiker of vrienden, zodat de inhoud " #~ "rechtstreeks van uw apparaat kan worden gedownload. Verborgen bestanden " #~ "worden nooit gedeeld." #~ msgid "Secondary Tabs" #~ msgstr "Secundaire Tabbladen" #~ msgid "Chat room tab bar position:" #~ msgstr "Chat room tab bar positie:" #~ msgid "Private chat tab bar position:" #~ msgstr "Positie tabbladbalk privéchat:" #~ msgid "Search tab bar position:" #~ msgstr "Zoek tab bar positie:" #~ msgid "User info tab bar position:" #~ msgstr "Positie van tabblad Gebruikersinfo:" #~ msgid "User browse tab bar position:" #~ msgstr "De gebruiker bladert door de tabbalk positie:" #~ msgid "Tab Labels" #~ msgstr "Tablabels" #~ msgid "_Refresh Info" #~ msgstr "Info _vernieuwen" #~ msgid "Block IP Address" #~ msgstr "Blokkeer IP adres" #~ msgid "Connected" #~ msgstr "Verbonden" #~ msgid "Disconnected" #~ msgstr "Verbinding verbroken" #~ msgid "Disconnected (Tray)" #~ msgstr "Verbinding verbroken (lade)" #~ msgid "User(s)" #~ msgstr "Gebruiker(s)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" leverde niets op" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatieve snelheidslimieten" #~ msgid "Last played" #~ msgstr "Laatst afgespeeld" #~ msgid "Playing now" #~ msgstr "Nu aan het spelen" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Kan bestand niet downloaden naar %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Foutcode %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Onbekende alias (%s)" #~ msgid "Aliases:" #~ msgstr "Aliassen:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Alias %(alias)s gewist: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Onbekende alias (%(alias)s)\n" #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Gebruik alternatieve snelheidslimieten" #~ msgid "Aliases" #~ msgstr "Aliassen" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'opdracht' 'definitie'" #~ msgid "Add a new alias" #~ msgstr "Een nieuwe alias toevoegen" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'opdracht'" #~ msgid "Remove an alias" #~ msgstr "Verwijder een alias" #~ msgid "Chat History" #~ msgstr "Chat Geschiedenis" #~ msgid "Command aliases" #~ msgstr "Commando aliassen" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Beperk de downloadsnelheid tot (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Auteur(s):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Beperk upload snelheid tot (kB/s):" #~ msgid "Wishlist item found" #~ msgstr "Wenslijst item gevonden" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "Tabbladen tonen gebruikersstatuspictogrammen in plaats van statustekst" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Toon bestandspad tooltips in bestandslijstweergaven" #~ msgid "Colored and clickable usernames" #~ msgstr "Gekleurde en klikbare gebruikersnamen" #~ msgid "Notification changes the tab's text color" #~ msgstr "Notificatie veranderd de tekstkleur van de tab" #~ msgid "Cancel" #~ msgstr "Annuleren" #~ msgid "OK" #~ msgstr "Ok" #~ msgid "_Add to Buddy List" #~ msgstr "_Toevoegen aan Vriendenlijst" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Wis alle downloads gemarkeerd met een specifieke status." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Wis alle uploads die zijn gemarkeerd met een specifieke status." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "niet-standaard gebruikersgegevensmap gebruiken voor bijv. lijst met " #~ "downloads" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Onbekende configuratiesectie '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Onbekende configuratieoptie '%(option)s' in sectie '%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "Versie %s is beschikbaar" #, python-format #~ msgid "released on %s" #~ msgstr "uitgebracht op %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ wordt in de achtergrond uitgevoerd" #, python-format #~ msgid "Private message from %s" #~ msgstr "Privébericht van %s" #~ msgid "Aborted" #~ msgstr "Afgebroken" #~ msgid "Blocked country" #~ msgstr "Geblokkeerd land" #~ msgid "Finished / Aborted" #~ msgstr "Voltooid / Afgebroken" #~ msgid "Close tab" #~ msgstr "Tab sluiten" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Je bent genoemd in de kamer %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Commando %s is niet herkend" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Waarschuwing: %(realuser)s probeert %(fakeuser)s te spoofen) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "De netwerkinterface die je hebt opgegeven, '%s', bestaat niet. Wijzig of " #~ "verwijder de opgegeven netwerkinterface en start Nicotine+ opnieuw." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Het bereik dat je heeft opgegeven voor cliënt-verbindingspoorten was {}-" #~ "{}, maar geen van deze was bruikbaar. Verhogen en/of " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Merk op dat het door je opgegeven bereik beneden 1024 ligt, dit is " #~ "meestal niet toegestaan op de meeste besturingssystemen met de " #~ "uitzondering van Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Voortgang herscannen: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS fout: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP is niet beschikbaar op dit netwerk" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Kan de externe WAN-poort niet toewijzen: %(error)s" #~ msgid "Room wall" #~ msgstr "Kamer muur" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "De standaard luisterpoort '2234' werkt in de meeste gevallen goed. Als je " #~ "een andere poort wilt gebruiken, kunt je deze later in de voorkeuren " #~ "aanpassen." #~ msgid "Show users with similar interests" #~ msgstr "Toon gebruikers met vergelijkbare interesses" #~ msgid "Menu" #~ msgstr "Menu" #~ msgid "Expand / Collapse all" #~ msgstr "Alles invouwen/ uitvouwen" #~ msgid "Configure shares" #~ msgstr "Shares configureren" #~ msgid "Create or join room…" #~ msgstr "Creëer of betreedt kamer…" #~ msgid "_Room List" #~ msgstr "_Kamerlijst" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Alternatieve download- en uploadsnelheidslimieten inschakelen" #~ msgid "Show log history" #~ msgstr "Toon log geschiedenis" #~ msgid "Result grouping mode" #~ msgstr "Resultaatgroeperingsmodus" #~ msgid "Free slot" #~ msgstr "Vrij slot" #~ msgid "Save shares list to disk" #~ msgstr "Bewaar gedeelde bestandenlijst op schijf" #~ msgid "_Away" #~ msgstr "_Weg" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Kan ui-bestand %(file)s niet laden: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Poging om index van gedeelde bestanden te resetten vanwege een fout. " #~ "Herindexeer je gedeelde bestanden." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "De bestandsindex van gedeelde bestanden kan niet worden geopend. Dit kan " #~ "gebeuren als meerder instanties van Nicotine+ tegelijkertijd actief zijn, " #~ "problemen met bestandsrechten of een ander probleem in Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ is een Soulseek cliënt" #~ msgid "enable the tray icon" #~ msgstr "schakel het pictogram in het systeemvak in" #~ msgid "disable the tray icon" #~ msgstr "schakel het pictogram in het systeemvak uit" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Koop Soulseek _Privileges…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Het publieke IP-adres is %(ip)s en de actieve luisterpoort is " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "onbekend" #~ msgid "Notification" #~ msgstr "Melding" #~ msgid "Length" #~ msgstr "Lengte" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Foto niet opgeslagen, %s bestaat al." #~ msgid "_Open" #~ msgstr "_Open" #~ msgid "_Save" #~ msgstr "_Opslaan" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Kan plug-in '%s' niet laden, kon het niet vinden." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O fout: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Mislukt om bestandspad te openen: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Kan URL niet openen: %s" #~ msgid "_Log Conversation" #~ msgstr "_Log gesprek" #~ msgid "_Add…" #~ msgstr "_Toevoegen…" #~ msgid "Result Filter List" #~ msgstr "Resultaatfilterlijst" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Voeg < of > toe om bestanden te vinden die kleiner/groter zijn dan de " #~ "opgegeven waarde." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-bestanden geven hun gemiddelde bitrate weer en zijn doorgaans lager " #~ "in bitrate dan een gecomprimeerd 320 kbps CBR-bestand van dezelfde " #~ "audiokwaliteit." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Net als Grootte hierboven, kunnen =, < en > worden gebruikt." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Voorkom schrijftoegang door andere programma's voor bestanden die worden " #~ "gedownload (zet uit voor NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Waar onvolledige downloads tijdelijk worden opgeslagen." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Waar de uploads van vrienden worden opgeslagen (met een submap voor elke " #~ "vriend)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Afwezig melden na minuten zonder activiteit:" #~ msgid "Protocol:" #~ msgstr "Protocol:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Pictogramthemamap (opnieuw opstarten vereist):" #~ msgid "Establishing connection" #~ msgstr "Bezig met verbinden" #~ msgid "Clear Groups" #~ msgstr "Wis groepen" #~ msgid "User List" #~ msgstr "gebruikers lijst" #~ msgid "_Reset Statistics…" #~ msgstr "_Statistiek wissen…" #~ msgid "Clear _Downloads…" #~ msgstr "Wis _Downloads…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Wis upload_ds…" #~ msgid "Block User's IP Address" #~ msgstr "IP-adres van gebruiker blokkeren" #~ msgid "Ignore User's IP Address" #~ msgstr "IP-adres van gebruiker negeren" #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "Wis elke download die klaar is of is opgevangen door een filter." #~ msgid "Usernames" #~ msgstr "Gebruikersnamen" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Toon chatkamergesprekken die gelogd zijn wanneer een kamer opnieuw " #~ "betreden wordt" #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Wis alle uploads die klaar is of geannuleerd is door de externe gebruiker." #~ msgid "Queue Position" #~ msgstr "Positie in de wachtrij" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Gebruiker %(user)s zoekt rechtstreeks naar \"%(query)s\" en geeft %(num)i " #~ "resultaten terug" #~ msgid "Edit" #~ msgstr "Bewerken" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVAAT]" #~ msgid "Room wall (personal message set)" #~ msgstr "Kamerwand (eigen bericht ingesteld)" #~ msgid "Your config file is corrupt" #~ msgstr "Uw configuratiebestand is beschadigd" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Het spijt ons, maar het lijkt erop dat jouw configuratiebestand " #~ "beschadigd is. Configureer Nicotine+ opnieuw.\n" #~ "\n" #~ "We hebben jouw oude configuratiebestand hernoemd naar\n" #~ "%(corrupt)s\n" #~ "Als je dit bestand opent met een teksteditor, kunt je mogelijk enkele van " #~ "jouw instellingen redden." #~ msgid "User Description" #~ msgstr "Beschrijving gebruiker" #~ msgid "User Interests" #~ msgstr "Gebruikersinteresses" #~ msgid "User Picture" #~ msgstr "Gebruikersfoto" #~ msgid "Search Wishlist" #~ msgstr "Verlanglijst zoeken" #, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Nicotine+ laden %(nic_version)s" #, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Met Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Nicotine+ wordt afgesloten %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Nicotine+ afsluiten %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Gebruiker:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Alle %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s bestanden " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Sta reguliere expressies toe voor het filters insluiten en uitsluiten" #~ msgid "Close Nicotine+?" #~ msgstr "Nicotine+ sluiten?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Wil je echt Nicotine+ afsluiten?" #~ msgid "Run in Background" #~ msgstr "In de achtergrond uitvoeren" #~ msgid "_Online Notify" #~ msgstr "_Online Melden" #~ msgid "_Prioritize User" #~ msgstr "_Prioriteer Gebruiker" #~ msgid "_Trust User" #~ msgstr "_Gebruiker vertrouwen" #~ msgid "Request User's IP Address" #~ msgstr "IP-adres van de gebruiker opvragen" #~ msgid "Request IP Address" #~ msgstr "IP-adres opvragen" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Voer de gebruiker in wiens IP-adres je wilt opvragen:" #~ msgid "Downloaded" #~ msgstr "Gedownload" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Kan gedownloade %(filename)s niet toevoegen aan gedeelde bestanden: " #~ "%(error)s" #~ msgid "Automatically share completed downloads" #~ msgstr "Automatisch delen van voltooide downloads" #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Het equivalent van het toevoegen van jouw download map als een publieke " #~ "share, echter bestanden gedownload naar deze map zullen automatisch " #~ "toegankelijk zijn voor anderen (geen rescan nodig)." #~ msgid "Remember previous primary tab on startup" #~ msgstr "Onthoud vorige primaire tab bij opstarten" #~ msgid "Start with Search Files by default." #~ msgstr "Begin standaard met Bestanden zoeken." #~ msgid "Quit…" #~ msgstr "Afsluiten…" #~ msgid "Unable to Share Folder" #~ msgstr "Kan map niet delen" #~ msgid "The chosen virtual name is empty" #~ msgstr "De gekozen virtuele naam is leeg" #~ msgid "The chosen virtual name already exists" #~ msgstr "De gekozen virtuele naam bestaat al" #~ msgid "The chosen folder is already shared" #~ msgstr "De gekozen map is al gedeeld" #~ msgid "Set Virtual Name" #~ msgstr "Virtuele naam instellen" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Voer virtuele naam in voor '%(dir)s':" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "De gekozen virtuele naam is leeg of bestaat al" #~ msgid "The chosen folder is already shared." #~ msgstr "De gekozen map is al gedeeld." #, python-format #~ msgid "%s Properties" #~ msgstr "%s Eigenschappen" #~ msgid "Finished rescanning shares" #~ msgstr "Klaar met shares opnieuw scannen" #~ msgid "Plugin List" #~ msgstr "Plugin Lijst" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Fout tijdens het scannen van %(path)s: %(error)s" #~ msgid "Show _Log Pane" #~ msgstr "Toon _Logvenster" #~ msgid "Addresses" #~ msgstr "Adressen" #~ msgid "Handler" #~ msgstr "Afhandelaar" #~ msgid "Could not enable plugin." #~ msgstr "Kan plug-in niet inschakelen." #~ msgid "Could not disable plugin." #~ msgstr "Kan plug-in niet uitschakelen." #~ msgid "Transfers" #~ msgstr "Overdrachten" #~ msgid "Ban List" #~ msgstr "Verban-lijst" #~ msgid "Ignore List" #~ msgstr "Negeerlijst" #~ msgid "Censor & Replace" #~ msgstr "Censureren en vervangen" #~ msgid "Completion" #~ msgstr "Aanvulling" #~ msgid "Categories" #~ msgstr "Categorieën" #~ msgid "Upload Folder To…" #~ msgstr "Upload map _naar…" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Upload map recursief naar…" #~ msgid "Download _Recursive" #~ msgstr "Download _recursief" #~ msgid "Download R_ecursive To…" #~ msgstr "Download R_ecursief Naar…" #~ msgid "Up_load File(s)" #~ msgstr "Up_load bestand(en)" #, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Fout bij het weergeven van map '%(folder)s', gerapporteerde fout: " #~ "%(error)s" #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Selecteer bestemming voor het downloaden van een map van gebruiker" #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "" #~ "Selecteer bestemming voor het downloaden van bestand(en) van gebruiker" #~ msgid "Wishes" #~ msgstr "wensen" #~ msgid "privileged" #~ msgstr "bevoorrecht" #~ msgid "prioritized" #~ msgstr "geprioriteerd" #~ msgid "Configure logging" #~ msgstr "Logboekregistratie configureren" #~ msgid "Blocked IP Addresses" #~ msgstr "Geblokkeerde IP adressen" #~ msgid "Complete buddy names" #~ msgstr "Namen van vrienden aanvullen" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Gebruikersnamen in chatkamers aanvullen" #~ msgid "Complete room names" #~ msgstr "Kamernamen aanvullen" #~ msgid "Drop-down List" #~ msgstr "Uitklapbare lijst" #~ msgid "File Manager command ($ for file path):" #~ msgstr "Bestandsbeheer commando ($ voor bestandspad):" #~ msgid "Media Player command ($ for file path):" #~ msgstr "Media Player commando ($ voor bestandspad):" #~ msgid "Ignored IP Addresses" #~ msgstr "Genegeerde IP-adressen" #~ msgid "Display timestamps" #~ msgstr "Toon tijdstempels" #~ msgid "Notification Popups" #~ msgstr "Pop-ups van meldingen" #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Pop-upmelding weergeven wanneer een bestand is gedownload" #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Laat een popup zien wanneer het downloaden van een map is voltooid" #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Laat een popup zien wanneer je een privébericht ontvangt" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Laat een popup zien wanneer iemand een bericht stuurt in een chatroom" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Laat een popup zien wanneer je genoemd wordt in een chatroom" #~ msgid "Tray" #~ msgstr "Systeemvak" #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Instanties van $ worden vervangen door de link. De standaardwebbrowser " #~ "van het systeem wordt gebruikt in gevallen waarin geen protocol is " #~ "geconfigureerd." #~ msgid "Handler:" #~ msgstr "Afhandelaar:" #~ msgid "Primary Tabs" #~ msgstr "Primaire Tabbladen" #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Bestandspad tooltips inschakelen in zoek- en overdrachtsweergave" #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Toont het volledige bestandspad van een zoekresultaat of " #~ "bestandsoverdracht wanneer je met jouw cursor over een mappad of " #~ "bestandsnaam gaat." #~ msgid "Show privately shared files in user shares" #~ msgstr "Privé gedeelde bestanden tonen in gebruikers shares" #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Andere clients kunnen een optie bieden om privé gedeelde bestanden te " #~ "versturen wanneer je door hun shares bladert. Mappen die dergelijke " #~ "bestanden bevatten worden voorafgegaan door '[PRIVATE FOLDER]', en zijn " #~ "niet downloadbaar tenzij de uploader expliciet toestemming geeft." #~ msgid "Chat Censor & Replace" #~ msgstr "Chat Censor & Vervangen" #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Selecteer Bestemming voor het downloaden van map en submappen van " #~ "gebruiker" #~ msgid "Show _Debug Log Controls" #~ msgstr "Toon _Debug Log Controls" #~ msgid "Debug Logging" #~ msgstr "Debug loggen" #~ msgid "Copy Folder URL" #~ msgstr "Kopieer map URL" #~ msgid "Download _To…" #~ msgstr "Download _naar…" #~ msgid "Download" #~ msgstr "Download" #~ msgid "Upload" #~ msgstr "Upload" #~ msgid "Upload Folder's Contents" #~ msgstr "Inhoud van map uploaden" #~ msgid "Virtual Name" #~ msgstr "Virtuele naam" #~ msgid "Edit Virtual Name" #~ msgstr "Virtuele naam bewerken" #~ msgid "File Lists" #~ msgstr "Bestandslijsten" #~ msgid "Copy File Path" #~ msgstr "Bestandspad kopiëren" #~ msgid "R_emove Wish" #~ msgstr "_Verwijder Wens" #~ msgid "Rename" #~ msgstr "Hernoemen" #~ msgid "About _Nicotine+" #~ msgstr "Over _Nicotine+" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Het lijkt erop dat '%s' geen map is en geen plug-ins laadt." #~ msgid "Rescanning buddy shares…" #~ msgstr "Vrienden-shares opnieuw scannen…" #~ msgid "Finished rescanning buddy shares" #~ msgstr "Klaar met vrienden-shares opnieuw scannen" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "" #~ "Jouw vriend, %s, probeert één of meer bestanden naar je te uploaden." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s mag jou geen bestanden sturen, maar probeert het toch. Waarschuwing is " #~ "verzonden." #~ msgid "Version: " #~ msgstr "Versie: " #~ msgid "Author(s): " #~ msgstr "Auteur(s): " #~ msgid "Client Version" #~ msgstr "Versie Programma" #, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Hoelang moet gebruiker %s privileges krijgen?" #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Vrienden krijgen een hogere prioriteit in de wachtrij, net als gebruikers " #~ "met globale privileges." #~ msgid "Privileged" #~ msgstr "Heeft privileges" #~ msgid "_Privileged" #~ msgstr "Heeft _Privileges" #~ msgid "Comments" #~ msgstr "Commentaar" #~ msgid "Edit _Comments…" #~ msgstr "_Commentaar bewerken…" #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Maakt submappen aan op basis van de gebruiker van wie je downloadt, en " #~ "slaat het gedownloade bestand/map daar op." #~ msgid "Login Details" #~ msgstr "Inloggegevens" #~ msgid "Advanced" #~ msgstr "Geavanceerd" #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Port mapping renewal interval in uren:" #~ msgid "Enable buddy-only shares" #~ msgstr "Voor vrienden gedeelde mappen inschakelen" #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Bestanden zullen worden verstuurd in de volgorde van de wachtrij." #~ msgid "Rescanning normal shares…" #~ msgstr "Normale gedeelde mappen opnieuw scannen…" #~ msgid "Finished rescanning public shares" #~ msgstr "Klaar met het scannen van openbaar gedeelde bestanden" #~ msgid "Scanning Buddy Shares" #~ msgstr "Gedeelde bestanden voor vrienden aan het scannen" #~ msgid "_Rescan Public Shares" #~ msgstr "Shares opnieuw scannen" #~ msgid "Rescan B_uddy Shares" #~ msgstr "_Vrienden-shares opnieuw scannen" #~ msgid "Rescan Public Shares" #~ msgstr "Openbare gedeelde mappen opnieuw scannen" #~ msgid "Rescan Buddy Shares" #~ msgstr "Met vrienden gedeelde mappen opnieuw scannen" #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Schakelt vrienden-shares in waartoe alleen gebruikers op uw vriendenlijst " #~ "toegang hebben." #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Markeer elke gedeelde map als alleen-maatjes" #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Overschrijft de per-share optie, handig als je tijdelijk publieke toegang " #~ "tot shares wilt voorkomen." #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Alleen gebruikers die in jouw vriendenlijst als vertrouwd zijn " #~ "aangemerkt, hebben toegang tot jouw \"buddy-only\" shares." #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+ stelt je in staat om mappen direct vanaf jouw computer te " #~ "delen. Alle inhoud van deze mappen (met uitzondering van dotfiles) kan " #~ "worden gedownload door andere gebruikers op het Soulseek netwerk. " #~ "Publieke delen zijn beschikbaar voor elke gebruiker, terwijl gebruikers " #~ "in jouw vrienden-lijst toegang hebben tot alleen-vrienden shares in " #~ "aanvulling op publieke shares." #~ msgid "Filtered out excluded search result " #~ msgstr "Uitgesloten zoekresultaat uitgefilterd " #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Onjuist of onjuist zoekresultaat eruit gefilterd " #, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Opgeslagen instelling '%(key)s' is niet langer aanwezig in de '%(name)s' " #~ "plugin" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "Plugin %(module)s heeft iets raars geretourneerd, '%(value)s', wordt " #~ "genegeerd" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Inconsistente cache voor '%(vdir)s', opnieuw opbouwen van '%(dir)s'" #, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Ontbrekende map verwijderen %(dir)s" #, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Alle tickers / wall-berichten voor %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Persoonlijke klok instellen" #~ msgid "Show all the tickers" #~ msgstr "Toon alle tickers" #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Kan shares niet scannen. Als Nicotine+ momenteel actief is, sluit dan het " #~ "programma voordat je gaat scannen." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Weet je zeker dat je Nicotine+ op dit moment wilt afsluiten?" #~ msgid "Receive a User's IP Address" #~ msgstr "IP-adres van een gebruiker opvragen" #~ msgid "Receive a User's Info" #~ msgstr "Gebruikersinfo opvragen" #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "" #~ "De server verbiedt ons om zoekopdrachten op verlanglijsten uit te voeren." #, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Uw gedeelde bestandenlijst is beschadigd. Scan ze opnieuw en meld " #~ "eventuele problemen aan de ontwikkelaars. Fout: %s" #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Houd er rekening mee dat gebruikersnamen bezet kunnen zijn. Als dit het " #~ "geval is, zal je gevraagd worden jouw gebruikersnaam te wijzigen wanneer " #~ "je verbinding maakt met het netwerk." #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "" #~ "Voer de gebruikersnaam in van de persoon over wie je informatie wilt " #~ "ontvangen" #~ msgid "Add user 'user' to your user list" #~ msgstr "Voeg gebruiker 'user' toe aan jouw vriendenlijst" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Verwijder gebruiker 'user' uit jouw vriendenlijst" #~ msgid "Request user info for user 'user'" #~ msgstr "Gebruikersinfo van gebruiker 'user' opvragen" #~ msgid "Add user to your user list" #~ msgstr "Voeg gebruiker toe aan jouw gebruikerslijst" #~ msgid "Remove user from your user list" #~ msgstr "Verwijder gebruiker uit jouw vriendenlijst" #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "Antwoord op zoekopdrachten met een minimumaantal karakters:" #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Gebruikers in de wachtrij worden één bestand per keer geüpload op een " #~ "cyclische manier." #~ msgid "" #~ "Could not execute now playing code. Are you sure you picked the right " #~ "player?" #~ msgstr "" #~ "Kan nu spelende code niet uitvoeren. Weet je zeker dat je de juiste " #~ "speler hebt gekozen?" #~ msgid "/leave /l /part /p" #~ msgstr "/leave /l /part /p" #~ msgid "/clear /cl" #~ msgstr "/clear /cl" #~ msgid "/tick /t" #~ msgstr "/tick /t" #~ msgid "/tickers" #~ msgstr "/tickers" #~ msgid "/now" #~ msgstr "/now" #~ msgid "/away /a" #~ msgstr "/away /a" #~ msgid "/quit /q /exit" #~ msgstr "/quit /q /exit" #~ msgid "/close /c" #~ msgstr "/close /c" #~ msgid "/add /ad" #~ msgstr "/add /ad" #~ msgid "/rem /unbuddy" #~ msgstr "/rem /unbuddy" #~ msgid "/ban" #~ msgstr "/ban" #~ msgid "/unban" #~ msgstr "/unban" #~ msgid "/ignore" #~ msgstr "/ignore" #~ msgid "/unignore" #~ msgstr "/unignore" #~ msgid "/browse /b" #~ msgstr "/browse /b" #~ msgid "/whois /w" #~ msgstr "/whois /w" #~ msgid "/ip" #~ msgstr "/ip" #, python-format #~ msgid "The password you've entered is invalid for user %s" #~ msgstr "Het wachtwoord dat je hebt ingevoerd is ongeldig voor gebruiker %s" #, fuzzy #~ msgid "" #~ "You can create a new Soulseek account or log in to an existing one by " #~ "entering your desired details below. Please keep in mind that some " #~ "usernames may already be taken. If you're unable to connect with your " #~ "selected username, try choosing another one." #~ msgstr "" #~ "U kunt een nieuw account aanmaken door hieronder de gewenste gegevens in " #~ "te vullen. Houd er rekening mee dat sommige gebruikersnamen al in gebruik " #~ "kunnen zijn. Als u geen verbinding kunt maken met uw geselecteerde " #~ "gebruikersnaam, kiest u een andere." #~ msgid "Find..." #~ msgstr "Zoeken..." #~ msgid "Queued..." #~ msgstr "In de wachtrij..." #~ msgid "Clear All..." #~ msgstr "Wis alles..." #~ msgid "_Search Files" #~ msgstr "_Zoek bestanden" #~ msgid "_Downloads" #~ msgstr "_Downloads" #~ msgid "_Uploads" #~ msgstr "_Uploads" #~ msgid "User I_nfo" #~ msgstr "Gebruikers-i_nfo" #~ msgid "_Private Chat" #~ msgstr "_Privégesprek" #~ msgid "Buddy _List" #~ msgstr "Vrienden_lijst" #~ msgid "_Chat Rooms" #~ msgstr "_Chatkamers" #~ msgid "_Interests" #~ msgstr "_Interesses" #~ msgid "_Modes" #~ msgstr "_Modi" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "Verberg %(tab)s" #~ msgid "Close All Tabs..." #~ msgstr "Sluit alle tabbladen..." #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Uw IP adres is niet opgehaald van de server" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Uw IP adres is %(ip)s" #~ msgid "Geo Block" #~ msgstr "Geo Block" #~ msgid "Away Mode" #~ msgstr "Afwezig-modus" #~ msgid "URL Catching" #~ msgstr "URL afvanger" #~ msgid "Edit _Comments..." #~ msgstr "Wijzig _commentaar..." #~ msgid "Gi_ve Privileges..." #~ msgstr "_Rechten geven..." #, fuzzy #~ msgid "Check _Port Status" #~ msgstr "Controleer poortstatus" #, fuzzy #~ msgid "_Add..." #~ msgstr "Toevoegen..." #~ msgid "Room..." #~ msgstr "Kamer..." #~ msgid "Username..." #~ msgstr "Gebruikersnaam..." #~ msgid "Add Wish..." #~ msgstr "Wens toevoegen..." #~ msgid "Include text..." #~ msgstr "Voeg tekst toe..." #~ msgid "Exclude text..." #~ msgstr "Tekst uitsluiten..." #~ msgid "File type..." #~ msgstr "Bestandstype..." #~ msgid "Bitrate..." #~ msgstr "Bitrate..." #~ msgid "Add..." #~ msgstr "Toevoegen..." #~ msgid "" #~ "Geo Block controls from which countries users are allowed access to your " #~ "shares." #~ msgstr "" #~ "Geo Block-besturingselementen vanuit welke landen gebruikers toegang " #~ "hebben tot uw shares." #~ msgid "Enable geographical blocker" #~ msgstr "Geografische blokkeerder inschakelen" #, fuzzy #~ msgid "Countries" #~ msgstr "Land" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "MPRIS (v2)" #~ msgstr "MPRIS (v2)" #~ msgid "Enable URL catching" #~ msgstr "URL afvanger inschakelen" #, fuzzy #~ msgid "Humanize slsk:// URLs" #~ msgstr "slsk:// urls menselijker maken" #, fuzzy #~ msgid "Protocol Handlers" #~ msgstr "Protocol" #~ msgid "Decimal separator:" #~ msgstr "Decimale scheidingsteken:" #~ msgid "Cannot find the pynicotine.utils module." #~ msgstr "Kan de pynicotine.utils module niet vinden." #~ msgid "Errors occured while trying to change process name:" #~ msgstr "Fouten opgetreden tijdens poging om de procesnaam te veranderen:" #~ msgid "Starting using the profiler (saving dump to %s)" #~ msgstr "Beginnen met het gebruik van de profiler (dump opslaan in %s)" #~ msgid "" #~ "WARNING! Rescanning shares will not work if Nicotine+ is already open. If " #~ "you need to rescan" #~ msgstr "" #~ "WAARSCHUWING! Het opnieuw scannen van gedeelde bestanden werkt niet als " #~ "Nicotine+ al open is. Als je opnieuw moet scannen" #~ msgid "Can not find Nicotine+ modules." #~ msgstr "Kan Nicotine+-modules niet vinden." #~ msgid "You're using an unsupported version of GTK (%s)." #~ msgstr "Je GTK-versie (%s) wordt niet ondersteund." #~ msgid "You're using an unsupported version of Python (%s)." #~ msgstr "Je python versie (%s) wordt niet ondersteund." #~ msgid "Something went wrong while opening your transfer list: %(error)s" #~ msgstr "" #~ "Er is iets fout gegaan tijdens het openen van je transferlijst: %(error)s" #~ msgid "Something went wrong while writing your transfer list: %(error)s" #~ msgstr "" #~ "Er is iets fout gegaan tijdens het schrijven van je transferlijst: " #~ "%(error)s" #~ msgid "Can't save config file, I/O error: %s" #~ msgstr "Kan configuratiebestand niet opslaan, I/O fout: %s" #~ msgid "Can't remove %s" #~ msgstr "Kan %s niet verwijderen" #~ msgid "Can't back config file up, error: %s" #~ msgstr "Kan geen reservekopie maken van configuratiebestand, fout: %s" #~ msgid "Can't rename config file, error: %s" #~ msgstr "Kan configuratiebestand niet hernoemen, fout: %s" #~ msgid "Something went wrong while opening your alias file: %s" #~ msgstr "Er ging iets mis bij het openen van je aliasbestand: %s" #~ msgid "Something went wrong while saving your alias file: %s" #~ msgstr "Er is iets misgegaan bij het opslaan van je aliasbestand: %s" #~ msgid "ERROR: MPRIS: failed to load dbus module: %(error)s" #~ msgstr "FOUT: MPRIS: kon dbus-module niet laden: %(error)s" #~ msgid "Unable to enable plugin %s" #~ msgstr "Kan plug-in %s . niet inschakelen" #~ msgid "Disabled plugin {}" #~ msgstr "Uitgeschakelde plug-in {}" #~ msgid "Unable to fully disable plugin %s" #~ msgstr "Kan plug-in %s . niet volledig uitschakelen" #~ msgid "Exception in callback %s: %s" #~ msgstr "Uitzondering bij terugbellen %s: %s" #~ msgid "Connection closed by peer: %s" #~ msgstr "Verbinding gesloten door naaste computer: %s" #~ msgid "Requesting address for user %(user)s" #~ msgstr "Adres opvragen voor gebruiker %(user)s" #~ msgid "Initialising direct connection of type %(type)s to user %(user)s" #~ msgstr "" #~ "Initialiseren van directe verbinding van type %(type)s met gebruiker " #~ "%(user)s" #~ msgid "" #~ "Direct connection of type %(type)s to user %(user)s failed, attempting " #~ "indirect connection" #~ msgstr "" #~ "Directe verbinding van type %(type)s met gebruiker %(user)s mislukt, " #~ "poging tot indirecte verbinding" #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Server meldde poort 0 voor de 10e keer voor gebruiker %(user)s, geeft op" #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Server meldde niet-nul poort voor gebruiker %(user)s na %(tries)i pogingen" #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "Server meldde poort 0 voor gebruiker %(user)s, probeert opnieuw" #~ msgid "Can't connect to user %s neither directly nor indirectly, giving up" #~ msgstr "" #~ "Kan direct noch indirect verbinding maken met gebruiker %s, geef het op" #~ msgid "" #~ "Indirect connect request of type %(type)s to user %(user)s expired, " #~ "giving up" #~ msgstr "" #~ "Indirect verbindingsverzoek van type %(type)s naar gebruiker %(user)s " #~ "verlopen, opgeven" #~ msgid "" #~ "Can't connect to user %s neither directly nor indirectly, informing user " #~ "via the server" #~ msgstr "" #~ "Kan direct noch indirect verbinding maken met gebruiker %s, gebruiker " #~ "informeren via de server" #~ msgid "Can not log in, reason: %s" #~ msgstr "Kan niet inloggen, reden: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Iemand met dezelfde gebruikersnaam heeft ingelogd, server gaat onze " #~ "verbinding verbreken" #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "IP %(ip)s:%(port)s bedriegt gebruiker %(user)s met een aanvraag, " #~ "tegengehouden omdat het niet overeenkomt met IP %(real_ip)s" #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s wou jouw gebruikersinfo zien, maar is tegengehouden - mogelijk " #~ "een bedrieger (IP: %(ip)s, poort %(port)s)" #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "%s wou jouw gebruikersinfo zien, maar is tegengehouden - mogelijke " #~ "bedrieger met onbekend adres & poort" #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "%(user)s is verbannen, maar wil jouw gebruikersinfo opvragen" #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s wil jouw gedeelde bestanden verkennen, mogelijke bedrieger " #~ "tegengehouden (IP: %(ip)s, poort %(port)s)" #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s wil jouw gedeelde bestanden verkennen, mogelijke bedrieger " #~ "tegengehouden met onbekend adres & poort." #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s wil jouw gedeelde bestanden verkennen" #~ msgid "Unknown tunneled message: %s" #~ msgstr "Onbekend getunneld bericht: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "Uw gedeelde bestandenlijst lijkt beschadigd, herlees uw bestanden" #~ msgid "" #~ "Found meta data that couldn't be encoded, possible corrupt file: " #~ "'%(file)s' has a bitrate of %(bitrate)s kbs, a length of %(length)s " #~ "seconds and a VBR of %(vbr)s" #~ msgstr "" #~ "Gevonden metagegevens die niet konden worden gecodeerd, mogelijk " #~ "beschadigd bestand: '%(file)s' heeft een bitrate van %(bitrate)s kbs, een " #~ "lengte van %(length)s seconden en een VBR van %(vbr)s" #~ msgid "Warning: unknown object type %(obj_type)s in message %(msg_type)s" #~ msgstr "" #~ "Waarschuwing: onbekend objecttype %(obj_type)s in bericht %(msg_type)s" #~ msgid "Empty message made, class %s" #~ msgstr "Leeg bericht gemaakt, klasse %s" #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Kan inkomend bericht, class %s, niet verwerken" #~ msgid "Exception during parsing %(area)s: %(exception)s" #~ msgstr "Uitzondering tijdens verwerken %(area)s: %(exception)s" #~ msgid "Failed to set RLIMIT_NOFILE: %s" #~ msgstr "Kan RLIMIT_NOFILE niet instellen: %s" #~ msgid "Could not bind to a local port, aborting connection" #~ msgstr "Kon niet verbinden met een locale poort, verbinding annuleren" #~ msgid "" #~ "Server message type %(type)i size %(size)i contents %(msg_buffer)s unknown" #~ msgstr "" #~ "Type serverbericht %(type)i grootte %(size)i inhoud %(msg_buffer)s " #~ "onbekend" #~ msgid "Unknown peer init code: {}, message contents " #~ msgstr "Onbekende peer-initcode: {}, berichtinhoud " #~ msgid "" #~ "There was an error while unpacking Peer message type %(type)s size " #~ "%(size)i contents %(msg_buffer)s from user: %(user)s, %(host)s:%(port)s" #~ msgstr "" #~ "Er is een fout opgetreden bij het uitpakken van het peer-bericht type " #~ "%(type)s grootte %(size)i inhoud %(msg_buffer)s van gebruiker: %(user)s, " #~ "%(host)s:%(port)s" #~ msgid "" #~ "Peer message type %(type)s size %(size)i contents %(msg_buffer)s unknown, " #~ "from user: %(user)s, %(host)s:%(port)s" #~ msgstr "" #~ "Soort peerbericht %(type)s grootte %(size)i inhoud %(msg_buffer)s " #~ "onbekend, van gebruiker: %(user)s, %(host)s:%(port)s" #~ msgid "Can't handle connection type %s" #~ msgstr "Verbindingstype %s onbekend" #~ msgid "" #~ "Distrib message type %(type)i size %(size)i contents %(msg_buffer)s " #~ "unknown" #~ msgstr "" #~ "Distrib berichttype %(type)i grootte %(size)i inhoud %(msg_buffer)s " #~ "onbekend" #~ msgid "Error packaging message: %(type)s %(msg_obj)s, %(error)s" #~ msgstr "" #~ "Fout tijdens verpakking van bericht: %(type)s %(msg_obj)s, %(error)s" #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Kan bericht niet versturen over de gesloten verbinding: %(type)s " #~ "%(msg_obj)s" #~ msgid "Major Socket Error: Networking terminated! %s" #~ msgstr "Grote socket fout: netwerken afgebroken! %s" #~ msgid "Ignoring connection request from blocked IP Address %(ip)s:%(port)s" #~ msgstr "Verbindingsverzoek negeren van geblokkeerd IP-adres %(ip)s:%(port)s" #~ msgid "Filtering: %s" #~ msgstr "Gefilterd: %s" #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Mislukte download opnieuw proberen: gebruiker %(user)s, bestand %(file)s" #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "" #~ "Heb verzoek tot overdracht %s gekregen, maar kan de gebruiker niet " #~ "achterhalen" #~ msgid "Denied file request: User %(user)s, %(msg)s" #~ msgstr "Geweigerd bestandsverzoek: Gebruiker %(user)s, %(msg)s" #~ msgid "Upload request: %(req)s Response: %(resp)s" #~ msgstr "Uploadverzoek: %(req)s Reactie: %(resp)s" #~ msgid "Queued upload request: User %(user)s, %(msg)s" #~ msgstr "Uploadverzoek in wachtrij: Gebruiker %(user)s, %(msg)s" #~ msgid "[Automatic Message] " #~ msgstr "[Automatisch bericht] " #~ msgid "You are not allowed to send me files." #~ msgstr "U bent niet gemachtigd mag mij bestanden toe te sturen." #~ msgid "Got unknown transfer response: %s" #~ msgstr "Onbekend overdrachts antwoord ontvangen: %s" #~ msgid "Download started: %s" #~ msgstr "Download gestart: %s" #~ msgid "" #~ "Download error formally known as 'Unknown file request': %(req)s " #~ "(%(user)s: %(file)s)" #~ msgstr "" #~ "Downloadfout formeel bekend als 'Onbekend bestandsverzoek': %(req)s " #~ "(%(user)s: %(file)s)" #~ msgid "" #~ "Upload error formally known as 'Unknown file request': %(req)s (%(user)s: " #~ "%(file)s)" #~ msgstr "" #~ "Uploadfout formeel bekend als 'Onbekend bestandsverzoek': %(req)s " #~ "(%(user)s: %(file)s)" #~ msgid "Download finished: %(file)s" #~ msgstr "Download voltooid: %(file)s" #~ msgid "(friend)" #~ msgstr "(vriend)" #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Upload voltooid: %(user)s, bestand %(file)s" #~ msgid "Join Public Room" #~ msgstr "Publieke kamer betreden" #~ msgid "Create Public Room" #~ msgstr "Openbare ruimte maken" #~ msgid "" #~ "I remember the room %(room)s being owned by %(previous)s, but the server " #~ "says its owned by %(new)s." #~ msgstr "" #~ "Ik herinner me dat de kamer %(room)s eigendom was van %(vorige)s, maar de " #~ "server zegt dat deze eigendom is van %(new)s." #~ msgid "" #~ "I remember the room %(room)s being owned by %(old)s, but the server says " #~ "that's not true." #~ msgstr "" #~ "Ik herinner me dat de kamer %(room)s eigendom was van %(old)s, maar de " #~ "server zegt dat dit niet waar is." #~ msgid "Show IP a_ddress" #~ msgstr "Toon IP a_dres" #~ msgid "Get user i_nfo" #~ msgstr "Vraag gebruikersi_nfo op" #~ msgid "Brow_se files" #~ msgstr "Verken be_standen" #~ msgid "_Add user to list" #~ msgstr "Toevoegen _aan vriendenlijst" #~ msgid "_Ban this user" #~ msgstr "Ver_ban deze gebruiker" #~ msgid "_Ignore this user" #~ msgstr "Negeer deze gebru_iker" #~ msgid "%s mentioned you in the %s room" #~ msgstr "%s heeft je genoemd in de %s kamer" #~ msgid "Unknown meta chatroom closed" #~ msgstr "Onbekende meta-chatroom gesloten" #~ msgid "Clear finished/aborted" #~ msgstr "Wis voltooid/afgebroken" #~ msgid "Clear aborted" #~ msgstr "Wis afgebroken" #~ msgid "Clear paused" #~ msgstr "Wis gepauzeerde" #~ msgid "Clear queued" #~ msgstr "Wis wachtende" #~ msgid "Abor_t" #~ msgstr "Afbreken" #~ msgid "Virtual Directory" #~ msgstr "Virtuele map" #~ msgid "Directory" #~ msgstr "Map" #~ msgid "Dirs" #~ msgstr "Dirs" #~ msgid "Counting files..." #~ msgstr "Bestanden tellen..." #~ msgid "Warning" #~ msgstr "Waarschuwing" #~ msgid "Down: %(num)i users, %(speed)s" #~ msgstr "Omlaag: %(num)i gebruikers, %(speed)s" #~ msgid "Up: %(num)i users, %(speed)s" #~ msgstr "Omhoog: %(num)i gebruikers, %(speed)s" #~ msgid "%(current)s/%(limit)s Connections" #~ msgstr "%(current)s/%(limit)s verbindingen" #~ msgid "Search files" #~ msgstr "Zoek bestanden" #~ msgid "User browse" #~ msgstr "Gebruiker verkennen" #~ msgid "User info" #~ msgstr "Gebruikers-info" #~ msgid "Chat rooms" #~ msgstr "Chatkamers" #~ msgid "Rescanning started" #~ msgstr "Herlezing gestart" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Herlezing gedeelde bestanden van vrienden gestart" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Herlezing gedeelde bestanden van vrienden klaar" #~ msgid "Rescanning finished" #~ msgstr "Herlezing klaar" #~ msgid "Send to tray" #~ msgstr "Zend naar systeemvak" #~ msgid "I like" #~ msgstr "Ik hou van" #~ msgid "I _don't like this" #~ msgstr "Ik haat _dit" #~ msgid "Ban this user" #~ msgstr "Verban deze gebruiker" #~ msgid "Ignore this user" #~ msgstr "Negeer deze gebruiker" #~ msgid "Unknown search mode, not using plugin system. Fix me!" #~ msgstr "" #~ "Onbekende zoekmodus, geen gebruik van plug-in systeem. Repareer mij!" #~ msgid "Search ID was none when clicking tab" #~ msgstr "Zoek-ID was geen bij klikken op tab" #~ msgid "Immediate Download" #~ msgstr "Directe download" #~ msgid "In queue" #~ msgstr "In wachtrij" #~ msgid "File _Properties" #~ msgstr "Bestand _Eigenschappen" #~ msgid "Search row error: %(exception)s %(row)s" #~ msgstr "Fout in zoekrij: %(exception)s %(row)s" #~ msgid "Warning: Bad Username" #~ msgstr "Pas op: Foute Gebruikersnaam" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "Gebruikersnaam 'None' kan niet, kies een andere a.u.b." #~ msgid "Warning: Invalid ports" #~ msgstr "Pas op: ongeldige poorten" #~ msgid "Client ports are invalid." #~ msgstr "Clientpoorten zijn ongeldig." #~ msgid "Users in list" #~ msgstr "Gebruikers in lijst" #~ msgid "home" #~ msgstr "huis" #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "Veiligheidsrisico: de map %s kun je beter niet delen!" #~ msgid "Add a shared buddy directory" #~ msgstr "Een gedeelde map voor vrienden toevoegen" #~ msgid "Ignore user..." #~ msgstr "Negeer gebruiker..." #~ msgid "IP:" #~ msgstr "IP:" #~ msgid "Ban user..." #~ msgstr "Verban gebruiker..." #~ msgid "Pick a color, any color" #~ msgstr "Kies een kleur, elke kleur" #~ msgid "Server" #~ msgstr "Server" #~ msgid "Colors" #~ msgstr "Kleuren" #~ msgid "Notebook Tabs" #~ msgstr "Notebook Tabs" #~ msgid "Initializing transfer" #~ msgstr "Overdracht wordt gestart" #~ msgid "Waiting for peer to connect" #~ msgstr "Wacht op verbinding van peer" #~ msgid "Connecting" #~ msgstr "Bezig met verbinden" #~ msgid "Getting address" #~ msgstr "Opvragen van adres" #~ msgid "Download directory error" #~ msgstr "Fout inkomende map" #~ msgid "Lookup a User's IP" #~ msgstr "Zoek IP-adres van gebruiker op" #~ msgid "ERROR: tray menu, %(error)s" #~ msgstr "FOUT: lademenu, %(error)s" #~ msgid "Get A User's IP" #~ msgstr "IP van een gebruiker verkrijgen" #~ msgid "ERROR: cannot set trayicon image: %(error)s" #~ msgstr "ERROR: kan geen trayicon-afbeelding instellen: %(error)s" #~ msgid "Clear finished/erred" #~ msgstr "Klaar/fout wissen" #~ msgid "Clear failed" #~ msgstr "Wis mislukt" #~ msgid "Directories" #~ msgstr "Mappen" #~ msgid "_Download directory" #~ msgstr "Download _Map" #~ msgid "Download directory _to..." #~ msgstr "Download map, _naar..." #~ msgid "Up_load file(s)" #~ msgstr "Up_load bestand(en)" #~ msgid "Speed: %s" #~ msgstr "Snelheid: %s" #~ msgid "Files: %s" #~ msgstr "Bestanden: %s" #~ msgid "Hates" #~ msgstr "Haat" #~ msgid "Total uploads allowed: %i" #~ msgstr "Totaal toegestane Uploads: %i" #~ msgid "Queue size: %i" #~ msgstr "Lengte wachtrij: %i" #~ msgid "Slots free: %s" #~ msgstr "Vrije slots: %s" #~ msgid "%s" #~ msgstr "%s" #~ msgid "Unknown (%(countrycode)s)" #~ msgstr "Onbekend (%(landcode)s)" #~ msgid "to %(user)s" #~ msgstr "aan %(user)s" #~ msgid "UPnP exception: %(error)s" #~ msgstr "UPnP-uitzondering: %(error)s" #~ msgid "Failed to automate the creation of UPnP Port Mapping rule." #~ msgstr "Kan het maken van de UPnP-poorttoewijzingsregel niet automatiseren." #~ msgid "Log" #~ msgstr "Logboek" #~ msgid "Press \"Next\" to start configuring Nicotine+." #~ msgstr "Druk op \"Volgende\" om Nicotine+ te configureren." #~ msgid "" #~ "To create a new user, fill in the username and password you want. If you " #~ "already have a Soulseek account, fill in your chosen details.\n" #~ "\n" #~ "Please keep in mind that more common usernames may be taken. If you're " #~ "unable to connect, you can change your username in the preferences later." #~ msgstr "" #~ "Om een nieuwe gebruiker aan te maken, vult u de gewenste gebruikersnaam " #~ "en wachtwoord in. Als je al een Soulseek-account hebt, vul dan de door " #~ "jou gekozen gegevens in.\n" #~ "\n" #~ "Houd er rekening mee dat er meer algemene gebruikersnamen kunnen worden " #~ "gebruikt. Als u geen verbinding kunt maken, kunt u uw gebruikersnaam " #~ "later wijzigen in de voorkeuren." #~ msgid "" #~ "Nicotine+ will still work to some degree if your port is closed. However, " #~ "do keep in mind that you won't be able to connect to users whose port is " #~ "also closed." #~ msgstr "" #~ "Nicotine+ zal tot op zekere hoogte nog steeds werken als uw poort " #~ "gesloten is. Houd er echter rekening mee dat u geen verbinding kunt maken " #~ "met gebruikers van wie de poort ook is gesloten." #~ msgid "Check my port status" #~ msgstr "Controleer mijn poortstatus" #~ msgid "Download files to the following directory:" #~ msgstr "Download bestanden naar de volgende map:" #~ msgid "Share the following directories:" #~ msgstr "Deel de volgende mappen:" #~ msgid "Only share files with friends" #~ msgstr "Deel alleen bestanden met vrienden" #~ msgid "" #~ "You do not publicly share any files. Sharing files is crucial for the " #~ "health of the Soulseek network, and many people will ban you if you " #~ "download from them without sharing anything yourself." #~ msgstr "" #~ "U deelt geen bestanden openbaar. Het delen van bestanden is cruciaal voor " #~ "de gezondheid van het Soulseek-netwerk, en veel mensen zullen je " #~ "verbannen als je ervan downloadt zonder zelf iets te delen." #~ msgid "Your Interests" #~ msgstr "Uw interesses" #~ msgid "Recommendations" #~ msgstr "Aanbevelingen" #~ msgid "Personal" #~ msgstr "persoonlijk" #~ msgid "Unrecommendations" #~ msgstr "Onaanbevelingen" #~ msgid "Similar Users" #~ msgstr "Vergelijkbare gebruikers" #~ msgid "Clear Queued" #~ msgstr "Wis Wachtende" #~ msgid "Autoclear finished / aborted" #~ msgstr "Autoclear voltooid / afgebroken" #~ msgid "Abort User's Uploads" #~ msgstr "Gebruikersuploads afbreken" #~ msgid "Clear all searches attempts" #~ msgstr "Wis alle zoekpogingen" #~ msgid "Show Info" #~ msgstr "Toon informatie" #~ msgid "Configure user info" #~ msgstr "Gebruikersinfo configureren" #~ msgid "Load from Disk" #~ msgstr "Laden vanaf schijf" #~ msgid "Debug output:" #~ msgstr "Debug uitvoer:" #~ msgid "Warnings" #~ msgstr "Waarschuwingen" #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Stuur het privé-bericht direct naar de andere gebruiker (niet ondersteund " #~ "op de meeste clients)" #~ msgid "This search term will be requested at regular intervals" #~ msgstr "Deze zoekterm wordt regelmatig opgevraagd" #~ msgid "Stop new search results from being displayed" #~ msgstr "Nieuwe zoekresultaten niet meer weergeven" #~ msgid "Self Description" #~ msgstr "Zelfbeschrijving" #~ msgid "Information" #~ msgstr "Informatie" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Max. toegestane uploads: onbekend" #~ msgid "Slots free: unknown" #~ msgstr "Vrije slots: onbekend" #~ msgid "Queue size: unknown" #~ msgstr "Wachtrij-lengte: onbekend" #~ msgid "Speed: unknown" #~ msgstr "Snelheid: onbekend" #~ msgid "Files: unknown" #~ msgstr "Bestanden: onbekend" #~ msgid "Directories: unknown" #~ msgstr "Mappen: onbekend" #~ msgid "Accepts Uploads from:" #~ msgstr "Accepteert uploads van:" #~ msgid "Interests" #~ msgstr "Interesses" #~ msgid "Picture" #~ msgstr "Afbeelding" #~ msgid "" #~ "The search wishlist can be useful when you are looking for rare content. " #~ "Search terms in the wishlist are automatically requested at regular " #~ "intervals." #~ msgstr "" #~ "De zoekverlanglijst kan handig zijn als u op zoek bent naar zeldzame " #~ "inhoud. Zoektermen in de verlanglijst worden automatisch met regelmatige " #~ "tussenpozen opgevraagd." #~ msgid "About chat room commands" #~ msgstr "Over chatkamer commando's" #~ msgid "Leave room 'room'" #~ msgstr "Verlaat kamer 'room'" #~ msgid "/bsearch /bs '%s'" #~ msgstr "/bzoek /bs '%s'" #~ msgid "About private chat commands" #~ msgstr "Over privégesprek commando's" #~ msgid "/toggle 'plugin'" #~ msgstr "/toggle 'plug-in'" #~ msgid "Toggle plugin on/off state" #~ msgstr "Schakel plug-in in/uit status" #~ msgid "About search filters" #~ msgstr "Over zoekfilters" #~ msgid "" #~ "You can use this to refine which results are displayed. The full results\n" #~ "from the server are always available if you clear all the search terms.\n" #~ "\n" #~ "You can filter by:\n" #~ "\n" #~ "- Included text:\n" #~ " Files are shown if they contain this text.\n" #~ " Case is insensitive, but word order is important.\n" #~ " 'Spears Brittany' will not show any 'Brittany Spears'\n" #~ "\n" #~ "- Excluded text:\n" #~ " As above, but files will not be displayed if the text matches\n" #~ "\n" #~ "- Size:\n" #~ " Shows results based on size. use > and < to find files larger or " #~ "smaller.\n" #~ " Files exactly the same as this term will always match.\n" #~ " Use = to specify an exact match. Use k or m to specify kilo or " #~ "megabytes.\n" #~ " >10M will find files larger than 10 megabytes.\n" #~ " <4000k will find files smaller than 4000k.\n" #~ "\n" #~ "- Bitrate:\n" #~ " Find files based on bitrate. Use < and > to find lower or higher.\n" #~ " >192 finds 192 and higher, <192 finds 192 or lower.\n" #~ " =192 only finds 192.\n" #~ " For VBR, the average bitrate is used.\n" #~ "\n" #~ "- Free slot:\n" #~ " Show only those results from users which have at least\n" #~ " one upload slot free.\n" #~ "\n" #~ "- To set the filter, press Enter. This will apply to any existing " #~ "results, and any more that are returned.\n" #~ "- To filter in a different way, just set the relevant terms.\n" #~ "- You do not need to do another search to apply a different filter." #~ msgstr "" #~ "U kunt dit gebruiken om te verfijnen welke resultaten worden weergegeven. " #~ "De volledige resultaten\n" #~ "van de server zijn altijd beschikbaar als u alle zoektermen wist.\n" #~ "\n" #~ "U kunt filteren op:\n" #~ "\n" #~ "- Inbegrepen tekst:\n" #~ " Bestanden worden getoond als ze deze tekst bevatten.\n" #~ " Hoofdletters zijn ongevoelig, maar de woordvolgorde is belangrijk.\n" #~ " 'Spears Bretagne' toont geen 'Brittany Spears'\n" #~ "\n" #~ "- Uitgesloten tekst:\n" #~ " Zoals hierboven, maar bestanden worden niet weergegeven als de " #~ "tekst overeenkomt\n" #~ "\n" #~ "- Maat:\n" #~ " Toont resultaten op basis van grootte. gebruik > en < om bestanden " #~ "groter of kleiner te zoeken.\n" #~ " Bestanden die exact hetzelfde zijn als deze term zullen altijd " #~ "overeenkomen.\n" #~ " Gebruik = om een exacte overeenkomst op te geven. Gebruik k of m om " #~ "kilo of megabytes op te geven.\n" #~ " >10M zal bestanden vinden die groter zijn dan 10 megabyte.\n" #~ " <4000k zal bestanden vinden die kleiner zijn dan 4000k.\n" #~ "\n" #~ "- Bitsnelheid:\n" #~ " Vind bestanden op basis van bitrate. Gebruik < en > om lager of " #~ "hoger te zoeken.\n" #~ " >192 vindt 192 en hoger, <192 vindt 192 of lager.\n" #~ " =192 vindt alleen 192.\n" #~ " Voor VBR wordt de gemiddelde bitrate gebruikt.\n" #~ "\n" #~ "- Vrije plaats:\n" #~ " Toon alleen die resultaten van gebruikers die ten minste\n" #~ " één uploadslot gratis.\n" #~ "\n" #~ "- Druk op Enter om het filter in te stellen. Dit is van toepassing op " #~ "alle bestaande resultaten en alle meer die worden geretourneerd.\n" #~ "- Om op een andere manier te filteren, stelt u gewoon de relevante termen " #~ "in.\n" #~ "- U hoeft niet opnieuw te zoeken om een ander filter toe te passen." #~ msgid "_Fast Configure" #~ msgstr "_Snel configureren" #~ msgid "Show _room list" #~ msgstr "Toon _kamerlijst" #~ msgid "Show _flag columns in user lists" #~ msgstr "Toon _vlag kolommen in gebruikerslijsten" #~ msgid "Show _buttons in transfer tabs" #~ msgstr "Toon _knoppen in overdrachtstabbladen" #~ msgid "About _chat room commands" #~ msgstr "_Commando's in chatkamer" #~ msgid "About _private chat commands" #~ msgstr "Commando's in _privégesprek" #~ msgid "About _search filters" #~ msgstr "Over filter_s" #~ msgid "Toggle away after " #~ msgstr "Zet status op afwezig na " #~ msgid "Enable Censorship" #~ msgstr "Censuur inschakelen" #~ msgid "General" #~ msgstr "Algemeen" #~ msgid "Chat Colors" #~ msgstr "Chatkleuren" #~ msgid "Username Font Style:" #~ msgstr "Gebruikersnaam-lettertype:" #~ msgid "Username Colors and Hotspots" #~ msgstr "Gebruikersnaamkleuren en hotspots" #~ msgid "Display away colors" #~ msgstr "Toon afwezig kleuren" #~ msgid "/me Text" #~ msgstr "/me tekst" #~ msgid "List and Search Colors" #~ msgstr "Lijst- en zoekkleuren" #~ msgid "With Queue" #~ msgstr "Met wachtrij" #~ msgid "Default Colors" #~ msgstr "Standaardkleuren" #~ msgid "Cycle completions instead of showing a dropdown" #~ msgstr "Doorloop aanvullingen in plaats van een drop-down lijst te tonen" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Inkomende bestanden vergrendelen (uitzetten voor NFS)" #~ msgid "Download SFV/MD5 before anything else" #~ msgstr "Download eerst SFV/MD5 vooraleer iets anders te downloaden" #~ msgid "" #~ "The users will be able to send you files. These files will be downloaded " #~ "into the Buddy Uploads subdirectory in your Download directory" #~ msgstr "" #~ "Deze gebruikers kunnen u bestanden sturen, welke opgeslagen worden in de " #~ "Uploads van vrienden map in je inkomende map." #~ msgid "Folders" #~ msgstr "Mappen" #~ msgid "Select a directory" #~ msgstr "Selecteer een map" #~ msgid "Download Filters" #~ msgstr "Filters downloaden" #~ msgid "Commands" #~ msgstr "Opdrachten" #~ msgid "Double-clicking on..." #~ msgstr "Dubbelklikken op..." #~ msgid "Upload transfers" #~ msgstr "Upload-overdrachten - Actie:" #~ msgid "Send to player" #~ msgstr "Stuur naar speler" #~ msgid "Open Directory" #~ msgstr "Map Openen" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "Geografische paranoia (blokkeer onoplosbare IP's)" #~ msgid "Tray" #~ msgstr "Lade" #~ msgid "Always send Nicotine+ to tray when main window is closed" #~ msgstr "" #~ "Stuur Nicotine+ altijd naar de lade als het hoofdvenster is gesloten" #~ msgid "Always quit when main window is closed" #~ msgstr "Nicotine+ altijd afsluiten wanneer het hoofdvenster wordt gesloten" #~ msgid "Icon Theme" #~ msgstr "Icoonthema" #~ msgid "Trayicon" #~ msgstr "Systeemvakpictogram" #~ msgid "Online:" #~ msgstr "Online:" #~ msgid "Away:" #~ msgstr "Afwezig:" #~ msgid "Offline:" #~ msgstr "Afgemeld:" #~ msgid "Nick Hilite:" #~ msgstr "Nick Hiliet:" #~ msgid "Hilite:" #~ msgstr "Markeer:" #~ msgid "Status" #~ msgstr "Status" #~ msgid "Notify:" #~ msgstr "melding geven:" #~ msgid "Ignored users:" #~ msgstr "Genegeerde gebruikers:" #~ msgid "Private Chat Logs directory:" #~ msgstr "Map voor logboek van privé-gesprekken:" #~ msgid "Read" #~ msgstr "Lezen" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Heropen laatste privé-gesprekken" #~ msgid "Tab Positioning" #~ msgstr "Tabpositionering" #~ msgid "Label Angle:" #~ msgstr "Labelhoek:" #~ msgid "Show a notification popup..." #~ msgstr "Een meldingspop-up weergeven..." #~ msgid "Player Command/Username" #~ msgstr "Speler commando/Gebruikersnaam" #~ msgid "Legend:" #~ msgstr "Legende:" #~ msgid "Example:" #~ msgstr "Voorbeeld:" #~ msgid "Plugin Properties" #~ msgstr "Eigenschappen van plug-ins" #~ msgid "characters or more" #~ msgstr "tekens of meer" #~ msgid "Send out a max of" #~ msgstr "Stuur een maximum uit van" #~ msgid "Your Searches" #~ msgstr "Uw zoekopdrachten" #~ msgid "" #~ "Remove special characters from search terms (some clients don't send " #~ "search results if they're included)" #~ msgstr "" #~ "Verwijder speciale tekens uit zoektermen (sommige klanten sturen geen " #~ "zoekresultaten als deze zijn opgenomen)" #~ msgid "" #~ "Reopen closed search tabs that haven't been ignored when new results come " #~ "in" #~ msgstr "" #~ "Heropen gesloten zoektabbladen die niet zijn genegeerd wanneer nieuwe " #~ "resultaten binnenkomen" #~ msgid "Max stored results per search:" #~ msgstr "Maximum opgeslagen resultaten per zoekopdracht:" #~ msgid "Search Filters" #~ msgstr "Zoekfilters" #~ msgid "Filter out:" #~ msgstr "Filter uitgaand:" #~ msgid "Filter in:" #~ msgstr "Filter inkomend:" #~ msgid "Ports" #~ msgstr "Poorten" #~ msgid "Automatically renew port mappings every" #~ msgstr "Vernieuw automatisch poorttoewijzingen elke" #~ msgid "hour(s)" #~ msgstr "uur(en)" #~ msgid "Back Up Config File" #~ msgstr "Back-up configuratiebestand" #~ msgid "Public Shares" #~ msgstr "Openbare aandelen" #~ msgid "" #~ "If buddy shares are enabled, they will be shared. Otherwise normal shares " #~ "will be used." #~ msgstr "" #~ "Als je bepaalde mappen alleen met vrienden deelt, zullen deze worden " #~ "gedeeld. Anders worden de normale gedeelde mappen gebruikt." #~ msgid "Buddies-Only Shares" #~ msgstr "Alleen Buddies-aandelen" #~ msgid "Upload Queue" #~ msgstr "Uploadwachtrij" #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "Gebruikers krijgen om de beurt elk één bestand" #~ msgid "KBytes/sec" #~ msgstr "KBytes/sec" #~ msgid "Megabytes" #~ msgstr "MB in de wachtrij plaatsen" #~ msgid "Privileges" #~ msgstr "Rechten" nicotine-plus-3.3.4/po/pl.po000066400000000000000000010214431461625273200157200ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Klient Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Graficzny klient sieci peer-to-peer Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Przeglądaj sieć Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ to graficzny klient sieci peer-to-peer Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ ma na celu być lekką, przyjemną, darmową i otwartoźródłową (FOSS) " "alternatywą dla oficjalnego klienta Soulseek, oferując jednocześnie obszerny " "zestaw funkcji." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Szukaj plików" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Pobieranie" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Przeglądaj udostępnione zasoby" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Czat prywatny" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Zespół Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Strona internetowa: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "pokaż tę wiadomość pomocy i wyjdź" #: pynicotine/__init__.py:59 msgid "file" msgstr "plik" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "użyj niestandardowego pliku konfiguracyjnego" #: pynicotine/__init__.py:63 msgid "dir" msgstr "katalog" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "alternatywny katalog dla danych użytkownika i wtyczek" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "uruchom program bez wyświetlania okna" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "powiąż gniazda z podanym adresem IP (przydatne dla VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "nasłuchuj na danym porcie" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "przeskanuj udostępnione pliki" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "uruchom program w trybie headless (bez GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "wyświetl wersję i wyjdź" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Używasz niewspieranej wersji Pythona (%(old_version)s).\n" "Wymagana wersja, to Python %(min_version)s lub nowsza." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Nie udało się przeskanować zasobów. Proszę zamknąć inne instancje Nicotine+ " "i spróbować ponownie." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s zaraz wraca" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s jest dostępny" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s jest niedostępny" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Status znajomego" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Zostałeś dodany do prywatnego pokoju: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Wiadomość na czacie od użytkownika '%(user)s' w pokoju '%(room)s': " "%(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Nie można utworzyć katalogu '%(path)s', błąd: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Błąd tworzenia kopii zapasowej konfiguracji: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Kopia zapasowa konfiguracji zapisana do: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Ładowanie %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Zamykanie %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "zakańczanie" #: pynicotine/core.py:237 msgid "application closing" msgstr "zamykanie aplikacji" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Wychodzenie z %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Musisz podać nazwę użytkownika i hasło przed połączeniem…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Błąd: Pobieranie filtrów nie powiodło się! Zweryfikuj filtry. Uzasadnienie: " "%s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Błąd: %(num)d Pobieranie filtrów nie powiodło się! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s pobrany od %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Plik pobrany" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Wywołano: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Problem z wywołaniem '%(command)s': %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s pobrany od %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Folder pobrany" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Wywołano na folderze: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Nie można przenieść '%(tempfile)s' do '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Błąd pobierania folderu" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Pobieranie zakończone: użytkownik %(user)s, plik %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Pobieranie przerwane, użytkownik %(user)s plik %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Błąd pobierania I/O: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Nie można uzyskać wyłącznej blokady na pliku - błąd I/O: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Nie można zapisać pliku w %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Pobieranie rozpoczęte: użytkownik %(user)s, plik %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Nie można znaleźć %s, proszę zainstalować." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Brak dostępnego środowiska graficznego, użycie trybu headless (bez GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Połącz" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Rozłącz" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Przywileje Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Ustawienia" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Zamknij" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "_Przeglądaj publicznie udostępnione zasoby" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Przeglądaj udostępnione zasoby znajomych" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Przeglądaj udostępnione zasoby zaufanych" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "Przeskanuj udostępnione zasoby" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Konfiguruj _zasoby" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Skróty klawiszowe" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Asystent konfiguracji" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Statystyki transferów" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Zgłoś _błąd" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Popraw tłumaczenie" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "O Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Plik" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Udostępnione zasoby" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Pomoc" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Przeglądaj zasoby" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Nie można wyświetlić powiadomienia: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Wciąż wysyłasz pliki. Czy na pewno chcesz wyjść?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Poczekaj na zakończenie przesyłania" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Czy na pewno chcesz wyjść?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "Nie" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "Działaj w tle" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Zamknij Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Udziały niedostępne" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Sprawdź, czy dyski zewnętrzne są zamontowane, a uprawnienia do folderów są " "prawidłowe." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Anuluj" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Ponów" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Wymuś ponowne skanowanie" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Błędne hasło" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Użytkownik %s już istnieje, a wprowadzone hasło jest nieprawidłowe. Proszę " "wybrać inną nazwę użytkownika, jeśli logujesz się po raz pierwszy." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Zmień dane logowania" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Informowanie użytkowników pobierających pliki" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Wyślij prywatną wiadomość do wszystkich użytkowników, którzy pobierają od " "Ciebie:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "Wyślij wiadomość" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Zawiadom znajomych" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Wyślij prywatną wiadomość do wszystkich znajomych online:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Wybierz zapisaną listę udostępnień z pliku" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Błąd krytyczny" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Program Nicotine+ napotkał błąd krytyczny i musi zostać zamknięty. Proszę " "skopiować poniższy błąd i dołączyć go do raportu o błędzie:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Zamknij Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Skopiuj i zgłoś błąd" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Kraj" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Użytkownik" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Prędkość" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Pliki" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Zaufany" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Powiadom" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Priorytetowe" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Ostatnio widziany" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Notatka" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Dodaj _notatkę użytkownika…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Usuń" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nigdy nie widziany" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Dodaj notatkę użytkownika" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Dodaj notatkę o użytkowniku %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Dodaj" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Utworzyć nowy pokój?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Jesteś pewien, że chcesz utworzyć nowy pokój \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Uczyń pokój prywatnym" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Szuk_aj wśród plików użytkownika" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Szukaj…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopiuj" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopiuj wszystko" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Wyczyść widok aktywności" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "Opuść _pokój" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Kopiuj link" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Wyświetl dziennik pokoju" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Usuń dziennik pokoju…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Wyczyść widok wiadomości" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s dołączył do pokoju" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s wspomniał o Tobie w pokoju %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Wspomniany przez %(user)s w pokoju %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Wiadomość od %(user)s w pokoju %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s opuścił pokój" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s zaraz wraca" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s powrócił" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Usunąć zarejestrowane wiadomości?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Czy na pewno chcesz trwale usunąć wszystkie zarejestrowane wiadomości dla " "tego pokoju?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "O alikacji" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Strona internetowa" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Błąd podczas sprawdzania najnowszej wersji: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Dostępna nowa wersja: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Aktualny" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Sprawdzanie najnowszej wersji…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Asystent konfiguracji" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Wirtualny folder" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Folder" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "Zakończ" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Następny" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Udostępnij folder" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Edytuj udostępnione foldery" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Wprowadź nową wirtualną nazwę dla '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "Edytuj" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Właściwości pliku" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Właściwości pliku (%(num)i z %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Właściwości pliku (%(num)i z %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Zastosuj" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Dodaj…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Edytuj…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "Ustawienia %s" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Dodaj obiekt" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Edytuj obiekt" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Nieznany" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Sprawdź status portu" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Nie można zmienić hasła" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Wprowadź nowe hasło do swojego konta Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Jesteś wylogowany z sieci Soulseek. Jeśli próbujesz zmienić hasło dla " "istniejącego już konta, musisz najpierw zalogować się." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Wprowadź hasło, które będzie używane podczas logowania:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Zmień hasło" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "Zmień" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Nikt" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Każdy" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Znajomi" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Zaufani użytkownicy" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nic" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Otwórz plik" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Otwórz w eksploratorze plików" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Wyszukiwanie" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pauza" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Wznów" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Przeglądaj folder" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Składnia: wielkość liter nie ma znaczenia. Jeśli włączone, można " "używać wyrażeń regularnych języka Python, w przeciwnym razie obsługiwane są " "tylko dopasowania wieloznaczne *." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtr" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Wyrażenie regularne" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Dodaj filtr pobierania" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Wprowadź nowy filtr pobierania:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Włącz wyrażenia regularne" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Edytuj filtr pobierania" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modyfikuj ten filtr pobierania:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Błąd! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtrowanie zakończone" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Publiczny" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Dostępne dla" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Przerwij" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Ponów" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Pierwsze weszło, Pierwsze wyszło (FIFO)" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Użytkownik" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Adres IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignoruj użytkownika" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Wprowadź nazwę użytkownika, którego chcesz ignorować:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignoruj adres IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Wprowadź adres IP, który chcesz ignorować:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* to symbol wieloznaczny" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Zablokuj użytkownika" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Wprowadź nazwę użytkownika, którego chcesz zablokować:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Zablokuj adres IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Wpisz adres IP, który chcesz zablokować:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Format kodów" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Wzór" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Zamiennik" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Wzór cenzurowania" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Wprowadź wzór, który chcesz ocenzurować. Dodaj spacje wokół słów jeśli nie " "chcesz uwzględniać poszczególnych ciągów znaków wewnątrz wyrazów (może " "skutkować błędami w przypadku końca linii)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Edycja cenzurowanego wzoru" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Dodaj zamiennik" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Wprowadź wzór tekstu i to, co ma go zastąpić:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Edytuj zamiennik" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Domyślne systemowe" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Pokaż okno potwierdzenia" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Działaj w tle" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "pogrubienie" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "podkreślenie" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "podkreślenie" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normalnie" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Oddzielna karta znajomych" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Pasek boczny na karcie Pokoje rozmów" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Zawsze widoczny pasek boczny" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Góra" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Dół" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Lewa" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Prawa" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Połączony" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Zaraz wracam" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Rozłączony" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Karta zmieniona" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Karta podświetlona" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Okno" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Połączony (zasobnik)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Zaraz wracam (zasobnik)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Rozłączony (zasobnik)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Wiadomość (zasobnik)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokół" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Komenda" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Dodaj obsługę adresu URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Wprowadź protokół i polecenie programu obsługi adresów URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Edytuj polecenie" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Wprowadź nowe polecenie dla protokołu %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nazwa użytkownika;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Odtwarzacz muzyki (np. amarok, audacious, exaile); pozostaw puste, aby " "automatycznie wykryć:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Użytkownik: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Komenda:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Tytuł" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Teraz odtwarzanie (zazwyczaj \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artysta" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Czas trwania" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Komentarz" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Numer ścieżki" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Rok" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nazwa pliku (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Włączony" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Wtyczka" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Nie wybrano wtyczki" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Sieć" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interfejs użytkownika" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Udostępnione zasoby" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Wysyłanie" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Wyszukiwanie" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Profil użytkownika" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Czaty" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Teraz odtwarzanie" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Logowanie zdarzeń" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Zablokowani użytkownicy" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Ignorowani użytkownicy" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Wtyczki" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Obsługi protokołów URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Ustawienia" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Podaj nazwę pliku dla kopii zapasowej konfiguracji" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Statystyki transferów" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Razem od %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Zresetować statystyki transferów?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Czy jesteś pewien, że chcesz zresetować statystyki transferów?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Lista życzeń" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Życzenia" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Szukaj tego obiektu" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Edytuj życzenie" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Wprowadź nową wartość dla życzenia '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Wyczyścić listę życzeń?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Jesteś pewien, że chcesz wyczyścić listę życzeń?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Ścieżka" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Wznów" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_auza" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Zakończone / Filtrowane" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Zakończone" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Zapauzowany" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrowane" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Usunięto" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "W kolejce…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Wszystko…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Wyczyść kolejkę pobierania" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Czy na pewno chcesz usunąć wszystkie pliki z kolejki pobierania?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Wyczyść wszystkie pobrane" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Jesteś pewien, że chcesz wyczyścić wszystkie pobrane?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Pobrać %(num)i plików?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Jesteś pewien, że chcesz pobrać %(num)i plików z folderu %(folder)s " "użytkownika %(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "Folder pobierania" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Lubię" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Nie lubię" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Ocena" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Obiekt" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "Re_komendacje dla tego obiektu" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "L_ubię to" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Nie L_ubię tego" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Rekomendacje" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Podobni użytkownicy" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Rekomendacje (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Podobni użytkownicy (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Prywatna wiadomość od %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Znaleziono wyniki listy życzeń" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Profile użytkowników" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Lista pokoi" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Zainteresowania" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Czat" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Debugowanie] Połączenia" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Debugowanie] Wiadomości" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debugowanie] Transfery" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debugowanie] Różne" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Szukaj…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopiuj" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Kopiuj wszystko" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Wyświetl _dzienniki debugowania" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Wyświetl dziennik _transferu" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Kategorie dziennika" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Wyczyść widok dziennika" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Pobierane: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Wysyłane: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Przygotowywanie zasobów" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Skanowanie udostępnionych zasobów" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Wychodzenie..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Ostatnia wiadomość" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Pokój" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Użytkownicy" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Dołącz do pokoju" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Opuść pokój" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Odrzuć prywatny pokój" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Anuluj członkostwo w pokoju" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Zamknij wszystkie karty…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Zamknij kartę" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Wyświetl dziennik czatu" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Usuń dziennik czatu…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Działania użytkownika" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Czy na pewno chcesz trwale usunąć wszystkie zarejestrowane wiadomości dla " "tego użytkownika?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Wiadomości wysłane, podczas bycia rozłączonym" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "Globalne" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "Znajomi" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "Pokoje" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "Użytkownik" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "W kolejce" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Typ pliku" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nazwa pliku" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Rozmiar" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Jakość" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Kopiuj ścieżkę _pliku" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopiuj _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Kopiuj U_RL folderu" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Pobierz plik(i)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Pobierz plik(i) _do…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Pobierz _folder(y)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Pobierz _folder(y) do…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Wyświetl profil użytkownika" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Przeglądaj folder" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Właściwości pliku" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Kopiuj wyszukiwane hasło" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Wyczyść wszystkie wyniki" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Wyczyść filtry" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Przywróć filtry" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRYWATNY] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Filtrowanie wyników [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Filtrowanie wyników" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d - ilość aktywnych filtrów" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Dodaj życzenie" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Usuń życzenie" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Wybierz wyniki użytkownika" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Razem: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Wyniki" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Wybierz folder docelowy dla pliku(ów)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Wybierz folder docelowy" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "W kolejce" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "W kolejce (z priorytetem)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "W kolejce (uprzywilejowany)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Pobieranie statusu" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transferowanie" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Połączenie zakończone" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Limit czasu połączenia" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Użytkownik wylogowany" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Anulowane" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Błąd pobierania folderu" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Błąd lokalnego pliku" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Zablokowany" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Plik nie jest udostępniany" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Oczekiwanie na wyłączenie" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Błąd odczytu pliku" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Kolejka" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Procent" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Upłynęło" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Pozostało" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "Otwórz plik" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Otwórz w eksploratorze plików" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Szukaj" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Wyczyść wszystko" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Wybierz transfery użytkownika" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "Przerwij" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Zakończone / Anulowane / Błędne" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Zakończone / Anulowane" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Błędne" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Użytkownik wylogowany" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Wyczyść kolejkę wysyłania" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Jesteś pewien, że chcesz wyczyścić kolejkę wysyłania?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Wyczyść wszystkie wysłane" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Jesteś pewien, że chcesz wyczyścić wszystkie wysłane?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Zapisz listę zasobów na dysk" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Wyślij folder i podfolder(y)…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Kopiuj ścieżkę folderu" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "Pobierz folder i podfolder(y)" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Pobierz folder i podfolder(y) do…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Nazwa pliku" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Wyślij plik(i)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Wyślij folder…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Pobierz _folder do…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Lista zasobów użytkownika jest pusta. Możliwe, że użytkownik niczego nie " "udostępnia lub robi to prywatnie." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Nie można zażądać listy zasobów użytkownika. Możliwe, że użytkownik jest " "rozłączony, obaj macie zamknięte porty albo jest tymczasowy problem z " "połączeniem." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Wybierz miejsce docelowe dla pobierania wielu folderów" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Wyślij folder (z podfolderami) do użytkownika" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Wyślij folder do użytkownika" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Wprowadź użytkownika, któremu chcesz wysłać:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Wyślij" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Wybierz folder docelowy dla pliku(ów)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Wyślij plik(i) do użytkownika" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Kopiuj zdjęcie" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Zapisz zdjęcie" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Nie udało się załadować obrazu dla użytkownika %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Nie można zażądać listy zasobów użytkownika. Możliwe, że użytkownik jest " "rozłączony, obaj macie zamknięte porty albo jest tymczasowy problem z " "połączeniem." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Usuń znajomego" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Dodaj znajomego" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Odblokuj użytkownika" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Nie ignoruj użytkownika" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Tak" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nie" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Proszę podać liczbę dni." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Podaruj dni swoich przywilejów Soulseek użytkownikowi %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s pozostało" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Przywileje prezentowe" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Udziel pozwolenia" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Zamknij" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Tak" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Wybierz plik" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Wybierz folder" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Wybierz" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Wybierz obraz" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Wszystkie obrazy" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Zapisz jako…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Brak)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Zamknij kartę" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Zamknąć wszystkie karty?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Jesteś pewien, że chcesz zamknąć wszystkie karty?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i nieprzeczytanych kart" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Wszystkie karty" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Ot_wórz ponownie zamkniętą kartę" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Plik(ów) wybrany(ch)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "Przeglądaj pliki" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "Dodaj znajomego" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Pokaż adres IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Prywatne pokoje" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Usuń z prywatnego pokoju %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Dodaj do prywatnego pokoju %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Usuń jako operatora %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Dodaj jako operatora %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- stare wiadomości powyżej ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Wykonywalny" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Obraz" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Archiwum" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Różne" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Wideo" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Dokument" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Tekst" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Błąd ładowania niestandardowej ikony %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Ukryj Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Pokaż Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Kolumna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Niepogrupowane" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Grupuj folderami" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Grupuj użytkownikami" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Czy na pewno chcesz wyjść? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "Użytkownik %s już istnieje, a wprowadzone hasło jest nieprawidłowe." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" "Wpisz %s, aby zalogować się przy użyciu innej nazwy użytkownika lub hasła." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Hasło: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "W celu utworzenia nowego użytkownika, podaj jego nazwę i hasło. Jeśli już " "masz konto Soulseek, wypełnij poniższe dane." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Następujące zasoby nie są dostępne:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Ponowić próbę skanowania? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nie można zapisać do pliku dziennika \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Nie można uzyskać dostępu do pliku dziennika %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andora" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Zjednoczone Emiraty Arabskie" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua i Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktyda" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentyna" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Amerykańskie" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Wyspy Alandzkie" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbejdżan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bośnia i Hercegowina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesz" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgia" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bułgaria" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrajn" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Św Barthelemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudy" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Boliwia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius i Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brazylia" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamy" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Wyspa Bouveta" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Białoruś" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Wyspy Kokosowe (Keelinga)" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Demokratyczna Republika Konga" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Republika Środkowoafrykańska" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Szwajcaria" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Wybrzeże Kości Słoniowej" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Wyspy Cooka" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Chiny" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolumbia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Kostaryka" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Wyspa Bożego Narodzenia" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Cypr" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Czechy" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Niemcy" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Dżibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dania" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominikana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algieria" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ekwador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egipt" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Sahara Zachodnia" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Erytrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Hiszpania" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiopia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlandia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fidżi" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Wyspy Falklandzkie (Malwiny)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikronezja" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Wyspy Owcze" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Francja" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Wielka Brytania" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Gruzja" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Gujana Francuska" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Grenlandia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Gwinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Gwadelupa" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Gwinea Równikowa" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grecja" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Południowa Georgia i Południowe Wyspy Sandwicha" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Gwatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Gwinea Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Gujana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Wyspy Heard i McDonalda" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Chorwacja" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Węgry" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonezja" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlandia" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Izrael" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Wyspa Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Indie" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Brytyjskie Terytorium Oceanu Indyjskiego" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islandia" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Włochy" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamajka" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordania" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japonia" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kirgistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kambodża" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Komory" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts i Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Korea Północna" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Korea Południowa" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwejt" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Kajmany" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazachstan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Liban" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Litwa" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luksemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Łotwa" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Maroko" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Mołdawia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Czarnogóra" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Wyspy Marshalla" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedonia Północna" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Makau" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Mariany Północne" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martynika" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauretania" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Malediwy" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Meksyk" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malezja" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambik" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nowa Kaledonia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Wyspa Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nikaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Niderlandy" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norwegia" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nowa Zelandia" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinezja Francuska" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua Nowa Gwinea" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipiny" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polska" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre i Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Portoryko" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Państwo Palestyna" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugalia" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paragwaj" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumunia" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rosja" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arabia Saudyjska" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Wyspy Salomona" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seszele" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Szwecja" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Święta Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Słowenia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Wyspy Svalbard i Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Słowacja" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudan Południowy" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Wyspy Świętego Tomasza i Książęca" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "Salwador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Syria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Wyspy Turks i Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Czad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Francuskie Terytoria Południowe" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tajlandia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tadżykistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor Wschodni" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunezja" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turcja" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trynidad i Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Tajwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Stany Zjednoczone" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Urugwaj" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Stolica Apostolska (Państwo Watykańskie)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent i Grenadyny" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Wenezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Brytyjskie Wyspy Dziewicze" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Wyspy Dziewicze Stanów Zjednoczonych" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Wietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis i Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Majotta" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Republika Południowej Afryki" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Błędna zamiana tekstu na mowę dla wiadomości: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Proszę podać nazwę użytkownika i klucz API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Błąd Teraz Odtwarzania" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nie można się połączyć z Audioscroblerem: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Nie można pobrać ostatnio odtwarzanego utworu z Audioscrobblera: " "%(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nie znaleziono odpowiedniego odtwarzacza MPRIS" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Znaleziono kilka odtwarzaczy MPRIS: %(players)s. Używanie: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatyczne wybieranie odtwarzacza MPRIS: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" "MPRIS. Coś poszło nie tak podczas odpytywania %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Podaj nazwę użytkownika" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nie można się połączyć z ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Wygląda na to, że w tej chwili niczego nie słuchasz" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Nie można pobrać aktualnie odtwarzanego utworu z ListenBrainz: " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Filtry sieciowe" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Lista dostępnych komend" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Połącz z serwerem" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Rozłącz od serwera" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Przełącza Cię w status \"Zaraz wracam\"" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Zarządzaj wtyczkami" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Wyczyść okno czatu" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Powiedz coś w trzeciej osobie" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Ogłoś aktualnie odtwarzany utwór" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Dołącz do czatu" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Opuść ten pokój" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Powiedz wiadomość w określonym pokoju rozmów" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Otwórz czat prywatny" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Zamknij czat prywatny" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Zapytaj o wersję klienta użytkownika" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Wyślij prywatną wiadomość do użytkownika" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Dodaj użytkownika do listy znajomych" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Usuń użytkownika z listy znajomych" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Przeglądaj pliki użytkownika" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Pokaż informacje o profilu użytkownika" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Pokaż adres IP lub nazwę użytkownika" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Blokuj połączenia od użytkownika lub adresu IP" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Usuń użytkownika lub adres IP z listy zablokowanych" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Wycisz wiadomości od użytkownika lub adresu IP" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Usuń użytkownika lub adres IP z listy ignorowanych" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Dodaj zasób" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Usuń zasób" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Wylistuj udostępnione zasoby" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Przeskanuj udostępnione zasoby" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Rozpocznij globalne wyszukiwanie plików" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Wyszukiwanie plików wśród dołączonych pokojów" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Wyszukiwanie plików wśród znajomych" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Wyszukiwanie wśród plików udostępnionych przez użytkownika" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Zestawienie %(num)i dostępnych poleceń:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Lista %(num)i dostępnych poleceń pasujących do \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Wpisz %(command)s, aby wyświetlić listę podobnych poleceń" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Wpisz %(command)s, aby wyświetlić listę dostępnych poleceń" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Nie połączony w pokoju %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Brak wiadomości z użytkownikiem %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Zamknięty czat prywatny użytkownika %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Zablokowany %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Odblokowany %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Zignorowano %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Nieignorowany %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s udostępnione pliki (%(num_total)s skonfigurowane)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Nie można udostępnić niedostępnego folderu „%s”" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Dodano %(group_name)s udostępnij \"%(virtual_name)s\" (wymagane ponowne " "skanowanie)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Brak współdzielenia z \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Usunięto udział „%s” (wymagane ponowne skanowanie)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Ładowanie obsługi wtyczek" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Nie można załadować wtyczki %(name)s. Nazwa folderu wtyczki zawiera " "nieprawidłowe znaki: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konfliktowe polecenie %(interface)s we wtyczce %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Załadowana wtyczka %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nie można załadować wtyczki %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Nieaktywna wtyczka %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nie można dezaktywować wtyczki %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Wtyczka %(module)s z błędem %(errortype)s: %(error)s.\n" "Trace: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Brak opisu" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Brak argumentu %s" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Nieprawidłowy argument, możliwe opcje: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Użycie: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Nieznana komenda: %(command)s. Wpisz %(help_command)s, aby wyświetlić listę " "dostępnych poleceń." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Nie znaleziono urządzeń UPnP" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Nie udało się przekierować portu zewnętrznego " "%(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Zewnętrzny port %(external_port)s pomyślnie przekierowany na " "lokalny adres IP %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Prywatna wiadomość od użytkownika '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Wyszukiwanie pozycji listy życzeń \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Okres oczekiwania na listę życzeń ustawiony na %s sekund" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Użytkownik %(user)s wyszukuje \"%(query)s\", znaleziono %(num)i wyników" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Ponowne budowanie zasobów…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Ponowne skanowanie zasobów…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Ponowne skanowanie zakończone: znaleziono %(num)s foldery/ów" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Wystąpił poważny błąd podczas ponownego skanowania zasobów. Jeśli problem " "będzie się utrzymywać, usuń %(dir)s/*.dbn i spróbuj ponownie. Jeśli to nie " "pomoże, utwórz plik z raportem błędu z danymi: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Błąd podczas skanowania pliku %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Błąd podczas skanowania folderu %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Błąd podczas skanowania metadanych dla pliku %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Ponowne skanowanie przerwane z powodu niedostępnych udziałów: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Użytkownik %(user)s przegląda twoją listę udostępnionych zasobów" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Błąd podczas pobierania zawartości folderu %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Nie można odczytać bazy danych zasobów. Proszę ponownie przeskanować zasoby. " "Błąd: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Określony interfejs sieciowy '%s' jest niedostępny" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Nie można nasłuchiwać na porcie %(port)s. Upewnij się, że żadna inna " "aplikacja go nie używa, lub wybierz inny port. Błąd: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Nasłuchiwanie na porcie: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nie można połączyć się z serwerem %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Ponowne połączenie z serwerem za %i sekund" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Łączenie z %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Połączony do serwera %(host)s:%(port)s, logowanie…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Rozłączony od serwera %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Ktoś zalogował się na twoje konto Soulseek gdzieś indziej" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Wysyłanie zakończone: użytkownik %(user)s, adres IP %(ip)s, plik %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Wysyłanie przerwane, użytkownik %(user)s plik %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Błąd wysyłania I/O: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Wysyłanie rozpoczęte: użytkownik %(user)s, adres IP %(ip)s, plik %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Nie można utworzyć katalogu '%(folder)s', błąd: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Ładowanie zasobów z dysku nie powiodło się: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Zapisano listę zasobów plików dla użytkownika '%(user)s' do %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Nie można zapisać zasobów, '%(user)s', błąd: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Obraz zapisany do %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Nie można zapisać zdjęcia do %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Użytkownik %(user)s wyświetla Twój profil" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nie można połączyć się z serwerem. Powód: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Nie można połączyć" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Adres IP użytkownika %s jest nieznany odkąd użytkownik jest rozłączony" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Adres IP użytkownika %(user)s to %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Ogłoszenie Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i uprzywilejowanych użytkowników" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Nie masz już przywilejów Soulseek. Gdy są one aktywne, pliki do pobrania " "będą umieszczane w kolejce przed plikami użytkowników nieuprzywilejowanych." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dni, %(hours)i godzin, %(minutes)i minut, %(seconds)i sekund " "przywilejów Soulseek" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Twoje hasło zostało zmienione" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Hasło zostało zmienione" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Nie można otworzyć ścieżki pliku %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Nie można otworzyć adresu URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Coś poszło nie tak podczas czytania pliku %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Próba załadowania kopii zapasowej pliku %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Nie można utworzyć kopii pliku konfiguracyjnego w %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Nie można zapisać pliku konfiguracyjnego w %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Nie można przywrócić pliku konfiguracyjnego z %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Dodaj znajomego…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Przeszukaj dziennik aktywności…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Przeszukaj dziennik czatów…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Wyślij wiadomość…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Przełącznik zamiany tekstu na mowę" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Lista komend w pokojach rozmów" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Log" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Ściana pokoju" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Ściana pokoju" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Stworzone przez" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Przetłumaczone przez" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licencja" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Wstecz" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Witaj w Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "Konfiguruj…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Jeśli żądana nazwa użytkownika jest już zajęta, zostaniesz poproszony o jej " "zmianę." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Aby połączyć się z innymi urządzeniami Soulseek, port nasłuchiwania w " "routerze musi zostać przekierowany do komputera." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Jeśli port nasłuchiwania jest zamknięty, to będziesz mieć tylko możliwość " "połączenia się do tych użytkowników, których port jest otwarty." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "W razie potrzeby wybierz inny port nasłuchu poniżej. Można to również zrobić " "później w preferencjach." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Pobierz pliki do folderu" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Udostępnianie folderów" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Użytkownicy Soulseek będą mogli pobierać z Twoich udziałów. Przyczyniaj się " "do rozwoju sieci Soulseek, udostępniając własną kolekcję i udostępniając " "ponownie to, co pobrałeś od innych użytkowników." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Jesteś gotowy by używać Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek to niezaszyfrowany protokół nieprzeznaczony do bezpiecznej " "komunikacji." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Darowizna dla Soulseek daje Ci przywileje na określony czas. Jeśli posiadasz " "przywileje, Twoje pobrania zostaną ustawione w kolejce przed " "nieuprzywilejowanymi użytkownikami." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Poprzedni plik" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Następny plik" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nazwa" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Ostatnia prędkość" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Eksport…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Skróty klawiszowe" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Ogólne" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Połącz" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Rozłącz" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Przeskanuj udostępnione zasoby" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Pokaż okno logów" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Potwierdź wyjście z programu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Zamknij" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Otwórz główne menu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Otwórz menu kontekstowe" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Karty" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Zmień kartę główną" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Przejdź do poprzedniej karty dodatkowej" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Przejdź do następnej karty dodatkowej" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Otwórz ponownie kartę dodatkową" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Zamknij kartę dodatkową" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listy" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Kopiuj wybraną komórkę" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Usuń zaznaczony wiersz" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Edytowanie" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Wytnij" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Wklej" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Wstaw Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Wybierz wszystko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Szukaj" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Znajdź następne wystąpienie" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Znajdź poprzednie wystąpienie" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transfery" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Ponów transfer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Przerwij transfer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Pobierz / Wyślij do" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Zapisz listę na dysku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Odśwież" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Rozwiń / Zwiń wszystko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Powrót do folderu nadrzędnego" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Wyszukiwanie plików" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtrowanie wyników" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Aktualna sesja" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Zakończone pobierania" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Rozmiar pobranych" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Zakończone wysyłania" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Rozmiar wysłanych" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Łącznie" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Reset…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Pozycje listy życzeń są automatycznie przeszukiwane w regularnych odstępach " "czasu, w celu wykrycia niecodziennych plików." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Dodaj życzenie…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Wyczyść wszystko…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Wyczyść wszystkie zakończone/filtrowane pobrania" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Wyczyść zakończone" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Wyczyść określone pobrane" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Wyczyść _wszystkie…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Zainteresowania" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Dodaj coś, co lubisz…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Osobiste niechęci" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Dodaj coś, czego nie lubisz…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Odśwież listę rekomendacji" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Główne menu" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Pokój…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Użytkownik…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Wyszukiwana fraza…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Wzory wyszukiwania: z wyrazem = wyrażenie, bez wyrazu = -wyrażenie, część " "wyrazu = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Zakres wyszukiwania" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Lista życzeń" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Konfiguracja wyszukiwania" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Wprowadź frazę wyszukiwania, aby wyszukać pliki udostępnione przez innych " "użytkowników w sieci Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Tryb grupowania plików" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Konfiguracja pobierania" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Pliki pobierane od innych użytkowników są tutaj umieszczane w kolejce i mogą " "być wstrzymywane i wznawiane na żądanie" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Konfiguracja wysyłania" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Próby pobierania przez użytkowników Twoich udostępnionych plików są tutaj " "kolejkowane i zarządzane" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Otwórz listę" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Otwiera lokalną listę udostępnionych plików, która została wcześniej " "zapisana na dysku" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Konfiguracja udostępnionych zasobów" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Wprowadź nazwę użytkownika, aby przeglądać jego listę udostępnionych plików. " "Możesz również zapisać listę i przejrzeć ją później." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_Profil personalny" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Konfiguruj konto" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Wprowadź nazwę użytkownika, aby wyświetlić jego opis, informacje i zdjęcie" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "Historia czatu" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Konfiguracja czatów" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Wprowadź nazwę użytkownika, aby rozpocząć z nim czat prywatny" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Wiadomość do wszystkich" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Konfiguracja zablokowanych użytkowników" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Dodaj użytkowników do swojej listy znajomych, aby udostępniać im określone " "foldery i otrzymywać powiadomienia, gdy są dostępni" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Dołącz lub utwórz pokój…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Dołącz do istniejącego pokoju czatowego lub stwórz nowy pokój, aby rozmawiać " "z innymi użytkownikami sieci Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Konfiguruj profil użytkownika" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Szukaj w logach…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Połączenia" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Pobieranie (Prędkość / Aktywni użytkownicy)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Wysyłanie (Prędkość / Aktywni użytkownicy)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Przeszukaj historię czatu…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Limity prędkości pobierania" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Nieograniczona prędkość pobierania" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Limit prędkości pobierania (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternatywna prędkość pobierania (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Wyszukaj pokoje…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Odśwież listę pokoi" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Pokaż kanał wiadomości z publicznego pokoju rozmów" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Akceptuj zaproszenia do prywatnych pokoi" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Napisz pojedynczą wiadomość, którą inni użytkownicy pokoju będą mogli " "przeczytać później. Ostatnie wiadomości są pokazywane na górze." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Ustaw wiadomość ściany pokoju…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Rezultaty filtrowania wyszukiwania" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Rezultaty filtrowania wyszukiwania służą do doprecyzowania wyświetlanych " "wyników wyszukiwania." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Każda lista wyników wyszukiwania ma swój własny filtr, którego można użyć " "przełączając przycisk Filtry wyników. Filtr składa się z wielu pól, z " "których wszystkie są stosowane po naciśnięciu Enter w którymś z jego pól. " "Filtrowanie jest stosowane natychmiast do wyników już otrzymanych, a także " "do tych, które dopiero nadejdą." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Jak sama nazwa wskazuje, filtr wyników wyszukiwania nie może rozszerzyć " "pierwotnego wyszukiwania, może je jedynie zawęzić. Aby poszerzyć lub zmienić " "wyszukiwane hasła, przeprowadź nowe wyszukiwanie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Użycie filtra wyników" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Uwzględnij tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Pliki, foldery i nazwy użytkowników zawierające ten tekst będą pokazane." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Wielkość liter nie ma znaczenia, ale ważna jest kolejność słów: " "\"Instrumental Remix\" nie pokaże żadnego \"Remix Instrumental\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Użyj | (lub potoków), aby oddzielić kilka dokładnych fraz. Przykład:\n" " Remiksy|Dub Mix|Instrumentalne" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Pomiń tekst" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "Jak wyżej, ale pliki i foldery są odfiltrowywane, jeśli tekst pasuje." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtrowanie plików na podstawie rozszerzenia." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Można podać wiele rozszerzeń plików, co z kolei poszerzy listę wyników. " "Przykład:\n" " flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Możliwe jest również odwrócenie filtra, określając rozszerzenia plików, " "których nie chcesz w wynikach za pomocą wykrzyknika! Przykład:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Rozmiar pliku" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtrowanie plików na podstawie rozmiaru." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Domyślnie używaną jednostką jest bajt (B), a pliki większe lub równe (>=) " "tej wartości będą dopasowywane." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Dodaj b, k, m lub g (alternatywnie kib, mib lub gib) by określić jednostki " "bajtów, kibibajtów, mebibajtów lub gibibajtów:\n" " 20m aby pokazać pliki większe niż 20 MiB (mebibajtów)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Poprzedź = do wartości, aby określić dokładne dopasowanie:\n" " =1024 dopasowuje tylko pliki, które mają rozmiar 1 KiB (kibibajt)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Przedrostek ! do wartości, aby wykluczyć pliki o określonym rozmiarze:\n" " !30,5m, aby ukryć pliki, które mają 30,5 MiB (mebibajtów)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Poprzedź < lub >, aby znaleźć pliki mniejsze/większe od podanej wartości. " "Użyj spacji pomiędzy każdym warunkiem, aby zawrzeć zakres:\n" " >10,5m <1g, aby pokazać pliki większe niż 10,5 MiB, ale mniejsze niż 1 " "GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Bardziej znane warianty kb, mb i gb mogą być również używane dla jednostek " "kilobajtowych, megabajtowych i gigabajtowych." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtrowanie plików na podstawie bitrate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Wartości należy wprowadzać wyłącznie jako cyfry. Jednostką jest zawsze Kb/s " "(kilobity na sekundę)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Podobnie jak rozmiar pliku (powyżej), operatory =, !, <, >, <= lub >= mogą " "być używane i można określić wiele warunków, na przykład, aby wyświetlić " "pliki o przepływności co najmniej 256 Kb/s z maksymalną bitrate 1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtruje pliki na podstawie czasu ich trwania." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Domyślnie dopasowywane będą pliki dłuższe lub równe (>=) wprowadzonemu " "czasowi trwania, chyba że użyty zostanie operator (=, !, <=, < lub >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Wprowadź surową wartość w sekundach lub użyj formatów czasu MM:SS i HH:MM:" "SS:\n" " =53 pokazuje pliki, które mają około 53 sekundy długości.\n" " >5:30 pokazuje pliki o długości większej niż 5 i pół minuty.\n" " <5:30:00 pokazuje pliki o długości mniejszej niż 5 i pół godziny." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Wiele warunków można określić za pomocą separatora | : \n" " >6:00|<12:00, aby wyświetlić pliki o długości od 6 do 12 minut.\n" " !9:54|!8:43|!7:32, aby ukryć określone pliki w wynikach.\n" " =5:34|=4:23|=3:05, aby uwzględnić pliki o określonym czasie trwania." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtruje pliki na podstawie położenia geograficznego użytkowników zgodnie z " "kodami krajów zdefiniowanymi przez ISO 3166-2:\n" " US pokaże tylko wyniki pochodzące od użytkowników z adresami IP w " "Stanach Zjednoczonych.\n" " !GB ukryje wyniki pochodzące od użytkowników z Wielkiej Brytanii." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Można określić wiele krajów za pomocą przecinków lub spacji." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Wolny slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Pokaż tylko te wyniki od użytkowników, którzy mają przynajmniej jeden wolny " "slot. Ten filtr jest stosowany natychmiast." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Limity prędkości wysyłania" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Nieograniczona prędkość wysyłania" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Limit prędkości wysyłania (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternatywny limit prędkości wysyłania (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Lista komend w prywatnych rozmowach" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Uwzględnij tekst…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtruj w wynikach wejściowych gdzie ścieżka pliku zawiera dany tekst. Można " "podać wiele fraz i słów, np. dokładna fraza|muzyka|termin|dokładna kolejna " "fraza" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Pomiń tekst…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtruj w wynikach wyjściowych gdzie ścieżka pliku zawiera dany tekst. Można " "podać wiele fraz i słów, np. dokładna fraza|muzyka|termin|dokładna kolejna " "fraza" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Typ pliku…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Typ pliku, np. flac wav lub !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Rozmiar pliku…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Rozmiar pliku, np. >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitrate…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Szybkość transmisji, np. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Czas trwania…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Czas trwania, np. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Kod kraju…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Kod kraju, np. US ES lub !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Zabroń użytkownikom dostępu do udostępnionych plików na podstawie nazwy " "użytkownika, adresu IP lub kraju." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Kody krajów do zablokowania (oddzielone przecinkami):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Kody muszą być w formacie ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Użyj niestandardowej wiadomości geo-blokowania:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Użyj niestandardowej wiadomości blokowania:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Adresy IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Włącz sprawdzanie pisowni" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Ustaw ostatni prywatny czat na starcie" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Włączanie odpowiedzi na prywatne wiadomości w stylu CTCP (wersja kliencka)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Liczba ostatnich prywatnych wiadomości czatu do wyświetlenia:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Liczba ostatnich wiadomości w pokoju rozmów do wyświetlenia:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Dopełnianie czatu" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Włącz dopełnianie przy pomocy klawisza TAB" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Pokazuj listę rozwijaną z dopełnieniami" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Minimalna ilość znaków wymagana do wyświetlenia listy rozwijanej:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Dozwolone dopełnienia czatu:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Imiona znajomych" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nazwy użytkowników czatów" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nazwy pokoi" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Komendy" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Znaczniki czasu" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Format czatu prywatnego:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Domyślnie" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Format pokoju rozmów:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Zamiana tekstu na mowę" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Włącz zamianę tekstu na mowę" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Komenda zamiany tekstu na mowę:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Wiadomość prywatnego czatu:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Wiadomość pokoju rozmów:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Cenzura" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Włącz cenzurę dla następujących fraz" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Automatyczna podmiana" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Włącz automatyczną podmianę wyrazów" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Automatyczne czyszczenie zakończonych / filtrowanych pobrań z listy " "transferów" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Przechowuj ukończone pobrania w podfolderach z nazwą użytkownika" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Akcja po dwukrotnym kliknięciu dla pobieranych:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Zezwalaj użytkownikom na wysyłanie dowolnych plików:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Foldery" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Zakończone pobierania:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Niekompletne pobierania:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Otrzymane pliki:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Zdarzenia" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Uruchom komendę po zakończeniu pobierania pliku ($ dla ścieżki do pliku):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Uruchom komendę po zakończeniu pobierania folderu ($ dla ścieżki folderu):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtry pobierania" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Włącz filtry pobierania" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Dodaj" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Załaduj domyślne" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Sprawdź filtry" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Niezweryfikowane" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignoruj wiadomości czatu i wyniki wyszukiwania od użytkowników na podstawie " "nazwy użytkownika lub adresu IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Domyślnie zapisuj logi z pokoi rozmów" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Domyślnie zapisuj logi z prywatnych rozmów" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Zapisuj logi transferów do pliku" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Zapisuj logi dziennika debuggera do pliku" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Format znacznika czasu dziennika:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Lokalizacja folderów" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Folder logów pokoi rozmów:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Folder logów prywatnych czatów:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Folder logów transferów:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Folder logów dziennika debuggera:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Zaloguj się do istniejącego konta Soulseek lub utwórz nowe. W nazwach " "użytkowników rozróżniana jest wielkość liter i są one unikatowe." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Publiczny adres IP:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Port nasłuchiwania (wymaga ponownego uruchomienia):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Status zaraz wracam" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minuty bezczynności przed odejściem (0, aby wyłączyć):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Automatyczna odpowiedź podczas nieobecności:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatycznie przekierowuj port nasłuchiwania (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Automatyczne łączenie z serwerem podczas uruchamiania" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Serwer Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Wiąże połączenia z określonym interfejsem sieciowym, przydatne np. do " "zapewnienia, że VPN jest używany przez cały czas. Pozostaw puste, aby użyć " "dowolnego dostępnego interfejsu. Zmień tę wartość tylko wtedy, gdy wiesz, co " "robisz." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Interfejs sieciowy (wymaga ponownego uruchomienia):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Funkcja Teraz Odtwarzanie pozwala na wyświetlanie odtwarzanego utworu w " "pokoju rozmów przy pomocy komendy /now." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Inne" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Format Teraz Odtwarzanie" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Format wiadomości Teraz Odtwarzanie:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Przetestuj konfigurację" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Włącz wtyczki" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Dodaj wtyczki" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Dodaj wtyczki" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Ustawienia" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "Ustawienia" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Wersja:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Stworzone przez:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Włącz historię wyszukiwań" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Prywatnie udostępnione pliki, które zostały uwidocznione dla wszystkich, " "będą oznaczone przedrostkiem \"[PRIVATE]\" i nie będzie można ich pobrać, " "dopóki osoba przesyłająca nie wyrazi na to wyraźnej zgody. Należy go o to " "uprzejmie poprosić." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Pokaż prywatnie udostępnione pliki w wynikach wyszukiwania" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Maksymalna liczba zachowanych wyników na wyszukiwanie:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Domyślnie włączaj filtrowanie" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Uwzględnij:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Pomiń:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Typ pliku:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Rozmiar:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Czas trwania:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Kod kraju:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "Pokazuj tylko te rezultaty od użytkowników z wolnym slotem." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Pomoc dotycząca filtrów wyszukiwania" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Wyszukiwania sieciowe" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Odpowiadaj na żądania wyszukiwań od innych użytkowników" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Wyszukiwania krótsze niż ta liczba znaków będą ignorowane:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Maksymalna ilość wyników wyszukiwania do wysłania na jedno zapytanie:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Wyczyść historię wyszukiwań" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Wyczyść historię filtrowań" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Automatyczne ponowne skanowanie zawartości udostępnionych folderów podczas " "startu. Jeśli wyłączone, udostępnione zasoby zostaną zaktualizowane dopiero " "przy manualnym skanowaniu." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Przeskanuj udostępnione zasoby na starcie" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Widoczne dla wszystkich:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Kumpel udostępnia" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Zaufane udziały" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Automatyczne czyszczenie zakończonych / anulowanych wysyłań z listy " "transferów" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Akcja po dwukrotnym kliknięciu dla wysyłanych:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Ogranicz prędkość wysyłania:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Na transfer" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Wszystkich transferów" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Sloty wysyłania" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Pliki będą przesyłane w sposób cykliczny do użytkowników " "oczekujących w kolejce.\n" "Pierwsze weszło, pierwsze wyszło: Pliki zostaną przesłane w kolejności, w " "jakiej zostały umieszczone w kolejce." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Typ kolejki wysyłania:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Przydzielaj sloty wysyłania, aż całkowita prędkość osiągnie (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Ogranicz liczbę slotów wysyłania do:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Nadaj priorytet wszystkim znajomym" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Limity kolejek" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Maksymalna liczba plików w kolejce na użytkownika:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Maksymalny łączny rozmiar plików w kolejce na użytkownika (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Limity nie dotyczą znajomych" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Wystąpienia $ są zastępowane przez adres URL. Domyślne aplikacje systemowe " "są używane w przypadkach, gdy protokół nie został skonfigurowany." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Komenda menedżera plików:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Wyczyść zdjęcie" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Własny opis" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Dodaj elementy, które chcesz, aby wszyscy widzieli, takie jak krótki opis, " "pomocne wskazówki lub wytyczne dotyczące pobierania udostępnionych " "materiałów." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Zdjęcie:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Wyczyść" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Tryb nocny" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Użyj paska nagłówka" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Pokaż ikonę w zasobniku" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimalizuj do zasobnika podczas startu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Język (wymaga ponownego uruchomienia):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Podczas zamykania okna:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Powiadomienia" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Włącz dźwięk dla powiadomień" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Pokaż powiadomienia dla prywatnych czatów i wzmianek w tytule okna" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Pokaż powiadomienia dla:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Zakończone pobieranie plików" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Zakończone pobieranie folderów" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Prywatne wiadomości" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Wiadomości z czatu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Wzmianki na czacie" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Znaleziono wyniki listy życzeń" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Przywróć poprzednio aktywną kartę główną podczas uruchamiania" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Przyciski zamykania na dodatkowych kartach" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Kolor etykiety typowej karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Kolor etykiety zmienionej karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Kolor etykiety podświetlonej karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Pozycja listy znajomych:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Widoczne karty główne:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Pozycje paska kart:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Główne karty" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Pokaż odwrotne ścieżki plików (wymaga ponownego uruchomienia)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Pokaż dokładne rozmiary plików (wymaga ponownego uruchomienia)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Kolor tekstu listy:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Kolor tekstu wyników wyszukiwania w kolejce:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Włącz kolorowe nazwy użytkowników" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Wygląd nazwy użytkownika czatu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Kolor tekstu zdalnego:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Kolor tekstu lokalnego:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Kolor tekstu wyjściowego polecenia:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "Kolor tekstu komendy /me:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Kolor tekstu podświetlanego:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Kolor tekstu linków URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Statusy użytkowników" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Kolor online:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Kolor zaraz wracam:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Kolor offline:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Tekst" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Tło tekstu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Kolor tekstu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Czcionki" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Czcionka globalna:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Czcionka listy:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Czcionka widoku tekstu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Czcionka czatu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Czcionka transferów:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Czcionka szukania:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Czcionka przeglądania:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikony" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Folder z motywami ikon:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Przerwij użytkownikowi/om" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Zablokuj użytkownika/ów" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Wyczyść wszystkie zakończone i anulowane wysyłania" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Wyślij wiadomość do wszystkich" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Wyczyść określone wysłane" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Zapisz listę zasobów na dysk" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Odśwież pliki" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Edytuj profil" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Udostępnione pliki" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Udostępnione foldery" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Zakolejkowane wysyłania" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Wolne sloty wysyłania" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Prędkość wysyłania" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Edytuj zainteresowania" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "Podaruj przywileje…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Odśwież profil" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Polecenia Nicotine+" #~ msgid "_Clear" #~ msgstr "_Wyczyść" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Nie można zapisać %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Zaufani użytkownicy" #~ msgid "Quit program" #~ msgstr "Zamknij program" #~ msgid "Username:" #~ msgstr "Użytkownik:" #~ msgid "Re_commendations for Item" #~ msgstr "Re_komendacje dla tego obiektu" #~ msgid "_Remove Item" #~ msgstr "_Usuń ten obiekt" #~ msgid "_Remove" #~ msgstr "_Usuń" #~ msgid "Send M_essage" #~ msgstr "Wyślij wiadomość" #~ msgid "Send Message" #~ msgstr "Wyślij wiadomość" #~ msgid "View User Profile" #~ msgstr "Wyświetl profil użytkownika" #~ msgid "Start Messaging" #~ msgstr "Rozpocznij konwersacje" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Wprowadź nazwę użytkownika, do którego chcesz wysłać wiadomość:" #~ msgid "_Message" #~ msgstr "_Wiadomość" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Wprowadź nazwę użytkownika, którego profil chcesz wyświetlić:" #~ msgid "_View Profile" #~ msgstr "_Zobacz profil" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Wprowadź nazwę użytkownika, którego listę zasobów chcesz otrzymać:" #~ msgid "_Browse" #~ msgstr "_Przeglądaj" #~ msgid "Password" #~ msgstr "Hasło" #~ msgid "Download File" #~ msgstr "Pobierz plik" #~ msgid "Refresh Similar Users" #~ msgstr "Odśwież podobnych użytkowników" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Wprowadź nazwę użytkownika, którego chcesz zobaczyć udostępnione pliki" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Wprowadź nazwę użytkownika osoby, której informacje chcesz zobaczyć" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Wprowadź nazwę użytkownika, któremu chcesz wysłać prywatną wiadomość" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Wprowadź nazwę użytkownika osoby, którą chcesz dodać do listy znajomych" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Wprowadź nazwę pokoju, do którego chcesz dołączyć. Jeśli taki pokój nie " #~ "istnieje, to zostanie utworzony." #~ msgid "Show Log History Pane" #~ msgstr "Pokaż okno historii dziennika" #~ msgid "Save _Picture" #~ msgstr "Zapisz _zdjęcie" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Odfiltrowano niepoprawny wynik wyszukiwania %(filepath)s od użytkownika " #~ "%(user)s dla zapytania \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Niektórzy klienci nie zwracają wyników wyszukiwania jeśli znaki specjalne " #~ "są w nich zawarte." #~ msgid "Remove special characters from search terms" #~ msgstr "Usuń znaki specjalne z wyszukiwanych fraz" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problem z wywołaniem '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problem z wywołaniem na folderze: %s" #~ msgid "Disallowed extension" #~ msgstr "Niedozwolone rozszerzenie" #~ msgid "Too many files" #~ msgstr "Za dużo plików" #~ msgid "Too many megabytes" #~ msgstr "Za dużo megabajtów" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Serwer nie pozwala w tej chwili na przeszukiwanie listy życzeń" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Prędkość transferu zależy od użytkownika od którego pobierasz. Niektórzy " #~ "użytkownicy będą szybsi od innych." #~ msgid "Started Downloads" #~ msgstr "Rozpoczęte pobierania" #~ msgid "Started Uploads" #~ msgstr "Rozpoczęte wysyłania" #~ msgid "Replace censored letters with:" #~ msgstr "Zastąp ocenzurowane słowa przez:" #~ msgid "Censored Patterns" #~ msgstr "Cenzurowane frazy" #~ msgid "Replacements" #~ msgstr "Zamienniki" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Jeśli użytkownik sieci Soulseek szuka pliku, który udostępniasz, wynik " #~ "ten zostanie wysłany użytkownikowi." #~ msgid "Send to Player" #~ msgstr "Wyślij do odtwarzacza" #~ msgid "Send to _Player" #~ msgstr "Wyślij do _odtwarzacza" #~ msgid "_Open in File Manager" #~ msgstr "Otwórz w eksploratorze plików" #~ msgid "Media player command:" #~ msgstr "Komenda odtwarzacza multimedialnego:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Nie można zapisać pliku do podfolderu nazwy użytkownika, powraca do " #~ "domyślnego folderu pobierania. Błąd: %s" #~ msgid "Buddy-only" #~ msgstr "Tylko dla znajomych" #~ msgid "Share with buddies only" #~ msgstr "Współdziel tylko ze znajomymi" #~ msgid "_Quit…" #~ msgstr "_Zamknij…" #~ msgid "_Configure Shares" #~ msgstr "_Konfiguracja udostępnionych zasobów" #~ msgid "Remote file error" #~ msgstr "Błąd zdalnego pliku" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Nie można znaleźć %(option1)s lub %(option2)s, proszę zainstalować któryś " #~ "z nich." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "Znaleziono %(num)s folderów podczas ponownego skanowania" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Błąd podczas procesowania następujących baz danych: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Nie udało się wysłać liczby udostępnionych plików do serwera: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Zamknij / Działaj w tle" #~ msgid "Listening port:" #~ msgstr "Port nasłuchujący:" #~ msgid "Network interface:" #~ msgstr "Interfejs sieciowy:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Ogranicz udostępnianie tylko dla znajomych do zaufanych znajomych" #~ msgid "Shared" #~ msgstr "Udostępnione zasoby" #~ msgid "Search Files and Folders" #~ msgstr "Wyszukiwanie plików i folderów" #~ msgid "Out of Date" #~ msgstr "Nieaktualna" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Dostępna jest wersja %(version)s, wydana w dniu %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Używasz wersji rozwojowej %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Używasz najnowszej wersji %s" #~ msgid "Latest Version Unknown" #~ msgstr "Najnowsza wersja Nieznana" #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferuj ciemny _tryb" #~ msgid "Show _Log History Pane" #~ msgstr "Pokaż panel _dziennika" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lista znajomych w osobnej karcie" #~ msgid "Buddy List Always Visible" #~ msgstr "Lista znajomych zawsze widoczna" #~ msgid "_View" #~ msgstr "_Widok" #~ msgid "_Open Log Folder" #~ msgstr "_Otwórz folder dziennika" #~ msgid "Open _Transfer Log" #~ msgstr "Otwórz dziennik transferu" #~ msgid "_Browse Folder(s)" #~ msgstr "_Przeglądaj folder(y)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibajty (2^10 bajtów) na sekundę." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Wyślij użytkownikom jako powód zablokowania." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Wyślij użytkownikom jako powód zablokowania." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Gdy wejdziesz w interakcję z aplikacją, status zostanie ustawiony na " #~ "dostępny." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Każdy użytkownik może ustawić się w kolejce maksymalnie:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibajty (2^20 bajtów)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "pliki" #~ msgid "Queue Behavior" #~ msgstr "Zachowanie kolejki" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Jeśli wyłączone, sloty będą automatycznie ustawiane na podstawie " #~ "dostępnych limitów przepustowości." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Należy pamiętać, że motyw systemu operacyjnego może mieć pierwszeństwo." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Domyślnie lewa karta jest aktywowana podczas uruchamiania" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Zamknij %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "zakończono" #~ msgid "done" #~ msgstr "gotowe" #~ msgid "Remember choice" #~ msgstr "Zapamiętaj wybór" #~ msgid "Kosovo" #~ msgstr "Kosowo" #~ msgid "Unknown Network Interface" #~ msgstr "Nieznany interfejs sieciowy" #~ msgid "Listening Port Unavailable" #~ msgstr "Port nasłuchujący niedostępny" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "Serwer jest rozłączony albo nie odpowiada, ponawianie za %i sekund" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ używa sieci peer-to-peer do łączenia się z innymi " #~ "użytkownikami. Otwarty port nasłuchiwania jest kluczowy, aby inni " #~ "użytkownicy łączyli się z Tobą bez problemu." #~ msgid "--- disconnected ---" #~ msgstr "--- rozłączony ---" #~ msgid "--- reconnected ---" #~ msgstr "--- połączony ponownie ---" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Ziemia" #~ msgid "Czech Republic" #~ msgstr "Czechy" #~ msgid "Turkey" #~ msgstr "Turcja" #~ msgid "Joined Rooms " #~ msgstr "Dołączony do pokoi " #~ msgid "_Auto-join Room" #~ msgstr "_Automatyczne dołączanie do pokoju" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Składnia: Wielkość liter nie jest rozróżniana. Wszystkie wyrażenia " #~ "regularne Pythona są obsługiwane, jeśli unikanie jest wyłączone. W " #~ "przypadku prostych filtrów zaleca się pozostawienie włączonej ucieczki." #~ msgid "Escaped" #~ msgstr "Uciekł" #~ msgid "Escape filter" #~ msgstr "Filtr ucieczki" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Wprowadź wzór tekstu i to, co ma go zastąpić" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "" #~ "Znaleziono %(num)s folderów przed ponownym skanowaniem, przebudowywanie…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Żaden port nasłuchiwania nie jest dostępny w określonym zakresie portów " #~ "%s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Wybierz zakres, z którego chcesz wybrać port nasłuchujący. Zostanie użyty " #~ "pierwszy dostępny port w zakresie." #~ msgid "First Port" #~ msgstr "Pierwszy port" #~ msgid "to" #~ msgstr "do" #~ msgid "Last Port" #~ msgstr "Ostatni port" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Nie można znaleźć %s lub nowszego, zainstaluj go." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Nie można zaimportować modułu Gtk. Niepoprawna instalacja modułu python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Używasz niewspieranej wersji GTK %(major_version)s. Wymagana wersja, to " #~ "GTK %(complete_version)s lub nowsza." #~ msgid "User Info" #~ msgstr "Informacje o użytkowniku" #~ msgid "Zoom 1:1" #~ msgstr "Powiększenie 1:1" #~ msgid "Zoom In" #~ msgstr "Powiększenie" #~ msgid "Zoom Out" #~ msgstr "Pomniejszenie" #~ msgid "Show User I_nfo" #~ msgstr "Pokaż informacje o użytkowniku" #~ msgid "Request User's Info" #~ msgstr "Pobierz informacje o użytkowniku" #~ msgid "Request User's Shares" #~ msgstr "Pobierz zasoby użytkownika" #~ msgid "Request User Info" #~ msgstr "Pobierz informacje o użytkowniku" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Wprowadź nazwę użytkownika, którego informacje chcesz otrzymać:" #~ msgid "Request Shares List" #~ msgstr "Pobierz listę zasobów użytkownika" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Niepoprawny URL Soulseek: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Użytkownicy sieci Soulseek będą mogli pobierać pliki z udostępnionych " #~ "folderów. Udostępnianie zasobów jest kluczowym składnikiem działania " #~ "sieci Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Zaktualizuj I_nformacje" #~ msgid "Chat Room Commands" #~ msgstr "Lista komend w pokojach rozmów" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'pokój'" #~ msgid "Join room 'room'" #~ msgstr "Dołącz do pokoju 'pokój'" #~ msgid "/me 'message'" #~ msgstr "/me 'wiadomość'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Wyświetl wynik Teraz odtwarzanie" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'użytkownik'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Dodaj użytkownika 'user' do listy znajomych" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'użytkownik'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Usuń użytkownika 'user' z listy znajomych" #~ msgid "/ban 'user'" #~ msgstr "/ban 'użytkownik'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Dodaj użytkownika 'użytkownik' do listy zablokowanych" #~ msgid "/unban 'user'" #~ msgstr "/unban 'użytkownik'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Usuń użytkownika 'użytkownik' z zablokowanych" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'użytkownik'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Dodaj użytkownika 'użytkownik' do listy ignorowanych" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'użytkownik'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Usuń użytkownika 'użytkownik' z listy ignorowanych" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'użytkownik'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'użytkownik'" #~ msgid "Request info for 'user'" #~ msgstr "Żądanie informacji dla 'user'" #~ msgid "/ip 'user'" #~ msgstr "/ip 'użytkownik'" #~ msgid "Show IP for user 'user'" #~ msgstr "Pokaż IP użytkownika 'użytkownik'" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'zapytanie'" #~ msgid "Start a new search for 'query'" #~ msgstr "Zacznij szukać frazy 'zapytanie'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'zapytanie'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Zacznij szukać frazy 'zapytanie' wśród dołączonych pokoi" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'zapytanie'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Zacznij szukać frazy 'zapytanie' wśród Listy znajomych" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'użytkownik' 'zapytanie'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'użytkownik' 'wiadomość'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Wyślij wiadomość 'wiadomość' do użytkownika 'użytkownik'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'użytkownik'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Otwórz prywatny czat z użytkownikiem 'użytkownik'" #~ msgid "Private Chat Commands" #~ msgstr "Lista komend w prywatnych rozmowach" #~ msgid "Add user to your ban list" #~ msgstr "Dodaj użytkownika do listy zablokowanych" #~ msgid "Add user to your ignore list" #~ msgstr "Dodaj użytkownika do listy ignorowanych" #~ msgid "Browse shares of user" #~ msgstr "Przeglądaj zasoby użytkownika" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "W przypadku filtrowania bez względu na kolejność, jak również filtrowania " #~ "kilku dokładnych fraz, można użyć pionowych pasków do oddzielenia fraz i " #~ "słów.\n" #~ " Przykład: Remix|Instrumentalny|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Aby wykluczyć pliki inne niż audio, użyj !0 w filtrze czasu trwania." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtruje pliki na podstawie położenia geograficznego użytkowników." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Aby ponownie wyświetlić pełne wyniki, po prostu wyczyść wszystkie aktywne " #~ "filtry." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Zobacz preferencje, aby ustawić domyślne opcje filtrów wyników " #~ "wyszukiwania." #~ msgid "File size" #~ msgstr "Rozmiar pliku" #~ msgid "Clear Active Filters" #~ msgstr "Wyczyść aktywne filtry" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "" #~ "Przełączanie pomiędzy uzupełnieniami po naciśnięciu klawisza tabulacji" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Schowaj listę rozwijaną jeśli jest jedno dopasowanie" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Pobierz foldery w odwrotnej kolejności alfabetycznej" #~ msgid "Incomplete file folder:" #~ msgstr "Folder niekompletnych plików:" #~ msgid "Download folder:" #~ msgstr "Folder pobierania:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Zapisz wysyłania znajomych do:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Użyj UPnP, aby przekierować port nasłuchujący" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Udostępniaj foldery każdemu użytkownikowi Soulseek lub znajomym, " #~ "umożliwiając pobieranie zawartości bezpośrednio z Twojego urządzenia. " #~ "Ukryte pliki nigdy nie są udostępniane." #~ msgid "Secondary Tabs" #~ msgstr "Karty dodatkowe" #~ msgid "Chat room tab bar position:" #~ msgstr "Pozycja paska kart w pokoju rozmów:" #~ msgid "Private chat tab bar position:" #~ msgstr "Pozycja paska w czacie prywatnym:" #~ msgid "Search tab bar position:" #~ msgstr "Pozycja karty szukania:" #~ msgid "User info tab bar position:" #~ msgstr "Pozycja karty informacji o użytkowniku:" #~ msgid "User browse tab bar position:" #~ msgstr "Pozycja karty przeglądania użytkownika:" #~ msgid "Tab Labels" #~ msgstr "Etykiety kart" #~ msgid "_Refresh Info" #~ msgstr "Odśwież informacje" #~ msgid "Block IP Address" #~ msgstr "Zablokuj adres IP" #~ msgid "Connected" #~ msgstr "Połączony" #~ msgid "Disconnected" #~ msgstr "Rozłączony" #~ msgid "Disconnected (Tray)" #~ msgstr "Rozłączony (zasobnik)" #~ msgid "User(s)" #~ msgstr "Użytkownicy" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" nic nie zwrócił" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatywne limity prędkości" #~ msgid "Last played" #~ msgstr "Ostatnio odtwarzane" #~ msgid "Playing now" #~ msgstr "Teraz odtwarzanie" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Nie można pobrać pliku do %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Kod błędu %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Brak podanego aliasu (%s)" #~ msgid "Aliases:" #~ msgstr "Aliasy:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Usunięto alias %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Nie znaleziono aliasu (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternatywne limity prędkości" #~ msgid "Aliases" #~ msgstr "Aliasy" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'komenda' 'definicja'" #~ msgid "Add a new alias" #~ msgstr "Dodaj nowy alias" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'komenda'" #~ msgid "Remove an alias" #~ msgstr "Usuń alias" #~ msgid "Chat History" #~ msgstr "Historia czatów" #~ msgid "Command aliases" #~ msgstr "Aliasy komend" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Ogranicz prędkość pobierania do (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autorzy:" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Ogranicz prędkość wysyłania do (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Znaleziono element listy życzeń" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Karty pokazują ikony statusu użytkownika zamiast tekstu statusu" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Pokaż tooltip ze ścieżką pliku w widoku listy plików" #~ msgid "Colored and clickable usernames" #~ msgstr "Kolorowe i klikalne nazwy użytkowników" #~ msgid "Notification changes the tab's text color" #~ msgstr "Powiadomienie zmienia kolor tekstu karty" #~ msgid "Cancel" #~ msgstr "Anuluj" #~ msgid "OK" #~ msgstr "OK" #~ msgid "_Add to Buddy List" #~ msgstr "_Dodaj do Listy znajomych" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Wyczyść wszystkie pobrane pliki oznaczone określonym statusem." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Wyczyść wszystkie przesłane pliki oznaczone określonym statusem." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "użyj niestandardowego katalogu użytkownika dla pobieranych" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Nieznana sekcja konfiguracji '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Nieznana opcja konfiguracji '%(option)s' w sekcji '%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "Dostępna jest wersja %s" #, python-format #~ msgid "released on %s" #~ msgstr "wydana %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ działa w tle" #, python-format #~ msgid "Private message from %s" #~ msgstr "Prywatna wiadomość od %s" #~ msgid "Aborted" #~ msgstr "Przerwane" #~ msgid "Blocked country" #~ msgstr "Zablokowany kraj" #~ msgid "Finished / Aborted" #~ msgstr "Zakończone / Przerwane" #~ msgid "Close tab" #~ msgstr "Zamknij kartę" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Ktoś wspomniał o tobie w pokoju %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Komenda %s nie została rozpoznana" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Uwaga: %(realuser)s próbuje podszyć się pod %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Wybrany interfejs sieciowy, '%s', nie istnieje. Zmień lub usuń interfejs " #~ "i zrestartuj Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Zakres portów jaki został wybrany to {}-{}, ale żaden z nich nie był do " #~ "użytku. Zmień zakres " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Miej na uwadze, że ten zakres jest poniżej 1024. Jest to zakres, który " #~ "jest niezalecany w większości systemów operacyjnych." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Postęp ponownego skanowania: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Błąd OS: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP nie jest dostępny w tej sieci" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Błąd mapowania zewnętrznego portu WAN: %(error)s" #~ msgid "Room wall" #~ msgstr "Ściana pokoju" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Domyślny port nasłuchiwania '2234' powinien wystarczyć w większości " #~ "przypadków. Jeśli potrzebujesz użyć innego portu, możesz to zmienić w " #~ "Ustawieniach." #~ msgid "Show users with similar interests" #~ msgstr "Pokaż użytkowników o podobnych zainteresowaniach" #~ msgid "Menu" #~ msgstr "Menu" #~ msgid "Expand / Collapse all" #~ msgstr "Rozwiń / Zwiń wszystko" #~ msgid "Configure shares" #~ msgstr "Konfiguracja udostępnionych zasobów" #~ msgid "Create or join room…" #~ msgstr "Utwórz lub dołącz do pokoju…" #~ msgid "_Room List" #~ msgstr "_Lista pokoi" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Włącz alternatywne limity prędkości pobierania i wysyłania" #~ msgid "Show log history" #~ msgstr "Pokaż historię logów" #~ msgid "Result grouping mode" #~ msgstr "Tryb grupowania wyników" #~ msgid "Free slot" #~ msgstr "Wolny slot" #~ msgid "Save shares list to disk" #~ msgstr "Zapisz listę zasobów na dysk" #~ msgid "_Away" #~ msgstr "_Zaraz wracam" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Problem z załadowaniem pliku ui %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Próba zresetowania indeksu udostępnionych plików z powodu błędu. " #~ "Przeskanuj ponownie swoje udziały." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Nie można uzyskać dostępu do indeksu współdzielonych plików. Może się to " #~ "zdarzyć z powodu kilku instancji Nicotine+ aktywnych jednocześnie, " #~ "problemów z uprawnieniami do plików lub innego problemu w Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ jest klientem Soulseek" #~ msgid "enable the tray icon" #~ msgstr "włącz ikonę zasobnika" #~ msgid "disable the tray icon" #~ msgstr "wyłącz ikonę zasobnika" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Zdobądź przywileje Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Publiczny adres IP to %(ip)s a aktywny port nasłuchiwania to " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "nieznane" #~ msgid "Notification" #~ msgstr "Powiadomienie" #~ msgid "Length" #~ msgstr "Długość" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Obraz nie został zapisany, %s już istnieje." #~ msgid "_Open" #~ msgstr "_Otwórz" #~ msgid "_Save" #~ msgstr "_Zapisz" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Nie udało się załadować wtyczki '%s', nie można jej znaleźć." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Błąd I/O: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Błąd otwierania ścieżki pliku: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Błąd otwierania URL: %s" #~ msgid "_Log Conversation" #~ msgstr "_Log konwersacji" #~ msgid "Result Filter List" #~ msgstr "Lista filtrowanych wyników" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Dopisz < lub > aby znaleźć pliki mniejsze/większe od podanej wartości." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Pliki VBR wyświetlają swój średni bitrate i zazwyczaj mają niższy bitrate " #~ "niż skompresowany plik CBR 320 kbps o tej samej jakości dźwięku." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "" #~ "Podobnie jak w przypadku wielkości powyżej, można stosować =, < i >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Zapobieganie dostępowi do zapisu przez inne programy dla pobieranych " #~ "plików (wyłącz dla NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Gdzie niekompletne pobierania są tymczasowo przechowywane." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Gdzie pliki przesłane przez znajomych będą zachowane (w podfolderze dla " #~ "każdego znajomego)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Przełącz w tryb nieobecny po (min):" #~ msgid "Protocol:" #~ msgstr "Protokół:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Folder ze stylami ikon (wymaga restartu):" #~ msgid "Establishing connection" #~ msgstr "Nawiązywanie połączenia" #~ msgid "Clear Groups" #~ msgstr "Wyczyść grupy" #~ msgid "User List" #~ msgstr "Lista użytkowników" #~ msgid "_Reset Statistics…" #~ msgstr "_Zresetuj statystyki…" #~ msgid "Clear _Downloads…" #~ msgstr "Wyczyść pobierania…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Wyczyść wysłane…" #~ msgid "Block User's IP Address" #~ msgstr "Z_ablokuj adres IP tego użytkownika" #~ msgid "Ignore User's IP Address" #~ msgstr "Ignoruj adres IP tego użytkownika" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Wyczyść każde pobranie, które zakończyło przesyłanie lub zostało " #~ "przechwycone przez filtr." #~ msgid "Usernames" #~ msgstr "Nazwy użytkowników" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Wyświetlaj zalogowane wiadomości czatu gdy dołączasz ponownie do pokoju" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Wyczyść każde przesyłanie, które zakończyło przesyłanie lub zostało " #~ "anulowane przez użytkownika zdalnego." #~ msgid "Queue Position" #~ msgstr "Pozycja w kolejce" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Użytkownik %(user)s szuka bezpośrednio \"%(query)s\", zwrócono %(num)i " #~ "wyników" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRYWATNY]" #~ msgid "Room wall (personal message set)" #~ msgstr "Ściana pokoju (własna wiadomość)" #~ msgid "Your config file is corrupt" #~ msgstr "Plik ustawień jest uszkodzony" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Przepraszamy, ale plik ustawień jest uszkodzony. Proszę ponownie " #~ "skonfigurować Nicotine+.\n" #~ "\n" #~ "Zmieniliśmy nazwę pliku Twojej starej konfiguracji na\n" #~ "%(corrupt)s\n" #~ "Jeśli otworzysz ten plik przy pomocy edytora tekstu, to będziesz mógł " #~ "odzyskać część swoich ustawień." #~ msgid "User Description" #~ msgstr "Opis użytkownika" #~ msgid "User Interests" #~ msgstr "Zainteresowania użytkownika" #~ msgid "User Picture" #~ msgstr "Zdjęcie użytkownika" #~ msgid "Search Wishlist" #~ msgstr "Szukaj na Liście życzeń" #, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Ładowanie Nicotine+ %(nic_version)s" #, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Korzystanie z Pythona %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Zamykanie Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Zamknij Nicotine+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Użytkownik:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Wszystkie %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s pliki " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Użyj wyrażeń regularnych dla filtrów wejściowych i wyjściowych" #~ msgid "Change Primary Tab" #~ msgstr "Zmień główną zakładkę" #~ msgid "Remember previous primary tab on startup" #~ msgstr "Zapamiętaj poprzednią główną kartę podczas uruchamiania" #~ msgid "Start with Search Files by default." #~ msgstr "Rozpocznij od domyślnego wyszukiwania plików." #~ msgid "Visible primary tabs:" #~ msgstr "Widoczne karty podstawowe:" #~ msgid "Quit…" #~ msgstr "Zamknij…" #~ msgid "Close Nicotine+?" #~ msgstr "Zamknąć Nicotine+?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Czy na pewno chcesz wyjść z Nicotine+?" #~ msgid "Run in Background" #~ msgstr "Uruchom w tle" #~ msgid "_Online Notify" #~ msgstr "_Powiadomienie dostępności" #~ msgid "_Prioritize User" #~ msgstr "_Nadaj priorytet użytkownikowi" #~ msgid "_Trust User" #~ msgstr "_Zaufany użytkownik" #~ msgid "Request User's IP Address" #~ msgstr "Pobierz adres IP użytkownika" #~ msgid "Request IP Address" #~ msgstr "Pobierz adres IP" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Wprowadź nazwę użytkownika, którego adres IP chcesz otrzymać:" #~ msgid "Downloaded" #~ msgstr "Pobrane" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Błąd podczas dodawania pobierania %(filename)s do udostępnionych plików: " #~ "%(error)s" #~ msgid "Automatically share completed downloads" #~ msgstr "Automatycznie udostępniaj pobrane" #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Jest to odpowiednik dodania folderu pobierania jako publiczne " #~ "udostępnienia, jednak pliki pobrane do tego folderu będą automatycznie " #~ "dostępne dla innych (nie jest wymagane ponowne skanowanie)." #~ msgid "Unable to Share Folder" #~ msgstr "Nie można udostępnić folderu" #~ msgid "The chosen virtual name is empty" #~ msgstr "Wybrana wirtualna nazwa jest pusta" #~ msgid "The chosen virtual name already exists" #~ msgstr "Wybrana wirtualna nazwa jest już w użyciu" #~ msgid "The chosen folder is already shared" #~ msgstr "Wybrany folder jest już udostępniony" #~ msgid "Set Virtual Name" #~ msgstr "Ustaw wirtualną nazwę" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Wprowadź wirtualną nazwę dla '%(dir)s':" #, python-format #~ msgid "Unable to show notification popup: %s" #~ msgstr "Nie można wyświetlić okienka powiadomień: %s" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Wybrana wirtualna nazwa jest pusta lub jest już w użyciu" #~ msgid "The chosen folder is already shared." #~ msgstr "Wybrany folder jest już udostępniony." #, python-format #~ msgid "%s Properties" #~ msgstr "%s Właściwości" #~ msgid "Finished rescanning shares" #~ msgstr "Zakończono ponowne skanowanie zasobów" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Błąd podczas skanowania %(path)s: %(error)s" #~ msgid "Plugin List" #~ msgstr "Lista wtyczek" #~ msgid "Enable sound for notification popups" #~ msgstr "Odtwórz dźwięk dla wyskakujących okienek powiadomień" #~ msgid "Show notification popups for:" #~ msgstr "Pokaż wyskakujące okienka powiadomień dla:" #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Cenzuruj i zamień" #~ msgid "Complete buddy names" #~ msgstr "Dopełniaj nazwy przyjaciół" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Dopełniaj nazwy użytkowników w pokojach rozmów" #~ msgid "Complete room names" #~ msgstr "Dopełniaj nazwy pokoi" #~ msgid "Drop-down List" #~ msgstr "Lista rozwijana" #~ msgid "Display timestamps" #~ msgstr "Wyświetl znaczniki czasu" #~ msgid "Notification Popups" #~ msgstr "Okienka powiadomień" #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Pokaż powiadomienie kiedy zakończono pobieranie pliku" #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Pokaż powiadomienie kiedy zakończono pobieranie folderu" #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Pokaż powiadomienie kiedy otrzymasz prywatną wiadomość" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "Pokaż powiadomienie kiedy ktoś wyśle wiadomość w pokoju rozmów" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Pokaż powiadomienie kiedy ktoś o Tobie wspomni" #~ msgid "Tray" #~ msgstr "Zasobnik" #~ msgid "Primary Tabs" #~ msgstr "Karty podstawowe" #~ msgid "Show _Log Pane" #~ msgstr "Pokaż panel _dziennika" #~ msgid "Show _Debug Log Controls" #~ msgstr "Pokaż opcje debuggera" #~ msgid "Handler" #~ msgstr "Obsługa" #~ msgid "Could not enable plugin." #~ msgstr "Nie można włączyć wtyczki." #~ msgid "Could not disable plugin." #~ msgstr "Nie można wyłączyć wtyczki." #~ msgid "Transfers" #~ msgstr "Transfery" #~ msgid "Ban List" #~ msgstr "Lista zablokowanych" #~ msgid "Ignore List" #~ msgstr "Lista ignorowanych" #~ msgid "Categories" #~ msgstr "Kategorie" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Wyślij folder rekursywnie do…" #~ msgid "Download _Recursive" #~ msgstr "Pobieranie _rekursywne" #~ msgid "Download R_ecursive To…" #~ msgstr "Pobierz r_ekursywnie do…" #, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Błąd podczas próby wyświetlenia folderu '%(folder)s', błąd: %(error)s" #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Wybierz miejsce docelowe do pobrania folderu z podfolderami od użytkownika" #~ msgid "Wishes" #~ msgstr "Życzenia" #~ msgid "Debug Logging" #~ msgstr "Logowanie zdarzeń debuggera" #~ msgid "Blocked IP Addresses" #~ msgstr "Zablokowane adresy IP" #~ msgid "Ignored IP Addresses" #~ msgstr "Ignorowane adresy IP" #~ msgid "Show notification icons on tabs" #~ msgstr "Pokaż ikony powiadomień na kartach" #~ msgid "Handler:" #~ msgstr "Obsługa:" #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Wyświetla pełną ścieżkę pliku wyniku wyszukiwania lub transferu pliku po " #~ "najechaniu kursorem na ścieżkę folderu lub nazwę pliku." #~ msgid "Show privately shared files in user shares" #~ msgstr "Pokaż prywatnie udostępnione pliki w zasobach użytkownika" #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Inni klienci mogą oferować opcję wysyłania prywatnie udostępnianych " #~ "plików podczas przeglądania ich zasobów. Foldery zawierające takie pliki " #~ "są poprzedzone \"[PRIVATE FOLDER]\" i nie można ich pobrać, chyba że " #~ "wysyłający udzieli wyraźnej zgody." #~ msgid "Virtual Name" #~ msgstr "Wirtualna nazwa" #~ msgid "Edit Virtual Name" #~ msgstr "Edytuj wirtualną nazwę" #~ msgid "Copy Folder URL" #~ msgstr "Kopiuj URL folderu" #~ msgid "Download _To…" #~ msgstr "Pobierz _do…" #~ msgid "Download" #~ msgstr "Pobieranie" #~ msgid "Upload" #~ msgstr "Wysyłanie" #~ msgid "Upload Folder's Contents" #~ msgstr "Zawartość wysyłanego folderu" #~ msgid "Rename" #~ msgstr "Zmień nazwę" #~ msgid "File Lists" #~ msgstr "Listy plików" #~ msgid "Copy File Path" #~ msgstr "Kopiuj ścieżkę pliku" #~ msgid "R_emove Wish" #~ msgstr "Usuń życzenie" #~ msgid "About _Nicotine+" #~ msgstr "O _Nicotine+" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "" #~ "Prawdopodobnie '%s' nie jest katalogiem, wtyczki nie zostały załadowane." #~ msgid "Rescanning buddy shares…" #~ msgstr "Ponowne skanowanie zasobów znajomego…" #~ msgid "Finished rescanning buddy shares" #~ msgstr "Zakończono ponowne skanowanie zasobów znajomych" #~ msgid "Buddy List" #~ msgstr "Lista znajomych" #~ msgid "No description provided" #~ msgstr "Nie podano opisu" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Twój znajomy, %s, próbuje wysłać Ci plik(i)." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s nie może Ci wysyłać plików, ale wciąż próbuje. Ostrzeżenie wysłane." #~ msgid "Client Version" #~ msgstr "Wersja klienta" #, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Przez ile dni użytkownik %s ma być uprzywilejowany?" #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Znajomi będą mieli wyższy priorytet w kolejce, tak samo jak globalni " #~ "uprzywilejowani użytkownicy." #~ msgid "Privileged" #~ msgstr "Uprzywilejowany" #~ msgid "_Privileged" #~ msgstr "_Uprzywilejowany" #~ msgid "Comments" #~ msgstr "Komentarze" #~ msgid "Edit _Comments…" #~ msgstr "Edytuj komentarze…" #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Tworzy foldery na podstawie nazw użytkowników od których pobierane są " #~ "pliki." #~ msgid "Login Details" #~ msgstr "Konto użytkownika" #~ msgid "Advanced" #~ msgstr "Zaawansowane" #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Mapowanie portów odnawia się po (godziny):" #~ msgid "Enable buddy-only shares" #~ msgstr "Włącz udostępnienia tylko dla przyjaciół" #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Pliki będą wysłane w kolejności w jakiej zostały zakolejkowane." #~ msgid "Rescanning normal shares…" #~ msgstr "Ponowne skanowanie zasobów…" #~ msgid "Finished rescanning public shares" #~ msgstr "Zakończono ponowne skanowanie publiczne udostępnienia zasobów" #~ msgid "Scanning Buddy Shares" #~ msgstr "Skanowanie zasobów znajomych" #~ msgid "_Rescan Public Shares" #~ msgstr "_Przeskanuj ponownie publiczne udostępnienia zasobów" #~ msgid "Rescan B_uddy Shares" #~ msgstr "Przeskanuj ponownie udostępnienia zasobów z_najomych" #~ msgid "Rescan Public Shares" #~ msgstr "Przeskanuj ponownie publiczne udostępnienia zasobów" #~ msgid "Rescan Buddy Shares" #~ msgstr "Przeskanuj udostępnienia zasobów znajomych" #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Włącza prywatne udostępnienia zasobów użytkownikom z listy znajomych." #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Oznacz każdy udostępniony folder jako tylko ten dla znajomych" #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Zastępuje opcję na udział, co jest przydatne, jeśli tymczasowo musisz " #~ "uniemożliwić publiczny dostęp do udziałów." #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Tylko użytkownicy oznaczeni jako zaufani na twojej liście znajomych mogą " #~ "uzyskać dostęp do udziałów tylko dla znajomych." #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+ pozwala udostępniać foldery bezpośrednio z Twojego komputera. " #~ "Cała zawartość folderów (poza plikami ukrytymi) może zostać pobrana przez " #~ "innych użytkowników sieci Soulseek. Publiczne udostępnienia są dostępne " #~ "dla każdego użytkownika, podczas gdy użytkownicy z Listy znajomych mogą " #~ "dodatkowo przeglądać zawartość tylko dla znajomych." #~ msgid "Filtered out excluded search result " #~ msgstr "Przefiltrowane wykluczone wyniki wyszukiwania " #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Przefiltrowane niedokładne lub nieprawidłowe wyniki wyszukiwania " #, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Zapisane ustawienie '%(key)s' nie jest już obecne we wtyczce '%(name)s'" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "Wtyczka %(module)s zwróciła coś dziwnego, '%(value)s', ignorowanie" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "" #~ "Niespójna pamięć podręczna dla '%(vdir)s', ponowne budowanie '%(dir)s'" #, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Porzucanie brakujących folderów %(dir)s" #, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Wszystkie wiadomości ze ściany pokoju %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Ustaw wiadomość na Ścianę pokoju" #~ msgid "Show all the tickers" #~ msgstr "Pokaż wszystkie wiadomości Ściany pokoju" #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Błąd skanowania udostępnionych zasobów. Jeśli Nicotine+ jest obecnie " #~ "uruchomiony, proszę go wyłączyć przed skanowaniem." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Czy jesteś pewien, że chcesz wyjść z Nicotine+ tym razem?" #~ msgid "Receive a User's IP Address" #~ msgstr "Pobierz adres IP użytkownika" #~ msgid "Receive a User's Info" #~ msgstr "Pobierz informacje o użytkowniku" #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "Serwer nie zezwala na wyszukiwanie przy pomocy Listy życzeń." #, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Twoja baza danych udostępnionych zasobów jest uszkodzona. Proszę ponownie " #~ "przeskanować zasoby i zgłosić deweloperom wszelkie potencjalne problemy " #~ "ze skanowaniem. Błąd: %s" #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Miej na uwadze, że można ustawić różne nazwy użytkownika. Jeśli nie " #~ "jesteś w stanie się połączyć, możesz zmienić nazwę użytkownika w " #~ "ustawieniach." #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "Wprowadź nazwę użytkownika, o którym chcesz otrzymać informację" #~ msgid "Add user 'user' to your user list" #~ msgstr "Dodaj użytkownika 'użytkownik' to Twojej listy użytkowników" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Usuń użytkownika 'użytkownik' z Twojej listy użytkowników" #~ msgid "Request user info for user 'user'" #~ msgstr "Pobierz informacje o użytkowniku 'użytkownik'" #~ msgid "Add user to your user list" #~ msgstr "Dodaj użytkownika do twojej listy użytkowników" #~ msgid "Remove user from your user list" #~ msgstr "Usuń użytkownika z twojej listy użytkowników" #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "" #~ "Odpowiadaj na zapytania o wyszukiwanie zawierające minimalną liczbę " #~ "znaków:" #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Użytkownicy oczekujący w kolejce będą pobierać po jednym pliku na raz w " #~ "sposób cykliczny." #~ msgid "" #~ "Could not execute now playing code. Are you sure you picked the right " #~ "player?" #~ msgstr "" #~ "Nie można wywołać opcji Teraz odtwarzanie. Czy aby na pewno wybrałeś " #~ "odtwarzacz?" #~ msgid "/leave /l /part /p" #~ msgstr "/leave /l /part /p" #~ msgid "/clear /cl" #~ msgstr "/clear /cl" #~ msgid "/tick /t" #~ msgstr "/tick /t" #~ msgid "/tickers" #~ msgstr "/tickers" #~ msgid "/now" #~ msgstr "/now" #~ msgid "/away /a" #~ msgstr "/away /a" #~ msgid "/quit /q /exit" #~ msgstr "/quit /q /exit" #~ msgid "/close /c" #~ msgstr "/close /c" #~ msgid "/add /ad" #~ msgstr "/add /ad" #~ msgid "/rem /unbuddy" #~ msgstr "/rem /unbuddy" #~ msgid "/ban" #~ msgstr "/ban" #~ msgid "/unban" #~ msgstr "/unban" #~ msgid "/ignore" #~ msgstr "/ignore" #~ msgid "/unignore" #~ msgstr "/unignore" #~ msgid "/browse /b" #~ msgstr "/browse /b" #~ msgid "/whois /w" #~ msgstr "/whois /w" #~ msgid "/ip" #~ msgstr "/ip" #, python-format #~ msgid "The password you've entered is invalid for user %s" #~ msgstr "Wprowadzone hasło jest niepoprawne dla użytkownika %s" #~ msgid "" #~ "You can create a new Soulseek account or log in to an existing one by " #~ "entering your desired details below. Please keep in mind that some " #~ "usernames may already be taken. If you're unable to connect with your " #~ "selected username, try choosing another one." #~ msgstr "" #~ "Możesz stworzyć nowe konto uzupełniając poniższe elementy. Miej na " #~ "uwadze, że niektóre nazwy użytkowników mogą już być zajęte. Jeśli nie " #~ "możesz połączyć się z wybraną nazwą użytkownika, wybierz inną. Jeśli " #~ "nadal występują problemy z połączeniem, zweryfikuj poniższe informacje." #~ msgid "Find..." #~ msgstr "Szukaj..." #~ msgid "Queued..." #~ msgstr "Zakolejkowane..." #~ msgid "Clear All..." #~ msgstr "Wyczyść wszystko..." #~ msgid "Close All Tabs..." #~ msgstr "Zamknij wszystkie zakładki..." #~ msgid "Edit _Comments..." #~ msgstr "Edytuj _komentarze..." #~ msgid "Gi_ve Privileges..." #~ msgstr "Po_daruj przywileje..." #~ msgid "_Add..." #~ msgstr "_Dodaj..." #~ msgid "Room..." #~ msgstr "Pokój..." #~ msgid "Username..." #~ msgstr "Użytkownik..." #~ msgid "Add Wish..." #~ msgstr "Dodaj życzenie..." #~ msgid "Include text..." #~ msgstr "Uwzględnij tekst..." #~ msgid "Exclude text..." #~ msgstr "Pomiń tekst..." #~ msgid "File type..." #~ msgstr "Typ pliku..." #~ msgid "Bitrate..." #~ msgstr "Bitrate..." #~ msgid "Add..." #~ msgstr "Dodaj..." #~ msgid "Edit..." #~ msgstr "Edytuj..." #~ msgid "_Search Files" #~ msgstr "_Szukaj plików" #~ msgid "_Downloads" #~ msgstr "_Pobierane" #~ msgid "User I_nfo" #~ msgstr "I_nformacja o użytkowniku" #~ msgid "_Private Chat" #~ msgstr "_Czat prywatny" #~ msgid "Buddy _List" #~ msgstr "Lista znajomych" #~ msgid "_Chat Rooms" #~ msgstr "_Pokoje rozmów" #~ msgid "_Interests" #~ msgstr "_Zainteresowania" #~ msgid "_Modes" #~ msgstr "_Sekcje" #, python-format #~ msgid "Hide %(tab)s" #~ msgstr "Ukryj %(tab)s" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Twój adres IP nie został pobrany z serwera" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Twój adres IP to %(ip)s" #~ msgid "Geo Block" #~ msgstr "Geo blokada" #~ msgid "Away Mode" #~ msgstr "Tryb nieobecny" #~ msgid "URL Catching" #~ msgstr "Przechwytywanie URL" #~ msgid "Check _Port Status" #~ msgstr "Sprawdź status portu" #~ msgid "" #~ "Geo Block controls from which countries users are allowed access to your " #~ "shares." #~ msgstr "" #~ "Geo blokada kontroluje, z których krajów użytkownicy mają możliwość " #~ "dostępu do Twoich zasobów." #~ msgid "Enable geographical blocker" #~ msgstr "Włącz blokadę geograficzną" #~ msgid "" #~ "If the source country of an IP address cannot be determined, it will be " #~ "blocked." #~ msgstr "" #~ "Jeśli nie będzie można ustalić kraju pochodzenia IP, zostanie ono " #~ "zablokowane." #~ msgid "Countries" #~ msgstr "Państwa" #~ msgid "last.fm" #~ msgstr "last.fm" #~ msgid "MPRIS (v2)" #~ msgstr "MPRIS (v2)" #~ msgid "ListenBrainz" #~ msgstr "ListenBrainz" #~ msgid "Enable URL catching" #~ msgstr "Włącz przechwytywane URL" #~ msgid "Humanize slsk:// URLs" #~ msgstr "Humanizuj url-e slsk://" #~ msgid "Protocol Handlers" #~ msgstr "Obsługujący protokół" #~ msgid "Decimal separator:" #~ msgstr "Separator dziesiętny:" #~ msgid "Clicked usernames reveal the user context menu." #~ msgstr "" #~ "Po kliknięciu na nazwę użytkownika pojawia się jego menu kontekstowe." #~ msgid "" #~ "Nicotine+ is a Soulseek client.\n" #~ "Usage: nicotine [OPTION]...\n" #~ " -c file, --config=file Use non-default configuration file\n" #~ " -p dir, --plugins=dir Use non-default directory for plugins\n" #~ " -t, --enable-trayicon Enable the tray icon\n" #~ " -d, --disable-trayicon Disable the tray icon\n" #~ " -h, --help Show help and exit\n" #~ " -s, --hidden Start the program hidden so only the tray " #~ "icon is shown\n" #~ " -b ip, --bindip=ip Bind sockets to the given IP (useful for " #~ "VPN)\n" #~ " -l port, --port=port Listen on the given port. Overrides the " #~ "portrange configuration\n" #~ " -v, --version Display version and exit" #~ msgstr "" #~ "Nicotine+ to klient sieci Soulseek.\n" #~ "Użytkowanie: nicotine [OPCJA]...\n" #~ " -c plik, --config=plik Użyj niedomyślnego pliku konfiguracyjnego\n" #~ " -p katalog, -plugins=katalog Użyj niedomyślnego katalogu dla " #~ "wtyczek\n" #~ " -t, --enable-trayicon Włącz ikonę w zasobniku\n" #~ " -d, --disable-trayicon Wyłącz ikonę w zasobniku\n" #~ " -h, --help Pokaż pomoc i wyjdź\n" #~ " -s, --hidden Uruchom program zminimalizowany do zasobnika\n" #~ " -b IP, --bindip=ip Nasłuchuj na konkretnym IP (przydatne w " #~ "przypadku VPN-a)\n" #~ " -l port, --port=port Nasłuchuj na konkretnym porcie. Nadpisuje " #~ "konfiguracje zakresu portów\n" #~ " -v, --version Pokaż wersję programu i wyjdź" #~ msgid "" #~ "Can not find Nicotine+ modules.\n" #~ "Perhaps they're installed in a directory which is not\n" #~ "in an interpreter's module search path.\n" #~ "(there could be a version mismatch between\n" #~ "what version of python was used to build the Nicotine\n" #~ "binary package and what you try to run Nicotine+ with)." #~ msgstr "" #~ "Nie można znaleźć modułów Nicotine+.\n" #~ "Prawdopodobnie są zainstalowane w katalogu,\n" #~ "który nie zawiera się w module ścieżki wyszukiwania\n" #~ "interpretera. (Może nie zgadzać się wersja Pythona\n" #~ "z tą użytą do zbudowania Nicotine+ i z tą, która ma\n" #~ "być użyta przy uruchamianiu Nicotine+)." #~ msgid "Cannot find the pynicotine.utils module." #~ msgstr "Nie znaleziono modułu pynicotine.utils." #~ msgid "Errors occured while trying to change process name:" #~ msgstr "Zaistniałe błędy podczas próby zmiany procesu:" #~ msgid "" #~ "WARNING! Rescanning shares will not work if Nicotine+ is already open. If " #~ "you need to rescan\n" #~ "your shares this way, keep Nicotine+ closed until rescanning is done." #~ msgstr "" #~ "UWAGA! Ponownie skanowanie udostępnionych zasobów nie będzie działać " #~ "jeśli Nicotine+ jest aktualnie otwarty. Jeśli potrzebujesz ponownie " #~ "przeskanować\n" #~ "udostępnione zasoby w ten sposób, utrzymuj Nicotine+ zamknięte do czasu " #~ "zakończenia ponownego skanowania." #, python-format #~ msgid "Starting using the profiler (saving dump to %s)" #~ msgstr "Start z profilerem (zapisywanie zrzutu do %s)" #, python-format #~ msgid "Exception in callback %s: %s" #~ msgstr "Wyjątek w wywołaniu %s: %s" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Nie można zalogować się, uzasadnienie: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Ktoś inny próbuje zalogować się tą samą nazwą użytkownika, serwer będzie " #~ "próbował nas rozłączyć" #~ msgid "Server Message" #~ msgstr "Wiadomość serwera" #, python-format #~ msgid "Password is %s" #~ msgstr "Hasło to %s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s chce przejrzeć udostępnione zasoby jednak zablokowano " #~ "prawdopodobną próbę podszycia się z IP %(ip)s port %(port)s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s chce przejrzeć udostępnione zasoby jednak zablokowano " #~ "prawdopodobną próbę podszycia się z nieznanego IP i portu" #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s chce przejrzeć udostępnione zasoby" #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "Blokowanie %(user)s przed pobraniem Informacji o użytkowniku, " #~ "prawdopodobna próba podszycia się z IP %(ip)s port %(port)s" #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "Blokowanie %s przed pobraniem Informacji o użytkowniku, prawdopodobna " #~ "próba podszycia się pod nieznany adres IP i port" #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "" #~ "%(user)s jest zablokowany, ale próbuje pobrać Informacje o użytkowniku" #, python-format #~ msgid "Unable to parse config file: %s" #~ msgstr "Nie można przetworzyć pliku konfiguracyjnego: %s" #, python-format #~ msgid "Unable to enable plugin %s" #~ msgstr "Nie można aktywować wtyczki %s" #~ msgid "Disabled plugin {}" #~ msgstr "Nieaktywna wtyczka {}" #, python-format #~ msgid "Unable to fully disable plugin %s" #~ msgstr "Nie można w pełni dezaktywować wtyczki %s" #, python-format #~ msgid "Can't save %s: %s" #~ msgstr "Nie można zapisać %s: %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Baza danych udostępnionych zasobów wygląda na uszkodzoną, przeskanuj " #~ "ponownie swoje zasoby" #~ msgid "Could not bind to a local port, aborting connection" #~ msgstr "Nie można powiązać z lokalnym portem, przerywanie połączenia" #~ msgid "Unknown peer init code: {}, message contents " #~ msgstr "Nieznany kod inicjalizacji połączenia: {}, zawartość wiadomości " #, python-format #~ msgid "Ignoring connection request from blocked IP Address %(ip)s:%(port)s" #~ msgstr "" #~ "Ignorowanie żądania połączenia z zablokowanego adresu IP %(ip)s:%(port)s" #, python-format #~ msgid "Exception during parsing %(area)s: %(exception)s" #~ msgstr "Wyjątek podczas przetwarzania %(area)s: %(exception)s" #~ msgid "[Automatic Message] " #~ msgstr "[Wiadomość automatyczna] " #~ msgid "You are not allowed to send me files." #~ msgstr "Nie możesz wysyłać mi plików." #~ msgid "Clear Aborted" #~ msgstr "Wyczyść przerwane" #~ msgid "Clear Queued" #~ msgstr "Wyczyść zakolejkowane" #~ msgid "Download directory error" #~ msgstr "Błąd pobierania folderu" #~ msgid "File P_roperties" #~ msgstr "_Właściwości pliku" #~ msgid "Abor_t" #~ msgstr "Przerwi_j" #~ msgid "Search ID was none when clicking tab" #~ msgstr "ID szukania był pusty podczas kliknięcia w zakładkę" #~ msgid "Immediate Download" #~ msgstr "Natychmiastowe pobieranie" #~ msgid "File _Properties" #~ msgstr "_Właściwości pliku" #, python-format #~ msgid "Search row error: %(exception)s %(row)s" #~ msgstr "Błąd wiersza wyszukiwania: %(exception)s %(row)s" #~ msgid "Add a Shared Buddy Folder" #~ msgstr "Dodaj katalog z zasobem dla znajomych" #~ msgid "Ignore User..." #~ msgstr "Ignoruj użytkownika..." #~ msgid "IP:" #~ msgstr "IP:" #~ msgid "Ban User..." #~ msgstr "Zablokuj użytkownika..." #~ msgid "Server" #~ msgstr "Serwer" #~ msgid "Fonts & Colors" #~ msgstr "Czcionki i kolory" #~ msgid "I Like" #~ msgstr "Lubię" #, python-format #~ msgid "%s mentioned you in the %s room" #~ msgstr "%s wspomniał o Tobie w pokoju %s" #~ msgid "Join Public Room" #~ msgstr "Dołącz do publicznego pokoju" #, python-format #~ msgid "" #~ "I remember the room %(room)s being owned by %(previous)s, but the server " #~ "says its owned by %(new)s." #~ msgstr "" #~ "Pamiętam, że pokój %(room)s należy do %(previous)s, ale serwer zwraca, że " #~ "należy on do %(new)s." #, python-format #~ msgid "" #~ "I remember the room %(room)s being owned by %(old)s, but the server says " #~ "that's not true." #~ msgstr "" #~ "Pamiętam, że pokój %(room)s należy do %(old)s, ale serwer zwraca, że to " #~ "nie prawda." #, python-format #~ msgid "Speed: %s" #~ msgstr "Prędkość: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Pliki: %s" #, python-format #~ msgid "Directories: %s" #~ msgstr "Katalogi: %s" #~ msgid "Hates" #~ msgstr "Znienawidzone" #, python-format #~ msgid "Queued uploads: %i" #~ msgstr "Kolejka wysyłania: %i" #, python-format #~ msgid "%s" #~ msgstr "%s" #~ msgid "Edit comments" #~ msgstr "Edytuj komentarze" #~ msgid "Send _Message" #~ msgstr "Wyślij wiadomość" #~ msgid "Brow_se Files" #~ msgstr "Przeglądaj pliki" #~ msgid "_Ban User" #~ msgstr "Zablokuj użytkownika" #, python-format #~ msgid "to %(user)s" #~ msgstr "dla %(user)s" #~ msgid "Lookup a User's IP" #~ msgstr "Podejrzyj IP użytkownika" #, python-format #~ msgid "ERROR: tray menu, %(error)s" #~ msgstr "BŁĄD: zasobnik, %(error)s" #~ msgid "Enter the User who you wish to send a private message:" #~ msgstr "Podaj użytkownika, któremu chcesz wysłać prywatną wiadomość:" #~ msgid "Get A User's IP" #~ msgstr "Pobierz IP użytkownika" #, python-format #~ msgid "ERROR: cannot set trayicon image: %(error)s" #~ msgstr "BŁĄD: nie można ustawić ikony w zasobniku: %(error)s" #, python-format #~ msgid "UPnP exception: %(error)s" #~ msgstr "Wyjątek UPnP: %(error)s" #~ msgid "Failed to automate the creation of UPnP Port Mapping rule." #~ msgstr "Błąd podczas automatycznej konfiguracji mapowania UPnP." #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Wyślij prywatną wiadomość bezpośrednio do użytkownika (niewspierane przez " #~ "większość klientów)" #~ msgid "Log" #~ msgstr "Log" #~ msgid "Configure user info" #~ msgstr "Konfiguruj informacje o użytkowniku" #~ msgid "Load from Disk" #~ msgstr "Załaduj z dysku" #~ msgid "Room type" #~ msgstr "Typ pokoju" #~ msgid "Private" #~ msgstr "Prywatny" #~ msgid "Warnings" #~ msgstr "Uwagi" #~ msgid "Statistics" #~ msgstr "Statystyki" #~ msgid "Personal" #~ msgstr "Personalne" #~ msgid "Unrecommendations" #~ msgstr "Nierekomendowane" #~ msgid "This search term will be requested at regular intervals" #~ msgstr "To wyszukiwane hasło będzie żądane w regularnych odstępach czasu" #~ msgid "Search result filter help" #~ msgstr "Pomoc dotycząca filtrów wyszukiwania" #~ msgid "Abort User's Uploads" #~ msgstr "Przerwij wysyłanie użytkownika" #~ msgid "Upload slots: unknown" #~ msgstr "Sloty wysyłania: nieznane" #~ msgid "Free upload slots: unknown" #~ msgstr "Wolne sloty wysyłania: nieznane" #~ msgid "Queued uploads: unknown" #~ msgstr "Kolejka wysyłania: nieznana" #~ msgid "Speed: unknown" #~ msgstr "Prędkość: nieznana" #~ msgid "Files: unknown" #~ msgstr "Pliki: nieznane" #~ msgid "Directories: unknown" #~ msgstr "Katalogi: nieznane" #~ msgid "Accepts Uploads from:" #~ msgstr "Akceptuj wysyłania od:" #~ msgid "Leave room 'room'" #~ msgstr "Opuść pokój 'pokój'" #, python-format #~ msgid "/bsearch /bs '%s'" #~ msgstr "/bsearch /bs '%s'" #~ msgid "Always run in the background when main window is closed" #~ msgstr "Zawsze uruchamiaj w tle, kiedy główne okno jest zamknięte" #~ msgid "Always quit when main window is closed" #~ msgstr "Zawsze zamykaj, kiedy główne okno jest zamknięte" #~ msgid "Icon Theme" #~ msgstr "Styl ikon" #~ msgid "Tray Icon" #~ msgstr "Ikona zasobnika" #~ msgid "Online:" #~ msgstr "Dostępny:" #~ msgid "Away:" #~ msgstr "Nieobecny:" #~ msgid "Offline:" #~ msgstr "Niedostępny:" #~ msgid "Nick hightlight:" #~ msgstr "Podświetlony nick:" #~ msgid "Notify:" #~ msgstr "Powiadomienie:" #~ msgid "When double-clicking on..." #~ msgstr "Podwójne kliknięcie na..." #~ msgid "Download transfers:" #~ msgstr "Transferach pobierania:" #~ msgid "Upload transfers:" #~ msgstr "Transferach wysyłania:" #~ msgid "Server:" #~ msgstr "Serwer:" #~ msgid "Ports" #~ msgstr "Porty" #~ msgid "Automatically renew port mappings every" #~ msgstr "Automatycznie odnów mapowanie portów co" #~ msgid "hour(s)" #~ msgstr "godzin(y)" #~ msgid "Player Command/Username" #~ msgstr "Komenda odtwarzacza/użytkownik" #~ msgid "Legend:" #~ msgstr "Legenda:" #~ msgid "Example:" #~ msgstr "Przykład:" #~ msgid "Text Appearance" #~ msgstr "Wygląd tekstu" #~ msgid "Chat Colors" #~ msgstr "Kolory czatów" #~ msgid "Usernames also indicate away status" #~ msgstr "Nazwy użytkowników wskazują również na status niedostępności" #~ msgid "/me text:" #~ msgstr "/me Tekst:" #~ msgid "List and Search Colors" #~ msgstr "Kolory listy i wyszukiwań" #~ msgid "With queue:" #~ msgstr "Z kolejką:" #~ msgid "Background:" #~ msgstr "Tło:" #~ msgid "Regular:" #~ msgstr "Regularny:" #~ msgid "Highlighted:" #~ msgstr "Podświetlony:" #~ msgid "Default Colors" #~ msgstr "Domyślne kolory" #~ msgid "Clear Colors" #~ msgstr "Wyczyść kolory" #~ msgid "Tabs can be reordered" #~ msgstr "Zakładki mogą być przemieszczane" #~ msgid "When disabled, tabs are locked in their current order." #~ msgstr "Gdy wyłączone, karty są zablokowane w ich aktualnej kolejności." #~ msgid "Main:" #~ msgstr "Główna:" #~ msgid "Label angle:" #~ msgstr "Wyrównanie etykiety:" #~ msgid "Chat rooms:" #~ msgstr "Pokoje rozmów:" #~ msgid "Search:" #~ msgstr "Szukaj:" #~ msgid "User info:" #~ msgstr "Informacje o użytkowniku:" #~ msgid "User browse:" #~ msgstr "Przeglądanie użytkownika:" #~ msgid "characters or more" #~ msgstr "znaków lub więcej" #~ msgid "Send out a max of" #~ msgstr "Wyślij maksymalnie" #~ msgid "results per search request" #~ msgstr "wyników na zlecone wyszukiwanie" #~ msgid "Your Searches" #~ msgstr "Twoje wyszukiwania" #~ msgid "Maximum results per search visible at a time:" #~ msgstr "Maksymalna liczba wyników wyszukiwania:" #~ msgid "" #~ "When the maximum number of visible results is smaller than the maximum " #~ "total results, use the search result filters to refine what is visible." #~ msgstr "" #~ "Jeśli maksymalna liczba widocznych wyników jest mniejsza niż maksymalna " #~ "liczba wszystkich wyników, użyj filtrów wyników wyszukiwania, aby zawęzić " #~ "widoczność." #~ msgid "Plugin preferences" #~ msgstr "Ustawienia wtyczek" #~ msgid "Ignored users:" #~ msgstr "Zignorowani użytkownicy:" #~ msgid "Show the last" #~ msgstr "Pokaż ostatnie" #~ msgid "lines" #~ msgstr "linie" #~ msgid "minutes of inactivity" #~ msgstr "minut(ach) nieaktywności" #~ msgid "Show _Flag Columns in User Lists" #~ msgstr "Pokaż kolumnę _flag na liście użytkowników" #~ msgid "Show _Buttons in Transfer Tabs" #~ msgstr "Pokaż _przyciski na zakładkach transferów" #~ msgid "_Fast Configure" #~ msgstr "_Szybka konfiguracja" #~ msgid "" #~ "The search wishlist can be useful when you are looking for rare content. " #~ "Search terms in the wishlist are automatically requested at regular " #~ "intervals." #~ msgstr "" #~ "Przeszukiwanie Listy życzeń może być przydatne kiedy szukasz rzadkich " #~ "zasobów. Wyszukiwane terminy na liście życzeń są automatycznie żądane w " #~ "regularnych odstępach czasu." #~ msgid "Add search term..." #~ msgstr "Dodaj frazę wyszukiwania..." #~ msgid "Press \"Next\" to start configuring Nicotine+." #~ msgstr "" #~ "Naciśnij przycisk \"Dalej\" w celu rozpoczęcia konfiguracji Nicotine+." #~ msgid "" #~ "Nicotine+ will still work to some degree if your port is closed. However, " #~ "do keep in mind that you won't be able to connect to users whose port is " #~ "also closed." #~ msgstr "" #~ "Nicotine+ będzie działać do pewnego stopnia jeśli port jest zamknięty. " #~ "Miej na uwadze, że nie będziesz miał możliwości połączenia się z innymi " #~ "użytkownikami, którzy także mają zamknięty port." #~ msgid "" #~ "Sharing files is crucial for the health of the Soulseek network. Many " #~ "people will ban you if you download from them without sharing anything " #~ "yourself." #~ msgstr "" #~ "Nie udostępniasz publicznie żadnych plików. Udostępnianie jest kluczowe " #~ "dla sieci Soulseek i wiele osób będzie Cię blokować jeśli będziesz coś od " #~ "nich pobierać bez udostępniania." #~ msgid "Show Room List" #~ msgstr "Pokaż listę pokoi" #~ msgid "Show Flag Columns in User Lists" #~ msgstr "Pokaż kolumnę flag na liście użytkowników" #~ msgid "Show Buttons in Transfer Tabs" #~ msgstr "Pokaż przyciski na zakładkach transferów" #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "IP %(ip)s:%(port)s podszywa się pod użytkownika %(user)s poprzez żądanie " #~ "połączenia. Blokowanie, ponieważ nie pokrywa się z IP: %(real_ip)s" #, python-format #~ msgid "Unable to save config file: %s" #~ msgstr "Nie można zapisać pliku konfiguracyjnego: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "Ponawianie błędnych pobrań: użytkownik %(user)s, plik %(file)s" #~ msgid "(friend)" #~ msgstr "(przyjaciel)" #, python-format #~ msgid "Something went wrong while writing your transfer list: %(error)s" #~ msgstr "Coś poszło nie tak podczas zapisywania listy transferów: %(error)s" #~ msgid "Clear Finished/Aborted" #~ msgstr "Wyczyść Skończone / Wstrzymane" #~ msgid "Clear Paused" #~ msgstr "Wyczyść zapauzowane" #~ msgid "Clear Finished/Erred" #~ msgstr "Wyczyść skończone/błędne" #~ msgid "Initializing transfer" #~ msgstr "Inicjowanie transferu" #~ msgid "Waiting for peer to connect" #~ msgstr "Oczekiwanie na połączenie z klientem" #~ msgid "Connecting" #~ msgstr "Łączenie" #~ msgid "Getting address" #~ msgstr "Pobieranie adresu" #~ msgid "Unknown search mode, not using plugin system. Fix me!" #~ msgstr "Nieznany tryb szukania, nieużywanie systemu wtyczek. Napraw mnie!" #~ msgid "Warning" #~ msgstr "Uwaga" #, python-format #~ msgid "" #~ "Failed to remove logged room messages for room '%(room)s'. Error: " #~ "%(error)s" #~ msgstr "" #~ "Wystąpił błąd podczas usuwania zalogowanych wiadomości dla pokoju " #~ "'%(room)s'. Błąd: %(error)s" #, python-format #~ msgid "" #~ "Failed to remove logged chat messages for user '%(user)s'. Error: " #~ "%(error)s" #~ msgstr "" #~ "Wystąpił błąd podczas usuwania zalogowanych wiadomości dla użytkownika " #~ "'%(user)s'. Błąd: %(error)s" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Maksymalna ilość wysyłań: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Wolne sloty: %s" #~ msgid "Users in list" #~ msgstr "Użytkownicy na liście" #~ msgid "Slots free: unknown" #~ msgstr "Wolne sloty: nieznane" #~ msgid "Back Up Config File" #~ msgstr "Kopia zapasowa pliku ustawień" #~ msgid "" #~ "By default, files sent by these users will be saved into a subfolder " #~ "within your Download folder." #~ msgstr "" #~ "Domyślnie pliki wysyłane przez tych użytkowników będą zapisywane w " #~ "podfolderze w folderze pobierania." #~ msgid "KiB/s" #~ msgstr "KiB/s" #~ msgid "Plugin Properties" #~ msgstr "Właściwości wtyczki" #~ msgid "Complete room names in chat rooms" #~ msgstr "Dopełniaj nazwy pokojów w pokojach rozmów" #~ msgid "Can not find Nicotine+ modules." #~ msgstr "Nie znaleziono modułów Nicotine+." #, python-format #~ msgid "Can't remove %s" #~ msgstr "Nie można usunąć %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Nie można zmienić nazwy pliku konfiguracyjnego, błąd: %s" #, python-format #~ msgid "Something went wrong while opening your alias file: %s" #~ msgstr "Coś poszło nie tak podczas otwierania pliku aliasu: %s" #, python-format #~ msgid "Something went wrong while saving your alias file: %s" #~ msgstr "Coś poszło nie tak podczas zapisywania pliku aliasu: %s" #, python-format #~ msgid "Warning: unknown object type %(obj_type)s in message %(msg_type)s" #~ msgstr "Uwaga: nieznany typ obiektu %(obj_type)s w wiadomości %(msg_type)s" #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Stworzono pustą wiadomość, klasa %s" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Nie można przetworzyć przychodzącej wiadomości, klasa %s" #, python-format #~ msgid "Failed to set RLIMIT_NOFILE: %s" #~ msgstr "Błąd z ustawieniem RLIMIT_NOFILE: %s" #, python-format #~ msgid "" #~ "Server message type %(type)i size %(size)i contents %(msg_buffer)s unknown" #~ msgstr "" #~ "Typ wiadomości serwera %(type)i o wielkości %(size)i zawierający " #~ "%(msg_buffer)s jest nieznany" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Nie można obsłużyć połączenia typu %s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Nie można wysłać wiadomości poprzez zamknięte połączenie: %(type)s " #~ "%(msg_obj)s" #, python-format #~ msgid "Something went wrong while opening your transfer list: %(error)s" #~ msgstr "Coś poszło nie tak podczas otwierania listy transferów: %(error)s" #, python-format #~ msgid "" #~ "Download error formally known as 'Unknown file request': %(req)s " #~ "(%(user)s: %(file)s)" #~ msgstr "" #~ "Błąd pobierania znany jako 'Żądanie nieznanego pliku': %(req)s (%(user)s: " #~ "%(file)s)" #, python-format #~ msgid "" #~ "Upload error formally known as 'Unknown file request': %(req)s (%(user)s: " #~ "%(file)s)" #~ msgstr "" #~ "Błąd wysyłania znany jako 'Żądanie nieznanego pliku': %(req)s (%(user)s: " #~ "%(file)s)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Wysyłanie zakończone: %(user)s, plik %(file)s" #~ msgid "Enter the name of the private room you wish to create" #~ msgstr "Podaj nazwę prywatnego pokoju, który chcesz utworzyć" #~ msgid "Show IP a_ddress" #~ msgstr "Pokaż a_dres IP" #~ msgid "Get user i_nfo" #~ msgstr "Pobierz I_nformacje o użytkowniku" #~ msgid "Brow_se files" #~ msgstr "Prz_eglądaj pliki" #~ msgid "_Ban this user" #~ msgstr "_Zablokuj tego użytkownika" #~ msgid "_Ignore this user" #~ msgstr "_Ignoruj tego użytkownika" #~ msgid "Clear finished/aborted" #~ msgstr "Wyczyść skończone/przerwane" #~ msgid "Clear queued" #~ msgstr "Wyczyść zakolejkowane" #~ msgid "Rescanning started" #~ msgstr "Ponowne skanowanie rozpoczęte" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Ponowne skanowanie zasobów znajomych rozpoczęte" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Ponowne skanowanie zasobów znajomych zakończone" #~ msgid "Rescanning finished" #~ msgstr "Ponowne skanowanie zakończone" #~ msgid "Send to tray" #~ msgstr "Wyślij do zasobnika" #~ msgid "I like" #~ msgstr "Lubię" #~ msgid "I _don't like this" #~ msgstr "N_ie lubię tego" #~ msgid "Add user to list" #~ msgstr "Dodaj użytkownika do listy" #~ msgid "Ban this user" #~ msgstr "Zablokuj tego użytkownika" #~ msgid "Ignore this user" #~ msgstr "Ignoruj tego użytkownika" #~ msgid "Close this tab" #~ msgstr "Zamknij tę zakładkę" #~ msgid "Warning: Bad Username" #~ msgstr "Uwaga: Zła nazwa użytkownika" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "Użytkownik 'None' nie jest dobrym wyborem, wybierz inną nazwę." #~ msgid "Warning: Invalid ports" #~ msgstr "Uwaga: Nieprawidłowe porty" #~ msgid "Client ports are invalid." #~ msgstr "Porty klienta są niepoprawne." #, python-format #~ msgid "Security Risk: you should not share your %s folder!" #~ msgstr "Naruszenie bezpieczeństwa: nie powinieneś udostępniać folderu %s!" #~ msgid "Virtual name" #~ msgstr "Wirtualna nazwa" #~ msgid "Pick a color, any color" #~ msgstr "Wybierz kolor, dowolny kolor" #~ msgid "Notebook Tabs" #~ msgstr "Zakładki" #~ msgid "Directories" #~ msgstr "Katalogi" #~ msgid "_Close this tab" #~ msgstr "Zamknij tę zakładkę" #, python-format #~ msgid "Unknown (%(countrycode)s)" #~ msgstr "Nieznany (%(countrycode)s)" #~ msgid "Buddy List" #~ msgstr "Lista znajomych" #~ msgid "User List" #~ msgstr "Użytkownicy" #~ msgid "Check my port status" #~ msgstr "Sprawdź status portu" #~ msgid "Download files to the following folder:" #~ msgstr "Pobierz pliki do następującego katalogu:" #~ msgid "Share the following folders:" #~ msgstr "Udostępnij następujące katalogi:" #~ msgid "Only share files with friends" #~ msgstr "Współdziel tylko ze znajomymi" #~ msgid "My Interests" #~ msgstr "Zainteresowania" #~ msgid "Recommendations" #~ msgstr "Rekomendacje" #~ msgid "Similar Users" #~ msgstr "Podobni użytkownicy" #~ msgid "Users" #~ msgstr "Użytkownicy" #~ msgid "Files" #~ msgstr "Pliki" #~ msgid "Chat Rooms" #~ msgstr "Pokoje rozmów" #~ msgid "Results" #~ msgstr "Wyniki" #~ msgid "Stop new search results from being displayed" #~ msgstr "Zatrzymaj dalsze wyświetlanie znalezionych wyników" #~ msgid "Abort Search" #~ msgstr "Wstrzymaj wyszukiwanie" #~ msgid "Folders" #~ msgstr "Foldery" #~ msgid "Shared" #~ msgstr "Udostępnione" #~ msgid "Self Description" #~ msgstr "Własny opis" #~ msgid "Interests" #~ msgstr "Zainteresowania" #~ msgid "Picture" #~ msgstr "Obraz" #~ msgid "/toggle 'plugin'" #~ msgstr "/toggle 'wtyczka'" #~ msgid "Toggle plugin on/off state" #~ msgstr "Włącz lub wyłącz wtyczkę" #~ msgid "About Search Filters" #~ msgstr "Lista komend filtrów wyszukiwania" #~ msgid "" #~ "You can use this to refine which results are displayed. The full results\n" #~ "from the server are always available if you clear all the search terms.\n" #~ "\n" #~ "You can filter by:\n" #~ "\n" #~ "- Included text:\n" #~ " Files are shown if they contain this text.\n" #~ " Case is insensitive, but word order is important.\n" #~ " 'Spears Brittany' will not show any 'Brittany Spears'\n" #~ "\n" #~ "- Excluded text:\n" #~ " As above, but files will not be displayed if the text matches\n" #~ "\n" #~ "- Size:\n" #~ " Shows results based on size. use > and < to find files larger or " #~ "smaller.\n" #~ " Files exactly the same as this term will always match.\n" #~ " Use = to specify an exact match. Use k or m to specify kilo or " #~ "megabytes.\n" #~ " >10M will find files larger than 10 megabytes.\n" #~ " <4000k will find files smaller than 4000k.\n" #~ "\n" #~ "- Bitrate:\n" #~ " Find files based on bitrate. Use < and > to find lower or higher.\n" #~ " >192 finds 192 and higher, <192 finds 192 or lower.\n" #~ " =192 only finds 192.\n" #~ " For VBR, the average bitrate is used.\n" #~ "\n" #~ "- Free slot:\n" #~ " Show only those results from users which have at least\n" #~ " one upload slot free.\n" #~ "\n" #~ "- To set the filter, press Enter. This will apply to any existing " #~ "results, and any more that are returned.\n" #~ "- To filter in a different way, just set the relevant terms.\n" #~ "- You do not need to do another search to apply a different filter." #~ msgstr "" #~ "Możesz tego użyć w celu określenia jakie wyniki zostaną wyświetlone.\n" #~ "Wszystkie wyniki wyszukiwania zostaną wyświetlone jeśli wyczyścisz\n" #~ "filtrowanie.\n" #~ "\n" #~ "Możesz filtrować przy pomocy:\n" #~ "\n" #~ "- Zawartości słów:\n" #~ " Pliki są pokazane, jeśli zawierają daną frazę.\n" #~ " Wielkość liter ma znaczenie, ale sortowanie słów jest bardziej " #~ "istotne.\n" #~ " 'Spears Brittany' nie pokaże żadnej 'Brittany Spears'\n" #~ "\n" #~ "- Pominiętych słów:\n" #~ " Tak jak powyżej, ale pliki nie zostaną wyświetlone jeśli fraza " #~ "zostanie znaleziona\n" #~ "\n" #~ "- Rozmiar:\n" #~ " Pokaż tylko te wyniki na podstawie ich rozmiaru. Użyj > i < żeby " #~ "znaleźć pliki większe lub mniejsze.\n" #~ " Dokładnie takie same pliki jak podany rozmiar zostaną " #~ "uwzględnione.\n" #~ " Użyj = w celu podania dokładnego rozmiaru. Użyj k dla kilobajtów " #~ "lub m dla megabajtów.\n" #~ " >10M pokaże pliki większe niż 10 megabajtów.\n" #~ " <4000k pokaże pliki mniejsze niż 4000k.\n" #~ "\n" #~ "- Bitrate:\n" #~ " Znajdź pliki na podstawie ich bitrate. Użyj < i > by znaleźć " #~ "mniejsze lub większe.\n" #~ " >192 pokaże wyniki z bitrate 192 i większym; <192 pokaże pliki z " #~ "bitrate 192 lub mniejszym.\n" #~ " =192 pokaże pliki z bitrate równym 192.\n" #~ " Dla VBR uśrednione bitrate jest użyte.\n" #~ "\n" #~ "- Wolne sloty:\n" #~ " Pokaż tylko te wyniki, gdzie jest minimum jeden wolny slot " #~ "pobierania.\n" #~ "\n" #~ "- W celu użycia filtra naciśnij Enter. Zostanie on nałożony na aktualne i " #~ "przyszłe wyniki.\n" #~ "- W celu filtrowania na różne sposoby, należy określić dodatkowe " #~ "filtrowanie.\n" #~ "- Nie trzeba ponownie wyszukiwać żeby użyć innych filtrów." #~ msgid "About _Chat Room Commands" #~ msgstr "Lista komend w pokojach rozmów" #~ msgid "About _Private Chat Commands" #~ msgstr "Lista komend prywatnych rozmów" #~ msgid "About _Search Filters" #~ msgstr "Lista komend filtrów wyszukiwania" #~ msgid "General" #~ msgstr "Ogólne" #~ msgid "Chat Colors" #~ msgstr "Kolory czatu" #~ msgid "Username Font Style:" #~ msgstr "Styl czcionki użytkownika:" #~ msgid "Username Colors and Hotspots" #~ msgstr "Koloruj nazwy użytkowników" #~ msgid "Display away colors" #~ msgstr "Wyświetl kolory nieobecności" #~ msgid "Cycle completions instead of showing a dropdown" #~ msgstr "Uzupełnianie cykli zamiast wyświetlania rozwijanej listy" #~ msgid "Download SFV/MD5 before anything else" #~ msgstr "Pobierz SFV/MD5 przed wszystkim innym" #~ msgid "Select a folder" #~ msgstr "Wybierz folder" #~ msgid "Download Filters" #~ msgstr "Filtry pobierania" #~ msgid "Commands" #~ msgstr "Komendy" #~ msgid "Run command after folder finishes ($ for folder path):" #~ msgstr "Uruchom komendę po skończeniu folderu ($ dla ścieżki folderu)" #~ msgid "Tray" #~ msgstr "Zasobnik" #~ msgid "Always send Nicotine+ to tray when main window is closed" #~ msgstr "" #~ "Zawsze minimalizuj do zasobnika, kiedy główne okno Nicotine+ jest " #~ "zamknięte" #~ msgid "Trayicon" #~ msgstr "Ikona w zasobniku" #~ msgid "Status" #~ msgstr "Status" #~ msgid "Read" #~ msgstr "Czytaj" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Otwórz ponownie ostatnie wiadomości rozmowy prywatnej" #~ msgid "" #~ "Reopen closed search tabs that haven't been ignored when new results come " #~ "in" #~ msgstr "" #~ "Otwórz ponownie zamknięte zakładki wyszukiwania, które zostały " #~ "zignorowane, jeśli pojawią się nowe wyniki" #~ msgid "Search Filters" #~ msgstr "Filtry wyszukiwania" #~ msgid "Ports" #~ msgstr "Porty" #~ msgid "Upload Queue" #~ msgstr "Kolejka wysyłania" #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "" #~ "Użytkownicy otrzymają jeden plik, a następnie zostanie wybrany inny " #~ "użytkownik" #~ msgid "KBytes/sec" #~ msgstr "KB/s" #~ msgid "Megabytes" #~ msgstr "Megabajtów" #, python-format #~ msgid "ERROR: MPRIS: failed to load dbus module: %(error)s" #~ msgstr "BŁĄD: MPRIS: błąd ładowanie modułu dbus: %(error)s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Połączenie zakończone przez drugiego użytkownika: %s" #, python-format #~ msgid "Requesting address for user %(user)s" #~ msgstr "Pobieranie adresu użytkownika %(user)s" #, python-format #~ msgid "Initialising direct connection of type %(type)s to user %(user)s" #~ msgstr "" #~ "Inicjowanie bezpośredniego połączenia typu %(type)s do użytkownika " #~ "%(user)s" #, python-format #~ msgid "" #~ "Direct connection of type %(type)s to user %(user)s failed, attempting " #~ "indirect connection" #~ msgstr "" #~ "Bezpośrednie połączenie typu %(type)s do użytkownika %(user)s zakończone " #~ "błędem, inicjacja połączenia pośredniego" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Serwer zwrócił port 0 dziesiąty raz dla użytkownika %(user)s, poddaje się" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Serwer zwrócił nie-zerowy port dla użytkownika %(user)s po %(tries)i " #~ "próbach" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "Serwer zwrócił port 0 dla użytkownika %(user)s, ponawianie" #, python-format #~ msgid "Can't connect to user %s neither directly nor indirectly, giving up" #~ msgstr "" #~ "Nie można połączyć się z użytkownikiem %s bezpośrednio jak i pośrednio, " #~ "poddaje się" #, python-format #~ msgid "" #~ "Indirect connect request of type %(type)s to user %(user)s expired, " #~ "giving up" #~ msgstr "" #~ "Pośrednie połączenie typu %(type)s do użytkownika %(user)s wygasło, " #~ "poddaje się" #, python-format #~ msgid "" #~ "Can't connect to user %s neither directly nor indirectly, informing user " #~ "via the server" #~ msgstr "" #~ "Nie można połączyć się z użytkownikiem %s bezpośrednio jak i pośrednio, " #~ "informowanie użytkownika poprzez serwer" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Nieznana tunelowana wiadomość %s" #, python-format #~ msgid "" #~ "Found meta data that couldn't be encoded, possible corrupt file: " #~ "'%(file)s' has a bitrate of %(bitrate)s kbs, a length of %(length)s " #~ "seconds and a VBR of %(vbr)s" #~ msgstr "" #~ "Znaleziono metadane, które nie mogą zostać przetworzone, prawdopodobnie " #~ "uszkodzony plik: %(file)s' ma bitrate %(bitrate)s kbs, o długości " #~ "%(length)s sekund i VBR równym %(vbr)s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Filtrowanie: %s" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "Otrzymano żądanie transferu %s ale nie ustalono żądającego" #, python-format #~ msgid "Denied file request: User %(user)s, %(msg)s" #~ msgstr "Zablokowane żądanie pliku: Użytkownik %(user)s, %(msg)s" #, python-format #~ msgid "Upload request: %(req)s Response: %(resp)s" #~ msgstr "Żądanie wysyłania: %(req)s Odpowiedź: %(resp)s" #, python-format #~ msgid "Queued upload request: User %(user)s, %(msg)s" #~ msgstr "Żądanie zakolejkowanego wysyłania: Użytkownik %(user)s, %(msg)s" #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Otrzymano nieznaną odpowiedź transferu: %s" #, python-format #~ msgid "Download started: %s" #~ msgstr "Pobieranie rozpoczęte: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Pobieranie zakończone: %(file)s" #~ msgid "Virtual Directory" #~ msgstr "Wirtualny katalog" #~ msgid "Directory" #~ msgstr "Katalog" #~ msgid "Dirs" #~ msgstr "Katalogi" #~ msgid "Counting files..." #~ msgstr "Liczenie plików...." #, python-format #~ msgid "Down: %(num)i users, %(speed)s" #~ msgstr "Pobieranie: %(num)i użytkowników, %(speed)s" #, python-format #~ msgid "Up: %(num)i users, %(speed)s" #~ msgstr "Wysyłanie: %(num)i użytkowników, %(speed)s" #, python-format #~ msgid "%(current)s/%(limit)s Connections" #~ msgstr "%(current)s/%(limit)s połączeń" #~ msgid "Search files" #~ msgstr "Szukaj plików" #~ msgid "In queue" #~ msgstr "W kolejce" #~ msgid "_Download directory" #~ msgstr "Katalog _pobierania" #~ msgid "Download directory _to..." #~ msgstr "Pobierz folder _do..." #~ msgid "Up_load file(s)" #~ msgstr "Wy_ślij plik(i)" #~ msgid "Your Interests" #~ msgstr "Twoje zainteresowania" #~ msgid "Autoclear finished / aborted" #~ msgstr "Automatycznie czyszczenie skończonych / przerwanych" #~ msgid "Show Info" #~ msgstr "Pokaż informacje" #~ msgid "Debug output:" #~ msgstr "Wyniki debuggera:" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Zablokuj przychodzące pliki (wyłącz gdy używasz NFS)" #~ msgid "Select a directory" #~ msgstr "Wybierz katalog" #~ msgid "Run command after download finishes ($ for filename):" #~ msgstr "Uruchom komendę po skończonym pobieraniu ($ dla nazwy pliku):" #~ msgid "Open Directory" #~ msgstr "Otwórz katalog" #~ msgid "Filter out:" #~ msgstr "Filtr wyjścia:" #~ msgid "Filter in:" #~ msgstr "Filtr wejścia:" #~ msgid "Privileges" #~ msgstr "Przywileje" #~ msgid "Use the first available port in the range from " #~ msgstr "Użyj pierwszego wolnego portu w przedziale od " #~ msgid "Download to the following directory:" #~ msgstr "Pobieraj do następującego katalogu:" #~ msgid "Use the first available listening port from the following range:" #~ msgstr "Użyj pierwszego wolnego portu nasłuchu z następującej rangi:" nicotine-plus-3.3.4/po/pt_BR.po000066400000000000000000007233171461625273200163230ustar00rootroot00000000000000# Copyright (C) 2006-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Cliente Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Cliente gráfico para a rede peer-to-peer Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek;Nicotine;compartilhamento;bate-papo;mensagens;P2P;pessoa para " "pessoa;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Navegue na rede Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ é um cliente gráfico para a rede peer-to-peer Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ pretende ser uma alternativa leve, agradável, gratuita e de código " "aberto (FOSS) ao cliente oficial Soulseek, ao mesmo tempo que fornece um " "conjunto abrangente de recursos." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Pesquisar Arquivos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Downloads" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Navegar em Compartilhamentos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Bate-papo Privado" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Equipe Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Website: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "mostrar esta mensagem de ajuda e sair" #: pynicotine/__init__.py:59 msgid "file" msgstr "arquivo" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "usar arquivo de configuração não padrão" #: pynicotine/__init__.py:63 msgid "dir" msgstr "pst" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "diretório alternativo para dados do usuário e plugins" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "iniciar o programa sem mostrar a janela" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "vincular sockets ao IP dado (útil para as VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "porta" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "escutar na porta dada" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "reescanear os arquivos compartilhados" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "iniciar o programa no modo sem interface gráfica (headless)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "mostrar a versão e sair" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Você está usando uma versão sem suporte do Python (%(old_version)s).\n" "Você deve instalar Python %(min_version)s ou mais novo." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Falha na leitura dos compartilhamentos. Por favor, feche outras instâncias " "do Nicotine+ e tente novamente." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s está ausente" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s está online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s está offline" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Status de Amigos" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Você foi adicionado a uma sala privada: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Mensagem de bate-papo do usuário '%(user)s' na sala '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Não foi possível criar diretório '%(path)s', erro relatado: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Erro de backup das configurações: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configurações salvas em: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Carregando %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Saindo do %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "terminando" #: pynicotine/core.py:237 msgid "application closing" msgstr "fechamento do aplicativo" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Sair %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Você precisa especificar um nome de usuário e senha antes de se conectar…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "Erro: Falha no download do filtro! Verifique seus filtros. Razão: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Erro: %(num)d Filtros de download falharam! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s baixado de %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Arquivo baixado" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Executado: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Falha na execução de '%(command)s': %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s baixado de %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Pasta baixada" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Executado na pasta: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Não foi possível mover '%(tempfile)s' para '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Erro na Pasta de Download" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Download finalizado: usuário %(user)s, arquivo %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Download abortado, usuário %(user)s, arquivo %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Erro de I/O do download: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Não foi possível obter um arquivo de trava exclusivo - erro de E/S: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Não é possível salvar o arquivo em %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Download inicializado: usuário %(user)s, arquivo %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Não é possível encontrar %s, por favor instalá-lo." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Nenhum ambiente gráfico disponível, usando o modo headless (sem GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Conectar" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Desconectar" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _Privilégios" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferências" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Sair" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Navegar em Compartilhamentos_Públicos" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Navegar Compartilhamentos de_Amigos" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Navegar Compartilhamentos _Confiáveis" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Reverificar compartilhamentos" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Configurar_Compartilhamentos" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Atalhos do teclado" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Assistente de configuração" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Estatísticas de transferência" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Reportar um _Erro" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Melhorar T_raduções" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Sobre Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Arquivo" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Compartilhamentos" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Ajuda" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_Navegar em Compartilhamentos" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Não foi possível mostrar a notificação: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Você ainda está enviando arquivos. Você realmente quer sair?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Aguarde o término dos uploads" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Você realmente quer sair da Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Não" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Executar em segundo plano" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Sair do Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Ações não disponíveis" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Verifique se os discos externos estão montados e se as permissões das pastas " "estão corretas." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Cancelar" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "Tenta_r novamente" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Forçar nova verificação" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Senha Inválida" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "O usuário %s já existe e a senha que você digitou é inválida. Por favor, " "escolha outro nome de usuário se este for seu primeiro login." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Alterar _Detalhes de login" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Mensagens de Usuários que estão Baixando" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Envia mensagem privada para todos os usuários que estão baixando arquivos de " "você:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Enviar Mensagem" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Mensagens de Amigos" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Enviar mensagens privadas para todos os amigos online:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Selecione um arquivo de lista de compartilhamentos salvos" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Erro crítico" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ encontrou um erro crítico e precisa sair. Copie a seguinte " "mensagem e inclua-a em um relatório de bug:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Sair do Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copiar & Relatar Bug" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "País" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Usuário" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Velocidade" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Arquivos" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Confiável" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notificar" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Priorizado" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Visto pela última vez" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Observação" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Adicionar _Nota sobre o Usuário…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Remover" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nunca visto" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Adicionar Nota sobre o Usuário" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Adicione uma nota sobre o usuário %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Adicionar" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Criar uma Nova Sala?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Deseja realmente criar uma nova sala \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Tornar sala privada" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Pe_squisa de Arquivos" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Encontrar…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copiar" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copiar tudo" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Limpar Vista de Atividades" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Deixar Sala" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copiar URL" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Exibir log da sala" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Excluir o registro da sala…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Limpar Tela de Mensagens" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s entrou na sala" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s mencionou você na sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mencionado por %(user)s na Sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Mensagem de %(user)s na Sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s saiu da sala" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s tornou-se ausente" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s retornou" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Excluir mensagens registradas?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Você realmente deseja excluir permanentemente todas as mensagens registradas " "para esta sala?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Sobre" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Website" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Erro ao verificar a versão mais recente: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Novo lançamento disponível: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Atualizado" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Verificando a versão mais recente…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Assistente de Configuração" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Pasta Virtual" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Pasta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Concluído" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Próximo" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Adicionar uma Pasta Compartilhada" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Editar Pasta Compartilhada" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Digite novo nome virtual para '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Editar" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Propriedades do Arquivo" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" "Propriedades do arquivo (%(num)i de %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Propriedades do arquivo (%(num)i de %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Aplicar" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Adicionar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Editar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Configurações" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Adicionar Item" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Editar Item" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Desconhecido" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Checar o Status da Porta" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, porta %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Mudança de Senha Rejeitada" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Digite uma nova senha para sua conta Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Você está desconectado da rede Soulseek. Se você quiser alterar a senha de " "uma conta Soulseek existente, você precisa estar logado nessa conta." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Digite a senha a ser usada ao fazer login:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Mudar Senha" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Alterar" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Ninguém" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Todos" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amigos" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Amigos de confiança" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nada" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Abrir Arquivo" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Abrir no Gerenciador de Arquivos" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Pesquisar" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausar" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Resumir" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Navegar Pasta" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxe: Não diferencia maiúsculas de minúsculas. Se ativado, as " "expressões regulares do Python podem ser usadas, caso contrário, apenas " "correspondências curinga * são suportadas." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtro" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Adicionar Filtro de Download" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Insira um novo filtro de download:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Habilitar expressões regulares" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Editar Filtro de Download" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modifique o seguinte filtro de download:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d falhou! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtros bem-sucedidos" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Público" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Acessível À" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Abortar" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Tentar novamente" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Primeiro que entrar, primeiro a sair" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Nome de usuário" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Endereço de IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorar Usuário" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Digite o nome do usuário que você deseja ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorar Endereço de IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Digite um endereço IP que você deseja ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* é um curinga" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Banir Usuário" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Digite o nome do usuário que você deseja banir:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Banir Endereço de IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Digite um endereço IP que você deseja bloquear:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Códigos do formato" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Padrão" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Substituição" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Padrão de censura" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Digite um padrão que você quer censurar. Adicione espaços ao redor do padrão " "se você não quiser combinar termos dentro das palavras (pode falhar no " "início e no fim das linhas)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Editar Padrão de Censura" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Adicionar Substituto" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Insira um padrão de texto e com o que substituí-lo:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Editar Substituto" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Padrão do sistema" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Mostrar caixa de diálogo de confirmação" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Executar em segundo plano" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "negrito" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "itálico" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "sublinhado" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Aba de Amigos Separados" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Barra lateral na aba Salas de bate-papo" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Barra lateral sempre visível" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Topo" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Embaixo" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Esquerda" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Direita" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Conectado" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Ausente" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Desconectado" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Guia alterada" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Realçar Guia" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Janela" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Online (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Ausente (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Desconectado (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Mensagem (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocolo" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Adicionar Gerenciador de URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Insira o protocolo e o comando para o manipulador de URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Editar Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Digite um novo comando para o protocolo %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nome de usuário;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Leitor de música (por exemplo, amarok, audacious, exaile); deixe vazio para " "detecção automática:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Nome de usuário: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Comando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Título" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Reproduzindo Agora (tipicamente \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Duração" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Comentário" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Álbum" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Número da Faixa" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Ano" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nome do arquivo (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Habilitado" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Nenhum Plugin Selecionado" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Rede" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interface de Usuário" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Compartilhamentos" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Envios" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Pesquisas" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Perfil do Usuário" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Bate-Papos" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Reproduzindo Agora" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Registrando" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Usuários Banidos" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Usuários Ignorados" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Plugins" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Gerenciador URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferências" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Escolha um nome de arquivo para backup de configuração" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Estatísticas de Transferência" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Total Desde %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Redefinir estatísticas de transferência?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Você realmente quer redefinir as estatísticas de transferência?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Lista de Desejos" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Desejo" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "Pesqui_sar por este item" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Editar Desejo" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Insira um novo valor para o desejo '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Limpar lista de desejos?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Você realmente deseja limpar sua lista de desejos?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Caminho" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Resumir" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_ausar" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Finalizado / Filtrado" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Finalizado" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pausado" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrado" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Excluído" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Enfileiradas…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Tudo…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Limpar downloads na fila" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Você realmente deseja limpar todos os downloads na fila?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Limpar Todos os Downloads" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Você realmente quer limpar todos os downloads?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Baixar %(num)i arquivos?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Você realmente deseja baixar %(num)i arquivos da pasta %(user)s's %(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Pasta de Download" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Gosteis" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Não Gosteis" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Avaliação" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Item" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Recomendações para este item" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Eu _Gosto Disso" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Eu não gosto d_isso" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Recomendações" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Usuários Similares" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Recomendações (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Usuários Similares (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Mensagem Privada de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Resultados da lista de desejos encontrados" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Perfis de Usuário" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Salas de Bate-papo" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interesses" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Bate-papo" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Depuração] Conexões" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Depurações] Mensagens" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Depurações] Transferências" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Depurações] Miscelânea" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Encontrar…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Copiar" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copiar_Tudo" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Exibir_Registros de Depuração" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Exibir_Registros de Transferências" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Categorias de Registros" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Limpar Exibição de Registros" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Downloads: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Envios: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Preparando Compartilhamentos" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Verificando compartilhamentos" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Saindo..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Última mensagem" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Sala" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Usuários" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Entrar na Sala" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Sair da Sala" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Rejeitar Sala Privada" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Cancelar Associação à Sala" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Fechar Todas as Abas…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Fechar Aba" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Exibir registro de bate-papo" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Excluir o registro de bate-papo…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Ações do Usuário" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Você realmente deseja excluir permanentemente todas as mensagens registradas " "para este usuário?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Mensagem(ns) enviada(s) enquanto você estava offline" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amigos" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Salas" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Usuário" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Na Fila" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Tipo de Arquivo" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nome do Arquivo" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Tamanho" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Qualidade" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copiar _Caminho do Arquivo" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copiar _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copiar U_RL da Pasta" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Download Arquivo(s)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Baixar Arquivo(s) _Para…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Baixar_Pasta(s)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Baixar P_asta(s) Para…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Exibir Perfil_de_Usuário" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Navegar Pasta" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Propriedades do A_rquivo" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copiar Termo de Pesquisa" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Limpar Todos os Resultados" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Limpar Filtros" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Restaurar Filtros" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVADO] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Filtros de Resultados [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Filtros de Resultados" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d filtro(s) ativo(s)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Adicionar De_sejo" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Remover De_sejo" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Selecionar Resultados do Usuário" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Total: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Resultados" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Selecione a Pasta de Destino para os Arquivo(s)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Selecionar Pasta de Destino" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Enfileirado" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "Enfileirado (priorizado)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "Enfileirado (privilegiado)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Obtendo status" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transferindo" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Conexão fechada" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Conexão esgotada" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Usuário saiu" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Cancelado" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Erro na pasta de download" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Erro no arquivo local" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Banido" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Arquivo não compartilhado" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Desligamento pendente" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Erro de leitura de arquivo" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Fila" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Porcentagem" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Tempo Decorrido" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Tempo Restante" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Abrir Arquivo" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Abrir no Gerenciador_de Arquivos" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Pesquisar" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Limpar Tudo" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Selecione as Transferências do Usuário" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Abortar" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Concluído / Cancelado / Falhado" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Finalizado / Cancelado" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Falhou" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Usuário desconectado" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Limpar Uploads Enfileirados" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Você realmente deseja limpar todos os uploads enfileirados?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Limpar Todos os Uploads" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Deseja mesmo limpar todos os uploads?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Salvar lista de compartilhamentos em disco" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Pasta(s) e Subpasta(s) para Upload…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copiar_Caminho da Pasta" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Baixar Pastas e Subpastas" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Baixar Pastas & Subpastas _Para…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Nome do Arquivo" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Up_load de Arquivo(s)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Pasta para Upload…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Baixar Pasta _Para…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "A lista de arquivos compartilhados do usuário está vazia. Ou o usuário não " "está compartilhando nada, ou está compartilhando arquivos de forma privada." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Não é possível solicitar arquivos compartilhados do usuário. O usuário está " "offline, as portas de escuta estão fechadas em ambos os lados ou há um " "problema de conectividade temporário." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Selecionar a Destinação para Download de Várias Pastas" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Upload de Pasta (com Subpastas) Para Usuário" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Upload de Pasta Para Usuário" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Digite o nome do usuário para o qual você deseja fazer upload:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Enviar" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Selecione a Pasta de Destino para o(s) Arquivo(s)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Upload do Arquivo(s) Para Usuário" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Copiar Imagem" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Salvar Imagem" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Falha ao carregar a imagem do usuário %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Não foi possível solicitar informações do usuário. Ambos têm uma porta de " "escuta fechada, o usuário está offline ou há um problema de conectividade " "temporário." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Remover _Amigo" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Adicionar _Amigo" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Desbanir Usuário" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Designorar Usuário" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Sim" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Não" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Insira o número de dias." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Dias de presente de seus privilégios Soulseek para o usuário %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s dias restantes" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Dar Privilégios" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Dar Privilégios" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Fechar" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Sim" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Selecionar um Arquivo" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Selecione uma Pasta" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Selecionar" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Selecione uma Imagem" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Todas as imagens" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Salvar como…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Nenhum)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Fechar Aba" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Fechar Todas as Abas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Você realmente quer fechar todas as abas?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Abas Não Lidas" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Todas as Abas" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Re-abrir Aba Fechada" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Arquivos(s) Selecionados" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Navegar Arquivos" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Adicionar Amigo" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Mostrar En_dereço de IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Salas Privadas" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Remover da Sala Privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Adicionar à sala privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Remova como Operador de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Adicionar como Operador de %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- mensagens antigas acima ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Executável" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Áudio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Imagem" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Arquivo" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Variados" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Vídeo" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Documento" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Texto" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Erro ao carregar o ícone personalizado %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Ocultar Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Mostrar Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Coluna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Desagrupado" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Agrupado pela Pasta" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Agrupado pelo Usuário" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Você realmente quer sair? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "O usuário %s já existe e a senha que você digitou é inválida." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Digite %s para entrar com outro nome de usuário ou senha." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Senha: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Para criar uma nova conta Soulseek, preencha seu nome de usuário e senha " "desejados. Se você já possui uma conta, preencha seus dados de login " "existentes." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Os seguintes compartilhamentos estão indisponíveis:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Reescanear novamente? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" "Não foi possível gravar no arquivo de registro '%(filename)s': %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Não é possível acessar o arquivo de log %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Emirados Árabes Unidos" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afeganistão" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antígua e Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguila" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albânia" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armênia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antártida" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Americana" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Áustria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Austrália" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Ilhas Aland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaidjão" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bósnia e Herzegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Bélgica" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burquina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgária" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrein" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benim" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "São Bartolomeu" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudas" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolívia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Santo Eustáquio e Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Butão" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Ilha Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botsuana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Belarus" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canadá" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Ilhas Cocos (Keeling)" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "República Democrática do Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "República Centrafricana" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Suíça" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Costa do Marfim" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Ilhas Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Camarões" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colômbia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Ilha Christmas" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Chipre" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Tcheca" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Alemanha" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Djibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dinamarca" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "República Dominicana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Argélia" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Equador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estônia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egito" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Saara Ocidental" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritreia" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Espanha" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiópia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlândia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Ilhas Malvinas" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Micronésia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Ilhas Faroé" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "França" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabão" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Grã-Bretanha" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Granada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Geórgia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guiana Francesa" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernesey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Gana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groelândia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gâmbia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guiné" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadalupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guiné Equatorial" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grécia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Ilhas Geórgia do Sul e Sanduíche do Sul" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guiné-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guiana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Ilhas Heard & McDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croácia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hungria" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonésia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Ilha de Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Índia" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Território britânico do Oceano Índico" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Iraque" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Irã" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islândia" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Itália" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordânia" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japão" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Quênia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Quirguistão" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Camboja" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Quiribáti" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comores" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "São Cristóvão & Névis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Coreia do Norte" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Coreia do Sul" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Ilhas Cayman" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Cazaquistão" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Líbano" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Santa Lúcia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Libéria" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituânia" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburgo" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letônia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Líbia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marrocos" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Mônaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldávia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "São Martinho" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Ilhas Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedônia do Norte" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Birmânia" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongólia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macau" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Ilhas Marianas do Norte" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritânia" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Monserrate" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Maurício" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldivas" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Maláui" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "México" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malásia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Moçambique" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namíbia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nova Caledônia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Níger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Ilha Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigéria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicarágua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Países Baixos" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Noruega" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nova Zelândia" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omã" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panamá" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinésia Francesa" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua-Nova Guiné" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipinas" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Paquistão" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polônia" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "São Pedro e Miquelão" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Ilhas Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Porto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguai" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Catar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Reunião" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Romênia" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Sérvia e Montenegro" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rússia" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arábia Saudita" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Ilhas Salomão" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seicheles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudão" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suécia" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Cingapura" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Santa Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Eslovênia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Ilhas Svalbard & Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Eslováquia" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Serra Leoa" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somália" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudão do Sul" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "São Tomé & Príncipe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "São Martinho" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Síria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Essuatíni" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Ilhas Turcas e Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Chade" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Terras Austrais e Antárticas Francesas" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailândia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tajiquistão" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Toquelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor-Leste" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turcomenistão" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunísia" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turquia" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trindade & Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzânia" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ucrânia" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Ilhas Menores Distantes dos Estados Unidos" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Estados Unidos" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguai" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbequistão" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Vaticano" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "São Vicente & Granadinas" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Ilhas Virgens Britânicas" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Ilhas Virgens dos Estados Unidos" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnã" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis & Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Iêmen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Maiote" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "África do Sul" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zâmbia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbábue" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Falha na conversão de texto em voz para mensagem: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Por favor, forneça o seu nome de usuário Last.fm e a chave de API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Erro no Reproduzindo Agora" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Não foi possível conectar-se ao Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Não foi possível obter a faixa recente do Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Não foi possível encontrar um MPRIS player adequado" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Foram encontrados vários players MPRIS: %(players)s. Usando: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Leitor MPRIS detectado automaticamente: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Algo deu errado ao consultar %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Forneça seu nome de usuário ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: não foi possível conectar a ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Você não parece estar ouvindo nada agora" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Não foi possível obter a faixa atual de ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Filtros de Rede" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Lista de comandos disponíveis" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Conectar ao servidor" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Desconectar do servidor" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Alternar status ausente" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Gerenciar plugins" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Limpar janela de bate-papo" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Diga algo na terceira pessoa" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Anuncie a música que está tocando no momento" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Entrar na sala de bate-papo" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Sair da sala de bate-papo" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Diga a mensagem na sala de bate-papo especificada" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Abrir bate-papo privado" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Fechar bate-papo privado" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Solicitar versão do cliente do usuário" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Enviar mensagem privada ao usuário" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Adicionar usuário à lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Remover amigo da lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Navegar arquivos do usuário" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Mostrar informações do perfil do usuário" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Mostrar endereço IP ou nome de usuário" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Bloquear conexões de usuário ou endereço IP" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Remover usuário ou endereço IP das listas de banimento" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Silenciar mensagens do usuário ou endereço IP" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Remova o usuário ou o endereço IP das listas de ignorados" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Adicionar compartilhamento" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Remover compartilhamento" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Lista de compartilhamentos" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Nova varredura dos compartilhamentos" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Iniciar pesquisa global de arquivos" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Pesquisar arquivos em salas que entrou" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Pesquisar arquivos de todos os amigos" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Pesquise os arquivos compartilhados de um usuário" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Listando %(num)i comandos disponíveis:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Listando %(num)i comandos disponíveis correspondentes a \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Digite %(command)s para listar comandos semelhantes" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Digite %(command)s para listar os comandos disponíveis" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Não entrou na sala %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Não enviar mensagens para o usuário %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Bate-papo privado fechado do usuário %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Banido (%s)" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Desbanido (%s)" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "%s ignorados" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s não ignorados" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s compartilhamentos listados (%(num_total)s configurado)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Não é possível compartilhar pasta inacessível \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Adicionado %(group_name)s compartilhamento \"%(virtual_name)s\" (é " "necessária nova verificação)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Não compartilhar com nome \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Removido do compartilhamento \"%s\" (é necessária nova verificação)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Carregando sistema de plugins" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Não foi possível carregar o plug-in %(name)s. O nome da pasta do plugin " "contém caracteres inválidos: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Comando %(interface)s conflitante no plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Plugin carregado %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Não foi possível carregar o plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Plugin descarregado %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Não foi possível descarregar o plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s falhou com erro %(errortype)s: %(error)s.\n" "Rastreamento: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Sem descrição" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Argumento %s ausente" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Argumento inválido, escolhas possíveis: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Uso: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comando desconhecido: %(command)s. Digite %(help_command)s para listar os " "comandos disponíveis." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Nenhum dispositivo UPnP encontrado" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Falha ao encaminhar a porta externa %(external_port)s: " "%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Porta externa %(external_port)s encaminhada com sucesso para o " "endereço IP local %(ip_address)s porta %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Mensagem privada do usuário '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Procurando pelo item da lista de desejos \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Período de espera da lista de desejos definido como %s segundos" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "O usuário %(user)s está procurando por \"%(query)s\", encontrou %(num)i " "resultados" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Reconstruindo compartilhamentos…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Reescaneando compartilhamentos…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Nova verificação concluída: %(num)s pastas encontradas" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Ocorreu um erro grave ao verificar novamente os compartilhamentos. Se o " "problema persistir, exclua %(dir)s/*.dbn e tente novamente. Se isso não " "ajudar, envie um relatório de bug com este rastreamento de pilha incluído: " "%(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Erro ao verificar o arquivo %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Erro ao verificar a pasta %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Erro ao verificar metadados do arquivo %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Nova verificação abortada devido a compartilhamentos indisponíveis: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" "O usuário %(user)s está navegando em sua lista de arquivos compartilhados" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Falha ao buscar a pasta compartilhada %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Não foi possível ler o banco de dados de compartilhamentos. Por favor, " "redigitalize seus compartilhamentos. Erro: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "A interface de rede especificada '%s' não está disponível" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Não é possível escutar na porta %(port)s. Certifique-se de que nenhum outro " "aplicativo o use ou escolha uma porta diferente. Erro: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Escutando na porta: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Não é possível conectar ao servidor %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Reconectando ao servidor em %i segundos" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Conectando em %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Conectado ao servidor %(host)s:%(port)s, fazendo login…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Desconectado do servidor %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Alguém fez login na sua conta Soulseek em outro lugar" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Upload concluído: usuário %(user)s, endereço IP %(ip)s, arquivo %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Upload abortado, usuário %(user)s, arquivo %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Erro de I/O de upload: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Upload iniciado: usuário %(user)s, endereço IP %(ip)s, arquivo %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" "Não foi possível criar diretório '%(folder)s', erro relatado: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Falha ao carregar compartilhamentos do disco: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Lista salva de arquivos compartilhados para o usuário '%(user)s' em %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Não foi possível criar diretório '%(user)s', erro relatado: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Imagem salva em %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Não é possível salvar a imagem em %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "O usuário %(user)s está visualizando seu perfil" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Não foi possível conectar ao servidor. Razão: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Não pode conectar" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Não é possível recuperar o IP do usuário %s, pois este usuário está offline" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Endereço IP do usuário %(user)s: %(ip)s, porta %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Anúncio do Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i usuários privilegiados" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Você não tem privilégios de Soulseek. Enquanto os privilégios estiverem " "ativos, seus downloads serão colocados na fila antes dos de usuários sem " "privilégios." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dias, %(hours)i horas, %(minutes)i minutos, %(seconds)i segundos de " "privilégios do Soulseek restantes" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Sua senha foi mudada" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Senha alterada" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Não é possível abrir o caminho do arquivo %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Não é possível abrir o URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Algo deu errado ao ler o arquivo %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Tentando carregar o backup do arquivo %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Não foi possível fazer backup do arquivo %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Não foi possível salvar o arquivo %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Não foi possível restaurar o arquivo anterior %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Adicionar amigo…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Registro de atividades de pesquisa…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Pesquisar registro de bate-papo…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Enviar mensagem…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Alternar conversão de texto em fala" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Ajuda do Comando da Sala de Bate-Papo" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Registro" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Parede de Salas" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Parede da s_ala" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Criado por" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Traduzido por" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licença" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Anterior" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Bem-vindo ao Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Configurar…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Se o nome de usuário desejado já estiver em uso, você será solicitado a " "alterá-lo." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Para se conectar com outros pares do Soulseek, uma porta de escuta no seu " "roteador deve ser encaminhada para o seu computador." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Se sua porta de escuta estiver fechada, você só poderá se conectar a " "usuários cujas portas de escuta estejam abertas." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Se necessário, escolha uma porta de escuta diferente abaixo. Isso também " "pode ser feito posteriormente nas preferências." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Baixar Arquivos para Pasta" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Compartilhar Pastas" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Os usuários do Soulseek poderão fazer download de seus compartilhamentos. " "Contribua com a rede Soulseek compartilhando seus próprios arquivos e " "compartilhando novamente o que você baixou de outros usuários." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Você está pronto para usar Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek é um protocolo não criptografado, não destinado à comunicação " "segura." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Doar para o Soulseek concede privilégios por um determinado período de " "tempo. Se você tiver privilégios, seus downloads serão enfileirados antes " "dos usuários não privilegiados." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Arquivo anterior" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Arquivo seguinte" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nome" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Última Velocidade" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exportar…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Atalhos do Teclado" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Geral" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Conectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Desconectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Reescanear Compartilhamentos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Mostrar Painel de Registro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Confirmar Saída" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Sair" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Abrir Menu Principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Abrir Menu de Contexto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Abas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Mudar Aba Principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Ir para Aba Secundária Anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Ir para Próxima Aba Secundária" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Reabrir Aba Secundária Fechada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Fechar Aba Secundária" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copiar Célula Selecionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Remover Linha Selecionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Editando" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Cortar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Colar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Inserir Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Selecione Todos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Encontrar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Encontrar Próximo Correspondente" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Encontrar Correspondente Anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transferências de Arquivo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Resumir / Retentar Transferência" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pausar / Abortar Transferência" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Baixar / Enviar Para" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Salvar Lista no Disco" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Atualizar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Expandir / Agrupar Tudo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Voltar para Pasta Superior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Buscar Arquivo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtros de Resultado" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Sessão Atual" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Downloads Concluídos" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Tamanho Baixado" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Uploads Concluídos" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Tamanho Enviado" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Restaurar…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Os itens da lista de desejos são pesquisados automaticamente em intervalos " "regulares, para descobrir arquivos incomuns." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Adicionar Desejo…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Limpar Tudo…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Limpar todos os downloads finalizados/filtrados" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Limpar Concluídos" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Limpar downloads específicos" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Limpar _Tudo…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Interesses Pessoais" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Adicionar algo que você gosta…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Desgostos Pessoais" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Adicionar algo que você não gosta…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Atualizar recomendações" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menu Principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Nome de usuário…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Pesquisar termo…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Padrões de pesquisa: com uma palavra = termo, sem uma palavra = -termo, " "palavra parcial = *ermo" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Escopo da pesquisa" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Lista de Desejos" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Configurar pesquisas" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Digite um termo de pesquisa para pesquisar arquivos compartilhados por " "outros usuários na rede Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Modo de agrupamento de arquivos" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Configurar downloads" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Os arquivos que você baixa de outros usuários são enfileirados aqui e podem " "ser pausados e retomados sob demanda" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Configurar uploads" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "As tentativas dos usuários de baixar seus arquivos compartilhados são " "enfileiradas e gerenciadas aqui" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Abrir Lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Abre uma lista local de arquivos compartilhados que foram salvos " "anteriormente em disco" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Configurar compartilhamentos" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Digite o nome de um usuário cujos arquivos compartilhados você deseja " "navegar. Você também pode salvar a lista em disco e inspecioná-la " "posteriormente." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "Perfil _Pessoal" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Configurar Conta" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Digite o nome de um usuário para visualizar sua descrição de usuário, " "informações e imagem pessoal" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Histórico de bate-papo" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Configurar bate-papos" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Digite o nome de um usuário para iniciar uma conversa de texto com ele em " "particular" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Mensagens para Todos" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Configurar Usuários Ignorados" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Adicione usuários como amigos para compartilhar pastas específicas com eles " "e receber notificações quando estiverem online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Entrar ou criar sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Junte-se a uma sala de bate-papo existente ou crie uma nova sala para " "conversar com outros usuários na rede Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Configurar Perfil do Usuário" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Pesquisar no registro…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Conexões" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Baixando (velocidade / usuários ativos)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Enviando (velocidade/usuários ativos)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Pesquisar histórico de bate-papo…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Limites de velocidade de download" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Velocidade de download ilimitado" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Usar limite de velocidade de download (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Usar limite alternativo de velocidade de download (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Pesquisar salas…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Atualizar salas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Mostrar feed de mensagens públicas da sala de bate-papo" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Aceitar convites para salas privadas" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Escreva uma única mensagem que outros usuários da sala possam ler mais " "tarde. As mensagens recentes são mostradas na parte superior." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Definir mensagem de parede…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtros de resultados de pesquisa" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Os filtros de resultados de pesquisa são usados para refinar quais " "resultados de pesquisa são exibidos." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Cada lista de resultados de pesquisa tem seu próprio filtro que pode ser " "revelado alternando o botão Filtros de resultados. Um filtro é composto de " "vários campos, todos aplicados ao pressionar Enter em qualquer um de seus " "campos. A filtragem é aplicada imediatamente aos resultados já recebidos e " "também aos que ainda não chegaram." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Como o nome sugere, um filtro de resultados de pesquisa não pode expandir " "sua pesquisa original, apenas pode restringi-la. Para ampliar ou alterar " "seus termos de pesquisa, faça uma nova pesquisa." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Uso do filtro de resultados" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Incluir Texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Arquivos, pastas e nomes de usuários contendo este texto serão mostrados." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Maiúsculas e minúsculas são insensíveis, mas a ordem das palavras é " "importante: 'Instrumental Remix' não mostrará nenhum 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Usar | (ou tubos) para separar várias frases exatas. Exemplo:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Excluir Texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Como acima, mas arquivos, pastas e nomes de usuário são filtrados se o texto " "corresponder." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtra arquivos com base em sua extensão de arquivo." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Várias extensões de arquivo podem ser especificadas, o que, por sua vez, " "revelará mais da lista de resultados. Exemplo:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Também é possível inverter o filtro, especificando extensões de arquivo que " "você não deseja em seus resultados com um ponto de exclamação! Exemplo:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Tamanho do Arquivo" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtra arquivos com base em seu tamanho de arquivo." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Por padrão, a unidade utilizada é bytes (B) e arquivos maiores ou iguais a " "(=) o valor será correspondido." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Acrescente b, k, m ou g (alternativamente kib, mib ou gib) para especificar " "unidades de byte, kibibyte, mebibyte ou gibibyte:\n" "20m para mostrar arquivos maiores que 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Anexe = a um valor para especificar uma correspondência exata:\n" " =1024 corresponde a arquivos com exatamente 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Pré-anexar! para um valor para excluir arquivos de um tamanho específico:\n" "!30,5m para ocultar arquivos com 30,5 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Anexe ou para localizar arquivos menores/maiores que o valor fornecido. Use " "um espaço entre cada condição para incluir um intervalo:\n" " >10,5m<1g para mostrar arquivos maiores que 10,5 MiB, mas menores que 1 " "GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "As variantes mais conhecidas kb, mb e gb também podem ser usadas para " "unidades de kilobyte, megabyte e gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtra arquivos com base em sua taxa de bits." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Os valores devem ser inseridos apenas como dígitos numéricos. A unidade é " "sempre Kb/s (Kilobits por segundo)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Como Tamanho do arquivo (acima), os operadores =, !, <, >, <= ou >= podem " "ser usados e várias condições podem ser especificadas, por exemplo, para " "mostrar arquivos com uma taxa de bits de pelo menos 256 Kb/s com uma taxa de " "bits máxima de 1411 Kb /s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtra arquivos com base em sua duração." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Por padrão, arquivos maiores ou iguais a (>=) a duração inserida serão " "correspondidos, a menos que um operador (=, !, <=, < ou>)seja usado." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Insira um valor bruto em segundos ou use os formatos de hora MM:SS e HH:MM:" "SS:\n" " =53 mostra arquivos com cerca de 53 segundos de duração.\n" " >5:30 para mostrar arquivos com mais de 5 minutos e meio.\n" " <5:30:00 mostra arquivos com menos de 5 horas e meia de duração." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Várias condições podem ser especificadas:\n" " >6:00 <12:00 para mostrar arquivos entre 6 e 12 minutos de duração.\n" " !9:54 !8:43 !7:32 para ocultar alguns arquivos específicos dos " "resultados.\n" " =5:34 =4:23 =3:05 para incluir arquivos com durações específicas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtra arquivos com base na localização geográfica dos usuários de acordo " "com os códigos de país definidos pela ISO 3166-2:\n" " Os US mostrarão apenas resultados de usuários com endereços IP nos " "Estados Unidos\n" " !GB ocultará os resultados provenientes de usuários da Grã-Bretanha." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Vários países podem ser especificados com vírgulas ou espaços." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Slot Livre" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Mostrar apenas os resultados de usuários que têm pelo menos um slot de " "upload livre, ou seja, arquivos que estão disponíveis imediatamente." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Limites de velocidade de upload" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Velocidade de Upload Ilimitado" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Usar Limite de velocidade de upload (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Usar limite de velocidade de upload alternativo (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Ajuda do Comando de Chat Privado" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Incluir texto…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtre os resultados cujos caminhos de arquivo contêm o texto especificado. " "Várias frases e palavras podem ser especificadas, por ex. frase exata|música|" "termo|frase exata dois" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Excluir texto…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtre os resultados cujos caminhos de arquivo contêm o texto especificado. " "Várias frases e palavras podem ser especificadas, por ex. frase exata|música|" "termo|frase exata dois" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Tipo de arquivo…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tipo de arquivo, por exemplo, flac wav ou !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Tamanho do arquivo…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Tamanho do arquivo, por exemplo, >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitrate…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Taxa de bits, por exemplo, 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Duração…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Duração, por exemplo, >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Código do país…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Código do país, por exemplo, US ES ou !OF !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Proibir que os usuários acessem seus arquivos compartilhados, com base no " "nome de usuário, endereço IP ou país." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Códigos dos Países bloqueados (separados por vírgula):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Os códigos devem estar no formato ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Use a mensagem personalizada de bloqueio geográfico:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Utilizar uma mensagem de banir personalizada:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Endereços de IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Ativar corretor ortográfico" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Restaurar bate-papos privados abertos anteriormente na inicialização" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Ativar respostas de mensagens privadas semelhantes a CTCP (versão do cliente)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Número de mensagens de bate-papo privado recentes a serem exibidas:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Número de mensagens recentes da sala de bate-papo a serem exibidas:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Conclusão do bate-papo" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Ativar a conclusão da tecla tab" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Ativar lista suspensa de conclusão" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Caracteres mínimos necessários para exibir a lista suspensa:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Conclusões de bate-papo permitidas:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Nomes de amigos" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nomes de usuário da sala de bate-papo" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nomes de salas" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Comandos" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Carimbos de data e hora" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Formato de bate-papo privado:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Padrão" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Formato da sala de bate-papo:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Conversão de texto em fala" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Ativar conversão de texto em fala" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Comando de conversão de texto em fala:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Mensagem de bate-papo privada:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Mensagem da sala de bate-papo:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censurar" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Ativar censura de padrões de texto" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Substituir automaticamente" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Habilitar a substituição automática de palavras" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Limpar automaticamente downloads finalizados/filtrados da lista de " "transferências" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Armazenar downloads concluídos em subpastas de nome de usuário" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Ação de clique duplo para downloads:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Permita que os usuários enviem qualquer arquivo para você:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Pastas" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Downloads concluídos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Downloads incompletos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Arquivos recebidos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Eventos" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Execute o comando após o término do download do arquivo ($ para o caminho do " "arquivo):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Execute o comando após a conclusão do download da pasta ($ para o caminho da " "pasta):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtros de Download" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Ativar filtros de download" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Adicionar" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Carregar padrões" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Verificar Filtros" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Não verificado" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignore mensagens de bate-papo e resultados de pesquisa de usuários, com base " "no nome de usuário ou endereço IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Registrar conversas das salas por padrão" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Registrar conversas das salas privadas por padrão" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Registrar transferências para arquivo" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Registrar mensagens de depuração no arquivo" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Formato de registro de data e hora:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Locais de pastas" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Pasta de registros da sala de bate-papo:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Pasta de registros de bate-papo privado:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Transferir pasta de registros:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Pasta de registros de depuração:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Faça login em uma conta Soulseek existente ou crie uma nova. Os nomes de " "usuário diferenciam maiúsculas de minúsculas e são exclusivos." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Endereço de IP público:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Porta de escuta (requer reinicialização):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Status Ausente" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutos de inatividade antes de ir embora (0 para desabilitar):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Mensagem de resposta automática quando estiver ausente:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Encaminhar automaticamente a porta de escuta (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Conectar automaticamente ao servidor na inicialização" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Servidor Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Vincula conexões a uma interface de rede específica, útil para, por exemplo, " "garantindo que uma VPN seja usada o tempo todo. Deixe em branco para usar " "qualquer interface disponível. Só altere esse valor se você souber o que " "está fazendo." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Interface de rede (requer reinicialização):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Reproduzindo Agora permite que você exiba o que seu reprodutor de mídia está " "tocando usando o comando /now no bate-papo." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Outro" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Formato do Reproduzindo Agora" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Formato de mensagem em Reproduzindo Agora:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Configuração de teste" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Ativar plug-ins" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Adicionar plug-ins" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Adicionar plug-ins" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Configurações" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Configurações" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versão:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Criado por:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Habilitar histórico de pesquisa" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Os arquivos compartilhados de forma privada que ficaram visíveis para todos " "terão o prefixo '[PRIVATE]' e não poderão ser baixados até que o remetente " "conceda permissão explícita. Pergunte a eles gentilmente." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" "Mostrar arquivos compartilhados de forma privada nos resultados da pesquisa" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limite o número de resultados por pesquisa:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Ativar filtros de resultados de pesquisa por padrão" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Incluir:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Excluir:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Tipo de arquivo:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Tamanho:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Taxa de bits:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Duração:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Código do país:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Mostrar apenas resultados de usuários com um slot de upload disponível." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Ajuda do filtro de resultados" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Pesquisas de rede" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Responda a solicitações de pesquisa de outros usuários" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Pesquisas menores que esse número de caracteres serão ignoradas:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Máximo de resultados de pesquisa a serem enviados por solicitação de " "pesquisa:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Limpar histórico de pesquisa" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Limpar histórico do filtro" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Reescanea automaticamente o conteúdo de suas pastas compartilhadas na " "inicialização. Se desabilitado, seus compartilhamentos são atualizados " "apenas quando você inicia manualmente uma nova verificação." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Nova varredura ao inicializar" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Visível para todos:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Compartilhamentos de amigos" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Compartilhamentos confiáveis" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Limpar automaticamente uploads concluídos/cancelados da lista de " "transferências" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Ação de clique duplo para uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limite a velocidade de upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Por transferência" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Total de transferências" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Slots de Upload" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Os arquivos serão enviados de forma cíclica para os usuários " "que aguardam na fila.\n" "First In, First Out: Os arquivos serão carregados na ordem em que foram " "enfileirados." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Tipo de fila de upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Aloque slots de upload até atingir a velocidade total (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Número fixo de slots de upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Priorize todos os amigos" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Limites de fila" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Número máximo de arquivos enfileirados por usuário:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Tamanho total máximo de arquivos enfileirados por usuário (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Limites não se aplicam a amigos" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "As instâncias de $ são substituídas pela URL. Os aplicativos padrão do " "sistema são usados nos casos em que um protocolo não foi configurado." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Comando do gerenciador de arquivos:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Redefinir imagem" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Auto descrição" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Adicione coisas que você deseja que todos vejam, como uma breve descrição, " "dicas úteis ou diretrizes para baixar seus compartilhamentos." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Imagem:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Limpar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Prefira o modo escuro" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Usar barra de cabeçalho" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Exibir ícone na bandeja" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimizar para bandeja na inicialização" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Idioma (requer uma reinicialização):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Ao fechar a janela:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notificações" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Ativar som para notificações" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Mostrar notificação para bate-papos privados e menções no título da janela" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Mostrar notificações para:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Downloads de arquivos concluídos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Downloads de pastas concluídos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Mensagens privadas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Mensagens da sala de bate-papo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Menções da sala de bate-papo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Resultados da lista de desejos encontrados" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Restaurar a aba principal anteriormente ativa na inicialização" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Botões de fechamento nas abas secundárias" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Cor do rótulo da aba regular:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Cor do rótulo da aba alterada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Cor do rótulo da aba destacada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Posição na lista de amigos:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Abas principais visíveis:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Posições da barra de abas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Abas principais" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Mostrar caminhos de arquivo reversos (requer uma reinicialização)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Mostrar tamanhos de arquivo exatos (requer uma reinicialização)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Cor do texto da lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Cor do texto do resultado da pesquisa na fila:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Habilitar nomes de usuários coloridos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aparência do nome de usuário do bate-papo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Cor do texto remoto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Cor do texto local:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Cor do texto de comando:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me cor do texto da ação:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Cor do texto em destaque:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Cor do texto do link do URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Statuses do Usuário" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Cor do online:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Cor do ausente:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Cor do offline:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Entradas de texto" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Cor de fundo da entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Cor do texto de entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Fontes" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Fonte global:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Fonte da lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Fonte de exibição de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Fonte das salas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Fonte de transferências:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Buscar fonte:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Navegar fonte:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ícones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Pasta do tema do ícone:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Abortar Usuário(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Banir Usuário(s)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Limpar todos os uploads concluídos/cancelados" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Mensagens para Todos" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Limpar uploads específicos" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Salvar lista de compartilhamentos no disco" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Atualizar arquivos" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Editar Perfil" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Arquivos Compartilhados" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Pastas Compartilhadas" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Uploads na Fila" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Slots de Upload Gratuitos" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Velocidade de upload" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Editar Interesses" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Dar privilégios…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Atualizar perfil" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Comandos do Nicotine+" #~ msgid "_Clear" #~ msgstr "Limpar" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Não é possível salvar %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Amigos de Confiança" #~ msgid "Quit program" #~ msgstr "Sair do programa" #~ msgid "Username:" #~ msgstr "Nome de usuário:" #~ msgid "Re_commendations for Item" #~ msgstr "Re_comendações para este item" #~ msgid "_Remove Item" #~ msgstr "_Remover este item" #~ msgid "_Remove" #~ msgstr "_Remover" #~ msgid "Send M_essage" #~ msgstr "Enviar M_ensagem" #~ msgid "Send Message" #~ msgstr "Enviar Mensagem" #~ msgid "View User Profile" #~ msgstr "Exibir Perfil de Usuário" #~ msgid "Start Messaging" #~ msgstr "Iniciar Mensagens" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Digite o nome do usuário para quem você deseja enviar uma mensagem:" #~ msgid "_Message" #~ msgstr "_Mensagem" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Digite o nome do usuário cujo perfil você deseja ver:" #~ msgid "_View Profile" #~ msgstr "_Exibir Perfil" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Digite o nome do usuário cujos compartilhamentos você deseja ver:" #~ msgid "_Browse" #~ msgstr "_Navegar" #~ msgid "Password" #~ msgstr "Senha" #~ msgid "Download File" #~ msgstr "Baixar arquivo" #~ msgid "Refresh Similar Users" #~ msgstr "Atualizar usuários semelhantes" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Digite o nome de usuário da pessoa cujos arquivos você deseja ver" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Digite o nome de usuário da pessoa cujas informações você deseja ver" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Digite o nome de usuário da pessoa para quem você deseja enviar uma " #~ "mensagem" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Digite o nome de usuário da pessoa que você deseja adicionar à sua lista " #~ "de amigos" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Digite o nome de uma sala que você deseja ingressar. Se a sala não " #~ "existir, ela será criada." #~ msgid "Show Log History Pane" #~ msgstr "Mostrar painel de histórico de registro" #~ msgid "Save _Picture" #~ msgstr "Salvar _Imagem" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Resultado de pesquisa incorreto %(filepath)s filtrado do usuário %(user)s " #~ "para a consulta de pesquisa \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Certos clientes não enviam resultados de pesquisa se forem incluídos " #~ "caracteres especiais." #~ msgid "Remove special characters from search terms" #~ msgstr "Remover caracteres especiais dos termos de pesquisa" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problema ao executar '%s'" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problema ao executar na pasta: %s" #~ msgid "Disallowed extension" #~ msgstr "Extensão não permitida" #~ msgid "Too many files" #~ msgstr "Muitos arquivos" #~ msgid "Too many megabytes" #~ msgstr "Muitos megabytes" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "O servidor não permite realizar pesquisas na lista de desejos neste " #~ "momento" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "As velocidades de transferência de arquivos dependem dos usuários dos " #~ "quais você está baixando. Certos usuários serão mais rápidos, enquanto " #~ "outros serão lentos." #~ msgid "Started Downloads" #~ msgstr "Downloads Iniciados" #~ msgid "Started Uploads" #~ msgstr "Uploads Iniciados" #~ msgid "Replace censored letters with:" #~ msgstr "Substitua as letras censuradas por:" #~ msgid "Censored Patterns" #~ msgstr "Padrões censurados" #~ msgid "Replacements" #~ msgstr "Substituições" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Se um usuário na rede Soulseek pesquisar um arquivo que existe em seus " #~ "compartilhamentos, os resultados da pesquisa serão enviados ao usuário." #~ msgid "Send to Player" #~ msgstr "Enviar ao Reprodutor" #~ msgid "Send to _Player" #~ msgstr "Enviar para o _Reprodutor" #~ msgid "_Open in File Manager" #~ msgstr "_Abrir no Gerenciador de Arquivos" #~ msgid "Media player command:" #~ msgstr "Comando do reprodutor de mídia:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Não foi possível salvar o download na subpasta do nome de usuário, " #~ "voltando para a pasta de download padrão. Erro: %s" #~ msgid "Buddy-only" #~ msgstr "Somente amigos" #~ msgid "Share with buddies only" #~ msgstr "Compartilhe apenas com amigos" #~ msgid "_Quit…" #~ msgstr "_Sair…" #~ msgid "_Configure Shares" #~ msgstr "_Configurar Compartilhamentos" #~ msgid "Remote file error" #~ msgstr "Erro no arquivo remoto" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Não é possível encontrar %(option1)s ou %(option2)s, por favor instale " #~ "qualquer um." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s pastas encontradas antes da nova verificação" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Falha ao processar os seguintes bancos de dados: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "" #~ "Falha ao enviar o número de arquivos compartilhados para o servidor: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Sair / Executar em Segundo Plano" #~ msgid "Listening port:" #~ msgstr "Porta de escuta:" #~ msgid "Network interface:" #~ msgstr "Interface de rede:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Limite os compartilhamentos somente para amigos a amigos confiáveis" #~ msgid "Shared" #~ msgstr "Compartilhado" #~ msgid "Search Files and Folders" #~ msgstr "Pesquisar arquivos e pastas" #~ msgid "Out of Date" #~ msgstr "Desatualizado" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "A versão %(version)s está disponível, lançada em %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Você está usando uma versão de desenvolvimento de %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Você está usando a versão mais recente de %s" #~ msgid "Latest Version Unknown" #~ msgstr "Versão mais recente desconhecida" #~ msgid "Prefer Dark _Mode" #~ msgstr "Prefira Modo_Escuro" #~ msgid "Show _Log History Pane" #~ msgstr "Mostrar _Painel Histórico de Log" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lista de amigos em guia separada" #~ msgid "Buddy List Always Visible" #~ msgstr "Lista de amigos sempre visível" #~ msgid "_View" #~ msgstr "_Exibir" #~ msgid "_Open Log Folder" #~ msgstr "_Abrir Pasta de Registro" #~ msgid "_Browse Folder(s)" #~ msgstr "_Navegar Pasta(s)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bytes) por segundo." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Enviado aos usuários como o motivo do bloqueio geográfico." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Enviado aos usuários como motivo de banimento." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Após interagir com o aplicativo ausente, o status será definido como " #~ "online." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Cada usuário pode enfileirar no máximo:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "arquivos" #~ msgid "Queue Behavior" #~ msgstr "Comportamento da fila" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Se desabilitado, os slots serão determinados automaticamente pelas " #~ "limitações de largura de banda disponíveis." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Observe que o tema do sistema operacional pode ter precedência." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Por padrão, a aba mais à esquerda é ativada na inicialização" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Sair do %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "terminado" #~ msgid "done" #~ msgstr "feito" #~ msgid "Remember choice" #~ msgstr "_Lembre-se da escolha" #~ msgid "Kosovo" #~ msgstr "Kosovo" #~ msgid "Unknown Network Interface" #~ msgstr "Interface de Rede Desconhecida" #~ msgid "Listening Port Unavailable" #~ msgstr "Porta de escuta indisponível" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "O servidor parece estar desligado ou não respondendo, tentando novamente " #~ "em %i segundos" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ usa rede ponto a ponto para se conectar a outros usuários. Para " #~ "permitir que os usuários se conectem a você sem problemas, uma porta de " #~ "escuta aberta é crucial." #~ msgid "--- disconnected ---" #~ msgstr "-- desconectado --" #~ msgid "--- reconnected ---" #~ msgstr "-- reconectado --" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "Terra" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "República Tcheca" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turquia" #~ msgid "Joined Rooms " #~ msgstr "Salas Entradas " #~ msgid "_Auto-join Room" #~ msgstr "Entrar _automaticamente na sala" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Sintaxe: as letras não diferenciam maiúsculas de minúsculas. Todas " #~ "as expressões regulares do Python são suportadas se o escape estiver " #~ "desabilitado. Para filtros simples, é recomendável manter o escape " #~ "ativado." #~ msgid "Escaped" #~ msgstr "Escapou" #~ msgid "Escape filter" #~ msgstr "Filtro de Escape" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Insira um padrão de texto e com o que substituí-lo" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s pastas encontradas antes da nova varredura, reconstrução…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Nenhuma porta de escuta está disponível no intervalo de porta " #~ "especificado %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Escolha um intervalo para selecionar uma porta de escuta. A primeira " #~ "porta disponível no intervalo será usada." #~ msgid "First Port" #~ msgstr "Primeira porta" #~ msgid "to" #~ msgstr "Para" #~ msgid "Last Port" #~ msgstr "Última porta" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Não foi possível encontrar %s ou mais recente, instale-o." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Não foi possível importar o módulo Gtk. Instalação ruim do módulo python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Você está usando uma versão sem suporte de GTK %(major_version)s. Você " #~ "deve instalar GTK %(complete_version)s ou mais novo." #~ msgid "User Info" #~ msgstr "Informações do usuário" #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #~ msgid "Zoom In" #~ msgstr "Ampliar" #~ msgid "Zoom Out" #~ msgstr "Reduzir" #~ msgid "Show User I_nfo" #~ msgstr "Mostrar I_nfo do Usuário" #~ msgid "Request User's Info" #~ msgstr "Pedir Info sobre Usuário" #~ msgid "Request User's Shares" #~ msgstr "Pedir Compartilhamentos do Usuário" #~ msgid "Request User Info" #~ msgstr "Pedir Info sobre Usuário" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Digite o nome do usuário cujas informações você deseja ver:" #~ msgid "Request Shares List" #~ msgstr "Pedir Lista de Compartilhamentos" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "URL do Soulseek inválida: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Os usuários da rede Soulseek poderão baixar arquivos de pastas que você " #~ "compartilha. Compartilhar arquivos é crucial para a saúde da rede " #~ "Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Atualizar I_nfo" #~ msgid "Chat Room Commands" #~ msgstr "Comandos da Sala de Bate-Papo" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'sala'" #~ msgid "Join room 'room'" #~ msgstr "Entrar na sala 'sala'" #~ msgid "/me 'message'" #~ msgstr "/me 'mensagem'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Mostra o script de saída Reproduzindo Agora" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'usuário'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Adicione o usuário 'usuário' à sua lista de amigos" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'usuário'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Remova o usuário 'usuário' da sua lista de amigos" #~ msgid "/ban 'user'" #~ msgstr "/ban 'usuário'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Adicionar usuário 'usuário'na sua lista de banidos" #~ msgid "/unban 'user'" #~ msgstr "/unban 'usuário'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Remover usuário 'usuário'na sua lista de banidos" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'usuário'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Adicionar usuário 'usuário'na sua lista de ignorados" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'usuário'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Remover usuário 'usuário' na sua lista de ignorados" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'usuário'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'usuário'" #~ msgid "Request info for 'user'" #~ msgstr "Solicitar informações para 'usuário'" #~ msgid "/ip 'user'" #~ msgstr "/ip 'usuário'" #~ msgid "Show IP for user 'user'" #~ msgstr "Mostrar IP do usuário 'usuário'" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'consulta'" #~ msgid "Start a new search for 'query'" #~ msgstr "Iniciar nova pesquisa de arquivo por 'padrão'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'consulta'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Procurar nas salas que participo por 'padrão'" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'consulta'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Procurar na lista de amigos por 'padrão'" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'usuário' 'consulta'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'usuário' 'mensagem'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Enviar mensagem 'mensagem' para usuário 'usuário'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'usuário'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Abrir janela de conversa privada com usuário 'usuário'" #~ msgid "Private Chat Commands" #~ msgstr "Comandos de bate-papo privado" #~ msgid "Add user to your ban list" #~ msgstr "Adicionar usuário à sua lista de banimentos" #~ msgid "Add user to your ignore list" #~ msgstr "Adicionar usuário à sua lista de ignorados" #~ msgid "Browse shares of user" #~ msgstr "Navegue pelos compartilhamentos do usuário" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Para filtragem insensível à ordem, além de filtrar várias frases exatas, " #~ "barras verticais podem ser usadas para separar frases e palavras.\n" #~ "Exemplo: Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Para excluir arquivos que não sejam de áudio, use !0 no filtro de duração." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtra arquivos com base na localização geográfica dos usuários." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Para ver os resultados completos novamente, simplesmente limpe todos os " #~ "filtros ativos." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Consulte as preferências para definir as opções de filtro de resultados " #~ "de pesquisa padrão." #~ msgid "File size" #~ msgstr "Tamanho do arquivo" #~ msgid "Clear Active Filters" #~ msgstr "Limpar filtros ativos" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Percorrer as conclusões ao pressionar a tecla tab" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Ocultar a lista suspensa quando apenas uma corresponder" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Baixar pastas em ordem alfanumérica inversa" #~ msgid "Incomplete file folder:" #~ msgstr "Pasta de arquivo incompleta:" #~ msgid "Download folder:" #~ msgstr "Pasta de download:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Salve os uploads dos amigos em:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Use UPnP para encaminhar a porta de escuta" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Compartilhe pastas com todos os usuários ou amigos do Soulseek, " #~ "permitindo que o conteúdo seja baixado diretamente do seu dispositivo. " #~ "Arquivos ocultos nunca são compartilhados." #~ msgid "Secondary Tabs" #~ msgstr "Abas Secundárias" #~ msgid "Chat room tab bar position:" #~ msgstr "Posição da barra de abas da sala de bate-papo:" #~ msgid "Private chat tab bar position:" #~ msgstr "Posição da barra de abas de bate-papo privado:" #~ msgid "Search tab bar position:" #~ msgstr "Posição da barra de abas de pesquisa:" #~ msgid "User info tab bar position:" #~ msgstr "Posição da barra de abas de informações do usuário:" #~ msgid "User browse tab bar position:" #~ msgstr "Posição da barra de abas de navegação do usuário:" #~ msgid "Tab Labels" #~ msgstr "Rótulos das Abas" #~ msgid "_Refresh Info" #~ msgstr "_Atualizar Info" #~ msgid "Block IP Address" #~ msgstr "Bloquear Endereço de IP" #~ msgid "Connected" #~ msgstr "Conectado" #~ msgid "Disconnected" #~ msgstr "Desconectado" #~ msgid "Disconnected (Tray)" #~ msgstr "Desconectado (Bandeja)" #~ msgid "User(s)" #~ msgstr "Usuário(s)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" não retornou nada" #~ msgid "Alternative Speed Limits" #~ msgstr "Limites de velocidade alternativos" #~ msgid "Last played" #~ msgstr "Última reprodução" #~ msgid "Playing now" #~ msgstr "Reproduzindo agora" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Não é possível baixar o arquivo para %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Código de erro %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Não encontrado alias (%s)" #~ msgid "Aliases:" #~ msgstr "Aliases:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Removido alias %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Não encontrado alias (%(alias)s)\n" #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Use limites alternativos de velocidade de transferência" #~ msgid "Aliases" #~ msgstr "Aliases" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'comando' 'definição'" #~ msgid "Add a new alias" #~ msgstr "Adicionar um novo alias" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'comando'" #~ msgid "Remove an alias" #~ msgstr "Remover um alias" #~ msgid "Chat History" #~ msgstr "Histórico de bate-papo" #~ msgid "Command aliases" #~ msgstr "Alias de comando" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Limite a velocidade de download para (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Autor(es):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Limite a velocidade de upload para (KiB/s):" #~ msgid "Wishlist item found" #~ msgstr "Item da lista de desejos encontrado" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "As abas mostram ícones de status do usuário em vez de texto de status" #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Mostrar dicas de ferramentas de caminho de arquivo em exibições de lista " #~ "de arquivos" #~ msgid "Colored and clickable usernames" #~ msgstr "Nomes de usuário coloridos e clicáveis" #~ msgid "Notification changes the tab's text color" #~ msgstr "A notificação altera a cor do texto da aba" #~ msgid "Cancel" #~ msgstr "Cancelar" #~ msgid "OK" #~ msgstr "OK" #~ msgid "_Add to Buddy List" #~ msgstr "_Adicionar à Lista de Amigos" #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Limpar downloads com status específico" #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Limpar uploads com status específico" #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "usar diretório de dados do usuário não padrão para, por exemplo, lista de " #~ "downloads" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Seção de configuração desconhecida '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Opção de config desconhecida '%(option)s' na seção '%(section)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "Versão %s está disponível" #, python-format #~ msgid "released on %s" #~ msgstr "lançado em %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ está sendo executado em segundo plano" #, python-format #~ msgid "Private message from %s" #~ msgstr "Mensagem privada de %s" #~ msgid "Aborted" #~ msgstr "Abortado" #~ msgid "Blocked country" #~ msgstr "País bloqueado" #~ msgid "Finished / Aborted" #~ msgstr "Concluído / Abortado" #~ msgid "Close tab" #~ msgstr "Fechar aba" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Você foi mencionado na sala %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Comando %s não é reconhecido" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Aviso: %(realuser)s está tentando falsificar %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "A interface de rede especificada, '%s', não existe. Altere ou remova a " #~ "interface de rede especificada e reinicie o Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "O intervalo especificado para as portas de conexão do cliente era {}-{}, " #~ "mas nenhum deles era utilizável. Aumentar e/ou " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Observe que parte do seu intervalo está abaixo de 1024, isso geralmente " #~ "não é permitido na maioria dos sistemas operacionais, com exceção do " #~ "Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Progresso da nova verificação: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Erro do SO: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP não está disponível nesta rede" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Falha ao mapear a porta WAN externa: %(error)s" #~ msgid "Room wall" #~ msgstr "Parede da sala" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "A porta de escuta padrão '2234' funciona bem na maioria dos casos. Se " #~ "você precisar usar uma porta diferente, poderá modificá-la nas " #~ "preferências posteriormente." #~ msgid "Show users with similar interests" #~ msgstr "Mostrar usuários com interesses similares" #~ msgid "Menu" #~ msgstr "Menu" #~ msgid "Expand / Collapse all" #~ msgstr "Expandir / Agrupar tudo" #~ msgid "Configure shares" #~ msgstr "Configurar compartilhamentos" #~ msgid "Create or join room…" #~ msgstr "Criar ou entrar na sala…" #~ msgid "_Room List" #~ msgstr "Lista de _Salas" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Ativar limites alternativos de velocidade de download e upload" #~ msgid "Show log history" #~ msgstr "Mostrar histórico de registros" #~ msgid "Result grouping mode" #~ msgstr "Modo de agrupamento de resultados" #~ msgid "Free slot" #~ msgstr "Lugar disponível na fila" #~ msgid "Save shares list to disk" #~ msgstr "Salvar lista de compartilhamentos em disco" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "" #~ "Falha ao carregar arquivo de interface do usuário %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Tentando redefinir o índice de arquivos compartilhados devido a um erro. " #~ "Por favor, rescan suas ações." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "O índice de arquivos de arquivos compartilhados não pôde ser acessado. " #~ "Isso pode ocorrer devido a várias instâncias de Nicotine+ estarem ativas " #~ "simultaneamente, problemas de permissão de arquivo ou outro problema em " #~ "Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ é um cliente Soulseek" #~ msgid "enable the tray icon" #~ msgstr "habilitar o ícone da bandeja" #~ msgid "disable the tray icon" #~ msgstr "desativar o ícone da bandeja" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Obter Soulseek Privileges …" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "O endereço IP público é %(ip)s e a porta de escuta ativa é " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "desconhecido" #, fuzzy #~ msgid "Notification" #~ msgstr "Notificação" #~ msgid "Length" #~ msgstr "Duração" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Imagem não salva, %s já existe." #, fuzzy #~ msgid "_Open" #~ msgstr "_Open" #, fuzzy #~ msgid "_Save" #~ msgstr "_Save" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Falha ao carregar o plugin '%s', não consegui encontrá-lo." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Erro de E/S: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Falha ao abrir o caminho do arquivo: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Falha em abrir URL: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "conversa _Log" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Lista de filtros de resultados" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Prepend < ou > para encontrar arquivos menos/maiores do que o valor dado." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Os arquivos VBR exibem sua taxa média de bits e são tipicamente mais " #~ "baixos em bitrate do que um arquivo CBR compactado de 320 kbps da mesma " #~ "qualidade de áudio." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Como tamanho acima, =, < e > podem ser usados." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Evite o acesso à gravação por outros programas para que os arquivos sejam " #~ "baixados (desligue para NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Onde os downloads incompletos são armazenados temporariamente." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Onde os uploads dos amigos serão armazenados (com uma subpasta criada " #~ "para cada amigo)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr " minutos de inatividade" #~ msgid "Protocol:" #~ msgstr "Protocolo:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Pasta tema de ícone (requer reininicialização):" #~ msgid "Establishing connection" #~ msgstr "Estabelecendo conexão" #~ msgid "Clear Groups" #~ msgstr "Limpar Grupos" #, fuzzy #~ msgid "User List" #~ msgstr "Lista de usuários" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "estatísticas _Reset…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "Claro _Downloads…" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Limpar registros" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Bloquear o endereço IP do usuário" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ignore o endereço IP do usuário" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Limpe todos os downloads que terminaram de ser transferidos ou foram " #~ "capturados por um filtro." #, fuzzy #~ msgid "Usernames" #~ msgstr "Nome do usuário" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Exibir mensagens de sala de bate-papo registradas quando uma sala é " #~ "reencontrada" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Limpe todos os uploads que terminaram a transferência ou foram cancelados " #~ "pelo usuário remoto." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Posição da fila" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "O usuário %(user)s está procurando diretamente por \"%(query)s\", " #~ "retornando resultados %(num)i" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVADO]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Parede da sala (conjunto de mensagens pessoais)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Seu arquivo de config está corrompido" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Sentimos muito, mas parece que seu arquivo de configuração está " #~ "corrompido. Por favor, reconfigure a Nicotine+.\n" #~ "\n" #~ "Renomeamos seu antigo arquivo de configuração para\n" #~ "%(corrupt)s\n" #~ "Se você abrir este arquivo com um editor de texto, você poderá resgatar " #~ "algumas de suas configurações." #, fuzzy #~ msgid "User Description" #~ msgstr "Breve descrição:" #, fuzzy #~ msgid "User Interests" #~ msgstr "Interesses" #, fuzzy #~ msgid "User Picture" #~ msgstr "Compartilhamentos de Usuários" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Limpar finalizados" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Nicotine+ versão %s" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Usando Python %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Nicotine+ versão %s" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Nicotine+ versão %s" #~ msgid "User:" #~ msgstr "Usuário:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Todos %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "Arquivos %(number)2s " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Usar expressão regular para filtros de entradas e saídas" #, fuzzy #~ msgid "Quit…" #~ msgstr "Sair" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Exibir guia primária anterior na inicialização" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Habilitar filtros por padrão" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Fechar nicotina+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Você realmente quer sair da Nicotina+?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Executar em segundo plano" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "Notificar quando conectar" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Priorizar usuário" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Trusted" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "I_nformações de Usários" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Solicitar endereço IP" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Digite o nome do usuário cujo endereço IP você deseja ver:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Baixado" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Falha ao adicionar download %(filename)s aos arquivos compartilhados: " #~ "%(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Compartilhar automaticamente downloads" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "O equivalente a adicionar sua pasta de download como um compartilhamento " #~ "público, no entanto, os arquivos baixados para esta pasta serão " #~ "automaticamente acessíveis a outros (não é necessário rescan)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Não é possível compartilhar pasta" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "O nome virtual escolhido está vazio" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "O nome virtual escolhido já existe" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "A pasta escolhida já está compartilhada" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Definir nome virtual" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Digite o nome virtual para '%(dir)s':" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "O nome virtual escolhido está vazio ou já existe" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "A pasta escolhida já está compartilhada." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s Propriedades" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Nova varredura dos compartilhamentos dos amigos inicializada" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Lista de plugins" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Erro durante a varredura %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Mostrar _Log Painel" #, fuzzy #~ msgid "Addresses" #~ msgstr "Endereços" #~ msgid "Handler" #~ msgstr "Associador" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Não foi possível habilitar plugin." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Não foi possível desativar o plugin." #~ msgid "Transfers" #~ msgstr "Transferências" #, fuzzy #~ msgid "Ban List" #~ msgstr "Lista de proibição" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Lista de ignorar" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Censurar e Substituir" #, fuzzy #~ msgid "Completion" #~ msgstr "Conclusão" #~ msgid "Categories" #~ msgstr "Categorias" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Carregar pasta para…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Carregar pasta recursiva para…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Download _recursivo" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Download _recursivo" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Up_load aquivo(s)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "Erro ao tentar exibir pasta '%(folder)s', erro relatado: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Selecione o destino para a pasta de download com subpastas do usuário" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Selecione o destino para baixar uma pasta do usuário" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Selecione o destino para download de arquivo (s) do usuário" #, fuzzy #~ msgid "Wishes" #~ msgstr "Desejos" #, fuzzy #~ msgid "privileged" #~ msgstr "(privilegiado)" #, fuzzy #~ msgid "prioritized" #~ msgstr "priorizado" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Mostar En_dereço IP" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Nomes completos de amigos" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Nomes de usuário completos em salas de bate-papo" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Nomes completos de salas" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Lista de quedas" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Comando gerenciador de arquivos ($ para caminho de arquivo):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Comando do Media Player ($ para o caminho do arquivo):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Usuários Ignorados:" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Exibir horários" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Popups de notificação" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Mostre popup de notificação quando um arquivo terminar de baixar" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "Mostre popup de notificação quando uma pasta terminar de baixar" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Mostre popup de notificação quando receber uma mensagem privada" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Mostre o popup de notificação quando alguém envia uma mensagem em uma " #~ "sala de bate-papo" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Mostre popup de notificação quando você for mencionado em uma sala de " #~ "bate-papo" #, fuzzy #~ msgid "Tray" #~ msgstr "Bandeja" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "As instâncias de $ serão substituídas pelo link. O navegador web padrão " #~ "do sistema será usado em casos em que um protocolo não tenha sido " #~ "configurado." #~ msgid "Handler:" #~ msgstr "Associador:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Guias Primárias" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Habilitar dicas de ferramentas de caminho de arquivo em visualizações de " #~ "pesquisa e transferência" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Exibe o caminho completo do arquivo de um resultado de pesquisa ou " #~ "transferência de arquivos quando você passa um mouse em um caminho de " #~ "pasta ou nome do arquivo com o cursor." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "" #~ "Mostrar arquivos compartilhados privadamente em compartilhamentos de " #~ "usuários" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Outros clientes podem oferecer uma opção para enviar arquivos " #~ "compartilhados privados quando você navegar em suas ações. As pastas que " #~ "contêm esses arquivos são prefixadas com '[PASTA PRIVADA]' e não podem " #~ "ser baixadas a menos que o uploader dê permissão explícita." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censurar e Substituir" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Mostrar controles de registro _Debug" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Registrando" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Nome Virtual" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Editar nome virtual" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Copiar URL do diretório" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Download para..." #, fuzzy #~ msgid "Download" #~ msgstr "Baixar" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Enviar conteúdo da pasta" #, fuzzy #~ msgid "Rename" #~ msgstr "Renomear" #, fuzzy #~ msgid "File Lists" #~ msgstr "Arquivos" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Copiar caminho de arquivo" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Remover um alias" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Parece que '%s' não é um diretório, não carrega plugins." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Nova varredura dos compartilhamentos dos amigos inicializada" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Nova varredura dos compartilhamentos dos amigos inicializada" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Seu amigo, %s, está tentando lhe enviar arquivo(s)" #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s não está autorizado para me enviar arquivo(s), mas está tentando, de " #~ "qualquer forma. Aviso Enviado." #~ msgid "Client Version" #~ msgstr "Versão do Cliente" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Quantos dias de privilégios o usuário %s deve ser dotado?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Os amigos terão maior prioridade na fila, o mesmo que usuários " #~ "privilegiados globalmente." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegiado" #~ msgid "_Privileged" #~ msgstr "_Privilegiado" #~ msgid "Comments" #~ msgstr "Comentários" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Editar _comentários" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Cria subpastas com base no usuário de quem você está baixando, e armazena " #~ "o arquivo/pasta baixado lá." #, fuzzy #~ msgid "Login Details" #~ msgstr "Detalhes de login" #, fuzzy #~ msgid "Advanced" #~ msgstr "Avançado" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Intervalo de renovação do mapeamento da porta em horas:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Ativar compartilhamento somente para amigos" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Os arquivos serão carregados na ordem em que estiveram na fila." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Nova varredura inicializada" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Acabou de rescaning ações públicas" #, fuzzy #~ msgid "Scanning Buddy Shares" #~ msgstr "Digitalizando ações de buddy" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "Nova varredura dos compartilhamentos" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Nova varredura dos compartilhamentos dos amigos inicializada" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Nova varredura dos compartilhamentos" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Nova varredura dos compartilhamentos dos amigos inicializada" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Permite compartilhamentos de amigos que apenas usuários da sua lista de " #~ "amigos podem acessar." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Marque cada pasta compartilhada como somente para amigos" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Substitui a opção por ação, útil se você precisar temporariamente impedir " #~ "o acesso público a ações." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Apenas usuários marcados como confiáveis em sua lista de amigos podem " #~ "acessar suas ações somente para amigos." #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotina+ permite compartilhar pastas diretamente do seu computador. Todo " #~ "o conteúdo dessas pastas (com exceção de dotfiles) pode ser baixado por " #~ "outros usuários na rede Soulseek. Ações públicas estão disponíveis para " #~ "todos os usuários, enquanto os usuários da sua lista de amigos podem " #~ "acessar compartilhamentos somente para amigos, além de compartilhamentos " #~ "públicos." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Resultado de pesquisa excluído filtrado " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Resultado de pesquisa inexato ou incorreto " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Configuração armazenada '%(key)s' não está mais presente no plugin " #~ "'%(name)s'" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "Plugin %(module)s devolveu algo estranho, '%(value)s', ignorando" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Cache inconsistente para '%(vdir)s', reconstruindo '%(dir)s'" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Queda da pasta %(dir)s" #, fuzzy, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Todos os tickers / mensagens de parede para %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Definir sua ticker pessoal" #, fuzzy #~ msgid "Show all the tickers" #~ msgstr "Mostre todos os tickers" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Observar as Informações do Usuário" #~ msgid "Add user 'user' to your user list" #~ msgstr "Adicionar o usuário 'usuário' na lista de usuários" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Remover usuário 'usuário' na sua lista de amigos" #~ msgid "Request user info for user 'user'" #~ msgstr "Requisitar informações do usuário 'usuário'" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Adicionar o usuário 'usuário' na lista de usuários" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Remover usuário 'usuário' na sua lista de amigos" #, fuzzy #~ msgid "/ignore" #~ msgstr "Ignorar" #, fuzzy #~ msgid "/unignore" #~ msgstr "Ignorar" #~ msgid "Cannot find the pynicotine.utils module." #~ msgstr "Não foi possível encontrar o módulo pynicotine.utils." #~ msgid "Errors occured while trying to change process name:" #~ msgstr "Errors ocorreram ao tentar mudar o nome do processo:" #, c-format #~ msgid "Starting using the profiler (saving dump to %s)" #~ msgstr "Iniciando o uso do analisador (salvando o resultado em %s)" #~ msgid "Can not find Nicotine+ modules." #~ msgstr "Não foi possível encontrar os módulos do Nicotine+." #, c-format #~ msgid "You're using an unsupported version of GTK (%s)." #~ msgstr "Você está usando uma versão não suportada do GTK (%s)." #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "" #~ "Não foi possível voltar ao arquivo de configuração anterior, erro: %s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Conexão fechada pela outra ponta: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "Servidor relatou porta 0 pela décima vez para o usuários %(user)s" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Servidor relatou nenhuma porta para usuário %(user)s depois %(tries)i " #~ "tentativas" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "Servidor relatou porta 0 para usuário %(user)s, tentando novamente." #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Não foi possível conectar, motivo: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Outra pesoa está entrando com o mesmo usuários, o servidor irádesconectar " #~ "ambos" #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "Bloqueando %(user)s por estar fazendo uma requisição de " #~ "InformaçõesUsuário, possível ser um ataque spoofing. IP %(ip)s porta " #~ "%(port)s" #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "Bloqueando %s por estar fazendo uma requisição de InformaçõesUsuário, " #~ "possível ser um ataque spoofing." #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "" #~ "%(user)s está banido, mas está fazendo uma requisição de " #~ "InformaçõesUsuário" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s está fazendo requisições de ListarCompartilhamentos, possível " #~ "ser um ataque spoofing. %(ip)s porta %(port)s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s está fazendo requisições de ListarCompartilhamentos, possível " #~ "ser um ataque spoofing." #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s está fazendo uma requisição de ListarCompartilhamentos" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Desconhecida mensagem tunelada:%s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "A base dos arquivos compartilhados parece estar corrompida, faça uma nova " #~ "varredura dos seus compartilhamentos" #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Mensagem em branco criada, classe %s" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Não foi possível analisar mensagens entrantes, classe %s" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Não foi possível associar conexão do tipo %s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "Não foi possível enviar mensagem, sem conexão: %(type)s %(msg_obj)s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Filtro: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Tentando novamente os downloads falhados: usuário %(user)s, arquivo " #~ "%(file)s" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "" #~ "Requisição de tranferência obtidos %s porém não foi possível determinar " #~ "quem solicitou" #~ msgid "[Automatic Message] " #~ msgstr "[Mensagem Automática] " #~ msgid "You are not allowed to send me files." #~ msgstr "Você não está autorizado para me mandar arquivos." #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Obteve resposta desconhecida na trasferência: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Download finalizado: %(file)s" #~ msgid "(friend)" #~ msgstr "(amigo)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Upload terminado : usuário %(user)s, arquivo %(file)s" #~ msgid "Get user i_nfo" #~ msgstr "Obter i_nformações do usuário" #~ msgid "_Add user to list" #~ msgstr "_Adicionar usuário na lista" #~ msgid "_Ban this user" #~ msgstr "_Banir este usuário" #~ msgid "_Ignore this user" #~ msgstr "_Ignorar este usuário" #~ msgid "Clear finished/aborted" #~ msgstr "Limpar finalizados/abortados" #~ msgid "Clear aborted" #~ msgstr "Limpar abortados" #~ msgid "Clear queued" #~ msgstr "Limpar enfileirados" #~ msgid "Abor_t" #~ msgstr "Abor_tar" #~ msgid "Directory" #~ msgstr "Diretório" #~ msgid "Warning" #~ msgstr "Aviso" #~ msgid "User info" #~ msgstr "Informações de Usuários" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Nova varredura dos compartilhamentos dos amigos finalizada" #~ msgid "Rescanning finished" #~ msgstr "Nova varredura finalizada" #~ msgid "Send to tray" #~ msgstr "Enviar para a bandeja" #~ msgid "I like" #~ msgstr "Eu gosto" #~ msgid "I _don't like this" #~ msgstr "Eu não gosto _disso" #~ msgid "Ban this user" #~ msgstr "Banir este usuário" #~ msgid "Ignore this user" #~ msgstr "Ignorar este usuário" #~ msgid "In queue" #~ msgstr "Em fila" #~ msgid "Warning: Bad Username" #~ msgstr "Aviso: Usuário Ruim" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "" #~ "Usuário None não é recomendável utilizar, por favor digite com outro." #, python-format #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "" #~ "Risco de Segurança: você não deveria compartilhar seu diretório %s !" #~ msgid "Ignore user..." #~ msgstr "Ignorar usuário..." #~ msgid "Ban user..." #~ msgstr "Banir usuário..." #~ msgid "Server" #~ msgstr "Servidor" #~ msgid "URL Catching" #~ msgstr "URL" #~ msgid "Initializing transfer" #~ msgstr "Iniciando transferência" #~ msgid "Waiting for peer to connect" #~ msgstr "Aguardando a outra ponta conectar" #~ msgid "Getting address" #~ msgstr "Obtendo endereço" #~ msgid "Lookup a User's IP" #~ msgstr "Observar o IP do Usuário" #~ msgid "Directories" #~ msgstr "Diretório" #~ msgid "Download r_ecursive to..." #~ msgstr "Download r_ecursivo para..." #, python-format #~ msgid "Speed: %s" #~ msgstr "Velocidade: %s" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Total de uploads liberados: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Requisições de Upload: %s" #~ msgid "Log" #~ msgstr "Registrar" #~ msgid "Clear Queued" #~ msgstr "Limpar Enfileirados" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Total de uploads liberados: desconhecido" #~ msgid "Queue size: unknown" #~ msgstr "Tamanho da fila: desconhecido" #~ msgid "Speed: unknown" #~ msgstr "Velocidade: desconhecido" #~ msgid "Files: unknown" #~ msgstr "Arquivos Compartilhados: desconhecido" #~ msgid "Directories: unknown" #~ msgstr "Diretório: desconhecido" #~ msgid "Add..." #~ msgstr "Adicionar..." #~ msgid "About search filters" #~ msgstr "Sobre os filtros de pesquisas" #~ msgid "_Modes" #~ msgstr "_Módulos" #~ msgid "_Private Chat" #~ msgstr "Conversa _Privada" #~ msgid "Buddy _List" #~ msgstr "Lista de Amigos" #~ msgid "_Interests" #~ msgstr "_Interesses" #~ msgid "About _chat room commands" #~ msgstr "Sobre comandos das salas de _conversa" #~ msgid "About _private chat commands" #~ msgstr "Sobre comandos das coversas _privadas" #~ msgid "About _search filters" #~ msgstr "Sobre os filtros de pe_squisas" #~ msgid "Toggle away after " #~ msgstr "Tornar-se ausente depois de " #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Travar para arquivos entrantes (desligar para NFS)" #~ msgid "Decimal separator:" #~ msgstr "Separador decimal:" #~ msgid "Enable geographical blocker" #~ msgstr "Habilitar Bloqueador Geográfico" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "Paranóia Geográfica (bloquear IPs não resolvidos)" #~ msgid "Send out a max of" #~ msgstr "Enviar no máximo de" #~ msgid "Filter out:" #~ msgstr "Filtro de Saída:" #~ msgid "Filter in:" #~ msgstr "Filtro de Entrada:" #~ msgid "Enable URL catching" #~ msgstr "Habilitar URL" #~ msgid "Humanize slsk:// urls" #~ msgstr "Humanamente slsk://urls" nicotine-plus-3.3.4/po/pt_PT.po000066400000000000000000005445611461625273200163450ustar00rootroot00000000000000# Copyright (C) 2023-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Portuguese \n" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Cliente Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Cliente gráfico para a rede peer-to-peer Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek;Nicotine;partilhamento;bate-papo;mensagens;P2P;pessoa para pessoa;" "GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Procurar no Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ é um cliente gráfico para a rede peer-to-peer Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ almeja ser uma alternativa agradável, gratuita e de código aberto " "(FOSS) ao cliente oficial Soulseek, fornecendo funcionalidades adicionais " "enquanto se mantém conforme o protocolo Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Procurar Arquivos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Downloads" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Explorar Compartilhamentos" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Bate-papo Privado" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Time Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Website: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "mostrar esta mensagem de ajuda e sair" #: pynicotine/__init__.py:59 msgid "file" msgstr "arquivo" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "usar arquivo de configuração não padrão" #: pynicotine/__init__.py:63 msgid "dir" msgstr "pst" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "diretório alternativo para dados do usuário e plugins" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "executar o programa sem mostrar a janela" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "Ligar sockets ao IP fornecido (útil para VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "porta" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "escutar na porta fornecida" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "analisar novamente os arquivos compartilhados" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "iniciar o programa no modo headless (sem GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "mostrar versão e sair" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Você está utilizando uma versão não suportada do Python (%(old_version)s).\n" "Você deve instalar o Python %(min_version)s ou mais atual." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Falha ao analisar compartilhamentos. Por favor feche as outras instâncias do " "Nicotine+ e tente novamente." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s está ausente" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s está online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s está offline" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Estado de Amigos" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Você foi adicionado a uma sala privada: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "Mensagem do usuário '%(user)s' na sala '%(room)s':%(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" "Não foi possível criar o diretório '%(path)s', erro informado:%(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Erro ao fazer backup da configuração: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Configurações gravadas em: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "A carregar %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "A sair do %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "a terminar" #: pynicotine/core.py:237 msgid "application closing" msgstr "fechamento da aplicação" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Sair %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Precisa especificar um nome de utilizador e palavra-passe antes de se " "conectar…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Erro: Falha na descarga do filtro! Verifique os seus filtros. Razão: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Erro: %(num)d Filtros de descarga falharam! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s baixado(s) de %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Arquivo Baixado" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Executado: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Falha na execução de '%(command)s': %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s descarregado de %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Pasta descarregada" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Executado na pasta: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Não foi possível mover '%(tempfile)s' para '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Erro na pasta de download" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Descarga finalizada: utilizador %(user)s, ficheiro %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Descarga abortada, utilizador %(user)s, ficheiro %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Erro de I/O do descarga: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" "Não foi possível obter um ficheiro de trava exclusivo - erro de E/S: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Não é possível salvar o arquivo em %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Download iniciado: usuário %(user)s, arquivo %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Não é possível encontrar %s, por favor instalá-lo." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Nenhum ambiente gráfico disponível, usando o modo headless (sem GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Conectar" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Desconectar" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _Privilégios" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferências" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Sair" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Explorar Partilhas _Públicas" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Explorar Partilhas de _Amigos" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Explorar Par_tilhas Confiáveis" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Reverificar partilhamentos" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Explorar Partilha_s" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Atalhos do teclado" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Assistente de configuração" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Estatísticas de transferência" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Reportar um _Erro" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Melhorar T_raduções" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Sobre Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Arquivo" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Compartilhamentos" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Ajuda" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "Explorar _Partilhas" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Não foi possível mostrar a notificação: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Ainda está a carregar ficheiros. Quer mesmo sair?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Aguarde o término dos uploads" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Tem certeza que deseja sair?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Não" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Executar em segundo plano" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Sair do Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Ações não disponíveis" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Verifique se os discos externos estão montados e se as permissões das pastas " "estão corretas." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Cancelar" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Tentar Novamente" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Forçar outra análise" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Senha Inválida" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Usuário %s já existe, e a senha inserida é inválida. Por favor escolha outra " "nome de usuário se essa for a sua primeira vez acessando." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Alterar _Detalhes de login" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Mensagens de Utilizadores que estão a descarregar" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Envia mensagem privada para todos os utilizadores que estão a descarregar de " "si:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Enviar Mensagem" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Companheiros de Conversa" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Enviar mensagem privada a todos os amigos online:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Selecione um arquivo de lista de compartilhamentos salvos" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Erro Crítico" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ encontrou um erro crítico e precisa ser encerrado. Por favor, " "copie a seguinte mensagem e inclua-a em um relatório de bug:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Sair do Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copiar & Relatar Bug" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Estado" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "País" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Usuário" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Velocidade" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Arquivos" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Confiável" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Notificar" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Priorizado" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Visto pela última vez" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Observação" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Adicionar _Nota sobre o Utilizador…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Remover" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nunca visto" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Adicionar Nota sobre o Utilizador" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Adicione uma nota sobre o utilizador %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Adicionar" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Criar Nova Sala?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Você tem certeza de que quer criar uma nova sala \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Tornar sala privada" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Pe_squisa de Ficheiros" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Encontrar…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copiar" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copiar Todos" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Limpar Histórico de Visualização" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Sair da Sala" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copiar Link" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Exibir log da sala" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Apagar o registo da sala…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Limpar Vista de Mensagens" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s entrou na sala" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s mencionou-o na sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Mencionado por %(user)s na Sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Mensagem de %(user)s na Sala %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s saiu da sala" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s tornou-se ausente" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s retornou" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Apagar mensagens registadas?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Realmente deseja apagar permanentemente todas as mensagens registadas para " "esta sala?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Sobre" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Site" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Erro ao verificar a versão mais recente: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Novo lançamento disponível: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Atualizado" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "A verificar a versão mais recente…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Assistente de Configuração" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Pasta Virtual" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Pasta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Concluído" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Próximo" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Adicionar uma Pasta Partilhada" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Editar Pasta Partilhada" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Digite novo nome virtual para '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Editar" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Propriedades do Ficheiro" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" "Propriedades do ficheiro (%(num)i de %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Propriedades do ficheiro (%(num)i de %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Aplicar" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Adicionar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Editar…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Configurações" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Adicionar Item" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Editar Item" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Desconhecido" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Verificar o Estado da Porta" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, porta %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Mudança de Palavra-passe Rejeitada" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Digite uma nova palavra-passe para a sua conta do Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Está desconectado da rede Soulseek. Se quiser alterar a palavra-passe de uma " "conta Soulseek existente, precisa estar logado nessa conta." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Digite a palavra-passe a ser usada ao fazer login:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Mudar Palavra-passe" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Alterar" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Ninguém" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Todos" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Amigos" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Amigos de confiança" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Nada" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Abrir Ficheiro" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Abrir no Gestor de Ficheiros" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Pesquisar" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausar" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Resumir" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Navegar Pasta" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxe: Não diferencia maiúsculas de minúsculas. Se ativado, as " "expressões regulares do Python podem ser usadas, caso contrário, apenas " "correspondências curinga * são suportadas." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtro" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Adicionar Filtro de Descarga" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Insira um novo filtro de descarga:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Ativar expressões regulares" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Editar Filtro de Descarga" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Modifique o filtro de descarga seguinte:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d falhou! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtros bem-sucedidos" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Público" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Acessível À" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Abortar" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Tentar novamente" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Primeiro a entrar, primeiro a sair" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Nome de utilizador" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Endereço de IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ignorar Utilizador" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Digite o nome do utilizador que deseja ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ignorar Endereço de IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Digite um endereço IP que deseja ignorar:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* é um curinga" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Banir Utilizador" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Digite o nome do utilizador que deseja banir:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Banir Endereço de IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Digite um endereço IP que deseja bloquear:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Códigos do formato" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Padrão" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Substituição" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Padrão de censura" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Digite um padrão que quer censurar. Adicione espaços ao redor do padrão se " "não quiser combinar termos dentro das palavras (pode falhar no início e no " "fim das linhas)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Editar Padrão de Censura" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Adicionar Substituto" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Insira um padrão de texto e com o que substituí-lo:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Editar Substituto" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Padrão do sistema" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Mostrar caixa de diálogo de confirmação" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Executar em segundo plano" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "negrito" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "itálico" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "sublinhado" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Guia de Amigos Separados" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Barra lateral na guia Salas de bate-papo" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Barra lateral sempre visível" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Topo" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Embaixo" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Esquerda" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Direita" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Conectado" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Ausente" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Desconectado" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Guia alterada" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Realçar Guia" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Janela" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Online (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Ausente (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Desconectado (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Mensagem (Bandeja)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protocolo" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Adicionar Gestor de URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Insira o protocolo e o comando para o manipulador de URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Editar Comando" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Digite um novo comando para o protocolo %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Nome de utilizador;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Leitor de música (por exemplo, amarok, audacious, exaile); deixe vazio para " "detecção automática:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Nome de utilizador: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Comando:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Título" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "A Reproduzir Agora (tipicamente \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artista" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Duração" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Taxa de Bits" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Comentário" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Álbum" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Número da Faixa" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Ano" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Nome do ficheiro (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Programa" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Ativado" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Nenhum Plugin Selecionado" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Rede" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interface de Utilizador" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Partilhamentos" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Envios" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Pesquisas" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Perfil do Utilizador" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Bate-Papos" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "A Reproduzir Agora" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "A registar" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Utilizadores Banidos" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Utilizadores Ignorados" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Plugins" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Gestor URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferências" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Escolha um nome de ficheiro para backup de configuração" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Estatísticas de Transferência" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Total Desde %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Redefinir estatísticas de transferência?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Realmente quer redefinir as estatísticas de transferência?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "_Lista de Desejos" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Desejo" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "Pesqui_sar por este item" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Editar Desejo" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Insira um novo valor para o desejo '%s':" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Limpar lista de desejos?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Realmente deseja limpar a sua lista de desejos?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Caminho" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Resumir" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "P_ausar" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Finalizado / Filtrado" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Finalizado" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pausado" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrado" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Excluído" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Enfileiradas…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Tudo…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Limpar descargas na fila" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Realmente deseja limpar todas as descargas na fila?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Limpar Todas as Descargass" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Realmente quer limpar todas as descargass?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Descarregar %(num)i ficheiros?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Realmente deseja descarregar %(num)i ficheiros da pasta %(user)s's " "%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Pasta de Descargas" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Gosteis" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Não Gosteis" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Avaliação" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Item" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Recomendações para este item" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Eu _Gosto Disso" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Não gosto d_isso" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Recomendações" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Utilizadores Similares" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Recomendações (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Utilizadores Similares (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Mensagem Privada de %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Resultados da lista de desejos encontrados" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Perfis de Utilizador" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Salas de bate-papo" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interesses" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Bate-papo" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Depuração] Conexões" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Depurações] Mensagens" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Depurações] Transferências" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Depurações] Miscelânea" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Encontrar…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Copiar" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Copiar_Tudo" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Exibir_Registros de Depuração" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Exibir_Registros de Transferências" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Categorias de Registos" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Limpar Exibição de Registos" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Descargas: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Envios: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "A preparar Partilhas" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "A verificar partilhamentos" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "A sair..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Última mensagem" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Sala" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Utilizadores" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Entrar na Sala" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Sair da Sala" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Rejeitar Sala Privada" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Cancelar Associação à Sala" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Fechar Todas as Guias…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Fechar Guia" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Exibir registo de bate-papo" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Apagar o registo de bate-papo…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Ações do Utilizador" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Realmente deseja apagar permanentemente todas as mensagens registadas para " "este utilizador?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Mensagem(ns) enviada(s) enquanto estava offline" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Amigos" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Salas" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Usuário" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Na Fila" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Tipo de Ficheiro" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Nome do Ficheiro" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Tamanho" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Qualidade" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Copiar _Caminho do Ficheiro" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Copiar _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Copiar U_RL da Pasta" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Download Ficheiro(s)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Descarregar Ficheiro(s) _Para…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Descarregar_Pasta(s)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Descarregar P_asta(s) Para…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Exibir Perfil_de_Usuário" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_Navegar Pasta" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Propriedades do A_rquivo" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Copiar Termo de Pesquisa" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Limpar Todos os Resultados" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Limpar Filtros" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Restaurar Filtros" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[PRIVADO] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Filtros de Resultados [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Filtros de Resultados" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d filtro(s) ativo(s)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Adicionar De_sejo" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Remover De_sejo" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Selecionar Resultados do Utilizador" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Total: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Resultados" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Selecione a Pasta de Destino para os Ficheiro(s)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Selecionar Pasta de Destino" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Enfileirado" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "Enfileirado (priorizado)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "Enfileirado (privilegiado)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "A obter estado" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "A transferir" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Conexão fechada" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Conexão esgotada" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Utilizador saiu" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Cancelado" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Erro na pasta de descargas" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Erro no ficheiro local" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Banido" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Ficheiro não partilhado" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Desligamento pendente" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Erro de leitura de ficheiro" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Fila" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Percentagem" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Tempo Decorrido" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Tempo Restante" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_Abrir Ficheiro" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Abrir no Gerenciador_de Ficheiros" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Pesquisar" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Limpar Tudo" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Selecione as Transferências do Utilizador" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Abortar" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Concluído / Cancelado / Falhado" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Finalizado / Cancelado" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Falhou" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Utilizador desconectado" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Limpar Uploads Enfileirados" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Realmente deseja limpar todos os uploads enfileirados?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Limpar Todos os Uploads" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Deseja mesmo limpar todos os uploads?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Gravar lista de partilhamentos em disco" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Pasta(s) e Subpasta(s) para Upload…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Copiar_Caminho da Pasta" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "_Pasta(s) & Subpasta(s) de Descargas" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Descarregar Pasta(s) & Subpasta(s) _Para…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Nome do Ficheiro" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Up_load de Ficheiro(s)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Pasta para Upload…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Descarregar Pasta _Para…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "A lista de ficheiros partilhados do utilizador está vazia. Ou o utilizador " "não partilha nada, ou partilha ficheiros de forma privada." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Não é possível solicitar ficheiros partilhados do utilizador. O utilizador " "está offline, as portas de escuta estão fechadas em ambos os lados ou há um " "problema de conectividade temporário." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Selecionar a Destinação para Descargas de Várias Pastas" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Upload de Pasta (com Subpastas) Para Utilizador" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Upload de Pasta Para Utilizador" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Digite o nome do utilizador para o qual deseja fazer upload:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Enviar" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Selecione a Pasta de Destino para o(s) Ficheiro(s)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Upload do Ficheiro(s) Para Utilizador" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Copiar Imagem" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Gravar Imagem" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Falha ao carregar a imagem do utilizador %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Não foi possível solicitar informações do utilizador. Ambos têm uma porta de " "escuta fechada, o utilizador está offline ou há um problema de conectividade " "temporário." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Remover _Amigo" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Adicionar _Amigo" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Desbanir Utilizador" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Designorar Utilizador" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Sim" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Não" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Insira o número de dias." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Dias de presente dos seus privilégios Soulseek para o utilizador %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s dias restantes" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Dar Privilégios" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_Dar Privilégios" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Fechar" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Sim" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Selecionar um Ficheiro" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Selecione uma Pasta" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Selecionar" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Selecione uma Imagem" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Todas as imagens" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Gravar como…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Nenhum)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Fechar Guia" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Fechar Todas as Guias?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Realmente quer fechar todas as guias?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Guias Não Lidas" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Todas as Guias" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Re-abrir Guia Fechada" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Ficheiros(s) Selecionados" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Navegar Ficheiros" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Adicionar Amigo" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Mostrar En_dereço de IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Salas Privadas" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Remover da Sala Privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Adicionar à sala privada %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Remova como Operador de %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Adicionar como Operador de %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- mensagens antigas acima ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Executável" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Áudio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Imagem" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Arquivo" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Variados" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Vídeo" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Documento" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Texto" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Erro ao carregar o ícone personalizado %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Ocultar Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Mostrar Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Coluna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Desagrupado" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Agrupado pela Pasta" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Agrupado pelo Utilizador" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Tem certeza que deseja sair? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "O utilizador %s já existe e a palavra-passe inserida é inválida." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Digite %s para entrar com outro nome de utilizador ou palavra-passe." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Palavra-passe: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Para criar uma nova conta Soulseek, preencha o seu nome de utilizador e " "palavra-passe desejados. Se já possui uma conta, preencha os seus dados de " "login existentes." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Os seguintes partilhamentos estão indisponíveis:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Reescanear novamente? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" "Não foi possível gravar no ficheiro de registo '%(filename)s': %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Não é possível aceder o ficheiro de log %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Emirados Árabes Unidos" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afeganistão" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antígua e Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguila" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Albânia" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armênia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antártida" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Samoa Americana" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Áustria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Austrália" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Ilhas Aland" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaidjão" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bósnia e Herzegovina" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Bélgica" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burquina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgária" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahrein" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benim" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "São Bartolomeu" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermudas" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolívia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Santo Eustáquio e Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brasil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Butão" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Ilha Bouvet" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botsuana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Belarus" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Canadá" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Ilhas Cocos (Keeling)" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "República Democrática do Congo" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "República Centrafricana" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Suíça" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Costa do Marfim" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Ilhas Cook" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Camarões" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Colômbia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Ilha Christmas" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Chipre" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Tcheca" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Alemanha" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Djibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Dinamarca" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "República Dominicana" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Argélia" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Equador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estônia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egito" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Saara Ocidental" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritreia" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Espanha" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiópia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlândia" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Ilhas Malvinas" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Micronésia" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Ilhas Faroé" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "França" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabão" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Grã-Bretanha" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Granada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Geórgia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Guiana Francesa" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernesey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Gana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Groelândia" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gâmbia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guiné" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadalupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Guiné Equatorial" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Grécia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Ilhas Geórgia do Sul e Sanduíche do Sul" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Guiné-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guiana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Ilhas Heard & McDonald" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Croácia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hungria" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonésia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Ilha de Man" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Índia" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Território britânico do Oceano Índico" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Iraque" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Irã" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Islândia" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Itália" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordânia" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japão" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Quênia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Quirguistão" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Camboja" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Quiribáti" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Comores" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "São Cristóvão & Névis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Coreia do Norte" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Coreia do Sul" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Ilhas Caimão" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Cazaquistão" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Líbano" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Santa Lúcia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Libéria" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesoto" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Lituânia" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Luxemburgo" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letônia" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Líbia" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Marrocos" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Mônaco" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldávia" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "São Martinho" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Ilhas Marshall" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Macedônia do Norte" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Birmânia" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongólia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Macau" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Ilhas Marianas do Norte" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Mauritânia" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Monserrate" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Maurício" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldivas" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Maláui" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "México" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malásia" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Moçambique" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namíbia" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Nova Caledônia" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Níger" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Ilha Norfolk" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nigéria" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nicarágua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Países Baixos" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Noruega" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Nova Zelândia" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Omã" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panamá" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Polinésia Francesa" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua-Nova Guiné" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipinas" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Paquistão" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polônia" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "São Pedro e Miquelão" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Ilhas Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Porto Rico" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Palestina" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguai" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Catar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Reunião" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Romênia" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Sérvia e Montenegro" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rússia" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Arábia Saudita" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Ilhas Salomão" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seicheles" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudão" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suécia" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Cingapura" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Santa Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Eslovênia" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Ilhas Svalbard & Jan Mayen" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Eslováquia" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Serra Leoa" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somália" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Suriname" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Sudão do Sul" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "São Tomé & Príncipe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "São Martinho" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Síria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Essuatíni" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Ilhas Turcas e Caicos" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Chade" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Terras Austrais e Antárticas Francesas" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailândia" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tajiquistão" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Toquelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Timor-Leste" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Turcomenistão" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunísia" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Turquia" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trindade & Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzânia" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ucrânia" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Ilhas Menores Distantes dos Estados Unidos" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Estados Unidos" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguai" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Uzbequistão" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Vaticano" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "São Vicente & Granadinas" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Ilhas Virgens Britânicas" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Ilhas Virgens dos Estados Unidos" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnã" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis & Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Iêmen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Maiote" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "África do Sul" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zâmbia" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbábue" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Falha na conversão de texto em voz para mensagem: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Por favor, forneça o seu nome de utilizador Last.fm e a chave de API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Erro no Reproduzindo Agora" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Não foi possível conectar-se ao Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Não foi possível obter a faixa recente do Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Não foi possível encontrar um MPRIS player adequado" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Foram encontrados vários players MPRIS: %(players)s. Usando: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Leitor MPRIS detetado automaticamente: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Algo deu errado ao consultar %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Forneça o seu nome de utilizador ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: não foi possível conectar a ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: não parece estar a ouvir nada agora" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Não foi possível obter a faixa atual de ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Filtros de Rede" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Lista de comandos disponíveis" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Conectar ao servidor" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Desconectar do servidor" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Alternar estado ausente" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Gerir plugins" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Limpar janela de bate-papo" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Diga algo na terceira pessoa" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Anuncie a música que está a reproduzir no momento" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Entrar na sala de bate-papo" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Sair da sala de bate-papo" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Diga a mensagem na sala de bate-papo especificada" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Abrir bate-papo privado" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Fechar bate-papo privado" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Solicitar versão do cliente do utilizador" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Enviar mensagem privada ao utilizador" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Adicionar utilizador à lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Remover amigo da lista de amigos" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Navegar ficheiros do utilizador" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Mostrar informações do perfil do utilizador" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Mostrar endereço IP ou nome de utilizador" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Bloquear conexões de utilizador ou endereço IP" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Remover utilizador ou endereço IP das listas de banimento" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Silenciar mensagens do utilizador ou endereço IP" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Remova o utilizador ou o endereço IP das listas de ignorados" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Adicionar partilhamento" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Remover partilhamento" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Lista de partilhamentos" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Nova varredura dos partilhamentos" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Iniciar pesquisa global de ficheiros" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Pesquisar ficheiros em salas que entrou" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Pesquisar ficheiros de todos os amigos" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Pesquise os ficheiros partilhados de um utilizador" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "A listar %(num)i comandos disponíveis:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "A listar %(num)i comandos disponíveis correspondentes a \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Digite %(command)s para listar comandos semelhantes" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Digite %(command)s para listar os comandos disponíveis" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Não entrou na sala %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Não enviar mensagens para o utilizador %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Bate-papo privado fechado do utilizador %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Banido (%s)" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Desbanido (%s)" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "%s ignorados" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s não ignorados" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s partilhamentos listados (%(num_total)s configurado)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Não é possível partilhar pasta inacessível \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Adicionado %(group_name)s partilhamento \"%(virtual_name)s\" (é necessária " "nova verificação)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Não partilhar com nome \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Removido do partilhamento \"%s\" (é necessária nova verificação)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "A carregar sistema de plugins" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Não foi possível carregar o plug-in %(name)s. O nome da pasta do plugin " "contém caracteres inválidos: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Comando %(interface)s conflitante no plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Plugin carregado %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Não foi possível carregar o plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Plugin descarregado %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Não foi possível descarregar o plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s falhou com erro %(errortype)s: %(error)s.\n" "Rastreamento: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Sem descrição" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Argumento %s ausente" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Argumento inválido, escolhas possíveis: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Uso: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comando desconhecido: %(command)s. Digite %(help_command)s para listar os " "comandos disponíveis." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Nenhum dispositivo UPnP encontrado" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Falha ao encaminhar a porta externa %(external_port)s: " "%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Porta externa %(external_port)s encaminhada com sucesso para o " "endereço IP local %(ip_address)s porta %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Mensagem privada do utilizador '%(user)s': %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "A procurar pelo item da lista de desejos \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Período de espera da lista de desejos definido como %s segundos" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "O utilizador %(user)s procura por \"%(query)s\", encontrou %(num)i resultados" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "A reconstruir partilhamentos…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "A reescanear partilhamentos…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Nova verificação concluída: %(num)s pastas encontradas" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Ocorreu um erro grave ao verificar novamente os partilhamentos. Se o " "problema persistir, exclua %(dir)s/*.dbn e tente novamente. Se isso não " "ajudar, envie um relatório de bug com este rastreamento de pilha incluído: " "%(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Erro ao verificar o ficheiro %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Erro ao verificar a pasta %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Erro ao verificar metadados do ficheiro %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Nova verificação abortada devido a partilhamentos indisponíveis: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "O utilizador %(user)s navega na sua lista de ficheiros partilhados" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Falha ao buscar a pasta partilhada %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Não foi possível ler o banco de dados de partilhamentos. Por favor, " "redigitalizeos seus partilhamentos. Erro: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "A interface de rede especificada '%s' não está disponível" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Não é possível escutar na porta %(port)s. Certifique-se que nenhuma outra " "aplicação o use ou escolha uma porta diferente. Erro: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "A escutar na porta: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Não é possível conectar ao servidor %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "A reconectar ao servidor em %i segundos" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "A conectar em %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Conectado ao servidor %(host)s:%(port)s, fazendo login…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Desconectado do servidor %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Alguém fez login na sua conta Soulseek em outro lugar" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Upload concluído: utilizador %(user)s, endereço IP %(ip)s, ficheiro %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Upload abortado, utilizador %(user)s, ficheiro %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Erro de I/O de upload: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Upload iniciado: utilizador %(user)s, endereço IP %(ip)s, ficheiro %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" "Não foi possível criar diretório '%(folder)s', erro relatado: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Falha ao carregar partilhamentos do disco: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Lista gravada de ficheiros partilhados para o utilizador '%(user)s' em " "%(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Não foi possível criar diretório '%(user)s', erro relatado: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Imagem gravada em %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Não é possível gravar a imagem em %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "O utilizador %(user)s visualiza o seu perfil" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Não foi possível conectar ao servidor. Razão: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Não pode conectar" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Não é possível recuperar o IP do utilizador %s, pois este utilizador está " "offline" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Endereço IP do utilizador %(user)s: %(ip)s, porta %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Anúncio do Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i utilizadores privilegiados" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Você não tem privilégios Soulseek. Enquanto os privilégios estiverem ativos, " "seus downloads serão enfileirados à frente dos usuários sem privilégios." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dias, %(hours)i horas, %(minutes)i minutos, %(seconds)i segundos de " "privilégios Soulseek restantes" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Sua senha foi alterada" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Senha Alterada" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Não é possível abrir o caminho do ficheiro %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Não é possível abrir o URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Algo deu errado ao ler o ficheiro %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "A tentar carregar o backup do ficheiro %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Não foi possível fazer backup do ficheiro %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Não foi possível gravar o ficheiro %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Não foi possível restaurar o ficheiro anterior %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Adicionar amigo…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Registo de atividades de pesquisa…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Pesquisar registo de bate-papo…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Enviar mensagem…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Alternar conversão de texto em fala" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Ajuda do Comando da Sala de Bate-Papo" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Registro" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Parede de Salas" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Parede da s_ala" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Criado por" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Traduzido por" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Licença" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Anterior" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Bem-vindo ao Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Configurar…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Se o nome de utilizador desejado já estiver em uso, será solicitado a alterá-" "lo." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Para se conectar com outros pares do Soulseek, uma porta de escuta no seu " "roteador deve ser encaminhada para o seu computador." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Se a sua porta de escuta estiver fechada, só poderá se conectar a " "utilizadores cujas portas de escuta estejam abertas." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Se necessário, escolha uma porta de escuta diferente abaixo. Isso também " "pode ser feito posteriormente nas preferências." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Descarregar Ficheiros para Pasta" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Partilhar Pastas" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Os utilizadores do Soulseek poderão descarregar dos seus partilhamentos. " "Contribua com a rede Soulseek partilhando os seus próprios ficheiros e " "partilhando novamente o que descarregou de outros utilizadores." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Está pronto para usar Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek é um protocolo não criptografado, não destinado à comunicação " "segura." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Doar para o Soulseek concede privilégios por um determinado período de " "tempo. Se tiver privilégios, as suas decargas serão enfileiradas antes dos " "utilizadores não privilegiados." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Ficheiro anterior" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Ficheiro seguinte" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Nome" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Última Velocidade" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exportar…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Atalhos do Teclado" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Geral" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Conectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Desconectar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Reescanear Partilhamentos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Mostrar Painel de Registo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Confirmar Saída" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Sair" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menus" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Abrir Menu Principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Abrir Menu de Contexto" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Guias" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Mudar Guia Principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Ir para Guia Secundária Anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Ir para Próxima Guia Secundária" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Reabrir Guia Secundária Fechada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Fechar Guia Secundária" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listas" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Copiar Célula Selecionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Remover Linha Selecionada" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "A editar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Cortar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Colar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Inserir Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Selecione Todos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Encontrar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Encontrar Próximo Correspondente" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Encontrar Correspondente Anterior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Transferências de Ficheiro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Resumir / Retentar Transferência" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Pausar / Abortar Transferência" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Descarregar / Enviar Para" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Gravar Lista no Disco" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Atualizar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Expandir / Agrupar Tudo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Voltar para Pasta Superior" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Buscar Ficheiro" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filtros de Resultado" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Sessão Atual" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Descargas Concluídas" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Tamanho Descarregado" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Uploads Concluídos" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Tamanho Enviado" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Restaurar…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Os itens da lista de desejos são pesquisados automaticamente em intervalos " "regulares, para descobrir ficheiros incomuns." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Adicionar Desejo…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Limpar Tudo…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Limpar todas as descargas finalizadas/filtradas" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Limpar Concluídas" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Limpar descargas específicas" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Limpar _Tudo…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Interesses Pessoais" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Adicionar algo que gosta…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Desgostos Pessoais" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Adicionar algo que não gosta…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Atualizar recomendações" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menu Principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Nome de utilizador…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Pesquisar termo…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Padrões de pesquisa: com uma palavra = termo, sem uma palavra = -termo, " "palavra parcial = *ermo" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Escopo da pesquisa" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Lista de Desejos" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Configurar pesquisas" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Digite um termo de pesquisa para pesquisar ficheiros partilhados por outros " "utilizadores na rede Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Modo de agrupamento de ficheiros" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Configurar descargas" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Os ficheiros que descarrega de outros utilizadores são enfileirados aqui e " "podem ser pausados e retomados sob necessidade" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Configurar uploads" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "As tentativas dos utilizadores de descarregar os seus ficheiros partilhados " "são enfileiradas e gerenciadas aqui" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Abrir Lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Abre uma lista local de ficheiros partilhados que foram gravados " "anteriormente no disco" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Configurar partilhamentos" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Digite o nome de um utilizador cujos ficheiros partilhados deseja navegar. " "Também pode gravar a lista no disco e inspecioná-la posteriormente." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "Perfil _Pessoal" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Configurar Conta" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Digite o nome de um utilizador para visualizar a sua descrição de " "utilizador, informações e imagem pessoal" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Histórico de bate-papo" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Configurar bate-papos" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Digite o nome de um utilizador para iniciar uma conversa de texto com ele em " "particular" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_Mensagens para Todos" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Configurar Utilizadores Ignorados" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Adicione utilizadores como amigos para partilhar pastas específicas com eles " "e receber notificações quando estiverem online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Entrar ou criar sala…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Junte-se a uma sala de bate-papo existente ou crie uma nova sala para " "conversar com outros utilizadores na rede Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Configurar Perfil do Utilizador" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Pesquisar no registo…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Conexões" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "A descarregar (velocidade / utilizadores ativos)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "A enviar (velocidade/utilizadores ativos)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Pesquisar histórico de bate-papo…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Limites de velocidade de descargas" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Velocidade de descargas ilimitada" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Usar limite de velocidade de descargas (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Usar limite alternativo de velocidade de descargas (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Pesquisar salas…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Atualizar salas" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Mostrar feed de mensagens públicas da sala de bate-papo" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Aceitar convites para salas privadas" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Escreva uma única mensagem que outros utilizadores da sala possam ler mais " "tarde. As mensagens recentes são mostradas na parte superior." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Definir mensagem de parede…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Filtros de resultados de pesquisa" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Os filtros de resultados de pesquisa são usados para refinar quais " "resultados de pesquisa são exibidos." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Cada lista de resultados de pesquisa tem o seu próprio filtro que pode ser " "revelado alternando o botão Filtros de resultados. Um filtro é composto de " "vários campos, todos aplicados ao pressionar Enter em qualquer um dos seus " "campos. A filtragem é aplicada imediatamente aos resultados já recebidos e " "também aos que ainda não chegaram." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Como o nome sugere, um filtro de resultados de pesquisa não pode expandir a " "sua pesquisa original, apenas pode restringi-la. Para ampliar ou alterar os " "seus termos de pesquisa, faça uma nova pesquisa." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Uso do filtro de resultados" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Incluir Texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Ficheiros, pastas e nomes de utilizadores contendo este texto serão " "mostrados." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Maiúsculas e minúsculas são insensíveis, mas a ordem das palavras é " "importante: 'Instrumental Remix' não mostrará nenhum 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Usar | (ou tubos) para separar várias frases exatas. Exemplo:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Excluir Texto" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Como acima, mas ficheiros, pastas e nomes de utilizador são filtrados se o " "texto corresponder." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Filtra ficheiros com base na sua extensão de ficheiro." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Várias extensões de ficheiro podem ser especificadas, o que, por sua vez, " "revelará mais da lista de resultados. Exemplo:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Também é possível inverter o filtro, a especificar extensões de ficheiro que " "não deseja nos seus resultados com um ponto de exclamação! Exemplo:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Tamanho do Ficheiro" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Filtra ficheiros com base no seu tamanho de ficheiro." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Por padrão, a unidade utilizada é bytes (B) e ficheiros maiores ou iguais a " "(=) o valor será correspondido." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Acrescente b, k, m ou g (alternativamente kib, mib ou gib) para especificar " "unidades de byte, kibibyte, mebibyte ou gibibyte:\n" "20m para mostrar ficheiros maiores que 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Anexe = a um valor para especificar uma correspondência exata:\n" " =1024 corresponde a ficheiros com exatamente 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Pré-anexar! para um valor para excluir ficheiros de um tamanho específico:\n" "!30,5m para ocultar ficheiros com 30,5 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Anexe ou para localizar ficheiros menores/maiores que o valor fornecido. Use " "um espaço entre cada condição para incluir um intervalo:\n" " >10,5m<1g para mostrar ficheiros maiores que 10,5 MiB, mas menores que 1 " "GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "As variantes mais conhecidas kb, mb e gb também podem ser usadas para " "unidades de kilobyte, megabyte e gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Filtra ficheiros com base na sua taxa de bits." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Os valores devem ser inseridos apenas como dígitos numéricos. A unidade é " "sempre Kb/s (Kilobits por segundo)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Como Tamanho do ficheiro (acima), os operadores =, !, <, >, <= ou >= podem " "ser usados e várias condições podem ser especificadas, por exemplo, para " "mostrar ficheiros com uma taxa de bits de pelo menos 256 Kb/s com uma taxa " "de bits máxima de 1411 Kb /s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Filtra ficheiros com base na sua duração." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Por padrão, ficheiros maiores ou iguais a (>=) a duração inserida serão " "correspondidos, a menos que um operador (=, !, <=, < ou>)seja usado." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Insira um valor bruto em segundos ou use os formatos de hora MM:SS e HH:MM:" "SS:\n" " =53 mostra ficheiros com cerca de 53 segundos de duração.\n" " >5:30 para mostrar ficheiros com mais que 5 minutos e meio.\n" " <5:30:00 mostra ficheiros com menos que 5 horas e meia de duração." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Várias condições podem ser especificadas:\n" " >6:00 <12:00 para mostrar ficheiros entre 6 e 12 minutos de duração.\n" " !9:54 !8:43 !7:32 para ocultar alguns ficheiros específicos dos " "resultados.\n" " =5:34 =4:23 =3:05 para incluir ficheiros com durações específicas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtra ficheiros com base na localização geográfica dos utilizadores de " "acordo com os códigos de país definidos pela ISO 3166-2:\n" " Os US mostrarão apenas resultados de utilizadores com endereços IP nos " "Estados Unidos\n" " !GB ocultará os resultados provenientes de utilizadores da Grã-Bretanha." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Vários países podem ser especificados com vírgulas ou espaços." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Slot Livre" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Mostrar apenas os resultados de utilizadores que têm pelo menos um slot de " "upload livre, ou seja, ficheiros que estão disponíveis imediatamente." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Limites de velocidade de upload" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Velocidade de Upload Ilimitado" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Usar Limite de velocidade de upload (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Usar limite de velocidade de upload alternativo (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Ajuda do Comando de Chat Privado" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Incluir texto…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtre os resultados cujos caminhos de ficheiro contêm o texto especificado. " "Várias frases e palavras podem ser especificadas, por ex. frase exata|música|" "termo|frase exata dois" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Excluir texto…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtre os resultados cujos caminhos de ficheiro contêm o texto especificado. " "Várias frases e palavras podem ser especificadas, por ex. frase exata|música|" "termo|frase exata dois" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Tipo de ficheiro…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tipo de ficheiro, por exemplo, flac wav ou !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Tamanho do ficheiro…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Tamanho do ficheiro, por exemplo, >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bitrate…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Taxa de bits, por exemplo, 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Duração…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Duração, por exemplo, >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Código do país…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Código do país, por exemplo, US ES ou !OF !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Proibir que os utilizadores acedem os seus ficheiros partilhados, com base " "no nome de utilizador, endereço IP ou país." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Códigos dos Países bloqueados (separados por vírgula):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Os códigos devem estar no formato ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Use a mensagem personalizada de bloqueio geográfico:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Utilizar uma mensagem de banir personalizada:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "Endereços de IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Ativar corretor ortográfico" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Restaurar bate-papos privados abertos anteriormente na inicialização" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Ativar respostas de mensagens privadas semelhantes a CTCP (versão do cliente)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Número de mensagens de bate-papo privado recentes a serem exibidas:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Número de mensagens recentes da sala de bate-papo a serem exibidas:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Conclusão do bate-papo" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Ativar a conclusão da tecla tab" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Ativar lista suspensa de conclusão" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Caracteres mínimos necessários para exibir a lista suspensa:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Conclusões de bate-papo permitidas:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Nomes de amigos" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Nomes de utilizador da sala de bate-papo" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Nomes de salas" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Comandos" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Carimbos de data e hora" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Formato de bate-papo privado:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Padrão" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Formato da sala de bate-papo:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Conversão de texto em fala" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Ativar conversão de texto em fala" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Comando de conversão de texto em fala:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Mensagem de bate-papo privada:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Mensagem da sala de bate-papo:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Censurar" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Ativar censura de padrões de texto" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Substituir automaticamente" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Ativar a substituição automática de palavras" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Limpar automaticamente descargas finalizadas/filtradas da lista de " "transferências" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Armazenar descargas concluídas em subpastas de nome de utilizador" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Ação de clique duplo para descargas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Permita que os utilizadores enviem qualquer ficheiro para si:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Pastas" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Descargas concluídas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Descargas incompletas:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Ficheiros recebidos:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Eventos" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Execute o comando após o término da descarga do ficheiro ($ para o caminho " "do ficheiro):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Execute o comando após a conclusão da descarga da pasta ($ para o caminho da " "pasta):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Filtros de Descargas" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Ativar filtros de descargas" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Adicionar" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Carregar padrões" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Verificar Filtros" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Não verificado" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignore mensagens de bate-papo e resultados de pesquisa de utilizadores, com " "base no nome de utilizador ou endereço IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Registar conversas das salas por padrão" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Registar conversas das salas privadas por padrão" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Registar transferências para ficheiro" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Registar mensagens de depuração no ficheiro" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Formato de registo de data e hora:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Locais de pastas" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Pasta de registos da sala de bate-papo:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Pasta de registos de bate-papo privado:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Transferir pasta de registos:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Pasta de registos de depuração:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Faça login numa conta Soulseek existente ou crie uma nova. Os nomes de " "utilizador diferenciam maiúsculas de minúsculas e são exclusivos." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Endereço de IP público:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Porta de escuta (requer reinicialização):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Estado de Ausente" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minutos de inatividade antes de ir embora (0 para desativar):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Mensagem de resposta automática quando estiver ausente:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Encaminhar automaticamente a porta de escuta (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Conectar automaticamente ao servidor na inicialização" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Servidor Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Vincula conexões a uma interface de rede específica, útil para, por exemplo, " "garantindo que uma VPN seja usada o tempo todo. Deixe em branco para usar " "qualquer interface disponível. Só altere esse valor se souber o que faz." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Interface de rede (requer reinicialização):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "A Reproduzir Agora permite que exiba o que o seu reprodutor de mídia está " "tocando usando o comando /now no bate-papo." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Outro" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Formato do Reproduzindo Agora" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Formato de mensagem em Reproduzindo Agora:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Configuração de teste" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Ativar plug-ins" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Adicionar plug-ins" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Adicionar plug-ins" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Configurações" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Configurações" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Versão:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Criado por:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Ativar histórico de pesquisa" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Os ficheiros partilhados de forma privada que ficaram visíveis para todos " "terão o prefixo '[PRIVATE]' e não poderão ser descarregados até que o " "remetente conceda permissão explícita. Pergunte-os gentilmente." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" "Mostrar ficheiros partilhados de forma privada nos resultados da pesquisa" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Limite o número de resultados por pesquisa:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Ativar filtros de resultados de pesquisa por padrão" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Incluir:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Excluir:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Tipo de ficheiro:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Tamanho:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Taxa de bits:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Duração:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Código do país:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Mostrar apenas resultados de utilizadores com um slot de upload disponível." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Ajuda do filtro de resultados" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Pesquisas de rede" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Responda a solicitações de pesquisa de outros utilizadores" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Pesquisas menores que esse número de caracteres serão ignoradas:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Máximo de resultados de pesquisa a serem enviados por solicitação de " "pesquisa:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Limpar histórico de pesquisa" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Limpar histórico do filtro" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Reescanea automaticamente o conteúdo das suas pastas partilhadas na " "inicialização. Se desativado, os seus partilhamentos são atualizados apenas " "quando inicia uma nova verificação manualmente." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Nova varredura ao inicializar" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Visível para todos:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Partilhamentos de amigos" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Partilhas confiáveis" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Limpar automaticamente uploads concluídos/cancelados da lista de " "transferências" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Ação de clique duplo para uploads:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Limite a velocidade de upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Por transferência" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Total de transferências" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Slots de Upload" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Os ficheiros serão enviados de forma cíclica para os " "utilizadores que aguardam na fila.\n" "First In, First Out: Os ficheiros serão carregados na ordem em que foram " "enfileirados." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Tipo de fila de upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Aloque slots de upload até atingir a velocidade total (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Número fixo de slots de upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Priorize todos os amigos" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Limites de fila" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Número máximo de ficheiros enfileirados por utilizador:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Tamanho total máximo de ficheiros enfileirados por utilizador (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Limites não se aplicam a amigos" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "As instâncias de $ são substituídas pela URL. As aplicações padrão do " "sistema são usadas nos casos em que um protocolo não foi configurado." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Comando do gestor de ficheiros:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Redefinir imagem" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Auto descrição" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Adicione o que deseja que todos vejam, como uma breve descrição, dicas úteis " "ou diretrizes para descarregar os seus partilhamentos." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Imagem:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Limpar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Prefira o modo escuro" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Usar barra de cabeçalho" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Exibir ícone na bandeja" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Minimizar para bandeja na inicialização" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Idioma (requer uma reinicialização):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Ao fechar a janela:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Notificações" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Ativar som para notificações" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" "Mostrar notificação para bate-papos privados e menções no título da janela" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Mostrar notificações para:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Descargas de ficheiros concluídas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Descargas de pastas concluídas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Mensagens privadas" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Mensagens da sala de bate-papo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Menções da sala de bate-papo" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Resultados da lista de desejos encontrados" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Restaurar a guia principal anteriormente ativa na inicialização" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Botões de fechamento nas guias secundárias" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Cor do rótulo da guia regular:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Cor do rótulo da guia alterada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Cor do rótulo da guia destacada:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Posição na lista de amigos:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Guias principais visíveis:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Posições da barra de guias:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Guias principais" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Mostrar caminhos de ficheiro reversos (requer uma reinicialização)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Mostrar tamanhos de ficheiro exatos (requer uma reinicialização)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Cor do texto da lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Cor do texto do resultado da pesquisa na fila:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Ativar nomes de utilizadores coloridos" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Aparência do nome de utilizador do bate-papo:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Cor do texto remoto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Cor do texto local:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Cor do texto de comando:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me cor do texto da ação:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Cor do texto em destaque:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Cor do texto da ligação do URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Estados do Utilizador" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Cor do online:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Cor do ausente:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Cor do offline:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Entradas de texto" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Cor de fundo da entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Cor do texto de entrada de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Fontes" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Fonte global:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Fonte da lista:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Fonte de exibição de texto:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Fonte das salas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Fonte de transferências:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Buscar fonte:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Navegar fonte:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ícones" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Pasta do tema do ícone:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Abortar Utilizador(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Banir Utilizador(s)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Limpar todos os uploads concluídos/cancelados" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Mensagens para Todos" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Limpar uploads específicos" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Gravar lista de partilhamentos no disco" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Atualizar ficheiros" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Editar Perfil" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Ficheiros Partilhados" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Pastas Partilhadas" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Uploads na Fila" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Slots de Upload Gratuitos" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Velocidade de upload" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Editar Interesses" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Dar privilégios…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_Atualizar perfil" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Comandos do Nicotine+" #~ msgid "_Clear" #~ msgstr "Limpar" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Não é possível gravar %(filename)s: %(error)s" #, fuzzy #~ msgid "Nicotine+" #~ msgstr "Time Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Amigos de Confiança" #~ msgid "Quit program" #~ msgstr "Sair do programa" #~ msgid "Username:" #~ msgstr "Nome de utilizador:" #~ msgid "Re_commendations for Item" #~ msgstr "Re_comendações para este item" #~ msgid "_Remove Item" #~ msgstr "_Remover este item" #~ msgid "_Remove" #~ msgstr "_Remover" #~ msgid "Send M_essage" #~ msgstr "Enviar M_ensagem" #~ msgid "Send Message" #~ msgstr "Enviar Mensagem" #~ msgid "View User Profile" #~ msgstr "Exibir Perfil de Utilizador" #~ msgid "Start Messaging" #~ msgstr "Iniciar Mensagens" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Digite o nome do utilizador para quem deseja enviar uma mensagem:" #~ msgid "_Message" #~ msgstr "_Mensagem" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Digite o nome do utilizador cujo perfil deseja ver:" #~ msgid "_View Profile" #~ msgstr "_Exibir Perfil" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Digite o nome do utilizador cujos partilhamentos deseja ver:" #~ msgid "_Browse" #~ msgstr "_Navegar" #~ msgid "Password" #~ msgstr "Palavra-passe" #~ msgid "Download File" #~ msgstr "Descarregar ficheiro" #~ msgid "Refresh Similar Users" #~ msgstr "Atualizar utilizadores semelhantes" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Digite o nome de utilizador da pessoa cujos ficheiros deseja ver" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Digite o nome de utilizador da pessoa cujas informações deseja ver" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Digite o nome de utilizador da pessoa para quem deseja enviar uma mensagem" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Digite o nome de utilizador da pessoa que deseja adicionar à sua lista de " #~ "amigos" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Digite o nome de uma sala que deseja ingressar. Se a sala não existir, " #~ "ela será criada." #~ msgid "Show Log History Pane" #~ msgstr "Mostrar painel de histórico de registo" #~ msgid "Save _Picture" #~ msgstr "Gravar _Imagem" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Resultado de pesquisa incorreto %(filepath)s filtrado do utilizador " #~ "%(user)s para a consulta de pesquisa \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Certos clientes não enviam resultados de pesquisa se forem incluídos " #~ "caracteres especiais." #~ msgid "Remove special characters from search terms" #~ msgstr "Remover caracteres especiais dos termos de pesquisa" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Não é possível salvar o download na subpasta username, voltando para a " #~ "pasta de download padrão. Erro: %s" nicotine-plus-3.3.4/po/ro.po000066400000000000000000006103121461625273200157230ustar00rootroot00000000000000# Copyright (C) 2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-07-25 18:31+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" "X-Generator: Weblate 5.0-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Client Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Client grafic pentru rețeaua peer-to-peer Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;partajare;mesagerie;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Client grafic pentru rețeaua Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ este un client grafic pentru rețeaua peer-to-peer Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ își propune să fie o alternativă plăcută, gratuită și cu sursă " "deschisă (FOSS) la clientul oficial Soulseek, oferind funcționalități " "suplimentare, fiind în același timp la curent cu protocolul Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Cauta fișiere" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Descărcări" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Răsfoiți acțiuni" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Chat privat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Echipa Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Site web: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "afișați acest mesaj de ajutor și ieșiți" #: pynicotine/__init__.py:59 msgid "file" msgstr "fișier" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "folosește fișier de configurație non-implicit" #: pynicotine/__init__.py:63 msgid "dir" msgstr "dir" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "folder alternativ pentru datele utilizatorului și pluginuri" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "pornește programul fără afișarea ferestrei" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "legați socketurile la IP-ul dat (util pentru VPN)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "port" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "ascultă pe portul dat" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "rescanați fișierele partajate" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "porniți programul în modul headless (fără GUI)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "afișează versiunea și iese" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Folosiți o versiune nesuportată de Python (%(old_version)s).\n" "Ar trebui să instalați Python %(min_version)s sau mai nou." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Nu s-au putut scana partajările. Va rog să închideți alte instanțe Nicotine+ " "și încercați din nou." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "%(user)s este plecat" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "%(user)s este online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "%(user)s este offline" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Stare de prieten" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Ați fost adăugat în camera privată %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Mesaj de la utilizatorul \"%(user)s\" în camera \"%(room)s\": %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Nu s-a putut crea folder-ul \"%(path)s\", eroare raportată: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Eroare la backup-ul configurației: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Backup configurației la: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Încărcare %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Ieșire %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "se termină" #: pynicotine/core.py:237 msgid "application closing" msgstr "aplicația se închide" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Încărcare %(program)s %(version)s" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" "Trebuie să specificați un nume de utilizator și o parolă înainte de " "conectare…" #: pynicotine/downloads.py:224 #, fuzzy, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Eroare: Filtrul de descărcare a eșuat! Verificați-vă filtrele. Motiv: %s" #: pynicotine/downloads.py:239 #, fuzzy, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Eroare: %(num)d Descărcarea filtrelor a eșuat! %(error)s " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s descărcat de pe %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Fișier descărcat" #: pynicotine/downloads.py:366 #, fuzzy, python-format msgid "Executed: %s" msgstr "Executat: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Executarea „%(command)s” a eșuat: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s descărcat de pe %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Dosar descărcat" #: pynicotine/downloads.py:407 #, fuzzy, python-format msgid "Executed on folder: %s" msgstr "Execut în folder: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Nu s-a putut muta „%(tempfile)s” în „%(file)s”: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Eroare de descărcare a folderului" #: pynicotine/downloads.py:481 #, fuzzy, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Descărcare finalizată: utilizator %(user)s, fișier %(file)s" #: pynicotine/downloads.py:499 #, fuzzy, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Descărcare anulată, fișierul utilizatorului %(user)s %(file)s" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Eroare de descărcare I/O: %s" #: pynicotine/downloads.py:1194 #, fuzzy, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Nu se poate obține o blocare exclusivă a fișierului - eroare I/O: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Nu se poate salva fișierul în %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, fuzzy, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Descărcarea a început: utilizator %(user)s, fișier %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Nu s-a putut găsi %s, vă rog să instalați componenta lipsă." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Nu există un mediu grafic, folosind modul headless (fără GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 #, fuzzy msgid "_Connect" msgstr "_Conectați" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 #, fuzzy msgid "_Disconnect" msgstr "_Deconectat" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "Soulseek _Privilegii" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Preferințe" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Ieși" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Răsfoiți acțiuni publice" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Răsfoiește acțiunile lui Buddy" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Răsfoiește acțiunile lui Buddy" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "_Rescanați acțiunile" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "Configurați partajări" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Comenzi rapide de la tastatură" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Setup Assistant" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "_Statistici de transfer" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Raporteaza o eroare" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Îmbunătățiți traducerile" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "_Despre Nicotina+" #: pynicotine/gtkgui/application.py:422 #, fuzzy msgid "_File" msgstr "_Fişier" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Acțiuni" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Ajutor" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Răsfoiți acțiuni" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Nu se poate afișa notificarea: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Ești sigur că vrei să ieși?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Ești sigur că vrei să ieși?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "_Nu" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Rulează în fundal" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Ieși Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Partajări nevalabile" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Verificați că diskurile externe sunt montate și permisiunile folderelor sunt " "corecte." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Anulează" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Reîncearcă" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Re-scanează forțat" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Parolă greșită" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Utilizatorul %s deja există și parola introdusă este greșită. Vă rog să " "alegeți alt nume de utilizator dacă aceasta este prima oară când vă " "conectați." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Schimbați _Detaliile de logare" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Trimite mesaj utilizatorilor care descarcă" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Trimite un mesaj privat tuturor utilizatorilor care descarcă de la tine:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Trimite mesaj" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Trimite mesaj prietenilor" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Trimite mesaj privat către toți prietenii online:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Selectați un fișier salvat cu listă de partajări" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Eroare Critică" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ a întâmpinat o eroare critică și trebuie să iasă. Vă rog să " "copiați acest mesaj și includeți-l într-un raport de eroare:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Ieșiti Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Copiați & Raportați eroare" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Stare" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Țară" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Utilizator" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Viteză" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Fișiere" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted" msgstr "De încredere" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Notifică" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Prioritizate" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Vazut ultima data" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Notă" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Adăugați utilizator _Notă…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 #, fuzzy msgid "Remove" msgstr "Elimina" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Nemaivăzut" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Adăugați o notă de utilizator" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Adăugați o notă despre utilizatorul %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Adăuga" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Creare cameră nouă?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Chiar doriți să creați camera nouă \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Faceți camera privată" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Căuta_ți Fișierele Utilizatorului" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Găsește…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Copiază" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Copiază tot" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Golește vizualizarea activității" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Părăsește camera" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Copiază link" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Vezi istoric cameră" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Ștergeți istoric cameră…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Goliți vizualizare mesaje" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s a intrat în cameră" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s te-a menționat în camera %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Menționat de %(user)s în camera %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Mesaj de %(user)s în camera %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s a ieșit din cameră" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s a plecat" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s s-a întors" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Ștergeți istoric mesaje?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Chiar doriți să ștergeți permanent tot istoricul de mesaje din această " "cameră?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Despre" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Site web: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Nu s-a putut retrage cea mai recentă versiune: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Actualizat" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Verificați _Ultima versiune" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Asistent de configurare" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Folder virtual" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Pliant" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Finalizare" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Următorul" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Adăugați folder partajat" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Modificați folder partajat" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Introduceți un nume virtual nou pentru \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Editați | ×…" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Proprietăți fișier" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Proprietăți fișier (%(num)i din %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Proprietăți fișier (%(num)i of %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "_Aplica" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Adăuga…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Editați | ×…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "%s Setări" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Articol" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Editați interesele" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Necunoscut" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Verifică stare port" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, portul %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Schimbare parolă respinsă" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Introduceți o parolă nouă pentru contul dvs. de Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "În prezent, sunteți deconectat din rețeaua Soulseek. Dacă doriți să " "schimbați parola unui cont Soulseek existent, trebuie să fiți conectat la " "acel cont." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Introduceți parola de utilizat când vă conectați:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Schimbaţi parola" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Fila schimbată" #: pynicotine/gtkgui/dialogs/preferences.py:276 #, fuzzy msgid "No one" msgstr "Nici unul" #: pynicotine/gtkgui/dialogs/preferences.py:277 #, fuzzy msgid "Everyone" msgstr "Toata lumea" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 #, fuzzy msgid "Buddies" msgstr "Prieteni" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Prieteni de încredere" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Nimic" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Fișierul următor" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "Deschideți în File Manager" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 #, fuzzy msgid "Search" msgstr "Căutare" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Pauză" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Relua" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "Răsfoiți folderul" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Sintaxă: nu ține cont de majuscule și minuscule. Dacă este activată, " "expresiile regulate Python pot fi folosite, altfel sunt acceptate numai " "potrivirile cu caractere joker *." #: pynicotine/gtkgui/dialogs/preferences.py:320 #, fuzzy msgid "Filter" msgstr "Filtru" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Adăugați filtru de descărcare" #: pynicotine/gtkgui/dialogs/preferences.py:459 #, fuzzy msgid "Enter a new download filter:" msgstr "Introduceți un nou filtru de descărcare:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Activați expresiile regulate" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Editați filtrul de descărcare" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Modificați următorul filtru de descărcare:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, fuzzy, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Eșuat! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtre de succes" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 #, fuzzy msgid "Abort" msgstr "Avorta" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 #, fuzzy msgid "Retry" msgstr "Reîncercați" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 #, fuzzy msgid "First In, First Out" msgstr "Primul intrat, primul ieşit" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 #, fuzzy msgid "Username" msgstr "Nume de utilizator" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "Adresă IP" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ignorați utilizatorul" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Introduceți numele utilizatorului pe care doriți să-l ignorați:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Ignorați adresa IP" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Introduceți o adresă IP pe care doriți să o ignorați:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* este un wildcard" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Ban utilizator" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Introduceți numele utilizatorului pe care doriți să-l interziceți:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Interziceți adresa IP" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Introduceți o adresă IP pe care doriți să o interziceți:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Model" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Înlocuire" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Model de cenzură" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Introduceți un model pe care doriți să-l cenzurați. Adăugați spații în jurul " "modelului dacă nu doriți să potriviți șiruri în interiorul cuvintelor (poate " "eșua la începutul și la sfârșitul rândurilor)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Editați modelul cenzurat" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Adăugați înlocuitor" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Introduceți un model de text și cu ce să îl înlocuiți:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Editați înlocuirea" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Defectiune de sistem" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Afișează dialogul de confirmare" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Alergați în fundal" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "îndrăzneţ" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "cursiv" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "subliniază" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Trimite mesaj prietenilor" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Lista de prieteni în camerele de chat" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Top" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Fund" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Stânga" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Dreapta" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 #, fuzzy msgid "Online" msgstr "Pe net" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 #, fuzzy msgid "Away" msgstr "Departe" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 #, fuzzy msgid "Offline" msgstr "Deconectat" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Fila schimbată" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Evidențiați fila" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Fereastră" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Online (tavă)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Away (Tavă)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Offline (tavă)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Mesaj (tava)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 #, fuzzy msgid "Protocol" msgstr "Protocol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Comanda" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Adăugați un handler URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Introduceți protocolul și comanda pentru handler-ul URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Comanda Editare" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Introduceți o nouă comandă pentru protocolul %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Nume utilizator;APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Music player (de exemplu, amarok, audacious, exaile); lăsați gol pentru a " "detecta automat:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Nume de utilizator:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Comanda:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Titlu" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "În curs de redare (de obicei „%(artist)s - %(title)s”)" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Artist" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Durată" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 #, fuzzy msgid "Bitrate" msgstr "Rata de biți" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "cometariu" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Numărul piesei" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "An" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Nume fișier (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Activat" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Conecteaza" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Niciun plugin selectat" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Rețea" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interfață utilizator" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Partajări" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Încărcări" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Căutări" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Profil utilizator" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Conversații" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Acum se joacă" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 #, fuzzy msgid "Logging" msgstr "Logare" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Utilizatori interziși" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Utilizatori ignorați" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Plugin-uri" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "Gestionare URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Preferințe" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Alegeți un nume de fișier pentru Config Backup" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Statistici de transfer" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Total de la %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Resetați statisticile de transfer?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Chiar doriți să resetați statisticile de transfer?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "lista de dorințe" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Dori" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Căutați articol" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Editează dorința" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Introduceți o nouă valoare pentru dorința „%s”:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Ștergeți lista de dorințe?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Chiar vrei să-ți ștergi lista de dorințe?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 #, fuzzy msgid "Path" msgstr "cale" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Relua" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "Pauză" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Terminat / filtrat" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 #, fuzzy msgid "Finished" msgstr "Terminat" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 #, fuzzy msgid "Paused" msgstr "Întrerupt" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 #, fuzzy msgid "Filtered" msgstr "Filtrată" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Șters" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "În așteptare…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Tot…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Ștergeți descărcări în coadă" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Chiar doriți să ștergeți toate descărcările din coadă?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Ștergeți toate descărcările" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Chiar doriți să ștergeți toate descărcările?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Descărcați fișierele %(num)i?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Chiar doriți să descărcați fișiere %(num)i din folderul %(folder)s al " "%(user)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Descărcați folderul" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Îi place" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Antipatiile" #: pynicotine/gtkgui/interests.py:104 #, fuzzy msgid "Rating" msgstr "Evaluare" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Articol" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Recomandări pentru articol" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "Îmi place asta" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "_Nu-mi place asta" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Recomandări" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Utilizatori similari" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Recomandări (%s)" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Utilizatori similari (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, fuzzy, python-format msgid "Private Message from %(user)s" msgstr "Mesaj privat de la %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "S-au găsit rezultatele listei de dorințe" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Profilurile utilizatorilor" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Camere de chat" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 #, fuzzy msgid "Interests" msgstr "Interese" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "conversație" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "[Depanare] Conexiuni" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "[Depanare] Mesaje" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "[Depanare] Transferuri" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "[Depanare] Diverse" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "_Găsi…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "_Copie" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Copiați _Toate" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Vezi istoric cameră" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Deschideți _Transfer Log" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "_Categorii de jurnal" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Ștergeți vizualizarea jurnalului" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Descărcări: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Încărcări: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Scanarea acțiunilor" #: pynicotine/gtkgui/mainwindow.py:1189 #, fuzzy msgid "Scanning Shares" msgstr "Scanarea acțiunilor" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Ultimul mesaj" #: pynicotine/gtkgui/popovers/roomlist.py:68 #, fuzzy msgid "Room" msgstr "Cameră" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 #, fuzzy msgid "Users" msgstr "Utilizatori" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Alăturați-vă camerei" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Paraseste camera" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Cameră privată Disown" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Anulează calitatea de membru al camerei" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Inchide toate filele…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "_Închideți fila" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Vizualizați jurnalul de chat" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Ștergeți jurnalul de chat…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Acțiunile utilizatorului" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Chiar doriți să ștergeți definitiv toate mesajele înregistrate pentru acest " "utilizator?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "* Mesaje trimise în timp ce erai offline" #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "_Prieteni" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "_Camere" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "_Utilizator" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "În coadă" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Tip fișier" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 #, fuzzy msgid "Filename" msgstr "Nume de fișier" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 #, fuzzy msgid "Size" msgstr "mărimea" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Calitate" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Copiați _Cale fișierului" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 #, fuzzy msgid "Copy _URL" msgstr "Copiați _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Copiați dosarul U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Descărcați fișiere" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Descărcați fișierele _Pentru…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Descărcați _Folder(e)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Descărcați F_older(e) la…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Vizualizați _Profilul utilizatorului" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "Răsfoiți folderul" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "Proprietăți fișier" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Copiați termenul de căutare" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Ștergeți toate rezultatele" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Ștergeți filtrele" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Restaurați filtrele" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIVAT] %s" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Filtre de rezultate [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Filtre de rezultate" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "%d filtru(i) activ(e)" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Adăugați Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Eliminați Wi_sh" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Selectați Rezultatele utilizatorului" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Total: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Rezultate" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Selectați folderul de destinație pentru fișiere" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Selectați Dosarul de destinație" #: pynicotine/gtkgui/transfers.py:60 #, fuzzy msgid "Queued" msgstr "În așteptare" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "În coadă (cu prioritate)" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "În coadă (privilegiat)" #: pynicotine/gtkgui/transfers.py:63 #, fuzzy msgid "Getting status" msgstr "Obținerea statutului" #: pynicotine/gtkgui/transfers.py:64 #, fuzzy msgid "Transferring" msgstr "Transfer" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Conexiuni" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Timeout conexiune" #: pynicotine/gtkgui/transfers.py:67 #, fuzzy msgid "User logged off" msgstr "Utilizatorul sa deconectat" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Anulat" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Eroare de descărcare a folderului" #: pynicotine/gtkgui/transfers.py:73 #, fuzzy msgid "Local file error" msgstr "Eroare de fișier local" #: pynicotine/gtkgui/transfers.py:74 #, fuzzy msgid "Banned" msgstr "Interzis" #: pynicotine/gtkgui/transfers.py:75 #, fuzzy msgid "File not shared" msgstr "Fișierul nu a fost partajat" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Închidere în așteptare" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Transferuri de fișiere" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Coadă" #: pynicotine/gtkgui/transfers.py:182 #, fuzzy msgid "Percent" msgstr "La sută" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Timpul scurs" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Timp rămas" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Deschide lista" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Deschideți în File _Manager" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "_Căutare" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Curata tot" #: pynicotine/gtkgui/transfers.py:874 #, fuzzy msgid "Select User's Transfers" msgstr "Selectați Transferuri utilizator" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "_Anulează" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Terminat/Anulat/Eșuat" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Terminat/Anulat" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "A eșuat" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Utilizator deconectat" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Ștergeți Încărcările în coadă" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Chiar doriți să ștergeți toate încărcările din coadă?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Ștergeți toate încărcările" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Chiar doriți să ștergeți toate încărcările?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Salvați lista de acțiuni pe disc" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Încărcați folderul și subdosarele…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Copiați calea _dosarului" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Descărcați folderul și subdosarele" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Descărcați folderul și subdosarele în…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Nume de fișier" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Încărca fișiere)…" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Încărcați dosarul…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Descărcați folderul _Pentru…" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Lista utilizatorului de fișiere partajate este goală. Fie utilizatorul nu " "partajează nimic, fie partajează fișiere în mod privat." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Nu se pot solicita fișiere partajate de la utilizator. Fie utilizatorul este " "offline, fie porturile de ascultare sunt închise pe ambele părți, fie există " "o problemă temporară de conectivitate." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Selectați Destinație pentru descărcarea mai multor foldere" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Încărcați folderul (cu subdosare) către utilizator" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Încărcați dosarul la utilizator" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Introduceți numele utilizatorului în care doriți să încărcați:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "Încărcări" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Selectați folderul de destinație pentru fișiere" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Încărcați fișierele la utilizator" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Copiați imaginea" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Salvează poza" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Nu s-a putut încărca imaginea pentru utilizatorul %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Nu se pot solicita informații de la utilizator. Fie aveți amândoi un port de " "ascultare închis, utilizatorul este offline, fie există o problemă temporară " "de conectivitate." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Eliminați _Buddy" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Adauga prieten" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Anulează utilizatorul" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Anulați ignorarea utilizatorului" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "Yes" msgstr "da" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "No" msgstr "Nu" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Vă rugăm să introduceți numărul de zile." #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Dăruiește zilele privilegiilor tale Soulseek utilizatorului %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "Au mai rămas %(days)s zile" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Privilegii cadou" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Privilegii cadou" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Închide" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Da" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "_BINE" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Selectați un fișier" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Selectați un folder" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "_Selectați" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Selectați o imagine" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Toate imaginile" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Salvează ca…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Nici unul)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "Închideți fila" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Inchide toate filele?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Chiar vrei să închizi toate filele?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "File necitite" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Toate filele" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "_Închideți fila" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Fișier(e) selectat(e)." #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Cauta fisiere" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "_Adauga prieten" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Afișați adresa IP" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Camere private" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Eliminați din camera privată %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Adăugați în camera privată %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Eliminați ca operator al %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Adăugați ca operator pentru %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- mesaje vechi mai sus ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Executabil" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Imagine" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arhiva" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Diverse" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Document/Text" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Eroare la încărcarea pictogramei personalizate %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Ascunde Nicotina+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Arată Nicotina+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Coloana #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Negrupat" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Grupați după folder" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Grupați după utilizator" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Ești sigur că vrei să ieși?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Utilizatorul %s deja există și parola introdusă este greșită. Vă rog să " "alegeți alt nume de utilizator dacă aceasta este prima oară când vă " "conectați." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Parola" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Pentru a crea un nou cont Soulseek, completați numele de utilizator și " "parola dorite. Dacă aveți deja un cont, completați datele de conectare " "existente." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nu s-a putut scrie în fișierul jurnal „%(filename)s”: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Nu se poate accesa fișierul jurnal %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Emiratele Arabe Unite" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua & Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albania" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarctica" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Samoa Americană" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Insulele Aland" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Azerbaidjan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnia și Herțegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgia" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgaria" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Sfântul Bartolomeu" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermude" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius și Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brazilia" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Insula Bouvet" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Bielorusia" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Canada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Insulele Cocos (Keeling)." #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Republica Democrată Congo" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Republica Centrafricană" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Congo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Elveţia" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "coasta de Fildes" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Insulele Cook" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Camerun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "China" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Columbia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Cuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Insula Craciunului" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Cipru" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Cehia" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Germania" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Danemarca" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominica" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Republica Dominicană" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Algeria" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ecuador" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egipt" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "sahara de Vest" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritreea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Spania" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopia" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Finlanda" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Insulele Falkland (Malvinas)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Micronezia" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Insulele Feroe" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Franţa" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Marea Britanie" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Georgia" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Guyana Franceză" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Groenlanda" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guineea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadelupa" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Guineea Ecuatorială" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Grecia" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Insulele Georgia de Sud și Sandwich de Sud" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guineea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Insulele Heard și McDonald" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Croaţia" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Ungaria" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonezia" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "insula Barbatului" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Teritoriul Britanic al Oceanului Indian" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Iranul" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Islanda" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Iordania" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japonia" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kârgâzstan" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Cambodgia" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Comore" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Saint Kitts & Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Coreea de Nord" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Coreea de Sud" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuweit" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Insulele Cayman" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazahstan" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Liban" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Sfânta Lucia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Lituania" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Letonia" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libia" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Maroc" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Muntenegru" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Sfântul Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagascar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Insulele Marshall" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Macedonia de Nord" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Insulele Mariane de Nord" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinica" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritania" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldive" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexic" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malaezia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mozambic" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Noua Caledonie" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Insula Norfolk" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Olanda" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norvegia" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Noua Zeelandă" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Polinezia Franceză" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Noua Guinee" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filipine" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Polonia" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre & Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Statul Palestinei" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugalia" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Reuniune" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "România" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbia" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Rusia" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Arabia Saudită" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Insulele Solomon" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychelles" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Suedia" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Sfânta Elena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovenia" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Insulele Svalbard și Jan Mayen" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Republica Slovaca" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Sudul Sudanului" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome & Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Siria" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Insulele Turks și Caicos" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Ciad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "teritoriile din sudul Frantei" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "A merge" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Tailanda" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadjikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Timorul de Est" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisia" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turcia" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad și Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ucraina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "Insulele minore periferice ale SUA" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Statele Unite" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Sfântul Scaun (statul orașului Vatican)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent și Grenadinele" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Insulele Virgine Britanice" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Insulele Virgine americane" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis & Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Africa de Sud" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Transpunerea textului în vorbire pentru mesaj a eșuat: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: vă rugăm să furnizați atât numele de utilizator Last.fm, cât și " "cheia API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Acum se redă eroare" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nu s-a putut conecta la Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Nu s-a putut obține melodia recentă de la Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nu am putut găsi un player MPRIS potrivit" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "S-au găsit mai multe playere MPRIS: %(players)s. Folosind: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Player MPRIS detectat automat: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Ceva a mers prost la interogarea %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Vă rugăm să furnizați numele de utilizator ListenBrainz" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nu s-a putut conecta la ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Se pare că nu asculți nimic în acest moment" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Nu s-a putut obține melodia curentă de la ListenBrainz: " "%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Filtre de rețea" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Listează comenzile disponibile" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Nu s-a putut conecta la server. Motiv: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Deconectat de la server %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Dezactivați starea" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Gestionați pluginurile" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Ștergeți fereastra de chat" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Spune ceva la persoana a treia" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Anunțați melodia care se redă în prezent" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Alăturați-vă camerei de chat" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Părăsiți camera de chat" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Spuneți mesajul în camera de chat specificată" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Deschide chatul privat" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Închide chatul privat" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Solicitați versiunea client a utilizatorului" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Trimiteți mesaj privat utilizatorului" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Adăugați un utilizator la lista de prieteni" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Eliminați prietenul din lista de prieteni" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Răsfoiți fișierele utilizatorului" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Afișați informațiile despre profilul utilizatorului" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Afișați adresa IP sau numele de utilizator" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blocați conexiunile de la utilizator sau adresa IP" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Eliminați utilizatorul sau adresa IP din listele de interdicție" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Opriți mesajele de la utilizator sau adresa IP" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Eliminați utilizatorul sau adresa IP din listele de ignorare" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Adăugați Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Eliminați Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Listează cotele" #: pynicotine/plugins/core_commands/__init__.py:239 #, fuzzy msgid "Rescan shares" msgstr "Rescanați acțiunile" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Începeți căutarea globală de fișiere" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Căutați fișiere în sălile unite" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Căutați fișierele tuturor prietenilor" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Căutați fișierele partajate ale unui utilizator" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Listarea comenzilor disponibile %(num)i:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" "Listarea comenzilor disponibile %(num)i care se potrivesc cu „%(query)s”:" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Tastați %(command)s pentru a lista comenzi similare" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Tastați %(command)s pentru a lista comenzile disponibile" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "Nu a fost alăturat în cameră %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Închide chatul privat" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Banat %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Neinterzis %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorat %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Neignorat %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Se încarcă sistemul de pluginuri" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Nu se poate încărca pluginul %(name)s. Numele folderului pluginului conține " "caractere nevalide: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Comandă %(interface)s în conflict în pluginul %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Plugin încărcat %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nu se poate încărca pluginul %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Plugin descărcat %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Nu se poate descărca pluginul %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Pluginul %(module)s a eșuat cu eroarea %(errortype)s: %(error)s.\n" "Urmărire: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "fără descriere" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Argumentul %s lipsește" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Argument nevalid, opțiuni posibile: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Utilizare: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Comanda necunoscută: %(command)s. Tastați %(help_command)s pentru a lista " "comenzile disponibile." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Nu s-au găsit dispozitive UPnP" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: Nu s-a redirecționat portul extern %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: Portul extern %(external_port)s a fost redirecționat cu succes " "către adresa IP locală %(ip_address)s portul %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Mesaj privat de la utilizatorul „%(user)s”: %(message)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Se caută articolul din lista de dorințe „%s”" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Perioada de așteptare a listei de dorințe setată la %s secunde" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Utilizatorul %(user)s caută „%(query)s”, a găsit rezultate %(num)i." #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Refacerea acțiunilor…" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Se rescanează acțiunile…" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Rescanare finalizată: dosare %(num)s găsite" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "A apărut o eroare gravă la rescanarea distribuirilor. Dacă această problemă " "persistă, ștergeți %(dir)s/*.db și încercați din nou. Dacă acest lucru nu " "ajută, vă rugăm să trimiteți un raport de eroare cu această urmărire a " "stivei inclusă: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Eroare la scanarea fișierului %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Eroare la scanarea folderului %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Eroare la scanarea metadatelor pentru fișierul %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Rescanarea a fost anulată din cauza partajărilor indisponibile: %s" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Utilizatorul %(user)s răsfoiește lista dvs. de fișiere partajate" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Nu s-a putut prelua folderul partajat %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Imposibil de citit baza de date cu acțiuni. Vă rugăm să scanați din nou " "acțiunile dvs. Eroare: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Interfața de rețea specificată „%s” nu este disponibilă" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Nu se poate asculta pe portul %(port)s. Asigurați-vă că nicio altă aplicație " "nu îl folosește sau alegeți un alt port. Eroare: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Ascultare pe portul: %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nu se poate conecta la server %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Conectare automată la server la pornire" #: pynicotine/slskproto.py:1202 #, fuzzy, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Conectarea la %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Conectat la server %(host)s:%(port)s, conectare…" #: pynicotine/slskproto.py:1520 #, fuzzy, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Deconectat de la server %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Cineva sa conectat la contul tău Soulseek în altă parte" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Încărcare finalizată: utilizator %(user)s, adresa IP %(ip)s, fișier %(file)s" #: pynicotine/uploads.py:409 #, fuzzy, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Încărcarea a fost anulată, fișierul utilizatorului %(user)s %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "Eroare de încărcare I/O: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Încărcarea a început: utilizator %(user)s, adresa IP %(ip)s, fișier %(file)s" #: pynicotine/userbrowse.py:167 #, fuzzy, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Nu se poate crea directorul „%(folder)s”, eroare raportată: %(error)s" #: pynicotine/userbrowse.py:218 #, fuzzy, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Încărcarea partajărilor de pe disc a eșuat: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Lista salvată de fișiere partajate pentru utilizatorul „%(user)s” la %(dir)s" #: pynicotine/userbrowse.py:268 #, fuzzy, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Nu se pot salva distribuiri, „%(user)s”, eroare raportată: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Imaginea salvată pe %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Nu se poate salva fotografia pe %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Utilizatorul %(user)s vă vizualizează profilul" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nu s-a putut conecta la server. Motiv: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Nu s-a putut conecta" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Nu s-a putut recupera adresa IP a utilizatorului %s, deoarece acest " "utilizator este offline" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "Adresa IP a utilizatorului %(user)s: %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Anunț Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i utilizatori privilegiați" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Nu aveți privilegii Soulseek. În timp ce privilegiile sunt active, " "descărcările dvs. vor fi puse în coadă înaintea celor ale utilizatorilor " "fără privilegii." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i zile, %(hours)i ore, %(minutes)i minute, %(seconds)i secunde de " "privilegii Soulseek rămase" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Parola dvs. a fost schimbată" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Parolă schimbată" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Nu se poate deschide calea fișierului %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Nu se poate deschide adresa URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "A apărut o eroare la citirea fișierului %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Se încearcă încărcarea copiei de rezervă a fișierului %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Nu se poate face backup pentru fișierul %(path)s: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Nu se poate salva fișierul %(path)s: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Nu se poate restabili fișierul anterior %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Adauga prieten…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Termen de căutare…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Termen de căutare…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Trimite mesaj…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Comutați text-to-speech" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Ajutor pentru comanda camerei de chat" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Buturuga" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Peretele camerei" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "R_oom Wall" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Creat de" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Tradus de" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licență" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "_Anterior" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Bun venit la Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Înființat…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Dacă numele de utilizator dorit este deja luat, vi se va solicita să îl " "schimbați." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Dacă portul dvs. de ascultare este închis, vă veți putea conecta numai la " "utilizatori ale căror porturi de ascultare sunt deschise." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Dacă este necesar, alegeți un alt port de ascultare de mai jos. Acest lucru " "se poate face și mai târziu în preferințe." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Descărcați fișiere în folder" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Partajați foldere" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Utilizatorii Soulseek vor putea descărca din acțiunile dvs. Contribuiți la " "rețeaua Soulseek partajând propria colecție și redistribuind ceea ce ați " "descărcat de la alți utilizatori." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Ești gata să folosești Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Donarea către Soulseek vă oferă privilegii pentru o anumită perioadă de " "timp. Dacă aveți privilegii, descărcările dvs. vor fi puse în coadă înaintea " "utilizatorilor fără privilegii." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Fișierul anterior" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Fișierul următor" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Nume" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Ultima viteză" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "_Export…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Comenzi rapide de la tastatură" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "General" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 #, fuzzy msgid "Connect" msgstr "Conectați" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 #, fuzzy msgid "Disconnect" msgstr "Deconectat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Rescanați acțiunile" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Afișați panoul de jurnal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Configurați chat-uri" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 #, fuzzy msgid "Quit" msgstr "Părăsi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Meniuri" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Deschideți meniul principal" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Deschideți meniul contextual" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Filele" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Schimbați fila principală" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Accesați fila secundară anterioară" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Accesați următoarea filă secundară" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Închideți fila secundară" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Închideți fila secundară" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Liste" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Copiați celula selectată" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Eliminați rândul selectat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Editare" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "A tăia" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Pastă" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Introduceți emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Selectează tot" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 #, fuzzy msgid "Find" msgstr "Găsi" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Găsiți meciul următor" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Găsiți potrivirea anterioară" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Transferuri de fișiere" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Reluați/Reîncercați transferul" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Întrerupeți / Anulați transferul" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Descărcați/Încărcați în" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "Salvați lista pe disc" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Reîmprospăta" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Extinde / Restrânge toate" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Înapoi la dosarul părinte" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Căutare fișier" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "Filtre de rezultate" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Sesiunea curenta" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Descărcări finalizate" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Dimensiune descărcată" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Încărcări finalizate" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Dimensiune încărcată" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Total" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Resetați…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Articolele din lista de dorințe sunt căutate automat la intervale regulate, " "pentru a descoperi fișiere neobișnuite." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Adăugați o dorință…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Curata tot…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Ștergeți toate descărcările finalizate/filtrate" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Clar Terminat" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Ștergeți Descărcări specifice" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Curata tot…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Interese personale" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Adăugați ceva care vă place…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Antipatiile personale" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Adăugați ceva ce nu vă place…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Reîmprospătați recomandările" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Meniu principal" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Cameră…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Nume de utilizator…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Termen de căutare…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Modele de căutare: cu un cuvânt = termen, fără un cuvânt = -term, cuvânt " "parțial = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Domeniul de căutare" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Lista de dorințe" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Configurați căutările" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Introduceți un termen de căutare pentru a căuta fișiere partajate de alți " "utilizatori din rețeaua Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Modul de grupare a fișierelor" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Configurați Descărcări" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Fișierele pe care le descărcați de la alți utilizatori sunt puse în coadă " "aici și pot fi întrerupte și reluate la cerere" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Configurați încărcările" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Încercările utilizatorilor de a descărca fișierele dvs. partajate sunt puse " "în coadă și gestionate aici" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "_Deschide lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Deschide o listă locală de fișiere partajate care au fost salvate anterior " "pe disc" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "Configurați partajări" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Introduceți numele unui utilizator, ale cărui fișiere partajate doriți să le " "căutați. Puteți, de asemenea, să salvați lista pe disc și să o inspectați " "mai târziu." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "_Profil personal" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Configurați chat-uri" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Introduceți numele unui utilizator pentru a vedea descrierea utilizatorului, " "informațiile și fotografia personală" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Chat _Istoric" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Configurați chat-uri" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Introduceți numele unui utilizator pentru a începe o conversație text cu " "acesta în privat" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "_Mesajul tuturor" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Utilizatori ignorați" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Adăugați utilizatori ca prieteni pentru a partaja anumite dosare cu ei și " "pentru a primi notificări atunci când sunt online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Alăturați-vă sau creați o cameră…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Alăturați-vă unei camere de chat existente sau creați o cameră nouă pentru a " "discuta cu alți utilizatori din rețeaua Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Vizualizați profilul utilizatorului" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Termen de căutare…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Conexiuni" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Descărcare (Viteză/Utilizatori activi)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Încărcare (Viteză/Utilizatori activi)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Termen de căutare…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Descărcați Limite de viteză" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Viteză de descărcare nelimitată" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Utilizați limita de viteză de descărcare (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Utilizați o limită alternativă de viteză de descărcare (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Termen de căutare…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Reîmprospătați camerele" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Afișați fluxul de mesaje publice din camera de chat" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "_Acceptați invitațiile în camere private" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Caracteristica peretelui camerei permite utilizatorilor dintr-o cameră să " "specifice un mesaj unic pentru a-l afișa altora. Mesajele recente sunt " "afișate în partea de sus." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Setați mesajul de pe perete…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Filtre de rezultate ale căutării" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Filtrele rezultatelor căutării sunt folosite pentru a rafina rezultatele " "căutării care sunt afișate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Fiecare listă de rezultate ale căutării are propriul filtru care poate fi " "dezvăluit prin comutarea butonului Filtre de rezultate. Un filtru este " "format din mai multe câmpuri, toate fiind aplicate atunci când apăsați Enter " "în oricare dintre câmpurile sale. Filtrarea se aplică imediat rezultatelor " "deja primite, precum și celor care urmează să ajungă." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "După cum sugerează și numele, un filtru pentru rezultatele căutării nu poate " "extinde căutarea inițială, ci doar o poate restrânge. Pentru a extinde sau a " "modifica termenii de căutare, efectuați o nouă căutare." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Utilizarea filtrului de rezultate" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Includeți text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Fișierele, folderele și numele de utilizator care conțin acest text vor fi " "afișate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Lipsa majusculelor este insensibilă, dar ordinea cuvintelor este importantă: " "„Instrumental Remix” nu va afișa niciun „Remix Instrumental”" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Utilizați | (sau conducte) pentru a separa mai multe fraze exacte. Exemplu:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Excludeți text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Ca mai sus, dar fișierele, folderele și numele de utilizator sunt filtrate " "dacă textul se potrivește." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtrează fișierele în funcție de extensia lor." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Pot fi specificate mai multe extensii de fișiere, care la rândul lor vor " "dezvălui mai multe din lista de rezultate. Exemplu:\n" " flac wav maimuţă" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "De asemenea, este posibil să inversați filtrul, specificând extensiile de " "fișiere pe care nu le doriți în rezultate cu un semn de exclamare! Exemplu:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Mărime fișier" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtrează fișierele în funcție de dimensiunea acestora." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "În mod implicit, unitatea utilizată este octeții (B) și fișierele mai mari " "sau egale cu (>=), valoarea va fi potrivită." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Adăugați b, k, m sau g (alternativ kib, mib sau gib) pentru a specifica " "unități de octet, kibibyte, mebibyte sau gibibyte:\n" " 20 m pentru a afișa fișiere mai mari de 20 MiB (mebibytes)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Prepend = la o valoare pentru a specifica o potrivire exactă:\n" " =1024 corespunde fișierelor care au exact 1 KiB (kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Predată! la o valoare pentru a exclude fișierele de o anumită dimensiune:\n" " !30,5 m pentru a ascunde fișierele care au 30,5 MiB (mebiocteți)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Adăugați < sau > pentru a găsi fișiere mai mici/mai mari decât valoarea " "dată. Folosiți un spațiu între fiecare condiție pentru a include un " "interval:\n" " >10,5 m <1 g pentru a afișa fișiere mai mari de 10,5 MiB, dar mai mici " "de 1 GiB." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Variantele mai cunoscute kb, mb și gb pot fi utilizate și pentru unități " "kilobyte, megabyte și gigabyte." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtrează fișierele în funcție de rata de biți." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Valorile trebuie introduse numai ca cifre numerice. Unitatea este " "întotdeauna Kb/s (kilobiți pe secundă)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Ca și dimensiunea fișierului (mai sus), pot fi utilizați operatorii =, !, <, " ">, <= sau >= și pot fi specificate mai multe condiții, de exemplu pentru a " "afișa fișiere cu un bitrate de cel puțin 256 Kb/s cu un maxim rata de biți " "de 1411 Kb/s:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtrează fișierele în funcție de durata lor." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "În mod implicit, fișierele mai lungi sau egale cu (>=) durata introdusă vor " "fi potrivite, cu excepția cazului în care se folosește un operator (=, !, " "<=, < sau >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Introduceți o valoare brută în secunde sau utilizați formatele de timp MM:SS " "și HH:MM:SS:\n" " =53 afișează fișierele care au aproximativ 53 de secunde.\n" " >5:30 pentru a afișa fișiere cu o durată mai mare de 5 minute și " "jumătate.\n" " <5:30:00 afișează fișiere de mai puțin de 5 ore și jumătate." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Pot fi specificate mai multe condiții:\n" " >6:00 <12:00 pentru a afișa fișiere cu durata cuprinsă între 6 și 12 " "minute.\n" " !9:54 !8:43 !7:32 pentru a ascunde unele fișiere specifice din " "rezultate.\n" " =5:34 =4:23 =3:05 pentru a include fișiere cu durate specifice." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Filtrează fișierele în funcție de locația geografică a utilizatorilor, " "conform codurilor de țară definite de ISO 3166-2:\n" " SUA vor afișa numai rezultate de la utilizatorii cu adrese IP din " "Statele Unite.\n" " !GB va ascunde rezultatele care vin de la utilizatorii din Marea " "Britanie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Mai multe țări pot fi specificate cu virgule sau spații." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Slot gratuit" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Afișați numai acele rezultate de la utilizatorii care au cel puțin un spațiu " "de încărcare liber, adică fișiere care sunt disponibile imediat." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Limite de viteză de încărcare" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Viteză de încărcare nelimitată" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Utilizați limita de viteză de încărcare (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Utilizați o limită alternativă de viteză de încărcare (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Ajutor pentru comanda de chat privat" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Includeți text…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrați rezultatele ale căror căi ale fișierelor conțin textul specificat. " "Pot fi specificate mai multe expresii și cuvinte, de ex. frază exactă|muzică|" "termen|fraza exactă doi" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Excludeți text…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrați rezultatele ale căror căi ale fișierelor conțin textul specificat. " "Pot fi specificate mai multe expresii și cuvinte, de ex. frază exactă|muzică|" "termen|fraza exactă doi" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Tip fișier…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Tip de fișier, de ex. flac wav sau !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Mărime fișier…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Dimensiunea fișierului, de ex. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Rata de biți…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Rata de biți, de ex. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Durată…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Durata, de ex. >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Codul tarii…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Codul țării, de ex. US ES sau !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Interziceți utilizatorilor să acceseze fișierele dvs. partajate, pe baza " "numelui de utilizator, a adresei IP sau a țării." #: pynicotine/gtkgui/ui/settings/ban.ui:43 #, fuzzy msgid "Country codes to block (comma separated):" msgstr "Codurile de țară de blocat (separate prin virgulă):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Codurile trebuie să fie în format ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Utilizați mesajul personalizat de blocare geografică:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 #, fuzzy msgid "Use custom ban message:" msgstr "Utilizați mesajul de interdicție personalizat:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adrese IP" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Activați corectorul ortografic (necesită o repornire)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Restabiliți conversațiile private deschise anterior la pornire" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Activați răspunsurile la mesaje private asemănătoare CTCP (versiunea client)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Numărul de mesaje recente de chat privat de afișat:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Numărul de mesaje recente din camera de chat de afișat:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Finalizare chat" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Activați completarea tastei tab" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Activați lista derulantă de finalizare" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Caracterele minime necesare pentru afișarea meniului drop-down:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Finalizări permise prin chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Nume de prieteni" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Nume de utilizator pentru camerele de chat" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Numele camerelor" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Comenzi" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Marcaje temporale" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Format de chat privat:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 #, fuzzy msgid "Default" msgstr "Mod implicit" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Format camera de chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Text-to-Speech" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Activați text-to-speech" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Comanda text-to-speech:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Mesaj de chat privat:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Mesaj din camera de chat:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Cenzura" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Activați cenzurarea modelelor de text" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Înlocuire automată" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Activați înlocuirea automată a cuvintelor" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Șterge automat descărcările finalizate/filtrate din lista de transfer" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Stocați descărcările finalizate în subdosarele nume de utilizator" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Faceți dublu clic pe acțiune pentru descărcări:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Permiteți utilizatorilor să vă trimită orice fișiere:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Foldere" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Descărcări finalizate:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Descărcări incomplete:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Fișiere primite:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 #, fuzzy msgid "Events" msgstr "Evenimente" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "" "Rulați comanda după ce descărcarea fișierului se termină ($ pentru calea " "fișierului):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Rulați comanda după ce descărcarea folderului se termină ($ pentru calea " "folderului):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Descărcați filtre" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Activați filtrele de descărcare" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 #, fuzzy msgid "Add" msgstr "Adăuga" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 #, fuzzy msgid "Load Defaults" msgstr "Încarcă setările implicite" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 #, fuzzy msgid "Verify Filters" msgstr "Verificați filtrele" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Neverificat" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorați mesajele de chat și rezultatele căutării de la utilizatori, pe baza " "numelui de utilizator sau a adresei IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 #, fuzzy msgid "Log chatrooms by default" msgstr "Înregistrați camerele de chat în mod implicit" #: pynicotine/gtkgui/ui/settings/log.ui:106 #, fuzzy msgid "Log private chat by default" msgstr "Înregistrează chatul privat în mod implicit" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Transferurile de jurnal în fișier" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Înregistrați mesajele de depanare în fișier" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Format de marcaj de timp al jurnalului:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Locațiile folderelor" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Dosarul jurnalelor din sala de chat:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Dosarul jurnalelor de chat privat:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Dosarul de jurnal de transfer:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Dosarul jurnalelor de depanare:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Conectați-vă la un cont Soulseek existent sau creați unul nou. Numele de " "utilizator sunt sensibile la majuscule și sunt unice." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Adresă IP publică:" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Limba (necesită o repornire):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Status Away" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minute de inactivitate înainte de a pleca (0 pentru a dezactiva):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Mesaj de răspuns automat când sunteți plecat:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Port de ascultare redirecționat automat (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Conectare automată la server la pornire" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Serverul Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Leagă conexiunile la o interfață de rețea specifică, utilă de ex. asigurându-" "vă că un VPN este utilizat în orice moment. Lăsați gol pentru a utiliza " "orice interfață disponibilă. Schimbați această valoare doar dacă știți ce " "faceți." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Limba (necesită o repornire):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Now Playing vă permite să afișați ce redă playerul dvs. media utilizând " "comanda /now din chat." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 #, fuzzy msgid "Other" msgstr "Alte" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Format de redare acum" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Acum se redă formatul mesajului:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Configurare de testare" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Activați pluginurile" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "Adăugați pluginuri" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "_Adăugați pluginuri" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Setări" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "_Setări" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Versiune:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Creat de:" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Activați istoricul căutărilor" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Alți clienți Soulseek pot avea opțiunea de a partaja fișiere în mod privat. " "Dacă da, aceste fișiere vor fi prefixate cu „[PRIVATE]” și nu pot fi " "descărcate până când persoana care a încărcat nu dă permisiunea explicită. " "Întrebați-i cu amabilitate." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Afișați fișierele partajate în mod privat în rezultatele căutării" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Limitați numărul de rezultate pe căutare:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Activați filtrele pentru rezultatele căutării în mod prestabilit" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Include:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Exclude:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Tip fișier:" #: pynicotine/gtkgui/ui/settings/search.ui:253 #, fuzzy msgid "Size:" msgstr "Mărimea:" #: pynicotine/gtkgui/ui/settings/search.ui:280 #, fuzzy msgid "Bitrate:" msgstr "Rata de biți:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Durată:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Codul tarii:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "" "Afișați numai rezultatele de la utilizatorii cu un spațiu de încărcare " "disponibil." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Ajutor pentru filtrul de rezultate" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Căutări în rețea" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Răspunde la solicitările de căutare de la alți utilizatori" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Căutările mai scurte decât acest număr de caractere vor fi ignorate:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "" "Numărul maxim de rezultate ale căutării de trimis pentru fiecare cerere de " "căutare:" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Sterge istoricul cautarii" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Ștergeți istoricul filtrelor" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Rescanează automat conținutul folderelor partajate la pornire. Dacă este " "dezactivată, partajările dvs. sunt actualizate numai atunci când inițiați " "manual o rescanare." #: pynicotine/gtkgui/ui/settings/shares.ui:39 #, fuzzy msgid "Rescan shares on startup" msgstr "Rescanați acțiunile la pornire" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Nume de prieteni" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Listează cotele" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Ștergeți automat încărcările terminate/anulate din lista de transferuri" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Faceți dublu clic pe acțiune pentru încărcări:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Limitați viteza de încărcare:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Per transfer" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Transferuri totale" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Încărcați sloturi" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Round Robin: Fișierele vor fi încărcate în mod ciclic pentru utilizatorii " "care așteaptă la coadă.\n" "First In, First Out: Fișierele vor fi încărcate în ordinea în care au fost " "puse în coadă." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Tip de coadă de încărcare:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Încărcări în coadă dacă viteza totală de transfer atinge (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Limitați numărul de spații de încărcare la:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Prioritizează toți prietenii" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Limite de coadă" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Limitați numărul de rezultate pe căutare:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Limitele nu se aplică prietenilor" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Instanțele de $ sunt înlocuite cu adresa URL. Aplicațiile de sistem " "implicite sunt utilizate în cazurile în care nu a fost configurat un " "protocol." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Comanda managerului de fișiere:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Resetează imaginea" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Despre sine" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Imagine:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 #, fuzzy msgid "Clear" msgstr "clar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Preferați modul întunecat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Utilizați _Header Bar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Afișează pictograma tavă" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimizați în tavă la pornire" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Limba (necesită o repornire):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Când închideți Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Notificări" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Activați sunetul pentru notificări" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "" "Afișați notificarea pentru chaturile private și mențiunile în titlul " "ferestrei" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Afișați notificări pentru:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Descărcări de fișiere finalizate" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Descărcări de foldere finalizate" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Mesaje private" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Mesaje din camera de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Mențiuni din camera de chat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "S-au găsit rezultatele listei de dorințe" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Restaurați fila principală activă anterior la pornire" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Butoane de închidere pe filele secundare" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Culoare obișnuită a etichetei filei:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "S-a schimbat culoarea etichetei filei:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Culoarea etichetei filei evidențiate:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "File principale vizibile:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Pozițiile barei de file:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Filele principale" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "Afișați căile inverse ale fișierelor (necesită o repornire)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Afișați dimensiunile exacte ale fișierelor (necesită o repornire)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Culoarea textului listei:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Culoarea textului rezultatului căutării în coadă:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Activați numele de utilizator colorate" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Apariția numelui de utilizator la chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Culoarea textului de la distanță:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Culoarea textului local:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Culoarea textului de ieșire a comenzii:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "culoarea textului acțiunii /me:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Culoarea textului evidențiat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "Culoarea textului linkului URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Status de utilizator" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Culoare online:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Culoare deplasare:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Culoare offline:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Intrări de text" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Culoare de fundal pentru introducerea textului:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Culoarea textului pentru introducerea textului:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Fonturi" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Font global:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Fontul listei:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Font vizualizare text:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Font pentru chat:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Font transfer:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Font de căutare:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Răsfoiți fontul:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Pictograme" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Dosarul cu tema pictogramelor:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Anulați utilizatorul(i)" #: pynicotine/gtkgui/ui/uploads.ui:116 #, fuzzy msgid "Ban User(s)" msgstr "Interziceți utilizatorii" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Ștergeți toate încărcările finalizate/anulate" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Trimite mesajul tuturor" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Ștergeți încărcări specifice" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "Salvați lista de acțiuni pe disc" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Actualizează fișierele" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Editează profilul" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Fișiere partajate" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Foldere partajate" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Încărcări în coadă" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Sloturi de încărcare gratuite" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Viteza de upload" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Editați interesele" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Privilegii cadou…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "_Actualizați profilul" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Comenzi Nicotine+" #, fuzzy #~ msgid "_Clear" #~ msgstr "_Clar" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Nu se poate salva %(filename)s: %(error)s" #, fuzzy #~ msgid "Nicotine+" #~ msgstr "Echipa Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Prieteni de încredere" #, fuzzy #~ msgid "Quit program" #~ msgstr "Ieșiți din program" #, fuzzy #~ msgid "Username:" #~ msgstr "Nume de utilizator:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Re_comandări pentru articol" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Eliminați elementul" #, fuzzy #~ msgid "_Remove" #~ msgstr "_Elimina" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Trimite mesaj" #, fuzzy #~ msgid "Send Message" #~ msgstr "Trimite mesaj" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Vizualizați profilul utilizatorului" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Începeți mesageria" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "" #~ "Introduceți numele utilizatorului căruia doriți să-i trimiteți un mesaj:" #, fuzzy #~ msgid "_Message" #~ msgstr "_Mesajul tuturor" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "" #~ "Introduceți numele utilizatorului al cărui profil doriți să îl vedeți:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Vizualizați profilul utilizatorului" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Introduceți numele utilizatorului ale cărui distribuiri doriți să le " #~ "vedeți:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Cauta fisiere" #, fuzzy #~ msgid "Password" #~ msgstr "Parola" #, fuzzy #~ msgid "Download File" #~ msgstr "Descărcare fișier" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Actualizează utilizatori similari" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "" #~ "Introduceți numele de utilizator al persoanei ale cărei fișiere doriți să " #~ "le vedeți" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "" #~ "Introduceți numele de utilizator al persoanei ale cărei informații doriți " #~ "să le vedeți" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Introduceți numele de utilizator al persoanei căreia doriți să îi " #~ "trimiteți un mesaj" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Introduceți numele de utilizator al persoanei pe care doriți să o " #~ "adăugați la lista de prieteni" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Introduceți numele unei camere la care doriți să vă alăturați. Dacă " #~ "camera nu există, va fi creată." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Afișați panoul Istoric jurnal" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Salvează poza" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "S-a filtrat rezultatul de căutare incorect %(filepath)s de la " #~ "utilizatorul %(user)s pentru interogarea de căutare „%(query)s”" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Anumiți clienți nu trimit rezultate de căutare dacă sunt incluse " #~ "caractere speciale." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Eliminați caracterele speciale din termenii de căutare" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Eroare la executarea „%s”" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problemă la executarea în folder: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Extensie interzisă" #, fuzzy #~ msgid "Too many files" #~ msgstr "Prea multe fișiere" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Prea mulți megaocteți" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Serverul nu permite efectuarea de căutări în lista de dorințe în acest " #~ "moment" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Vitezele de transfer al fișierelor depind de utilizatorii de la care " #~ "descărcați. Unii utilizatori vor fi mai rapizi, în timp ce alții vor fi " #~ "lenți." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Descărcări începute" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Încărcări începute" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Înlocuiți literele cenzurate cu:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Modele cenzurate" #, fuzzy #~ msgid "Replacements" #~ msgstr "Înlocuitori" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Dacă un utilizator din rețeaua Soulseek caută un fișier care există în " #~ "partajările dvs., rezultatele căutării vor fi trimise utilizatorului." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Trimite la Player" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Trimite către _Player" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Deschideți în Manager de fișiere" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Comanda media player:" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Nu se poate salva descărcarea în subdosarul nume de utilizator, revenind " #~ "la dosarul implicit de descărcare. Eroare: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Doar prieten" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Distribuie numai prietenilor" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Părăsi…" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Configurați partajări" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Eroare de fișier la distanță" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Nu puteți găsi %(option1)s sau %(option2)s, vă rugăm să instalați oricare " #~ "dintre ele." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s foldere găsite înainte de rescanare" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Nu s-au procesat următoarele baze de date: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Nu s-a trimis numărul de fișiere partajate către server: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Ieșire / Executare în fundal" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Port de ascultare:" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Interfata retea:" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "" #~ "Limitați distribuirile numai pentru prieteni la prietenii de încredere" #, fuzzy #~ msgid "Shared" #~ msgstr "Impartit" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Căutați fișiere și foldere" #~ msgid "Out of Date" #~ msgstr "Învechit" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Versiunea %(version)s este valabilă, publicată pe %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Folosiți versiunea de dezvoltare a %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Folosiți cea mai recentă versiunea a %s" #~ msgid "Latest Version Unknown" #~ msgstr "Cea mai recentă versiunea este necunoscută" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Prefer _Modul întunecat" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Afișați panoul Istoric jurnal" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Lista de prieteni într-o filă separată" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Lista de prieteni este întotdeauna vizibilă" #, fuzzy #~ msgid "_View" #~ msgstr "_Vedere" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Deschideți dosarul Jurnal" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Răsfoiți folderele" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibytes (2^10 bytes) pe secundă." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Trimis utilizatorilor ca motiv pentru blocarea geografică." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Trimis utilizatorilor ca motiv pentru care a fost interzis." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Odată ce interacționați cu aplicația absentă, starea va fi setată la " #~ "online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Fiecare utilizator poate pune în coadă maxim:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiB" #, fuzzy #~ msgid "files" #~ msgstr "fișiere" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Comportament în coadă" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Dacă sunt dezactivate, sloturile vor fi determinate automat de limitările " #~ "de lățime de bandă disponibile." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Rețineți că tema sistemului de operare poate avea prioritate." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "În mod implicit, fila din stânga este activată la pornire" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Ieșire %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "terminat" #~ msgid "done" #~ msgstr "gata" #~ msgid "Remember choice" #~ msgstr "Reține alegerea" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Interfață de rețea necunoscută" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Port de ascultare indisponibil" #, fuzzy, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Serverul pare să fie oprit sau nu răspunde, reîncercând în %i secunde" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ folosește rețele peer-to-peer pentru a se conecta la alți " #~ "utilizatori. Pentru a permite utilizatorilor să se conecteze la dvs. fără " #~ "probleme, un port de ascultare deschis este crucial." #~ msgid "--- disconnected ---" #~ msgstr "--- deconectat ---" #~ msgid "--- reconnected ---" #~ msgstr "--- reconectat ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Pământ" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Republica Cehă" #, fuzzy #~ msgid "Turkey" #~ msgstr "Curcan" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Camere unite " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Înscrieți-vă automat la cameră" nicotine-plus-3.3.4/po/ru.po000066400000000000000000007604061461625273200157430ustar00rootroot00000000000000# Copyright (C) 2022-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Клиент Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Графический клиент для одноранговой сети Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek;Nicotine;обмен;чат;обмен сообщениями;P2P;одноранговая сеть;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Просмотреть сеть Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ — это графический клиент сети Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ стремится быть удобной, свободной альтернативой с открытым " "исходным кодом официальному клиенту Soulseek, предоставляя дополнительную " "функциональность и сохраняя при этом совместимость с протоколом Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Поиск файлов" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Загрузки" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Просмотр общих каталогов" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Приватный чат" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Команда Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Сайт: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "выдать подсказку на стандартный вывод и успешно завершиться" #: pynicotine/__init__.py:59 msgid "file" msgstr "файл" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "использовать пользовательский файл конфигурации" #: pynicotine/__init__.py:63 msgid "dir" msgstr "каталог" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "альтернативный каталог для персональных данных и плагинов" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "запускать Nicotine+ свёрнутым" #: pynicotine/__init__.py:71 msgid "ip" msgstr "IP-адрес" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "привязать сокеты к заданному IP-адресу (полезно для VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "порт" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "слушать на этом порту" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "пересканировать общие файлы" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "запустить программу в фоновом режиме (без графического интерфейса)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "отобразить версию программы и выйти" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Вы используете неподдерживаемую версию Python (%(old_version)s).\n" "Вам следует установить Python %(min_version)s или новее." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Не удалось просканировать общие каталоги. Закройте другие экземпляры " "Nicotine+ и повторите попытку." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s отсутствует" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s в сети" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s не в сети" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Статус друга" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Вы были добавлены в чат: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Сообщение в чате от пользователя '%(user)s' в комнате '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Не удаётся создать каталог '%(path)s', ошибка: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Ошибка резервного копирования файла конфигурации: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Файл конфигурации сохранён в: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Загружаю %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Выхожу из %(program)s %(version)s %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "завершение" #: pynicotine/core.py:237 msgid "application closing" msgstr "закрытие программы" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Выход %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Перед подключением необходимо указать имя пользователя и пароль…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Ошибка: фильтры загрузки повреждены! Проверьте ваши фильтры. Причина: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Ошибка: %(num)d Фильтры загрузки повреждены! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s загружен у %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Файл загружен" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Выполнено: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Ошибка выполнения \"%(command)s\" команды: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s загружен у %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Каталог загружен" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Выполнено в каталоге: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Не удалось переместить '%(tempfile)s' в '%(file)s': %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "Ошибка загрузки" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Загрузка завершена: пользователь %(user)s, файл %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Загрузка прервана, пользователь %(user)s файл %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Ошибка ввода-вывода при загрузке: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Не удалось эксклюзивно блокировать файл - ошибка ввода-вывода: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Не удаётся сохранить файл в %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Загрузка началась: пользователь %(user)s, файл %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Не удаётся найти %s, установите его." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Графическая среда отсутствует, используется режим без графического интерфейса" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Подключиться" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Отсоединиться" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Привилегии Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Настройки" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Выйти" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "Просмотр общедоступных раздач" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "Просмотр раздач друга" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "Просмотр доверенных раздач" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Пересканировать общие каталоги" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Настроить раздачи" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Горячие клавиши" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Мастер настройки" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Статистика" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Сообщить об _ошибке" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Предложить _перевод" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_О Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Файл" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Общие каталоги" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Помощь" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "Просмотр раздач" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Невозможно показать всплывающее уведомление: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "" "У вас есть активные раздачи. Вы действительно хотите выйти из Nicotine+?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Подождать завершения раздач" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Вы действительно хотите выйти из Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Нет" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_В фоновый режим" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Выйти из Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Общие каталоги не найдены" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "Убедитесь, что внешние диски смонтированы и доступ к папкам разрешён." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Отмена" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Повторить" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_Проверить принудительно" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Неверный пароль" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Не удалось войти в систему из-за неправильной комбинации имени пользователя " "и пароля. Если вы некоторое время не входили в систему, возможно, ваше имя " "пользователя %s было удалено и занято другим пользователем. Пожалуйста, " "попробуйте войти под другим именем пользователя и паролем." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Изменить _данные для входа" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Написать скачивающим пользователям" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Отправить личное сообщение всем пользователям, которые скачивали файлы у вас:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "Отправить сообщение" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Отправить сообщение друзьям" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Отправить личное сообщение всем друзьям, которые находятся в сети:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Выберите сохранённый файл списка раздач" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Критическая ошибка" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ столкнулся с критической ошибкой, и его необходимо закрыть. " "Скопируйте следующее сообщение и добавьте его в отчет об ошибке:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Выйти из Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Скопировать и сообщить об ошибке" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Статус" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Страна" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Пользователь" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Скорость" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Файлы" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Доверенный" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Оповестить" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Приоритетный" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Был в сети" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Заметка" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Добавить _заметку…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Удалить" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Никогда" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Добавить заметку" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Добавить заметку о пользователе %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "Добавить" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Создать новую комнату?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Вы действительно хотите создать новую комнату «%s»?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Сделать комнату частной" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Иск_ать в файлах пользователя" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Найти…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Скопировать" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Скопировать всё" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Очистить историю активности" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Покинуть комнату" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Скопировать ссылку" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Посмотреть журнал комнаты" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Удалить журнал комнаты…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Очистить историю сообщений" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s присоединился" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s упомянул вас в комнате %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Вас упомянул %(user)s в комнате %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Вам пришло сообщение от %(user)s в комнате %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s покинул комнату" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s отошёл" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s вернулся" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Удалить журнал сообщений?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Вы действительно хотите навсегда удалить все сообщения из этой комнаты?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "О Nicotine+" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Веб-сайт" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Ошибка проверки последней версии: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Доступен новый выпуск: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Актуальная версия" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Проверка актуальной версии…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Мастер настройки" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Имя" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Каталог" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "Закончить" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Далее" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Добавить каталог в общий доступ" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Изменить общий каталог" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Введите новое виртуальное имя для '%(dir)s':" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "Редактировать" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Свойства файла" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Свойства файла (%(num)i из %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Свойства файла (%(num)i из %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "Применить" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Добавить…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Редактировать…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Настройки" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Добавить элемент" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Изменить элемент" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Неизвестный" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Проверить порт" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, порт %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Изменение пароля отклонено" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Введите новый пароль для своей учетной записи Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "В настоящее время вы вышли из сети Soulseek. Если вы хотите изменить пароль " "существующей учетной записи Soulseek, вам необходимо войти в эту учетную " "запись." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Введите пароль, который будет использоваться при входе:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Изменить пароль" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "Изменить" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Никому" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Всем" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Друзьям" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Доверенным друзьям" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Нет действия" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Открыть файл" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Открыть в файловом менеджере" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Поиск" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Пауза" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Продолжить" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Просмотр каталога" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Синтаксис: без учета регистра. Если этот параметр включен, можно " "использовать регулярные выражения Python, иначе только символ подстановки." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Фильтр" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Регулярное выражение" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Добавить фильтр загрузки" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Введите новый фильтр загрузки:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Включить регулярные выражения" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Изменить фильтр загрузки" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Измените следующий фильтр загрузки:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Ошибка! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Фильтры успешно применены" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Публичный" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Доступно для" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Прервать" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Повторить" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Циклический" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Первым пришёл — первым ушёл" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Имя пользователя" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP-адрес" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Игнорировать пользователя" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Введите имя пользователя, которого хотите игнорировать:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Игнорировать IP-адрес" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Введите IP-адрес, который вы хотите игнорировать:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* — это символ подстановки" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Заблокировать пользователя" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Введите имя пользователя, которого хотите заблокировать:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Заблокировать IP-адрес" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Введите IP-адрес для блокировки:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Коды формата" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Шаблон" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Замена" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Шаблон цензуры" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Введите шаблон, который вы хотите подвергнуть цензуре. Добавьте пробелы " "вокруг шаблона, если вы не хотите сопоставлять строки внутри слов (может " "произойти сбой в начале и конце строк)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Редактировать шаблон цензуры" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Добавить замену" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Введите текстовый шаблон для замены:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Редактировать замену" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Как в системе" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Показать диалог подтверждения" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Работать в фоновом режиме" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "жирный" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "курсив" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "подчёркивание" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "обычный" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Отделить вкладку \"Друзья\"" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Боковая панель на вкладке \"Комнаты чата\"" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Всегда видимая боковая панель" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "От верхнего края" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "От нижнего края" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "От левого края" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "От правого края" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "В сети" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Отсутствую" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Не в сети" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Вкладка изменена" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Выделение вкладки" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Окно" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "В сети (иконка)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Отсутствую (иконка)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Не в сети (иконка)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Сообщение (иконка)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Протокол" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Команда" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "Добавить обработчик URL" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "Введите протокол и команду для обработчика URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Редактировать команду" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "Введите новую команду для протокола \"%s\":" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Имя пользователя;ключ API" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Музыкальный плеер (например, amarok, audacious, exaile). Оставьте поле " "пустым для автовыбора:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Имя пользователя: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Команда:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Название" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Сейчас играет (обычно \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Исполнитель" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Продолжительность" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Битрейт" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Комментарий" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Альбом" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Номер трека" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Год" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Имя файла (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Программа" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Включено" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Плагин" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Плагин не выбран" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Сеть" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Поведение" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Общие файлы" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Раздачи" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Поисковые запросы" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Профиль" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Чаты" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Сейчас играет" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Журналирование" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Заблокированные пользователи" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Игнорируемые пользователи" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Плагины" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Обработчики URL" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Настройки" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Выберите имя файла конфигурации" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Статистика" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "Всего с %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Сбросить статистику?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Вы действительно хотите сбросить статистику?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Список желаемого" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Желаемое" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Поиск по метке" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Изменить список желаемого" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Введите новое значение для списка желаемого \"%s\":" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Очистить список желаемого?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Вы действительно хотите очистить свой список желаемого?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Путь" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Возобновить" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "П_ауза" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Завершено / Отфильтровано" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Завершено" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Приостановлено" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Отфильтровано" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Удалено" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "В очереди…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Всё…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Очистить очередь загрузки" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Вы действительно хотите очистить все загрузки из очереди?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Очистить все загрузки" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Вы действительно хотите очистить все загрузки?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Скачать файлы %(num)i?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Вы действительно хотите скачать файлы %(num)i из каталога %(user)s " "%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Скачать каталог" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Предпочитаю" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Безразлично" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Рейтинг" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Метка" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Рекомендации" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "_Мне нравится" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "М_не не нравится" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Рекомендации" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Похожие пользователи" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Рекомендации (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Похожие пользователи (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Личное сообщение от %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "Найдено из списка желаемого" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Профили" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Комнаты" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Интересы" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Чат" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Отладка] Подключения" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Отладка] Сообщения" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Отладка] Передачи" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Отладка] Разное" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Найти…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Скопировать" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Скопировать _всё" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "Посмотреть отладочный журнал" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "Посмотреть журнал передач" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Категории журналов" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Очистить журнал" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Загрузка: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Отдача: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Подготовка раздач" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Сканирование общих файлов" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Выход..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Последнее сообщение" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Комната" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Пользователи" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Войти в комнату" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Покинуть комнату" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Удалить комнату" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Отменить членство в комнате" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Закрыть все вкладки…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Закрыть вкладку" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Просмотр журнала" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Очистить журнал…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Действия пользователя" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Вы действительно хотите удалить все входящие сообщения для этого " "пользователя?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Сообщения, которые вы получили пока были не в сети" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Глобальный" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Друзья" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Комнаты" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Пользователь" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "В очереди" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Тип файла" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Имя файла" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Размер" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Качество" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Скопировать _путь к файлу" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Скопировать _ссылку" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Cкопировать ссылку _каталога" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Скачать файл(ы)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Скачать файл(ы) _в…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Скачать _каталог(и)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Скачать _каталог(и) в…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Посмотреть профиль пользователя" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "Просмотр каталога" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Свойства _файла" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Скопировать поисковый запрос" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Очистить все результаты" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Очистить фильтры" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Восстановить фильтры" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[ЧАСТНЫЙ] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Фильтры [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Фильтры" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d активных(ый)" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Добавить в желаемое" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Удалить из желаемого" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Выбрать результаты пользователя" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Всего: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Результаты" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Выбрать каталог назначения для файлов" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Выбрать каталог назначения" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "В очереди" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "В очереди (с приоритетом)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "В очереди (привилегированный)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Получение статуса" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Передача" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Соединение закрыто" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Превышено время ожидания" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Пользователь вышел из сети" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Отменено" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Ошибка загрузки папки" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Ошибка локального файла" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Заблокировано" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Файл не расшарен" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Ожидает завершения работы" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Ошибка чтения файла" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "В очередь" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Прогресс" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Прошло" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Осталось" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "Открыть файл" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Открыть в файловом _менеджере" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Поиск" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Очистить всё" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Выбрать передачи пользователей" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Прервать" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Завершено / Прервано / Ошибка" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Завершено / Отменено" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Ошибка" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Пользователь вышел из сети" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Очистить очередь раздач" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Вы действительно хотите очистить очередь раздач?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Очистить все раздачи" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Вы действительно хотите очистить все раздачи?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "Сохранить список общих раздач на диск" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Раздать каталог и подкаталог…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Скопировать путь до _каталога" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "Скачать каталог и подкаталог(и)" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Скачать каталог и подкаталог(и) в…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Имя файла" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "Раз_дать файл(ы)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Раздать каталог…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Скачать каталог _в…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Список общих файлов пользователя пуст. Пользователь не хочет ничем делиться, " "либо делится файлами персонально." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Невозможно получить общие файлы пользователя. Пользователь не в сети, у вас " "обоих закрыты порты, либо возникла временная проблема с соединением." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Выберите место для загрузки нескольких каталогов" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Раздать каталог (с подкаталогами) для пользователя" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Раздать каталог пользователю" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Введите имя пользователя, которому вы хотите раздать файлы:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "Раздать" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Выбрать каталог назначения для файлов" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Раздать файл(ы) пользователю" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Скопировать изображение" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Сохранить изображение" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Не удалось загрузить аватар пользователя %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Невозможно получить информацию о пользователе. Либо у вас обоих закрыты " "порты, либо пользователь не в сети, либо возникла временная проблема с " "соединением." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Удалить из списка друзей" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Добавить в друзья" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Разблокировать пользователя" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Перестать игнорировать пользователя" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Да" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Нет" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Пожалуйста, введите количество дней." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Подарить дни ваших привилегий Soulseek пользователю %(user)s (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "Осталось %(days)s дней" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Сделать подарок" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "Дать привилегии" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Закрыть" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Да" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "ОК" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Выбрать файл" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Выбрать каталог" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "Выбрать" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Выбрать изображение" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Все изображения" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Сохранить как…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Пусто)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Закрыть вкладку" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Закрыть все вкладки?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Вы действительно хотите закрыть все вкладки?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Непрочитанные вкладки" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Все вкладки" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Открыть заново закрытую вкладку" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s выделенных файла" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Просмотр файлов" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Добавить в друзья" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Показать IP-а_дрес" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Комнаты" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Удалить из комнаты %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Пригласить в комнату %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Отобрать статус «Оператор» в %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Назначить «Оператором» в %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- старые сообщения выше ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Исполняемый" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Аудио" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Изображение" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Архив" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Разное" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Видео" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Документ" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Текст" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Ошибка при загрузке пользовательского значка %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Скрыть" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Показать" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Столбец №%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "по умолчанию" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "по каталогу" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "по пользователю" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Вы действительно хотите выйти? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "Пользователь %s уже существует, а введенный пароль некорректный." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" "Введите %s для входа в систему с другим именем пользователя или паролем." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Пароль: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Чтобы создать новую учетную запись Soulseek, введите желаемое имя " "пользователя и пароль. Если у вас уже есть учетная запись, введите " "существующие данные для входа." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Следующие раздачи не доступны:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Пересканировать? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Не удалось записать в файл журнала «%(filename)s»: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Не удается получить доступ к файлу журнала %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Андорра" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Объединенные Арабские Эмираты" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Афганистан" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Антигуа и Барбуда" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Ангилья" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Албания" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Армения" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Ангола" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Антарктида" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Аргентина" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Американское Самоа" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Австрия" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Австралия" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Аруба" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Аландские острова" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Азербайджан" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Босния и Герцеговина" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Барбадос" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Бангладеш" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Бельгия" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Буркина-Фасо" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Болгария" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Бахрейн" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Бурунди" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Бенин" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Сен-Бартелеми" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Бермуды" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Бруней-Даруссалам" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Боливия" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Бонайре, Синт-Эстатиус и Саба" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Бразилия" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Багамы" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Бутан" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Остров Буве" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Ботсвана" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Беларусь" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Белиз" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Канада" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Кокосовые (Килинг) острова" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Демократическая Республика Конго" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Центрально-Африканская Республика" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Конго" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Швейцария" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Кот-д'Ивуар" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Острова Кука" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Чили" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Камерун" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Китай" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Колумбия" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Коста-Рика" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Куба" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Кабо-Верде" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Кюрасао" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Остров Рождества" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Кипр" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Чехия" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Германия" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Джибути" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Дания" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Доминика" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Доминиканская Республика" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Алжир" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Эквадор" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Эстония" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Египет" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Западная Сахара" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Эритрея" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Испания" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Эфиопия" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Европа" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Финляндия" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Фиджи" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Фолклендские (Мальвинские) острова" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Микронезия" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Фарерские острова" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Франция" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Габон" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Великобритания" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Гренада" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Грузия" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Французская Гвиана" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Гернси" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Гана" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Гибралтар" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Гренландия" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Гамбия" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Гвинея" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Гваделупа" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Экваториальная Гвинея" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Греция" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Южная Георгия и Южные Сандвичевы острова" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Гватемала" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Гуам" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Гвинея-Бисау" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Гайана" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Гонконг" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Острова Херд и Макдональд" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Гондурас" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Хорватия" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Гаити" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Венгрия" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Индонезия" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Ирландия" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Израиль" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Остров Мэн" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Индия" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Британская территория Индийского океана" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Ирак" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Иран" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Исландия" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Италия" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Джерси" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Ямайка" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Иордания" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Япония" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Кения" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Кыргызстан" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Камбоджа" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Кирибати" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Коморские острова" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Сент-Китс и Невис" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Северная Корея" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Южная Корея" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Кувейт" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Каймановы острова" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Казахстан" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Лаос" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Ливан" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Санкт-Люсия" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Лихтенштейн" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Шри-Ланка" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Либерия" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Лесото" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Литва" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Люксембург" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Латвия" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Ливия" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Марокко" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Монако" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Молдова" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Черногория" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Сен-Мартен" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Мадагаскар" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Маршалловы острова" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Северная Македония" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Мали" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Мьянма" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Монголия" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Макао" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Северные Марианские острова" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Мартиника" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Мавритания" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Монтсеррат" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Мальта" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Маврикий" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Мальдивы" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Малави" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Мексика" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Малайзия" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Мозамбик" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Намибия" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Новая Каледония" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Нигер" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Остров Норфолк" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Нигерия" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Никарагуа" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Нидерланды" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Норвегия" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Непал" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Науру" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Ниуэ" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Новая Зеландия" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Оман" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Панама" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Перу" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Французская Полинезия" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Папуа - Новая Гвинея" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Филиппины" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Пакистан" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Польша" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Сен-Пьер и Микелон" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Питкэрн" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Пуэрто-Рико" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Государство Палестина" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Португалия" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Палау" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Парагвай" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Катар" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Реюньон" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Румыния" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Сербия" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Россия" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Руанда" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Саудовская Аравия" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Соломоновы острова" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Сейшельские острова" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Судан" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Швеция" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Сингапур" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Святой Елены" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Словения" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Острова Шпицберген и Ян-Майен" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Словацкая Республика" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Сьерра-Леоне" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "Сан-Марино" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Сенегал" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Сомали" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Суринам" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Южный Судан" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Сан-Томе и Принсипи" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "Сальвадор" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Синт-Мартен" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Сирия" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Эсватини" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Острова Теркс и Кайкос" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Чад" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Южные Французские Территории" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Того" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Таиланд" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Таджикистан" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Токелау" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Тимор-Лешти" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Туркменистан" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Тунис" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Тонга" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Турция" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Тринидад и Тобаго" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Тувалу" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Тайвань" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Танзания" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Украина" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Уганда" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Внешние малые острова США" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Соединенные Штаты" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Уругвай" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Узбекистан" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Святой Престол (государство-город Ватикан)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Сент-Винсент и Гренадины" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Венесуэла" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Британские Виргинские острова" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Виргинские острова США" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Вьетнам" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Вануату" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Уоллис и Футуна" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Самоа" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Йемен" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Майотта" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Южная Африка" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Замбия" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Зимбабве" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Ошибка преобразования текста в речь: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: укажите имя пользователя и ключ API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Ошибка воспроизведения" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: не удалось подключиться к Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Не удалось получить последний трек от Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: не удалось найти подходящий проигрыватель MPRIS" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Найдено несколько плееров MPRIS: %(players)s. Будет использован: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Автоопределение плеера MPRIS: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Что-то пошло не так при запросе %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: укажите свое имя пользователя" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: не удалось подключиться к ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Похоже, вы сейчас ничего не слушаете" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Не удалось получить текущий трек из ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Сетевые фильтры" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Список доступных команд" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Подключение к серверу" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Отключение от сервера" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Переключить статус на \"Отсутствую\"" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Управление плагинами" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Очистить окно чата" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Сказать что-нибудь от третьего лица" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Сообщить песню, которая сейчас играет" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Присоединиться к чату" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Покинуть чат" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Отправить сообщение в указанный чат" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Открыть приватный чат" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Закрыть приватный чат" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Запросить версию клиента пользователя" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Отправить приватное сообщение пользователю" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Добавить пользователя в список друзей" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Убрать пользователя из списка друзей" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Посмотреть общие файлы пользователя" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Показать информацию о профиле" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "Показать IP-адрес или псевдоним пользователя" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Блокировать подключения от пользователя или IP-адреса" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Убрать пользователя или IP-адрес из списка блокировки" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Заглушить сообщения от пользователя или IP-адреса" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Убрать пользователя из игнора" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Добавить обмен" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Убрать обмен" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Список общих файлов" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Пересканировать общие файлы" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Начать глобальный поиск файлов" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Поиск файлов в присоединенных комнатах" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Поиск файлов у друзей" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Поиск по общим файлам пользователей" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "Список %(num)i доступных команд:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Список %(num)i доступных команд, соответствующих «%(query)s»:" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Введите %(command)s, чтобы получить похожие команды" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Введите %(command)s, чтобы просмотреть список доступных команд" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "Не присоединился к комнате %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "Не обмениваться сообщениями с пользователем %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "Закрыт приватный чат %s" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Заблокирован %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Разблокирован %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Игнорируется %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Больше не игнорируется %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s перечисленные раздачи (%(num_total)s сконфигурированы)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Невозможно предоставить общий доступ к недоступной папке \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Добавлено %(group_name)s общий доступ \"%(virtual_name)s\" (требуется " "повторное сканирование)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "Нет общего доступа с именем \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Удален общий доступ \"%s\" (требуется повторное сканирование)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Плагин загружается" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Не удалось загрузить плагин %(name)s. Имя каталога плагина содержит " "недопустимые символы: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Конфликтующая команда %(interface)s в плагине %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Плагин загружен %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Не удалось загрузить плагин %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Плагин выгружен %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Не удалось выгрузить плагин %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Плагин %(module)s завершился с ошибкой %(errortype)s: %(error)s.\n" "Отчёт: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Без описания" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "Отсутствует %s аргумент" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Недопустимый аргумент, возможный вариант: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Использование: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Неизвестная команда: %(command)s. Введите %(help_command)s, чтобы " "просмотреть список доступных команд." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "Устройства с UPnP не найдены" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: не удалось пробросить внешний порт %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: внешний порт %(external_port)s успешно переброшен на локальный " "IP-адрес %(ip_address)s порт %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Личное сообщение от пользователя \"%(user)s\": %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Поиск предмета в Списке желаемого \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Период ожидания списка желаемого установлен на %s секунд" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Пользователь %(user)s ищет \"%(query)s\", находит %(num)i результатов" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Перестроение списка раздач…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Пересканирование списка раздач…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Повторное сканирование завершено: найдено %(num)s каталогов" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "При повторном сканировании списка раздач произошла серьёзная ошибка. Если " "проблема не исчезает, удалите файл %(dir)s/*.dbn и повторите попытку. Если " "это не помогло, отправьте отчёт об ошибке: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Ошибка при сканировании файла %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Ошибка при сканировании каталога %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Ошибка при сканировании метаданных для файла %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "" "Повторное сканирование прервано из-за недоступности общих каталогов: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "%(user)s просматривает ваш список раздач" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Не удалось получить список раздач %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Невозможно прочитать базу данных списка раздач. Пожалуйста, пересканируйте " "список раздач. Ошибка: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Указанный сетевой интерфейс '%s' не существует" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Невозможно прослушивать порт %(port)s. Убедитесь, что его не использует " "другое приложение, или выберите другой порт. Ошибка: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Прослушивание на порту %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Не удаётся подключиться к серверу %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Повторное подключение к серверу через %i секунд" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Подключение к %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Подключён к серверу %(host)s:%(port)s, вход в систему…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Отключён от сервера %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Вход в вашу учетную запись произведен в другом месте" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Раздача завершена: пользователь %(user)s, IP-адрес %(ip)s, файл %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Раздача прервана, пользователь %(user)s файл %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Ошибка ввода-вывода при отдаче: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Раздача началась: пользователь %(user)s, IP-адрес %(ip)s, файл %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Не удаётся создать каталог '%(folder)s', ошибка: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Ошибка загрузки раздач с диска: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "Список раздач пользователя \"%(user)s\" сохранён в %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Не удаётся сохранить раздачи, \"%(user)s\", ошибка: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Изображение сохранено в %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Не удается сохранить изображение в %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "Пользователь %(user)s просматривает ваш профиль" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Невозможно подключиться к серверу. Причина: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Не удаётся подключиться" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Невозможно получить IP-адрес пользователя %s, так как этот пользователь не в " "сети" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP-адрес пользователя %(user)s: %(ip)s, порт %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Анонс Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i привилегированных пользователей" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "У вас нет привилегий. Привилегии не обязательны, но они позволяют вам " "скачивать файлы быстрее, в отличие от непривилегированных пользователей." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Осталось %(days)i дней, %(hours)i часов, %(minutes)i минут, %(seconds)i " "секунд до окончания привилегий Soulseek" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Ваш пароль был изменён" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Пароль изменён" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Не удается открыть путь к файлу %(path)s: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Не удается открыть URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Что-то пошло не так при чтении файла %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Попытка загрузить резервную копию файла %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Невозможно создать резервную копию файла %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Невозможно сохранить файл %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Невозможно восстановить предыдущий файл %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Добавить в друзья…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Поиск журнала активностей…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Поиск журнала чата…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Отправить сообщение…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Переключить преобразование текста в речь" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Справка по командам комнаты" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "Журнал" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Стена комнаты" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "Стена комнаты" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Создатели" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Перевёл" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Лицензия" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "Назад" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Добро пожаловать в Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "Мастер настройки…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Если желаемое имя пользователя уже занято, вам будет предложено его изменить." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Чтобы установить связь с другими участниками Soulseek, необходимо пробросить " "на компьютер прослушивающий порт маршрутизатора." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Если ваш порт прослушивания закрыт, вы сможете подключаться только к " "пользователям, чьи порты прослушивания открыты." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "При необходимости выберите другой порт для прослушивания ниже. Это также " "можно сделать позже в настройках." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Загружать файлы в каталог" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Раздать каталоги" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Пользователи Soulseek смогут скачивать ваши файлы, если вы добавите их в " "общий доступ. Внесите свой вклад в сеть Soulseek, поделившись своей " "собственной коллекцией, а также опубликовав то, что вы скачали у других " "пользователей." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Вы готовы к использованию Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek - это незашифрованный протокол, не предназначенный для безопасного " "общения." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Пожертвование для Soulseek дает вам привилегии на определенный период " "времени. Если у вас есть привилегии, ваши загрузки будут поставлены в " "очередь перед непривилегированными пользователями." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Предыдущий файл" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Следующий файл" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Имя" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Последняя скорость" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "Экспорт…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Горячие клавиши" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Общий" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Подключиться" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Отключиться" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Пересканировать общие каталоги" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Показать журнал событий" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Подтверждать выход" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Выход" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Меню" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Открыть главное меню" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Открыть контекстное меню" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Вкладки" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Изменить начальную вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Перейти к предыдущей дополнительной вкладке" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Перейти к следующей дополнительной вкладке" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Повторно открыть закрытую дополнительную вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Закрыть дополнительную вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Списки" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Скопировать выбранную ячейку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Удалить выбранную строку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Редактирование" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Вырезать" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Вставить" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Вставить эмодзи" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Выделить всё" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Найти" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Найти следующее совпадение" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Найти предыдущее совпадение" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Передача файлов" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Возобновить / Повторить" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Приостановить / Прервать передачу" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Загрузить / Раздать" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Сохранить список на диск" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Обновить" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Развернуть / Свернуть всё" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Вернуться в корневой каталог" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Поиск файла" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Фильтры" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Текущий сеанс" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Завершённые загрузки" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Размер загрузок" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Завершённые раздачи" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Размер раздач" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Всего" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "Сброс…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Список желаемого автоматически просматривается через регулярные промежутки " "времени для обнаружения файлов." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Добавить желаемое…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Очистить всё…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Очистить список загруженных файлов" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Очистить завершённые" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Очистить конкретные загрузки" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Очистить всё…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Личные интересы" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Добавьте то, что вам нравится…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Личная неприязнь" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Добавьте то, что вам не нравится…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Обновить Рекомендации" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Главное меню" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Комната…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Имя пользователя…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Условие поиска…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Шаблоны поиска: со словом = слово, исключить слово = -слово, частичное слово " "= *лово" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Область поиска" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Список желаемого" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Настроить поиск" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Введите запрос для поиска файлов, которыми поделились другие пользователи в " "сети Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Группировать" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Настроить загрузки" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Файлы, которые вы загружаете от других пользователей, помещаются здесь в " "очередь и их можно приостанавливать и возобновлять по запросу" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Настроить раздачи" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Попытки пользователей загрузить ваши общие файлы ставятся в очередь и " "управляются здесь" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Открыть список" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Открывает локальный список общих файлов, которые ранее были сохранены на диск" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Настроить общие каталоги" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Введите имя пользователя, общие файлы которого вы хотите просмотреть. Вы " "также можете сохранить список на диск и просмотреть его позже." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "Профиль" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Настройка учетной записи" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Введите имя пользователя, чтобы увидеть его описание, информацию и аватар" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "История чата" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Настроить чаты" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Введите имя пользователя, чтобы начать с ним диалог" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "Сообщение (иконка)" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Настройка игнорируемых пользователей" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Добавляйте пользователей в список друзей, чтобы делиться с ними общими " "каталогами и получать уведомления, когда они в сети" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Присоединяйтесь к комнатам или создайте свою…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Присоединяйтесь к существующим комнатам или создайте новую, чтобы общаться с " "другими пользователями в сети Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Настройка профиля пользователя" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Поиск журнала…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Узлы" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "Загрузка (Скорость / Активные пользователи)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Отдача (Cкорость / Aктивные пользователи)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Поиск истории чата…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Ограничения скорости загрузки" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Неограниченная скорость загрузки" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "Использовать ограничения скорости загрузки (КиБ/с):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Использовать особые ограничения скорости загрузки (КиБ/с):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Поиск комнат…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Обновить комнаты" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Показать ленту сообщений публичного чата" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "Принять приглашение в комнату" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Напишите единое сообщение, которое другие пользователи комнаты смогут " "прочитать позже. Последние сообщения отображаются вверху." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Оставить сообщение на стене…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Фильтры результата поиска" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "Используются для уточнения отображаемых результатов." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Каждый список результатов поиска имеет свой собственный фильтр, который " "можно открыть, нажав кнопку «Фильтры результата». Фильтр состоит из " "нескольких полей, каждое из которых применяется при нажатии клавиши «Enter». " "Фильтрация применяется к полученным и не полученным результатам." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Как следует из названия, фильтр результата поиска не может расширить " "исходный поиск, он может только сузить его. Чтобы расширить или изменить " "условия поиска, выполните новый поиск." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Фильтры результата" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Название содержит" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "Будут показаны файлы, каталоги и пользователи, содержащие этот текст." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Регистр нечувствителен, но порядок слов важен: 'Instrumental Remix' не " "покажет никаких 'Remix Instrumental'" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Используйте символ |, для разделения нескольких точных фраз. Пример:\n" "Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Исключить содержимое" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "То же, что и выше, но файлы, каталоги и пользователи отфильтровываются, если " "содержимое совпадает." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Фильтрует файлы по их расширению." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Можно указать несколько расширений файлов, что, в свою очередь, расширит " "список результатов.\n" "Пример: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Также можно инвертировать фильтр, указав расширения файлов, которые вам не " "нужны в результатах.\n" "Пример: !mp3|!jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Размер файла" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Фильтрует файлы в зависимости от их размера." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "По умолчанию используются единица измерения — байт (Б), и файлы, которые " "больше или равны (>=) сопоставимому значению." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Добавьте b, k, m или g (альтернатива kib, mib или gib), чтобы указать " "единицы байт, кибибайт, мебибайт или гибибайт:\n" " 20m для отображения файлов размером более 20 MiB (мебибайт)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Добавьте знак рaвенства (=) к значению, чтобы указать точное соответствие:\n" "=1024 соответствует только файлам размером 1 КиБ (Кибибайт)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Добавьте ! к значению, чтобы исключить файлы определенного размера:\n" " !30.5m для скрытия файлов размером 30.5 MiB (Мебибайт)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Добавьте символ меньше (<) или больше (>), чтобы найти файлы меньше или " "больше заданного значения:\n" ">10.5m <1g для отображения файлов размером более 10.5 МиБ (мебибайт), но " "меньше 1 ГиБ (гибибайт)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Более известные варианты kb, mb и gb также могут использоваться для " "обозначения единиц измерения Килобайт, Мегабайт и Гигабайт." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Фильтрует файлы по их битрейту." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Значения должны быть введены только в виде цифр. Единицей всегда является " "кбит/с (килобиты в секунду)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Как и в случае с размером файла (см. выше), можно использовать операторы " "=, !, <, >, <= или >=, а также задавать несколько условий, например, " "показывать файлы с битрейтом не менее 256 кбит/с при максимальном битрейте " "1411 кбит/с:\n" " 256 <= 1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Фильтрует файлы по их продолжительности." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "По умолчанию будут сопоставлены файлы, длина которых больше или равна (>=) " "введенной длительности, если не используется оператор (=, !, <=, < или >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Введите значение в секундах или используйте форматы времени MM:SS и HH:MM:\n" " =53 показывает файлы продолжительностью приблизительно 53 секунд.\n" " >5:30 для показа файлов продолжительностью не менее 5 с половиной " "минут.\n" " <5:30:00 показывает файлы продолжительностью менее 5 с половиной " "часов." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Можно указать несколько условий:\n" " >6:00 <12:00 для отображения файлов продолжительностью от 6 до 12 " "минут.\n" " !9:54 !8:43 !7:32, чтобы скрыть некоторые файлы из результатов.\n" " =5:34 =4:23 =3:05, чтобы включить файлы с определенной " "продолжительностью." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Фильтрация файлов на основе географического положения пользователей в " "соответствии с кодами стран, определенными стандартом ISO 3166-2:\n" " US будет показывать результаты только от пользователей с IP-адресами в " "США.\n" " !GB будет скрывать результаты, полученные от пользователей из " "Великобритании." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Несколько стран можно указать через запятую или пробел." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Свободный слот" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Показывать только те результаты от пользователей, у которых свободен хотя бы " "один слот раздачи, т.е. файлы, которые доступны немедленно." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Ограничения скорости отдачи" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Неограниченная скорость отдачи" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Использовать ограничение скорости отдачи (КиБ/сек):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Использовать особое ограничение скорости отдачи (КиБ/сек):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Справка по командам чата" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Название содержит…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Отфильтровать результаты, пути к которым содержат указанный текст. Можно " "указать несколько фраз и слов, например: exact phrase|music|term|exact " "phrase two" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Исключить текст…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Отфильтровать результаты, пути к файлам которых содержат указанный текст. " "Можно указать несколько фраз и слов, например: phrase|music|term|exact " "phrase two" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Тип файла…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Тип файла, например flac wav или !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Размер файла…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Размер файла, например >10.5МиБ <1ГиБ" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Битрейт…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Битрейт, например 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Продолжительность…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Продолжительность, например >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Код страны…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Код страны, например US ES или !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Запретить пользователям доступ к вашим общим файлам на основе имени " "пользователя, IP-адреса или страны." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Коды стран, которые необходимо заблокировать (через запятую):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Коды должны быть в формате ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Использовать особое сообщение блокировки по странам:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Использовать особое сообщение о блокировке:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP-адреса" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Включить проверку орфографии" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Восстанавливать ранее открытые чаты при запуске" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "Включить ответы на личные сообщения, подобные CTCP (клиентская версия)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Количество личных сообщений, которые нужно показать:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Количество сообщений чата, которые нужно показать:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Автодополнение чата" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Включить автодополнение с помощью клавиши «Tab»" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Включить раскрывающийся список автодополнения" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" "Минимальное количество символов, необходимых для отображения раскрывающегося " "списка:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Допустимые автодополнения чата:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Имена друзей" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Имена пользователей в чатах" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Названия комнат" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Команды" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Отметки времени" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Тема чата:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "По умолчанию" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Формат чата:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Преобразовать текст в речь" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Включить преобразование текста в речь" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Команда для преобразования текста в речь:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Сообщение в чате:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Сообщение в чате:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Цензура" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Цензурировать текст по шаблону" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Автозамена" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Включить автоматическую замену слов" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Автоочистка завершённых/отфильтрованных загрузок из списка передачи" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Сохранять завершённые загрузки в подкаталогах с именами пользователей" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Двойной щелчок для загрузок:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Кому разрешается отправлять вам файлы:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Каталоги" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Завершенные загрузки:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Незавершенные загрузки:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Полученные файлы:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "События" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "После завершения загрузки файла выполнить команду ($ путь к файлу):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "После завершения загрузки каталога выполнить команду ($ путь к каталогу):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Фильтры загрузки" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Включить фильтры загрузки" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Добавить" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Восстановить по умолчанию" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Проверить фильтры" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Не проверено" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Игнорировать сообщения и результаты поиска, основываясь на имени " "пользователя или IP-адресе." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Журналировать чаты по умолчанию" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Журналировать историю чата по умолчанию" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Журналировать передачи в файл" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Журналировать отладочные сообщения в файл" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Формат метки времени журнала:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Место" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Каталог журналов чата:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Каталог журналов чата:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Каталог журналов передачи:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Каталог журналов отладки:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Войдите в существующую учетную запись Soulseek или создайте новую. Имена " "пользователей уникальны и чувствительны к регистру." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Публичный IP-адрес:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Порт (требуется перезапуск программы):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Статус «Отсутствую»" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Установить статус «Отсутствую» после минут (0 чтобы отключить):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Автоответчик при отсутствии:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Автоматически перенаправлять прослушиваемый порт (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Автоматическое подключение к серверу при запуске" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Адрес сервера Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Связывает соединения с определенным сетевым интерфейсом, например, для " "обеспечение постоянного использования VPN. Оставьте пустым, чтобы " "использовать любой доступный интерфейс. Изменяйте это значение, только если " "вы знаете, что делаете." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Сетевой интерфейс (требуется перезапуск программы):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "«Сейчас играет» позволяет отображать то, что воспроизводит ваш медиаплеер, с " "помощью команды /now в чате." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Другое" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Формат" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Формат сообщения \"Сейчас играет\":" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Проверить настройки" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Включить плагины" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Добавить плагины" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "Добавить" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Настройки" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Настройки" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Версия:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Создано:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Включить историю поиска" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Клиенты сети Soulseek могут обмениваться файлами конфиденциально. Такие " "файлы имеют префикс «[ЧАСТНЫЙ ФАЙЛ]» и не могут быть загружены, если " "владелец не дал явного разрешения." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Показывать частные файлы в результатах поиска" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Ограничить количество результатов на поиск:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Включить фильтры результатов поиска по умолчанию" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Содержит:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Исключить:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Тип файла:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Размер:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Битрейт:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Продолжительность:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Код страны:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Показывать результаты только от пользователей с доступным слотом для отдачи." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Справка по фильтру результатов" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Поиск файлов в сети" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Отвечать на поисковые запросы других пользователей" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" "Поисковые запросы короче указанного количества символов будут игнорироваться:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Максимальное количество результатов на странице поиска:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Очистить историю поиска" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Очистить историю фильтров" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Nicotine+ автоматически пересканирует содержимое ваших общих каталогов при " "запуске. Если этот параметр отключен, ваши общие файлы обновляются только " "при пересканировании вручную." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Пересканировать общие файлы при запуске программы" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Показывать для всех:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Раздачи друзей" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Доверенные раздачи" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Автоочистка завершённых/отменённых раздач из списка передачи" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Действие двойного щелчка для раздачи:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Ограничить скорость отдачи:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "За одну передачу" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Всего передач" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Слоты для отдачи" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Циклический: файлы будут загружаться в циклическом режиме пользователями, " "ожидающими в очереди.\n" "Первым пришёл — первым ушёл: файлы будут загружены в том порядке, в каком " "они были поставлены в очередь." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Тип очереди отдачи:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Распределять слоты раздачи до тех пор, пока общая скорость не достигнет (КиБ/" "сек):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Фиксированное количество слотов отдачи:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Приоритет для всех друзей" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Лимиты очереди" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Максимальное количество файлов в очереди на одного пользователя:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" "Максимальный суммарный размер файлов в очереди на одного пользователя (МиБ):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Ограничения не распространяются на друзей" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Символ $ заменяется URL-адресом. По умолчанию будут использованы системные " "приложения, если протокол не был сконфигурирован." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Команда файлового менеджера:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Сбросить изображение" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Информация отображаемая всем пользователям, зашедшим в ваш профиль" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Добавьте то, что вы хотите, чтобы все увидели, например, краткое описание, " "полезные советы или рекомендации по загрузке ваших раздач." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Изображение:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Очистить" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Использовать тёмный режим" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Скрыть панель меню" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Отображать значок" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Сворачивать Nicotine+ в область уведомлений при запуске" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Язык (требуется перезапуск программы):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "При закрытии окна:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Уведомления" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Включить звук для уведомлений" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Показывать уведомление в заголовке окна при упоминании в чатах" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Показ уведомлений:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Загрузка файла завершена" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Загрузка каталога завершена" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Личные сообщения" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Сообщения в чате" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Упоминания в чате" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "Найдено из списка желаемого" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Восстановить ранее активную главную вкладку при запуске" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Кнопки закрытия на дополнительных вкладках" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Обычный цвет метки вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Изменённый цвет метки вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Цвет выделенной метки вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Позиция в списке друзей:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Отображать вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Положение панели вкладок:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Основные вкладки" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Показывать обратные пути файлов (требуется перезапуск)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Показывать точные размеры файлов (требуется перезапуск программы)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Цвет списка текста:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Цвет текста результата поиска в очереди:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Включить цветные имена пользователей" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Внешний вид имени пользователя в чате:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Цвет удалённого текста:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Цвет локального текста:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Цвет текста вывода команды:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me «действие» «цвет текста»:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Цвет выделенного текста:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Цвет ссылок:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Статусы пользователей" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Цвет текста «В сети»:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Цвет текста «Отсутствую»:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Цвет текста «Не в сети»:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Ввод текста" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Цвет фона ввода текста:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Цвет текста ввода:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Шрифты" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Глобальный шрифт:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Шрифт списка:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Шрифт при просмотре текста:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Шрифт чата:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Шрифт передач:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Шрифт поиска:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Шрифт просмотра:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Иконки" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Каталог темы иконок:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Прервать пользователя(ей)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Заблокировать пользователя(ей)" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Очистить список завершённых раздач" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Сообщение (иконка)" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Очистить конкретные раздачи" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Сохранить список общих каталогов на диск" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Обновить файлы" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Изменить профиль" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Общие файлы" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Общие каталоги" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Раздач в очереди" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Свободные слоты для отдачи" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Скорость отдачи" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "Изменить интересы" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Подарить привилегию…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "Обновить профиль" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Команда Nicotine+" #~ msgid "_Clear" #~ msgstr "_Очистить" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Не могу сохранить %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Доверенные друзья" #~ msgid "Quit program" #~ msgstr "Выйти из программы" #~ msgid "Username:" #~ msgstr "Имя пользователя:" #~ msgid "Re_commendations for Item" #~ msgstr "Ре_комендации" #~ msgid "_Remove Item" #~ msgstr "_Удалить метку" #~ msgid "_Remove" #~ msgstr "_Удалить из списка" #~ msgid "Send M_essage" #~ msgstr "Отправить _сообщение" #~ msgid "Send Message" #~ msgstr "Отправить сообщение" #~ msgid "View User Profile" #~ msgstr "Посмотреть профиль пользователя" #~ msgid "Start Messaging" #~ msgstr "Начать диалог" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Введите имя пользователя, которому вы хотите отправить сообщение:" #~ msgid "_Message" #~ msgstr "Сообщение" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "" #~ "Введите имя пользователя, общие каталоги которого вы хотите увидеть:" #~ msgid "_View Profile" #~ msgstr "Посмотреть профиль пользователя" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "" #~ "Введите имя пользователя, общие каталоги которого вы хотите увидеть:" #~ msgid "_Browse" #~ msgstr "Просмотр" #~ msgid "Password" #~ msgstr "Пароль" #~ msgid "Download File" #~ msgstr "Загрузить файл" #~ msgid "Refresh Similar Users" #~ msgstr "Обновить похожих пользователей" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Введите имя пользователя, файлы которого вы хотите просмотреть" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Введите имя пользователя, информацию о котором вы хотите видеть" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Введите имя пользователя, которому вы хотите отправить сообщение" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Введите имя пользователя, которого хотите добавить в список друзей" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Введите название комнаты, к которой хотите присоединиться. Если комнаты " #~ "не существует, она будет создана." #~ msgid "Show Log History Pane" #~ msgstr "Показать историю журнала" #~ msgid "Save _Picture" #~ msgstr "Сохранить _аватар" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Отфильтрован неверный результат поиска %(filepath)s от пользователя " #~ "%(user)s по запросу \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Некоторые клиенты не отправляют результаты поиска, если в них включены " #~ "специальные символы." #~ msgid "Remove special characters from search terms" #~ msgstr "Удалять специальные символы из условий поиска" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Не удалось выполнить \"%s\"" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Не удалось выполнить в каталоге: %s" #~ msgid "Disallowed extension" #~ msgstr "Запрещенное расширение" #~ msgid "Too many files" #~ msgstr "Слишком много файлов" #~ msgid "Too many megabytes" #~ msgstr "Слишком много мегабайт" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Сервер не позволяет выполнять поиск по списку желаемого в настоящее время" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Скорость передачи файлов зависит от пользователей, у которых вы " #~ "загружаете. Некоторые пользователи будут быстрее, в то время как другие " #~ "будут медленнее." #~ msgid "Started Downloads" #~ msgstr "Начатые загрузки" #~ msgid "Started Uploads" #~ msgstr "Начатые раздачи" #~ msgid "Replace censored letters with:" #~ msgstr "Заменять ненормативную лексику символами:" #~ msgid "Censored Patterns" #~ msgstr "Шаблоны" #~ msgid "Replacements" #~ msgstr "Замены" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Если пользователь в сети Soulseek ищет файл, который находится в ваших " #~ "общих файлах, результаты поиска будут отправлены пользователю." #~ msgid "Send to Player" #~ msgstr "Отправить в медиаплеер" #~ msgid "Send to _Player" #~ msgstr "Отправить в _медиаплеер" #~ msgid "_Open in File Manager" #~ msgstr "_Открыть в файловом менеджере" #~ msgid "" #~ "Privately shared files that have been made visible to everyone will be " #~ "prefixed with '[PRIVATE]', and can not be downloaded until the uploader " #~ "gives explicit permission. Ask them kindly." #~ msgstr "" #~ "Клиенты сети Soulseek могут обмениваться файлами конфиденциально. Такие " #~ "файлы имеют префикс «[ЧАСТНЫЙ ФАЙЛ]» и не могут быть загружены, если " #~ "владелец не дал явного разрешения." #~ msgid "Media player command:" #~ msgstr "Команда медиаплеера:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Невозможно сохранить загрузку в подкаталог с именем пользователя, откат к " #~ "папке загрузки по умолчанию. Ошибка: %s" #~ msgid "Buddy-only" #~ msgstr "Только для друзей" #~ msgid "Share with buddies only" #~ msgstr "Обмен только для друзей" #~ msgid "_Quit…" #~ msgstr "_Выйти…" #~ msgid "_Configure Shares" #~ msgstr "_Настроить общие каталоги" #~ msgid "Remote file error" #~ msgstr "Ошибка удаленного файла" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Не удаётся найти %(option1)s или %(option2)s, установите любой из них." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s каталогов найдено перед повторным сканированием" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Не удалось обработать следующие базы данных: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Не удалось отправить на сервер количество раздач: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Выйти / В фоновый режим" #~ msgid "Listening port:" #~ msgstr "Прослушивающий порт:" #~ msgid "Network interface:" #~ msgstr "Сетевой интерфейс:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Разрешить доступ только доверенным друзьям" #~ msgid "Shared" #~ msgstr "Размер раздачи" #~ msgid "Search Files and Folders" #~ msgstr "Найти файлы и каталоги" #~ msgid "Out of Date" #~ msgstr "Устаревшая версия" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Доступна версия %(version)s, выпущенная %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Вы используете версию %s для разработчиков" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Вы используете последнюю версию %s" #~ msgid "Latest Version Unknown" #~ msgstr "Версия неизвестна" #~ msgid "Prefer Dark _Mode" #~ msgstr "Использовать тёмный _режим" #~ msgid "Show _Log History Pane" #~ msgstr "Показать _журнал событий" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Список друзей в отдельной вкладке" #~ msgid "Buddy List Always Visible" #~ msgstr "Список друзей всегда виден" #~ msgid "_View" #~ msgstr "_Вид" #~ msgid "_Open Log Folder" #~ msgstr "_Открыть каталог журнала" #~ msgid "_Browse Folder(s)" #~ msgstr "_Просмотр каталогов" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Кибибайт (2^10 байт) в секунду." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Отправлять пользователям как причина блокировки по странам." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Отправлять пользователям как причину блокировки." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "После вашего взаимодействия с программой, статус будет установлен на «В " #~ "сети»." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Каждый пользователь может поставить в очередь максимум:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Мебибайты (2^20 байт)." #~ msgid "MiB" #~ msgstr "МиБ" #~ msgid "files" #~ msgstr "файлы" #~ msgid "Queue Behavior" #~ msgstr "Поведение очереди" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Если этот параметр отключен, слоты будут автоматически определяться " #~ "доступными ограничениями пропускной способности." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "" #~ "Обратите внимание, что тема операционной системы может иметь приоритет." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "По умолчанию крайняя левая вкладка активируется при запуске" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Выход из %(program)s %(version)s %(status)s!" #~ msgid "terminated" #~ msgstr "завершено" #~ msgid "done" #~ msgstr "готово" #~ msgid "Remember choice" #~ msgstr "Запомнить выбор" #~ msgid "Kosovo" #~ msgstr "Косово" #~ msgid "Unknown Network Interface" #~ msgstr "Неизвестный сетевой интерфейс" #~ msgid "Listening Port Unavailable" #~ msgstr "Прослушиваемый порт недоступен" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Сервер не работает или не отвечает, попытка подключения через %i секунд" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ использует одноранговую сеть для подключения к другим " #~ "пользователям. Открытый порт прослушивания имеет решающее значение для " #~ "того, чтобы пользователи могли без проблем подключаться к вам." #~ msgid "--- disconnected ---" #~ msgstr "--- соединение потеряно ---" #~ msgid "--- reconnected ---" #~ msgstr "--- соединение восстановлено ---" #~ msgid "ID" #~ msgstr "Идентификатор" #~ msgid "Earth" #~ msgstr "Планета Земля" #~ msgid "Czech Republic" #~ msgstr "Чехия" #~ msgid "Turkey" #~ msgstr "Турция" #~ msgid "Joined Rooms " #~ msgstr "находимся " #~ msgid "_Auto-join Room" #~ msgstr "_Автоматическое присоединение к комнате" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Синтаксис: Буквы не чувствительны к регистру. Если экранирование " #~ "отключено, поддерживаются все регулярные выражения языка программирования " #~ "Python. Для простых фильтров рекомендуется оставить экранирование " #~ "включенным." #~ msgid "Escaped" #~ msgstr "Сбежавший" #~ msgid "Escape filter" #~ msgstr "Отключить" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Введите текстовый шаблон для замены" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "" #~ "%(num)s каталогов обнаружено перед повторным сканированием, перестроение…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "Нет доступных прослушиваемых портов в указанном диапазоне %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Выберите диапазон для подбора порта прослушивания. Будет использован " #~ "первый доступный порт." #~ msgid "First Port" #~ msgstr "Начальный порт" #~ msgid "to" #~ msgstr "до" #~ msgid "Last Port" #~ msgstr "Конечный порт" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Не удаётся найти %s или новее, установите его." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Невозможно импортировать модуль Gtk. Некорректная установка модуля python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Вы используете неподдерживаемую версию GTK %(major_version)s. Вам следует " #~ "установить GTK %(complete_version)s или новее." #~ msgid "User Info" #~ msgstr "Информация о пользователе" #~ msgid "Zoom 1:1" #~ msgstr "Масштаб 1:1" #~ msgid "Zoom In" #~ msgstr "Увеличить" #~ msgid "Zoom Out" #~ msgstr "Уменьшить" #~ msgid "Show User I_nfo" #~ msgstr "Получить _информацию" #~ msgid "Request User's Info" #~ msgstr "Информация о пользователе" #~ msgid "Request User's Shares" #~ msgstr "Общие каталоги пользователя" #~ msgid "Request User Info" #~ msgstr "Информация о пользователе" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Введите имя пользователя, информацию о котором вы хотите видеть:" #~ msgid "Request Shares List" #~ msgstr "Общие каталоги пользователя" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Неправильная схема URL Soulseek: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Пользователи сети Soulseek смогут скачивать файлы из общих папок. Обмен " #~ "файлами имеет решающее значение для работоспособности сети Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Обновить и_нформацию" #~ msgid "Chat Room Commands" #~ msgstr "Команды чата" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'комната'" #~ msgid "Join room 'room'" #~ msgstr "Присоединиться к комнате 'комната'" #~ msgid "/me 'message'" #~ msgstr "/me 'сообщение'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Показать вывод скрипта \"Сейчас играет\"" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'пользователь'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Добавить пользователя 'user' в список друзей" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'пользователь'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Удалить пользователя 'user' из списка друзей" #~ msgid "/ban 'user'" #~ msgstr "/ban 'пользователь'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Добавить пользователя 'user' в чёрный список" #~ msgid "/unban 'user'" #~ msgstr "/unban 'пользователь'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Удалить пользователя 'user' из чёрного списка" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'пользователь'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Добавить пользователя 'user' к вашему списку игнорирования" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'пользователь'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Удалить пользователя 'user' из вашего списка игнорирования" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'пользователь'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'пользователь'" #~ msgid "Request info for 'user'" #~ msgstr "Сделает запрос информации для 'пользователь'" #~ msgid "/ip 'user'" #~ msgstr "/ip 'пользователь'" #~ msgid "Show IP for user 'user'" #~ msgstr "Показать IP-адрес 'пользователя'" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'поисковый запрос'" #~ msgid "Start a new search for 'query'" #~ msgstr "Искать по 'поисковому запросу'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'запрос'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Искать в присоединённых комнатах 'запрос'" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'запрос'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Искать по списку друзей 'запрос'" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'пользователь' 'запрос'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'пользователь' 'текст сообщения'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Отправить сообщение 'message' пользователю 'user'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'пользователь'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Открыть окно чата с пользователем 'пользователь'" #~ msgid "Private Chat Commands" #~ msgstr "Команды чата" #~ msgid "Add user to your ban list" #~ msgstr "Добавить пользователя в список блокировки" #~ msgid "Add user to your ignore list" #~ msgstr "Игнорировать пользователя" #~ msgid "Browse shares of user" #~ msgstr "Посмотреть раздачи пользователя" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Для фильтрации с учетом порядка, а также для нескольких точных фраз можно " #~ "использовать вертикальные полосы.\n" #~ "Пример: Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Чтобы исключить не аудиофайлы, используйте !0 в фильтре продолжительности." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Фильтрует файлы на основе географического положения пользователей." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Чтобы снова просмотреть полные результаты, просто очистите все активные " #~ "фильтры." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Дополнительные параметры фильтрации смотрите в настройках." #~ msgid "File size" #~ msgstr "Размер файла" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Очистить все активные фильтры" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Цикл выполнения автодополнений при нажатии клавиши табуляции" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Скрыть раскрывающийся список, если совпадает только один" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Загружать каталоги в обратном алфавитно-цифровом порядке" #~ msgid "Incomplete file folder:" #~ msgstr "Каталог для незавершённых загрузок:" #~ msgid "Download folder:" #~ msgstr "Каталог для загрузок:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Сохранять раздачи друзей в:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Использовать UPnP для проброса прослушиваемых портов" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Делитесь общими каталогами с пользователями или друзьями в сети Soulseek, " #~ "позволяя загружать содержимое непосредственно с вашего устройства. " #~ "Скрытые файлы не будут доступны для загрузки." #~ msgid "Secondary Tabs" #~ msgstr "Дополнительные вкладки" #~ msgid "Chat room tab bar position:" #~ msgstr "Расположение панели вкладок комнаты чата:" #~ msgid "Private chat tab bar position:" #~ msgstr "Расположение панели вкладок чата:" #~ msgid "Search tab bar position:" #~ msgstr "Расположение панели поиска:" #~ msgid "User info tab bar position:" #~ msgstr "Расположение панели вкладки информации о пользователе:" #~ msgid "User browse tab bar position:" #~ msgstr "Расположение панели просмотра пользователя:" #~ msgid "Tab Labels" #~ msgstr "Метки на вкладках" #~ msgid "_Refresh Info" #~ msgstr "_Обновить информацию" #~ msgid "Block IP Address" #~ msgstr "Заблокировать IP-адрес" #~ msgid "Connected" #~ msgstr "Соединён" #~ msgid "Disconnected" #~ msgstr "Отключён" #~ msgid "Disconnected (Tray)" #~ msgstr "Отключён (Иконка)" #~ msgid "User(s)" #~ msgstr "Пользователь(ы)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Псевдоним \"%s\" ничего не вернул" #~ msgid "Alternative Speed Limits" #~ msgstr "Особые ограничения скорости" #~ msgid "Last played" #~ msgstr "Последний раз играл" #~ msgid "Playing now" #~ msgstr "Играет сейчас" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Не удается открыть путь к файлу %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Код ошибки %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Нет такого псевдонима (%s)" #~ msgid "Aliases:" #~ msgstr "Псевдонимы:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Удален псевдоним %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Нет такого псевдонима (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Особые ограничения скорости" #~ msgid "Aliases" #~ msgstr "Псевдонимы" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'команда' 'определение'" #~ msgid "Add a new alias" #~ msgstr "Добавить новый псевдоним" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'команда'" #~ msgid "Remove an alias" #~ msgstr "Удалить псевдоним" #~ msgid "Chat History" #~ msgstr "История чата" #~ msgid "Command aliases" #~ msgstr "Псевдонимы команд" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Ограничить скорость загрузки (КиБ/сек):" #~ msgid "Author(s):" #~ msgstr "Авторы:" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Ограничить скорость отдачи до (КиБ/сек):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Товар в списке желаний найден" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "На вкладках отображаются значки статуса пользователя вместо текста статуса" #~ msgid "Show file path tooltips in file list views" #~ msgstr "" #~ "Показывать всплывающие подсказки пути к файлу в представлениях списка " #~ "файлов" #~ msgid "Colored and clickable usernames" #~ msgstr "Цветные и интерактивные имена пользователей" #~ msgid "Notification changes the tab's text color" #~ msgstr "Менять цвет текста вкладки при уведомлениях" #~ msgid "Cancel" #~ msgstr "Отмена" #~ msgid "OK" #~ msgstr "ОК" #~ msgid "_Add to Buddy List" #~ msgstr "_Добавить в список друзей" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Очистить все загрузки, отмеченные определённым статусом." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Очистить все загрузки, отмеченные определенным статусом." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "использовать каталог для пользовательских данных. Например, списка " #~ "загрузок" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Неизвестный раздел конфигурации \"%s\"" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Неизвестный параметр конфигурации \"%(option)s\" в разделе \"%(section)s\"" #, python-format #~ msgid "Version %s is available" #~ msgstr "Доступна новая версия %s" #, python-format #~ msgid "released on %s" #~ msgstr "выпущена %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ работает в фоновом режиме" #, python-format #~ msgid "Private message from %s" #~ msgstr "Личное сообщение от %s" #~ msgid "Aborted" #~ msgstr "Прервано" #~ msgid "Blocked country" #~ msgstr "Заблокированная страна" #~ msgid "Finished / Aborted" #~ msgstr "Завершено / Прервано" #~ msgid "Close tab" #~ msgstr "Закрыть вкладку" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Вас упомянули в комнате %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Неизвестная команда %s" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Предупреждение: %(realuser)s пытается подделать личное сообщение " #~ "%(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Указанный вами сетевой интерфейс «%s» не существует. Измените или удалите " #~ "указанный сетевой интерфейс и перезапустите Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Диапазон портов {} - {}, не пригоден для использования. Необходимо " #~ "увеличить и/или сместить диапазон портов " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Обратите внимание, что часть вашего диапазона находится ниже 1024, это " #~ "обычно не разрешено в большинстве операционных систем, за исключением " #~ "Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Прогресс: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Ошибка ОС: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP недоступен в этой сети" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Не удалось сопоставить внешний порт WAN: %(error)s" #~ msgid "Room wall" #~ msgstr "Стена комнаты" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Порт прослушивания по умолчанию «2234» в большинстве случаев работает " #~ "нормально. Если вам нужно использовать другой порт, вы сможете изменить " #~ "его в настройках позже." #~ msgid "Show users with similar interests" #~ msgstr "Показать пользователей со схожими интересами" #~ msgid "Menu" #~ msgstr "Меню" #~ msgid "Expand / Collapse all" #~ msgstr "Развернуть / Свернуть всё" #~ msgid "Configure shares" #~ msgstr "Настроить общие файлы" #~ msgid "Create or join room…" #~ msgstr "Создать комнату или присоединиться к ней…" #~ msgid "_Room List" #~ msgstr "_Список комнат" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Активировать особые ограничения скорости раздачи" #~ msgid "Show log history" #~ msgstr "Показать журнал событий" #~ msgid "Result grouping mode" #~ msgstr "Группировать результаты" #~ msgid "Free slot" #~ msgstr "Свободный слот" #~ msgid "Save shares list to disk" #~ msgstr "Сохранить список раздач на диск" #~ msgid "_Away" #~ msgstr "_Отсутствую" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "" #~ "Не удалось загрузить файл пользовательского интерфейса %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Попытка сбросить индекс списка раздач из-за ошибки. Пожалуйста, " #~ "пересканируйте список раздач." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Невозможно получить доступ к файловому индексу списка раздач. Это могло " #~ "произойти из-за одновременной активности нескольких экземпляров " #~ "Nicotine+, проблем с правами доступа к файлам или другой проблемы в " #~ "Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ — клиент Soulseek" #~ msgid "enable the tray icon" #~ msgstr "добавить значок в область уведомлений" #~ msgid "disable the tray icon" #~ msgstr "не добавлять значок в область уведомлений" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Получить привилегии Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Публичный IP-адрес: %(ip)s, порт прослушивания: %(port)s" #~ msgid "unknown" #~ msgstr "неизвестный" #~ msgid "Notification" #~ msgstr "Уведомление" #~ msgid "Length" #~ msgstr "Продолжительность" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Изображение не сохранено, %s уже существует." #~ msgid "_Open" #~ msgstr "_Открыть" #~ msgid "_Save" #~ msgstr "_Сохранить" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Не удалось загрузить плагин «%s», не был найден." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Ошибка ввода-вывода: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Не удалось открыть путь к файлу: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Не удалось открыть URL: %s" #~ msgid "_Log Conversation" #~ msgstr "_Журнал диалога" #~ msgid "Result Filter List" #~ msgstr "Список фильтров результата" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "Вставьте , чтобы найти файлы меньше/больше заданного значения." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Файлы VBR отображают свой средний битрейт и обычно имеют меньший битрейт, " #~ "чем сжатый файл CBR 320 кбит/сек с тем же качеством звука." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "" #~ "Как и с фильтром для размера файла, можно использовать «>» больше, «<» " #~ "меньше или «=» равно." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Запрещать другим программам доступ на запись для загружаемых файлов " #~ "(отключить для NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Здесь будут храниться незавершённые загрузки." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Здесь будут храниться раздачи друзей (подкаталог для каждого отдельного " #~ "друга)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Переключать статус после нескольких минут бездействия:" #~ msgid "Protocol:" #~ msgstr "Протокол:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Каталог темы значков (требуется перезапуск):" #~ msgid "Establishing connection" #~ msgstr "Установка соединения" #~ msgid "Clear Groups" #~ msgstr "Очистить группы" #~ msgid "User List" #~ msgstr "Список пользователей" #~ msgid "_Reset Statistics…" #~ msgstr "_Сбросить статистику…" #~ msgid "Clear _Downloads…" #~ msgstr "Очистить _загрузки…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Очистить разд_ачи…" #~ msgid "Block User's IP Address" #~ msgstr "Заблокировать IP-адрес пользователя" #~ msgid "Ignore User's IP Address" #~ msgstr "Игнорировать IP-адрес пользователя" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Очистите каждую загрузку, которая завершила передачу или была поймана " #~ "фильтром." #~ msgid "Usernames" #~ msgstr "Имена" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Отображать историю сообщений чата при повторном присоединении к комнате" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Очистите каждую загрузку, которая либо завершила передачу, либо была " #~ "отменена удаленным пользователем." #~ msgid "Queue Position" #~ msgstr "Позиция" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "%(user)s напрямую ищет \"%(query)s\", возвращает %(num)i результатов" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[ЧАСТНЫЙ]" #~ msgid "Room wall (personal message set)" #~ msgstr "Стена комнаты" #~ msgid "Search Wishlist" #~ msgstr "Искать в списке желаемого" #~ msgid "Your config file is corrupt" #~ msgstr "Файл конфигурации повреждён" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "К сожалению, файл конфигурации был повреждён. Пожалуйста, перенастройте " #~ "Nicotine+.\n" #~ "\n" #~ "Мы переименовали ваш старый файл конфигурации в\n" #~ "%(corrupt)s\n" #~ "Если вы откроете этот файл в текстовом редакторе, есть вероятность " #~ "сохранить некоторые настройки." #~ msgid "User Interests" #~ msgstr "Интересы" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Выхожу из Nicotine+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Использование Python %(py_version)s" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Выхожу из Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Выход из Nicotine+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Пользователь:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Все %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s файлы " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Разрешить регулярные выражения для содержащих и исключающих фильтров" #, fuzzy #~ msgid "Quit…" #~ msgstr "Выход" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Запомните предыдущую основную вкладку при запуске" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Начните с поиска файлов по умолчанию." #~ msgid "Close Nicotine+?" #~ msgstr "Закрыть Nicotine+?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Вы действительно хотите выйти из Nicotine+?" #~ msgid "Run in Background" #~ msgstr "В фоновый режим" #~ msgid "_Online Notify" #~ msgstr "_Оповещать о появлении в сети" #~ msgid "_Prioritize User" #~ msgstr "_Отдать приоритет" #~ msgid "_Trust User" #~ msgstr "_Надёжный" #~ msgid "Request User's IP Address" #~ msgstr "IP-адрес пользователя" #~ msgid "Request IP Address" #~ msgstr "IP-адрес пользователя" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Введите имя пользователя, чей IP-адрес вы хотите видеть:" #~ msgid "Downloaded" #~ msgstr "Загружено" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Не удалось добавить загрузку %(filename)s в cписок раздач: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Автоматически делиться завершенными загрузками" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Эквивалент добавления вашей папки загрузки в качестве общедоступного " #~ "ресурса, однако файлы, загруженные в эту папку, будут автоматически " #~ "доступны другим пользователям (повторное сканирование не требуется)." #~ msgid "Unable to Share Folder" #~ msgstr "Невозможно предоставить общий доступ к каталогу" #~ msgid "The chosen virtual name is empty" #~ msgstr "Имя" #~ msgid "The chosen virtual name already exists" #~ msgstr "Виртуальное имя уже существует" #~ msgid "The chosen folder is already shared" #~ msgstr "Общий доступ к каталогу уже существует" #~ msgid "Set Virtual Name" #~ msgstr "Установить имя" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Введите имя для '%(dir)s':" #, fuzzy, python-format #~ msgid "Unable to show notification popup: %s" #~ msgstr "Невозможно показать всплывающее уведомление: %s" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Выбранное виртуальное имя пусто или уже существует" #~ msgid "The chosen folder is already shared." #~ msgstr "К выбранному каталогу уже предоставлен общий доступ." #, python-format #~ msgid "%s Properties" #~ msgstr "%s Свойства" #~ msgid "Finished rescanning shares" #~ msgstr "Пересканирование списка раздач завершено" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Ошибка при сканировании %(path)s: %(error)s" #~ msgid "Plugin List" #~ msgstr "Список плагинов" #~ msgid "Enable sound for notification popups" #~ msgstr "Включить звук для уведомлений" #, fuzzy #~ msgid "Show notification popups for:" #~ msgstr "Показывать всплывающие окна с уведомлениями для:" nicotine-plus-3.3.4/po/sk.po000066400000000000000000007601131461625273200157250ustar00rootroot00000000000000# Copyright (C) 2006-2023 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2023-07-25 18:31+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.0-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 #, fuzzy msgid "Soulseek Client" msgstr "Soulseek Klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 #, fuzzy msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafický klient pre sieť Soulseek peer-to-peer" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;zdieľanie;hudba;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafický klient pre sieť Soulseek peer-to-peer" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 #, fuzzy msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ je grafický klient pre sieť Soulseek peer-to-peer." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ má za cieľ byť príjemnou, bezplatnou a open source (FOSS) " "alternatívou k oficiálnemu klientovi Soulseek, ktorý poskytuje ďalšie " "funkcie pri zachovaní aktuálnych protokolov Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Hľa_dať súbory" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Downloady" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Prehliadať mnou zdieľané súbory" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Súkromný chat" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 #, fuzzy msgid "Nicotine+ Team" msgstr "Nicotine+" #: pynicotine/__init__.py:50 #, fuzzy, python-format msgid "Website: %s" msgstr "Spustené: %s" #: pynicotine/__init__.py:56 #, fuzzy msgid "show this help message and exit" msgstr "zobraziť túto správu Pomocníka a ukončiť" #: pynicotine/__init__.py:59 #, fuzzy msgid "file" msgstr "súbor" #: pynicotine/__init__.py:60 #, fuzzy msgid "use non-default configuration file" msgstr "použitie ne defaultového konfiguračného súboru" #: pynicotine/__init__.py:63 #, fuzzy msgid "dir" msgstr "Dir" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "používanie predvoleného adresára pre doplnky" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "spustenie programu bez zobrazovania okna" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "Ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "viazať zásuvky na danú IP (užitočné pre VPN)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "prístav" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "Počúvajte na danom porte" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "Prehľadať zdieľané súbory" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "spustenie programu v režime bezhlavého (bez GUI)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "zobraziť verziu a ukončiť" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Používate nepodporenú verziu Pythonu (%(old_version)s).\n" "Mali by ste nainštalovať Python %(min_version)s alebo novší." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Nepodarilo sa skenovať zdieľanie. Zatvorte ďalšie inštancie Nicotine+ a " "skúste to znova." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Používateľ %s je preč" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Používateľ %s je online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Používateľ %s nie je pripojený" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Zoznam kamarátov" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Boli ste pridaný do súkromnej izby: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Chatová správa od používateľa '%(user)s' v miestnosti '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Nepodarilo sa vytvoriť adresár '%(path)s', hlásená chyba: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Chyba pri zálohovaní konfigurácie: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Konfigurácia zálohovaná na: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Načítavam %(program)s %(version)s" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Ukončenie Nicotine+ [X19x], %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "Ukončuje" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "uzavretie aplikácie" #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Načítavam %(program)s %(version)s" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "Pred pripojením musíte zadať používateľské meno a heslo…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Chyba: Filter pre download zlyhal! Skontrolujte vaše filtre. Príčina: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Chyba: %(num)d Filtre pre download zlyhali! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s stiahnutých od %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Súbor stiahnutý" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Spustené: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "CHYBA: Spúšťanie '%(command)s' zlyhalo: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s stiahnutých od %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Stiahnutý priečinok" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Spustené na adresár: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Nepodarilo sa presunúť \"%(tempfile)s\" na \"%(file)s\": %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Chyba adresára pre download" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Sťahovanie dokončené: používateľ %(user)s, súbor %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Sťahovanie zrušené, používateľ %(user)s, súbor %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Vstupno-výstupná chyba pri downloade: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Nebolo možné nastaviť zámok na súbor - V/V chyba: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Súbor %(path)ssa nedá uložiť: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Sťahovanie spustené: používateľ %(user)s, súbor %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, fuzzy, python-format msgid "Cannot find %s, please install it." msgstr "Nedá sa nájsť %s, nainštalujte ho." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Nie je k dispozícii žiadne grafické prostredie, používa sa bezhlavý (bez " "GUI) režim" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Pripojiť sa" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Odpojiť sa" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "Privile_govaný" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Preferences" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Quit" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "Prehliadať mnou zdieľané súbory" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Prehliadať mnou zdieľané súbory" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Prehliadať mnou zdieľané súbory" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "Prehľadať zdieľané súbory" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "Skenovanie zdieľaných súborov" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Keyboard skratky" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "asistent _Setup" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "Prenosy" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Nahlásiť _Bug" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Vylepšite T_ranslations" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "O ubytovaní _Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Súbor" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Shares" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Help" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Prehliadať mnou zdieľané súbory" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Vyskakovacie okno s upozornením sa nedá zobraziť: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Naozaj chcete vystúpiť z Nicotine+?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Naozaj chcete vystúpiť z Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "Nie" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Spustiť na pozadí" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Prestaňte Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Akcie nie sú k dispozícii" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Skontrolujte, či sú pripojené externé disky a či sú povolenia priečinka " "správne." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Cancel" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "Skúsiť _znova" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Vynútiť opätovné skenovanie" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Heslo:" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Používateľ %s už existuje a zadané heslo je neplatné. Ak sa prvýkrát " "prihlásite, vyberte iné používateľské meno." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Zmena prihlasovacích údajov" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Používatelia sťahovania správ" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Odoslať súkromnú správu všetkým používateľom, ktorí od vás sťahujú:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Poslať správu" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Správy" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Pošlite súkromnú správu všetkým priateľom online:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Výber súboru zoznamu uložených zdieľaní" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kritická chyba" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ sa stretol s kritickou chybou a musí odísť. Skopírujte nasledujúcu " "správu a zahrňte ju do hlásenia o chybe:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Prestaňte Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Kopírovať &nahlásiť chybu" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Stav" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Krajina" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Používateľ" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Rýchlosť" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Súbory" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Dôveryhodný" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Upozornenie" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Uprednostňované" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Naposledy videný" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Poznámka" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Pridať používateľa do zoznamu" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Odstrániť" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Nikdy nevidený" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Pridať používateľa do zoznamu" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Pridajte niekoľko poznámok priradených k používateľovi %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Add…" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Vytvoriť súkromnú miestnosť" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Naozaj chcete vytvoriť novú miestnosť \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Urobte si izbu súkromnou" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Hľa_dať súbory tohto používateľa" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Nájsť…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopírovať" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopírovať všetko" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Vymazanie zobrazenia aktivity" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "Opustiť túto miestnosť" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "_Kopírovať URL" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Pripojený v miestnostiach " #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Odstrániť denník miestnosti…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Poslať správu" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s vstúpil do miestnosti" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s vás spomenul v miestnosti %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(user)s vás spomenul v miestnosti %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "%(user)s vás spomenul v miestnosti %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s opustil miestnosť" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s zmenil stav na Preč" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s sa vrátil" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Odstrániť prihlásené správy?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Naozaj chcete natrvalo odstrániť všetky prihlásené správy pre túto miestnosť?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Džibutsko" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Spustené: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Chyba pri načítaní najnovšej verzie" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Moderný" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Verzia klienta" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "asistent _Setup" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtuálny priečinok" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Priečinok" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Ukončené" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Ďalšie" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Pridanie zdieľaného priečinka" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Zdieľané súbory" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Zadajte nový virtuálny názov pre \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Hodnotenie" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Vlastnosti súboru" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Vlastnosti súboru (%(num)i z %(total)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Vlastnosti súboru (%(num)i z %(total)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Použiť" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Sčítať…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Editovať…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "Nastavenia" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Položka" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Záujmy" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Neznáma" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Skontrolovať stav portu" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Zmena hesla odmietnutá" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Zadajte nové heslo pre váš účet Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Momentálne ste odhlásený zo siete Soulseek. Ak chcete zmeniť heslo " "existujúceho účtu Soulseek, musíte sa do tohto účtu prihlásiť." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Zadajte heslo, ktoré sa má použiť pri prihlasovaní:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Heslo:" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Zmenené" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Nikto" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Každý" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Kamaráti" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Dôveryhodní používatelia" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "nič" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Ďalší súbor" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "Otvoriť v Správcovi súborov" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Hľadať" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Pozastavené" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Obnoviť" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "P_rehliadať súbory" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntax: Nerozlišujú sa malé a veľké písmená. Ak je povolené, možno " "použiť regulárne výrazy Pythonu, inak sú podporované iba zhody so zástupnými " "znakmi *." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filter" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "S_tiahnuť súbor(y)" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Zadajte nový filter pre download:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Povoliť regulárne výrazy" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Upraviť filter" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Zmeňte tento filter pre download:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d zlyhal! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filtre úspešné" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Zrušiť" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Skúsiť znova" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Cyklická obsluha" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Prvý dnu, prvý von" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Meno používateľa" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Blokovať IP _adresu..." #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ignorovať používateľa" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Blokované IP adresy:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* je zástupný znak" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Zakázať používateľa" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Blokovať IP _adresu..." #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Vzorka" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Nahradenie" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Vzorka" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Zadajte vzor, ktorý chcete cenzurovať. Pridajte medzery okolo vzoru, ak " "nechcete priradiť reťazce do slov (môže zlyhať na začiatku a na konci " "riadkov)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Cenzurované vzory" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Nahradenie" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Zadajte vzor textu a nahradenie:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Nahradenie" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Východzie" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Zobrazovať potvrdzovacie okno pri zatváraní hlavného okna" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "Spustiť na pozadí" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "smelý" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "Kurzíva" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normálny" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Správy" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Zoznam kamarátov pri chatovacích miestnostiach" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Hore" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Dolu" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Vľavo" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Vpravo" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Preč" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Zmenené" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Zvýrazňovať" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Okno:" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Pripojený:" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Preč (zásobník)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Správa (zásobník)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Komentár" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Obslužný program" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Zadajte protokol a príkaz pre hander URL:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Upraviť komentáre" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Zadajte nový virtuálny názov pre \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Meno používateľa" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "Meno klienta (napr. amarok, odvážne, exaile) alebo prázdne pre auto:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Užívateľské meno:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Komentár" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Tituly" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Práve hrá (zvyčajne \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Interpret" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Trvanie" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitový tok" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Komentár" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Stopa číslo" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Rok" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Názov súboru (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Povolené" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Pluginy" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Nie je vybratý žiadny plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Sieť" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Interface" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Zdieľané súbory" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Uploady" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Hľadania" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "_Prehliadanie súborov používateľa" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "Chat" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Teraz hrá" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Logovanie" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Zakázaní používatelia:" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Ignorovaní používatelia:" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Pluginy" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "Obslužný program" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Preferencie" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Výber názvu súboru pre zálohovanie konfigurácie" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Prenosy" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Celkom od %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Obnoviť štatistiky prenosu?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Naozaj chcete obnoviť štatistiky prenosu?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "Prehľadať zoznam prianí" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Prianie" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "Vyhľa_dať túto položku" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Hodnotenie" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Zadajte nový virtuálny názov pre \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Prehľadať zoznam prianí" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Naozaj chcete vymazať svoj zoznam želaní?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Cesta" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Resume" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "Pozastavené" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Vyčistiť hotové/zrušené" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Ukončené" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pozastavené" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrované" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Odstránené" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Vo fronte…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Všetko…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Vymazať stiahnuté súbory vo fronte" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Downloady" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Sťahovať súbory %(num)i?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "Naozaj chcete sťahovať súbory %(num)i z priečinka %(user)s%(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "S_tiahnuť adresár" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Má rád(a)" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Nemám rád(a)" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Hodnotenie" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Položka" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "D_oporučenia pre túto položku" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "_Mám rád(a) toto" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "_Mám rád(a) toto" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Doporučenia pre %s" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Podobní používatelia" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Doporučenia pre %s" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Podobní používatelia" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Súkromná správa od %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Našli sa výsledky zoznamu želaní" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "_Prehliadanie súborov používateľa" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Chatovacie miestnosti" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Záujmy" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Chat" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "Pripojenia" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "Správy" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "Prenosy" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "Zmiešaný" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Nájsť…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopírovať" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopírovať všetko" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Zobraziť denníky ladenia" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Font pre prenosy" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategórie" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Vyčistiť protokol" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Súbory na stiahnutie: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Nahrávanie: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Skenovanie zdieľaných súborov" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Skenovanie zdieľaných súborov" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "" #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Poslať správu" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Miestnosť" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Používatelia" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Pripojiť sa k miestnosti" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Opustiť miestnosť" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Zriecť sa súkromnej miestnosti" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Zrušiť členstvo v miestnosti" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Zatvorte všetky karty…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "Zavrieť tento panel" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Zobraziť denník chatu" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Odstrániť denník chatu…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Prenosy" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Naozaj chcete natrvalo odstrániť všetky prihlásené správy pre tohto " "používateľa?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Správy odoslané, keď ste boli offline. Časové pečiatky sú hlásené serverom " "a môžu byť vypnuté." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Globálne" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Kamaráti" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Miestnosti" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Používateľ" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "Vo Fronte" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Typ súboru" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Názov súboru" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Veľkosť" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kvalita" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopírovanie _File cesty" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "_Kopírovať URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "K_opírovať URL priečinka" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "S_tiahnuť súbor(y)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Stiahnuť súbor(y) _do…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "S_tiahnuť súbor(y)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Stiahnuť súbor(y) _do…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Zobraziť profil používateľa" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "P_rehliadať súbory" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "F_ile vlastnosti" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopírovať hľadaný výraz" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Vyčistiť všetky výsledky" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Vyčistiť filtrované" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Zapnúť filtre" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[SÚKROMNÉ]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Result filtre [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "Zapnúť filtre" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Vyčistiť všetky výsledky" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Pridať Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Odstrániť alias" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Vyberte výsledky používateľa" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Totálny" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Výsledky" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Vyberte Cieľ pre stiahnutie súboru(ov) od používateľa" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Výber priečinka" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Vo fronte" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "prioritné" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "(privilegovaný)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Získavanie stavu" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Prenášam" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Spojenie ukončené vzdialeným používateľom" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Pripájanie sa" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Používateľ sa odpojil" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Zrušiť" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Chyba adresára pre download" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Chyba lokálneho súboru" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Zakázaný" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Súbor nie je zdieľaný" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Čakajúce vypnutie" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Prenosy" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Vo fronte" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Percent" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Ubehnutý čas" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Zostávajúci čas" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "Zoznam cenzúr" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Otvoriť v Správcovi súborov" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "Hľadať" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Vyčistiť protokol" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Vybrať prenosy používateľa" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "Zrušiť" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Vyčistiť hotové/zrušené" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Vyčistiť hotové/zrušené" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Zlyhalo" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Používateľ sa odpojil" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Vymazať nahrávania vo fronte" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Vyčistiť všetky výsledky" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Save zoznam zdieľaní na disk" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Nahrať priečinok (s podpriečinkami) používateľovi" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopírovať URL adresára" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "S_tiahnuť súbor(y)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Stiahnuť súbor(y) _do…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Názov súboru" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Stiahn_uť súbor(y)" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Nahrať priečinok do…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Stiahnuť adresár _do…" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Zoznam zdieľaných súborov používateľa je prázdny. Buď používateľ nič " "nezdieľa, alebo zdieľa súbory súkromne." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Nie je možné požadovať zdieľané súbory od používateľa. Buď je používateľ " "offline, obaja máte uzavretý port počúvania, alebo sa problém s dočasným " "pripojením." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Vyberte Cieľ na stiahnutie priečinka od používateľa" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Nahrať priečinok (s podpriečinkami) používateľovi" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Nahrať priečinok do…" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Uploady" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Vyberte Cieľ pre stiahnutie súboru(ov) od používateľa" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Nahrať súbory" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Obraz:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Uložiť obrázok" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Nepodarilo sa načítať obrázok pre používateľa %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Nie je možné požadovať informácie od používateľa. Buď máte uzavretý port " "počúvania, používateľ je offline alebo sa problém s dočasným pripojením." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Odstrániť alias" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Pridať kamaráta…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Zakázať používateľa" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ignorovať používateľa" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Áno" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Nie" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Zadajte celé číslo!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Darujte dni svojich privilégií Soulseek používateľovi %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s zostávajúcich dní" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Venovať privilégia" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Venovať privilégia" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Zatvoriť" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Áno" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Hľa_dať súbory" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Výber priečinka" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Vybrať všetky" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Výber obrázka" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Všetky obrázky" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Uložiť ako…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(Žiadne)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "Zavrieť tento panel" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Zavrieť tento panel" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Zadajte používateľa, ku ktorému chcete uploadovať:" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Neprečítané karty" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Zavrieť tento panel" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "Zavrieť tento panel" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Vybraté súbory" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "P_rehliadať súbory" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Pridať kamaráta…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Zobraziť IP _adresu" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Súkromné miestnosti" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Odstrániť zo súkromnej miestnosti %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Pridať do súkromnej miestnosti %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Odstrániť zo súkromnej miestnosti %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Pridať do súkromnej miestnosti %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- staré správy nad ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Spustené: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Zvuk" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Obrázok:" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Archív" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Zmiešaný" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokument/Text" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Chyba načítania vlastnej ikony %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Stĺpec #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Ungrouped" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Kopírovať URL adresára" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Zoskupiť podľa používateľa" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Naozaj chcete vystúpiť z Nicotine+?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Používateľ %s už existuje a zadané heslo je neplatné. Ak sa prvýkrát " "prihlásite, vyberte iné používateľské meno." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Heslo" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Ak chcete vytvoriť nový účet Soulseek, vyplňte požadované používateľské meno " "a heslo. Ak už máte účet, vyplňte svoje existujúce prihlasovacie údaje." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Nepodarilo sa zapisovať do súboru denníka \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Súbor %(path)ssa nedá uložiť: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Spojené arabské emiráty" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua & Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albánsko" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Arménsko" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktída" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentína" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Americká Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Rakúsko" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Austrália" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Ålandské ostrovy" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Azerbajdžan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosna a Hercegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladéš" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgicko" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulharsko" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrajn" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Svätý Barthelemy" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermudy" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunejsko-darussalamský štát" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolívia" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius a Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brazília" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamy" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhután" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Ostrov Bouvet" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Bielorusko" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kokosové ostrovy (Keeling)" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Konžská demokratická republika" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Stredoafrická republika" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Švajčiarsko" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Pobrežie Slonoviny" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cookove ostrovy" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Čile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Čína" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Kolumbia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Kostarika" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Vianočný ostrov" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Cyprus" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Česko" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Nemecko" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Džibutsko" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Dánsko" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikánska republika" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Alžírsko" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Ekvádor" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estónsko" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egypt" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Západná Sahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Španielsko" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiópia" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Európa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Fínsko" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fidži" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandské ostrovy (Malvinas)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronézia" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Faerské ostrovy" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Zrušiť" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Veľká Británia" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Gruzínsko" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Francúzska Guyana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltár" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grónsko" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Rovníková Guinea" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Grécko" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Južná Georgia a Južné Sandwichove ostrovy" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hongkong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Počuli sme - McDonaldove ostrovy" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Chorvátsko" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Maďarsko" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonézia" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Írsko" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Izrael" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Ostrov Man" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Územie Britského Indického oceánu" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Irán" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Taliansko" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamajka" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordánsko" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japonsko" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Keňa" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgizsko" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kambodža" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komory" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Svätý Krištof & Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Severná Kórea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Južná Kórea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuvajt" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Kajmanie ostrovy" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazachstan" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "Svätá Lucia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Lichtenštajnsko" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Srí Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Libéria" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Litva" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxembursko" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Lotyšsko" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Líbia" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Maroko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldavsko" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Čierna Hora" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshallove ostrovy" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Severné Macedónsko" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Mjanmarsko" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongolsko" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Severné Mariány" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinik" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauritánia" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Maurícius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldivy" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexiko" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malajzia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Mozambik" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namíbia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Nová Kaledónia" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Ostrov Norfolk" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigéria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nikaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Holandsko" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Nórsko" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepál" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Nový Zéland" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Omán" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Francúzska Polynézia" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua-Nová Guinea" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "riadkov" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Poľsko" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Svätý Pierre & Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Portoriko" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Palestínsky štát" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugalsko" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguaj" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Rumunsko" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Srbsko" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Rusko" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudská Arábia" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Šalamúnove ostrovy" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychely" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudán" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Švédsko" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "Svätá Helena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovinsko" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard & Jan Mayen Ostrovy" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovenská republika" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Maríno" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somálsko" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Názov súboru" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Južný Sudán" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome & Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "Salvádor" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Sýria" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Ostrovy Turks a Caicos" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Čad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Francúzske južné územia" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Thajsko" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadžikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Východný Timor" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkménsko" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisko" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Türkiye" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad &tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzánia" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukrajina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "Menšie odeďové ostrovy USA" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "Spojené štáty americké" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguaj" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Svätá stolica (Vatikánsky mestský štát)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Svätý Vincent - Grenadíny" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Britské Panenské ostrovy" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Americké Panenské ostrovy" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis & Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Južná Afrika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Prevod textu na reč pre správu zlyhal: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Uveďte používateľské meno Last.fm aj kľúč API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Formát Teraz prehrávané:" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Nepodarilo sa pripojiť k audioscrobbleru: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Nepodarilo sa získať nedávnu skladbu z Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Nepodarilo sa nájsť vhodný MPRIS prehrávač" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Našiel som viacero mpris prehrávačov: %(players)s. Použitie: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automaticky zistený MPRIS prehrávač: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Pri dotazovaní %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Uveďte svoje používateľské meno ListenBrainz" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: Nepodarilo sa pripojiť k ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Zdá sa, že práve teraz nič nepočúvate" #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: Nepodarilo sa získať aktuálnu skladbu z ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Hľadania" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Doplňovať zabudované /Príkazy" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Nie je možné pripojiť k serveru. Dôvod: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Odpojený od serveru %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Prepnúť stav prítomný/preč" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Zapnúť filtre" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Vyčistiť okno s chatom" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Povedať niečo v tretej osobe" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Oznámte aktuálne prehrávanú skladbu" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Pripojte sa alebo vytvorte miestnosť…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Opustiť túto miestnosť" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Vyslovte správu v určenej chatovacej miestnosti" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Súkromný chat" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Zavrieť okno súkromného chatu" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Úda_je o používateľovi" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Pošlite súkromnú správu všetkým priateľom online:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Pridať používateľa 'používateľ' do zoznamu zakázaných používateľov" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Odstrániť používateľa 'používateľ' zo zoznamu zakázaných používateľov" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Prehliadať súbory používateľa 'používateľ'" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Úda_je o používateľovi" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Zobraziť IP adresu používateľa 'používateľ'" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blokovať pripojenia od používateľa alebo adresy IP" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Odstrániť používateľa 'používateľ' zo zoznamu zakázaných používateľov" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Stlmiť správy od používateľa alebo adresy IP" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Odstrániť používateľa 'používateľ' zo zoznamu ignorovaných" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Pridať Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Odstrániť alias" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Prehľadať zdieľané súbory" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Prehľadať zdieľané súbory" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Spustite globálne vyhľadávanie súborov" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Vyhľadávanie súborov a priečinkov (presná zhoda)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Vyhľadávanie súborov a priečinkov (presná zhoda)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Prehľadávať zoznam zdieľaných súborov na výskyt dotazu" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Výpis %(num)i dostupných príkazov:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Výpis %(num)i dostupných príkazov zodpovedajúcich \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Ak chcete zobraziť zoznam podobných príkazov, zadajte %(command)s" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Ak chcete zobraziť zoznam dostupných príkazov, zadajte %(command)s" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s vstúpil do miestnosti" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Zavrieť okno súkromného chatu" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Zakázaní (%s)" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Zakázaní (%s)" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorovaní používatelia:" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ignorovať používateľa" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Načítava sa systém pluginov" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Doplnok %(name)s sa nedá načítať. Názov priečinka pluginu obsahuje neplatné " "znaky: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Konfliktný príkaz %(interface)s v doplnku %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Načítaný plugin %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Doplnok %(module)s sa nedá načítať\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Nevyložený plugin %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Doplnok %(module)s sa nedá uvoľniť\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s zlyhal s chybou %(errortype)s: %(error)s.\n" "Sledovanie: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Vlastný popis:" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Chýba argument %s" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Chybná SoulSeek meta-url: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Použitie: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Neznámy príkaz: %(command)s. Ak chcete zobraziť zoznam dostupných príkazov, " "zadajte %(help_command)s." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Nenašli sa žiadne zariadenia UPnP" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Nepodarilo sa preposlať externý port %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Externý port %(external_port)s úspešne preposlaný na lokálny port IP " "adresy %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Súkromná správa od %(user)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Hľadá sa položka zoznamu želaní \"%s\"" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Čakacia doba zoznamu želaní nastavená na %s sekundy" #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Používateľ %(user)s vyhľadáva \"%(query)s\", čím vráti výsledky %(num)i" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Skenovanie priateľmi zdieľaných súborov" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Skenovanie priateľmi zdieľaných súborov" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Opätovné skenovanie dokončené: Našlo sa %(num)s priečinkov" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Pri opätovnom skenovaní zdieľaných zdieľaní sa vyskytla závažná chyba. Ak " "tento problém pretrváva, odstráňte %(dir)s/*.db a skúste to znova. Ak to " "nepomôže, zadajte správu o chybe s touto zahrnutou stopou zásobníka: " "%(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Chyba pri skenovaní súboru %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Chyba pri skenovaní priečinka %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Chyba pri skenovaní metaúdajov súboru %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Opätovné skenovanie bolo prerušené z dôvodu nedostupných zdieľaní" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Používateľ %(user)s prehliada zoznam zdieľaných súborov" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Nepodarilo sa načítať zdieľaný priečinok %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Databáza zdieľaných akcií sa nedá čítať. Prosím, prezídu svoje akcie. Chyba: " "%s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Zadané sieťové rozhranie '%s' neexistuje" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Nedá sa počúvať na porte %(port)s. Uistite sa, že ho nepoužíva žiadna iná " "aplikácia, alebo vyberte iný port. Chyba: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Načúvam na porte %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Nepodarilo sa pripojiť k serveru %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Automatické pripojenie na server pri spustení" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Pripájam sa k %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Pripojený k serveru %(host)s:%(port)s, prihlasovanie…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Odpojený od serveru %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Niekto sa prihlásil do vášho účtu Soulseek inde" #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Sťahovanie dokončené: používateľ %(user)s, súbor %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Upload zrušený, používateľ %(user)s, súbor %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Vstupno-výstupná chyba pri uploade: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "Upload začal: používateľ %(user)s, súbor %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Nepodarilo sa vytvoriť adresár '%(folder)s', hlásená chyba: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Nahrávanie zdieľaných súborov z disku zlyhalo: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Uložený zoznam zdieľaných súborov pre používateľa \"%(user)s\" až %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "Nepodarilo sa uložiť zdieľané súbory '%(user)s', hlásená chyba: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Obrázok uložený do %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Nepodarilo sa uložiť súbor s konfiguráciou, vstupno/výstupná chyba: %s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "%(user)s sa dotazuje na používateľské informácie" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nie je možné pripojiť k serveru. Dôvod: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Nepodarilo sa pripojiť" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "Ip používateľa %s, pretože tento používateľ je offline" #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP adresa %(user)s je %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek Klient" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i privilegovaných používateľov" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Nemáš žiadne privilégiá. Oprávnenia sa nevyžadujú, ale umožňujú, aby sa " "súbory na prevzatie predbehli pred nepriťažených používateľov." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Privilégia pre download platné %(days)i dní, %(hours)i hodín, %(minutes)i " "minút, %(seconds)i sekúnd." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Vaše heslo bolo zmenené. Heslo je %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Zmena hesla odmietnutá" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Súbor %(path)ssa nedá uložiť: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Nepodarilo sa uložiť súbor s konfiguráciou, vstupno/výstupná chyba: %s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Pri čítaní súboru %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Pokus o načítanie zálohy súboru %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Súbor %(path)s sa nedá zálohovať] : %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Súbor %(path)ssa nedá uložiť: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Nepodarilo sa obnoviť predchádzajúci súbor %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Pridať kamaráta…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Hľadania" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Hľadania" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Poslať správu" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Prepnúť Text-Na-Reč" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Pomoc s príkazmi pre chatovaciu miestnosť" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Log" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Stena miestnosti" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Stena miestnosti" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Vytvoril" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Preložil" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licencia" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Predchádzajúci súbor" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Set hore…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Ak je vaše požadované používateľské meno už prijaté, zobrazí sa výzva na " "jeho zmenu." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Ak je váš odpočúvací port zatvorený, budete sa môcť pripojiť len k " "používateľom, ktorých porty na počúvanie sú otvorené." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "V prípade potreby nižšie vyberte iný port na počúvanie. Dá sa to urobiť aj " "neskôr v preferenciách." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Stiahnuť súbor(y) _do…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Zdieľané súbory" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Používatelia Soulseek budú môcť sťahovať z vašich zdieľaní. Prispejte do " "siete Soulseek zdieľaním svojej vlastnej zbierky a opätovným zdieľaním toho, " "čo ste si stiahli od iných používateľov." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Ste pripravení používať Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Darovanie Soulseekovi vám udeľuje privilégiá na určité časové obdobie. Ak " "máte oprávnenia, sťahovanie sa zobrazí vo fronte pred nepriťa cťou " "používateľov." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Predchádzajúci súbor" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Ďalší súbor" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Názov súboru" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Posledná rýchlosť" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Vývoz" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Klávesové skratky" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Všeobecné" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Pripojiť sa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Odpojiť sa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Prehľadať zdieľané súbory" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Zobraziť tablu denníka" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Konfigurácia zapisovania do denníka" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Ukončiť" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Ponuky" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Otvoriť hlavnú ponuku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Otvoriť kontextovú ponuku" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Karty" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Zmeniť primárnu kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Prejsť na predchádzajúcu sekundárnu kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Prejsť na ďalšiu sekundárnu kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Zavrieť sekundárnu kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Zavrieť sekundárnu kartu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Zoznamov" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Vybrať všetky" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Odstrániť vybraný riadok" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Hodnotenie" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Krajina" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Prilepiť" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Vložiť emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Vybrať všetky" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Nájsť" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Nájsť ďalšiu zhodu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Nájsť predchádzajúcu zhodu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Prenosy" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Vybrať prenosy používateľa" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Pozastaviť / prerušiť prenos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Stiahnuť adresár _do…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Save zoznam zdieľaní na disk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Obnoviť súbory" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Rozbaliť / Zabaliť všetko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Priečinok sa nedá zdieľať" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Hľadať" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "Zapnúť filtre" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Verzia klienta" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Okamžité sťahovanie" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Stiahnuť" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Doplňovať alias /Príkazy" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Stiahn_uť súbor(y)" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Totálny" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Resume" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Položky zoznamu želaní sa v pravidelných intervaloch automaticky vyhľadávajú " "na objavovanie neobvyklých súborov." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Pridať želanie…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Vyčistite všetko…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Súbor stiahnutý" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Vyčistiť hotové" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Downloady" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Vyčistite všetko…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Záujmy" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Pridajte niečo, čo sa vám páči…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Nemám rád(a)" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Pridajte niečo, čo sa vám nepáči…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Doporučenia pre %s" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Otvoriť hlavnú ponuku" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Miestnosť" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Meno používateľa" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Hľadania" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "Vyhľadávacie vzory: so slovom = výraz, bez slova = -term" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Rozsah vyhľadávania" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "Prehľadať zoznam prianí" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfigurácia vyhľadávaní" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Zadajte hľadaný výraz na vyhľadanie súborov zdieľaných inými používateľmi v " "sieti Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Režim zoskupenia súborov" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfigurácia stiahnutí" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Súbory, ktoré si stiahnete od iných používateľov, sú tu vo fronte a môžu byť " "pozastavené a obnovené na požiadanie" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfigurácia nahrávania" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Pokusy používateľov o prevzatie zdieľaných súborov sú v rade a spravované tu" #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "Zoznam cenzúr" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Otvorí lokálny zoznam zdieľaných súborov, ktoré boli predtým uložené na disk" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "Skenovanie zdieľaných súborov" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Zadajte meno používateľa, ktorého zdieľané súbory chcete prehľadávať. Zoznam " "môžete uložiť aj na disk a neskôr ho skontrolovať." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Nemám rád(a)" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfigurácia zapisovania do denníka" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Zadajte meno používateľa a zobrazte jeho popis používateľa, informácie a " "osobný obrázok" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "História chatu" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfigurácia zdieľaní" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Zadajte meno používateľa a začnite s ním textovú konverzáciu v súkromí" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Správy" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ignorovaní používatelia:" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Pridanie používateľov do zoznamu kamarátov na zdieľanie konkrétnych " "priečinkov s nimi a prijímanie upozornení, keď sú online" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Pripojte sa alebo vytvorte miestnosť…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Pripojte sa k existujúcej chatovacej miestnosti alebo vytvorte novú " "miestnosť na chatovanie s ostatnými používateľmi v sieti Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Zobraziť profil používateľa" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Hľadania" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Pripojenia" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Sťahovanie (rýchlosť / aktívni používatelia)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Nahrávanie (rýchlosť / aktívni používatelia)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Hľadania" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Sťahovanie spustené: %s" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Obmedzovať rýchlosť poskytovania na" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Alternatívny rýchlostný limit sťahovania (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternatívny rýchlostný limit sťahovania (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Hľadania" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Zoznam obnovy izieb" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Show informačný kanál správ z verejných diskusných miestností" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "Pridať do súkromnej miestnosti %s" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Funkcia steny miestnosti umožňuje používateľom v miestnosti zadať jedinečnú " "správu, ktorá sa má zobraziť ostatným. Aktuálne správy sa zobrazujú v hornej " "časti." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "_Poslať správu" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Hľa_dať súbory" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Filtre výsledkov vyhľadávania sa používajú na spresnenie zobrazených " "výsledkov vyhľadávania." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Každý zoznam výsledkov vyhľadávania má svoj vlastný filter, ktorý je možné " "odhaliť prevšouením tlačidla Filtre výsledkov. Filter sa skladá z viacerých " "polí, z ktorých všetky sa použijú pri stlačení klávesu Enter do " "ktoréhokoľvek z jeho polí. Filtrovanie sa okamžite aplikuje na výsledky, " "ktoré už boli prijaté, a tiež na tie, ktoré ešte nedorazia. Ak chcete znova " "zobraziť úplné výsledky, jednoducho vymažte filter všetkých výrazov a znova " "ho použite. Ako už názov napovedá, filter výsledkov vyhľadávania nemôže " "rozbaliť pôvodné vyhľadávanie, môže ho len zúžiť. Ak chcete rozšíriť alebo " "zmeniť hľadané výrazy, vykonajte nové vyhľadávanie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Ako už názov napovedá, filter výsledkov vyhľadávania nemôže rozšíriť vaše " "pôvodné vyhľadávanie, môže ho iba zúžiť. Ak chcete rozšíriť alebo zmeniť " "hľadané výrazy, vykonajte nové vyhľadávanie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Zapnúť filtre" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Zahrnúť text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Zobrazia sa súbory a priečinky obsahujúce tento text." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Prípad je necitlivý, ale poradie slov je dôležité: \"Spears Brittany\" " "neukazuje žiadne \"Bretónske spears\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Použiť | (alebo potrubia) na oddelenie niekoľkých presných fráz. Príklad:\n" " Remix|Dub Mix|Inštrumentálne" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Vylúčiť text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Ako je uvedené vyššie, súbory a priečinky sa odfiltrujú, ak sa text zhoduje." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtruje súbory na základe prípony súboru." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Je možné zadať viacero prípon súborov, čo zase rozšíri zoznam výsledkov.\n" " Príklad: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Filter je tiež možné prevrátiť zadaním prípon súborov, ktoré nechcete vo " "výsledkoch.\n" " Príklad: !mp3|! jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Veľkosť súboru" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtruje súbory na základe ich veľkosti súboru." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Predvolene je použitá jednotka bajtov a súbory väčšie alebo rovné hodnote sa " "budú zhodovať." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Pridajte b, k, m alebo g (alternatívne kib, mib alebo gib) na určenie " "jednotiek bajtov, kibibytov, mebibytov alebo gibibajtov:\n" " <1024k nájde súbory 1024 kibibajtov (tj 1 mebibajt) alebo menšie." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Prepend = hodnota na určenie presnej zhody:\n" " = 1024 sa zhoduje iba so súbormi, ktoré majú veľkosť 1024 bajtov (t. j. " "1 kibibajt)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Prepend = hodnota na určenie presnej zhody:\n" " = 1024 sa zhoduje iba so súbormi, ktoré majú veľkosť 1024 bajtov (t. j. " "1 kibibajt)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Ak chcete nájsť súbory menšie/väčšie ako zadaná hodnota, pridajte pred znak " "< alebo >:\n" " >10,5m|<1g na zobrazenie súborov väčších ako 10,5 MiB (mebibajtov),\n" " ale menšie ako 1 GiB (gibibajty), použite | medzi podmienkami." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Pre pohodlie je možné použiť aj varianty kb, mb a gb pre známejšie jednotky " "kilo-, mega-a gigabajtov." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtruje súbory na základe ich bitovej rýchlosťou." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Hodnoty musia byť zadané len ako číselné číslice. Jednotkou je vždy Kb/s " "(kilobity za sekundu)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Podobne ako Veľkosť súboru (vyššie), možno použiť operátory =, !, < a > a " "pomocou | potrubia:\n" " >256|<1411 na zobrazenie súborov s bitovou rýchlosťou aspoň 256 kb/s\n" " s maximálnou bitovou rýchlosťou 1411 Kb/s." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtruje súbory na základe ich bitovej rýchlosťou." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Štandardne sa budú porovnávať súbory dlhšie alebo rovné zadanému trvaniu, " "pokiaľ sa nepoužije operátor (=, !, < alebo >)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Zadajte nespracovanú hodnotu v sekundách alebo použite časové formáty MM:SS " "a HH:MM:SS:\n" " >5:30, aby sa zobrazili súbory s dĺžkou aspoň 5 a pol minúty.\n" " <5:30:00 zobrazuje súbory kratšie ako 5 a pol hodiny." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Pomocou | je možné zadať viacero podmienok oddeľovače potrubí:\n" " >6:00|<12:00 na zobrazenie súborov s dĺžkou 6 až 12 minút.\n" " !9:54|!8:43|!7:32 skryť niektoré konkrétne súbory z výsledkov.\n" " =5:34|=4:23|=3:05 na zahrnutie súborov s konkrétnym trvaním." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Používa kódy krajín definované podľa NORMY ISO 3166-2 (pozri Wikipédiu):\n" " \"USA\" vrátia iba súbory od používateľov pripojených cez Spojené štáty. " "Podobne \"GB\" vracia súbory od používateľov s IPs v Spojenom kráľovstve." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Viaceré krajiny môžu byť špecifikované čiarkami alebo medzerami." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Voľný slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Zobraziť iba tie výsledky od používateľov, ktorí majú aspoň jeden slot na " "nahrávanie zadarmo. Tento filter sa použije okamžite." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Limity rýchlosti nahrávania" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Obmedzovať rýchlosť poskytovania na" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Alternatívny rýchlostný limit nahrávania (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternatívny rýchlostný limit nahrávania (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Pomocník príkazu na súkromný chat" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Zahrnúť text…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrovať výsledky, ktorých cesty k súborom obsahujú zadaný text. Je možné " "zadať viacero fráz a slov, napr. presná fráza|music|term|exact fráza dva" #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Vylúčiť text…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Odfiltrujte výsledky, ktorých cesty súborov obsahujú zadaný text. Je možné " "zadať viacero fráz a slov, napr. presná fráza|music|term|exact fráza dva" #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Typ súboru…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Typ súboru, napr. flac|wav|ape alebo !mp3|! m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Veľkosť súboru…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Veľkosť súboru, napr. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bitový tok" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bitová rýchlosť, napr. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Trvanie…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Trvanie, napr. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Krajina" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Kód krajiny, napr. USA| GB|ES alebo !DE|! GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Zakážte používateľom prístup k zdieľaným súborom na základe používateľského " "mena, IP adresy alebo krajiny." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Blokované krajiny (oddelené čiarkou):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Kódy musia byť vo formáte ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Použiť vlastnú správu pre zakázaných:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Použiť vlastnú správu pre zakázaných:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adresy" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Aktivovať kontrolu pravopisu (vyžaduje reštart programu)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Obnovenie predtým otvorených súkromných chatov pri spustení" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Povoliť PM odpovede typu CTCP (klientská verzia)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Počet nedávnych riadkov chatu, ktoré sa majú zobraziť:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Počet nedávnych riadkov chatu, ktoré sa majú zobraziť:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Doplňovanie" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Povoliť doplňovanie textu tabulátorom" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Povoliť rozbaľovací zoznam pri doplňovaní" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Minimálny počet znakov pre zobrazenie zoznamu:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Doplňovanie" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Zoznam kamarátov" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Správa chatovacej miestnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Miestnosti" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Komentáre" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Časové značky" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Formát chatovacej miestnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Východzie" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Formát chatovacej miestnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Prepnúť Text-Na-Reč" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Povoliť Text-na-Reč" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Príkaz pre Text-na-Reč:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Súkromná správa chatu:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Správa chatovacej miestnosti:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Zoznam cenzúr" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Povoliť cenzúru textových vzorov" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Zoznam automatických náhrad" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Povoliť automatickú výmenu slov" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "Automatické dokončované/filtrované sťahovanie zo zoznamu prenosov" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Ukladanie stiahnutí v podpriečinkoch používateľských mien" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Čakanie na download" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Povoliť týmto používateľom posielať vám súbory:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Priečinky" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Súbor stiahnutý" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Okamžité sťahovanie" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Požiadavka na súbor" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Udalosti" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Spustiť príkaz po stiahnutí súboru ($ pre súbor):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "Spustiť príkaz po stiahnutí adresára ($ pre adresár - plná cesta):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "S_tiahnuť súbor(y)" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Zadajte nový filter pre download:" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Pridať" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Nahrať východzie" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Overiť filtre" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Neoverené" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorujte četové správy a výsledky vyhľadávania od používateľov na základe " "používateľského mena alebo adresy IP." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Štandardne logovať správy chatu" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Štandardne logovať súkromné správy chatu" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Prenosy denníka do súboru" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Zaznamenať správy ladenia do súboru" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Formát log súborov:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Umiestnenia priečinkov" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Adresár s log súbormi chatu:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Formát súkromného chatu:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Font pre prenosy" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Spustené na adresár: %s" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Prihláste sa do existujúceho účtu Soulseek alebo vytvorte nový. " "Používateľské mená sú citlivé na veľké a jedinečné." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Blokovať IP _adresu..." #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Aktivovať kontrolu pravopisu (vyžaduje reštart programu):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Stav" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minúty nečinnosti pred odchodom (0 na vypnutie):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Automatická odpoveď pri stave Preč: " #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Port automatického počúvania dopredu (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Automatické pripojenie na server pri spustení" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Soulseek server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Viaže pripojenia na konkrétne sieťové rozhranie, ktoré je užitočné napr. na " "zabezpečenie neustáleho použitia VPN. Nechajte prázdne, aby ste použili " "akékoľvek dostupné rozhranie. Zmeňte túto hodnotu len vtedy, ak viete, čo " "robíte." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Aktivovať kontrolu pravopisu (vyžaduje reštart programu):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Zobrazí, čo váš mediálny prehrávač prehráva v chate po zadaní príkazu /now" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Iný" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Formát Teraz prehrávané:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Formát Teraz prehrávané:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Konfigurácia testu" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Zapnúť filtre" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "doplnky _Add" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "doplnky _Add" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Nastavenia" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Nastavenia" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Verzia: " #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Vytvoril" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Povoliť históriu vyhľadávania" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Iní klienti môžu ponúknuť možnosť odosielania súkromne zdieľaných súborov v " "reakcii na žiadosti o vyhľadávanie. Takéto súbory sú predpony s \"[PRIVATE " "FILE]\" a nie sú stiahnuté, pokiaľ uploader nedáva výslovné povolenie." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Zobrazenie súkromne zdieľaných súborov vo výsledkoch vyhľadávania" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Obmedzovať počet súčasne poskytovaných súborov na" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Štandardne povoliť filtre" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Zahrnúť:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Vylúčiť:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Typ súboru:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Veľkosť:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitový tok:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Trvanie:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Krajina:" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "" "Zobrazujú sa iba výsledky od používateľov s dostupným slotom na nahrávanie." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Pomocník filtra výsledkov" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Hľadania" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Odpovedanie na žiadosti o vyhľadávanie od iných používateľov" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Vyhľadávania kratšie ako tento počet znakov sa budú ignorovať:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "výsledkov pre jedno hľadanie" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Vymazať históriu vyhľadávania" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Vyčistiť filtrované" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Automaticky sa pri spustení znova spustí obsah zdieľaných priečinkov. Ak sú " "vaše akcie vypnuté, vaše akcie sa aktualizujú len vtedy, keď manuálne " "spustíte rescan." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Preskenuj zdieľané súbory po spustení programu" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Zoznam kamarátov" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Prehľadať zdieľané súbory" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "Automatické vyclené/zrušené nahrávanie zo zoznamu prenosov" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Dvakrát kliknite na akciu pre nahrávanie:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Obmedzovať rýchlosť poskytovania na" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "/prenos" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "súhrnne" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Uploady" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "Súbory budú posielané v tom poradí, v akom boli umiestnené do frontu" #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Typ požiadavku na upload:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Umiestniť uploady do frontu, ak celkový prenos dosiahne" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Obmedzovať počet súčasne poskytovaných súborov na" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Privilégia pre všetkých mojich priateľov" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Veľkosť frontu: %i" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Obmedzovať počet súčasne poskytovaných súborov na" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Obmedzenia veľkosti frontu sa netýkajú priateľov" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Inštancie $ budú nahradené odkazom. Predvolený webový prehliadač systému sa " "použije v prípadoch, keď protokol nebol nakonfigurovaný." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "Príkaz Súborového manažéra ($ pre cestu k adresáru):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Obnoviť obrázok" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Vlastný popis:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Obraz:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Vyčistiť" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Uprednostňujte tmavý režim" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Použitie _Header baru" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Ikona zobrazovať zásobník" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimalizovať zásobník pri spustení" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Aktivovať kontrolu pravopisu (vyžaduje reštart programu):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "Pri zatváraní Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "Oznámenia" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Povolenie vyskakovacích vyskakovacích miest na oznamovanie" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "Zobrazenie upozornenia na súkromné chaty a zmienky v názve okna" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Zobraziť ikony upozornení na kartách" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Súbor stiahnutý" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Stiahnutý priečinok" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Súkromná správa z %s" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Správa chatovacej miestnosti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Doplňovanie" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Našli sa výsledky zoznamu želaní" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Obnovenie predtým otvorených súkromných chatov pri spustení" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Tlačidlá pre zavretie panelov" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Bežná farba štítka karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Zmenená farba označenia karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Zvýraznená farba označenia karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Viditeľné primárne karty:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Pozícia panela s kartami:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Hlavný" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Zobrazenie reverzných ciest k súboru vo vyhľadávaní a prenosových " "zobrazeniach (vyžaduje reštartovanie)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Aktivovať kontrolu pravopisu (vyžaduje reštart programu):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Text zoznamu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Farba textu výsledku vyhľadávania vo fronte:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Správa chatovacej miestnosti:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Vzhľad používateľského mena chatu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Farba vzdialeného textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Chyba lokálneho súboru" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Farba vzdialeného textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me farba textu akcie:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Zvýraznená farba textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "Farba textu odkazu url:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Spojené štáty americké" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Farba textu online:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Farba textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Farba textu v režime offline:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Textové položky" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Farba pozadia položky textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Farba textu položky textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Písma" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Globálne" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Font pre zoznam:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Písmo zobrazenia textu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Font chatu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Font pre prenosy" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Font pre hľadanie:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Font pre prehliadač:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikony" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Neúplný priečinok súborov:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Používateľ(ia)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Zakázať používateľa(ov)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Automatické vyclené/zrušené nahrávanie zo zoznamu prenosov" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Správy" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Vyčistiť všetky výsledky" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Save zoznam zdieľaní na disk" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Obnoviť súbory" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Zdieľané súbory" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "Hľa_dať súbory" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Zdieľané súbory" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Uploady" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Voľný slot" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Upload" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Záujmy" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Venovať privilégiá" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Obnoviť súbory" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+" #~ msgid "_Clear" #~ msgstr "_Vyčistiť" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "" #~ "Nepodarilo sa uložiť súbor s konfiguráciou, vstupno/výstupná chyba: %s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Dôveryhodní používatelia" #, fuzzy #~ msgid "Quit program" #~ msgstr "Ukončiť program" #, fuzzy #~ msgid "Username:" #~ msgstr "Užívateľské meno:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "_Doporučenia pre túto položku" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "_Odstrániť túto položku" #~ msgid "_Remove" #~ msgstr "O_dstrániť" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Poslať správu" #~ msgid "Send Message" #~ msgstr "Poslať správu" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Zobraziť profil používateľa" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Spustiť odosielanie správ" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Zadajte používateľa, ktorému chcete poslať súkromnú správu:" #, fuzzy #~ msgid "_Message" #~ msgstr "Správy" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Zobraziť profil používateľa" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "_Browse" #~ msgstr "P_rehliadať súbory" #, fuzzy #~ msgid "Password" #~ msgstr "Heslo" #, fuzzy #~ msgid "Download File" #~ msgstr "Stiahnuť súbor" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Podobní používatelia" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Zadajte používateľa, ktorému chcete poslať súkromnú správu:" #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Zadajte názov miestnosti, ku ktorú sa chcete pripojiť. Ak miestnosť " #~ "neexistuje, bude vytvorená." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Zobraziť tablu _Log" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Uložiť _Picture" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Odfiltrovaný nesprávny výsledok vyhľadávania %(filepath)s od používateľa " #~ "%(user)s pre vyhľadávací dopyt „%(query)s“" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Niektorí klienti neposielajú výsledky vyhľadávania, ak sú zahrnuté " #~ "špeciálne znaky." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Odstránenie špeciálnych znakov z hľadaných výrazov" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problémy s vykonaním \"%s\"" #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problémy s vykonávaním priečinka: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Zakázané predĺženie" #, fuzzy #~ msgid "Too many files" #~ msgstr "Príliš veľa súborov" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "Príliš veľa megabajtov" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "" #~ "Server v tejto chvíli nepovoľuje vykonávanie vyhľadávania zoznamu želaní" #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Rýchlosť prenosu súborov závisí od používateľov, od ktorých sťahujete. " #~ "Niektorí používatelia budú rýchlejší, zatiaľ čo iní budú pomalí." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Downloady" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Uploady" #~ msgid "Replace censored letters with:" #~ msgstr "Nahradiť cenzúrované písmená:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Cenzurované vzory" #, fuzzy #~ msgid "Replacements" #~ msgstr "Nahradenie" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Ak používateľ v sieti Soulseek vyhľadá súbor, ktorý existuje vo vašich " #~ "akciách, výsledky vyhľadávania sa odošlú používateľovi." #, fuzzy #~ msgid "Send to Player" #~ msgstr "_Otvoriť v prehrávači" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "_Otvoriť v prehrávači" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "Otvoriť v Správcovi súborov" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Príkaz na spustenie audio prehrávača ($ pre názov súboru):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Nepodarilo sa uložiť preberanie do podpriečinka používateľského mena, " #~ "ktorý sa vrátil do predvoleného priečinka na prevzatie. Chyba: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Iba buddy" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Zdieľať len s kamarátmi" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Quit" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "Skenovanie zdieľaných súborov" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Chyba vzdialeného súboru" #, fuzzy, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Nedá sa nájsť %(option1)s alebo %(option2)s, nainštalujte jednu z nich." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "Priečinky %(num)s nájdené po opätovnom" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Nepodarilo sa spracovať nasledujúce databázy: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Nepodarilo sa odoslať počet zdieľaných súborov na server: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Spustiť na pozadí" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Port klienta nie je nastavený" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Hľadania" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Obmedzte akcie iba pre kamarátov na dôveryhodných priateľov" #, fuzzy #~ msgid "Shared" #~ msgstr "Zdieľané" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Vyhľadávanie súborov a priečinkov (presná zhoda)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Zastarané" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Verzia %(version)s je k dispozícii, vydaná na %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Zdá sa, že používate vývojovú verziu Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Používate najnovšiu verziu Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Verzia klienta" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Preferujem tmavé _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Zobraziť tablu _Log" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Zoznam kamarátov na samostatnej karte" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Zoznam kamarátov vždy viditeľný" #, fuzzy #~ msgid "_View" #~ msgstr "_View" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "S_tiahnuť adresár" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "P_rehliadať súbory" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibajty (2^10 bajtov) za sekundu." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Odoslané používateľom ako dôvod na geografické zablokovanie." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Odoslané používateľom ako dôvod zákazu." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Po interakcii s aplikáciou, ktorá je preč, stav sa nastaví na online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Každý používateľ môže umiestniť do frontu nanajvýš" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibajty (2^20 bajtov)." #, fuzzy #~ msgid "MiB" #~ msgstr "Mibs" #, fuzzy #~ msgid "files" #~ msgstr "Súbory" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Správanie frontu" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Ak vypnuté, slot bude automaticky stanovený obmedzeniami dostupnej šírky " #~ "pásma" #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Upozorňujeme, že motív operačného systému môže mať prednosť." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "" #~ "V predvolenom nastavení je karta Hľadať súbory aktivovaná pri spustení." #, fuzzy, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Prestaňte Nicotine+ %(version)s, %(status)s!" #, fuzzy #~ msgid "terminated" #~ msgstr "Ukončené" #, fuzzy #~ msgid "done" #~ msgstr "robené" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Pamätajte na výber" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Interface" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Načúvam na porte %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Server nie je online alebo neodpovedá, pokus o znovupripojenie o %i sekúnd" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ používa peer-to-peer sieť na pripojenie k ostatným " #~ "používateľom. Aby sa používatelia mohli bez problémov pripojiť k vám, je " #~ "rozhodujúci otvorený port počúvania." #~ msgid "--- disconnected ---" #~ msgstr "--- odpojený ---" #~ msgid "--- reconnected ---" #~ msgstr "--- pripojenie obnovené ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Zem" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Česká republika" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turecko" #~ msgid "Joined Rooms " #~ msgstr "Pripojený v miestnostiach " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-pripojiť izbu" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Syntax: Písmená rozlišujú veľkosť, sú podporované všetky regulárne " #~ "výrazy Pythonu, ak je vypnuté escapeovanie. Pre jednoduché filtre " #~ "nechajte escapeovanie zapnuté." #~ msgid "Escaped" #~ msgstr "Escapeované" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Escapeované" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Zadajte vzor textu a nahradenie:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "Priečinky %(num)s nájdené pred opätovným prestavením, prestavbou…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "V špecifikovanom rozsahu portov %s–%s nie je dostupný žiadny port na " #~ "počúvanie" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Vyberte rozsah, z ktorého chcete vybrať port počúvania. Použije sa prvý " #~ "dostupný port v rozsahu." #, fuzzy #~ msgid "First Port" #~ msgstr "Prvý port" #, fuzzy #~ msgid "to" #~ msgstr "do" #, fuzzy #~ msgid "Last Port" #~ msgstr "Posledný port" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Nedá sa nájsť %s, nainštalujte ho." #, fuzzy #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "Modul Gtk sa nedá importovať. Zlá inštalácia modulu Python-gobject?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Používate nepodporenú verziu GTK %(major_version)s. Mali by ste " #~ "nainštalovať GTK %(complete_version)s alebo novšie." #, fuzzy #~ msgid "User Info" #~ msgstr "Informácie o používateľovi" #~ msgid "Zoom 1:1" #~ msgstr "Lupa 1:1" #~ msgid "Zoom In" #~ msgstr "Priblížiť" #~ msgid "Zoom Out" #~ msgstr "Oddialiť" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Úda_je o používateľovi" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Úda_je o používateľovi" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Vyhľadať zoznam používateľom zdieľaných súborov" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Úda_je o používateľovi" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Zoznam zdieľaní žiadostí" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Chybná SoulSeek meta-url: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Používatelia siete Soulseek budú môcť sťahovať súbory z priečinkov, ktoré " #~ "zdieľate. Zdieľanie súborov je rozhodujúce pre zdravie siete Soulseek." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Úda_je o používateľovi" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Pomoc s príkazmi pre chatovaciu miestnosť" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/pripojiť /j \"izba\"" #~ msgid "Join room 'room'" #~ msgstr "Vstúpiť do miestnosti 'miestnosť'" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/meo \"správa\"" #~ msgid "Display the Now Playing script's output" #~ msgstr "Zobraziť výstup skriptu Teraz prehrávané" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/pridať /ad \"používateľ\"" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu zakázaných používateľov" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy \"user\"" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "" #~ "Odstrániť používateľa 'používateľ' zo zoznamu zakázaných používateľov" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/zakázať \"používateľ\"" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu zakázaných používateľov" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban \"používateľ\"" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "" #~ "Odstrániť používateľa 'používateľ' zo zoznamu zakázaných používateľov" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ignorovať \"používateľa\"" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu ignorovaných" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/odviazaný \"používateľ\"" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Odstrániť používateľa 'používateľ' zo zoznamu ignorovaných" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b \"používateľ\"" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w \"používateľ\"" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Vyžiadať informácie o používateľovi 'používateľ'" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip \"používateľ\"" #~ msgid "Show IP for user 'user'" #~ msgstr "Zobraziť IP adresu používateľa 'používateľ'" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/vyhľadávanie /dotaz\"" #~ msgid "Start a new search for 'query'" #~ msgstr "Začať nové vyhľadávanie na 'dotaz'" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs \"query\"" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Prehľadávať aktuálne miestnosti na výskyt dotazu" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "Prehľadávať zoznam používateľov na výskyt dotazu" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Prehľadávať zoznam používateľov na výskyt dotazu" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us \"používateľ\" \"dotaz\"" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg \"používateľ\" \"správa\"" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Poslať správu 'message' používateľovi 'používateľ'" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm \"používateľ\"" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Otvoriť okno súkromného chatu s používateľom 'používateľ'" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "O príkazoch súkromného chatu" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu zakázaných používateľov" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu ignorovaných" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Prehliadať súbory používateľa 'používateľ'" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Pre filtrovanie objednávok necitlivé, ako aj filtrovanie niekoľkých " #~ "presných fráz, môžu byť zvislé pruhy použité na oddelenie fráz a slov.\n" #~ " Príklad: Kopije| Bretónsko| Môj krásny album|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Ak chcete vylúčiť iné ako zvukové súbory, použite !0 vo filtri trvania." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtruje súbory na základe krajín používateľov." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Ak chcete znova zobraziť úplné výsledky, jednoducho vymažte všetky " #~ "aktívne filtre." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Ďalšie možnosti filtrovania nájdete v nastaveniach pre viac možností " #~ "filtrovania." #, fuzzy #~ msgid "File size" #~ msgstr "Súbory" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Vyčistiť všetky výsledky" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Prechádzanie dokončením pri stlačení klávesu tab-key" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Skryť rozbaľovací zoznam len pri jednom výskyte" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Stiahnutie priečinkov v opačnom alfanumerickom poradí" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Neúplný priečinok súborov:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Stiahnuť priečinok:" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Uložte nahrané súbory kamarátov na:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "Automatické priradenie portu počúvania na smerovači pomocou UPnP" #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Zdieľajte priečinky s každým používateľom Soulseek alebo kamarátmi, čo " #~ "umožňuje sťahovanie obsahu priamo z vášho zariadenia. Skryté súbory sa " #~ "nikdy nezdieľajú." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Sekundárne karty" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Pozícia panela s kartami chatovacej miestnosti:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Formát súkromného chatu:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Vyhľadajte pozíciu panela kariet:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Pozícia panela s informáciami o používateľovi:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Pozícia panela s kartami prehľadávania používateľa:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Menovky kariet" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "Obnoviť" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Blokovať IP _adresu..." #, fuzzy #~ msgid "Connected" #~ msgstr "Pripojený:" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Odpojený:" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Odpojený:" #~ msgid "User(s)" #~ msgstr "Používateľ(ia)" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" nevrátil nič" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatívne rýchlostné limity" #, fuzzy #~ msgid "Last played" #~ msgstr "Posledná hra" #, fuzzy #~ msgid "Playing now" #~ msgstr "Hrať teraz" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Súbor %(path)ssa nedá uložiť: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Kód chyby %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Neznámy alias (%s)" #~ msgid "Aliases:" #~ msgstr "Aliasy:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Odstránený alias %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Neznámy alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternatívne rýchlostné limity" #~ msgid "Aliases" #~ msgstr "Aliasy" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al \"príkaz\" \"definícia\"" #~ msgid "Add a new alias" #~ msgstr "Pridať nový alias" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'command'" #~ msgid "Remove an alias" #~ msgstr "Odstrániť alias" #, fuzzy #~ msgid "Chat History" #~ msgstr "História chatu" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Doplňovať alias /Príkazy" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Obmedzovať rýchlosť poskytovania na" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Autor(-y): " #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Obmedzovať rýchlosť poskytovania na" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Našla sa položka zoznamu želaní" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Karty zobrazujú ikony stavu používateľa namiesto textu stavu" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Povolenie popisov cesty k súboru vo vyhľadávaní a prenose zobrazení" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Farebné a klikateľné používateľské mená" #~ msgid "Notification changes the tab's text color" #~ msgstr "Notifikácia mení farbu textu panelu" #~ msgid "Cancel" #~ msgstr "Zrušiť" #~ msgid "OK" #~ msgstr "OK" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "Zoznam kamarátov" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Vymažte každé sťahovanie označené konkrétnym stavom." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Vymažte každé nahranie označené konkrétnym stavom." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "použiť predvolený adresár používateľských údajov pre napr. zoznam " #~ "stiahnutí" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Neznáma konfiguračné sekcie \"%s\"" #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "Neznáma možnosť konfigurácie \"%(option)s\" v časti \"%(section)s\"" #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Verzia %s je k dispozícii" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "vydané na %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "Spustiť na pozadí" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Súkromná správa z %s" #~ msgid "Aborted" #~ msgstr "Zrušené" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Zablokovaná krajina" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Vyčistiť hotové/zrušené" #, fuzzy #~ msgid "Close tab" #~ msgstr "Zavrieť tento panel" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Niekto vás spomenul v miestnosti %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Príkaz %s nie je rozpoznaný" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Varovanie: %(realuser)s sa pokúša vydávať sa za %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Zadané sieťové rozhranie \"%s\" neexistuje. Zmeňte alebo odstráňte zadané " #~ "sieťové rozhranie a reštartujte Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Rozsah zadaný pre porty pripojenia klienta bol {}-{}, ale žiadny z nich " #~ "nebol použiteľný. Zvýšiť a/alebo " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Všimnite si, že časť vášho sortimentu leží pod 1024, zvyčajne to nie je " #~ "povolené vo väčšine operačných systémov s výnimkou systému Windows." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Adresáre: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Chyba OS: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP nie je v tejto sieti k dispozícii" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Nepodarilo sa priradiť externý port WAN: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Stena miestnosti" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Predvolený odpočúvací port \"2234\" funguje vo väčšine prípadov dobre. Ak " #~ "potrebujete použiť iný port, budete ho môcť neskôr upraviť v nastaveniach." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Zobraziť používateľov s podobnými záujmami" #, fuzzy #~ msgid "Menu" #~ msgstr "Menu" #~ msgid "Expand / Collapse all" #~ msgstr "Rozbaliť / Zabaliť všetko" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Konfigurácia zdieľaní" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Vytvoriť súkromnú miestnosť" #, fuzzy #~ msgid "_Room List" #~ msgstr "Miestnosti" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Povoliť alternatívne limity rýchlosti sťahovania a nahrávania" #, fuzzy #~ msgid "Show log history" #~ msgstr "Zobraziť históriu denníkov" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Režim zoskupenia výsledkov" #~ msgid "Free slot" #~ msgstr "Voľný slot" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Uloženie zoznamu zdieľaní na disk" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Nepodarilo sa načítať súbor ui %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Pokúša sa obnoviť index zdieľaných súborov z dôvodu chyby. Prosím, " #~ "prezídu svoje akcie." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Index súborov zdieľaných súborov sa nepodarilo získať prístup. To sa môže " #~ "vyskytnúť v dôsledku niekoľkých prípadov, keď Nicotine+ je aktívny " #~ "súčasne, problémy s povolením súborov alebo iný problém v Nicotine+." #, fuzzy #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ je klientom Soulseek" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "povoliť ikonu zásobníka" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "zakázať ikonu zásobníka" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Získajte privilégiá Soulseek…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Verejná IP adresa je %(ip)s a aktívny odpočúvací port je " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "neznáma" #, fuzzy #~ msgid "Notification" #~ msgstr "Oznámenie" #~ msgid "Length" #~ msgstr "Dĺžka" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Obrázok nie je uložený, %s už existuje." #, fuzzy #~ msgid "_Open" #~ msgstr "_Open" #, fuzzy #~ msgid "_Save" #~ msgstr "_Save" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Nepodarilo sa načítať doplnok \"%s\", nemohol ho nájsť." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Vstupno-výstupná chyba: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Nepodarilo sa otvoriť cestu k súboru: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Nepodarilo sa otvoriť adresu URL: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Log konverzácia" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Zoznam filtrov výsledkov" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Predend < alebo > nájsť súbory menšie alebo väčšie ako daná hodnota." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR súbory zobrazujú svoju priemernú bitovú rýchlosť a sú zvyčajne nižšie " #~ "v bitovej kvalite ako komprimovaný súbor CBR s rýchlosťou 320 kbps " #~ "rovnakej kvality zvuku." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Rovnako ako Veľkosť vyššie, =, < a > môžu byť použité." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Zabránenie prístupu k zápisu inými programami pre sťahovanie súborov " #~ "(vypnutie pre NFS)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Kde sú dočasne ukladané nekompletné sťahovania" #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Kde budú uložené nahrávky kamarátov (s podpriečinkom vytvoreným pre " #~ "každého kamaráta)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr " minútach neaktivity" #~ msgid "Protocol:" #~ msgstr "Protokol:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Priečinok motívu ikony (vyžaduje reštartovanie):" #~ msgid "Establishing connection" #~ msgstr "Vytvára sa spojenie" #~ msgid "Clear Groups" #~ msgstr "Vyčistiť skupiny" #, fuzzy #~ msgid "User List" #~ msgstr "Zoznam používateľov" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Reset štatistiky…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "_Downloady" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Vyčistiť pozastavené" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Blokované IP adresy:" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorovať IP adresu používateľa" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Vymažte každé sťahovanie, ktoré dokončilo prenos alebo ho zachytil filter." #, fuzzy #~ msgid "Usernames" #~ msgstr "Meno používateľa" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Zobrazovať logované správy chatovacej miestnosti pri opätovnom vojdení do " #~ "miestnosti" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Vymažte každé nahrávanie, ktoré buď dokončilo prenos, alebo ho zrušil " #~ "vzdialený používateľ." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Pozícia frontu" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Používateľ %(user)s priamo vyhľadáva \"%(query)s\", vracia výsledky " #~ "%(num)i" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[SÚKROMNÉ]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Nástenka miestnosti (súprava osobných správ)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Konfiguračný súbor je poškodený" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Ľutujeme, ale zdá sa, že váš konfiguračný súbor je poškodený. Prosím, " #~ "rekonfigurujte nikotín+.\n" #~ "\n" #~ "Premenovali sme váš starý konfiguračný súbor na\n" #~ "%(corrupt)s\n" #~ "Ak otvoríte tento súbor pomocou textového editora, možno budete môcť " #~ "zachrániť niektoré nastavenia." #, fuzzy #~ msgid "User Description" #~ msgstr "Vlastný popis:" #, fuzzy #~ msgid "User Interests" #~ msgstr "Záujmy" #, fuzzy #~ msgid "User Picture" #~ msgstr "Prehliadanie súborov používateľa" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Prehľadať zoznam prianí" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Ukončenie nikotínu+ [X19x], %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Používanie Pythonu %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Ukončenie nikotínu+ [X19x], %(status)s…" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Prestaňte nikotín+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Používateľ:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Všetky %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "Súbory %(number)2s " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Používať regulérne výrazy pre obsiahnutý/výlučený text" #, fuzzy #~ msgid "Quit…" #~ msgstr "Ukončiť" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Zobrazenie predchádzajúcej primárnej karty pri spustení" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Štandardne povoliť filtre" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Zavrieť nikotín +?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Naozaj chcete vystúpiť z nikotínu+?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Spustiť na pozadí" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "Upo_zornenie pri prihlásení" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Uprednostnite používateľa" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Dôveryhodný" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Blokované IP adresy:" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Blokované IP adresy:" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Stiahnuť" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Nepodarilo sa pridať preberanie %(filename)s do zdieľaných súborov: " #~ "%(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Automatické zdieľanie stiahnutí" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Ekvivalent pridania priečinka na prevzatie ako verejného zdieľania, avšak " #~ "súbory stiahnuté do tohto priečinka budú automaticky prístupné ostatným " #~ "(nevyžaduje sa žiadny opätovný prenos)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Priečinok sa nedá zdieľať" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Zvolený virtuálny názov je prázdny" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Zvolený virtuálny názov už existuje" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Zvolený priečinok je už zdieľaný" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Nastavenie virtuálneho názvu" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Zadajte virtuálny názov pre \"%(dir)s\":" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Zvolený virtuálny názov je prázdny alebo už existuje" #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Zvolený priečinok je už zdieľaný." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s Vlastnosti" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Skenovanie priateľmi zdieľaných súborov" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Zoznam doplnkov" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Chyba pri skenovaní %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Zobraziť tablu _Log" #~ msgid "Addresses" #~ msgstr "Adresy" #~ msgid "Handler" #~ msgstr "Obslužný program" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Doplnok sa nedá povoliť." #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Doplnok sa nepodarilo vypnúť." #~ msgid "Transfers" #~ msgstr "Prenosy" #, fuzzy #~ msgid "Ban List" #~ msgstr "Zoznam zákazov" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ignorovať zoznam" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Cenzúra & Nahradiť" #~ msgid "Completion" #~ msgstr "Doplňovanie" #~ msgid "Categories" #~ msgstr "Kategórie" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Nahrať priečinok do…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Nahrať adresár rekurzívne do…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Stiahnuť _rekurzívne" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Stiahnuť _rekurzívne" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Stiahn_uť súbor(y)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Chyba pri pokuse o zobrazenie priečinka \"%(folder)s\", hlásená chyba: " #~ "%(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Vyberte Cieľ pre sťahovanie priečinka s podpriečinkami od používateľa" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Vyberte Cieľ na stiahnutie priečinka od používateľa" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Vyberte Cieľ pre stiahnutie súboru(ov) od používateľa" #, fuzzy #~ msgid "Wishes" #~ msgstr "Želanie" #, fuzzy #~ msgid "privileged" #~ msgstr "(privilegovaný)" #, fuzzy #~ msgid "prioritized" #~ msgstr "prioritné" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blokované IP adresy:" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Doplňovať mená kamarátov" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Doplňovať mená používateľov v chatovacích miestnostiach" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Doplňovať názvy miestností v chatovacích miestnostiach" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Rozbaľovací zoznam" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "Príkaz Súborového manažéra ($ pre cestu k adresáru):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Príkaz na spustenie audio prehrávača ($ pre názov súboru):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Blokované IP adresy:" #~ msgid "Display timestamps" #~ msgstr "Zobraziť časové značky" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Kontextové okno s upozorneniami" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Zobraziť kontextové okno s upozornením po dokončení preberania súboru" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Zobraziť vyskakovacie okno s upozornením po dokončení sťahovania priečinka" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Zobrazenie kontextového kontextu oznámení, keď dostanete súkromnú správu" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Zobraziť vyskakovacie okno s upozornením, keď niekto odošle správu v " #~ "chatovacej miestnosti" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Zobraziť vyskakovacie okno s upozornením, keď ste spomenutí v chatovacej " #~ "miestnosti" #, fuzzy #~ msgid "Tray" #~ msgstr "Podnos" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Inštancie $ budú nahradené odkazom. Predvolený webový prehliadač systému " #~ "sa použije v prípadoch, keď protokol nebol nakonfigurovaný." #~ msgid "Handler:" #~ msgstr "Obslužný program:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Primárne karty" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Povolenie popisov cesty k súboru vo vyhľadávaní a prenose zobrazení" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Zobrazí úplnú cestu k súboru výsledku vyhľadávania alebo prenosu súborov, " #~ "keď umiestnite kurzor myši na cestu k priečinku alebo názov súboru." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "Zobrazenie súkromne zdieľaných súborov v zdieľaní používateľov" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Iní klienti môžu ponúknuť možnosť odosielania súkromne zdieľaných súborov " #~ "pri prehliadaní ich akcií. Priečinky obsahujúce takéto súbory sú " #~ "predponou \"[PRIVATE FOLDER]\" a nie sú stiahnuté, pokiaľ nahrávač nedáva " #~ "výslovné povolenie." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Cenzúra & Nahradiť" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Zobraziť ovládacie prvky denníka _Debug" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Logovanie" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtuálny názov" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Upraviť virtuálny názov" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopírovať URL adresára" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Stiah_nuť do…" #~ msgid "Download" #~ msgstr "Stiahnuť" #~ msgid "Upload" #~ msgstr "Upload" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Nahrať obsah priečinka" #, fuzzy #~ msgid "Rename" #~ msgstr "Premenovať" #, fuzzy #~ msgid "File Lists" #~ msgstr "Súbory" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopírovať cestu k súboru" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Odstrániť alias" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Zdá sa, že \"%s\" nie je adresár, nenačíta pluginy." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Skenovanie priateľmi zdieľaných súborov" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Skenovanie priateľmi zdieľaných súborov" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Váš kamarát, %s, sa vám pokúša poslať súbor(y)." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s nemá oprávnenie posielať vám súbor(y), ale i tak sa o to pokúša. " #~ "Varovanie odoslané." #~ msgid "Client Version" #~ msgstr "Verzia klienta" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Koľko dní globálnych oprávnení venovať tomuto používateľovi?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Priatelia budú mať vyššiu prioritu vo fronte, rovnako ako aj používatelia " #~ "s globálnymi oprávneniami" #~ msgid "Privileged" #~ msgstr "Privilegovaný" #~ msgid "_Privileged" #~ msgstr "Privile_govaný" #~ msgid "Comments" #~ msgstr "Komentáre" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "_Upraviť komentáre" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Vytvorí podpriečinky na základe používateľa, z ktorého sťahujete, a " #~ "ukladá stiahnutý súbor / priečinok tam." #, fuzzy #~ msgid "Login Details" #~ msgstr "Prihlasovacie údaje" #, fuzzy #~ msgid "Advanced" #~ msgstr "Pokročilý" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Interval obnovenia mapovania portov v hodinách:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Povoliť zdieľanie vybraných súborov iba pre kamarátov" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "" #~ "Súbory budú posielané v tom poradí, v akom boli umiestnené do frontu" #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Reskenovanie začalo" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Dokončené preskenovanie verejných akcií" #~ msgid "Scanning Buddy Shares" #~ msgstr "Skenovanie priateľmi zdieľaných súborov" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "Prehľadať zdieľané súbory" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Skenovanie priateľmi zdieľaných súborov" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Prehľadať zdieľané súbory" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Skenovanie priateľmi zdieľaných súborov" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Umožňuje zdieľanie kamarátov, ku ktorým majú prístup iba používatelia vo " #~ "vašom zozname kamarátov." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Označenie každého zdieľaného priečinka ako iba kamaráta" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Prepíše možnosť na akciu, ktorá je užitočná, ak dočasne potrebujete " #~ "zabrániť prístupu verejnosti k zdieľaniu." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Iba používatelia označení ako dôveryhodní v zozname kamarátov majú " #~ "prístup k vašim zdieľaným akciám iba pre kamarátov." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Odfiltrovaný vylúčený výsledok vyhľadávania " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtrovaný nepresný alebo nesprávny výsledok vyhľadávania " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Uložené nastavenie \"%(key)s\" už nie je prítomné v doplnku \"%(name)s\"" #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "Plugin %(module)s vrátil niečo divné, \"%(value)s\", ignorujúc" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "" #~ "Nekonzistentná vyrovnávacia pamäť pre \"%(vdir)s\", prestavba \"%(dir)s\"" #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Vypustenie chýbajúceho priečinka %(dir)s" #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nikotín+ vám umožňuje zdieľať priečinky priamo z počítača. Všetok obsah " #~ "týchto priečinkov (s výnimkou bodkovaných súborov) si môžu stiahnuť iní " #~ "používatelia v sieti Soulseek. Verejné akcie sú k dispozícii pre každého " #~ "používateľa, zatiaľ čo používatelia vo vašom zozname kamarátov majú okrem " #~ "verejných akcií prístup aj k zdieľaným partnerom." #~ msgid "Set your personal ticker" #~ msgstr "Nastaviť váš osobný ticker" #, fuzzy #~ msgid "Receive a User's Info" #~ msgstr "Vyhľadať informácie o používateľovi" #, fuzzy #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "Zadajte názov súkromnej miestnosti, ktorú chcete vytvoriť" #~ msgid "Add user 'user' to your user list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu používateľov" #~ msgid "Remove user 'user' from your user list" #~ msgstr "Odstrániť používateľa 'používateľ' z vašeho zoznamu používateľov" #~ msgid "Request user info for user 'user'" #~ msgstr "Vyžiadať informácie o používateľovi 'používateľ'" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Pridať používateľa 'používateľ' do zoznamu používateľov" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Odstrániť používateľa 'používateľ' z vašeho zoznamu používateľov" #, fuzzy #~ msgid "/ignore" #~ msgstr "Ignorovať" #, fuzzy #~ msgid "/unignore" #~ msgstr "Ignorovať" #, python-format #~ msgid "Can't remove %s" #~ msgstr "Nemôžem odstrániť %s" #, python-format #~ msgid "Can't back config file up, error: %s" #~ msgstr "Nepodarilo sa zálohovať súbor s konfiguráciou, chyba: %s" #, python-format #~ msgid "Can't rename config file, error: %s" #~ msgstr "Nepodarilo sa zálohovať súbor s konfiguráciou, chyba: %s" #, python-format #~ msgid "Connection closed by peer: %s" #~ msgstr "Spojenie ukončenie vzdialeným používateľom: %s" #, python-format #~ msgid "" #~ "Server reported port 0 for the 10th time for user %(user)s, giving up" #~ msgstr "" #~ "Server ohlásil nulový port po 10 pokusoch pre používateľa %(user)s, " #~ "vzdávam to" #, python-format #~ msgid "" #~ "Server reported non-zero port for user %(user)s after %(tries)i retries" #~ msgstr "" #~ "Server ohlásil nenulový port pre používateľa %(user)s po %(tries)i " #~ "pokusoch" #, python-format #~ msgid "Server reported port 0 for user %(user)s, retrying" #~ msgstr "Server ohlásil nulový port pre používateľa %(user)s, ďalší pokus" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Nepodarilo sa pripojiť, dôvod: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Niekto iný sa pripojil s rovnakou prezývkou, pripojenie k serveru sa " #~ "preruší." #, python-format #~ msgid "" #~ "IP %(ip)s:%(port)s is spoofing user %(user)s with a peer request, " #~ "blocking because it does not match IP: %(real_ip)s" #~ msgstr "" #~ "IP %(ip)s:%(port)s sa snaží o podvrh (spoofing) používateľa %(user)s " #~ "požiadavkou vzdialeného používateľa, blokujem, pretože nesedí skutočná " #~ "IP: %(real_ip)s" #, python-format #~ msgid "" #~ "Blocking %(user)s from making a UserInfo request, possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "Blokovanie %(user)s o dotaz na používateľské informácie, možný pokus o " #~ "podvrh (spoofing): %(ip)s port %(port)s" #, python-format #~ msgid "" #~ "Blocking %s from making a UserInfo request, possible spoofing attempt " #~ "from an unknown IP & port" #~ msgstr "" #~ "Blokujem %s o dotaz na používateľské informácie, možný pokus o podvrh " #~ "(spoofing)" #, python-format #~ msgid "%(user)s is banned, but is making a UserInfo request" #~ msgstr "%(user)s je zakázaný, ale robí dotaz na používateľské informácie" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from IP %(ip)s port %(port)s" #~ msgstr "" #~ "%(user)s urobil dotaz BrowseShares, blokujem prípadný pokus o podvrh " #~ "(spoofing). %(ip)s port %(port)s" #, python-format #~ msgid "" #~ "%(user)s is making a BrowseShares request, blocking possible spoofing " #~ "attempt from an unknown IP & port" #~ msgstr "" #~ "%(user)s urobil dotaz BrowseShares, blokujem prípadený pokus o podvrh " #~ "(spoofing)." #, python-format #~ msgid "%(user)s is making a BrowseShares request" #~ msgstr "%(user)s robí BrowseShares dotaz" #, python-format #~ msgid "Unknown tunneled message: %s" #~ msgstr "Neznáma tunelovaná správa %s" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Databáza zdieľaných súborov sa zdá byť poškodená, reskenujte zdieľané dáta" #, python-format #~ msgid "Empty message made, class %s" #~ msgstr "Vytvorená prázdna správa, trieda %s" #, python-format #~ msgid "Can't parse incoming messages, class %s" #~ msgstr "Nepodarilo sa rozparsovať prichádzajúcu správu, trieda %s" #, python-format #~ msgid "Can't handle connection type %s" #~ msgstr "Neznámy typ pripojenia %s" #, python-format #~ msgid "Error packaging message: %(type)s %(msg_obj)s, %(error)s" #~ msgstr "Chyba pri balení správy: %(type)s %(msg_obj)s, %(error)s" #, python-format #~ msgid "" #~ "Can't send the message over the closed connection: %(type)s %(msg_obj)s" #~ msgstr "" #~ "Nepodarilo sa poslať správu cez uzavreté spojenie: %(type)s %(msg_obj)s" #, python-format #~ msgid "Major Socket Error: Networking terminated! %s" #~ msgstr "Vážna chyba socketu: Sieťovanie zrušené! %s" #, python-format #~ msgid "Filtering: %s" #~ msgstr "Filtrovanie: %s" #, python-format #~ msgid "Retrying failed download: user %(user)s, file %(file)s" #~ msgstr "" #~ "Pokus o obnovenie sťahovania od používateľa %(user)s, súbor %(file)s" #, python-format #~ msgid "Got transfer request %s but cannot determine requestor" #~ msgstr "" #~ "Zaznamenaný požiadavok na prenos %s, ale nie je možné určiť žiadateľa" #~ msgid "[Automatic Message] " #~ msgstr "[Automatická správa] " #~ msgid "You are not allowed to send me files." #~ msgstr "Nemáte oprávnenie posielať mi súbory." #, python-format #~ msgid "Got unknown transfer response: %s" #~ msgstr "Neznáma odpoveď na prenos: %s" #, python-format #~ msgid "Download finished: %(file)s" #~ msgstr "Sťahovanie dokončené: %(file)s" #~ msgid "(friend)" #~ msgstr "(priateľ)" #, python-format #~ msgid "Upload finished: %(user)s, file %(file)s" #~ msgstr "Upload dokončený: používateľ %(user)s, súbor %(file)s" #~ msgid "Get user i_nfo" #~ msgstr "Získať ú_daje o používateľovi" #~ msgid "_Add user to list" #~ msgstr "P_ridať používateľa medzi kamarátov" #~ msgid "_Ban this user" #~ msgstr "_Zakázať tohto používateľa" #~ msgid "_Ignore this user" #~ msgstr "_Ignorovať tohto používateľa" #~ msgid "Clear finished/aborted" #~ msgstr "Vyčistiť hotové/zrušené" #~ msgid "Clear aborted" #~ msgstr "Vyčistiť zrušené" #~ msgid "Clear queued" #~ msgstr "Vyčistiť súbory vo fronte" #~ msgid "Abor_t" #~ msgstr "_Zrušiť" #~ msgid "Directory" #~ msgstr "Adresár" #~ msgid "Warning" #~ msgstr "Varovanie" #~ msgid "Search files" #~ msgstr "Hľadať súbory" #~ msgid "User info" #~ msgstr "Údaje o používateľovi" #~ msgid "Chat rooms" #~ msgstr "Chatovacie miestnosti" #~ msgid "Rescanning Buddy Shares started" #~ msgstr "Reskenovanie súborov pre priateľov začalo" #~ msgid "Rescanning Buddy Shares finished" #~ msgstr "Reskenovanie súborov pre priateľov skončilo" #~ msgid "Rescanning finished" #~ msgstr "Reskenovanie skončilo" #~ msgid "Send to tray" #~ msgstr "Poslať do oznamovacej oblasti" #~ msgid "I like" #~ msgstr "Mám rád(a)" #~ msgid "I _don't like this" #~ msgstr "_Nemám rád(a) toto" #~ msgid "Ban this user" #~ msgstr "Zakázať tohto používateľa" #~ msgid "Ignore this user" #~ msgstr "Ignorovať tohto používateľa" #~ msgid "In queue" #~ msgstr "Vo fronte" #, python-format #~ msgid "Client port is %(port)s" #~ msgstr "Port klienta je %(port)s" #~ msgid "Your IP address has not been retrieved from the server" #~ msgstr "Vaša IP adresa nebola získaná zo servera" #, python-format #~ msgid "Your IP address is %(ip)s" #~ msgstr "Vaša IP adresa je %(ip)s" #~ msgid "Warning: Bad Username" #~ msgstr "Varovanie: Chybné meno používateľa" #~ msgid "Username 'None' is not a good one, please pick another." #~ msgstr "Používateľské meno 'None' nie je vhodným menom, prosím vyberte iné." #~ msgid "Warning: Invalid ports" #~ msgstr "Varovanie: Neplatné porty" #~ msgid "Client ports are invalid." #~ msgstr "Porty klienta sú neplatné." #~ msgid "Users in list" #~ msgstr "Používatelia v zozname" #, python-format #~ msgid "Security Risk: you should not share your %s directory!" #~ msgstr "Bezpečnostné riziko: nemali by ste zdieľať váš adresár %s!" #~ msgid "Ignore user..." #~ msgstr "Ignorovať používateľa..." #~ msgid "IP:" #~ msgstr "IP:" #~ msgid "Ban user..." #~ msgstr "Zakázať používateľa..." #~ msgid "Server" #~ msgstr "Server" #~ msgid "Geo Block" #~ msgstr "Geografické blokovanie" #~ msgid "Notebook Tabs" #~ msgstr "Panely notebooku" #~ msgid "URL Catching" #~ msgstr "Zachytávanie URL" #~ msgid "Initializing transfer" #~ msgstr "Spúšťanie prenosu" #~ msgid "Waiting for peer to connect" #~ msgstr "Čakanie na pripojenie vzdialeného používateľa" #~ msgid "Getting address" #~ msgstr "Získavanie adresy" #~ msgid "Lookup a User's IP" #~ msgstr "Vyhľadať IP adresu používateľa" #~ msgid "Clear failed" #~ msgstr "Vyčistiť s chybou" #~ msgid "Directories" #~ msgstr "Adresáre" #~ msgid "Download r_ecursive to..." #~ msgstr "Stiahnuť rekur_zívne do..." #~ msgid "Upload Directory to..." #~ msgstr "Nahrať adresár do..." #, python-format #~ msgid "Speed: %s" #~ msgstr "Rýchlosť: %s" #, python-format #~ msgid "Files: %s" #~ msgstr "Súbory: %s" #~ msgid "Hates" #~ msgstr "Neznáša" #, python-format #~ msgid "Total uploads allowed: %i" #~ msgstr "Povolený počet uploadov celkom: %i" #, python-format #~ msgid "Slots free: %s" #~ msgstr "Voľných slotov: %s" #, python-format #~ msgid "%s" #~ msgstr "%s" #, python-format #~ msgid "to %(user)s" #~ msgstr "pre %(user)s" #~ msgid "Log" #~ msgstr "Logovať" #~ msgid "Clear Queued" #~ msgstr "Vyčistiť súbory vo fronte" #~ msgid "Clear all searches attempts" #~ msgstr "Vymazať všetky pokus o vyhľadanie" #~ msgid "" #~ "Send the private message directly to the user (not supported on most " #~ "clients)" #~ msgstr "" #~ "Poslať súkromnú správu priamo používateľovi (nepodporované na väčšine " #~ "klientov)" #~ msgid "Stop new search results from being displayed" #~ msgstr "Zabráni zobrazovaniu nových výsledkov hľadania" #~ msgid "Total uploads allowed: unknown" #~ msgstr "Povolené uploady celkom: neznáme" #~ msgid "Slots free: unknown" #~ msgstr "Voľné sloty: neznáme" #~ msgid "Queue size: unknown" #~ msgstr "Veľkosť frontu: neznáma" #~ msgid "Speed: unknown" #~ msgstr "Rýchlosť: neznáma" #~ msgid "Files: unknown" #~ msgstr "Súbory: neznáme" #~ msgid "Directories: unknown" #~ msgstr "Adresáre: neznáme" #~ msgid "Accepts Uploads from:" #~ msgstr "Akceptovať uploady od:" #~ msgid "Add..." #~ msgstr "Pridať..." #~ msgid "About chat room commands" #~ msgstr "O príkazoch pre chatovaciu miestnosť" #~ msgid "Leave room 'room'" #~ msgstr "Opustiť miestnosť 'miestnosť'" #~ msgid "About search filters" #~ msgstr "O vyhľadávacích filtroch" #~ msgid "_Modes" #~ msgstr "_Režimy" #~ msgid "_Private Chat" #~ msgstr "_Súkromný chat" #~ msgid "Buddy _List" #~ msgstr "Zoznam _kamarátov" #~ msgid "_Chat Rooms" #~ msgstr "Chatovacie _miestnosti" #~ msgid "_Interests" #~ msgstr "_Záujmy" #~ msgid "About _chat room commands" #~ msgstr "O _príkazoch pre chatovaciu miestnosť" #~ msgid "About _private chat commands" #~ msgstr "O p_ríkazoch súkromného chatu" #~ msgid "About _search filters" #~ msgstr "O _vyhľadávacích filtroch" #~ msgid "Toggle away after " #~ msgstr "Prepnúť do módu neprítomnosti (preč) po " #~ msgid "Enable Censorship" #~ msgstr "Zapnúť cenzúru" #~ msgid "Username Font Style:" #~ msgstr "Štýl písma mena používateľa:" #~ msgid "Display away colors" #~ msgstr "Zobrazovať ikony režimu neprítomnosti" #~ msgid "Lock incoming files (turn off for NFS)" #~ msgstr "Uzamknúť prichádzajúce súbory (vypnite pre NFS)" #~ msgid "" #~ "The users will be able to send you files. These files will be downloaded " #~ "into the Buddy Uploads subdirectory in your Download directory" #~ msgstr "" #~ "Používatelia vám budú môcť poslať súbory. Tieto súbory budu stiahnuté do " #~ "podadresára Uploady od kamarátov vo vašom adresáre pre download" #~ msgid "Open Directory" #~ msgstr "Otvoriť adresár" #~ msgid "Decimal separator:" #~ msgstr "Desatinný oddeľovač:" #~ msgid "Enable geographical blocker" #~ msgstr "Zapnúť blokovanie krajín" #~ msgid "Geographical paranoia (block unresolvable IPs)" #~ msgstr "Paranoidné blokovanie krajín (blokovať nezistiteľné IP adresy)" #~ msgid "Always quit when main window is closed" #~ msgstr "Vždy ukončiť aplikáciu pri zatvorení hlavného okna" #~ msgid "Trayicon" #~ msgstr "Ikona v systémovej lište" #~ msgid "Online:" #~ msgstr "Online:" #~ msgid "Away:" #~ msgstr "Preč:" #~ msgid "Offline:" #~ msgstr "Offline:" #~ msgid "Hilite:" #~ msgstr "Zvýrazniť:" #~ msgid "Status" #~ msgstr "Stav" #~ msgid "Private Chat Logs directory:" #~ msgstr "Adresár s log súbormi súkr. chatu:" #~ msgid "Read" #~ msgstr "Čítať" #~ msgid "Reopen last Private Chat messages" #~ msgstr "Znovu otvoriť posledné správy súkromného chatu" #~ msgid "Label Angle:" #~ msgstr "Uhol popisku:" #~ msgid "Legend:" #~ msgstr "Legenda:" #~ msgid "Example:" #~ msgstr "Príklad:" #~ msgid "Send out a max of" #~ msgstr "Zobrazovať najviac" #~ msgid "Filter out:" #~ msgstr "Výlučený text:" #~ msgid "Filter in:" #~ msgstr "Obsiahnutý text:" #~ msgid "" #~ "If buddy shares are enabled, they will be shared. Otherwise normal shares " #~ "will be used." #~ msgstr "" #~ "Ak je zapnuté zdieľanie s kamarátmi, budú zdieľané. Inak budú použité " #~ "bežne zdieľané súbory." #~ msgid "Users will be sent one file and then another user will be selected" #~ msgstr "" #~ "Používateľom pošlete jeden súbor a potom bude sťahovať ďalší používateľ" #~ msgid "KBytes/sec" #~ msgstr "KBytov/s" #~ msgid "Megabytes" #~ msgstr "Megabytov" #~ msgid "Enable URL catching" #~ msgstr "Zapnúť zachytávanie URL" #~ msgid "Humanize slsk:// urls" #~ msgstr "Poľudštiť slsk:// adresy" nicotine-plus-3.3.4/po/sq.po000066400000000000000000004302351461625273200157320ustar00rootroot00000000000000# Copyright (C) 2023-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-04-28 18:07+0000\n" "Last-Translator: W L \n" "Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.1\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek Klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Shkarkimet" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Biseda Private" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Ekipi Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Uebsajti: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "shfaq këtë mesazh ndihmës dhe dil" #: pynicotine/__init__.py:59 msgid "file" msgstr "" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "" #: pynicotine/__init__.py:63 msgid "dir" msgstr "" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "starto programin pa shfaqur dritaren" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "" #: pynicotine/__init__.py:75 msgid "port" msgstr "porti" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "dëgjo në portin e caktuar" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "shfaqë versionion dhe dil" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Gabim gjatë ruajtjes së konfigurationit: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Konfiguration u ruajt tek: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "" #: pynicotine/core.py:237 msgid "terminating" msgstr "duke ndaluar" #: pynicotine/core.py:237 msgid "application closing" msgstr "aplikacioni po ndalohet" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "" #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "U ekzekutua: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "" #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Lidhu" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Zgjidhu" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Privilegjet e Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Preferencat" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Mbylle" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Riskano ndarjet" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "Konfiguro _ndarjet" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "Statistikat e _transferit" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Rreth Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Ndarjet" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Ndihma" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "_Lundro" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Jo" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Mbylle Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Anulo" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Riprovo" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Fjalkalim i palejuar" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Ndrysho detajet e hyrjës" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Dërgo Mesazh" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Gabim Kritik" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Kopjo edhe Raporto Bug" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Statusi" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Shteti" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Përdoruesi" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Shpejtësia" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Besuar" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Njofto" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Besuar" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Pare se fundmi" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Hiq" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Parë: asnjeherë" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Shto" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Krijo një dhomë të re?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "A dëshironi të krijoni një dhomë të re \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Krijo dhomë private" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Gjej…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopjo" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Kopjo të gjitha" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Largohu nga Dhoma" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Kopju linkun" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Shiko logun e dhomës" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Fshijë logun e dhomës" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Fshij pamjes e mesazheve" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s la nga dhona" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s u largua nga dhona" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s u kthye" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Rreth" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Uebsajti: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Dosja" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Perfundo" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Tjetra" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Ndrysho" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Vendos" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Shto…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Ndrysho…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Panjohur" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Provo gjendjen e Portit" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Ndryshimi i fjalëkalimit nuk u aprovua" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Ndrysho Fjalekalimin" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Shendrro" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Askush" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Gjithkushë" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Shokët" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Asgjë" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Kërko" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Pausë" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Rivazhdo" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Eksploro dosjen" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtëro" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Publik" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Aborto" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Riprovo" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Perdoruesi" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP Adresa" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Injoro perdoruesion" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Injoro IP adresen" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Blloko perdoruesin" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Blloko IP adresen" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Zëvëndësimi" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Shto nje zevendesim" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Ndrysho nje zevendesim" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "trashë" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "nënvijë" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Lartë" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Poshtë" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Majtë" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Djatht" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Në linjë" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Larg" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Shkyqur" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Dritarja" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokolli" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Komanda" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Ndrysho komanden" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Perdoruesi;APIKEY:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Perdoruesi" #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Komandë:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Titull" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Artist" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Zgjatja" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Kommenti" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Numri i kenges" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Viti" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Aktivizuar" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Rrjeti" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Interface e perdoruesit" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Shperndarjet" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Ngarkimet" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Kërkimet" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Profili i Përdoruesit" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Bisedat" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Po luan" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Përdoruesit e Bllokuar" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Përdoruesit e Injouar" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Preferencat" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Lista e deshirave" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Deshira" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Ndrysho Dëshirën" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Pastro dëshirat?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Rivazhdo" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Përfunduar" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Pauzuar" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtruar" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Fshirë" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Rradhitur…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Gjithcka…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Pëlqimet" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Mospelqimet" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Nota" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Rekomandimet" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Dhomat e bisedës" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Interesat" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Biseda" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Debug] Transferet" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Debug] Ndryshme" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Gjej…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopjo" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Log Kategorite" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Po përgatit ndarjet" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Po ndalohet..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Message e fundit" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Dhoma" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Perdoruesit" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Hyr në dhomë" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Largohu nga dhoma" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Mbyll Tabin" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Global" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Shoket" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Dhomat" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Perdoruesi" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Në rradhë" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Madhësia" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Kualiteti" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopjo _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Lundro" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Pastro filterat" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Totali: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Rradhitur" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Transferohet" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Lidhja u mbyll" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Anuluar" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Bllokuar" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Rradha" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Përqindja" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Koha mbetur" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Kërko" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Pastro të gjitha" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Aborto" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Deshtuar" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Ngarko" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Po" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Jo" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "" #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Mbyll" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Po" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Zgjidh" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Ruaj si…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Asnjë)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_Shtoo Buddy" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Dhomat Private" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Imazhi" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Arkivë" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Tjera" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokument/Tekst" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Tekst" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Fsheh Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Shfaq Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Kolumna #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Pa gropuar" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "A dëshironi të krijoni një dhomë të re \"%s\"?" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Fjalëkalimi u ndryshua" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Armenia" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktika" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Argjentina" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Austria" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Australia" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belgjike" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bullgaria" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivia" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brazil" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Bjellorusia" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Swicerr" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Kili" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kameru" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Kia" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolombia" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Qipro" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Qekia" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Gjermani" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Danimarka" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Algjeria" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ekuador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonia" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Egjipti" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Spanja" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Ethiopia" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlanda" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Franca" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gaboni" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Gjeorgjia" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Gana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Gjibraltari" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Greqia" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Kroacia" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Hungaria" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Indonezia" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Irlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "India" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Italia" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Jordani" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japonia" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenia" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuvajti" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laosi" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Libanoni" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Mongolia" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Poloni" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portugali" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguai" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Rumania" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Suedi" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "SIngapor" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slloveni" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somali" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Siria" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tailanda" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Nuk mund të lidhej me serverin. Arsyeja: %s" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Menagjo pluginat" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Shto nje ndarje" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Listo ndarjet" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Riskano ndarjet" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "Bllokuar %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "Pa-bllokuar %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "Injoruar %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "Pa-injoruar %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Ska mbishkrim" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Nuk mund të lidhej me serverin. Arsyeja: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Nuk mund të lidhet" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Nuk mund të merrej IP e përdoruesit :%s, pasiqë ky përdorures nuk është në " "linjë" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP e përdoruesit %(user)s: %(ip)s, port %(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Njoftimet e Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i përdoruesit e privilegjuar" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Fjalkalimi juaj u ndryshua" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Fjalëkalimi u ndryshua" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Dergo mesazh…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Krijuar nga" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Përkthyer nga" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Lizenze" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Kaluar" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Emri" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Shpejësia e fundit" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Exporto…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Gjenerale" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Lidhu" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Shkyqur" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Konfirmo ndalesen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Ndalo" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menyt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Po ndryshon" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Kput" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Vendos" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Shto Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Zgjidh të gjitha" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Gjej" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Rifresko" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Filterët e rezultatit" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Shkarkimet e kompletuara" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Madhsia e shkarkuar" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Ngarkimet e kompletuara" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Madhsiea e ngarkuar" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Totali" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Reseto.…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Pastro te gjitha…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Pastro te mbaruarat" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Pastro te _gjitha…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Menyja kryesore" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Dhoma…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Kerko fjalen…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Konfiguro kërkimet" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "Konfiguro shkarkimet" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Konfiguro ngarkimet" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Hap listën" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Konfiguro ndarjet" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Konfiguro llogarinë" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Konfiguro bisedat" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Kërko log…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Lidhjet" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Kërko dhomat…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Rifresko dhomat" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Përfshij tekstin" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Përvec tekstit" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP Adresat" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Emrat e dhomës" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Resultatet" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Standarte" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Shkarkimet e mbaruara:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Ngrkimet e pa-mbaruara:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Eventet" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Shto" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Pa verifikuar" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Tjera" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Testo konfiguracionin" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Aktivizo pluginat" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Shto plugina" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Shto plugina" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Cilsimet" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Cilsimet" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Version:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Krijuar nga:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Perveq:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Madhesia:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Zgjatja:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Shokët" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Ndarjet e besuara" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Transfermiet totale" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Piktura:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Pastro" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Njoftimet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Tabet kryesore" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Fontet" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Fonti global:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Fonti i listave:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Fonti i bisedave:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Fonti i transfereve:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Fonti i kerkimit" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Ikonat" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "" #~ msgid "_Clear" #~ msgstr "_Pastro" #, fuzzy #~ msgid "Nicotine+" #~ msgstr "Ekipi Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Shoket e besuar" #~ msgid "Quit program" #~ msgstr "Ndalo programin" #~ msgid "Username:" #~ msgstr "Perdoruesi:" #~ msgid "_Remove" #~ msgstr "_Hiq" #~ msgid "Send Message" #~ msgstr "Dërgo mesazh" #~ msgid "_Message" #~ msgstr "_Mesazhi" #~ msgid "_Browse" #~ msgstr "_Lundro" #~ msgid "Password" #~ msgstr "Fjalekalimi" #~ msgid "Replacements" #~ msgstr "Zëvëndësimet" #~ msgid "Buddy-only" #~ msgstr "Vec-shokët" #~ msgid "_Quit…" #~ msgstr "_Ndalo…" #~ msgid "_View" #~ msgstr "_Shiko" #~ msgid "terminated" #~ msgstr "ndaluar" #~ msgid "done" #~ msgstr "u krye" nicotine-plus-3.3.4/po/sv.po000066400000000000000000007233541461625273200157460ustar00rootroot00000000000000# Copyright (C) 2003-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-01-08 18:27+0000\n" "Last-Translator: OpenAI \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek-klient" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Grafisk klient för peer-to-peer-nätverket Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 #, fuzzy msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;delning;musik;P2P;peer-to-peer;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Grafisk klient för Soulseek-nätverket" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Grafisk klient för peer-to-peer-nätverket Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 #, fuzzy msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ syftar till att vara ett trevligt alternativ till den officiella " "Soulseek-klienten som är gratis och har öppen källkod (FOSS) och erbjuder " "ytterligare funktioner samtidigt som det håller sig uppdaterat med Soulseek-" "protokollet." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 #, fuzzy msgid "Search Files" msgstr "Sök filer" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Nedladdningar" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 #, fuzzy msgid "Browse Shares" msgstr "Bro_wse Buddy-andelar" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 #, fuzzy msgid "Private Chat" msgstr "Privat chatt" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 #, fuzzy msgid "Nicotine+ Team" msgstr "Nicotine+ Team" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Webbplats: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "visa det här hjälpmeddelandet och avsluta" #: pynicotine/__init__.py:59 msgid "file" msgstr "fil" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "använda en konfigurationsfil som inte är standard" #: pynicotine/__init__.py:63 msgid "dir" msgstr "katalog" #: pynicotine/__init__.py:64 #, fuzzy msgid "alternative directory for user data and plugins" msgstr "använda en annan katalog än standardkatalogen för plugins" #: pynicotine/__init__.py:68 #, fuzzy msgid "start the program without showing window" msgstr "starta programmet utan att visa fönstret" #: pynicotine/__init__.py:71 #, fuzzy msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 #, fuzzy msgid "bind sockets to the given IP (useful for VPN)" msgstr "binder sockets till den angivna IP:n (användbart för VPN)" #: pynicotine/__init__.py:75 #, fuzzy msgid "port" msgstr "port" #: pynicotine/__init__.py:76 #, fuzzy msgid "listen on the given port" msgstr "lyssna på den angivna porten" #: pynicotine/__init__.py:80 #, fuzzy msgid "rescan shared files" msgstr "Indexera om delade filer" #: pynicotine/__init__.py:84 #, fuzzy msgid "start the program in headless mode (no GUI)" msgstr "starta programmet i huvudlöst läge (inget grafiskt gränssnitt)" #: pynicotine/__init__.py:88 #, fuzzy msgid "display version and exit" msgstr "visa version och avsluta" #: pynicotine/__init__.py:118 #, fuzzy, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Du använder version av Python (%s) som saknar stöd.\n" "Du borde installera Python 3.5 eller senare versioner." #: pynicotine/__init__.py:184 #, fuzzy msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Det gick inte att skanna aktier. Stäng andra Nicotine+-instanser och försök " "igen." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Användaren %s är away" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Användaren %s är online" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Användaren %s är offline" #: pynicotine/buddies.py:302 #, fuzzy msgid "Buddy Status" msgstr "Buddy-lista" #: pynicotine/chatrooms.py:338 #, fuzzy, python-format msgid "You have been added to a private room: %(room)s" msgstr "Du har lagts till i ett privat rum: %(room)s" #: pynicotine/chatrooms.py:466 #, fuzzy, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Chattmeddelande från användare '%(user)s' i rummet '%(room)s': %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "Kunde inte skapa katalogen '%(path)s', rapporterat fel: %(error)s" #: pynicotine/config.py:801 #, fuzzy, python-format msgid "Error backing up config: %s" msgstr "Fel vid säkerhetskopiering av konfigurationen: %s" #: pynicotine/config.py:804 #, fuzzy, python-format msgid "Config backed up to: %s" msgstr "Konfigurationen säkerhetskopieras till: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, fuzzy, python-format msgid "Loading %(program)s %(version)s" msgstr "Sluta med Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:234 #, fuzzy, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Sluta med Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:237 #, fuzzy msgid "terminating" msgstr "avslutande av" #: pynicotine/core.py:237 #, fuzzy msgid "application closing" msgstr "Ansökningsavslutning." #: pynicotine/core.py:271 #, fuzzy, python-format msgid "Quit %(program)s %(version)s!" msgstr "Sluta med Nicotine+ %(version)s, %(status)s…" #: pynicotine/core.py:279 #, fuzzy msgid "You need to specify a username and password before connecting…" msgstr "Du måste ange ett användarnamn och lösenord innan du ansluter…" #: pynicotine/downloads.py:224 #, fuzzy, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Fel: Download Filter misslyckades! Kontrollera dina filter. Anledning: %s" #: pynicotine/downloads.py:239 #, fuzzy, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Fel: %(num)d Nedladdningsfilter misslyckades! %(error)s " #: pynicotine/downloads.py:354 #, fuzzy, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s hämtad från %(user)s" #: pynicotine/downloads.py:358 #, fuzzy msgid "File Downloaded" msgstr "Fil nerladdad" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Körde: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, fuzzy, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Exekvering av '%(command)s' misslyckades: %(error)s" #: pynicotine/downloads.py:395 #, fuzzy, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s hämtad från %(user)s" #: pynicotine/downloads.py:399 #, fuzzy msgid "Folder Downloaded" msgstr "Hämtad mapp" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Körde på mapp: %s" #: pynicotine/downloads.py:434 #, fuzzy, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Kunde inte flytta \"%(tempfile)s\" till \"%(file)s\": %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Fel på nedladdningskatalog" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Nedladdning slutförd: användare %(user)s, fil %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Nedladdning avbruten: användare %(user)s, fil %(file)s" #: pynicotine/downloads.py:1151 #, fuzzy, python-format msgid "Download I/O error: %s" msgstr "Fel i nedladdningen av I/O: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Kunde inte upprätta ett exklusivt lås på fil - I/O-fel: %s" #: pynicotine/downloads.py:1207 #, fuzzy, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Det går inte att spara filen %(path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Nedladdning påbörjad: användare %(user)s, fil %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Kan inte hitta %s, var snäll installera det." #: pynicotine/gtkgui/__init__.py:152 #, fuzzy msgid "No graphical environment available, using headless (no GUI) mode" msgstr "Ingen grafisk miljö tillgänglig, använder headless (inget GUI) läge" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "Anslut" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "Koppla ned" #: pynicotine/gtkgui/application.py:341 #, fuzzy msgid "Soulseek _Privileges" msgstr "_Privilegierad" #: pynicotine/gtkgui/application.py:347 #, fuzzy msgid "_Preferences" msgstr "_Inställningar" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 #, fuzzy msgid "_Quit" msgstr "_Avsluta" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Bläddra bland offentliga aktier" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "Bro_wse Buddy-andelar" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "Bro_wse Buddy-andelar" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 #, fuzzy msgid "_Rescan Shares" msgstr "Indexera om delade filer" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Konfigurera andelar" #: pynicotine/gtkgui/application.py:404 #, fuzzy msgid "_Keyboard Shortcuts" msgstr "_Tangentbordsgenvägar" #: pynicotine/gtkgui/application.py:405 #, fuzzy msgid "_Setup Assistant" msgstr "_Inställningsassistent" #: pynicotine/gtkgui/application.py:406 #, fuzzy msgid "_Transfer Statistics" msgstr "_Överföringsstatistik" #: pynicotine/gtkgui/application.py:408 #, fuzzy msgid "Report a _Bug" msgstr "Rapportera en bugg" #: pynicotine/gtkgui/application.py:409 #, fuzzy msgid "Improve T_ranslations" msgstr "Förbättra T_översättningar" #: pynicotine/gtkgui/application.py:411 #, fuzzy msgid "_About Nicotine+" msgstr "Om _Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "Arkiv" #: pynicotine/gtkgui/application.py:423 #, fuzzy msgid "_Shares" msgstr "_Aktier" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 #, fuzzy msgid "_Help" msgstr "_Hjälp" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Bro_wse Buddy-andelar" #: pynicotine/gtkgui/application.py:490 #, fuzzy, python-format msgid "Unable to show notification: %s" msgstr "Det går inte att visa popup-fönster för meddelanden: %s" #: pynicotine/gtkgui/application.py:533 #, fuzzy msgid "You are still uploading files. Do you really want to exit?" msgstr "Vill du verkligen sluta med Nicotine+?" #: pynicotine/gtkgui/application.py:534 #, fuzzy msgid "Wait for uploads to finish" msgstr "Vänta på att uploads ska avslutas" #: pynicotine/gtkgui/application.py:536 #, fuzzy msgid "Do you really want to exit?" msgstr "Vill du verkligen sluta med Nicotine+?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 #, fuzzy msgid "_No" msgstr "Nej" #: pynicotine/gtkgui/application.py:545 #, fuzzy msgid "_Run in Background" msgstr "Kör i bakgrunden" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 #, fuzzy msgid "Quit Nicotine+" msgstr "Sluta med Nicotine+" #: pynicotine/gtkgui/application.py:570 #, fuzzy msgid "Shares Not Available" msgstr "Aktier ej tillgängliga" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Kontrollera att externa diskar är monterade och att mappbehörigheterna är " "korrekta." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 #, fuzzy msgid "_Cancel" msgstr "_Avbryt" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "Försök igen" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Tvinga omsökning" #: pynicotine/gtkgui/application.py:589 #, fuzzy msgid "Invalid Password" msgstr "Lösenord:" #: pynicotine/gtkgui/application.py:590 #, fuzzy, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Användaren %s finns redan och det lösenord som du angett är ogiltigt. Välj " "ett annat användarnamn om det är första gången du loggar in." #: pynicotine/gtkgui/application.py:599 #, fuzzy msgid "Change _Login Details" msgstr "Ändra inloggningsuppgifter" #: pynicotine/gtkgui/application.py:766 #, fuzzy msgid "Message Downloading Users" msgstr "Användare som laddar ned meddelanden" #: pynicotine/gtkgui/application.py:767 #, fuzzy msgid "Send private message to all users who are downloading from you:" msgstr "Skicka privat meddelande till alla användare som laddar ner från dig:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 #, fuzzy msgid "_Send Message" msgstr "Skicka meddelande" #: pynicotine/gtkgui/application.py:780 #, fuzzy msgid "Message Buddies" msgstr "Meddelanden" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Skicka privat meddelande till alla onlinekompisar:" #: pynicotine/gtkgui/application.py:810 #, fuzzy msgid "Select a Saved Shares List File" msgstr "Välj en fil med en lista över sparade andelar" #: pynicotine/gtkgui/application.py:907 #, fuzzy msgid "Critical Error" msgstr "Kritiskt fel" #: pynicotine/gtkgui/application.py:908 #, fuzzy msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ har stött på ett kritiskt fel och måste avslutas. Vänligen kopiera " "följande meddelande och inkludera det i en felrapport:" #: pynicotine/gtkgui/application.py:912 #, fuzzy msgid "_Quit Nicotine+" msgstr "Sluta med Nicotine+" #: pynicotine/gtkgui/application.py:913 #, fuzzy msgid "_Copy & Report Bug" msgstr "Kopiera och rapportera fel" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Status" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 #, fuzzy msgid "Country" msgstr "Land" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Användare" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Hastighet" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Filer" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted" msgstr "Betrodd" #: pynicotine/gtkgui/buddies.py:108 #, fuzzy msgid "Notify" msgstr "Avisera" #: pynicotine/gtkgui/buddies.py:114 #, fuzzy msgid "Prioritized" msgstr "Prioriterat" #: pynicotine/gtkgui/buddies.py:120 #, fuzzy msgid "Last Seen" msgstr "Senast använd" #: pynicotine/gtkgui/buddies.py:126 #, fuzzy msgid "Note" msgstr "Notera" #: pynicotine/gtkgui/buddies.py:143 #, fuzzy msgid "Add User _Note…" msgstr "Lägg till användare _Obs…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Ta bort" #: pynicotine/gtkgui/buddies.py:332 #, fuzzy msgid "Never seen" msgstr "Aldrig varit inloggad" #: pynicotine/gtkgui/buddies.py:500 #, fuzzy msgid "Add User Note" msgstr "Lägg till användarnotering" #: pynicotine/gtkgui/buddies.py:501 #, fuzzy, python-format msgid "Add a note about user %s:" msgstr "Lägg till några anteckningar om användaren %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Lägg till…" #: pynicotine/gtkgui/chatrooms.py:207 #, fuzzy msgid "Create New Room?" msgstr "Skapa ett nytt rum?" #: pynicotine/gtkgui/chatrooms.py:208 #, fuzzy, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Vill du verkligen skapa ett nytt rum \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 #, fuzzy msgid "Make room private" msgstr "Gör rummet privat" #: pynicotine/gtkgui/chatrooms.py:530 #, fuzzy msgid "Sear_ch User's Files" msgstr "Sear_ch Användarfiler" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 #, fuzzy msgid "Find…" msgstr "Sök…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 #, fuzzy msgid "Copy" msgstr "Kopiera" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 #, fuzzy msgid "Copy All" msgstr "Kopiera alla" #: pynicotine/gtkgui/chatrooms.py:541 #, fuzzy msgid "Clear Activity View" msgstr "Rensa aktivitetsvyn" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 #, fuzzy msgid "_Leave Room" msgstr "_Lämna rummet" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 #, fuzzy msgid "Copy Link" msgstr "Kopiera _URL" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Visa loggbok för rummet" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Radera rumslogg…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 #, fuzzy msgid "Clear Message View" msgstr "Visa ett meddelande" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s anslöt till rummet" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s nämnde dig i %(room)s-rummet." #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Meddelande från %(user)s i %(room)s-rummet" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Meddelande från %(user)s i %(room)s-rummet" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s lämnade rummet" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s är away" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s är tillbaka" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 #, fuzzy msgid "Delete Logged Messages?" msgstr "Radera loggade meddelanden?" #: pynicotine/gtkgui/chatrooms.py:995 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Vill du verkligen radera alla loggade meddelanden för det här rummet " "permanent?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Djibouti" #: pynicotine/gtkgui/dialogs/about.py:393 #, fuzzy msgid "Website" msgstr "Webbplats: %s" #: pynicotine/gtkgui/dialogs/about.py:428 #, fuzzy, python-format msgid "Error checking latest version: %s" msgstr "Fel vid hämtning av senaste versionen" #: pynicotine/gtkgui/dialogs/about.py:433 #, fuzzy, python-format msgid "New release available: %s" msgstr "Ny version tillgänglig: %s" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Uppdaterad" #: pynicotine/gtkgui/dialogs/about.py:467 #, fuzzy msgid "Checking latest version…" msgstr "Kontrollera _den senaste versionen" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 #, fuzzy msgid "Setup Assistant" msgstr "_Inställningsassistent" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 #, fuzzy msgid "Virtual Folder" msgstr "Virtuell mapp" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 #, fuzzy msgid "Folder" msgstr "Katalog" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Finish" msgstr "Klar" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 #, fuzzy msgid "_Next" msgstr "_Nästa" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 #, fuzzy msgid "Add a Shared Folder" msgstr "Lägg till en delad mapp" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 #, fuzzy msgid "Edit Shared Folder" msgstr "Delade mappar" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, fuzzy, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Ange ett nytt virtuellt namn för \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 #, fuzzy msgid "_Edit" msgstr "Betyg" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 #, fuzzy msgid "File Properties" msgstr "Fil Egenskaper" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Filegenskaper (%(num)i eller %(total)i)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, fuzzy, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Filegenskaper (%(num)i eller %(total)i)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 #, fuzzy msgid "_Apply" msgstr "Verkställ" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 #, fuzzy msgid "Add…" msgstr "Lägg till…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 #, fuzzy msgid "Edit…" msgstr "Redigera…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, fuzzy, python-format msgid "%s Settings" msgstr "%s Inställningar" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 #, fuzzy msgid "Add Item" msgstr "Komponent" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 #, fuzzy msgid "Edit Item" msgstr "Intressen" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 #, fuzzy msgid "Unknown" msgstr "Okänt" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 #, fuzzy msgid "Check Port Status" msgstr "Kontrollera portstatus" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, port %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 #, fuzzy msgid "Password Change Rejected" msgstr "Lösenordsändring avvisas" #: pynicotine/gtkgui/dialogs/preferences.py:217 #, fuzzy msgid "Enter a new password for your Soulseek account:" msgstr "Ange ett nytt lösenord för ditt Soulseek-konto:" #: pynicotine/gtkgui/dialogs/preferences.py:219 #, fuzzy msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Du är för närvarande utloggad från Soulseek-nätverket. Om du vill ändra " "lösenordet för ett befintligt Soulseek-konto måste du vara inloggad på det " "kontot." #: pynicotine/gtkgui/dialogs/preferences.py:222 #, fuzzy msgid "Enter password to use when logging in:" msgstr "Ange det lösenord som ska användas när du loggar in:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 #, fuzzy msgid "Change Password" msgstr "Lösenord:" #: pynicotine/gtkgui/dialogs/preferences.py:229 #, fuzzy msgid "_Change" msgstr "Lösenordsändring avvisas" #: pynicotine/gtkgui/dialogs/preferences.py:276 #, fuzzy msgid "No one" msgstr "Ingen" #: pynicotine/gtkgui/dialogs/preferences.py:277 #, fuzzy msgid "Everyone" msgstr "Alla" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Kompisar" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Förtroendevalda kompisar" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 #, fuzzy msgid "Nothing" msgstr "Ingenting" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 #, fuzzy msgid "Open File" msgstr "Nästa fil" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 #, fuzzy msgid "Open in File Manager" msgstr "_Öppna i filhanteraren" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Sök" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 #, fuzzy msgid "Pause" msgstr "Pausa" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 #, fuzzy msgid "Resume" msgstr "Återuppta" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 #, fuzzy msgid "Browse Folder" msgstr "_Bläddra i mapp(ar)" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Syntax: Skiftlägesokänslig. Om det är aktiverat kan Python reguljära " "uttryck användas, annars stöds endast jokertecken *-matchningar." #: pynicotine/gtkgui/dialogs/preferences.py:320 #, fuzzy msgid "Filter" msgstr "Filter" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Regex" #: pynicotine/gtkgui/dialogs/preferences.py:458 #, fuzzy msgid "Add Download Filter" msgstr "Lägg till filter för nedladdning" #: pynicotine/gtkgui/dialogs/preferences.py:459 #, fuzzy msgid "Enter a new download filter:" msgstr "Ange ett nytt nedladdningsfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Aktivera reguljära uttryck" #: pynicotine/gtkgui/dialogs/preferences.py:489 #, fuzzy msgid "Edit Download Filter" msgstr "Redigera filter för nedladdning" #: pynicotine/gtkgui/dialogs/preferences.py:490 #, fuzzy msgid "Modify the following download filter:" msgstr "Ändra följande nedladdningsfilter:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, fuzzy, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Misslyckades! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 #, fuzzy msgid "Filters Successful" msgstr "Filter Framgångsrikt" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 #, fuzzy msgid "Public" msgstr "Offentlig" #: pynicotine/gtkgui/dialogs/preferences.py:612 #, fuzzy msgid "Accessible To" msgstr "Tillgänglig för" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Avbryt" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 #, fuzzy msgid "Retry" msgstr "Försök igen" #: pynicotine/gtkgui/dialogs/preferences.py:803 #, fuzzy msgid "Round Robin" msgstr "Round Robin" #: pynicotine/gtkgui/dialogs/preferences.py:804 #, fuzzy msgid "First In, First Out" msgstr "Först in, först ut" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 #, fuzzy msgid "Username" msgstr "Användarnamn" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 #, fuzzy msgid "IP Address" msgstr "Blockera IP-adress" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 #, fuzzy msgid "Ignore User" msgstr "Ignorera användare" #: pynicotine/gtkgui/dialogs/preferences.py:1032 #, fuzzy msgid "Enter the name of the user you want to ignore:" msgstr "Ange namnet på den användare som du vill ignorera:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 #, fuzzy msgid "Ignore IP Address" msgstr "Ignorera IP-adress" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #, fuzzy msgid "Enter an IP address you want to ignore:" msgstr "Ange en IP-adress som du vill ignorera:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "* is a wildcard" msgstr "* är ett jokertecken" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 #, fuzzy msgid "Ban User" msgstr "Förbjud användare" #: pynicotine/gtkgui/dialogs/preferences.py:1195 #, fuzzy msgid "Enter the name of the user you want to ban:" msgstr "Ange namnet på den användare som du vill spärra:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 #, fuzzy msgid "Ban IP Address" msgstr "Blockera IP-adress" #: pynicotine/gtkgui/dialogs/preferences.py:1226 #, fuzzy msgid "Enter an IP address you want to ban:" msgstr "Ange en IP-adress som du vill blockera:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 #, fuzzy msgid "Format codes" msgstr "Formatkoder" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 #, fuzzy msgid "Pattern" msgstr "Mönster" #: pynicotine/gtkgui/dialogs/preferences.py:1317 #, fuzzy msgid "Replacement" msgstr "Ersättning" #: pynicotine/gtkgui/dialogs/preferences.py:1447 #, fuzzy msgid "Censor Pattern" msgstr "Censurmönster" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 #, fuzzy msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Ange ett mönster som du vill censurera. Lägg till blanksteg runt mönstret om " "du inte vill matcha strängar inom ord (kan misslyckas i början och slutet av " "rader)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Censurerade mönster" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Ersättning" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Ange textmönstret respektive ersättning:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Ersättning" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "Standard" #: pynicotine/gtkgui/dialogs/preferences.py:1668 #, fuzzy msgid "Show confirmation dialog" msgstr "Visa dialogrutan för bekräftelse" #: pynicotine/gtkgui/dialogs/preferences.py:1669 #, fuzzy msgid "Run in the background" msgstr "kör i bakgrunden" #: pynicotine/gtkgui/dialogs/preferences.py:1677 #, fuzzy msgid "bold" msgstr "fetstil" #: pynicotine/gtkgui/dialogs/preferences.py:1678 #, fuzzy msgid "italic" msgstr "kursiv" #: pynicotine/gtkgui/dialogs/preferences.py:1679 #, fuzzy msgid "underline" msgstr "Understrykning" #: pynicotine/gtkgui/dialogs/preferences.py:1680 #, fuzzy msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Meddelanden" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Kompislista i chattrum" #: pynicotine/gtkgui/dialogs/preferences.py:1690 #, fuzzy msgid "Always visible sidebar" msgstr "Alltid synlig sidopanel" #: pynicotine/gtkgui/dialogs/preferences.py:1695 #, fuzzy msgid "Top" msgstr "Topp" #: pynicotine/gtkgui/dialogs/preferences.py:1696 #, fuzzy msgid "Bottom" msgstr "Botten" #: pynicotine/gtkgui/dialogs/preferences.py:1697 #, fuzzy msgid "Left" msgstr "Vänster" #: pynicotine/gtkgui/dialogs/preferences.py:1698 #, fuzzy msgid "Right" msgstr "Höger" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Online" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Away" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Lösenordsändring avvisas" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Markera" #: pynicotine/gtkgui/dialogs/preferences.py:1839 #, fuzzy msgid "Window" msgstr "Fönster" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Ansluten:" #: pynicotine/gtkgui/dialogs/preferences.py:1844 #, fuzzy msgid "Away (Tray)" msgstr "Away (bricka)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Offline" #: pynicotine/gtkgui/dialogs/preferences.py:1846 #, fuzzy msgid "Message (Tray)" msgstr "Meddelande (fack)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokoll" #: pynicotine/gtkgui/dialogs/preferences.py:2423 #, fuzzy msgid "Command" msgstr "Kommentarer" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Hanterare" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Ange protokollet och kommandot för URL-handern, respektive:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Redigera kommentarer" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Ange ett nytt virtuellt namn för \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/preferences.py:2672 #, fuzzy msgid "Username;APIKEY" msgstr "Användarnamn:" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "Klientnamn (t.ex. amarok, audacious, exaile) eller tomt för auto:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Användarnamn:" #: pynicotine/gtkgui/dialogs/preferences.py:2684 #, fuzzy msgid "Command:" msgstr "Kommentarer" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 #, fuzzy msgid "Title" msgstr "Titel" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, fuzzy, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Spela nu (vanligtvis \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 #, fuzzy msgid "Artist" msgstr "Artist" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Varaktighet" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bitrate" #: pynicotine/gtkgui/dialogs/preferences.py:2701 #, fuzzy msgid "Comment" msgstr "Kommentar" #: pynicotine/gtkgui/dialogs/preferences.py:2705 #, fuzzy msgid "Album" msgstr "Album" #: pynicotine/gtkgui/dialogs/preferences.py:2707 #, fuzzy msgid "Track Number" msgstr "Spårnummer" #: pynicotine/gtkgui/dialogs/preferences.py:2709 #, fuzzy msgid "Year" msgstr "År" #: pynicotine/gtkgui/dialogs/preferences.py:2711 #, fuzzy msgid "Filename (URI)" msgstr "Filnamn (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 #, fuzzy msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 #, fuzzy msgid "Enabled" msgstr "Aktiverat" #: pynicotine/gtkgui/dialogs/preferences.py:2782 #, fuzzy msgid "Plugin" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2831 #, fuzzy msgid "No Plugin Selected" msgstr "Ingen insticksmodul vald" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 #, fuzzy msgid "Network" msgstr "Nätverk" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 #, fuzzy msgid "User Interface" msgstr "Gränssnitt" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Delade mappar" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Uppladdningar" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Sökningar" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Användare Bläddra" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 #, fuzzy msgid "Chats" msgstr "_Chattrum" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 #, fuzzy msgid "Now Playing" msgstr "Spelas nu" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Loggar" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 #, fuzzy msgid "Banned Users" msgstr "Banna" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 #, fuzzy msgid "Ignored Users" msgstr "Ignorerade användare:" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 #, fuzzy msgid "Plugins" msgstr "Plugin" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 #, fuzzy msgid "URL Handlers" msgstr "Hanterare" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 #, fuzzy msgid "Preferences" msgstr "Inställningar" #: pynicotine/gtkgui/dialogs/preferences.py:3252 #, fuzzy msgid "Pick a File Name for Config Backup" msgstr "Välj ett filnamn för konfigurationsbackupen" #: pynicotine/gtkgui/dialogs/statistics.py:75 #, fuzzy msgid "Transfer Statistics" msgstr "Överföringsstatistik" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Totalt sedan %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 #, fuzzy msgid "Reset Transfer Statistics?" msgstr "Återställa överföringsstatistik?" #: pynicotine/gtkgui/dialogs/statistics.py:124 #, fuzzy msgid "Do you really want to reset transfer statistics?" msgstr "Vill du verkligen återställa överföringsstatistiken?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 #, fuzzy msgid "Wishlist" msgstr "_Vänslista" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 #, fuzzy msgid "Wish" msgstr "Önskemål" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 #, fuzzy msgid "_Search for Item" msgstr "_Söka efter objekt" #: pynicotine/gtkgui/dialogs/wishlist.py:134 #, fuzzy msgid "Edit Wish" msgstr "Betyg" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, fuzzy, python-format msgid "Enter new value for wish '%s':" msgstr "Ange ett nytt virtuellt namn för \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/wishlist.py:174 #, fuzzy msgid "Clear Wishlist?" msgstr "Klar önskelista?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 #, fuzzy msgid "Do you really want to clear your wishlist?" msgstr "Vill du verkligen rensa din önskelista?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Sökväg" #: pynicotine/gtkgui/downloads.py:46 #, fuzzy msgid "_Resume" msgstr "_Resumé" #: pynicotine/gtkgui/downloads.py:47 #, fuzzy msgid "P_ause" msgstr "P_ause" #: pynicotine/gtkgui/downloads.py:70 #, fuzzy msgid "Finished / Filtered" msgstr "Färdiga / filtrerade" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Klar" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 #, fuzzy msgid "Paused" msgstr "Pausad" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 #, fuzzy msgid "Filtered" msgstr "Filtrerad" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "raderade" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 #, fuzzy msgid "Queued…" msgstr "I kö…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 #, fuzzy msgid "Everything…" msgstr "Allt…" #: pynicotine/gtkgui/downloads.py:119 #, fuzzy msgid "Clear Queued Downloads" msgstr "Rensa köade nedladdningar" #: pynicotine/gtkgui/downloads.py:120 #, fuzzy msgid "Do you really want to clear all queued downloads?" msgstr "Vill du verkligen rensa alla nedladdningar som står i kö?" #: pynicotine/gtkgui/downloads.py:132 #, fuzzy msgid "Clear All Downloads" msgstr "Rensa alla nedladdningar" #: pynicotine/gtkgui/downloads.py:133 #, fuzzy msgid "Do you really want to clear all downloads?" msgstr "Vill du verkligen rensa alla nedladdningar?" #: pynicotine/gtkgui/downloads.py:150 #, fuzzy, python-format msgid "Download %(num)i files?" msgstr "Ladda ner %(num)i filer?" #: pynicotine/gtkgui/downloads.py:151 #, fuzzy, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Vill du verkligen ladda ner %(num)i-filer från %(user)ss mapp %(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 #, fuzzy msgid "_Download Folder" msgstr "_Hämtningsmapp" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 #, fuzzy msgid "Likes" msgstr "Gillar" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 #, fuzzy msgid "Dislikes" msgstr "Ogillar" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Betyg" #: pynicotine/gtkgui/interests.py:111 #, fuzzy msgid "Item" msgstr "Komponent" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 #, fuzzy msgid "_Recommendations for Item" msgstr "_Rekommendationer för punkt" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 #, fuzzy msgid "I _Like This" msgstr "Jag _gillar det här" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 #, fuzzy msgid "I _Dislike This" msgstr "Jag _Obillar mig detta" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 #, fuzzy msgid "Recommendations" msgstr "Rekommendationer" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 #, fuzzy msgid "Similar Users" msgstr "Liknande användare" #: pynicotine/gtkgui/interests.py:415 #, fuzzy, python-format msgid "Recommendations (%s)" msgstr "Rekommendationer för %s" #: pynicotine/gtkgui/interests.py:436 #, fuzzy, python-format msgid "Similar Users (%s)" msgstr "Liknande användare" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, fuzzy, python-format msgid "Private Message from %(user)s" msgstr "Privat meddelande från %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Resultat för önskelista hittades" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Användare Bläddra" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 #, fuzzy msgid "Chat Rooms" msgstr "Chattrum" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Intressen" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 #, fuzzy msgid "Chat" msgstr "Chatt" #: pynicotine/gtkgui/mainwindow.py:1061 #, fuzzy msgid "[Debug] Connections" msgstr "Anslutningar" #: pynicotine/gtkgui/mainwindow.py:1062 #, fuzzy msgid "[Debug] Messages" msgstr "Meddelanden" #: pynicotine/gtkgui/mainwindow.py:1063 #, fuzzy msgid "[Debug] Transfers" msgstr "Överföringar" #: pynicotine/gtkgui/mainwindow.py:1064 #, fuzzy msgid "[Debug] Miscellaneous" msgstr "Diverse" #: pynicotine/gtkgui/mainwindow.py:1069 #, fuzzy msgid "_Find…" msgstr "Sök…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 #, fuzzy msgid "_Copy" msgstr "Kopiera" #: pynicotine/gtkgui/mainwindow.py:1072 #, fuzzy msgid "Copy _All" msgstr "Kopiera alla" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Visa felsökningsloggar" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Visa överföringslogg" #: pynicotine/gtkgui/mainwindow.py:1077 #, fuzzy msgid "_Log Categories" msgstr "Kategorier" #: pynicotine/gtkgui/mainwindow.py:1079 #, fuzzy msgid "Clear Log View" msgstr "Rensa loggvyn" #: pynicotine/gtkgui/mainwindow.py:1148 #, fuzzy, python-format msgid "Downloads: %(speed)s" msgstr "Nedladdningar: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, fuzzy, python-format msgid "Uploads: %(speed)s" msgstr "Uppladdningar: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Indexering påbörjad" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Indexering påbörjad" #: pynicotine/gtkgui/mainwindow.py:1236 #, fuzzy msgid "Quitting..." msgstr "Avslutar..." #: pynicotine/gtkgui/popovers/chathistory.py:77 #, fuzzy msgid "Latest Message" msgstr "Skicka meddelande" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Rum" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Användare" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 #, fuzzy msgid "Join Room" msgstr "Gå in i rummet" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 #, fuzzy msgid "Leave Room" msgstr "Lämna rummet" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 #, fuzzy msgid "Disown Private Room" msgstr "Disown privat rum" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 #, fuzzy msgid "Cancel Room Membership" msgstr "Avbryta medlemskap i rummet" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 #, fuzzy msgid "Close All Tabs…" msgstr "Stäng alla flikar…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 #, fuzzy msgid "_Close Tab" msgstr "_Stäng fliken" #: pynicotine/gtkgui/privatechat.py:372 #, fuzzy msgid "View Chat Log" msgstr "Visa chattlogg" #: pynicotine/gtkgui/privatechat.py:373 #, fuzzy msgid "Delete Chat Log…" msgstr "Ta bort chattlogg…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Överföringar" #: pynicotine/gtkgui/privatechat.py:474 #, fuzzy msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Vill du verkligen radera alla loggade meddelanden för den här användaren " "permanent?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "" "* Meddelanden som skickades medan du var offline. Tidsstämplar rapporteras " "av servern och kan vara avstängda." #: pynicotine/gtkgui/search.py:81 #, fuzzy msgid "_Global" msgstr "Global" #: pynicotine/gtkgui/search.py:82 #, fuzzy msgid "_Buddies" msgstr "Kompisar" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 #, fuzzy msgid "_Rooms" msgstr "Rum" #: pynicotine/gtkgui/search.py:84 #, fuzzy msgid "_User" msgstr "Användare" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 #, fuzzy msgid "In Queue" msgstr "I kö" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 #, fuzzy msgid "File Type" msgstr "Filtyp" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Filnamn" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Storlek" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "Kvalitet" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 #, fuzzy msgid "Copy _File Path" msgstr "Kopiera _Filens sökväg" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Kopiera _URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 #, fuzzy msgid "Copy Folder U_RL" msgstr "Kopiera mapp U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 #, fuzzy msgid "_Download File(s)" msgstr "_Ladda ner fil(er)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 #, fuzzy msgid "Download File(s) _To…" msgstr "Ladda ner fil(er) _till…" #: pynicotine/gtkgui/search.py:607 #, fuzzy msgid "Download _Folder(s)" msgstr "Ladda ner _mapp(ar)" #: pynicotine/gtkgui/search.py:608 #, fuzzy msgid "Download F_older(s) To…" msgstr "Ladda ner F_older(s) till…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "_Bläddra filer" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "_Bläddra i mapp(ar)" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 #, fuzzy msgid "F_ile Properties" msgstr "F_ile Egenskaper" #: pynicotine/gtkgui/search.py:621 #, fuzzy msgid "Copy Search Term" msgstr "Kopiera sökbegrepp" #: pynicotine/gtkgui/search.py:623 #, fuzzy msgid "Clear All Results" msgstr "Rensa alla resultat" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Rensa filterhistorik" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "_Resultatfilter" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, fuzzy, python-format msgid "[PRIVATE] %s" msgstr "[PRIVAT]" #: pynicotine/gtkgui/search.py:1267 #, fuzzy, python-format msgid "_Result Filters [%d]" msgstr "_Result Filters [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 #, fuzzy msgid "_Result Filters" msgstr "_Resultatfilter" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Rensa alla aktiva filter" #: pynicotine/gtkgui/search.py:1319 #, fuzzy msgid "Add Wi_sh" msgstr "Lägg till Wi_sh" #: pynicotine/gtkgui/search.py:1322 #, fuzzy msgid "Remove Wi_sh" msgstr "Ta bort ett alias" #: pynicotine/gtkgui/search.py:1339 #, fuzzy msgid "Select User's Results" msgstr "Välj användarens överföringar" #: pynicotine/gtkgui/search.py:1462 #, fuzzy, python-format msgid "Total: %s" msgstr "Totalt" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 #, fuzzy msgid "Results" msgstr "Resultat" #: pynicotine/gtkgui/search.py:1574 #, fuzzy msgid "Select Destination Folder for File(s)" msgstr "Välj destination för nedladdning av fil(er) från användare" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 #, fuzzy msgid "Select Destination Folder" msgstr "Välj en mapp" #: pynicotine/gtkgui/transfers.py:60 #, fuzzy msgid "Queued" msgstr "Köade" #: pynicotine/gtkgui/transfers.py:61 #, fuzzy msgid "Queued (prioritized)" msgstr "prioriteras" #: pynicotine/gtkgui/transfers.py:62 #, fuzzy msgid "Queued (privileged)" msgstr "privilegierad" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Hämtar status" #: pynicotine/gtkgui/transfers.py:64 #, fuzzy msgid "Transferring" msgstr "Överför" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "Anslutningen stängd av annan användare" #: pynicotine/gtkgui/transfers.py:66 #, fuzzy msgid "Connection timeout" msgstr "Anslut" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Användaren utloggad" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 #, fuzzy msgid "Cancelled" msgstr "Avbryt" #: pynicotine/gtkgui/transfers.py:72 #, fuzzy msgid "Download folder error" msgstr "Fel på nedladdningskatalog" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Lokalt filfel" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Banna" #: pynicotine/gtkgui/transfers.py:75 #, fuzzy msgid "File not shared" msgstr "Filen är inte delad" #: pynicotine/gtkgui/transfers.py:76 #, fuzzy msgid "Pending shutdown" msgstr "Väntar på avstängning" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Överföringar" #: pynicotine/gtkgui/transfers.py:176 #, fuzzy msgid "Queue" msgstr "Köade" #: pynicotine/gtkgui/transfers.py:182 #, fuzzy msgid "Percent" msgstr "Procent" #: pynicotine/gtkgui/transfers.py:199 #, fuzzy msgid "Time Elapsed" msgstr "Förfluten tid" #: pynicotine/gtkgui/transfers.py:205 #, fuzzy msgid "Time Left" msgstr "Tid kvar" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Öppen lista" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 #, fuzzy msgid "Open in File _Manager" msgstr "Öppna i File _Manager" #: pynicotine/gtkgui/transfers.py:266 #, fuzzy msgid "_Search" msgstr "_Sök" #: pynicotine/gtkgui/transfers.py:269 #, fuzzy msgid "Clear All" msgstr "Rensa alla" #: pynicotine/gtkgui/transfers.py:874 #, fuzzy msgid "Select User's Transfers" msgstr "Välj användarens överföringar" #: pynicotine/gtkgui/uploads.py:47 #, fuzzy msgid "_Abort" msgstr "Avbryt" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Avslutad / avbruten / misslyckad" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Färdiga / filtrerade" #: pynicotine/gtkgui/uploads.py:75 #, fuzzy msgid "Failed" msgstr "Misslyckades" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Användaren utloggad" #: pynicotine/gtkgui/uploads.py:125 #, fuzzy msgid "Clear Queued Uploads" msgstr "Rensa köade uppladdningar" #: pynicotine/gtkgui/uploads.py:126 #, fuzzy msgid "Do you really want to clear all queued uploads?" msgstr "Vill du verkligen rensa alla uppladdningar som står i kö?" #: pynicotine/gtkgui/uploads.py:138 #, fuzzy msgid "Clear All Uploads" msgstr "Rensa alla uppladdningar" #: pynicotine/gtkgui/uploads.py:139 #, fuzzy msgid "Do you really want to clear all uploads?" msgstr "Vill du verkligen rensa alla uppladdningar?" #: pynicotine/gtkgui/userbrowse.py:278 #, fuzzy msgid "_Save Shares List to Disk" msgstr "_Spara listan över delningar på disk" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Ladda upp mapp (med undermappar) till användare" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 #, fuzzy msgid "Copy _Folder Path" msgstr "Kopiera _Folder Path" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Ladda ner _mapp(ar)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Ladda ner F_older(s) till…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Filnamn" #: pynicotine/gtkgui/userbrowse.py:364 #, fuzzy msgid "Up_load File(s)…" msgstr "Ladda upp fil(er)" #: pynicotine/gtkgui/userbrowse.py:365 #, fuzzy msgid "Upload Folder…" msgstr "Ladda upp mapp till…" #: pynicotine/gtkgui/userbrowse.py:382 #, fuzzy msgid "Download Folder _To…" msgstr "Fel på nedladdningskatalog" #: pynicotine/gtkgui/userbrowse.py:584 #, fuzzy msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Användarens lista över delade filer är tom. Antingen delar användaren " "ingenting eller så delar de filer privat." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Det går inte att begära delade filer från användaren. Antingen är användaren " "offline, ni har båda en stängd lyssnarport eller så är det ett tillfälligt " "anslutningsproblem." #: pynicotine/gtkgui/userbrowse.py:907 #, fuzzy msgid "Select Destination for Downloading Multiple Folders" msgstr "Välj destination för nedladdning av en mapp från användare" #: pynicotine/gtkgui/userbrowse.py:951 #, fuzzy msgid "Upload Folder (with Subfolders) To User" msgstr "Ladda upp mapp (med undermappar) till användare" #: pynicotine/gtkgui/userbrowse.py:953 #, fuzzy msgid "Upload Folder To User" msgstr "Ladda upp mapp till…" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 #, fuzzy msgid "Enter the name of the user you want to upload to:" msgstr "Ange namnet på den användare som du vill ladda upp till:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "_Uppladdningar" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Välj destination för nedladdning av fil(er) från användare" #: pynicotine/gtkgui/userbrowse.py:1146 #, fuzzy msgid "Upload File(s) To User" msgstr "Ladda upp fil(er)" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Bild:" #: pynicotine/gtkgui/userinfo.py:364 #, fuzzy msgid "Save Picture" msgstr "Spara bild" #: pynicotine/gtkgui/userinfo.py:453 #, fuzzy, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Det gick inte att läsa in bilden för användaren %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 #, fuzzy msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Det går inte att begära information från användaren. Antingen har ni båda en " "stängd lyssnarport, användaren är offline eller så är det ett tillfälligt " "anslutningsproblem." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Ta bort ett alias" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Lägg till kompis…" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Förbjud användare" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ignorera användare" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "Yes" msgstr "Ja" #: pynicotine/gtkgui/userinfo.py:564 #, fuzzy msgid "No" msgstr "Nej" #: pynicotine/gtkgui/userinfo.py:698 #, fuzzy msgid "Please enter number of days." msgstr "Ange ett helt tal!" #: pynicotine/gtkgui/userinfo.py:712 #, fuzzy, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Gåva dagar av dina Soulseek-privilegier till användare %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, fuzzy, python-format msgid "%(days)s days left" msgstr "%(days)s dagar kvar" #: pynicotine/gtkgui/userinfo.py:720 #, fuzzy msgid "Gift Privileges" msgstr "Ge privilegier" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Ge privilegier" #: pynicotine/gtkgui/widgets/dialogs.py:280 #, fuzzy msgid "Close" msgstr "Stäng flik" #: pynicotine/gtkgui/widgets/dialogs.py:456 #, fuzzy msgid "_Yes" msgstr "_Ja" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 #, fuzzy msgid "_OK" msgstr "OK" #: pynicotine/gtkgui/widgets/filechooser.py:39 #, fuzzy msgid "Select a File" msgstr "Välj en Fil" #: pynicotine/gtkgui/widgets/filechooser.py:154 #, fuzzy msgid "Select a Folder" msgstr "Välj en mapp" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Välj Alla" #: pynicotine/gtkgui/widgets/filechooser.py:176 #, fuzzy msgid "Select an Image" msgstr "Välj en bild" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Alla bilder" #: pynicotine/gtkgui/widgets/filechooser.py:221 #, fuzzy msgid "Save as…" msgstr "Spara som…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 #, fuzzy msgid "(None)" msgstr "(ingen)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "_Stäng fliken" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 #, fuzzy msgid "Close All Tabs?" msgstr "Stänga alla flikar?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 #, fuzzy msgid "Do you really want to close all tabs?" msgstr "Vill du verkligen stänga alla flikar?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Olästa flikar" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Stänga alla flikar?" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "_Stäng fliken" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, fuzzy, python-format msgid "%s File(s) Selected" msgstr "%s Fil(er) vald(a)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 #, fuzzy msgid "_Browse Files" msgstr "_Sök" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Lägg till kompis…" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 #, fuzzy msgid "Show IP A_ddress" msgstr "Visa IP A_ddress" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 #, fuzzy msgid "Private Rooms" msgstr "Privata rum" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, fuzzy, python-format msgid "Remove from Private Room %s" msgstr "Ta bort från ett privat rum %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, fuzzy, python-format msgid "Add to Private Room %s" msgstr "Lägg till privat rum %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, fuzzy, python-format msgid "Remove as Operator of %s" msgstr "Ta bort som Operatör av %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, fuzzy, python-format msgid "Add as Operator of %s" msgstr "Lägg till som Operatör av %s" #: pynicotine/gtkgui/widgets/textview.py:452 #, fuzzy msgid "--- old messages above ---" msgstr "--- gamla meddelanden ovan ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Körde: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Audio" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Bild:" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Arkiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 #, fuzzy msgid "Miscellaneous" msgstr "Diverse" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Dokument/text" #: pynicotine/gtkgui/widgets/theme.py:216 #, fuzzy msgid "Text" msgstr "Text" #: pynicotine/gtkgui/widgets/theme.py:325 #, fuzzy, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Fel vid laddning av anpassad ikon %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 #, fuzzy msgid "Hide Nicotine+" msgstr "Dölj Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 #, fuzzy msgid "Show Nicotine+" msgstr "Visa Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, fuzzy, python-format msgid "Column #%i" msgstr "Kolumn #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 #, fuzzy msgid "Ungrouped" msgstr "Ogrupperade" #: pynicotine/gtkgui/widgets/treeview.py:888 #, fuzzy msgid "Group by Folder" msgstr "Gruppera efter mapp" #: pynicotine/gtkgui/widgets/treeview.py:891 #, fuzzy msgid "Group by User" msgstr "Gruppera efter användare" #: pynicotine/headless/application.py:74 #, fuzzy, python-format msgid "Do you really want to exit? %s" msgstr "Vill du verkligen sluta med Nicotine+?" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Användaren %s finns redan och det lösenord som du angett är ogiltigt. Välj " "ett annat användarnamn om det är första gången du loggar in." #: pynicotine/headless/application.py:80 #, fuzzy, python-format msgid "Type %s to log in with another username or password." msgstr "Skriv %s för att logga in med ett annat användarnamn eller lösenord." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Lösenord" #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 #, fuzzy msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Om du vill skapa ett nytt Soulseek-konto fyller du i önskat användarnamn och " "lösenord. Om du redan har ett konto fyller du i dina befintliga " "inloggningsuppgifter." #: pynicotine/headless/application.py:116 #, fuzzy msgid "The following shares are unavailable:" msgstr "Följande shares är inte tillgängliga:" #: pynicotine/headless/application.py:122 #, fuzzy, python-format msgid "Retry rescan? %s" msgstr "Försök med omskanning? %s" #: pynicotine/logfacility.py:174 #, fuzzy, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Kunde inte skriva till loggfilen \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Det går inte att spara filen %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 #, fuzzy msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 #, fuzzy msgid "United Arab Emirates" msgstr "Förenade Arabemiraten" #: pynicotine/networkfilter.py:39 #, fuzzy msgid "Afghanistan" msgstr "Afghanistan" #: pynicotine/networkfilter.py:40 #, fuzzy msgid "Antigua & Barbuda" msgstr "Antigua och Barbuda" #: pynicotine/networkfilter.py:41 #, fuzzy msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 #, fuzzy msgid "Albania" msgstr "Albanien" #: pynicotine/networkfilter.py:43 #, fuzzy msgid "Armenia" msgstr "Armenien" #: pynicotine/networkfilter.py:44 #, fuzzy msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 #, fuzzy msgid "Antarctica" msgstr "Antarktis" #: pynicotine/networkfilter.py:46 #, fuzzy msgid "Argentina" msgstr "Argentina" #: pynicotine/networkfilter.py:47 #, fuzzy msgid "American Samoa" msgstr "Amerikanska Samoa" #: pynicotine/networkfilter.py:48 #, fuzzy msgid "Austria" msgstr "Österrike" #: pynicotine/networkfilter.py:49 #, fuzzy msgid "Australia" msgstr "Australien" #: pynicotine/networkfilter.py:50 #, fuzzy msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 #, fuzzy msgid "Åland Islands" msgstr "Åland" #: pynicotine/networkfilter.py:52 #, fuzzy msgid "Azerbaijan" msgstr "Azerbajdzjan" #: pynicotine/networkfilter.py:53 #, fuzzy msgid "Bosnia & Herzegovina" msgstr "Bosnien och Hercegovina" #: pynicotine/networkfilter.py:54 #, fuzzy msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 #, fuzzy msgid "Bangladesh" msgstr "Bangladesh" #: pynicotine/networkfilter.py:56 #, fuzzy msgid "Belgium" msgstr "Belgien" #: pynicotine/networkfilter.py:57 #, fuzzy msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 #, fuzzy msgid "Bulgaria" msgstr "Bulgarien" #: pynicotine/networkfilter.py:59 #, fuzzy msgid "Bahrain" msgstr "Bahrain" #: pynicotine/networkfilter.py:60 #, fuzzy msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 #, fuzzy msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 #, fuzzy msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: pynicotine/networkfilter.py:63 #, fuzzy msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 #, fuzzy msgid "Brunei Darussalam" msgstr "Brunei" #: pynicotine/networkfilter.py:65 #, fuzzy msgid "Bolivia" msgstr "Bolivien" #: pynicotine/networkfilter.py:66 #, fuzzy msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius och Saba" #: pynicotine/networkfilter.py:67 #, fuzzy msgid "Brazil" msgstr "Brasilien" #: pynicotine/networkfilter.py:68 #, fuzzy msgid "Bahamas" msgstr "Bahamas" #: pynicotine/networkfilter.py:69 #, fuzzy msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 #, fuzzy msgid "Bouvet Island" msgstr "Bouvetön" #: pynicotine/networkfilter.py:71 #, fuzzy msgid "Botswana" msgstr "Botswana" #: pynicotine/networkfilter.py:72 #, fuzzy msgid "Belarus" msgstr "Vitryssland" #: pynicotine/networkfilter.py:73 #, fuzzy msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 #, fuzzy msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 #, fuzzy msgid "Cocos (Keeling) Islands" msgstr "Kokosöarna" #: pynicotine/networkfilter.py:76 #, fuzzy msgid "Democratic Republic of Congo" msgstr "Demokratiska republiken Kongo" #: pynicotine/networkfilter.py:77 #, fuzzy msgid "Central African Republic" msgstr "Centralafrikanska republiken" #: pynicotine/networkfilter.py:78 #, fuzzy msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 #, fuzzy msgid "Switzerland" msgstr "Schweiz" #: pynicotine/networkfilter.py:80 #, fuzzy msgid "Ivory Coast" msgstr "Elfenbenskusten" #: pynicotine/networkfilter.py:81 #, fuzzy msgid "Cook Islands" msgstr "Cooköarna" #: pynicotine/networkfilter.py:82 #, fuzzy msgid "Chile" msgstr "Chile" #: pynicotine/networkfilter.py:83 #, fuzzy msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 #, fuzzy msgid "China" msgstr "Kina" #: pynicotine/networkfilter.py:85 #, fuzzy msgid "Colombia" msgstr "Colombia" #: pynicotine/networkfilter.py:86 #, fuzzy msgid "Costa Rica" msgstr "Costa Rica" #: pynicotine/networkfilter.py:87 #, fuzzy msgid "Cuba" msgstr "Kuba" #: pynicotine/networkfilter.py:88 #, fuzzy msgid "Cabo Verde" msgstr "Cabo Verde" #: pynicotine/networkfilter.py:89 #, fuzzy msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 #, fuzzy msgid "Christmas Island" msgstr "Julön" #: pynicotine/networkfilter.py:91 #, fuzzy msgid "Cyprus" msgstr "Cypern" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Tjeckien" #: pynicotine/networkfilter.py:93 #, fuzzy msgid "Germany" msgstr "Tyskland" #: pynicotine/networkfilter.py:94 #, fuzzy msgid "Djibouti" msgstr "Djibouti" #: pynicotine/networkfilter.py:95 #, fuzzy msgid "Denmark" msgstr "Danmark" #: pynicotine/networkfilter.py:96 #, fuzzy msgid "Dominica" msgstr "Dominique" #: pynicotine/networkfilter.py:97 #, fuzzy msgid "Dominican Republic" msgstr "Dominikanska Republiken" #: pynicotine/networkfilter.py:98 #, fuzzy msgid "Algeria" msgstr "Algeriet" #: pynicotine/networkfilter.py:99 #, fuzzy msgid "Ecuador" msgstr "Equador" #: pynicotine/networkfilter.py:100 #, fuzzy msgid "Estonia" msgstr "Estland" #: pynicotine/networkfilter.py:101 #, fuzzy msgid "Egypt" msgstr "Egypten" #: pynicotine/networkfilter.py:102 #, fuzzy msgid "Western Sahara" msgstr "Västsahara" #: pynicotine/networkfilter.py:103 #, fuzzy msgid "Eritrea" msgstr "Eritrea" #: pynicotine/networkfilter.py:104 #, fuzzy msgid "Spain" msgstr "Spanien" #: pynicotine/networkfilter.py:105 #, fuzzy msgid "Ethiopia" msgstr "Etiopien" #: pynicotine/networkfilter.py:106 #, fuzzy msgid "Europe" msgstr "Europa" #: pynicotine/networkfilter.py:107 #, fuzzy msgid "Finland" msgstr "Finland" #: pynicotine/networkfilter.py:108 #, fuzzy msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 #, fuzzy msgid "Falkland Islands (Malvinas)" msgstr "Falklandsöarna (Malvinas)" #: pynicotine/networkfilter.py:110 #, fuzzy msgid "Micronesia" msgstr "Mikronesien" #: pynicotine/networkfilter.py:111 #, fuzzy msgid "Faroe Islands" msgstr "Färöarna" #: pynicotine/networkfilter.py:112 #, fuzzy msgid "France" msgstr "Frankrike" #: pynicotine/networkfilter.py:113 #, fuzzy msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 #, fuzzy msgid "Great Britain" msgstr "Storbritannien" #: pynicotine/networkfilter.py:115 #, fuzzy msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 #, fuzzy msgid "Georgia" msgstr "Georgien" #: pynicotine/networkfilter.py:117 #, fuzzy msgid "French Guiana" msgstr "Franska Guyana" #: pynicotine/networkfilter.py:118 #, fuzzy msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 #, fuzzy msgid "Ghana" msgstr "Ghana" #: pynicotine/networkfilter.py:120 #, fuzzy msgid "Gibraltar" msgstr "Gibraltar" #: pynicotine/networkfilter.py:121 #, fuzzy msgid "Greenland" msgstr "Grönland" #: pynicotine/networkfilter.py:122 #, fuzzy msgid "Gambia" msgstr "Gambia" #: pynicotine/networkfilter.py:123 #, fuzzy msgid "Guinea" msgstr "Guinea" #: pynicotine/networkfilter.py:124 #, fuzzy msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 #, fuzzy msgid "Equatorial Guinea" msgstr "Ekvatorialguinea" #: pynicotine/networkfilter.py:126 #, fuzzy msgid "Greece" msgstr "Grekland" #: pynicotine/networkfilter.py:127 #, fuzzy msgid "South Georgia & South Sandwich Islands" msgstr "Sydgeorgien och södra Sandwichöarna" #: pynicotine/networkfilter.py:128 #, fuzzy msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 #, fuzzy msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 #, fuzzy msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: pynicotine/networkfilter.py:131 #, fuzzy msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 #, fuzzy msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 #, fuzzy msgid "Heard & McDonald Islands" msgstr "Heard- och McDonaldöarna" #: pynicotine/networkfilter.py:134 #, fuzzy msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 #, fuzzy msgid "Croatia" msgstr "Kroatien" #: pynicotine/networkfilter.py:136 #, fuzzy msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 #, fuzzy msgid "Hungary" msgstr "Ungern" #: pynicotine/networkfilter.py:138 #, fuzzy msgid "Indonesia" msgstr "Indonesien" #: pynicotine/networkfilter.py:139 #, fuzzy msgid "Ireland" msgstr "Irland" #: pynicotine/networkfilter.py:140 #, fuzzy msgid "Israel" msgstr "Israel" #: pynicotine/networkfilter.py:141 #, fuzzy msgid "Isle of Man" msgstr "Isle of Man" #: pynicotine/networkfilter.py:142 #, fuzzy msgid "India" msgstr "Indien" #: pynicotine/networkfilter.py:143 #, fuzzy msgid "British Indian Ocean Territory" msgstr "Brittiska territoriet i Indiska oceanen" #: pynicotine/networkfilter.py:144 #, fuzzy msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 #, fuzzy msgid "Iran" msgstr "Iran" #: pynicotine/networkfilter.py:146 #, fuzzy msgid "Iceland" msgstr "Island" #: pynicotine/networkfilter.py:147 #, fuzzy msgid "Italy" msgstr "Italien" #: pynicotine/networkfilter.py:148 #, fuzzy msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 #, fuzzy msgid "Jamaica" msgstr "Jamaica" #: pynicotine/networkfilter.py:150 #, fuzzy msgid "Jordan" msgstr "Jordanien" #: pynicotine/networkfilter.py:151 #, fuzzy msgid "Japan" msgstr "Japan" #: pynicotine/networkfilter.py:152 #, fuzzy msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 #, fuzzy msgid "Kyrgyzstan" msgstr "Kirgizistan" #: pynicotine/networkfilter.py:154 #, fuzzy msgid "Cambodia" msgstr "Kambodja" #: pynicotine/networkfilter.py:155 #, fuzzy msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 #, fuzzy msgid "Comoros" msgstr "Komorerna" #: pynicotine/networkfilter.py:157 #, fuzzy msgid "Saint Kitts & Nevis" msgstr "Saint Kitts och Nevis" #: pynicotine/networkfilter.py:158 #, fuzzy msgid "North Korea" msgstr "Nordkorea" #: pynicotine/networkfilter.py:159 #, fuzzy msgid "South Korea" msgstr "Sydkorea" #: pynicotine/networkfilter.py:160 #, fuzzy msgid "Kuwait" msgstr "Kuwait" #: pynicotine/networkfilter.py:161 #, fuzzy msgid "Cayman Islands" msgstr "Caymanöarna" #: pynicotine/networkfilter.py:162 #, fuzzy msgid "Kazakhstan" msgstr "Kazakstan" #: pynicotine/networkfilter.py:163 #, fuzzy msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 #, fuzzy msgid "Lebanon" msgstr "Libanon" #: pynicotine/networkfilter.py:165 #, fuzzy msgid "Saint Lucia" msgstr "St Lucia" #: pynicotine/networkfilter.py:166 #, fuzzy msgid "Liechtenstein" msgstr "Liechtenstein" #: pynicotine/networkfilter.py:167 #, fuzzy msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 #, fuzzy msgid "Liberia" msgstr "Liberia" #: pynicotine/networkfilter.py:169 #, fuzzy msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 #, fuzzy msgid "Lithuania" msgstr "Litauen" #: pynicotine/networkfilter.py:171 #, fuzzy msgid "Luxembourg" msgstr "Luxemburg" #: pynicotine/networkfilter.py:172 #, fuzzy msgid "Latvia" msgstr "Lettland" #: pynicotine/networkfilter.py:173 #, fuzzy msgid "Libya" msgstr "Libyen" #: pynicotine/networkfilter.py:174 #, fuzzy msgid "Morocco" msgstr "Marocko" #: pynicotine/networkfilter.py:175 #, fuzzy msgid "Monaco" msgstr "Monaco" #: pynicotine/networkfilter.py:176 #, fuzzy msgid "Moldova" msgstr "Moldavien" #: pynicotine/networkfilter.py:177 #, fuzzy msgid "Montenegro" msgstr "Montenegro" #: pynicotine/networkfilter.py:178 #, fuzzy msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 #, fuzzy msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 #, fuzzy msgid "Marshall Islands" msgstr "Marshallöarna" #: pynicotine/networkfilter.py:181 #, fuzzy msgid "North Macedonia" msgstr "Nordmakedonien" #: pynicotine/networkfilter.py:182 #, fuzzy msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 #, fuzzy msgid "Myanmar" msgstr "Myanmar (Burma)" #: pynicotine/networkfilter.py:184 #, fuzzy msgid "Mongolia" msgstr "Mongoliet" #: pynicotine/networkfilter.py:185 #, fuzzy msgid "Macau" msgstr "Macao" #: pynicotine/networkfilter.py:186 #, fuzzy msgid "Northern Mariana Islands" msgstr "Norra Marianeröarna" #: pynicotine/networkfilter.py:187 #, fuzzy msgid "Martinique" msgstr "Martinique" #: pynicotine/networkfilter.py:188 #, fuzzy msgid "Mauritania" msgstr "Mauretanien" #: pynicotine/networkfilter.py:189 #, fuzzy msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 #, fuzzy msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 #, fuzzy msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 #, fuzzy msgid "Maldives" msgstr "Maldiverna" #: pynicotine/networkfilter.py:193 #, fuzzy msgid "Malawi" msgstr "Malawi" #: pynicotine/networkfilter.py:194 #, fuzzy msgid "Mexico" msgstr "Mexiko" #: pynicotine/networkfilter.py:195 #, fuzzy msgid "Malaysia" msgstr "Malaysia" #: pynicotine/networkfilter.py:196 #, fuzzy msgid "Mozambique" msgstr "Moçambique" #: pynicotine/networkfilter.py:197 #, fuzzy msgid "Namibia" msgstr "Namibia" #: pynicotine/networkfilter.py:198 #, fuzzy msgid "New Caledonia" msgstr "Nya Kaledonien" #: pynicotine/networkfilter.py:199 #, fuzzy msgid "Niger" msgstr "Niger" #: pynicotine/networkfilter.py:200 #, fuzzy msgid "Norfolk Island" msgstr "Norfolköarna" #: pynicotine/networkfilter.py:201 #, fuzzy msgid "Nigeria" msgstr "Nigeria" #: pynicotine/networkfilter.py:202 #, fuzzy msgid "Nicaragua" msgstr "Nicaragua" #: pynicotine/networkfilter.py:203 #, fuzzy msgid "Netherlands" msgstr "Nederländerna" #: pynicotine/networkfilter.py:204 #, fuzzy msgid "Norway" msgstr "Norge" #: pynicotine/networkfilter.py:205 #, fuzzy msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 #, fuzzy msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 #, fuzzy msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 #, fuzzy msgid "New Zealand" msgstr "Nya Zeeland" #: pynicotine/networkfilter.py:209 #, fuzzy msgid "Oman" msgstr "Oman" #: pynicotine/networkfilter.py:210 #, fuzzy msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 #, fuzzy msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 #, fuzzy msgid "French Polynesia" msgstr "Franska Polynesien" #: pynicotine/networkfilter.py:213 #, fuzzy msgid "Papua New Guinea" msgstr "Papua Nya Guinea" #: pynicotine/networkfilter.py:214 #, fuzzy msgid "Philippines" msgstr "Filippinerna" #: pynicotine/networkfilter.py:215 #, fuzzy msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 #, fuzzy msgid "Poland" msgstr "Polen" #: pynicotine/networkfilter.py:217 #, fuzzy msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre och Miquelon" #: pynicotine/networkfilter.py:218 #, fuzzy msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 #, fuzzy msgid "Puerto Rico" msgstr "Puerto Rico" #: pynicotine/networkfilter.py:220 #, fuzzy msgid "State of Palestine" msgstr "Staten Palestina" #: pynicotine/networkfilter.py:221 #, fuzzy msgid "Portugal" msgstr "Portugal" #: pynicotine/networkfilter.py:222 #, fuzzy msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 #, fuzzy msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 #, fuzzy msgid "Qatar" msgstr "Qatar" #: pynicotine/networkfilter.py:225 #, fuzzy msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 #, fuzzy msgid "Romania" msgstr "Rumänien" #: pynicotine/networkfilter.py:227 #, fuzzy msgid "Serbia" msgstr "Serbien" #: pynicotine/networkfilter.py:228 #, fuzzy msgid "Russia" msgstr "Ryssland" #: pynicotine/networkfilter.py:229 #, fuzzy msgid "Rwanda" msgstr "Rwanda" #: pynicotine/networkfilter.py:230 #, fuzzy msgid "Saudi Arabia" msgstr "Saudiarabien" #: pynicotine/networkfilter.py:231 #, fuzzy msgid "Solomon Islands" msgstr "Solomonöarna" #: pynicotine/networkfilter.py:232 #, fuzzy msgid "Seychelles" msgstr "Seychellerna" #: pynicotine/networkfilter.py:233 #, fuzzy msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 #, fuzzy msgid "Sweden" msgstr "Sverige" #: pynicotine/networkfilter.py:235 #, fuzzy msgid "Singapore" msgstr "Singapore" #: pynicotine/networkfilter.py:236 #, fuzzy msgid "Saint Helena" msgstr "St. Helena" #: pynicotine/networkfilter.py:237 #, fuzzy msgid "Slovenia" msgstr "Slovenien" #: pynicotine/networkfilter.py:238 #, fuzzy msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard och Jan Mayen-öarna" #: pynicotine/networkfilter.py:239 #, fuzzy msgid "Slovak Republic" msgstr "Slovakien" #: pynicotine/networkfilter.py:240 #, fuzzy msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 #, fuzzy msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 #, fuzzy msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 #, fuzzy msgid "Somalia" msgstr "Somalia" #: pynicotine/networkfilter.py:244 #, fuzzy msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 #, fuzzy msgid "South Sudan" msgstr "Sydsudan" #: pynicotine/networkfilter.py:246 #, fuzzy msgid "Sao Tome & Principe" msgstr "Sao Tome och Principe" #: pynicotine/networkfilter.py:247 #, fuzzy msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 #, fuzzy msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 #, fuzzy msgid "Syria" msgstr "Syrien" #: pynicotine/networkfilter.py:250 #, fuzzy msgid "Eswatini" msgstr "Eswatini" #: pynicotine/networkfilter.py:251 #, fuzzy msgid "Turks & Caicos Islands" msgstr "Turks- och Caicosöarna" #: pynicotine/networkfilter.py:252 #, fuzzy msgid "Chad" msgstr "Tchad" #: pynicotine/networkfilter.py:253 #, fuzzy msgid "French Southern Territories" msgstr "Franska Sydterritorierna" #: pynicotine/networkfilter.py:254 #, fuzzy msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 #, fuzzy msgid "Thailand" msgstr "Thailand" #: pynicotine/networkfilter.py:256 #, fuzzy msgid "Tajikistan" msgstr "Tadzjikistan" #: pynicotine/networkfilter.py:257 #, fuzzy msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 #, fuzzy msgid "Timor-Leste" msgstr "Östtimor" #: pynicotine/networkfilter.py:259 #, fuzzy msgid "Turkmenistan" msgstr "Turkmenistan" #: pynicotine/networkfilter.py:260 #, fuzzy msgid "Tunisia" msgstr "Tunisien" #: pynicotine/networkfilter.py:261 #, fuzzy msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Turkiet" #: pynicotine/networkfilter.py:263 #, fuzzy msgid "Trinidad & Tobago" msgstr "Trinidad och Tobago" #: pynicotine/networkfilter.py:264 #, fuzzy msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 #, fuzzy msgid "Taiwan" msgstr "Taiwan" #: pynicotine/networkfilter.py:266 #, fuzzy msgid "Tanzania" msgstr "Tanzania" #: pynicotine/networkfilter.py:267 #, fuzzy msgid "Ukraine" msgstr "Ukraina" #: pynicotine/networkfilter.py:268 #, fuzzy msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 #, fuzzy msgid "U.S. Minor Outlying Islands" msgstr "USA:s mindre avlägset belägna öar" #: pynicotine/networkfilter.py:270 #, fuzzy msgid "United States" msgstr "USA" #: pynicotine/networkfilter.py:271 #, fuzzy msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 #, fuzzy msgid "Uzbekistan" msgstr "Uzbekistan" #: pynicotine/networkfilter.py:273 #, fuzzy msgid "Holy See (Vatican City State)" msgstr "Heliga stolen (Vatikanstaten)" #: pynicotine/networkfilter.py:274 #, fuzzy msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent och Grenadinerna" #: pynicotine/networkfilter.py:275 #, fuzzy msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 #, fuzzy msgid "British Virgin Islands" msgstr "Brittiska Jungfruöarna" #: pynicotine/networkfilter.py:277 #, fuzzy msgid "U.S. Virgin Islands" msgstr "Amerikanska Jungfruöarna" #: pynicotine/networkfilter.py:278 #, fuzzy msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 #, fuzzy msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 #, fuzzy msgid "Wallis & Futuna" msgstr "Wallis och Futuna" #: pynicotine/networkfilter.py:281 #, fuzzy msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 #, fuzzy msgid "Yemen" msgstr "Jemen" #: pynicotine/networkfilter.py:283 #, fuzzy msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 #, fuzzy msgid "South Africa" msgstr "Sydafrika" #: pynicotine/networkfilter.py:285 #, fuzzy msgid "Zambia" msgstr "Zambia" #: pynicotine/networkfilter.py:286 #, fuzzy msgid "Zimbabwe" msgstr "Zimbabwe" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, fuzzy, python-format msgid "Text-to-speech for message failed: %s" msgstr "Text-till-tal för meddelandet misslyckades: %s" #: pynicotine/nowplaying.py:128 #, fuzzy msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: Ange både ditt användarnamn och din API-nyckel för Last.fm." #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Format som spelas nu" #: pynicotine/nowplaying.py:138 #, fuzzy, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Det gick inte att ansluta till Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, fuzzy, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: Det går inte att hämta det senaste spåret från Audioscrobbler: " "%(error)s" #: pynicotine/nowplaying.py:193 #, fuzzy msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Kunde inte hitta en lämplig MPRIS-spelare" #: pynicotine/nowplaying.py:198 #, fuzzy, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "Hittade flera MPRIS-spelare: %(players)s. Använder: %(player)s" #: pynicotine/nowplaying.py:201 #, fuzzy, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Automatisk identifiering av MPRIS-spelare: %s" #: pynicotine/nowplaying.py:215 #, fuzzy, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Något gick fel när du sökte efter %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 #, fuzzy msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "LyssnaBrainz: Ange ditt ListenBrainz-användarnamn" #: pynicotine/nowplaying.py:271 #, fuzzy, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "LyssnaBrainz: Kunde inte ansluta till ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 #, fuzzy msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "LyssnaBrainz: Du verkar inte lyssna på något just nu." #: pynicotine/nowplaying.py:293 #, fuzzy, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "LyssnaBrainz: ListenBrainz: Kunde inte hämta aktuellt spår från " "ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Sökningar i nätverket" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Kompletta inbyggda kommandon" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Det går inte att ansluta till servern. Orsak: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Nedkopplad från servern %(host)s:%(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Ändrar din away-status" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Aktivera insticksmoduler" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Rensa chattfönstret" #: pynicotine/plugins/core_commands/__init__.py:80 #, fuzzy msgid "Say something in the third-person" msgstr "Säg något i tredje person" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Tillkännage låten som spelas just nu" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Gå med eller skapa rum…" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Lämna rummet 'rum'" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Säg meddelande i angivet chattrum" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Privat chatt" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Stäng den privata chatten" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Begär användarinfo från användaren 'användare'" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Skicka privat meddelande till alla onlinekompisar:" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Lägg användaren 'användare' till din ban-lista" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Ta bort användaren 'användare' från din ban-lista" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Bläddra filer hos användaren 'användare'" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Användari_nfo" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Visa IP-adress för användaren 'användare'" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Blockera anslutningar från användare eller IP-adress" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Ta bort användaren 'användare' från din ban-lista" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Tysta meddelanden från användare eller IP-adress" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Ta bort användaren 'användare' från din ignore-lista" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Lägg till Wi_sh" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Ta bort ett alias" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Indexera om delade filer" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Indexera om delade filer" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Starta global filsökning" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Sök i filer och mappar (exakt matchning)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Sök i filer och mappar (exakt matchning)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Sök i en användares delade filer efter 'förfrågan'" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Listar %(num)i tillgängliga kommandon:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Listar %(num)i tillgängliga kommandon som matchar \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Skriv %(command)s för att lista liknande kommandon" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Skriv %(command)s för att lista tillgängliga kommandon" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s anslöt till rummet" #: pynicotine/plugins/core_commands/__init__.py:404 #, fuzzy, python-format msgid "Not messaging with user %s" msgstr "Inte i meddelandeutbyte med användare %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Stäng den privata chatten" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Banna" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Förbjud användare" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ignorerade användare:" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ignorera användare" #: pynicotine/plugins/core_commands/__init__.py:556 #, fuzzy, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s shares listade (%(num_total)s konfigurerade)" #: pynicotine/plugins/core_commands/__init__.py:568 #, fuzzy, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Kan inte dela otillgänglig mapp \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, fuzzy, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "Lade till %(group_name)s share \"%(virtual_name)s\" (omskanning krävs)" #: pynicotine/plugins/core_commands/__init__.py:582 #, fuzzy, python-format msgid "No share with name \"%s\"" msgstr "Ingen share med namnet \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, fuzzy, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Tog bort share \"%s\" (omskanning krävs)" #: pynicotine/pluginsystem.py:404 #, fuzzy msgid "Loading plugin system" msgstr "Laddat insticksprogram %s" #: pynicotine/pluginsystem.py:508 #, fuzzy, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Det går inte att ladda plugin %(name)s. Namnet på mappen för " "insticksprogrammet innehåller ogiltiga tecken: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Motstridiga %(interface)s kommando i plugin %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, fuzzy, python-format msgid "Loaded plugin %s" msgstr "Laddat insticksprogram %s" #: pynicotine/pluginsystem.py:571 #, fuzzy, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Det går inte att ladda plugin %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, fuzzy, python-format msgid "Unloaded plugin %s" msgstr "Avladdat insticksprogram %s" #: pynicotine/pluginsystem.py:641 #, fuzzy, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Det går inte att avlasta insticksprogrammet %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, fuzzy, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Plugin %(module)s misslyckades med fel %(errortype)s: %(error)s.\n" "Spårning: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Beskrivning:" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Saknar %s-argument" #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Felaktig SoulSeek-meta-url: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Användning: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Okänt kommando: %(command)s. Skriv %(help_command)s för att lista " "tillgängliga kommandon." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Inga UPnP-enheter hittades" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "UPnP: Det gick inte att vidarebefordra extern port %(external_port)s: " "%(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: Extern port %(external_port)s vidarebefordras framgångsrikt till lokal " "IP-adress %(ip_address)s port %(local_port)s" #: pynicotine/privatechat.py:216 #, fuzzy, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Privat meddelande från %(user)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Söker efter objektet \"%s\" på önskelistan" #: pynicotine/search.py:392 #, fuzzy, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Väntetiden för önskelistan är inställd på %s sekunder." #: pynicotine/search.py:711 #, fuzzy, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "Användaren %(user)s söker efter \"%(query)s\" och får %(num)i resultat." #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Indexering påbörjad" #: pynicotine/shares.py:272 #, fuzzy msgid "Rescanning shares…" msgstr "Indexering påbörjad" #: pynicotine/shares.py:289 #, fuzzy, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Omsökning slutförd: %(num)s mappar hittades" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Ett allvarligt fel inträffade vid omskanning av aktier. Om problemet " "kvarstår tar du bort %(dir)s/*.db och försöker igen. Om det inte hjälper kan " "du skicka in en felrapport med denna stacktrace inkluderad: %(trace)s" #: pynicotine/shares.py:548 #, fuzzy, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Fel vid skanning av filen %(path)s: %(error)s" #: pynicotine/shares.py:552 #, fuzzy, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Fel vid skanning av mapp %(path)s: %(error)s" #: pynicotine/shares.py:585 #, fuzzy, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Fel vid skanning av metadata för filen %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Omsökningen avbröts på grund av otillgängliga delningar" #: pynicotine/shares.py:1125 #, fuzzy, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Användaren %(user)s bläddrar i din lista över delade filer" #: pynicotine/shares.py:1162 #, fuzzy, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Det gick inte att hämta den delade mappen %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, fuzzy, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Det går inte att läsa aktiedatabasen. Vänligen skanna om dina aktier. Fel: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Det specificerade nätverksgränssnittet '%s' finns inte" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Kan inte lyssna på port %(port)s. Se till att inget annat program använder " "det, eller välj en annan port. Fel: %(error)s" #: pynicotine/slskproto.py:515 #, fuzzy, python-format msgid "Listening on port: %i" msgstr "Lyssnar på port %i" #: pynicotine/slskproto.py:815 #, fuzzy, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Kunde inte ansluta till servern %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Automatisk anslutning till servern vid start" #: pynicotine/slskproto.py:1202 #, fuzzy, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Anslutning till %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, fuzzy, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Ansluten till servern %(host)s:%(port)s, loggar in..." #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Nedkopplad från servern %(host)s:%(port)s" #: pynicotine/slskproto.py:1526 #, fuzzy msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Någon har loggat in på ditt Soulseek-konto någon annanstans." #: pynicotine/uploads.py:388 #, fuzzy, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Uppladdning slutförd: användare %(user)s, IP-adress %(ip)s, fil %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Uppladdning avbruten: användare %(user)s, fil %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, fuzzy, python-format msgid "Upload I/O error: %s" msgstr "Fel vid uppladdning av I/O: %s" #: pynicotine/uploads.py:1093 #, fuzzy, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Uppladdning påbörjad: användare %(user)s, IP-adress %(ip)s, fil %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Kunde inte skapa katalogen '%(folder)s', rapporterat fel: %(error)s" #: pynicotine/userbrowse.py:218 #, fuzzy, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Det gick inte att ladda Shares från disk: %(error)s" #: pynicotine/userbrowse.py:264 #, fuzzy, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Listan över delade filer för användaren \"%(user)s\" sparades till %(dir)s." #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Kunde inte skapa katalogen '%(user)s', rapporterat fel: %(error)s" #: pynicotine/userinfo.py:159 #, fuzzy, python-format msgid "Picture saved to %s" msgstr "Bild sparad till %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Kunde inte skapa katalogen '%(user)s', rapporterat fel: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Användaren %(user)s läser din användarinformation" #: pynicotine/users.py:184 #, fuzzy, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Det går inte att ansluta till servern. Orsak: %s" #: pynicotine/users.py:184 #, fuzzy msgid "Cannot Connect" msgstr "Kunde inte ansluta" #: pynicotine/users.py:218 #, fuzzy, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Det går inte att hämta IP för användaren %s, eftersom användaren är offline." #: pynicotine/users.py:227 #, fuzzy, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "IP-adressen för användaren %(user)s är %(ip)s, port %(port)i%(country)s." #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Soulseek-klient" #: pynicotine/users.py:356 #, fuzzy, python-format msgid "%i privileged users" msgstr "%i privilegierade användare" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Du har inga privilegier. Privilegier krävs inte, men gör att dina " "nedladdningar kan köas före icke-priviligierade användare." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i dagar, %(hours)i timmar, %(minutes)i minuter, %(seconds)i sekunder " "av nedladdningsrättigheter kvar." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Ditt lösenord har ändrats. Lösenordet är %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Lösenordsändring avvisas" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Det går inte att spara filen %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Kunde inte skapa katalogen '%(user)s', rapporterat fel: %(error)s" #: pynicotine/utils.py:648 #, fuzzy, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Något gick fel när du läste filen %(filename)s: %(error)s" #: pynicotine/utils.py:653 #, fuzzy, python-format msgid "Attempting to load backup of file %s" msgstr "Försök att ladda säkerhetskopiering av fil %s" #: pynicotine/utils.py:674 #, fuzzy, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Det går inte att säkerhetskopiera filen %(path)s: %(error)s" #: pynicotine/utils.py:694 #, fuzzy, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Det går inte att spara filen %(path)s: %(error)s" #: pynicotine/utils.py:705 #, fuzzy, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Det går inte att återställa tidigare fil %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 #, fuzzy msgid "Add buddy…" msgstr "Lägg till kompis…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Sökningar" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Sökningar" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Skicka meddelande" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 #, fuzzy msgid "Toggle Text-to-Speech" msgstr "Växla Text-till-Tal" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Hjälp med kommandot för chattrum" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 #, fuzzy msgid "_Log" msgstr "_Logg" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Vägg i rummet" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Vägg i rummet" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Skapad av" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Översatt av" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Licens" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 #, fuzzy msgid "_Previous" msgstr "Föregående fil" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 #, fuzzy msgid "Welcome to Nicotine+" msgstr "Välkommen till Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 #, fuzzy msgid "_Set Up…" msgstr "_Set Up…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 #, fuzzy msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Om det önskade användarnamnet redan är upptaget uppmanas du att ändra det." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 #, fuzzy msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "För att ansluta till andra Soulseek-peers måste en lyssningsport på din " "router vidarebefordras till din dator." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 #, fuzzy msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Om din lyssnarport är stängd kan du bara ansluta till användare vars " "lyssnarportar är öppna." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Om det behövs, välj en annan lyssningsport nedan. Detta kan även göras " "senare i inställningarna." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 #, fuzzy msgid "Download Files to Folder" msgstr "Ladda ner filer till en mapp" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 #, fuzzy msgid "Share Folders" msgstr "Mappar för aktier" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek-användare kommer att kunna ladda ner från dina andelar. Bidra till " "Soulseek-nätverket genom att dela din egen samling och genom att dela vidare " "det du laddat ner från andra användare." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 #, fuzzy msgid "You are ready to use Nicotine+!" msgstr "Du är redo att använda Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 #, fuzzy msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek är ett okrypterat protokoll som inte är avsett för säker " "kommunikation." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 #, fuzzy msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Genom att donera till Soulseek får du privilegier under en viss tidsperiod. " "Om du har privilegier kommer dina nedladdningar att köas före icke-" "priviligierade användare." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Föregående fil" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Nästa fil" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 #, fuzzy msgid "Name" msgstr "Filnamn" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 #, fuzzy msgid "Last Speed" msgstr "Senaste hastigheten" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 #, fuzzy msgid "_Export…" msgstr "Exportera" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 #, fuzzy msgid "Keyboard Shortcuts" msgstr "Keyboard Shortcuts" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 #, fuzzy msgid "General" msgstr "Allmänna inställningar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 #, fuzzy msgid "Connect" msgstr "Anslut" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 #, fuzzy msgid "Disconnect" msgstr "Koppla bort" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 #, fuzzy msgid "Rescan Shares" msgstr "Indexera om delade filer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 #, fuzzy msgid "Show Log Pane" msgstr "Visa loggfönstret" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Konfigurera loggning" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 #, fuzzy msgid "Quit" msgstr "Avsluta" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 #, fuzzy msgid "Menus" msgstr "Menyer" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 #, fuzzy msgid "Open Main Menu" msgstr "Öppna huvudmenyn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 #, fuzzy msgid "Open Context Menu" msgstr "Öppna kontextmenyn" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 #, fuzzy msgid "Tabs" msgstr "Flikar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 #, fuzzy msgid "Change Main Tab" msgstr "Ändra huvudfliken" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 #, fuzzy msgid "Go to Previous Secondary Tab" msgstr "Gå till föregående sekundär flik" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 #, fuzzy msgid "Go to Next Secondary Tab" msgstr "Gå till nästa sekundära flik" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Stäng sekundär flik" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 #, fuzzy msgid "Close Secondary Tab" msgstr "Stäng sekundär flik" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 #, fuzzy msgid "Lists" msgstr "Listor" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 #, fuzzy msgid "Copy Selected Cell" msgstr "Välj Alla" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 #, fuzzy msgid "Remove Selected Row" msgstr "Ta bort vald rad" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 #, fuzzy msgid "Editing" msgstr "Betyg" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 #, fuzzy msgid "Cut" msgstr "Klipp" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 #, fuzzy msgid "Paste" msgstr "Klistra in" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 #, fuzzy msgid "Insert Emoji" msgstr "Infoga en emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 #, fuzzy msgid "Select All" msgstr "Välj Alla" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 #, fuzzy msgid "Find" msgstr "Hitta" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 #, fuzzy msgid "Find Next Match" msgstr "Hitta nästa matchning" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 #, fuzzy msgid "Find Previous Match" msgstr "Hitta tidigare matchning" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 #, fuzzy msgid "File Transfers" msgstr "Överföringar" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 #, fuzzy msgid "Resume / Retry Transfer" msgstr "Återuppta/försöka överföring" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 #, fuzzy msgid "Pause / Abort Transfer" msgstr "Pausa/avbryta överföringen" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 #, fuzzy msgid "Download / Upload To" msgstr "Fel på nedladdningskatalog" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 #, fuzzy msgid "Save List to Disk" msgstr "_Spara listan över delningar på disk" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 #, fuzzy msgid "Refresh" msgstr "Uppdatera filer." #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 #, fuzzy msgid "Expand / Collapse All" msgstr "Expandera / kollapsa alla" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 #, fuzzy msgid "Back to Parent Folder" msgstr "Det går inte att dela mapp" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 #, fuzzy msgid "File Search" msgstr "Sök" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 #, fuzzy msgid "Result Filters" msgstr "_Resultatfilter" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 #, fuzzy msgid "Current Session" msgstr "Nuvarande sammanträde" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 #, fuzzy msgid "Completed Downloads" msgstr "Färdiga nedladdningar" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 #, fuzzy msgid "Downloaded Size" msgstr "Nedladdad storlek" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 #, fuzzy msgid "Completed Uploads" msgstr "Fullbordade uppladdningar" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 #, fuzzy msgid "Uploaded Size" msgstr "Uppladdad storlek" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 #, fuzzy msgid "Total" msgstr "Totalt" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 #, fuzzy msgid "_Reset…" msgstr "_Resumé" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 #, fuzzy msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Objekt på önskelistan genomsöks automatiskt med jämna mellanrum för att " "upptäcka ovanliga filer." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 #, fuzzy msgid "Add Wish…" msgstr "Lägg till önskemål…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 #, fuzzy msgid "Clear All…" msgstr "Rensa alla…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Fil nerladdad" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 #, fuzzy msgid "Clear Finished" msgstr "Klar" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Rensa alla nedladdningar" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 #, fuzzy msgid "Clear _All…" msgstr "Rensa alla…" #: pynicotine/gtkgui/ui/interests.ui:21 #, fuzzy msgid "Personal Interests" msgstr "Intressen" #: pynicotine/gtkgui/ui/interests.ui:40 #, fuzzy msgid "Add something you like…" msgstr "Lägg till något du gillar…" #: pynicotine/gtkgui/ui/interests.ui:62 #, fuzzy msgid "Personal Dislikes" msgstr "Intressen" #: pynicotine/gtkgui/ui/interests.ui:80 #, fuzzy msgid "Add something you dislike…" msgstr "Lägg till något som du inte gillar…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Rekommendationer" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Öppna huvudmenyn" #: pynicotine/gtkgui/ui/mainwindow.ui:43 #, fuzzy msgid "Room…" msgstr "Rum" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 #, fuzzy msgid "Username…" msgstr "Användarnamn:" #: pynicotine/gtkgui/ui/mainwindow.ui:58 #, fuzzy msgid "Search term…" msgstr "Sökningar" #: pynicotine/gtkgui/ui/mainwindow.ui:60 #, fuzzy msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "Sökmönster: med ett ord = term, utan ord = -term, delvis ord = *erm" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Sökning av omfattning" #: pynicotine/gtkgui/ui/mainwindow.ui:141 #, fuzzy msgid "_Wishlist" msgstr "_Vänslista" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Konfigurera sökningar" #: pynicotine/gtkgui/ui/mainwindow.ui:230 #, fuzzy msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Ange en sökterm för att söka efter filer som delas av andra användare i " "Soulseek-nätverket." #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Grupperingsläge för filer" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Konfigurera nedladdningar" #: pynicotine/gtkgui/ui/mainwindow.ui:469 #, fuzzy msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Filer som du laddar ner från andra användare köas här och kan pausas och " "återupptas på begäran." #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Konfigurera uppladdningar" #: pynicotine/gtkgui/ui/mainwindow.ui:708 #, fuzzy msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Användarnas försök att ladda ner dina delade filer köas och hanteras här." #: pynicotine/gtkgui/ui/mainwindow.ui:787 #, fuzzy msgid "_Open List" msgstr "_Öppen lista" #: pynicotine/gtkgui/ui/mainwindow.ui:789 #, fuzzy msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Öppnar en lokal lista över delade filer som tidigare har sparats på disk." #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Konfigurera andelar" #: pynicotine/gtkgui/ui/mainwindow.ui:877 #, fuzzy msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Ange namnet på en användare vars delade filer du vill bläddra bland. Du kan " "också spara listan på disk och granska den senare." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Intressen" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Konfigurera loggning" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 #, fuzzy msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Ange en användares namn för att visa dennes användarbeskrivning, information " "och personliga bild." #: pynicotine/gtkgui/ui/mainwindow.ui:1112 #, fuzzy msgid "Chat _History" msgstr "Chat-historik" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Konfigurera andelar" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 #, fuzzy msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Ange namnet på en användare för att starta en privat textsamtal med honom " "eller henne." #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Meddelanden" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ignorerade användare:" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 #, fuzzy msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Lägg till användare i din kompislista för att dela specifika mappar med dem " "och få meddelanden när de är online." #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Gå med eller skapa rum…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 #, fuzzy msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Gå med i ett befintligt chattrum eller skapa ett nytt rum för att chatta med " "andra användare i Soulseek-nätverket." #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Visa användarprofil" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Sökningar" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 #, fuzzy msgid "Connections" msgstr "Anslutningar" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Nedladdning (hastighet/aktiva användare)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Uppladdning (hastighet/aktiva användare)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Sökningar" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 #, fuzzy msgid "Download Speed Limits" msgstr "Nedladdningar" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Begränsa uppladdningshastigheten:" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Alternativ hastighetsgräns för nedladdning (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternativ hastighetsgräns för nedladdning (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Sökningar" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Uppdatera listan över rum" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 #, fuzzy msgid "_Show feed of public chat room messages" msgstr "_Visa flöde av meddelanden från offentliga chattrum" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 #, fuzzy msgid "_Accept private room invitations" msgstr "_Acceptera inbjudningar till privata rum" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Med hjälp av rumsväggen kan användare i ett rum ange ett unikt meddelande " "som ska visas för andra. De senaste meddelandena visas överst." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 #, fuzzy msgid "Set wall message…" msgstr "Ange ett meddelande på väggen…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 #, fuzzy msgid "Search Result Filters" msgstr "Filter för sökresultat" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 #, fuzzy msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Filter för sökresultat används för att förfina vilka sökresultat som visas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Varje lista med sökresultat har sitt eget filter som kan visas genom att " "växla mellan knappen Resultatfilter. Ett filter består av flera fält, som " "alla tillämpas när du trycker på Enter i något av fälten. Filtreringen " "tillämpas omedelbart på redan erhållna resultat och även på de resultat som " "ännu inte har kommit in. Om du vill se de fullständiga resultaten igen, " "rensar du helt enkelt filtret från alla termer och tillämpar det på nytt. " "Som namnet antyder kan ett filter för sökresultat inte utvidga din " "ursprungliga sökning, utan endast begränsa den. Om du vill bredda eller " "ändra dina söktermer, gör en ny sökning." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Som namnet antyder kan ett sökresultatfilter inte utöka din ursprungliga " "sökning, det kan bara begränsa den. För att bredda eller ändra dina " "söktermer, gör en ny sökning." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "_Resultatfilter" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 #, fuzzy msgid "Include Text" msgstr "Inkludera text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Filer och mappar som innehåller denna text visas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Storleken är okänslig, men ordföljden är viktig: \"Spears Brittany\" kommer " "inte att visa några \"Brittany Spears\"." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Använd | (eller rör) för att separera flera exakta fraser. Exempel:\n" " Remix|Dub Mix|Instrumentell" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 #, fuzzy msgid "Exclude Text" msgstr "Exkludera text" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "Som ovan, men filer och mappar filtreras bort om texten stämmer." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 #, fuzzy msgid "Filters files based upon their file extension." msgstr "Filtrerar filer baserat på deras filändelse." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Flera filändelser kan anges, vilket i sin tur breddar listan med resultat.\n" " Exempel: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Det är också möjligt att vända på filtret och ange filtillägg som du inte " "vill ha med i resultatet.\n" " Exempel: !mp3|!jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 #, fuzzy msgid "File Size" msgstr "Filstorlek" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 #, fuzzy msgid "Filters files based upon their file size." msgstr "Filtrerar filer baserat på deras filstorlek." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Som standard används enheten bytes och filer som är större än eller lika med " "värdet matchas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Lägg till b, k, m eller g (alternativt kib, mib eller gib) för att ange " "byte-, kibibyte-, mebibyte- eller gibibyte-enheter:\n" " <1024k hittar filer som är 1024 kibabyte (dvs. 1 mbyte) eller mindre." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Sätt = före ett värde för att ange en exakt matchning:\n" " =1024 matchar endast filer som är 1024 byte stora (dvs. 1 kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Sätt = före ett värde för att ange en exakt matchning:\n" " =1024 matchar endast filer som är 1024 byte stora (dvs. 1 kibibyte)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 #, fuzzy msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Lägg till < eller > för att hitta filer som är mindre/större än det angivna " "värdet:\n" " >10,5m|<1g för att visa filer större än 10,5 MiB (mebibyte),\n" " men mindre än 1 GiB (gibibyte), använd en | mellan förhållanden." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "För enkelhetens skull kan varianterna kb, mb och gb för de mer kända " "enheterna kilo-, mega- och gigabyte också användas." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 #, fuzzy msgid "Filters files based upon their bitrate." msgstr "Filtrerar filer baserat på deras bithastighet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Värden måste endast anges som numeriska siffror. Enheten är alltid Kb/s " "(kilobit per sekund)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 #, fuzzy msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Liksom filstorlek (ovan) kan operatorerna =, !, < och > användas, och flera " "villkor kan anges med | rör:\n" " >256|<1411 för att visa filer med en bithastighet på minst 256 Kb/s\n" " med en maximal bithastighet på 1411 Kb/s." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Filtrerar filer baserat på deras bithastighet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Som standard kommer filer längre än eller lika med den angivna varaktigheten " "att matchas, om inte en operator (=, !, < eller >) används." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 #, fuzzy msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Ange ett råvärde i sekunder eller använd tidsformaten MM:SS och TT:MM:SS:\n" " >5:30 för att visa filer som är minst 5 och en halv minut långa.\n" " <5:30:00 visar filer som är mindre än 5 och en halv timme långa." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Flera villkor kan anges med | röravskiljare:\n" " >6:00|<12:00 för att visa filer mellan 6 och 12 minuter långa.\n" " !9:54|!8:43|!7:32 för att dölja vissa specifika filer från resultaten.\n" " =5:34|=4:23|=3:05 för att inkludera filer med specifik varaktighet." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 #, fuzzy msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Använder landskoder enligt ISO 3166-2 (se Wikipedia):\n" " \"US\" returnerar endast filer från användare som är anslutna via USA. " "På samma sätt returnerar \"GB\" filer från användare med IP-adresser i " "Storbritannien." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Flera länder kan anges med kommatecken eller mellanslag." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 #, fuzzy msgid "Free Slot" msgstr "Gratis slot" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Visa endast resultat från användare som har minst en ledig " "uppladdningsplats. Detta filter tillämpas omedelbart." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 #, fuzzy msgid "Upload Speed Limits" msgstr "Begränsningar för uppladdningshastighet" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Begränsa uppladdningshastigheten:" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Alternativ hastighetsgräns för uppladdning (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternativ hastighetsgräns för uppladdning (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Hjälp med kommandot för privat chatt" #: pynicotine/gtkgui/ui/search.ui:7 #, fuzzy msgid "Include text…" msgstr "Inkludera text…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 #, fuzzy msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrera resultat vars filvägar innehåller den angivna texten. Flera fraser " "och ord kan anges, t.ex. exakt fras|musik|term|exakt fras två." #: pynicotine/gtkgui/ui/search.ui:18 #, fuzzy msgid "Exclude text…" msgstr "Exkludera text…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 #, fuzzy msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Filtrera bort resultat vars filvägar innehåller den angivna texten. Flera " "fraser och ord kan anges, t.ex. exakt fras|musik|term|exakt fras två." #: pynicotine/gtkgui/ui/search.ui:29 #, fuzzy msgid "File type…" msgstr "Filtyp…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Filtyp, t.ex. flac|wav|ape eller !mp3|!m4a" #: pynicotine/gtkgui/ui/search.ui:40 #, fuzzy msgid "File size…" msgstr "Filstorlek…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Filstorlek, t.ex. >10,5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 #, fuzzy msgid "Bitrate…" msgstr "Bitrate" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Bithastighet, t.ex. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Varaktighet…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Varaktighet, t.ex. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 #, fuzzy msgid "Country code…" msgstr "Landskod" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Landskod, t.ex. US|GB|ES eller !DE|!GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 #, fuzzy msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Förbjuda användare från att komma åt dina delade filer, baserat på " "användarnamn, IP-adress eller land." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Landskoder att blockera (avgränsa med komma)" #: pynicotine/gtkgui/ui/settings/ban.ui:50 #, fuzzy msgid "Codes must be in ISO 3166-2 format." msgstr "Koderna måste vara i ISO 3166-2 format." #: pynicotine/gtkgui/ui/settings/ban.ui:65 #, fuzzy msgid "Use custom geo block message:" msgstr "Använd eget ban-meddelande:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Använd eget ban-meddelande:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 #, fuzzy msgid "IP Addresses" msgstr "Adresser" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Aktivera stavningskontroll (kräver omstart)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 #, fuzzy msgid "Restore previously open private chats on startup" msgstr "Återställ tidigare öppna privata chattar vid uppstart" #: pynicotine/gtkgui/ui/settings/chats.ui:98 #, fuzzy msgid "Enable CTCP-like private message responses (client version)" msgstr "Aktivera CTCP-liknande svar på privata meddelanden (klientversion)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 #, fuzzy msgid "Number of recent private chat messages to show:" msgstr "Antal senaste chattlinjer som ska visas:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 #, fuzzy msgid "Number of recent chat room messages to show:" msgstr "Antal senaste chattlinjer som ska visas:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 #, fuzzy msgid "Chat Completion" msgstr "Slutförande" #: pynicotine/gtkgui/ui/settings/chats.ui:194 #, fuzzy msgid "Enable tab-key completion" msgstr "Aktivera komplettering med tabbtangenter" #: pynicotine/gtkgui/ui/settings/chats.ui:223 #, fuzzy msgid "Enable completion drop-down list" msgstr "Rullgardinslistan Aktivera komplettering" #: pynicotine/gtkgui/ui/settings/chats.ui:253 #, fuzzy msgid "Minimum characters required to display drop-down:" msgstr "Minsta antal tecken som krävs för att visa rullgardinsmenyn:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 #, fuzzy msgid "Allowed chat completions:" msgstr "Tillåtna fullbordanden" #: pynicotine/gtkgui/ui/settings/chats.ui:320 #, fuzzy msgid "Buddy names" msgstr "Buddy-lista" #: pynicotine/gtkgui/ui/settings/chats.ui:333 #, fuzzy msgid "Chat room usernames" msgstr "Meddelande från chattrummet:" #: pynicotine/gtkgui/ui/settings/chats.ui:346 #, fuzzy msgid "Room names" msgstr "Rum" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Kommandon" #: pynicotine/gtkgui/ui/settings/chats.ui:386 #, fuzzy msgid "Timestamps" msgstr "Tidsstämplar" #: pynicotine/gtkgui/ui/settings/chats.ui:403 #, fuzzy msgid "Private chat format:" msgstr "Privatrumsformat:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Standard" #: pynicotine/gtkgui/ui/settings/chats.ui:430 #, fuzzy msgid "Chat room format:" msgstr "Format för chattrum:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 #, fuzzy msgid "Text-to-Speech" msgstr "Text-till-tal" #: pynicotine/gtkgui/ui/settings/chats.ui:484 #, fuzzy msgid "Enable Text-to-Speech" msgstr "Aktivera text till tal" #: pynicotine/gtkgui/ui/settings/chats.ui:508 #, fuzzy msgid "Text-to-Speech command:" msgstr "Kommando för text till tal:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 #, fuzzy msgid "Private chat message:" msgstr "Privat chattmeddelande:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 #, fuzzy msgid "Chat room message:" msgstr "Meddelande från chattrummet:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 #, fuzzy msgid "Censor" msgstr "Censurera" #: pynicotine/gtkgui/ui/settings/chats.ui:618 #, fuzzy msgid "Enable censoring of text patterns" msgstr "Aktivera censurering av textmönster" #: pynicotine/gtkgui/ui/settings/chats.ui:783 #, fuzzy msgid "Auto-Replace" msgstr "Automatisk ersättning" #: pynicotine/gtkgui/ui/settings/chats.ui:801 #, fuzzy msgid "Enable automatic replacement of words" msgstr "Aktivera automatisk ersättning av ord" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 #, fuzzy msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Automatisk rensning av avslutade/filtrerade nedladdningar från " "överföringslistan" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 #, fuzzy msgid "Store completed downloads in username subfolders" msgstr "Lagra nedladdningar i undermappar med användarnamn" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 #, fuzzy msgid "Double-click action for downloads:" msgstr "Dubbelklicka för nedladdningar:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Tillåt dessa användare att skicka filer till dig:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 #, fuzzy msgid "Folders" msgstr "Mappar" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 #, fuzzy msgid "Finished downloads:" msgstr "Fil nerladdad" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 #, fuzzy msgid "Incomplete downloads:" msgstr "Färdiga nedladdningar" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Mottagna filer:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Händelser" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 #, fuzzy msgid "Run command after file download finishes ($ for file path):" msgstr "Kör kommandot när nedladdningen av filen är klar ($ för filsökväg):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 #, fuzzy msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Kör kommandot när nedladdningen av mappen är klar ($ för mappens sökväg):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 #, fuzzy msgid "Download Filters" msgstr "Ladda ner filter" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 #, fuzzy msgid "Enable download filters" msgstr "Aktivera nedladdningsfilter" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Lägg till" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Standard" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 #, fuzzy msgid "Verify Filters" msgstr "Verifiera filter" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 #, fuzzy msgid "Unverified" msgstr "Obekräftad" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 #, fuzzy msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ignorera chattmeddelanden och sökresultat från användare, baserat på " "användarnamn eller IP-adress." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Logga chattrum" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Logga privata chatter" #: pynicotine/gtkgui/ui/settings/log.ui:130 #, fuzzy msgid "Log transfers to file" msgstr "Logga överföringar till en fil" #: pynicotine/gtkgui/ui/settings/log.ui:154 #, fuzzy msgid "Log debug messages to file" msgstr "Logga felsökningsmeddelanden till en fil" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Format för loggfilen:" #: pynicotine/gtkgui/ui/settings/log.ui:216 #, fuzzy msgid "Folder Locations" msgstr "Placering av mappar" #: pynicotine/gtkgui/ui/settings/log.ui:233 #, fuzzy msgid "Chatroom logs folder:" msgstr "Mapp med chattrumsloggar:" #: pynicotine/gtkgui/ui/settings/log.ui:249 #, fuzzy msgid "Private chat logs folder:" msgstr "Privat mapp för chattloggar:" #: pynicotine/gtkgui/ui/settings/log.ui:265 #, fuzzy msgid "Transfer logs folder:" msgstr "Överför mappen med loggar:" #: pynicotine/gtkgui/ui/settings/log.ui:281 #, fuzzy msgid "Debug logs folder:" msgstr "Mapp för felsökningsloggar:" #: pynicotine/gtkgui/ui/settings/network.ui:39 #, fuzzy msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Logga in på ett befintligt Soulseek-konto eller skapa ett nytt. Användarnamn " "är skiftlägeskänsliga och unika." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Blockera IP-adress" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Portintervall för lyssning (kräver omstart):" #: pynicotine/gtkgui/ui/settings/network.ui:184 #, fuzzy msgid "Away Status" msgstr "Status" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Minuter av inaktivitet innan du går iväg (0 för att inaktivera):" #: pynicotine/gtkgui/ui/settings/network.ui:226 #, fuzzy msgid "Auto-reply message when away:" msgstr "Automatiskt svar när du är borta:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Automatiskt vidarebefordra lyssningsport (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 #, fuzzy msgid "Auto-connect to server on startup" msgstr "Automatisk anslutning till servern vid start" #: pynicotine/gtkgui/ui/settings/network.ui:321 #, fuzzy msgid "Soulseek server:" msgstr "Server:" #: pynicotine/gtkgui/ui/settings/network.ui:345 #, fuzzy msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Binder anslutningar till ett specifikt nätverksgränssnitt, vilket är " "användbart för att t.ex. se till att en VPN används hela tiden. Lämna tomt " "för att använda alla tillgängliga gränssnitt. Ändra bara det här värdet om " "du vet vad du gör." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Portintervall för lyssning (kräver omstart):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 #, fuzzy msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Med Now Playing kan du visa vad din mediespelare spelar genom att använda " "kommandot /now i chatten." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 #, fuzzy msgid "Other" msgstr "Annat" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 #, fuzzy msgid "Now Playing Format" msgstr "Format som spelas nu" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 #, fuzzy msgid "Now Playing message format:" msgstr "Meddelandeformat för \"Nu spelas upp\":" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 #, fuzzy msgid "Test Configuration" msgstr "Testkonfiguration" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 #, fuzzy msgid "Enable plugins" msgstr "Aktivera insticksmoduler" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 #, fuzzy msgid "Add Plugins" msgstr "_Add Plugins" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 #, fuzzy msgid "_Add Plugins" msgstr "_Add Plugins" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 #, fuzzy msgid "Settings" msgstr "Hämtar status" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 #, fuzzy msgid "_Settings" msgstr "Hämtar status" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 #, fuzzy msgid "Version:" msgstr "Version: " #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Skapad av" #: pynicotine/gtkgui/ui/settings/search.ui:51 #, fuzzy msgid "Enable search history" msgstr "Aktivera sökhistorik" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Andra klienter kan erbjuda ett alternativ för att skicka privat delade filer " "som svar på sökförfrågningar. Sådana filer har prefixet \"[PRIVATE FILE]\" " "och kan inte laddas ner om inte uppladdaren ger uttryckligt tillstånd." #: pynicotine/gtkgui/ui/settings/search.ui:76 #, fuzzy msgid "Show privately shared files in search results" msgstr "Visa privat delade filer i sökresultaten" #: pynicotine/gtkgui/ui/settings/search.ui:106 #, fuzzy msgid "Limit number of results per search:" msgstr "Begränsa antalet resultat per sökning:" #: pynicotine/gtkgui/ui/settings/search.ui:152 #, fuzzy msgid "Enable search result filters by default" msgstr "Aktivera filter" #: pynicotine/gtkgui/ui/settings/search.ui:176 #, fuzzy msgid "Include:" msgstr "Inkludera:" #: pynicotine/gtkgui/ui/settings/search.ui:201 #, fuzzy msgid "Exclude:" msgstr "Exkludera:" #: pynicotine/gtkgui/ui/settings/search.ui:226 #, fuzzy msgid "File Type:" msgstr "Filtyp:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Storlek:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bitrate:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Varaktighet:" #: pynicotine/gtkgui/ui/settings/search.ui:334 #, fuzzy msgid "Country Code:" msgstr "Landskod" #: pynicotine/gtkgui/ui/settings/search.ui:363 #, fuzzy msgid "Only show results from users with an available upload slot." msgstr "Visa endast resultat från användare som har en ledig uppladdningstid." #: pynicotine/gtkgui/ui/settings/search.ui:385 #, fuzzy msgid "Result Filter Help" msgstr "Hjälp med resultatfilter" #: pynicotine/gtkgui/ui/settings/search.ui:407 #, fuzzy msgid "Network Searches" msgstr "Sökningar i nätverket" #: pynicotine/gtkgui/ui/settings/search.ui:429 #, fuzzy msgid "Respond to search requests from other users" msgstr "Svara på sökförfrågningar från andra användare" #: pynicotine/gtkgui/ui/settings/search.ui:463 #, fuzzy msgid "Searches shorter than this number of characters will be ignored:" msgstr "Sökningar som är kortare än detta antal tecken ignoreras:" #: pynicotine/gtkgui/ui/settings/search.ui:488 #, fuzzy msgid "Maximum search results to send per search request:" msgstr "sökresultat per sökning" #: pynicotine/gtkgui/ui/settings/search.ui:553 #, fuzzy msgid "Clear Search History" msgstr "Rensa sökhistorik" #: pynicotine/gtkgui/ui/settings/search.ui:601 #, fuzzy msgid "Clear Filter History" msgstr "Rensa filterhistorik" #: pynicotine/gtkgui/ui/settings/shares.ui:33 #, fuzzy msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Skannar automatiskt om innehållet i dina delade mappar när du startar. Om " "den är inaktiverad uppdateras dina delade mappar endast när du manuellt " "initierar en ny genomsökning." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Indexera om dina dela filer vid programstart" #: pynicotine/gtkgui/ui/settings/shares.ui:68 #, fuzzy msgid "Visible to everyone:" msgstr "Synlig för alla:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Buddy-lista" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Indexera om delade filer" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 #, fuzzy msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Automatisk rensning av avslutade/avbrutna uppladdningar från " "överföringslistan" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 #, fuzzy msgid "Double-click action for uploads:" msgstr "Dubbelklicka för uppladdningar:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 #, fuzzy msgid "Limit upload speed:" msgstr "Begränsa uppladdningshastigheten:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 #, fuzzy msgid "Per transfer" msgstr "Per överföring" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 #, fuzzy msgid "Total transfers" msgstr "Totala överföringar" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 #, fuzzy msgid "Upload Slots" msgstr "Uppladdningar" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 #, fuzzy msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "Filerna laddas upp cykliskt till de användare som står i kö." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 #, fuzzy msgid "Upload queue type:" msgstr "Typ av kö för uppladdning:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Ställ uppladdningar i kö om den totala överföringshastigheten når (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Begränsa antalet uppladdningsplatser till:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 #, fuzzy msgid "Prioritize all buddies" msgstr "Mina kompisar går före i nedladdningskön" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 #, fuzzy msgid "Queue Limits" msgstr "Begränsningar för köer" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Begränsa antalet resultat per sökning:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 #, fuzzy msgid "Maximum total size of queued files per user (MiB):" msgstr "Maximal total storlek på köade filer per användare (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Mina kompisar slipper körestriktioner" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 #, fuzzy msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Om $ förekommer kommer länken att ersättas med länken. Systemets " "standardwebbläsare kommer att användas om inget protokoll har konfigurerats." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 #, fuzzy msgid "File manager command:" msgstr "File Manager-kommando ($ för filsökväg):" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 #, fuzzy msgid "Reset Picture" msgstr "Återställ bild" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 #, fuzzy msgid "Self Description" msgstr "Självbeskrivning" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 #, fuzzy msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Lägg till saker du vill att alla ska se, som en kort beskrivning, hjälpsamma " "tips eller riktlinjer för att ladda ner dina shares." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 #, fuzzy msgid "Picture:" msgstr "Bild:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Rensa" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 #, fuzzy msgid "Prefer dark mode" msgstr "Föredrar mörkt läge" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Använd _Header Bar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 #, fuzzy msgid "Display tray icon" msgstr "Ikonen för faktarutan på displayen" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 #, fuzzy msgid "Minimize to tray on startup" msgstr "Minimera till facket vid start" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Portintervall för lyssning (kräver omstart):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "När du stänger Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 #, fuzzy msgid "Notifications" msgstr "anmälningar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 #, fuzzy msgid "Enable sound for notifications" msgstr "Aktivera ljud för popupmeddelanden" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 #, fuzzy msgid "Show notification for private chats and mentions in the window title" msgstr "Visa meddelanden om privata chattar och omnämnanden i fönstrets titel" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 #, fuzzy msgid "Show notifications for:" msgstr "Visa ikoner för meddelanden på flikar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 #, fuzzy msgid "Finished file downloads" msgstr "Fil nerladdad" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 #, fuzzy msgid "Finished folder downloads" msgstr "Hämtad mapp" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 #, fuzzy msgid "Private messages" msgstr "Privat meddelande från %s" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 #, fuzzy msgid "Chat room messages" msgstr "Meddelande från chattrummet:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 #, fuzzy msgid "Chat room mentions" msgstr "Slutförande" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Resultat för önskelista hittades" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 #, fuzzy msgid "Restore the previously active main tab at startup" msgstr "Återställ tidigare öppna privata chattar vid uppstart" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 #, fuzzy msgid "Close-buttons on secondary tabs" msgstr "Stäng-knappar på sekundära flikar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 #, fuzzy msgid "Regular tab label color:" msgstr "Färg på etiketten för vanliga flikar:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 #, fuzzy msgid "Changed tab label color:" msgstr "Ändrade färgen på fliken:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 #, fuzzy msgid "Highlighted tab label color:" msgstr "Färg på etiketten för markerade flikar:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 #, fuzzy msgid "Buddy list position:" msgstr "Position i kompislistan:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 #, fuzzy msgid "Visible main tabs:" msgstr "Synliga primära flikar:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Fältfältets position:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Huvudflikar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "Visa omvända filvägar i sök- och överföringsvyer (kräver omstart)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Nätverksgränssnitt (kräver omstart):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 #, fuzzy msgid "List text color:" msgstr "Färg på listans text:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 #, fuzzy msgid "Queued search result text color:" msgstr "Färg på texten för sökresultatet i kö:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Meddelande från chattrummet:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 #, fuzzy msgid "Chat username appearance:" msgstr "Användarnamnet för chatt visas:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 #, fuzzy msgid "Remote text color:" msgstr "Färg på fjärrtexten:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 #, fuzzy msgid "Local text color:" msgstr "Lokalt filfel" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Färg på fjärrtexten:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 #, fuzzy msgid "/me action text color:" msgstr "/me action textfärg:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 #, fuzzy msgid "Highlighted text color:" msgstr "Färg på markerad text:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 #, fuzzy msgid "URL link text color:" msgstr "URL-länkens textfärg:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "USA" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Textfärg på nätet:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Färg på texten:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Offline textfärg:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 #, fuzzy msgid "Text Entries" msgstr "Textuppgifter" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 #, fuzzy msgid "Text entry background color:" msgstr "Bakgrundsfärg för textinmatning:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 #, fuzzy msgid "Text entry text color:" msgstr "Färg för textinmatning:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 #, fuzzy msgid "Fonts" msgstr "Typsnitt" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 #, fuzzy msgid "Global font:" msgstr "Globalt typsnitt:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 #, fuzzy msgid "List font:" msgstr "Lista teckensnitt:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Teckensnitt för textvy:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 #, fuzzy msgid "Chat font:" msgstr "Chattfont:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 #, fuzzy msgid "Transfers font:" msgstr "Överför teckensnitt:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 #, fuzzy msgid "Search font:" msgstr "Sök typsnitt" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 #, fuzzy msgid "Browse font:" msgstr "Bläddra bland teckensnitten:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 #, fuzzy msgid "Icons" msgstr "Ikoner" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Ofullständig mapp:" #: pynicotine/gtkgui/ui/uploads.ui:86 #, fuzzy msgid "Abort User(s)" msgstr "Avbryt användare(s)" #: pynicotine/gtkgui/ui/uploads.ui:116 #, fuzzy msgid "Ban User(s)" msgstr "Förbjuda användare" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "" "Automatisk rensning av avslutade/avbrutna uppladdningar från " "överföringslistan" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Meddelanden" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Rensa alla uppladdningar" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Spara listan över delningar på disk" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Uppdatera filer." #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Delade mappar" #: pynicotine/gtkgui/ui/userinfo.ui:128 #, fuzzy msgid "Shared Files" msgstr "_Sök" #: pynicotine/gtkgui/ui/userinfo.ui:155 #, fuzzy msgid "Shared Folders" msgstr "Delade mappar" #: pynicotine/gtkgui/ui/userinfo.ui:209 #, fuzzy msgid "Queued Uploads" msgstr "Uppladdningar" #: pynicotine/gtkgui/ui/userinfo.ui:236 #, fuzzy msgid "Free Upload Slots" msgstr "Gratis uppladdning av spelautomater" #: pynicotine/gtkgui/ui/userinfo.ui:263 #, fuzzy msgid "Upload Speed" msgstr "Uppladdningar" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Intressen" #: pynicotine/gtkgui/ui/userinfo.ui:672 #, fuzzy msgid "_Gift Privileges…" msgstr "_Privilegierad" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Uppdatera filer." #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Nicotine+ Team" #~ msgid "_Clear" #~ msgstr "Rensa" #, fuzzy, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Kunde inte skapa katalogen '%(user)s', rapporterat fel: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #, fuzzy #~ msgid "Trusted Buddies" #~ msgstr "Förtroendevalda kompisar" #, fuzzy #~ msgid "Quit program" #~ msgstr "Avsluta program?" #~ msgid "Username:" #~ msgstr "Användarnamn:" #, fuzzy #~ msgid "Re_commendations for Item" #~ msgstr "Re_rekommendationer för punkt" #, fuzzy #~ msgid "_Remove Item" #~ msgstr "Ta bort objekt" #~ msgid "_Remove" #~ msgstr "Ta bo_rt" #, fuzzy #~ msgid "Send M_essage" #~ msgstr "Skicka M_meddelande" #, fuzzy #~ msgid "Send Message" #~ msgstr "Skicka meddelande" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Visa användarprofil" #, fuzzy #~ msgid "Start Messaging" #~ msgstr "Börja skicka meddelanden" #, fuzzy #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "" #~ "Ange namnet på den användare som du vill skicka ett meddelande till:" #, fuzzy #~ msgid "_Message" #~ msgstr "Meddelanden" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Ange namnet på den användare vars andelar du vill se:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Visa användarprofil" #, fuzzy #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Ange namnet på den användare vars andelar du vill se:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Sök" #, fuzzy #~ msgid "Password" #~ msgstr "Lösenord" #, fuzzy #~ msgid "Download File" #~ msgstr "Ladda ner fil" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Liknande användare" #, fuzzy #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Ange användarnamnet för den person vars filer du vill se." #, fuzzy #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Ange användarnamnet för den person vars information du vill se." #, fuzzy #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Ange användarnamnet för den person som du vill skicka ett meddelande till." #, fuzzy #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Ange användarnamnet för den person som du vill lägga till i din " #~ "kompislista." #, fuzzy #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Ange namnet på det rum som du vill ansluta till. Om rummet inte finns " #~ "kommer det att skapas." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Visa rutan _Log" #, fuzzy #~ msgid "Save _Picture" #~ msgstr "Spara _Bild" #, fuzzy, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Filtrerade bort felaktigt sökresultat %(filepath)s från användare " #~ "%(user)s för sökfrågan \"%(query)s\"" #, fuzzy #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "Vissa klienter skickar inte sökresultat om specialtecken ingår." #, fuzzy #~ msgid "Remove special characters from search terms" #~ msgstr "Ta bort specialtecken från sökord" #, fuzzy, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Problem med att exekvera '%s'." #, fuzzy, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Problem med att köra på mappen: %s" #, fuzzy #~ msgid "Disallowed extension" #~ msgstr "Tillåtet tillägg" #, fuzzy #~ msgid "Too many files" #~ msgstr "För många filer" #, fuzzy #~ msgid "Too many megabytes" #~ msgstr "För många megabyte" #, fuzzy #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Servern tillåter inte sökningar i önskelistan för närvarande." #, fuzzy #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Filöverföringshastigheten beror på vilka användare du laddar ner från. " #~ "Vissa användare är snabbare medan andra är långsamma." #, fuzzy #~ msgid "Started Downloads" #~ msgstr "Startat Nedladdningar" #, fuzzy #~ msgid "Started Uploads" #~ msgstr "Påbörjade uppladdningar" #, fuzzy #~ msgid "Replace censored letters with:" #~ msgstr "Ersätt de censurerade bokstäverna med:" #, fuzzy #~ msgid "Censored Patterns" #~ msgstr "Censurerade mönster" #, fuzzy #~ msgid "Replacements" #~ msgstr "Ersättningar" #, fuzzy #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Om en användare i Soulseek-nätverket söker efter en fil som finns i dina " #~ "filer skickas sökresultaten till användaren." #, fuzzy #~ msgid "Send to Player" #~ msgstr "Skicka till _Player" #, fuzzy #~ msgid "Send to _Player" #~ msgstr "Skicka till _Player" #, fuzzy #~ msgid "_Open in File Manager" #~ msgstr "_Öppna i filhanteraren" #, fuzzy #~ msgid "Media player command:" #~ msgstr "Media Player-kommando ($ för filsökväg):" #, fuzzy, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Det går inte att spara nedladdningen i en undermapp för användarnamn, " #~ "utan den faller tillbaka till standardmappen för nedladdningar. Fel: %s" #, fuzzy #~ msgid "Buddy-only" #~ msgstr "Endast kompisar" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Dela endast med kompisar" #, fuzzy #~ msgid "_Quit…" #~ msgstr "_Avsluta" #, fuzzy #~ msgid "_Configure Shares" #~ msgstr "_Konfigurera andelar" #, fuzzy #~ msgid "Remote file error" #~ msgstr "Fel i fjärrfilen" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Kan inte finna %(option1)s eller %(option2)s, var snäll installera någon " #~ "av de två." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s mappar hittades efter omskanning" #, fuzzy, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Följande databaser kunde inte bearbetas: %(names)s" #, fuzzy, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Det gick inte att skicka antalet delade filer till servern: %s" #, fuzzy #~ msgid "Quit / Run in Background" #~ msgstr "Kör i bakgrunden" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Lyssnar på port %i" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Sökningar i nätverket" #, fuzzy #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Begränsa delningar för kompisar till betrodda kompisar" #, fuzzy #~ msgid "Shared" #~ msgstr "Delat" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Sök i filer och mappar (exakt matchning)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Föråldrad" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Version %(version)s är tillgänglig, släppt på %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Du verkar använda en utvecklingsversion av Nicotine+." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Du använder den senaste versionen av Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Kontrollera _den senaste versionen" #, fuzzy #~ msgid "Prefer Dark _Mode" #~ msgstr "Föredrar mörkt _Mode" #, fuzzy #~ msgid "Show _Log History Pane" #~ msgstr "Visa rutan _Log" #, fuzzy #~ msgid "Buddy List in Separate Tab" #~ msgstr "Kompislista i separat flik" #, fuzzy #~ msgid "Buddy List Always Visible" #~ msgstr "Kompislistan är alltid synlig" #, fuzzy #~ msgid "_View" #~ msgstr "_Visa" #, fuzzy #~ msgid "_Open Log Folder" #~ msgstr "_Hämtningsmapp" #, fuzzy #~ msgid "_Browse Folder(s)" #~ msgstr "_Bläddra i mapp(ar)" #, fuzzy #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibabyte (2^10 bytes) per sekund." #, fuzzy #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "" #~ "Skickas till användare som skäl för att de är geografiskt blockerade." #, fuzzy #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Skickas till användarna som skäl för att de blivit bannlysta." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "När du interagerar med att applikationen är borta ställs status in på " #~ "online." #, fuzzy #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Varje användare kan ställa sig i kö för högst:" #, fuzzy #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibytes (2^20 bytes)." #, fuzzy #~ msgid "MiB" #~ msgstr "MiBs" #, fuzzy #~ msgid "files" #~ msgstr "filer" #, fuzzy #~ msgid "Queue Behavior" #~ msgstr "Beteende i köer" #, fuzzy #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Om den är inaktiverad kommer slots automatiskt att bestämmas av " #~ "tillgängliga bandbreddsbegränsningar." #, fuzzy #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Observera att operativsystemets tema kan ha företräde." #, fuzzy #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Som standard är fliken sökfiler aktiverad vid uppstart." #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Avsluta %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "avslutad" #, fuzzy #~ msgid "done" #~ msgstr "klart" #, fuzzy #~ msgid "Remember choice" #~ msgstr "Kom ihåg valet" #, fuzzy #~ msgid "Kosovo" #~ msgstr "Kosovo" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Gränssnitt" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Lyssnar på port %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Servern verkar vara nere eller svarar inte, försöker igen om %i sekunder" #, fuzzy #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ använder peer-to-peer-nätverk för att få kontakt med andra " #~ "användare. För att användare ska kunna ansluta till dig utan problem är " #~ "det viktigt att ha en öppen lyssnarport." #~ msgid "--- disconnected ---" #~ msgstr "--- nedkopplad ---" #~ msgid "--- reconnected ---" #~ msgstr "--- återansluten ---" #, fuzzy #~ msgid "ID" #~ msgstr "ID" #, fuzzy #~ msgid "Earth" #~ msgstr "Jorden" #, fuzzy #~ msgid "Czech Republic" #~ msgstr "Tjeckien" #, fuzzy #~ msgid "Turkey" #~ msgstr "Turkiet" #, fuzzy #~ msgid "Joined Rooms " #~ msgstr "Sammanfogade rum " #, fuzzy #~ msgid "_Auto-join Room" #~ msgstr "_Auto-join Room" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Syntax: Bokstäverna är skiftlägesoberoende. Alla Pythons reguljära " #~ "uttryck stöds om escaping är inaktiverat. För enkla filter rekommenderas " #~ "att escaping är aktiverat." #, fuzzy #~ msgid "Escaped" #~ msgstr "Flydde" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Flydde" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Ange textmönstret respektive ersättning:" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "%(num)s mappar hittades före omskanning, återuppbyggnad…" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Ingen lyssningsport är tillgänglig inom det angivna portintervallet %s–%s" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Välj ett intervall att välja en lyssningsport från. Den första " #~ "tillgängliga porten i sortimentet kommer att användas." #, fuzzy #~ msgid "First Port" #~ msgstr "Första hamnen" #, fuzzy #~ msgid "to" #~ msgstr "till" #, fuzzy #~ msgid "Last Port" #~ msgstr "Sista hamnen" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Kan inte hitta %s, var snäll installera det." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Kan inte installera GTK-modulen. Har python-gobject modulen blivit " #~ "felaktigt installerad?" #, fuzzy, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Du använder en version av GTK (%s) som saknar stöd.\n" #~ "Du borde installera GTK 3.0 eller senare." #, fuzzy #~ msgid "User Info" #~ msgstr "Användarinformation" #, fuzzy #~ msgid "Zoom 1:1" #~ msgstr "Zoom 1:1" #, fuzzy #~ msgid "Zoom In" #~ msgstr "Zooma in" #, fuzzy #~ msgid "Zoom Out" #~ msgstr "Zooma ut" #, fuzzy #~ msgid "Show User I_nfo" #~ msgstr "Visa användarens I_nfo" #, fuzzy #~ msgid "Request User's Info" #~ msgstr "Begär användarinfo från användaren 'användare'" #, fuzzy #~ msgid "Request User's Shares" #~ msgstr "Begär användarens andelar" #, fuzzy #~ msgid "Request User Info" #~ msgstr "Begär användarinformation" #, fuzzy #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Ange namnet på den användare vars information du vill se:" #, fuzzy #~ msgid "Request Shares List" #~ msgstr "Begär en lista över aktier" #, fuzzy, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Felaktig SoulSeek-meta-url: %s" #, fuzzy #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Användare i Soulseek-nätverket kommer att kunna ladda ner filer från " #~ "mappar som du delar. Att dela filer är viktigt för att Soulseek-nätverket " #~ "ska fungera." #, fuzzy #~ msgid "Update I_nfo" #~ msgstr "Användari_nfo" #, fuzzy #~ msgid "Chat Room Commands" #~ msgstr "Kommandon för chattrum" #, fuzzy #~ msgid "/join /j 'room'" #~ msgstr "/j \"rum\" /j \"rum" #~ msgid "Join room 'room'" #~ msgstr "Anslut till rummet 'rum'" #, fuzzy #~ msgid "/me 'message'" #~ msgstr "/me \"meddelande" #, fuzzy #~ msgid "Display the Now Playing script's output" #~ msgstr "Visa skriptets utdata för Nu spelas upp" #, fuzzy #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'användare'" #, fuzzy #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Lägg användaren 'användare' till din ban-lista" #, fuzzy #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'användare'" #, fuzzy #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Ta bort användaren 'användare' från din ban-lista" #, fuzzy #~ msgid "/ban 'user'" #~ msgstr "/ban 'användare'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Lägg användaren 'användare' till din ban-lista" #, fuzzy #~ msgid "/unban 'user'" #~ msgstr "/unban 'användare'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Ta bort användaren 'användare' från din ban-lista" #, fuzzy #~ msgid "/ignore 'user'" #~ msgstr "/ignorera \"användare" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Lägg användaren 'användare' till din ignore-lista" #, fuzzy #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'user'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Ta bort användaren 'användare' från din ignore-lista" #, fuzzy #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'user'" #, fuzzy #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w \"användare" #, fuzzy #~ msgid "Request info for 'user'" #~ msgstr "Begär användarinfo från användaren 'användare'" #, fuzzy #~ msgid "/ip 'user'" #~ msgstr "/ip 'användare'" #~ msgid "Show IP for user 'user'" #~ msgstr "Visa IP-adress för användaren 'användare'" #, fuzzy #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'query'" #~ msgid "Start a new search for 'query'" #~ msgstr "Påbörja sökning efter 'förfrågan'" #, fuzzy #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs \"fråga" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Sök i anslutna rum efter 'förfrågan'" #, fuzzy #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs \"fråga" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Sök i kompislistan efter 'förfrågan'" #, fuzzy #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'användare' 'fråga'" #, fuzzy #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'användare' 'meddelande'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Skicka meddelandet 'message' till användaren 'användare'" #, fuzzy #~ msgid "/pm 'user'" #~ msgstr "/pm 'användare'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Öppna privat chattfönster för användaren 'användare'" #, fuzzy #~ msgid "Private Chat Commands" #~ msgstr "Kommandon för privat chatt" #, fuzzy #~ msgid "Add user to your ban list" #~ msgstr "Lägg användaren 'användare' till din ban-lista" #, fuzzy #~ msgid "Add user to your ignore list" #~ msgstr "Lägg användaren 'användare' till din ignore-lista" #, fuzzy #~ msgid "Browse shares of user" #~ msgstr "Bläddra filer hos användaren 'användare'" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "För att filtrera i oavsiktlig ordning och för att filtrera flera exakta " #~ "fraser kan vertikala staplar användas för att separera fraser och ord.\n" #~ " Exempel: Spears|Brittany|My beautiful album|hello" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "För att utesluta icke-ljudfiler använd !0 i varaktighetsfiltret." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Filtrerar filer baserat på användarnas länder." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "För att se de fullständiga resultaten igen, rensa helt enkelt alla aktiva " #~ "filter." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Se inställningarna för fler filteralternativ." #, fuzzy #~ msgid "File size" #~ msgstr "Filstorlek" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Rensa alla aktiva filter" #, fuzzy #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Cykla genom avslutningar när du trycker på tabbtangenten" #, fuzzy #~ msgid "Hide drop-down when only one matches" #~ msgstr "Dölj rullgardinsmenyn när bara en matchar" #, fuzzy #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Ladda ner mappar i omvänd alfanumerisk ordning" #, fuzzy #~ msgid "Incomplete file folder:" #~ msgstr "Ofullständig mapp:" #, fuzzy #~ msgid "Download folder:" #~ msgstr "Nerladdningsmapp" #, fuzzy #~ msgid "Save buddies' uploads to:" #~ msgstr "Spara kompisars uppladdningar till:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "" #~ "Använd UPnP för att automatiskt mappa den lyssnande porten på routern." #, fuzzy #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Dela mappar med alla Soulseek-användare eller kompisar, så att innehåll " #~ "kan laddas ner direkt från din enhet. Dolda filer delas aldrig." #, fuzzy #~ msgid "Secondary Tabs" #~ msgstr "Sekundära flikar" #, fuzzy #~ msgid "Chat room tab bar position:" #~ msgstr "Placering av fliken i chattrummet:" #, fuzzy #~ msgid "Private chat tab bar position:" #~ msgstr "Position för flikfältet för privat chatt:" #, fuzzy #~ msgid "Search tab bar position:" #~ msgstr "Sökfältets position:" #, fuzzy #~ msgid "User info tab bar position:" #~ msgstr "Position för flikfältet för användarinformation:" #, fuzzy #~ msgid "User browse tab bar position:" #~ msgstr "Användarens position i fliken för bläddring:" #, fuzzy #~ msgid "Tab Labels" #~ msgstr "Etiketter för flikar" #, fuzzy #~ msgid "_Refresh Info" #~ msgstr "_Refresh Info" #, fuzzy #~ msgid "Block IP Address" #~ msgstr "Blockera IP-adress" #, fuzzy #~ msgid "Connected" #~ msgstr "Ansluten:" #, fuzzy #~ msgid "Disconnected" #~ msgstr "Frånkopplad:" #, fuzzy #~ msgid "Disconnected (Tray)" #~ msgstr "Frånkopplad:" #, fuzzy #~ msgid "User(s)" #~ msgstr "Användare" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Alias \"%s\" gav inget resultat" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "Alternativa hastighetsgränser" #, fuzzy #~ msgid "Last played" #~ msgstr "Last played" #, fuzzy #~ msgid "Playing now" #~ msgstr "Spela nu" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Det går inte att spara filen %(path)s: %(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Felkod %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Kunde inte hitta alias (%s)" #~ msgid "Aliases:" #~ msgstr "Alias:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Tog bort aliaset %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Kunde inte hitta alias (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternativa hastighetsgränser" #, fuzzy #~ msgid "Aliases" #~ msgstr "Alias" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al \"kommando\" \"definition" #~ msgid "Add a new alias" #~ msgstr "Lägg till ett nytt alias" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un \"command" #~ msgid "Remove an alias" #~ msgstr "Ta bort ett alias" #, fuzzy #~ msgid "Chat History" #~ msgstr "Chat-historik" #, fuzzy #~ msgid "Command aliases" #~ msgstr "Fullständiga alias för kommandon" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Begränsa nedladdningshastigheten till (KiB/s):" #, fuzzy #~ msgid "Author(s):" #~ msgstr "Författare: " #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Begränsa uppladdningshastigheten till (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Varan i önskelistan hittades" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Flikar visar ikoner för användarstatus i stället för statustext" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "Aktivera verktygstips för filsökvägar i sök- och överföringsvyer" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "Färgade och klickbara användarnamn" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "Meddelande ändrar flikens textfärg" #, fuzzy #~ msgid "Cancel" #~ msgstr "Avbryt" #, fuzzy #~ msgid "OK" #~ msgstr "OK" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "_Lägg till kompislistan" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Rensa varje nedladdning markerad med en specifik status." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Rensa varje uppladdning markerad med en specifik status." #, fuzzy #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "använda en katalog som inte är standard för användardata för t.ex. en " #~ "lista över nedladdningar" #, fuzzy, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Okänd konfigurationssektion '%s'." #, fuzzy, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Okänt konfigurationsalternativ '%(option)s' i avsnittet '%(section)s'." #, fuzzy, python-format #~ msgid "Version %s is available" #~ msgstr "Version %s är tillgänglig" #, fuzzy, python-format #~ msgid "released on %s" #~ msgstr "Släppt den %s" #, fuzzy #~ msgid "Nicotine+ is running in the background" #~ msgstr "kör i bakgrunden" #, fuzzy, python-format #~ msgid "Private message from %s" #~ msgstr "Privat meddelande från %s" #~ msgid "Aborted" #~ msgstr "Avbruten" #, fuzzy #~ msgid "Blocked country" #~ msgstr "Blockerat land" #, fuzzy #~ msgid "Finished / Aborted" #~ msgstr "Avslutad/avbruten" #, fuzzy #~ msgid "Close tab" #~ msgstr "Stäng flik" #, fuzzy, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Du har nämnts i %(room)s-rummet." #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Kände inte igen kommandot %s" #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Varning: %(realuser)s försöker förvränga %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Nätverksgränssnittet du angav, '%s', finns inte. Ändra eller ta bort det " #~ "angivna nätverksgränssnittet och starta om Nicotine+." #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Det intervall du angav för klientanslutningsportar var {}-{}, men ingen " #~ "av dessa var användbar. Öka och/eller " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Observera att en del av ditt intervall ligger under 1024, vilket " #~ "vanligtvis inte är tillåtet i de flesta operativsystem med undantag för " #~ "Windows." #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Framsteg: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "OS-fel: %s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP är inte tillgängligt på detta nätverk" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Det gick inte att mappa den externa WAN-porten: %(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "Vägg i rummet" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Standardporten \"2234\" fungerar bra i de flesta fall. Om du behöver " #~ "använda en annan port kan du ändra den i inställningarna senare." #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "Visa användare med liknande intressen" #, fuzzy #~ msgid "Menu" #~ msgstr "Meny" #, fuzzy #~ msgid "Expand / Collapse all" #~ msgstr "Expandera / kollapsa alla" #, fuzzy #~ msgid "Configure shares" #~ msgstr "Konfigurera andelar" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "Skapa eller gå med i ett rum…" #, fuzzy #~ msgid "_Room List" #~ msgstr "_Rumförteckning" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "" #~ "Aktivera alternativa hastighetsgränser för nedladdning och uppladdning" #, fuzzy #~ msgid "Show log history" #~ msgstr "Visa logghistorik" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "Grupperingsläge för resultat" #, fuzzy #~ msgid "Free slot" #~ msgstr "Gratis slot" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "Spara listan över andelar på hårddisk" #, fuzzy #~ msgid "_Away" #~ msgstr "_Away" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "Misslyckades med att läsa in ui-filen %(file)s: %(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Försöker återställa indexet för delade filer på grund av ett fel. Skanna " #~ "om dina delningar." #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Filindex för delade filer kunde inte nås. Detta kan bero på att flera " #~ "instanser av Nicotine+ är aktiva samtidigt, problem med filbehörighet " #~ "eller ett annat problem i Nicotine+." #, fuzzy #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ är en Soulseek-kund" #, fuzzy #~ msgid "enable the tray icon" #~ msgstr "aktivera ikonen i facket" #, fuzzy #~ msgid "disable the tray icon" #~ msgstr "inaktivera ikonen i facket" #, fuzzy #~ msgid "Get Soulseek Privileges…" #~ msgstr "Få Soulseek-privilegier…" #, fuzzy, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Den offentliga IP-adressen är %(ip)s och den aktiva lyssnarporten " #~ "är %(port)s." #, fuzzy #~ msgid "unknown" #~ msgstr "okänd" #, fuzzy #~ msgid "Notification" #~ msgstr "Avisering" #~ msgid "Length" #~ msgstr "Längd" #, fuzzy, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Bilden har inte sparats, %s finns redan." #, fuzzy #~ msgid "_Open" #~ msgstr "_Öppna" #, fuzzy #~ msgid "_Save" #~ msgstr "_Spara" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "" #~ "Misslyckades med att ladda insticksprogrammet '%s', kunde inte hitta det." #, python-format #~ msgid "I/O error: %s" #~ msgstr "I/O-fel: %s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Det gick inte att öppna filsökvägen: %s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Misslyckades med att öppna URL: %s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_Loggkonversation" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "Lista över resultatfilter" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Lägg till < eller > för att hitta filer som är mindre/större än det " #~ "angivna värdet." #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR-filer visar sin genomsnittliga bithastighet och är vanligtvis lägre i " #~ "bithastighet än en komprimerad 320 kbps CBR-fil av samma ljudkvalitet." #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Precis som i Size ovan kan =, < och > användas." #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Förhindra skrivåtkomst för andra program till filer som laddas ner (stäng " #~ "av för NFS)." #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Där ofullständiga nedladdningar lagras tillfälligt." #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Där kompisarnas uppladdningar lagras (med en undermapp skapad för varje " #~ "kompis)." #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Slå bort status efter några minuters inaktivitet:" #~ msgid "Protocol:" #~ msgstr "Protokoll:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Ikon-temamappen (kräver omstart):" #~ msgid "Establishing connection" #~ msgstr "Upprättar anslutning" #, fuzzy #~ msgid "Clear Groups" #~ msgstr "Tydliga grupper" #, fuzzy #~ msgid "User List" #~ msgstr "Användarlista" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_Nyställer statistiken…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "_Nedladdningar" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "Rensa Uploa_ds…" #, fuzzy #~ msgid "Block User's IP Address" #~ msgstr "Blockera användarens IP-adress" #, fuzzy #~ msgid "Ignore User's IP Address" #~ msgstr "Ignorera användarens IP-adress" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Rensa varje nedladdning som har slutförts överföringen eller fångats av " #~ "ett filter." #, fuzzy #~ msgid "Usernames" #~ msgstr "Användarnamn" #, fuzzy #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Visa loggade chattrumsmeddelanden när ett rum återinträder i ett rum" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Rensa varje uppladdning som antingen har slutförts överföringen eller " #~ "avbrutits av fjärranvändaren." #, fuzzy #~ msgid "Queue Position" #~ msgstr "Position i kön" #, fuzzy, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Användaren %(user)s söker direkt efter \"%(query)s\" och får %(num)i " #~ "resultat." #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[PRIVAT]" #, fuzzy #~ msgid "Room wall (personal message set)" #~ msgstr "Vägg i rummet (uppsättning med personliga meddelanden)" #, fuzzy #~ msgid "Your config file is corrupt" #~ msgstr "Din konfigurationsfil är skadad" #, fuzzy, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Vi är ledsna, men det verkar som om din konfigurationsfil är skadad. " #~ "Vänligen konfigurera om Nicotine+.\n" #~ "\n" #~ "Vi bytte namn på din gamla konfigurationsfil till\n" #~ "%(corrupt)s\n" #~ "Om du öppnar den här filen med en textredigerare kan du kanske rädda " #~ "några av dina inställningar." #, fuzzy #~ msgid "User Description" #~ msgstr "Beskrivning:" #, fuzzy #~ msgid "User Interests" #~ msgstr "Intressen" #, fuzzy #~ msgid "User Picture" #~ msgstr "Användarbild" #, fuzzy #~ msgid "Search Wishlist" #~ msgstr "Klar önskelista?" #, fuzzy, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Sluta med nikotin+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Använder Python %(py_version)s" #, fuzzy, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Sluta med nikotin+ %(version)s, %(status)s…" #, fuzzy, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Sluta med nikotin+ %(version)s, %(status)s!" #, fuzzy #~ msgid "User:" #~ msgstr "Användare:" #, fuzzy, python-format #~ msgid "All %(ext)s" #~ msgstr "Alla %(ext)s" #, fuzzy, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s filer " #, fuzzy #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "Tillåt reguljära uttryck för filterets inkluderade och exkluderade" #, fuzzy #~ msgid "Quit…" #~ msgstr "Avsluta" #, fuzzy #~ msgid "Remember previous primary tab on startup" #~ msgstr "Visa föregående primära flik vid start" #, fuzzy #~ msgid "Start with Search Files by default." #~ msgstr "Aktivera filter" #, fuzzy #~ msgid "Close Nicotine+?" #~ msgstr "Stäng Nicotine+?" #, fuzzy #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Vill du verkligen sluta med Nicotine+?" #, fuzzy #~ msgid "Run in Background" #~ msgstr "Kör i bakgrunden" #, fuzzy #~ msgid "_Online Notify" #~ msgstr "_Online-anmälan" #, fuzzy #~ msgid "_Prioritize User" #~ msgstr "_Prioritera användare" #, fuzzy #~ msgid "_Trust User" #~ msgstr "_Trusted" #, fuzzy #~ msgid "Request User's IP Address" #~ msgstr "Begär användarens IP-adress" #, fuzzy #~ msgid "Request IP Address" #~ msgstr "Begär IP-adress" #, fuzzy #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "Ange namnet på den användare vars IP-adress du vill se:" #, fuzzy #~ msgid "Downloaded" #~ msgstr "Nedladdat" #, fuzzy, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "" #~ "Det gick inte att lägga till nedladdningen %(filename)s i de delade " #~ "filerna: %(error)s" #, fuzzy #~ msgid "Automatically share completed downloads" #~ msgstr "Automatiskt dela nedladdningar" #, fuzzy #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "Motsvarigheten till att lägga till din nedladdningsmapp som en offentlig " #~ "delning, men filer som laddas ner till den här mappen kommer automatiskt " #~ "att vara tillgängliga för andra (ingen omskanning krävs)." #, fuzzy #~ msgid "Unable to Share Folder" #~ msgstr "Det går inte att dela mapp" #, fuzzy #~ msgid "The chosen virtual name is empty" #~ msgstr "Det valda virtuella namnet är tomt" #, fuzzy #~ msgid "The chosen virtual name already exists" #~ msgstr "Det valda virtuella namnet finns redan" #, fuzzy #~ msgid "The chosen folder is already shared" #~ msgstr "Den valda mappen är redan delad" #, fuzzy #~ msgid "Set Virtual Name" #~ msgstr "Ange virtuellt namn" #, fuzzy, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "Ange ett virtuellt namn för \"%(dir)s\":" #, fuzzy #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Det valda virtuella namnet är antingen tomt eller finns redan." #, fuzzy #~ msgid "The chosen folder is already shared." #~ msgstr "Den valda mappen är redan delad." #, fuzzy, python-format #~ msgid "%s Properties" #~ msgstr "%s: Egenskaper" #, fuzzy #~ msgid "Finished rescanning shares" #~ msgstr "Slutförd omskanning av kompisandelar" #, fuzzy #~ msgid "Plugin List" #~ msgstr "Förteckning över plugins" #, fuzzy, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "Fel vid skanning %(path)s: %(error)s" #, fuzzy #~ msgid "Show _Log Pane" #~ msgstr "Visa rutan _Log" #, fuzzy #~ msgid "Addresses" #~ msgstr "Adresser" #~ msgid "Handler" #~ msgstr "Hanterare" #, fuzzy #~ msgid "Could not enable plugin." #~ msgstr "Det gick inte att aktivera insticksmodul!" #, fuzzy #~ msgid "Could not disable plugin." #~ msgstr "Det gick inte att inaktivera insticksmodul!" #~ msgid "Transfers" #~ msgstr "Överföringar" #, fuzzy #~ msgid "Ban List" #~ msgstr "Bannlista" #, fuzzy #~ msgid "Ignore List" #~ msgstr "Ignorera listan" #, fuzzy #~ msgid "Censor & Replace" #~ msgstr "Censurera och ersätt" #, fuzzy #~ msgid "Completion" #~ msgstr "Slutförande" #~ msgid "Categories" #~ msgstr "Kategorier" #, fuzzy #~ msgid "Upload Folder To…" #~ msgstr "Ladda upp mapp till…" #, fuzzy #~ msgid "Upload Folder Recursive To…" #~ msgstr "Uppladdning av mapp rekursivt till…" #, fuzzy #~ msgid "Download _Recursive" #~ msgstr "Ladda ner _Recursive" #, fuzzy #~ msgid "Download R_ecursive To…" #~ msgstr "Ladda ner R_ecursive till…" #, fuzzy #~ msgid "Up_load File(s)" #~ msgstr "Ladda upp fil(er)" #, fuzzy, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "Fel vid försök att visa mappen '%(folder)s', rapporterat fel: %(error)s" #, fuzzy #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "" #~ "Välj destination för nedladdning av mapp med undermappar från användare" #, fuzzy #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Välj destination för nedladdning av en mapp från användare" #, fuzzy #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Välj destination för nedladdning av fil(er) från användare" #, fuzzy #~ msgid "Wishes" #~ msgstr "Önskemål" #, fuzzy #~ msgid "privileged" #~ msgstr "privilegierad" #, fuzzy #~ msgid "prioritized" #~ msgstr "prioriteras" #, fuzzy #~ msgid "Blocked IP Addresses" #~ msgstr "Blockerade IP-adresser" #, fuzzy #~ msgid "Complete buddy names" #~ msgstr "Fullständiga namn på kompisar" #, fuzzy #~ msgid "Complete usernames in chat rooms" #~ msgstr "Fullständiga användarnamn i chattrum" #, fuzzy #~ msgid "Complete room names" #~ msgstr "Fullständiga rumsnamn" #, fuzzy #~ msgid "Drop-down List" #~ msgstr "Lista med rullgardinsmenyer" #, fuzzy #~ msgid "File Manager command ($ for file path):" #~ msgstr "File Manager-kommando ($ för filsökväg):" #, fuzzy #~ msgid "Media Player command ($ for file path):" #~ msgstr "Media Player-kommando ($ för filsökväg):" #, fuzzy #~ msgid "Ignored IP Addresses" #~ msgstr "Ignorerade användare:" #, fuzzy #~ msgid "Display timestamps" #~ msgstr "Visa tidsstämplar" #, fuzzy #~ msgid "Notification Popups" #~ msgstr "Popup-fönster för meddelanden" #, fuzzy #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "Visa en popup-fönsterruta med meddelande när en fil har laddats ner" #, fuzzy #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Visa en popup-fönsterruta med meddelande när en mapp har laddats ner" #, fuzzy #~ msgid "Show notification popup when you receive a private message" #~ msgstr "" #~ "Visa en popup-fönsterruta med meddelande när du får ett privat meddelande" #, fuzzy #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Visa en popup-fönsterruta med meddelande när någon skickar ett meddelande " #~ "i ett chattrum" #, fuzzy #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "Visa popup-fönster för meddelanden när du nämns i ett chattrum" #, fuzzy #~ msgid "Tray" #~ msgstr "Aktivitetsfält" #, fuzzy #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "Om $ förekommer kommer länken att ersättas med länken. Systemets " #~ "standardwebbläsare kommer att användas om inget protokoll har " #~ "konfigurerats." #~ msgid "Handler:" #~ msgstr "Hanterare:" #, fuzzy #~ msgid "Primary Tabs" #~ msgstr "Primära flikar" #, fuzzy #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "Aktivera verktygstips för filsökvägar i sök- och överföringsvyer" #, fuzzy #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "Visar den fullständiga filvägen för ett sökresultat eller en " #~ "filöverföring när du för muspekaren över en mappväg eller ett filnamn." #, fuzzy #~ msgid "Show privately shared files in user shares" #~ msgstr "Visa privat delade filer i användardelar" #, fuzzy #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Andra klienter kan erbjuda ett alternativ för att skicka privat delade " #~ "filer när du bläddrar i deras aktier. Mappar som innehåller sådana filer " #~ "har prefixet \"[PRIVATE FOLDER]\" och kan inte laddas ner om inte " #~ "uppladdaren ger uttryckligt tillstånd." #, fuzzy #~ msgid "Chat Censor & Replace" #~ msgstr "Censurera och ersätt" #, fuzzy #~ msgid "Show _Debug Log Controls" #~ msgstr "Visa _Debug Log Controls" #, fuzzy #~ msgid "Debug Logging" #~ msgstr "Loggning av felsökning" #, fuzzy #~ msgid "Virtual Name" #~ msgstr "Virtuellt namn" #, fuzzy #~ msgid "Edit Virtual Name" #~ msgstr "Redigera virtuellt namn" #, fuzzy #~ msgid "Copy Folder URL" #~ msgstr "Kopiera mappens URL" #, fuzzy #~ msgid "Download _To…" #~ msgstr "Nedladdningar" #, fuzzy #~ msgid "Download" #~ msgstr "Ladda ner" #, fuzzy #~ msgid "Upload" #~ msgstr "Ladda upp" #, fuzzy #~ msgid "Upload Folder's Contents" #~ msgstr "Ladda upp mappens innehåll" #, fuzzy #~ msgid "Rename" #~ msgstr "Byt namn" #, fuzzy #~ msgid "File Lists" #~ msgstr "Listor över filer" #, fuzzy #~ msgid "Copy File Path" #~ msgstr "Kopiera filens sökväg" #, fuzzy #~ msgid "R_emove Wish" #~ msgstr "Ta bort ett alias" #, fuzzy, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Det verkar som om '%s' inte är en katalog och inte laddar plugins." #, fuzzy #~ msgid "Rescanning buddy shares…" #~ msgstr "Indexering påbörjad" #, fuzzy #~ msgid "Finished rescanning buddy shares" #~ msgstr "Slutförd omskanning av kompisandelar" #, fuzzy, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Din kompis, %s, försöker ladda upp filer till dig." #, fuzzy, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s får inte skicka filer till dig, men försöker ändå skicka dem. Varning " #~ "skickad." #, fuzzy #~ msgid "Client Version" #~ msgstr "Klientversion" #, fuzzy, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "Hur många dagars privilegier ska användaren %s få?" #, fuzzy #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Buddies har högre prioritet i kön, på samma sätt som globalt " #~ "privilegierade användare." #, fuzzy #~ msgid "Privileged" #~ msgstr "Privilegierad" #~ msgid "_Privileged" #~ msgstr "_Privilegierad" #~ msgid "Comments" #~ msgstr "Kommentarer" #, fuzzy #~ msgid "Edit _Comments…" #~ msgstr "Kommentarer" #, fuzzy #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "Skapar undermappar baserat på användaren du laddar ner från och lagrar " #~ "den nedladdade filen/mappen där." #, fuzzy #~ msgid "Login Details" #~ msgstr "Uppgifter om inloggning" #, fuzzy #~ msgid "Advanced" #~ msgstr "Avancerat" #, fuzzy #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Intervall för förnyelse av portmappning i timmar:" #, fuzzy #~ msgid "Enable buddy-only shares" #~ msgstr "Aktivera delningar som endast är för kompisar" #, fuzzy #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Filerna kommer att laddas upp i den ordning de stod i kö." #, fuzzy #~ msgid "Rescanning normal shares…" #~ msgstr "Indexera om delade filer" #, fuzzy #~ msgid "Finished rescanning public shares" #~ msgstr "Slutförd omskanning av offentliga aktier" #~ msgid "Scanning Buddy Shares" #~ msgstr "Indexering påbörjad" #, fuzzy #~ msgid "_Rescan Public Shares" #~ msgstr "_Rescan Offentliga aktier" #, fuzzy #~ msgid "Rescan B_uddy Shares" #~ msgstr "Omskanna B_uddy-aktier" #, fuzzy #~ msgid "Rescan Public Shares" #~ msgstr "Rescan Offentliga aktier" #, fuzzy #~ msgid "Rescan Buddy Shares" #~ msgstr "Återskanna Buddy-andelar" #, fuzzy #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Aktiverar kompisdelningar som endast användare på din kompislista har " #~ "tillgång till." #, fuzzy #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Markera varje delad mapp som en mapp för kompisar" #, fuzzy #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Överordnar alternativet per aktie, vilket är användbart om du tillfälligt " #~ "behöver förhindra allmän åtkomst till aktier." #, fuzzy #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Endast användare som är markerade som betrodda på din kompislista kan få " #~ "tillgång till dina kompisaktier." #, fuzzy #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Med Nicotine+ kan du dela mappar direkt från din dator. Allt innehåll i " #~ "dessa mappar (med undantag för dotfiles) kan laddas ner av andra " #~ "användare i Soulseek-nätverket. Offentliga delningar är tillgängliga för " #~ "alla användare, medan användare i din kompislista har tillgång till " #~ "delningar som endast är tillgängliga för kompisar utöver de offentliga " #~ "delningarna." #, fuzzy #~ msgid "Filtered out excluded search result " #~ msgstr "Filtrerade bort uteslutna sökresultat " #, fuzzy #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Filtrerade bort inexakta eller felaktiga sökresultat " #, fuzzy, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "" #~ "Den lagrade inställningen '%(key)s' finns inte längre i insticksmodulen " #~ "'%(name)s'." #, fuzzy, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "Plugin %(module)s returnerade något konstigt, \"%(value)s\", ignorerade" #, fuzzy, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "Inkonsekvent cache för '%(vdir)s', återuppbygger '%(dir)s'." #, fuzzy, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Släpper saknad mapp %(dir)s" #, fuzzy, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "Alla tickers / väggmeddelanden för %(room)s:" #~ msgid "Set your personal ticker" #~ msgstr "Ställ in din egna ticker" #, fuzzy #~ msgid "Show all the tickers" #~ msgstr "Visa alla tickers" #~ msgid "Add user 'user' to your user list" #~ msgstr "Lägg användaren 'användare' till din användarlista" #~ msgid "Request user info for user 'user'" #~ msgstr "Begär användarinfo från användaren 'användare'" #, fuzzy #~ msgid "Add user to your user list" #~ msgstr "Lägg användaren 'användare' till din användarlista" #, fuzzy #~ msgid "Remove user from your user list" #~ msgstr "Ta bort användaren 'användare' från din ban-lista" #, python-format #~ msgid "Can not log in, reason: %s" #~ msgstr "Kunde inte logga in, anledning: %s" #~ msgid "" #~ "Someone else is logging in with the same nickname, server is going to " #~ "disconnect us" #~ msgstr "" #~ "Någon annan loggar in med samma användarnamn, servern stänger din " #~ "anslutning" #~ msgid "Shared files database seems to be corrupted, rescan your shares" #~ msgstr "" #~ "Databasen för delade filer verkar vara skadad, indexera om dina delade " #~ "filer" #~ msgid "Immediate Download" #~ msgstr "Direkt nedladdning" #~ msgid "Server" #~ msgstr "Server" #~ msgid "Geo Block" #~ msgstr "Geo-block" #~ msgid "URL Catching" #~ msgstr "URL-catching" #~ msgid "Abor_t" #~ msgstr "Avbry_t" #, python-format #~ msgid "Directories: %s" #~ msgstr "Katalog: %s" #~ msgid "Directories: unknown" #~ msgstr "Katalog: okänt" #~ msgid "_Private Chat" #~ msgstr "_Privat chatt" #~ msgid "Buddy _List" #~ msgstr "Kompisar" #~ msgid "_Interests" #~ msgstr "_Intressen" #~ msgid "Add..." #~ msgstr "Lägg till..." #~ msgid "Away:" #~ msgstr "Borta:" #~ msgid "Offline:" #~ msgstr "Offline:" #~ msgid "Online:" #~ msgstr "Online:" #~ msgid "Enable geographical blocker" #~ msgstr "Aktivera geografisk blockerare" #~ msgid "lines" #~ msgstr "rader" #~ msgid "Send out a max of" #~ msgstr "Returnera maximalt" #~ msgid "Enable URL catching" #~ msgstr "Aktivera URL-catching" nicotine-plus-3.3.4/po/tr.po000066400000000000000000007041261461625273200157370ustar00rootroot00000000000000# Copyright (C) 2021-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek İstemcisi" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Soulseek eşler arası ağı için grafiksel istemci" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "" "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;paylaşım," "sohbet;mesajlaşma;eşler-arası;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 msgid "Browse the Soulseek network" msgstr "Soulseek ağına göz atın" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+, Soulseek eşler arası ağı için grafiksel bir istemcidir." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+, resmi Soulseek istemcisine hafif, kullanımı kolay, özgür ve açık " "kaynaklı (FOSS) bir alternatif olmayı ve aynı zamanda kapsamlı bir dizi " "özellik sunmayı amaçlamaktadır." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Dosyaları Ara" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "İndirilenler" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Paylaşımlara Göz At" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Özel Sohbet" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+ Ekibi" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Web sitesi: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "bu yardım mesajını göster ve çık" #: pynicotine/__init__.py:59 msgid "file" msgstr "dosya" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "öntanımlı olmayan yapılandırma dosyası kullan" #: pynicotine/__init__.py:63 msgid "dir" msgstr "dizin" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "kullanıcı verileri ve eklentiler için diğer dizin" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "programı pencereyi göstermeden başlat" #: pynicotine/__init__.py:71 msgid "ip" msgstr "IP" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "soketleri verilen IP'ye bağla (VPN için kullanışlıdır)" #: pynicotine/__init__.py:75 msgid "port" msgstr "bağlantı noktası" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "verilen bağlantı noktasında dinle" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "paylaşılan dosyaları yeniden tara" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "programı başsız modda başlat (grafiksel kullanıcı arayüzü olmadan)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "sürümü göster ve çık" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Desteklenmeyen bir Python (%(old_version)s) sürümü kullanıyorsunuz.\n" "Python %(min_version)s veya daha yenisini kurmalısınız." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Paylaşımlar taranamadı. Lütfen diğer Nicotine+ örneklerini kapatın ve tekrar " "deneyin." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s kullanıcısı uzakta" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s kullanıcısı çevrim içi" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s kullanıcısı çevrim dışı" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Arkadaş Durumu" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Özel bir odaya eklendiniz: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "'%(room)s' odasındaki '%(user)s' kullanıcısından sohbet mesajı: %(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "'%(path)s' dizini oluşturulamıyor, hata bildirildi: %(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Yapılandırma yedeklenirken hata oluştu: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Yapılandırma yedeklendi: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "%(program)s %(version)s yükleniyor" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Çıkılıyor: %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "sonlandırılıyor" #: pynicotine/core.py:237 msgid "application closing" msgstr "uygulama kapatılıyor" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "%(program)s %(version)s'tan çık!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Bağlanmadan önce bir kullanıcı adı ve parola belirtmeniz gerekir…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Hata: İndirme filtresi başarısız oldu! Filtrelerinizi doğrulayın. Neden: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Hata: %(num)d indirme filtresi başarısız oldu! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s, %(user)s kullanıcısından indirildi" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Dosya İndirildi" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Çalıştırıldı: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "'%(command)s' çalıştırılamadı: %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s, %(user)s kullanıcısından indirildi" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Klasör İndirildi" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Klasörde çalıştırıldı: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "'%(tempfile)s', '%(file)s' konumuna taşınamadı: %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "İndirme Klasörü Hatası" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "İndirme tamamlandı: %(user)s kullanıcısı, %(file)s dosyası" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "İndirme iptal edildi: %(user)s kullanıcısı, %(file)s dosyası" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "İndirme G/Ç hatası: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "Dosya üzerinde özel kilit alınamıyor - G/Ç hatası: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Dosya %(folder_path)s içine kaydedilemiyor: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "İndirme başladı: %(user)s kullanıcısı, %(file)s dosyası" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "%s bulunamıyor, lütfen kurun." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Kullanılabilir grafiksel ortam yok, başsız (GUI olmayan) modu kullanılıyor" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Bağlan" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "Bağlantıyı _Kes" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek _Ayrıcalıkları" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Tercihler" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Çıkış" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "_Herkese Açık Paylaşımlara Göz At" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "_Arkadaş Paylaşımlarına Göz At" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "_Güvenilir Paylaşımlara Göz At" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "Paylaşımları Yeniden _Tara" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "_Paylaşımları Yapılandır" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Klavye Kısayolları" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "K_urulum Yardımcısı" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "Aktarım İ_statistikleri" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "_Hata Bildir" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Çe_virileri İyileştir" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Nicotine+ Hakkında" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Dosya" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Paylaşımlar" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Yardım" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "Paylaşımlara _Göz At" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Bildirim gösterilemiyor: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Hala dosya yüklüyorsunuz. Gerçekten çıkmak istiyor musunuz?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "Yüklemelerin bitmesini bekle" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Gerçekten çıkmak istiyor musunuz?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Hayır" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Arka Planda Çalıştır" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Nicotine+'tan çık" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Paylaşımlar Kullanılabilir Değil" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Harici disklerin başlandığını ve klasör izinlerinin doğru olduğunu " "doğrulayın." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_İptal" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Yeniden Dene" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "Yeniden Taramayı _Zorla" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Geçersiz Parola" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "%s kullanıcısı zaten var ve girdiğiniz parola geçersiz. İlk kez oturum " "açıyorsanız lütfen başka bir kullanıcı adı seçin." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "_Oturum Açma Bilgilerini Değiştir" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "İndiren Kullanıcılara Mesaj Gönder" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "Sizden indirme yapan tüm kullanıcılara özel mesaj gönderin:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "Mesaj _Gönder" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Mesaj Arkadaşları" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "Tüm çevrim içi arkadaşlara özel mesaj gönderin:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Kaydedilen Paylaşımlar Listesi Dosyası Seç" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Kritik Hata" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ kritik bir hatayla karşılaştı ve çıkması gerekiyor. Lütfen " "aşağıdaki mesajı kopyalayın ve hata bildirimine ekleyin:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "Nicotine+'tan _çık" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Kopyala ve Hatayı Bildir" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Durum" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Ülke" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Kullanıcı" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Hız" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Dosyalar" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Güvenilir" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Bildir" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Öncelikli" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Son Görüldü" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Not" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Kullanıcı _Notu Ekle…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Kaldır" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Hiç görülmedi" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Kullanıcı Notu Ekle" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "%s kullanıcısı hakkında bir not ekleyin:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_Ekle" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Yeni Oda Oluşturulsun mu?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "\"%s\" adlı yeni bir oda oluşturmak istediğinizden emin misiniz?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Odayı özel yap" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "Kullanıcının Dosyalarını _Ara" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Bul…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Kopyala" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Tümünü Kopyala" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Etkinlik Görünümünü Temizle" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "Odadan _Ayrıl" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Bağlantıyı Kopyala" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "Oda Günlüğünü Görüntüle" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "Oda Günlüğünü Sil…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Mesaj Görünümünü Temizle" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s odaya katıldı" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s, %(room)s odasında sizden bahsetti" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(room)s odasında %(user)s tarafından bahsedildi" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "%(room)s odasında %(user)s tarafından mesaj" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s odadan ayrıldı" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s uzaklaştı" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s geri döndü" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Kayıtlı Mesajlar Silinsin mi?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "" "Bu oda için kayıtlı tüm mesajları kalıcı olarak silmek istediğinizden emin " "misiniz?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "Hakkında" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Web sitesi" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "En son sürüm denetlenirken hata oluştu: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Yeni sürüm var: %s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "Güncel" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "En son sürüm denetleniyor…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Kurulum Yardımcısı" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Sanal Klasör" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Klasör" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Bitir" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Sonraki" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Paylaşılan Klasör Ekle" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Paylaşılan Klasörü Düzenle" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "'%(dir)s' için yeni sanal ad girin:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Düzenle" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Dosya Özellikleri" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Dosya Özellikleri (%(num)i / %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Dosya Özellikleri (%(num)i / %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Uygula" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Ekle…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Düzenle…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Ayarları" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Öge Ekle" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Ögeyi Düzenle" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Bilinmeyen" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Bağlantı Noktası Durumunu Denetle" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, bağlantı noktası %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Parola Değişikliği Reddedildi" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Soulseek hesabınız için yeni bir parola girin:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Şu anda Soulseek ağından çıkış yaptınız. Mevcut bir Soulseek hesabının " "parolasını değiştirmeye çalışıyorsanız, söz konusu hesapta oturum açmanız " "gerekir." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Oturum açarken kullanılacak parolayı girin:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Parola Değiştir" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Değiştir" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Hiç kimse" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Herkes" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Arkadaşlar" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "Güvenilir Arkadaşlar" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Hiçbir Şey Yapma" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Dosya Aç" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Dosya Yöneticisinde Aç" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Arama" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Duraklat" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Devam Et" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Klasöre Göz At" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Söz dizimi: Büyük/küçük harfe duyarlı değildir. Etkinleştirilirse " "Python düzenli ifadeleri kullanılabilir, aksi takdirde yalnızca joker " "karakter * eşleşmeleri desteklenir." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Filtre" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "Düzenli ifade" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "İndirme Filtresi Ekle" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Yeni bir indirme filtresi girin:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "Düzenli ifadeleri etkinleştir" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "İndirme Filtresini Düzenle" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Aşağıdaki indirme filtresini değiştirin:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Başarısız! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Filtreler Başarılı" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "Herkese Açık" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "Erişilebilir" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "İptal" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Yeniden Dene" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Herkes Sırayla" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "İlk Giren İlk Çıkar" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Kullanıcı Adı" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP Adresi" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Kullanıcıyı Yok Say" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Yok saymak istediğiniz kullanıcının adını girin:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "IP Adresini Yok Say" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Yok saymak istediğiniz bir IP adresi girin:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* bir joker karakterdir" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Kullanıcıyı Yasakla" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Yasaklamak istediğiniz kullanıcının adını girin:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "IP Adresini Yasakla" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Engellemek istediğiniz bir IP adresi girin:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "Biçim kodları" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Kalıp" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Değişim" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Sansür Kalıbı" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Sansürlemek istediğiniz bir kalıp girin. Sözcüklerin içindeki dizgeleri " "eşleştirmek istemiyorsanız, kalıbın etrafına boşluk ekleyin (satırların " "başında ve sonunda başarısız olabilir)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "Sansürlenen Kalıbı Düzenle" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "Değişim Ekle" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "Bir metin kalıbı ve ne ile değiştirileceğini girin:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "Değişimi Düzenle" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "Sistem öntanımlı değeri" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Onay iletişim kutusunu göster" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Arka planda çalıştır" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "kalın" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "italik" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "altı çizili" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "normal" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "Arkadaşlar sekmesini ayır" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "Sohbet Odaları sekmesinde kenar çubuğu" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "Her zaman görünür kenar çubuğu" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Üst" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Alt" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Sol" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Sağ" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "Çevrim içi" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Uzakta" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Çevrim dışı" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "Sekme Değiştirildi" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "Sekme Vurgula" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Pencere" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "Çevrim içi (Tepsi)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Uzakta (Tepsi)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "Çevrim dışı (Tepsi)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Mesaj (Tepsi)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Protokol" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Komut" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "URL İşleyicisi Ekle" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "URL işleyicisi için protokolü ve komutu girin:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "Komutu Düzenle" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "%s protokolü için yeni bir komut girin:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Kullanıcı adı;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Müzik çalar (örn. amarok, audacious, exaile); otomatik algılamak için boş " "bırakın:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "Kullanıcı adı: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Komut:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Başlık" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Şimdi Oynatılıyor (genellikle \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Sanatçı" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "Süre" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Bit Hızı" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Yorum" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Albüm" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Parça Numarası" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Yıl" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Dosya Adı (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Program" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Etkin" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Eklenti" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Eklenti Seçilmedi" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Ağ" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Kullanıcı Arayüzü" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Paylaşımlar" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Yüklenenler" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Aramalar" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "Kullanıcı Profili" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Sohbetler" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Şimdi Oynatılıyor" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Günlük kaydı" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Yasaklanan Kullanıcılar" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Yok Sayılan Kullanıcılar" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Eklentiler" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL İşleyicileri" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Tercihler" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Yapılandırma Yedeklemesi için bir Dosya Adı Seç" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Aktarım İstatistikleri" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "%(date)s tarihinden beri toplam" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Aktarım İstatistikleri Sıfırlansın mı?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Aktarım istatistiklerini gerçekten sıfırlamak istiyor musunuz?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Dilek Listesi" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Dilek" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "Ögeyi _Ara" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Dileği Düzenle" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "'%s' dileği için yeni bir değer girin:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Dilek Listesi Temizlensin mi?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Dilek listenizi gerçekten temizlemek istiyor musunuz?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Yol" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Devam et" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "D_uraklat" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Tamamlandı / Filtrelendi" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Tamamlandı" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Duraklatıldı" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Filtrelendi" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "Silindi" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "Kuyruğa alındı…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Her şey…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Kuyruğa Alınan İndirmeleri Temizle" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Kuyruğa alınan tüm indirmeleri temizlemek istediğinizden emin misiniz?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Tüm İndirmeleri Temizle" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Tüm indirmeleri temizlemek istediğinizden emin misiniz?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "%(num)i dosya indirilsin mi?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "%(user)s kullanıcısının %(folder)s klasöründen %(num)i dosyayı indirmek " "istediğinizden emin misiniz?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Klasörü İndir" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Seviyor" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Sevmiyor" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Değerlendirme" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Öge" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "Öge için _Tavsiyeler" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Bunu _Seviyorum" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Bunu Sev_miyorum" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Tavsiyeler" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Benzer Kullanıcılar" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Tavsiyeler (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Benzer Kullanıcılar (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "%(user)s Kullanıcısından Özel Mesaj" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "İstek Listesi Sonuçları Bulundu" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "Kullanıcı Profilleri" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Sohbet Odaları" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "İlgi Alanları" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Sohbet" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Hata ayıklama] Bağlantılar" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Hata ayıklama] Mesajlar" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Hata ayıklama] Aktarımlar" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Hata ayıklama] Çeşitli" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Bul…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Kopyala" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "_Tümünü Kopyala" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "_Hata Ayıklama Günlüklerini Görüntüle" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "_Aktarım Günlüklerini Görüntüle" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "Gü_nlük Kategorileri" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Günlük Görünümünü Temizle" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "İndirilenler: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Yüklenenler: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "Paylaşımlar Hazırlanıyor" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Paylaşımlar Taranıyor" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "Çıkılıyor..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Son Mesaj" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Oda" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Kullanıcılar" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Odaya Katıl" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Odadan Ayrıl" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Özel Odanın Sahipliğini Bırak" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Oda Üyeliğini İptal Et" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Tüm Sekmeleri Kapat…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "Sekmeyi _Kapat" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Sohbet Günlüğünü Görüntüle" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Sohbet Günlüğünü Sil…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "Kullanıcı Eylemleri" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Bu kullanıcı için kayıtlı tüm mesajları kalıcı olarak silmek istediğinizden " "emin misiniz?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "* Siz çevrim dışıyken gönderilen mesajlar" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Genel" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Arkadaşlar" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Odalar" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Kullanıcı" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "Kuyrukta" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Dosya Türü" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Dosya Adı" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Boyut" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "Kalite" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "_Dosya Yolunu Kopyala" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "_URL'yi Kopyala" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Klasör U_RL'sini Kopyala" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "Dosya(lar)ı _İndir" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Dosya(lar)ı _Şuraya İndir…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "_Klasör(ler)i İndir" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "K_lasör(ler)ı Şuraya İndir…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "Kullanıcı _Profilini Görüntüle" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "Klasöre _Göz At" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Do_sya Özellikleri" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Arama Terimini Kopyala" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Tüm Sonuçları Temizle" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "Filtreleri Temizle" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "Filtreleri Geri Yükle" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[ÖZEL] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Sonuç Filtreleri [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_Sonuç Filtreleri" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d etkin filtre" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "_Dilek Ekle" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "_Dileği Kaldır" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Kullanıcının Sonuçlarını Seç" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Toplam: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Sonuçlar" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Dosya(lar) için Hedef Klasörü Seç" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Hedef Klasörü Seç" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "Kuyruğa alındı" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "Kuyruğa alındı (öncelikli)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "Kuyruğa alındı (ayrıcalıklı)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Durum alınıyor" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Aktarılıyor" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "Bağlantı kapatıldı" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Bağlantı zaman aşımı" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Kullanıcı oturumu kapattı" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "İptal edildi" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "İndirme klasörü hatası" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Yerel dosya hatası" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Yasaklandı" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Dosya paylaşılmadı" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Kapatma bekleniyor" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "Dosya okuma hatası" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "Kuyruk" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Yüzde" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Geçen Süre" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Kalan Süre" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "Dosya _Aç" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Dosya _Yöneticisinde Aç" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Ara" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Tümünü Temizle" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Kullanıcının Aktarımlarını Seç" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_İptal Et" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "Tamamlandı / İptal Edildi / Başarısız Oldu" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "Tamamlandı / İptal Edildi" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Başarısız oldu" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "Kullanıcı Oturumu Kapattı" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Kuyruktaki Yüklemeleri Temizle" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Kuyruğa alınan tüm yüklemeleri gerçekten silmek istiyor musunuz?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Tüm Yüklemeleri Temizle" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Tüm yüklemeleri gerçekten silmek istiyor musunuz?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Paylaşım Listesini Diske Kaydet" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "Klasörü ve Alt Klasörleri Yükle…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Kla_sör Yolunu Kopyala" #: pynicotine/gtkgui/userbrowse.py:300 msgid "_Download Folder & Subfolders" msgstr "Klasörü ve Alt Klasörleri İn_dir" #: pynicotine/gtkgui/userbrowse.py:301 msgid "Download Folder & Subfolders _To…" msgstr "Klasörü ve Al_t Klasörleri Şuraya İndir…" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "Dosya Adı" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Dosya(lar)ı Yükle…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Klasörü Yükle…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "K_lasör(ler)ı Şuraya İndir…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Kullanıcının paylaşılan dosyalar listesi boş. Ya kullanıcı hiçbir şey " "paylaşmıyor ya da dosyaları özel olarak paylaşıyor." #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Kullanıcıdan paylaşılan dosyalar istenemiyor. Ya kullanıcı çevrim dışı, " "ikinizin de dinleme bağlantı noktası kapalı ya da geçici bir bağlantı sorunu " "var." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Birden Çok Klasörü İndirmek İçin Hedef Seç" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Klasörü (Alt Klasörlerle) Kullanıcıya Yükle" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Klasörü Kullanıcıya Yükle" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Yüklemek istediğiniz kullanıcının adını girin:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_Yükle" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "Dosyalar için Hedef Klasörü Seç" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Dosya(lar)ı Kullanıcıya Yükle" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "Resmi Kopyala" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Resmi Kaydet" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "%(user)s kullanıcısı için resim yüklenemedi: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Kullanıcıdan bilgi istenemiyor. Ya ikinizin de dinleme bağlantı noktası " "kapalı, kullanıcı çevrim dışı ya da geçici bir bağlantı sorunu var." #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "Arkadaşı _Kaldır" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "Arkadaş _Ekle" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "Kullanıcının Yasağını Kaldır" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "Kullanıcıyı Yok Saymayı Kaldır" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Evet" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Hayır" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Lütfen gün sayısını girin." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "%(user)s kullanıcısına Soulseek ayrıcalıklarınızın şu kadar gününü hediye " "edin (%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "%(days)s gün kaldı" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Ayrıcalık Hediye Et" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "Ayrıcalık _Ver" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Kapat" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Evet" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_Tamam" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Dosya Seç" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Klasör Seç" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_Seç" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Resim Seç" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "Tüm resimler" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Farklı kaydet…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Yok)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "Sekmeyi Kapat" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Tüm Sekmeler Kapatılsın mı?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Tüm sekmeleri gerçekten kapatmak istiyor musunuz?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i Okunmayan Sekme" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "Tüm Sekmeler" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "Kapatılan Sekmeyi _Yeniden Aç" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s Dosya Seçildi" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "Dosyalara _Göz At" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "Arkadaş _Ekle" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "IP _Adresini Göster" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Özel Odalar" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "%s Özel Odasından Kaldır" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "%s Özel Odasına Ekle" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "%s İşleticisinden Kaldır" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "%s İşleticisi Olarak Ekle" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- eski mesajlar yukarıda ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "Çalıştırılabilir Dosya" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "Ses" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "Resim" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "Arşiv" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Çeşitli" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "Video" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "Belge" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "Metin" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "%(path)s özel simgesi yüklenirken hata oluştu: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Nicotine+'ı Gizle" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Nicotine+'ı Göster" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Sütun #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Gruplandırılmadı" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Klasöre Göre Gruplandır" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Kullanıcıya Göre Gruplandır" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Gerçekten çıkmak istiyor musunuz? %s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "%s kullanıcısı zaten var ve girdiğiniz parola geçersiz." #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "Başka bir kullanıcı adı veya parola ile oturum açmak için %s yazın." #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "Parola: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Yeni bir Soulseek hesabı oluşturmak için istediğiniz kullanıcı adını ve " "parolayı girin. Zaten bir hesabınız varsa, oturum açma bilgilerinizi girin." #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "Şu paylaşımlar kullanılabilir değil:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "Yeniden tarama denensin mi? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "\"%(filename)s\" günlük dosyasına yazılamadı: %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "%(path)s günlük dosyasına erişilemiyor: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Andorra" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Birleşik Arap Emirlikleri" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Afganistan" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Antigua ve Barbuda" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Anguilla" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Arnavutluk" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Ermenistan" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Angola" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Antarktika" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Arjantin" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Amerikan Samoası" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Avusturya" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Avustralya" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Aruba" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Åland Adaları" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Azerbaycan" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Bosna-Hersek" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Barbados" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Bangladeş" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Belçika" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Burkina Faso" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Bulgaristan" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Bahreyn" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Burundi" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Benin" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Saint Barthelemy" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Bermuda" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Brunei Sultanlığı" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Bolivya" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Bonaire, Sint Eustatius ve Saba" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Brezilya" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Bahamalar" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Bhutan" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Bouvet Adası" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Botsvana" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Belarus" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Belize" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Kanada" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Adaları" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Kongo Demokratik Cumhuriyeti" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Orta Afrika Cumhuriyeti" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Kongo" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "İsviçre" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Fildişi Sahili" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Cook Adaları" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Şili" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Kamerun" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Çin" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Kolombiya" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Kosta Rika" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Küba" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Yeşil Burun Adaları" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Curaçao" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Christmas Adası" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Kıbrıs" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "Çekya" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Almanya" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Cibuti" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Danimarka" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Dominika" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Dominik Cumhuriyeti" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Cezayir" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Ekvador" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Estonya" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Mısır" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Batı Sahra" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Eritre" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "İspanya" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Etiyopya" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Avrupa" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Finlandiya" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Fiji" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Falkland (Malvina) Adaları" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Mikronezya" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Faroe Adaları" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Fransa" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Gabon" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Büyük Britanya" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Grenada" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Gürcistan" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Fransız Guyanası" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Guernsey" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Gana" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Cebelitarık" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Grönland" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Gambiya" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Gine" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Guadeloupe" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Ekvator Ginesi" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Yunanistan" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Güney Georgia ve Güney Sandwich Adaları" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Guatemala" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Guam" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Gine-Bissau" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Guyana" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Hong Kong" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Heard ve McDonald Adaları" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Honduras" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Hırvatistan" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Haiti" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Macaristan" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Endonezya" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "İrlanda" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "İsrail" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Man Adası" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Hindistan" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Britanya Hint Okyanusu Toprakları" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Irak" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "İran" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "İzlanda" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "İtalya" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Jersey" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Jamaika" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Ürdün" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Japonya" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Kenya" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Kırgızistan" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Kamboçya" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Kiribati" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Komorlar" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Saint Kitts ve Nevis" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Kuzey Kore" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Güney Kore" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Kuveyt" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Cayman Adaları" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Kazakistan" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Laos" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Lübnan" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Saint Lucia" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Lihtenştayn" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Sri Lanka" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Liberya" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Lesotho" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Litvanya" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Lüksemburg" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Letonya" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Libya" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Fas" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Monako" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Moldova" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Karadağ" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Saint Martin" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Madagaskar" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Marshall Adaları" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Kuzey Makedonya" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Mali" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "Myanmar" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Moğolistan" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Makao" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Kuzey Mariana Adaları" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Martinik" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Moritanya" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Montserrat" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Malta" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Mauritius" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Maldivler" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Malavi" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Meksika" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Malezya" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Mozambik" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Namibya" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Yeni Kaledonya" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Nijer" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Norfolk Adası" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Nijerya" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Nikaragua" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Hollanda" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Norveç" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Nepal" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Nauru" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Niue" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Yeni Zelanda" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Umman" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Panama" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Peru" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Fransız Polinezyası" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Papua Yeni Gine" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Filipinler" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Pakistan" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Polonya" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Saint Pierre ve Miquelon" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Pitcairn" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Porto Riko" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Filistin Devleti" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Portekiz" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Palau" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Paraguay" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Katar" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Réunion" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Romanya" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Sırbistan" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Rusya" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Ruanda" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Suudi Arabistan" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Solomon Adaları" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Seyşeller" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Sudan" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "İsveç" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Singapur" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Saint Helena" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Slovenya" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Svalbard ve Jan Mayen Adaları" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Slovak Cumhuriyeti" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Sierra Leone" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "San Marino" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Senegal" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Somali" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Surinam" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Güney Sudan" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Sao Tome ve Principe" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "El Salvador" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Sint Maarten" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Suriye" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Esvatini" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Turks ve Caicos Adaları" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Çad" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Fransız Güney Toprakları" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Togo" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Tayland" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Tacikistan" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Tokelau" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Doğu Timor" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Türkmenistan" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Tunus" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Tonga" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "Türkiye" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Trinidad ve Tobago" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Tuvalu" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Tayvan" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Tanzanya" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Ukrayna" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Uganda" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Amerika Birleşik Devletleri Küçük Dış Adaları" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Amerika Birleşik Devletleri" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Uruguay" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Özbekistan" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatikan Şehir Devleti)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Saint Vincent ve Grenadinler" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Venezuela" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Britanya Virgin Adaları" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Amerika Birleşik Devletleri Virgin Adaları" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "Vietnam" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Vanuatu" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Wallis ve Futuna" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Samoa" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Yemen" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Mayotte" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Güney Afrika" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Zambiya" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Zimbabve" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Mesaj için metinden konuşmaya başarısız oldu: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "" "Last.fm: Lütfen hem Last.fm kullanıcı adınızı hem de API anahtarınızı " "sağlayın" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "Şimdi Oynatılıyor Hatası" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: Audioscrobbler'a bağlanılamadı: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm: Audioscrobbler'dan son parça alınamadı: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Uygun bir MPRIS oynatıcı bulunamadı" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Birden fazla MPRIS oynatıcı bulundu: %(players)s. Kullanılan: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Otomatik algılanan MPRIS oynatıcı: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: %(player)s sorgulanırken bir şeyler ters gitti: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: Lütfen ListenBrainz kullanıcı adınızı sağlayın" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: ListenBrainz'e bağlanılamadı: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Şu anda hiçbir şey dinlemiyor gibisiniz" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "ListenBrainz: ListenBrainz'den şu anki parça alınamadı: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "Ağ Filtreleri" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "Kullanılabilir komutları listele" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "Sunucuya bağlan" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "Sunucuyla bağlantıyı kes" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "Uzakta durumunu değiştir" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "Eklentileri yönet" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "Sohbet penceresini temizle" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Üçüncü şahıs ağzından bir şey söyle" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "Şu anda oynatılan şarkıyı duyur" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "Sohbet odasına katıl" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "Sohbet odasından ayrıl" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "Belirtilen sohbet odasında mesaj yaz" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "Özel sohbeti aç" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "Özel sohbeti kapat" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "Kullanıcının istemci sürümünü iste" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "Kullanıcıya özel mesaj gönder" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "Arkadaş listesine kullanıcı ekle" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "Arkadaş listesinden arkadaşı kaldır" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "Kullanıcının dosyalarına göz at" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "Kullanıcı profili bilgilerini göster" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "IP adresini veya kullanıcı adını göster" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "Kullanıcıdan veya IP adresinden gelen bağlantıları engelle" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "Kullanıcı veya IP adresini yasaklama listelerinden kaldır" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "Kullanıcıdan veya IP adresinden gelen mesajları sustur" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "Kullanıcı veya IP adresini yok sayma listelerinden kaldır" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "Paylaşım ekle" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "Paylaşımı kaldır" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "Paylaşımları listele" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Paylaşımları yeniden tara" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "Genel dosya aramayı başlat" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "Katıldığınız odalarda dosya ara" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "Tüm arkadaşların dosyalarını ara" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "Bir kullanıcının paylaşılan dosyalarını ara" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "%(num)i kullanılabilir komut listeleniyor:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "\"%(query)s\" ile eşleşen %(num)i kullanılabilir komut listeleniyor:" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "Benzer komutları listelemek için %(command)s yazın" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "Kullanılabilir komutları listelemek için %(command)s yazın" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "%s odasına katılmadı" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "%s kullanıcısıyla mesajlaşılmıyor" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "%s kullanıcısının özel sohbeti kapatıldı" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "%s yasaklandı" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "%s yasağı kaldırıldı" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "%s yok sayıldı" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "%s yok sayılması kaldırıldı" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s paylaşım listelendi (%(num_total)s yapılandırıldı)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Erişilemeyen \"%s\" klasörü paylaşılamıyor" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "%(group_name)s paylaşımı \"%(virtual_name)s\" eklendi (yenidedn tarama " "gerekli)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "\"%s\" adında paylaşım yok" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "\"%s\" paylaşımı kaldırıldı (yeniden tarama gerekli)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Eklenti sistemi yükleniyor" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "%(name)s eklentisi yüklenemiyor. Eklenti klasörü adı geçersiz karakterler " "içeriyor: %(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "%(name)s eklentisinde çakışan %(interface)s komutu: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "%s eklentisi yüklendi" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "%(module)s eklentisi yüklenemiyor\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "%s eklentisi devre dışı bırakıldı" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "%(module)s eklentisi devre dışı bırakılamıyor\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "%(module)s eklentisi %(errortype)s hatasıyla başarısız oldu: %(error)s.\n" "Geri izleme: %(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "Açıklama yok" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "%s argümanı eksik" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "Geçersiz argüman, olası seçenekler: %s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Kullanım: %(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Bilinmeyen komut: %(command)s. Kullanılabilir komutları listelemek için " "%(help_command)s yazın." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "UPnP aygıtı bulunamadı" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "" "%(protocol)s: %(external_port)s dış bağlantı noktası iletilemedi: %(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s: %(external_port)s dış bağlantı noktası, %(ip_address)s yerel " "IP adresi %(local_port)s bağlantı noktasına başarıyla iletildi" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "'%(user)s' kullanıcısından özel mesaj: %(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "\"%s\" dilek listesi ögesi aranıyor" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Dilek listesi bekleme süresi %s saniyeye ayarlandı" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "" "%(user)s kullanıcısı \"%(query)s\" için arama yapıyor, %(num)i sonuç bulundu" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "Paylaşımlar yeniden oluşturuluyor…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Paylaşımlar yeniden taranıyor…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Yeniden tarama tamamlandı: %(num)s klasör bulundu" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Paylaşımlar yeniden taranırken ciddi bir hata oluştu. Bu sorun devam ederse, " "%(dir)s/*.db dosyalarını silin ve tekrar deneyin. Bu işe yaramazsa, lütfen " "şu yığın geri izlemesini içeren bir hata bildirimi gönderin: %(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "%(path)s dosyası taranırken hata oluştu: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "%(path)s klasörü taranırken hata oluştu: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "%(path)s dosyası için üst veriler taranırken hata oluştu: %(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Kullanılamayan paylaşımlar nedeniyle yeniden tarama iptal edildi: %s" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "%(user)s kullanıcısı paylaşılan dosyalar listenize göz atıyor" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "%(folder)s paylaşılan klasörü alınamadı: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Paylaşım veri tabanı okunamıyor. Lütfen paylaşımlarınızı yeniden tarayın. " "Hata: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "Belirtilen ağ arayüzü '%s' kullanılamıyor" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "%(port)s bağlantı noktasında dinlenemiyor. Başka bir uygulamanın " "kullanmadığından emin olun veya farklı bir bağlantı noktası seçin. Hata: " "%(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Dinlenen bağlantı noktası: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "%(host)s:%(port)s sunucusuna bağlanılamıyor: %(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "Sunucuya %i saniye içinde yeniden bağlanılıyor" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "Bağlanılıyor: %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "%(host)s:%(port)s sunucusuna bağlanıldı, oturum açılıyor…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "%(host)s:%(port)s sunucusuyla bağlantı kesildi" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Birisi başka bir yerden Soulseek hesabınızda oturum açtı" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Yükleme tamamlandı: %(user)s kullanıcısı, %(ip)s IP adresi, %(file)s dosyası" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Yükleme iptal edildi: %(user)s kullanıcısı, %(file)s dosyası" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Yükleme G/Ç hatası: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Yükleme başladı: %(user)s kullanıcısı, %(ip)s IP adresi, %(file)s dosyası" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "'%(folder)s' dizini oluşturulamıyor, hata bildirildi: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Paylaşımlar diskten yüklenemedi: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "'%(user)s' kullanıcısı için paylaşılan dosyaların listesi %(dir)s konumuna " "kaydedildi" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "Paylaşımlar kaydedilemiyor, '%(user)s', hata bildirildi: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Resim %s konumuna kaydedildi" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Resim %(filename)s konumuna kaydedilemiyor: %(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "%(user)s kullanıcısı profilinizi görüntülüyor" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Sunucuya bağlanılamıyor. Neden: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Bağlanamıyor" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Bu kullanıcı çevrim dışı olduğundan %s kullanıcısının IP adresi alınamıyor" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "" "%(user)s kullanıcısının IP adresi: %(ip)s, bağlantı noktası " "%(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseek Duyurusu" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i ayrıcalıklı kullanıcı" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "Soulseek ayrıcalığınız yok. Ayrıcalıklar etkinken, indirmeleriniz " "ayrıcalıklı olmayan kullanıcılarınkinden önce sıraya alınır." #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "%(days)i gün, %(hours)i saat, %(minutes)i dakika, %(seconds)i saniye " "Soulseek ayrıcalığı kaldı" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "Parolanız değiştirildi" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "Parola Değiştirildi" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "%(path)s dosya yolu açılamıyor: %(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "%(url)s URL'si açılamıyor: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "%(filename)s dosyası okunurken bir şeyler ters gitti: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "%s dosyasının yedeği yüklenmeye çalışılıyor" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "%(path)s dosyası yedeklenemiyor: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "%(path)s dosyası kaydedilemiyor: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Önceki dosya %(path)s geri yüklenemiyor: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Arkadaş ekle…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "Etkinlik günlüğünde ara…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "Sohbet günlüğünde ara…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "Mesaj gönder…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Metinden Konuşmayı Aç/Kapat" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "Sohbet Odası Komut Yardımı" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "Gün_lük" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "Oda Duvarı" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "_Oda duvarı" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "Oluşturan" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "Çeviren" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "Lisans" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Önceki" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Nicotine+'a Hoş Geldiniz" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Kurulum…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "İstediğiniz kullanıcı adı zaten alınmışsa, değiştirmeniz istenecektir." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Diğer Soulseek eşleriyle bağlantı kurmak için, yönlendiricinizdeki dinleyen " "bir bağlantı noktasının bilgisayarınıza yönlendirilmesi gerekir." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Dinleme bağlantı noktanız kapalıysa, yalnızca dinleme bağlantı noktaları " "açık olan kullanıcılara bağlanabilirsiniz." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "Gerekirse aşağıdan farklı bir dinleme bağlantı noktası seçin. Bu, daha sonra " "tercihlerde de yapılabilir." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Dosyaları Klasöre İndir" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Klasörleri Paylaş" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek kullanıcıları paylaşımlarınızdan indirebilecekler. Kendi " "dosyalarınızı paylaşarak ve diğer kullanıcılardan indirdiklerinizi yeniden " "paylaşarak Soulseek ağına katkıda bulunun." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Nicotine+ kullanmaya hazırsınız!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek güvenli iletişim için tasarlanmamış şifreli olmayan bir protokoldür." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Soulseek'e bağış yapmak size belirli bir süre için ayrıcalıklar verir. " "Ayrıcalıklarınız varsa, indirmeleriniz ayrıcalıklı olmayan kullanıcılardan " "önce kuyruğa alınacaktır." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "Önceki Dosya" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "Sonraki Dosya" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Ad" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Son Hız" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Dışa Aktar…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Klavye Kısayolları" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Genel" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "Bağlan" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Bağlantıyı Kes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Paylaşımları Yeniden Tara" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Günlük Bölmesini Göster" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "Çıkmayı Onayla" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Çıkış" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Menüler" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Ana Menüyü Aç" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Bağlam Menüsünü Aç" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Sekmeler" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Ana Sekmeyi Değiştir" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Önceki İkincil Sekmeye Git" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Sonraki İkincil Sekmeye Git" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "Kapatılan İkincil Sekmeyi Yeniden Aç" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "İkincil Sekmeyi Kapat" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Listeler" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Seçili Hücreyi Kopyala" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Seçili Satırı Kaldır" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Düzenleme" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Kes" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Yapıştır" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Emoji Ekle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Tümünü Seç" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Bul" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Sonraki Eşleşmeyi Bul" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Önceki Eşleşmeyi Bul" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Dosya Aktarımları" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Aktarımı Devam Ettir / Yeniden Dene" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Aktarımı Duraklat / İptal Et" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Şuraya İndir / Yükle" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Listeyi Diske Kaydet" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Yenile" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Tümünü Genişlet / Daralt" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Üst Klasöre Geri Dön" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Dosya Arama" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Sonuç Filtreleri" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Geçerli Oturum" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Tamamlanan İndirmeler" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "İndirmelerin Boyutu" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Tamamlanan Yüklemeler" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Yüklemelerin Boyutu" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Toplam" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Sıfırla…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Dilek listesi ögeleri, olağan dışı dosyaları keşfetmek için düzenli " "aralıklarla otomatik olarak aranır." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Dilek Ekle…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Tümünü Temizle…" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "Tüm tamamlanan ve filtrelenen indirmeleri temizle" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Tamamlananları Temizle" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "Belirli İndirmeleri Temizle" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Tümünü _Temizle…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Kişisel İlgi Alanları" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Sevdiğiniz bir şey ekleyin…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Kişisel Hoşnutsuzluklar" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Sevmediğiniz bir şey ekleyin…" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "Tavsiyeler Listesini Yenile" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "Ana Menü" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Oda…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Kullanıcı adı…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Arama terimi…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Arama kalıpları: bir sözcük ile = terim, bir sözcük olmadan = -terim, kısmi " "sözcük = *erim" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "Arama Kapsamı" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Dilek Listesi" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "Aramaları Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Soulseek ağındaki diğer kullanıcılar tarafından paylaşılan dosyaları aramak " "için bir arama terimi girin" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "Dosya Gruplama Modu" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "İndirmeleri Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Diğer kullanıcılardan indirdiğiniz dosyalar burada kuyruğa alınır ve " "istendiğinde duraklatılıp devam ettirilebilir" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "Yüklemeleri Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Kullanıcıların paylaşılan dosyalarınızı indirme girişimleri burada kuyruğa " "alınır ve yönetilir" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "Listeyi _Aç" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Daha önce diske kaydedilen paylaşılan dosyaların yerel bir listesini açar" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "Paylaşımları Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Paylaşılan dosyalarına göz atmak istediğiniz kullanıcının adını girin. " "Ayrıca listeyi diske kaydedebilir ve daha sonra inceleyebilirsiniz." #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "Kişisel _Profil" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "Hesabı Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Kullanıcı açıklamasını, bilgilerini ve kişisel resmini görüntülemek için bir " "kullanıcının adını girin" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "Sohbet _Geçmişi" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "Sohbetleri Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "" "Onlarla özel olarak bir yazılı konuşma başlatmak için bir kullanıcının adını " "girin" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "Tümüne _Mesaj Gönder" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "Yok Sayılan Kullanıcıları Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Belirli klasörleri onlarla paylaşmak ve çevrim içi olduklarında bildirim " "almak için kullanıcıları arkadaş olarak ekleyin" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "Katılın veya oda oluşturun…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Soulseek ağındaki diğer kullanıcılarla sohbet etmek için mevcut bir sohbet " "odasına katılın veya yeni bir oda oluşturun" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "Kullanıcı Profilini Yapılandır" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "Günlükte ara…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "Bağlantılar" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "İndirme (Hız / Etkin Kullanıcılar)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "Yükleme (Hız / Etkin Kullanıcılar)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "Sohbet geçmişinde ara…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "İndirme Hızı Sınırları" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "Sınırsız indirme hızı" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "İndirme hızı sınırı kullan (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "Alternatif indirme hızı sınırı kullan (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "Odalarda ara…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "Odaları Yenile" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "Herkese açık sohbet odası mesajlarının akışını _göster" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "Özel oda davetlerini _kabul et" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Diğer oda kullanıcılarının daha sonra okuyabileceği bir mesaj yazın. Son " "mesajlar en üstte gösterilir." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Duvar mesajı ayarla…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Arama Sonucu Filtreleri" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Arama sonucu filtreleri, hangi arama sonuçlarının görüntüleneceğini " "belirlemek için kullanılır." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Her arama sonucu listesinin, Sonuç Filtreleri düğmesi değiştirilerek " "gösterilebilen kendi filtresi vardır. Bir filtre, birden çok alandan oluşur " "ve bunların tümü, alanlarından herhangi birinde Enter tuşuna basıldığında " "uygulanır. Filtreleme, zaten alınmış olan sonuçlara ve henüz alınmayan " "sonuçlara hemen uygulanır." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Adından da anlaşılacağı gibi, bir arama sonucu filtresi orijinal aramanızı " "genişletemez, yalnızca daraltabilir. Arama terimlerinizi genişletmek veya " "değiştirmek için yeni bir arama yapın." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "Sonuç Filtresi Kullanımı" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Metni Dahil Et" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "" "Bu metni içeren dosyalar, klasörler ve kullanıcı adları gösterilecektir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "Büyük/küçük harfe duyarlı değildir, ancak sözcük sırası önemlidir: " "'Instrumental Remix' herhangi bir 'Remix Instrumental' göstermeyecektir" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Birkaç tam ifadeyi ayırmak için | (veya boru karakteri) kullanın. Örnek:\n" " Remix|Dub Mix|Instrumental" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Metni Hariç Tut" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Yukarıdaki gibi, ancak metin eşleşirse dosyalar, klasörler ve kullanıcı " "adları filtrelenir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Dosyaları dosya uzantılarına göre filtreler." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Birden fazla dosya uzantısı belirtilebilir, bu da sonuç listesinden daha " "fazlasını gösterecektir. Örnek:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Sonuçlarınızda istemediğiniz dosya uzantılarını bir ünlem işaretiyle " "belirterek filtreyi tersine çevirmek de mümkündür! Örnek:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Dosya Boyutu" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Dosyaları, dosya boyutlarına göre filtreler." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "Öntanımlı olarak, kullanılan birim bayttır (B) ve değere eşit veya daha " "büyük (>=) dosyalar eşleşecektir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Bayt, kibibayt, mebibayt veya gibibayt birimlerini belirtmek için b, k, m " "veya g (alternatif olarak kib, mib veya gib) ekleyin: \n" " 20 MiB (mebibayt)'tan daha büyük dosyaları göstermek için 20m girin." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Tam bir eşleşme belirtmek için bir değerin başına = ekleyin:\n" " =1024, yalnızca boyutu 1 KiB (kibibayt) olan dosyalarla eşleşir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Belirli bir boyuttaki dosyaları hariç tutmak için bir değerin başına ! " "ekleyin: \n" " !30.5m, boyutu 30.5 MiB (mebibayt) olan dosyaları hariç tutacaktır." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Verilen değerden daha küçük/büyük dosyaları bulmak için < veya > ekleyin. " "Bir aralık eklemek için her koşul arasında bir boşluk kullanın:\n" " >10.5m <1g, 10,5 MiB'den büyük ancak 1 GiB'den küçük dosyaları gösterir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Daha iyi bilinen kb, mb ve gb çeşitleri kilobayt, megabayt ve gigabayt " "birimleri için de kullanılabilir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Dosyaları bit hızlarına göre filtreler." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Değerler yalnızca sayısal basamak olarak girilmelidir. Birim her zaman Kb/" "s'dir (Kilobit/saniye)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Dosya boyutunda (yukarıda) olduğu gibi =, !, <, >, <= veya >= operatörleri " "kullanılabilir ve örneğin en fazla 1411 Kb/s bit hızıyla en az 256 Kb/s bit " "hızına sahip dosyaları göstermek için birden fazla koşul belirtilebilir:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "Dosyaları sürelerine göre filtreler." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "Öntanımlı olarak, bir operatör (=, !, < veya >) kullanılmadığı sürece, " "girilen süreye eşit veya daha uzun (>=) dosyalar eşleştirilecektir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Saniye cinsinden ham bir değer girin veya DD:SS ve SS:DD:SS zaman " "biçimlerini kullanın:\n" " =53 yaklaşık 53 saniye uzunluğundaki dosyaları gösterir.\n" " >5:30 5 buçuk dakikadan uzun dosyaları gösterir.\n" " <5:30:00 5 buçuk saatten kısa dosyaları gösterir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Birden fazla koşul belirtilebilir:\n" " >6:00 <12:00 6 ila 12 dakika uzunluğundaki dosyaları gösterir.\n" " !9:54 !8:43 !7:32 belirtilen dosyaları sonuçlardan gizler.\n" " =5:34 =4:23 =3:05 belirtilen sürelere sahip dosyaları dahil eder." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "ISO 3166-2 tarafından tanımlanan ülke kodlarına göre kullanıcıların coğrafi " "konumlarına göre dosyaları filtreler:\n" " US yalnızca Amerika Birleşik Devletleri'ndeki IP adreslerine sahip " "kullanıcılardan gelen sonuçları gösterecektir.\n" " !GB Büyük Britanya'daki kullanıcılardan gelen sonuçları gizleyecektir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "Birden fazla ülke virgül veya boşluk kullanılarak belirtilebilir." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Boş Yuva" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Yalnızca en az bir yükleme yuvası boş olan kullanıcılardan gelen sonuçları, " "yani hemen kullanılabilir olan dosyaları göster." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Yükleme Hızı Sınırları" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "Sınırsız yükleme hızı" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "Yükleme hızı sınırı kullan (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "Alternatif yükleme hızı sınırı kullan (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "Özel Sohbet Komutu Yardımı" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Metni dahil et…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Dosya yolları belirtilen metni içeren sonuçları göster. Birden fazla ifade " "ve sözcük belirtilebilir, örn. tam ifade|müzik|terim|ikinci tam ifade" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Metni hariç tut…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Dosya yolları belirtilen metni içeren sonuçları gösterme. Birden fazla ifade " "ve sözcük belirtilebilir, örn. tam ifade|müzik|terim|ikinci tam ifade" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Dosya türü…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Dosya türü, örneğin flac wav veya !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Dosya boyutu…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "Dosya boyutu, örneğin >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Bit hızı…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "Bit hızı, örneğin 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "Süre…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Süre, örneğin >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Ülke kodu…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "Ülke kodu, örneğin US ES veya !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Kullanıcı adı, IP adresi veya ülkeye göre kullanıcıların paylaşılan " "dosyalarınıza erişmesini yasaklayın." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Engellenecek ülke kodları (virgülle ayrılmış):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Kodlar ISO 3166-2 biçiminde olmalıdır." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Özel coğrafi engelleme mesajı kullan:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Özel yasaklama mesajı kullan:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP Adresleri" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "Yazım denetleyicisini etkinleştir" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Önceden açık olan özel sohbetleri başlangıçta geri yükle" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "CTCP benzeri özel mesaj yanıtlarını etkinleştir (istemci sürümü)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Gösterilecek son özel sohbet mesajlarının sayısı:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Gösterilecek son sohbet odası mesajlarının sayısı:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Sohbeti Tamamla" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Tab tuşuyla tamamlamayı etkinleştir" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Tamamlama açılır listesini etkinleştir" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "Açılır menüyü görüntülemek için gereken en az karakter:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "İzin verilen sohbet tamamlamaları:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Arkadaş adları" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Sohbet odası kullanıcı adları" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Oda adları" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "Komutlar" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Zaman Damgaları" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Özel sohbet biçimi:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "Öntanımlı" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Sohbet odası biçimi:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Metinden Konuşmaya" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Metinden Konuşmayayı Etkinleştir" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Metinden konuşmaya komutu:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Özel sohbet mesajı:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Sohbet odası mesajı:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Sansürle" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Metin kalıplarının sansürlenmesini etkinleştir" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Otomatik Değiştir" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Sözcüklerin otomatik olarak değiştirilmesini etkinleştir" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Aktarım listesinden tamamlanan/filtrelenen indirmeleri otomatik olarak " "temizle" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Tamamlanan indirmeleri kullanıcı adı alt klasörlerinde depola" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "İndirmeler için çift tıklama eylemi:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "Kullanıcıların size herhangi bir dosya göndermesine izin verin:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Klasörler" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Tamamlanan indirmeler:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Tamamlanmayan indirmeler:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "Alınan dosyalar:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Olaylar" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Dosya indirme işlemi tamamlandıktan sonra komutu çalıştır (dosya yolu için " "$):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Klasör indirme işlemi tamamlandıktan sonra komutu çalıştır (klasör yolu için " "$):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "İndirme Filtreleri" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "İndirme filtrelerini etkinleştir" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Ekle" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Öntanımlıları Yükle" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Filtreleri Doğrula" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Doğrulanmadı" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Kullanıcı adı veya IP adresine göre kullanıcılardan gelen sohbet mesajlarını " "ve arama sonuçlarını yok say." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Öntanımlı olarak sohbet odalarını günlüğe kaydet" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Öntanımlı olarak özel sohbeti günlüğe kaydet" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Aktarımların günlüğünü dosyaya kaydet" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Hata ayıklama mesajlarının günlüğünü dosyaya kaydet" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "Günlük zaman damgası biçimi:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Klasör Konumları" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Sohbet odası günlükleri klasörü:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Özel sohbet günlükleri klasörü:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Aktarım günlükleri klasörü:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Hata ayıklama günlükleri klasörü:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Mevcut bir Soulseek hesabıyla oturum açın veya yeni bir tane oluşturun. " "Kullanıcı adları büyük/küçük harfe duyarlıdır ve benzersizdir." #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "Genel IP adresi:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "Dinleme bağlantı noktası (yeniden başlatma gerektirir):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Uzakta Durumu" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "" "Uzakta olarak belirtilecek dakika cinsinden hareketsizlik süresi (devre dışı " "bırakmak için 0):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Uzaktayken otomatik yanıt mesajı:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Dinleme bağlantı noktasını otomatik olarak ilet (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Başlangıçta sunucuya otomatik bağlan" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek sunucusu:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Bağlantıları belirli bir ağ arayüzüne bağlar, örn. her zaman bir VPN'nin " "kullanılmasını sağlamak için kullanışlıdır. Kullanılabilir herhangi bir " "arayüzü kullanmak için boş bırakın. Bu değeri yalnızca ne yaptığınızı " "biliyorsanız değiştirin." #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "Ağ arayüzü (yeniden başlatma gerektirir):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Şimdi Oynatılıyor, sohbette /now komutunu kullanarak ortam oynatıcınızın ne " "çaldığını görüntülemenizi sağlar." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Diğer" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Şimdi Oynatılıyor Biçimi" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Şimdi Oynatılıyor mesaj biçimi:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Yapılandırmayı Test Et" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Eklentileri etkinleştir" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Eklenti Ekle" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Eklenti Ekle" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Ayarlar" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Ayarlar" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Sürüm:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "Oluşturan:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Arama geçmişini etkinleştir" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Özel olarak paylaşılan ve herkes tarafından görülebilen dosyaların önüne " "'[PRIVATE]' eklenir ve yükleyen kişi açık izin verene kadar indirilemez. Bu " "kişilerden nazikçe isteyin." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Arama sonuçlarında özel olarak paylaşılan dosyaları göster" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Arama başına sonuç sayısını sınırla:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Öntanımlı olarak arama sonucu filtrelerini etkinleştir" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Dahil Et:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Hariç Tut:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Dosya Türü:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Boyut:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Bit Hızı:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "Süre:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Ülke Kodu:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Yalnızca kullanılabilir bir yükleme yuvasına sahip kullanıcılardan gelen " "sonuçları göster." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Sonuç Filtresi Yardımı" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Ağ Aramaları" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Diğer kullanıcılardan gelen arama isteklerine yanıt ver" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Bu karakter sayısından daha kısa aramalar yok sayılacaktır:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "Arama isteği başına gönderilecek en fazla arama sonucu:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Arama Geçmişini Temizle" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Filtre Geçmişini Temizle" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Başlangıçta paylaşılan klasörlerinizin içeriğini otomatik olarak yeniden " "tarar. Devre dışı bırakılırsa, paylaşımlarınız yalnızca elle yeniden tarama " "başlattığınızda güncellenir." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Başlangıçta paylaşımları yeniden tara" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "Herkes tarafından görülebilir:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "Arkadaş paylaşımları" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "Güvenilir paylaşımlar" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Tamamlanan/iptal edilen yüklemeleri aktarım listesinden otomatik olarak " "temizle" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Yüklemeler için çift tıklama eylemi:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Yükleme hızını sınırla:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "Aktarım başına" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Toplam aktarımlar" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Yükleme Yuvaları" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Herkes Sırayla: Dosyalar, kuyrukta bekleyen kullanıcılara çevrimsel bir " "sırayla yüklenecektir.\n" "İlk Giren İlk Çıkar: Dosyalar kuyruğa alındıkları sırayla yüklenecektir." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Yükleme kuyruğu türü:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "Toplam hız bu değere ulaşana kadar yükleme yuvaları tahsis et (KiB/s):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "Sabit yükleme yuvası sayısı:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Tüm arkadaşlara öncelik ver" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Kuyruk Sınırları" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "Kullanıcı başına kuyruğa alınan en fazla dosya sayısı:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "Kullanıcı başına kuyruğa alınan en yüksek toplam dosya boyutu (MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "Sınırlar arkadaşlar için geçerli değildir" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "$ karakterleri URL ile değiştirilecektir. Bir protokolün yapılandırılmadığı " "durumlarda öntanımlı sistem uygulamaları kullanılır." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Dosya yöneticisi komutu:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Resmi Sıfırla" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Kendini Tanıtma" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Kısa bir açıklama, faydalı ipuçları veya paylaşımlarınızı indirmek için " "talimatlar gibi herkesin görmesini istediğiniz şeyler ekleyin." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Resim:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Temizle" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Karanlık modu tercih et" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "Başlık çubuğu kullan" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Tepsi simgesini görüntüle" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Başlangıçta tepsi simgesine küçült" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "Dil (yeniden başlatma gerektirir):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "Pencereyi kapatırken:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Bildirimler" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Bildirimler için sesi etkinleştir" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Pencere başlığında özel sohbetler ve bahsetmeler için bildirim göster" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Şunlar için bildirimleri göster:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Biten dosya indirmeleri" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Biten klasör indirmeleri" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Özel mesajlar" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Sohbet odası mesajları" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Sohbet odasında bahsedilmeler" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "İstek listesi sonuçları bulundu" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Önceden etkin olan ana sekmeyi başlangıçta geri yükle" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "İkincil sekmelerdeki kapatma düğmeleri" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Normal sekme etiketi rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Değiştirilen sekme etiketi rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Vurgulanan sekme etiketi rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "Arkadaş listesi konumu:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Görünür ana sekmeler:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "Sekme çubuğu konumları:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "Ana sekmeler" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "Ters dosya yollarını göster (yeniden başlatma gerektirir)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "Tam dosya boyutlarını göster (yeniden başlatma gerektirir)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Liste metni rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Kuyruğa alınan arama sonucu metin rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "Renkli kullanıcı adlarını etkinleştir" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Sohbet kullanıcı adı görünümü:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Uzak metin rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Yerel metin rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "Komut çıktısı metin rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me eylem metni rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Vurgulanan metin rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL bağlantı metni rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "Kullanıcı Durumları" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "Çevrim içi rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "Uzakta rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "Çevrim dışı rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Metin Girdileri" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Metin girdisi arka plan rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Metin girdisi metin rengi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Yazı Tipleri" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Genel yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Liste yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "Metin görünümü yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Sohbet yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Aktarımlar yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Arama yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Göz atma yazı tipi:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Simgeler" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "Simge teması klasörü:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Kullanıcı(lar)ı İptal Et" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Kullanıcı(lar)ı Yasakla" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "Tamamlanan ve iptal edilen tüm yüklemeleri temizle" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "Tümüne Mesaj Gönder" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "Belirli Yüklemeleri Temizle" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "Paylaşım Listesini Diske Kaydet" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "Dosyaları Yenile" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "Profili Düzenle" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Paylaşılan Dosyalar" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Paylaşılan Klasörler" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Kuyruğa Alınan Yüklemeler" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Boş Yükleme Yuvaları" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Yükleme Hızı" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "İlgi Alanlarını Düzenle" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "Ayrıcalık _Hediye Et…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "Profili _Yenile" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nicotine+ Komutları" #~ msgid "_Clear" #~ msgstr "_Temizle" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "%(filename)s kaydedilemiyor: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Güvenilir Arkadaşlar" #~ msgid "Quit program" #~ msgstr "Programdan çık" #~ msgid "Username:" #~ msgstr "Kullanıcı adı:" #~ msgid "Re_commendations for Item" #~ msgstr "Öge için Ta_vsiyeler" #~ msgid "_Remove Item" #~ msgstr "Ögeyi _Kaldır" #~ msgid "_Remove" #~ msgstr "_Kaldır" #~ msgid "Send M_essage" #~ msgstr "_Mesaj Gönder" #~ msgid "Send Message" #~ msgstr "Mesaj Gönder" #~ msgid "View User Profile" #~ msgstr "Kullanıcı Profilini Görüntüle" #~ msgid "Start Messaging" #~ msgstr "Mesajlaşmaya Başla" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Mesaj göndermek istediğiniz kullanıcının adını girin:" #~ msgid "_Message" #~ msgstr "_Mesaj Gönder" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Profilini görmek istediğiniz kullanıcının adını girin:" #~ msgid "_View Profile" #~ msgstr "Profili _Görüntüle" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Paylaşımlarını görmek istediğiniz kullanıcının adını girin:" #~ msgid "_Browse" #~ msgstr "_Göz At" #~ msgid "Password" #~ msgstr "Parola" #~ msgid "Download File" #~ msgstr "Dosyayı İndir" #~ msgid "Refresh Similar Users" #~ msgstr "Benzer Kullanıcıları Yenile" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Dosyalarını görmek istediğiniz kişinin kullanıcı adını girin" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Bilgilerini görmek istediğiniz kişinin kullanıcı adını girin" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "Mesaj göndermek istediğiniz kişinin kullanıcı adını girin" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "Arkadaş listenize eklemek istediğiniz kişinin kullanıcı adını girin" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Katılmak istediğiniz odanın adını girin. Oda yoksa oluşturulacaktır." #~ msgid "Show Log History Pane" #~ msgstr "Günlük Geçmişi Bölmesini Göster" #~ msgid "Save _Picture" #~ msgstr "Resmi _Kaydet" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "\"%(query)s\" arama sorgusu için %(user)s kullanıcısından gelen hatalı " #~ "arama sonucu %(filepath)s filtrelendi" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Özel karakterler dahil edilmişse, bazı istemciler arama sonuçları " #~ "göndermez." #~ msgid "Remove special characters from search terms" #~ msgstr "Arama terimlerinden özel karakterleri kaldır" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "'%s' çalıştırılırken sorun oluştu" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Klasörde çalıştırılırken sorun oluştu: %s" #~ msgid "Disallowed extension" #~ msgstr "İzin verilmeyen uzantı" #~ msgid "Too many files" #~ msgstr "Çok fazla dosya" #~ msgid "Too many megabytes" #~ msgstr "Çok fazla megabayt" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "Sunucu şu anda dilek listesi aramalarına izin vermiyor" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Dosya aktarım hızları indirdiğiniz kullanıcılara bağlıdır. Bazı " #~ "kullanıcılarda daha hızlı olurken, bazılarında yavaş olacaktır." #~ msgid "Started Downloads" #~ msgstr "Başlatılan İndirmeler" #~ msgid "Started Uploads" #~ msgstr "Başlatılan Yüklemeler" #~ msgid "Replace censored letters with:" #~ msgstr "Sansürlenen harfleri şununla değiştir:" #~ msgid "Censored Patterns" #~ msgstr "Sansürlenen Kalıplar" #~ msgid "Replacements" #~ msgstr "Değişimler" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Soulseek ağındaki bir kullanıcı paylaşımlarınızda bulunan bir dosyayı " #~ "ararsa, arama sonuçları kullanıcıya gönderilecek." #~ msgid "Send to Player" #~ msgstr "Oynatıcıya Gönder" #~ msgid "Send to _Player" #~ msgstr "_Oynatıcıya Gönder" #~ msgid "_Open in File Manager" #~ msgstr "_Dosya Yöneticisinde Aç" #~ msgid "Media player command:" #~ msgstr "Ortam oynatıcısı komutu:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "İndirme, kullanıcı adı alt klasörüne kaydedilemiyor, öntanımlı indirme " #~ "klasörü kullanılıyor. Hata: %s" #~ msgid "Buddy-only" #~ msgstr "Yalnızca arkadaş" #~ msgid "Share with buddies only" #~ msgstr "Yalnızca arkadaşlarla paylaş" #~ msgid "_Quit…" #~ msgstr "_Çıkış…" #~ msgid "_Configure Shares" #~ msgstr "Paylaşımları _Yapılandır" #~ msgid "Remote file error" #~ msgstr "Uzak dosya hatası" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "%(option1)s veya %(option2)s bulunamıyor, lütfen birini kurun." #, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "Yeniden taramadan sonra %(num)s klasör bulundu" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Şu veri tabanları işlenemedi: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Paylaşılan dosya sayısı sunucuya gönderilemedi: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Çık / Arka Planda Çalıştır" #~ msgid "Listening port:" #~ msgstr "Dinleme bağlantı noktası:" #~ msgid "Network interface:" #~ msgstr "Ağ arayüzü:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "Yalnızca arkadaş paylaşımlarını güvenilir arkadaşlarla sınırla" #~ msgid "Shared" #~ msgstr "Paylaşılan" #~ msgid "Search Files and Folders" #~ msgstr "Dosya ve Klasörleri Ara" #~ msgid "Out of Date" #~ msgstr "Güncel Değil" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Sürüm %(version)s kullanılabilir, %(date)s tarihinde yayınlandı" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "%s geliştirme sürümünü kullanıyorsunuz" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "En son %s sürümünü kullanıyorsunuz" #~ msgid "Latest Version Unknown" #~ msgstr "Son Sürüm Bilinmiyor" #~ msgid "Prefer Dark _Mode" #~ msgstr "Karanlık _Modu Tercih Et" #~ msgid "Show _Log History Pane" #~ msgstr "_Günlük Geçmişi Bölmesini Göster" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Ayrı Sekmede Arkadaş Listesi" #~ msgid "Buddy List Always Visible" #~ msgstr "Her Zaman Görünür Arkadaş Listesi" #~ msgid "_View" #~ msgstr "_Görünüm" #~ msgid "_Open Log Folder" #~ msgstr "_Günlük Klasörünü Aç" #~ msgid "_Browse Folder(s)" #~ msgstr "Klasör(ler)e _Göz At" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Kibibayt (2^10 bayt) / saniye." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Coğrafi olarak engellenme nedeni olarak kullanıcılara gönderilir." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Yasaklanma nedeni olarak kullanıcılara gönderilir." #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Uzakta iken uygulama ile etkileşime geçtiğinizde, durum çevrim içi olarak " #~ "ayarlanacaktır." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Her kullanıcı en fazla şunlardan birini kuyruğa alabilir:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Mebibayt (2^20 bayt)." #~ msgid "MiB" #~ msgstr "MiB" #~ msgid "files" #~ msgstr "dosya" #~ msgid "Queue Behavior" #~ msgstr "Kuyruk Davranışı" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Devre dışı bırakılırsa, yuvalar kullanılabilir bant genişliği " #~ "sınırlamalarına göre otomatik olarak belirlenecektir." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "İşletim sisteminin temasının öncelikli olabileceğini unutmayın." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "Öntanımlı olarak, en soldaki sekme başlangıçta etkinleştirilir" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Çıkış: %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "sonlandırıldı" #~ msgid "done" #~ msgstr "bitti" #~ msgid "Remember choice" #~ msgstr "Seçimi hatırla" #~ msgid "Kosovo" #~ msgstr "Kosova" #~ msgid "Unknown Network Interface" #~ msgstr "Bilinmeyen Ağ Arayüzü" #~ msgid "Listening Port Unavailable" #~ msgstr "Kullanılabilir Dinleme Bağlantı Noktası Yok" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Sunucu çalışmıyor veya yanıt vermiyor gibi görünüyor, %i saniye içinde " #~ "yeniden deneniyor" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+, diğer kullanıcılara bağlanmak için eşler arası ağ kullanır. " #~ "Kullanıcıların size sorunsuz bir şekilde bağlanmasını sağlamak için açık " #~ "bir dinleme bağlantı noktası çok önemlidir." #~ msgid "--- disconnected ---" #~ msgstr "--- bağlantı kesildi ---" #~ msgid "--- reconnected ---" #~ msgstr "--- yeniden bağlandı ---" #~ msgid "ID" #~ msgstr "Kimlik" #~ msgid "Earth" #~ msgstr "Dünya" #~ msgid "Czech Republic" #~ msgstr "Çek Cumhuriyeti" #~ msgid "Turkey" #~ msgstr "Türkiye" #~ msgid "Joined Rooms " #~ msgstr "Katılınan Odalar " #~ msgid "_Auto-join Room" #~ msgstr "Odaya Otomatik K_atıl" #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Söz dizimi: Harfler büyük/küçük harfe duyarlı değildir. Kaçırma " #~ "devre dışı bırakılmışsa, tüm Python düzenli ifadeleri desteklenir. Basit " #~ "filtreler için kaçırmanın etkin tutulması tavsiye edilir." #~ msgid "Escaped" #~ msgstr "Kaçırıldı" #~ msgid "Escape filter" #~ msgstr "Filtreyi kaçır" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Bir metin kalıbı ve ne ile değiştirileceğini girin" #, python-format #~ msgid "%(num)s folders found before rescan, rebuilding…" #~ msgstr "" #~ "Yeniden taramadan önce %(num)s klasör bulundu, yeniden oluşturuluyor…" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "" #~ "Belirtilen bağlantı noktası aralığında kullanılabilir dinleme bağlantı " #~ "noktası yok %s–%s" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Bir dinleme bağlantı noktası seçmek için bir aralık seçin. Aralıktaki ilk " #~ "kullanılabilir bağlantı noktası kullanılacaktır." #~ msgid "First Port" #~ msgstr "İlk Bağlantı Noktası" #~ msgid "to" #~ msgstr "ile" #~ msgid "Last Port" #~ msgstr "Son Bağlantı Noktası" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "%s veya daha yenisi bulunamıyor, lütfen kurun." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Gtk modülü içe aktarılamıyor. python-gobject modülü hatalı mı kuruldu?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Desteklenmeyen bir GTK %(major_version)s sürümü kullanıyorsunuz. GTK " #~ "%(complete_version)s veya daha yenisini kurmalısınız." #~ msgid "User Info" #~ msgstr "Kullanıcı Bilgileri" #~ msgid "Zoom 1:1" #~ msgstr "1:1 Yakınlaştır" #~ msgid "Zoom In" #~ msgstr "Yakınlaştır" #~ msgid "Zoom Out" #~ msgstr "Uzaklaştır" #~ msgid "Show User I_nfo" #~ msgstr "Kullanıcı _Bilgilerini Göster" #~ msgid "Request User's Info" #~ msgstr "Kullanıcı Bilgilerini İste" #~ msgid "Request User's Shares" #~ msgstr "Kullanıcının Paylaşımlarını İste" #~ msgid "Request User Info" #~ msgstr "Kullanıcı Bilgilerini İste" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Bilgilerini görmek istediğiniz kullanıcının adını girin:" #~ msgid "Request Shares List" #~ msgstr "Paylaşım Listesini İste" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Geçersiz Soulseek URL'si: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Soulseek ağındaki kullanıcılar, paylaştığınız klasörlerden dosya " #~ "indirebilecekler. Dosyaları paylaşmak, Soulseek ağının sağlığı için çok " #~ "önemlidir." #~ msgid "Update I_nfo" #~ msgstr "_Bilgileri Güncelle" #~ msgid "Chat Room Commands" #~ msgstr "Sohbet Odası Komutları" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'oda'" #~ msgid "Join room 'room'" #~ msgstr "'oda' odasına katıl" #~ msgid "/me 'message'" #~ msgstr "/me 'mesaj'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Şimdi Oynatılıyor betiğinin çıktısını görüntüle" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'kullanıcı'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "'kullanıcı' kullanıcısını arkadaş listenize ekleyin" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'kullanıcı'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "'kullanıcı' kullanıcısını arkadaş listenizden kaldırın" #~ msgid "/ban 'user'" #~ msgstr "/ban 'kullanıcı'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "'kullanıcı' kullanıcısını yasaklama listenize ekleyin" #~ msgid "/unban 'user'" #~ msgstr "/unban 'kullanıcı'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "'kullanıcı' kullanıcısını yasaklama listenizden kaldırın" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'kullanıcı'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "'kullanıcı' kullanıcısını yok sayılan listenize ekleyin" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'kullanıcı'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "'kullanıcı' kullanıcısını yok sayılan listenizden kaldırın" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'kullanıcı'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'kullanıcı'" #~ msgid "Request info for 'user'" #~ msgstr "'kullanıcı' için bilgi iste" #~ msgid "/ip 'user'" #~ msgstr "/ip 'kullanıcı'" #~ msgid "Show IP for user 'user'" #~ msgstr "'kullanıcı' kullanıcısının IP adresini göster" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'sorgu'" #~ msgid "Start a new search for 'query'" #~ msgstr "'sorgu' için yeni bir arama başlat" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'sorgu'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "'sorgu' için katılınan odaları ara" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'sorgu'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "'sorgu' için arkadaş listesini ara" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'kullanıcı' 'sorgu'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'kullanıcı' 'mesaj'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "'kullanıcı' kullanıcısına 'mesaj' mesajını gönder" #~ msgid "/pm 'user'" #~ msgstr "/pm 'kullanıcı'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "'kullanıcı' kullanıcısı için özel sohbet penceresi aç" #~ msgid "Private Chat Commands" #~ msgstr "Özel Sohbet Komutları" #~ msgid "Add user to your ban list" #~ msgstr "Yasaklama listenize kullanıcı ekleyin" #~ msgid "Add user to your ignore list" #~ msgstr "Yok sayılan listenize kullanıcı ekleyin" #~ msgid "Browse shares of user" #~ msgstr "Kullanıcının paylaşımlarına göz at" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Sıraya duyarsız filtreleme ve aynı zamanda birkaç tam ifadeyi filtrelemek " #~ "için, ifadeleri ve sözcükleri ayırmak için dikey çubuklar " #~ "kullanılabilir. \n" #~ " Örnek: Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "" #~ "Ses dosyası olmayan dosyaları hariç tutmak için süre filtresinde !0 " #~ "kullanın." #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Dosyaları kullanıcıların coğrafi konumlarına göre filtreler." #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Sonuçların tamamını tekrar görüntülemek için tüm etkin filtreleri " #~ "temizlemeniz yeterlidir." #~ msgid "See the preferences to set default search result filter options." #~ msgstr "" #~ "Öntanımlı arama sonucu filtre seçeneklerini ayarlamak için tercihlere " #~ "bakın." #~ msgid "File size" #~ msgstr "Dosya boyutu" #~ msgid "Clear Active Filters" #~ msgstr "Etkin Filtreleri Temizle" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Tab tuşuna basıldığında tamamlamalar arasında geçiş yap" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Yalnızca bir tane eşleştiğinde açılır menüyü gizle" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Klasörleri ters alfabetik sırada indir" #~ msgid "Incomplete file folder:" #~ msgstr "Tamamlanmamış dosya klasörü:" #~ msgid "Download folder:" #~ msgstr "İndirme klasörü:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Arkadaşların yüklemelerini şuraya kaydet:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "Dinleme bağlantı noktasını iletmek için UPnP kullan" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "İçeriğin doğrudan aygıtınızdan indirilmesine izin vererek klasörleri her " #~ "Soulseek kullanıcısı veya arkadaşlarınızla paylaşın. Gizli dosyalar asla " #~ "paylaşılmaz." #~ msgid "Secondary Tabs" #~ msgstr "İkincil Sekmeler" #~ msgid "Chat room tab bar position:" #~ msgstr "Sohbet odası sekme çubuğu konumu:" #~ msgid "Private chat tab bar position:" #~ msgstr "Özel sohbet sekmesi çubuğu konumu:" #~ msgid "Search tab bar position:" #~ msgstr "Arama sekmesi çubuğu konumu:" #~ msgid "User info tab bar position:" #~ msgstr "Kullanıcı bilgileri sekme çubuğu konumu:" #~ msgid "User browse tab bar position:" #~ msgstr "Kullanıcı göz atma sekmesi çubuğu konumu:" #~ msgid "Tab Labels" #~ msgstr "Sekme Etiketleri" #~ msgid "_Refresh Info" #~ msgstr "Bilgileri _Yenile" #~ msgid "Block IP Address" #~ msgstr "IP Adresini Engelle" #~ msgid "Connected" #~ msgstr "Bağlandı" #~ msgid "Disconnected" #~ msgstr "Bağlantı kesildi" #~ msgid "Disconnected (Tray)" #~ msgstr "Bağlantı kesildi (Tepsi)" #~ msgid "User(s)" #~ msgstr "Kullanıcı(lar)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "\"%s\" takma adı hiçbir şey döndürmedi" #~ msgid "Alternative Speed Limits" #~ msgstr "Alternatif Hız Sınırları" #~ msgid "Last played" #~ msgstr "Son oynatılan" #~ msgid "Playing now" #~ msgstr "Şimdi oynatılıyor" #, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Dosya %(path)s konumuna indirilemiyor: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Hata kodu %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Böyle bir takma ad yok (%s)" #~ msgid "Aliases:" #~ msgstr "Takma adlar:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "%(alias)s: %(action)s takma adı kaldırıldı\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Böyle bir takma ad yok (%(alias)s)\n" #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Alternatif Aktarım Hızı Sınırlarını Kullan" #~ msgid "Aliases" #~ msgstr "Takma adlar" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'komut' 'tanım'" #~ msgid "Add a new alias" #~ msgstr "Yeni bir takma ad ekle" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'komut'" #~ msgid "Remove an alias" #~ msgstr "Takma adı kaldır" #~ msgid "Chat History" #~ msgstr "Sohbet Geçmişi" #~ msgid "Command aliases" #~ msgstr "Komut takma adları" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "İndirme hızını sınırla (KiB/s):" #~ msgid "Author(s):" #~ msgstr "Yazar(lar):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Yükleme hızını sınırla (KiB/s):" #~ msgid "Wishlist item found" #~ msgstr "Dilek listesi ögesi bulundu" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "Sekmeler, durum metni yerine kullanıcı durumu simgelerini gösterir" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Dosya yolu araç ipuçlarını dosya listesi görünümlerinde göster" #~ msgid "Colored and clickable usernames" #~ msgstr "Renkli ve tıklanabilir kullanıcı adları" #~ msgid "Notification changes the tab's text color" #~ msgstr "Bildirim, sekmenin metin rengini değiştirir" #~ msgid "Cancel" #~ msgstr "İptal" #~ msgid "OK" #~ msgstr "Tamam" #~ msgid "_Add to Buddy List" #~ msgstr "Arkadaş Listesine _Ekle" #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Belirli bir duruma sahip tüm indirmeleri temizle" #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Belirli bir durumla sahip yüklemeleri temizle" #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "öntanımlı olmayan kullanıcı veri dizini kullan, örn. indirilenler listesi " #~ "için" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Bilinmeyen yapılandırma bölümü '%s'" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "'%(section)s' bölümünde bilinmeyen yapılandırma seçeneği '%(option)s'" #, python-format #~ msgid "Version %s is available" #~ msgstr "%s sürümü kullanılabilir" #, python-format #~ msgid "released on %s" #~ msgstr "%s tarihinde yayınlandı" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ arka planda çalışıyor" #, python-format #~ msgid "Private message from %s" #~ msgstr "%s kullanıcısından özel mesaj" #~ msgid "Aborted" #~ msgstr "İptal edildi" #~ msgid "Blocked country" #~ msgstr "Engellenen ülke" #~ msgid "Finished / Aborted" #~ msgstr "Tamamlandı / İptal Edildi" #~ msgid "Close tab" #~ msgstr "Sekmeyi kapat" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "%(room)s odasında sizden bahsedildi" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "%s komutu tanınmadı" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "" #~ "(Uyarı: %(realuser)s, %(fakeuser)s kullanıcısını taklit etmeye çalışıyor) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Belirttiğiniz '%s' ağ arayüzü yok. Belirtilen ağ arayüzünü değiştirin " #~ "veya kaldırın ve Nicotine+'ı yeniden başlatın." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "İstemci bağlantı noktaları için belirttiğiniz aralık {}-{} idi, ancak " #~ "bunların hiçbiri kullanılabilir değildi. Arttırın ve/veya " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Aralığınızın bir kısmının 1024'ün altında olduğunu unutmayın, buna " #~ "Windows hariç çoğu işletim sisteminde genellikle izin verilmez." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Yeniden tarama ilerlemesi: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "İşletim sistemi hatası: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP bu ağda kullanılamıyor" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Dış WAN bağlantı noktası eşleştirilemedi: %(error)s" #~ msgid "Room wall" #~ msgstr "Oda duvarı" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Öntanımlı dinleme bağlantı noktası '2234' çoğu durumda sorunsuz çalışır. " #~ "Farklı bir bağlantı noktası kullanmanız gerekiyorsa, daha sonra " #~ "tercihlerde değiştirebilirsiniz." #~ msgid "Show users with similar interests" #~ msgstr "Benzer ilgi alanlarına sahip kullanıcıları göster" #~ msgid "Menu" #~ msgstr "Menü" #~ msgid "Expand / Collapse all" #~ msgstr "Tümünü genişlet / daralt" #~ msgid "Configure shares" #~ msgstr "Paylaşımları yapılandır" #~ msgid "Create or join room…" #~ msgstr "Oda oluştur veya odaya katıl…" #~ msgid "_Room List" #~ msgstr "_Oda Listesi" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "Alternatif indirme ve yükleme hız sınırlarını etkinleştirin" #~ msgid "Show log history" #~ msgstr "Günlük geçmişini göster" #~ msgid "Result grouping mode" #~ msgstr "Sonuç gruplandırma modu" #~ msgid "Free slot" #~ msgstr "Boş yuva" #~ msgid "Save shares list to disk" #~ msgstr "Paylaşım listesini diske kaydet" #~ msgid "_Away" #~ msgstr "_Uzakta" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "%(file)s kullanıcı arayüzü dosyası yüklenemedi: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Bir hata nedeniyle paylaşılan dosyaların dizini sıfırlanmaya çalışılıyor. " #~ "Lütfen paylaşımlarınızı yeniden tarayın." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Paylaşılan dosyaların dosya dizinine erişilemedi. Bu, Nicotine+'ın birkaç " #~ "örneğinin aynı anda etkin olması, dosya izni sorunları veya " #~ "Nicotine+'taki başka bir sorun nedeniyle oluşabilir." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ bir Soulseek istemcisidir" #~ msgid "enable the tray icon" #~ msgstr "tepsi simgesini etkinleştir" #~ msgid "disable the tray icon" #~ msgstr "tepsi simgesini devre dışı bırak" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Soulseek Ayrıcalıkları Edin…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Genel IP adresi %(ip)s ve etkin dinlenen bağlantı noktası " #~ "%(port)s" #~ msgid "unknown" #~ msgstr "bilinmeyen" #~ msgid "Notification" #~ msgstr "Bildirim" #~ msgid "Length" #~ msgstr "Uzunluk" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Resim kaydedilmedi, %s zaten var." #~ msgid "_Open" #~ msgstr "_Aç" #~ msgid "_Save" #~ msgstr "_Kaydet" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Bulunamadığı için '%s' eklentisi yüklenemedi." #, python-format #~ msgid "I/O error: %s" #~ msgstr "G/Ç hatası: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Dosya yolu açılamadı: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "URL açılamadı: %s" #~ msgid "_Log Conversation" #~ msgstr "Konuşmayı _Günlüğe Kaydet" #~ msgid "Result Filter List" #~ msgstr "Sonuç Filtresi Listesi" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "" #~ "Verilen değerden küçük/büyük dosyaları bulmak için başına < veya > " #~ "ekleyin." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR (değişken bit hızı) dosyaları, ortalama bit hızlarını görüntüler ve " #~ "genellikle aynı ses kalitesine sahip sıkıştırılmış 320 kbps CBR (sabit " #~ "bit hızı) dosyasından daha düşük bit hızına sahiptir." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Yukarıda boyutta olduğu gibi; =, < ve > kullanılabilir." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "İndirilen dosyalar için diğer programların yazma erişimini engelle (NFS " #~ "için kapatın)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Tamamlanmamış indirmelerin geçici olarak depolandığı yer." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Arkadaşların yüklemelerinin depolanacağı yer (her bir arkadaş için " #~ "oluşturulan bir alt klasörle)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Şu kadar dakika hareketsizlikten sonra uzakta durumunu değiştir:" #~ msgid "Protocol:" #~ msgstr "Protokol:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Simge teması klasörü (yeniden başlatma gerektirir):" #~ msgid "Establishing connection" #~ msgstr "Bağlantı kuruluyor" #~ msgid "Clear Groups" #~ msgstr "Grupları Temizle" #~ msgid "User List" #~ msgstr "Kullanıcı Listesi" #~ msgid "_Reset Statistics…" #~ msgstr "İstatistikleri _Sıfırla…" #~ msgid "Clear _Downloads…" #~ msgstr "İndirmeleri _Temizle…" #~ msgid "Clear Uploa_ds…" #~ msgstr "_Yüklemeleri Temizle…" #~ msgid "Block User's IP Address" #~ msgstr "Kullanıcının IP Adresini Engelle" #~ msgid "Ignore User's IP Address" #~ msgstr "Kullanıcının IP Adresini Yok Say" #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Aktarmayı bitiren veya bir filtre tarafından yakalanan her indirmeyi " #~ "temizle." #~ msgid "Usernames" #~ msgstr "Kullanıcı Adları" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Bir odaya yeniden katıldığınızda günlüğe kaydedilen sohbet odası " #~ "mesajlarını görüntüle" #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Aktarımı tamamlanan veya uzak kullanıcı tarafından iptal edilen her " #~ "yüklemeyi temizle." #~ msgid "Queue Position" #~ msgstr "Kuyruk Konumu" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "%(user)s kullanıcısı doğrudan \"%(query)s\" için arama yapıyor ve %(num)i " #~ "sonuç döndürüyor" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[ÖZEL]" #~ msgid "Room wall (personal message set)" #~ msgstr "Oda duvarı (kişisel mesaj ayarlandı)" #~ msgid "Your config file is corrupt" #~ msgstr "Yapılandırma dosyanız bozuk" #, python-format #~ msgid "" #~ "We're sorry, but it seems your configuration file is corrupt. Please " #~ "reconfigure Nicotine+.\n" #~ "\n" #~ "We renamed your old configuration file to\n" #~ "%(corrupt)s\n" #~ "If you open this file with a text editor you might be able to rescue some " #~ "of your settings." #~ msgstr "" #~ "Üzgünüz, ancak görünüşe göre yapılandırma dosyanız bozuk. Lütfen " #~ "Nicotine+'ı yeniden yapılandırın.\n" #~ "\n" #~ "Eski yapılandırma dosyanızı şu şekilde yeniden adlandırdık:\n" #~ "%(corrupt)s\n" #~ "Bu dosyayı bir metin düzenleyiciyle açarsanız, bazı ayarlarınızı " #~ "kurtarabilirsiniz." #~ msgid "User Description" #~ msgstr "Kullanıcı Açıklaması" #~ msgid "User Interests" #~ msgstr "Kullanıcı İlgi Alanları" #~ msgid "User Picture" #~ msgstr "Kullanıcı Resmi" #~ msgid "Search Wishlist" #~ msgstr "Dilek Listesini Ara" #, python-format #~ msgid "Loading Nicotine+ %(nic_version)s" #~ msgstr "Nicotine+ %(nic_version)s yükleniyor" #, python-format #~ msgid "Using Python %(py_version)s" #~ msgstr "Python %(py_version)s kullanılıyor" #, python-format #~ msgid "Quitting Nicotine+ %(version)s, %(status)s…" #~ msgstr "Çıkılıyor: Nicotine+ %(version)s, %(status)s…" #, python-format #~ msgid "Quit Nicotine+ %(version)s, %(status)s!" #~ msgstr "Çıkış: Nicotine+ %(version)s, %(status)s!" #~ msgid "User:" #~ msgstr "Kullanıcı:" #, python-format #~ msgid "All %(ext)s" #~ msgstr "Tüm %(ext)s" #, python-format #~ msgid "%(number)2s files " #~ msgstr "%(number)2s dosya " #~ msgid "Allow regular expressions for the filter's include and exclude" #~ msgstr "" #~ "Filtrenin dahil etme ve hariç tutma işlemleri için düzenli ifadelere izin " #~ "ver" #~ msgid "Quit…" #~ msgstr "Çıkış…" #~ msgid "Remember previous primary tab on startup" #~ msgstr "Başlangıçta önceki birincil sekmeyi hatırla" #~ msgid "Start with Search Files by default." #~ msgstr "Öntanımlı olarak Dosyaları Ara sekmesiyle başla." #~ msgid "Close Nicotine+?" #~ msgstr "Nicotine+ kapatılsın mı?" #~ msgid "Do you really want to exit Nicotine+?" #~ msgstr "Nikotin+'tan gerçekten çıkmak istiyor musunuz?" #~ msgid "Run in Background" #~ msgstr "Arka Planda Çalıştır" #~ msgid "_Online Notify" #~ msgstr "_Çevrim İçi Bildir" #~ msgid "_Prioritize User" #~ msgstr "Kullanıcıya Öncelik _Ver" #~ msgid "_Trust User" #~ msgstr "Kullanıcıya _Güven" #~ msgid "Request User's IP Address" #~ msgstr "Kullanıcının IP Adresini İste" #~ msgid "Request IP Address" #~ msgstr "IP Adresini İste" #~ msgid "Enter the name of the user whose IP address you want to see:" #~ msgstr "IP adresini görmek istediğiniz kullanıcının adını girin:" #~ msgid "Downloaded" #~ msgstr "İndirildi" #, python-format #~ msgid "Failed to add download %(filename)s to shared files: %(error)s" #~ msgstr "İndirilen %(filename)s, paylaşılan dosyalara eklenemedi: %(error)s" #~ msgid "Automatically share completed downloads" #~ msgstr "Tamamlanan indirmeleri otomatik olarak paylaş" #~ msgid "" #~ "The equivalent of adding your download folder as a public share, however " #~ "files downloaded to this folder will be automatically accessible to " #~ "others (no rescan required)." #~ msgstr "" #~ "İndirme klasörünüzü genel bir paylaşım olarak eklemeye eş değerdir, ancak " #~ "bu klasöre indirilen dosyalara başkaları tarafından otomatik olarak " #~ "erişilebilir (yeniden tarama gerekmez)." #~ msgid "Unable to Share Folder" #~ msgstr "Klasör Paylaşılamıyor" #~ msgid "The chosen virtual name is empty" #~ msgstr "Seçilen sanal ad boş" #~ msgid "The chosen virtual name already exists" #~ msgstr "Seçilen sanal ad zaten var" #~ msgid "The chosen folder is already shared" #~ msgstr "Seçilen klasör zaten paylaşılıyor" #~ msgid "Set Virtual Name" #~ msgstr "Sanal Ad Ayarla" #, python-format #~ msgid "Enter virtual name for '%(dir)s':" #~ msgstr "'%(dir)s' için sanal ad girin:" #~ msgid "The chosen virtual name is either empty or already exists" #~ msgstr "Seçilen sanal ad ya boş ya da zaten var" #~ msgid "The chosen folder is already shared." #~ msgstr "Seçilen klasör zaten paylaşılıyor." #, python-format #~ msgid "%s Properties" #~ msgstr "%s Özellikleri" #~ msgid "Finished rescanning shares" #~ msgstr "Paylaşımların yeniden taranması tamamlandı" #~ msgid "Plugin List" #~ msgstr "Eklenti Listesi" #, python-format #~ msgid "Error while scanning %(path)s: %(error)s" #~ msgstr "%(path)s taranırken hata oluştu: %(error)s" #~ msgid "Show _Log Pane" #~ msgstr "_Günlük Bölmesini Göster" #~ msgid "Addresses" #~ msgstr "Adresler" #~ msgid "Handler" #~ msgstr "İşleyici" #~ msgid "Could not enable plugin." #~ msgstr "Eklenti etkinleştirilemedi." #~ msgid "Could not disable plugin." #~ msgstr "Eklenti devre dışı bırakılamadı." #~ msgid "Transfers" #~ msgstr "Aktarımlar" #~ msgid "Ban List" #~ msgstr "Yasaklama Listesi" #~ msgid "Ignore List" #~ msgstr "Yok Sayılan Listesi" #~ msgid "Censor & Replace" #~ msgstr "Sansürle ve Değiştir" #~ msgid "Completion" #~ msgstr "Tamamlama" #~ msgid "Categories" #~ msgstr "Kategoriler" #~ msgid "Upload Folder To…" #~ msgstr "Klasörü Şuraya Yükle…" #~ msgid "Upload Folder Recursive To…" #~ msgstr "Klasörü Özyinelemeli Şuraya Yükle…" #~ msgid "Download _Recursive" #~ msgstr "_Özyinelemeli İndir" #~ msgid "Download R_ecursive To…" #~ msgstr "Ö_zyinelemeli Şuraya İndir…" #~ msgid "Up_load File(s)" #~ msgstr "_Dosya(lar)ı Yükle" #, python-format #~ msgid "" #~ "Error while attempting to display folder '%(folder)s', reported error: " #~ "%(error)s" #~ msgstr "" #~ "'%(folder)s' klasörü görüntülenmeye çalışılırken hata oluştu, hata " #~ "bildirildi: %(error)s" #~ msgid "Select Destination for Downloading Folder with Subfolders from User" #~ msgstr "Kullanıcıdan Alt Klasörlerle Klasörü İndirmek İçin Hedef Seç" #~ msgid "Select Destination for Downloading a Folder from User" #~ msgstr "Kullanıcıdan Klasör İndirmek İçin Hedef Seç" #~ msgid "Select Destination for Downloading File(s) from User" #~ msgstr "Kullanıcıdan Dosya(lar) İndirmek İçin Hedef Seç" #~ msgid "Wishes" #~ msgstr "Dilekler" #~ msgid "privileged" #~ msgstr "ayrıcalıklı" #~ msgid "prioritized" #~ msgstr "öncelikli" #~ msgid "Blocked IP Addresses" #~ msgstr "Engellenen IP Adresleri" #~ msgid "Complete buddy names" #~ msgstr "Arkadaş adlarını tamamla" #~ msgid "Complete usernames in chat rooms" #~ msgstr "Sohbet odalarında kullanıcı adlarını tamamla" #~ msgid "Complete room names" #~ msgstr "Oda adlarını tamamla" #~ msgid "Drop-down List" #~ msgstr "Açılan Liste" #~ msgid "File Manager command ($ for file path):" #~ msgstr "Dosya yöneticisi komutu (dosya yolu için $):" #~ msgid "Media Player command ($ for file path):" #~ msgstr "Ortam oynatıcı komutu (dosya yolu için $):" #~ msgid "Ignored IP Addresses" #~ msgstr "Yok Sayılan IP Adresleri" #~ msgid "Display timestamps" #~ msgstr "Zaman damgalarını göster" #~ msgid "Notification Popups" #~ msgstr "Bildirim Açılır Pencereleri" #~ msgid "Show notification popup when a file has finished downloading" #~ msgstr "" #~ "Bir dosyanın indirilmesi bittiğinde bildirim açılır penceresini göster" #~ msgid "Show notification popup when a folder has finished downloading" #~ msgstr "" #~ "Bir klasörün indirilmesi bittiğinde bildirim açılır penceresini göster" #~ msgid "Show notification popup when you receive a private message" #~ msgstr "Özel bir mesaj aldığınızda bildirim açılır penceresini göster" #~ msgid "Show notification popup when someone sends a message in a chat room" #~ msgstr "" #~ "Birisi sohbet odasında bir mesaj gönderdiğinde bildirim açılır " #~ "penceresini göster" #~ msgid "Show notification popup when you are mentioned in a chat room" #~ msgstr "" #~ "Bir sohbet odasında sizden bahsedildiğinde bildirim açılır penceresini " #~ "göster" #~ msgid "Tray" #~ msgstr "Tepsi" #~ msgid "" #~ "Instances of $ will be replaced by the link. The default web browser of " #~ "the system will be used in cases where a protocol has not been configured." #~ msgstr "" #~ "$ karakterleri bağlantı ile değiştirilecektir. Bir protokolün " #~ "yapılandırılmadığı durumlarda sistemin öntanımlı internet tarayıcısı " #~ "kullanılacaktır." #~ msgid "Handler:" #~ msgstr "İşleyici:" #~ msgid "Primary Tabs" #~ msgstr "Birincil Sekmeler" #~ msgid "Enable file path tooltips in search and transfer views" #~ msgstr "" #~ "Arama ve aktarım görünümlerinde dosya yolu araç ipuçlarını etkinleştir" #~ msgid "" #~ "Displays the complete file path of a search result or file transfer when " #~ "you hover a folder path or file name with your cursor." #~ msgstr "" #~ "İmlecinizle bir klasör yolunun veya dosya adının üzerine geldiğinizde, " #~ "bir arama sonucunun veya dosya aktarımının tam dosya yolunu görüntüler." #~ msgid "Show privately shared files in user shares" #~ msgstr "Kullanıcı paylaşımlarında özel olarak paylaşılan dosyaları göster" #~ msgid "" #~ "Other clients may offer an option to send privately shared files when you " #~ "browse their shares. Folders containing such files are prefixed with " #~ "'[PRIVATE FOLDER]', and are not downloadable unless the uploader gives " #~ "explicit permission." #~ msgstr "" #~ "Diğer istemciler, paylaşımlarına göz atarken özel olarak paylaşılan " #~ "dosyalar gönderme seçeneği sunabilir. Bu tür dosyaları içeren klasörlerin " #~ "önüne '[PRIVATE FOLDER]' eklenir ve yükleyen kişi açıkça izin vermedikçe " #~ "indirilemezler." #~ msgid "Chat Censor & Replace" #~ msgstr "Sohbeti Sansürle ve Değiştir" #~ msgid "Show _Debug Log Controls" #~ msgstr "_Hata Ayıklama Günlüğü Denetimlerini Göster" #~ msgid "Debug Logging" #~ msgstr "Hata Ayıklama Günlüğü" #~ msgid "Virtual Name" #~ msgstr "Sanal Ad" #~ msgid "Edit Virtual Name" #~ msgstr "Sanal Adı Düzenle" #~ msgid "Copy Folder URL" #~ msgstr "Klasör URL'sini Kopyala" #~ msgid "Download _To…" #~ msgstr "Şuraya _İndir…" #~ msgid "Download" #~ msgstr "İndir" #~ msgid "Upload Folder's Contents" #~ msgstr "Klasörün İçeriğini Yükle" #~ msgid "Rename" #~ msgstr "Yeniden Adlandır" #~ msgid "File Lists" #~ msgstr "Dosya Listeleri" #~ msgid "Copy File Path" #~ msgstr "Dosya Yolunu Kopyala" #~ msgid "R_emove Wish" #~ msgstr "Dileği _Kaldır" #, python-format #~ msgid "It appears '%s' is not a directory, not loading plugins." #~ msgstr "Görünüşe göre '%s' bir dizin değil, eklentiler yüklenmiyor." #~ msgid "Rescanning buddy shares…" #~ msgstr "Arkadaş paylaşımları yeniden taranıyor…" #~ msgid "Finished rescanning buddy shares" #~ msgstr "Arkadaş paylaşımlarının yeniden taranması tamamlandı" #, python-format #~ msgid "Your buddy, %s, is attempting to upload file(s) to you." #~ msgstr "Arkadaşınız %s, size dosya(lar) yüklemeye çalışıyor." #, python-format #~ msgid "" #~ "%s is not allowed to send you file(s), but is attempting to, anyway. " #~ "Warning Sent." #~ msgstr "" #~ "%s kullanıcısının size dosya(lar) göndermesine izin verilmiyor, ancak " #~ "yine de deniyor. Uyarı gönderildi." #~ msgid "Client Version" #~ msgstr "İstemci Sürümü" #, python-format #~ msgid "How many days of privileges should user %s be gifted?" #~ msgstr "%s kullanıcısına kaç günlük ayrıcalık hediye edilmeli?" #~ msgid "" #~ "Buddies will have higher priority in the queue, the same as globally " #~ "privileged users." #~ msgstr "" #~ "Arkadaşlar, küresel olarak ayrıcalıklı kullanıcılarla aynı şekilde " #~ "kuyrukta daha yüksek önceliğe sahip olacak." #~ msgid "Privileged" #~ msgstr "Ayrıcalıklı" #~ msgid "_Privileged" #~ msgstr "_Ayrıcalıklı" #~ msgid "Comments" #~ msgstr "Yorumlar" #~ msgid "Edit _Comments…" #~ msgstr "_Yorumları Düzenle…" #~ msgid "" #~ "Creates subfolders based on the user you are downloading from, and stores " #~ "the downloaded file / folder there." #~ msgstr "" #~ "İndirdiğiniz kullanıcıya göre alt klasörler oluşturur ve indirilen " #~ "dosyayı / klasörü orada depolar." #~ msgid "Login Details" #~ msgstr "Oturum Açma Bilgileri" #~ msgid "Advanced" #~ msgstr "Gelişmiş" #~ msgid "Port mapping renewal interval in hours:" #~ msgstr "Saat cinsinden bağlantı noktası eşleştirme yenileme aralığı:" #~ msgid "Enable buddy-only shares" #~ msgstr "Yalnızca arkadaş paylaşımlarını etkinleştir" #~ msgid "Files will be uploaded in the order they were queued." #~ msgstr "Dosyalar kuyruğa alındıkları sıraya göre yüklenecektir." #~ msgid "Rescanning normal shares…" #~ msgstr "Normal paylaşımlar yeniden taranıyor…" #~ msgid "Finished rescanning public shares" #~ msgstr "Genel paylaşımların yeniden taranması tamamlandı" #~ msgid "Scanning Buddy Shares" #~ msgstr "Arkadaş Paylaşımları Taranıyor" #~ msgid "_Rescan Public Shares" #~ msgstr "_Genel Paylaşımları Yeniden Tara" #~ msgid "Rescan B_uddy Shares" #~ msgstr "_Arkadaş Paylaşımlarını Yeniden Tara" #~ msgid "Rescan Public Shares" #~ msgstr "Genel Paylaşımları Yeniden Tara" #~ msgid "Rescan Buddy Shares" #~ msgstr "Arkadaş Paylaşımlarını Yeniden Tara" #~ msgid "Enables buddy shares that only users on your buddy list can access." #~ msgstr "" #~ "Yalnızca arkadaş listenizdeki kullanıcıların erişebileceği arkadaş " #~ "paylaşımlarını etkinleştirir." #~ msgid "Mark each shared folder as buddy-only" #~ msgstr "Her paylaşılan klasörü yalnızca arkadaş olarak işaretle" #~ msgid "" #~ "Overrides the per-share option, useful if you temporarily need to prevent " #~ "public access to shares." #~ msgstr "" #~ "Paylaşımlara genel erişimi geçici olarak engellemeniz gerektiğinde " #~ "kullanışlı olan, paylaşım başına seçeneğini geçersiz kılar." #~ msgid "" #~ "Only users marked as trusted on your buddy list can access your buddy-" #~ "only shares." #~ msgstr "" #~ "Yalnızca arkadaş listenizde güvenilir olarak işaretlenen kullanıcılar, " #~ "arkadaşlara özel paylaşımlarınıza erişebilir." #~ msgid "" #~ "Nicotine+ allows you to share folders directly from your computer. All " #~ "the contents of these folders (with the exception of dotfiles) can be " #~ "downloaded by other users on the Soulseek network. Public shares are " #~ "available for every user, while users in your buddy list can access buddy-" #~ "only shares in addition to public shares." #~ msgstr "" #~ "Nicotine+, klasörleri doğrudan bilgisayarınızdan paylaşmanıza olanak " #~ "tanır. Bu klasörlerin tüm içeriği (nokta ile başlayan dosyalar hariç) " #~ "Soulseek ağındaki diğer kullanıcılar tarafından indirilebilir. Herkese " #~ "açık paylaşımlar her kullanıcı için kullanılabilirken, arkadaş " #~ "listenizdeki kullanıcılar genel paylaşımlara ek olarak yalnızca arkadaş " #~ "paylaşımlarına erişebilir." #~ msgid "Filtered out excluded search result " #~ msgstr "Hariç tutulan arama sonucu filtrelendi: " #~ msgid "Filtered out inexact or incorrect search result " #~ msgstr "Hatalı veya yanlış arama sonucu filtrelendi: " #, python-format #~ msgid "" #~ "Stored setting '%(key)s' is no longer present in the '%(name)s' plugin" #~ msgstr "Depolanan '%(key)s' ayarı artık '%(name)s' eklentisinde yok" #, python-format #~ msgid "Plugin %(module)s returned something weird, '%(value)s', ignoring" #~ msgstr "" #~ "%(module)s eklentisi garip bir şey döndürdü, '%(value)s', yok sayılıyor" #, python-format #~ msgid "Inconsistent cache for '%(vdir)s', rebuilding '%(dir)s'" #~ msgstr "'%(vdir)s' için tutarsız önbellek, '%(dir)s' yeniden oluşturuluyor" #, python-format #~ msgid "Dropping missing folder %(dir)s" #~ msgstr "Eksik klasör %(dir)s bırakılıyor" #, python-format #~ msgid "All tickers / wall messages for %(room)s:" #~ msgstr "%(room)s için tüm durum / duvar mesajları:" #~ msgid "Set your personal ticker" #~ msgstr "Kişisel durum mesajınızı ayarlayın" #~ msgid "Show all the tickers" #~ msgstr "Tüm durum mesajlarını göster" #~ msgid "" #~ "Failed to scan shares. If Nicotine+ is currently running, please close " #~ "the program before scanning." #~ msgstr "" #~ "Paylaşımlar taranamadı. Nicotine+ şu anda çalışıyorsa, lütfen taramadan " #~ "önce programı kapatın." #~ msgid "Are you sure you wish to exit Nicotine+ at this time?" #~ msgstr "Şu anda Nicotine+'tan çıkmak istediğinizden emin misiniz?" #~ msgid "Receive a User's IP Address" #~ msgstr "Kullanıcının IP Adresini Al" #~ msgid "Receive a User's Info" #~ msgstr "Kullanıcının Bilgilerini Al" #~ msgid "The server forbid us from doing wishlist searches." #~ msgstr "Sunucu, dilek listesi araması yapmamızı yasaklıyor." #, python-format #~ msgid "" #~ "Your shares database is corrupted. Please rescan your shares and report " #~ "any potential scanning issues to the developers. Error: %s" #~ msgstr "" #~ "Paylaşım veri tabanınız bozuk. Lütfen paylaşımlarınızı yeniden tarayın ve " #~ "olası tarama sorunlarını geliştiricilere bildirin. Hata: %s" #~ msgid "" #~ "Please keep in mind that certain usernames may be taken. If this is the " #~ "case, you will be prompted to change your username when connecting to the " #~ "network." #~ msgstr "" #~ "Lütfen belirli kullanıcı adlarının alınmış olabileceğini unutmayın. Bu " #~ "durumda, ağa bağlanırken kullanıcı adınızı değiştirmeniz istenecektir." #~ msgid "Enter the username of the person you to receive information about" #~ msgstr "Hakkında bilgi alacağınız kişinin kullanıcı adını girin" #~ msgid "Add user 'user' to your user list" #~ msgstr "'kullanıcı' kullanıcısını kullanıcı listenize ekleyin" #~ msgid "Remove user 'user' from your user list" #~ msgstr "'kullanıcı' kullanıcısını kullanıcı listenizden kaldırın" #~ msgid "Request user info for user 'user'" #~ msgstr "'kullanıcı' kullanıcısı için kullanıcı bilgilerini iste" #~ msgid "Add user to your user list" #~ msgstr "Kullanıcı listenize kullanıcı ekleyin" #~ msgid "Remove user from your user list" #~ msgstr "Kullanıcı listenizden kullanıcıyı kaldırın" #~ msgid "Respond to search requests containing minimum character count:" #~ msgstr "En az şu kadar karakter içeren arama isteklerine yanıt ver:" #~ msgid "" #~ "Queued users will be uploaded one file at a time in a cyclical fashion." #~ msgstr "" #~ "Kuyruğa alınan kullanıcılara, döngüsel bir şekilde her seferinde bir " #~ "dosya yüklenecektir." #~ msgid "" #~ "Could not execute now playing code. Are you sure you picked the right " #~ "player?" #~ msgstr "" #~ "Şimdi oynatılıyor kodu çalıştırılamadı. Doğru oynatıcıyı seçtiğinizden " #~ "emin misiniz?" #, python-format #~ msgid "The password you've entered is invalid for user %s" #~ msgstr "Girdiğiniz parola %s kullanıcısı için geçersiz" #~ msgid "Find..." #~ msgstr "Bul..." nicotine-plus-3.3.4/po/uk.po000066400000000000000000007564731461625273200157450ustar00rootroot00000000000000# Copyright (C) 2022-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Клієнт Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Графічний клієнт для однорангової мережі Soulseek" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;обмін;чат;повідомлення;P2P;одноранговий;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Графічний клієнт для мережі Soulseek" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ - це графічний клієнт для однорангової мережі Soulseek." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ прагне бути легковажною, приємною, безкоштовною та відкритою " "(FOSS) альтернативою офіційному клієнту Soulseek, одночасно надаючи повний " "набір функцій." #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "Пошук файлів" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "Завантаження" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "Переглянути спільні каталоги" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "Приватний чат" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Команда Nicotine+" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "Вебсайт: %s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "показати це повідомлення та вийти" #: pynicotine/__init__.py:59 msgid "file" msgstr "файл" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "використовувати користувацький файл конфігурації" #: pynicotine/__init__.py:63 msgid "dir" msgstr "каталог" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "альтернативна директорія для даних користувача та плагінів" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "запускати програму без відображення вікна" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip-адреса" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "прив'язувати сокети до заданої IP-адреси (корисно для VPN)" #: pynicotine/__init__.py:75 msgid "port" msgstr "порт" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "слухати на заданому порту" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "повторно сканувати спільні файли" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "запустити програму в фоновому режимі (без GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "відобразити версію та вийти" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "Ви використовуєте непідтримувану версію Python (%(old_version)s).\n" "Вам слід встановити Python %(min_version)s або новішу." #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "" "Не вдалося сканувати спільні ресурси. Закрийте інші екземпляри Nicotine+ і " "повторіть спробу." #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, fuzzy, python-format msgid "%(user)s is away" msgstr "Користувач %s відсутній" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, fuzzy, python-format msgid "%(user)s is online" msgstr "Користувач %s в мережі" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, fuzzy, python-format msgid "%(user)s is offline" msgstr "Користувач %s поза мережею" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "Статус друга" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "Вас додали до приватної кімнати: %(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "" "Повідомлення чату від користувача \"%(user)s\" у кімнаті \"%(room)s\": " "%(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "" "Не вдається створити каталог \"%(path)s\", повідомляється про помилку: " "%(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "Помилка резервного копіювання конфігурації: %s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "Резервна копія конфігурації: %s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "Завантаження %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "Завершення %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "припинення" #: pynicotine/core.py:237 msgid "application closing" msgstr "закриття програми" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "Вийти %(program)s %(version)s!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "Вам потрібно вказати ім’я користувача та пароль перед підключенням…" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "" "Помилка: не вдалося завантажити фільтр! Перевірте свої фільтри. Причина: %s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "Помилка: %(num)d Не вдалося завантажити фільтри! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s завантажено від %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "Файл завантажено" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "Виконано: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "Не вдалося виконати \"%(command)s\": %(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s завантажено від %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "Каталог завантажено" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "Виконано в каталозі: %s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "Не вдалося перемістити \"%(tempfile)s\" до \"%(file)s\": %(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 #, fuzzy msgid "Download Folder Error" msgstr "Помилка завантаження каталогу" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "Завантаження завершено: користувач %(user)s, файл %(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "Завантаження перервано, користувач %(user)s файл %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "Помилка завантаження введення-виводу: %s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "" "Не вдається отримати ексклюзивне блокування файлу – помилка вводу-виводу: %s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "Не вдається зберегти файл в %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "Завантаження розпочато: користувач %(user)s, файл %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "Не вдається знайти %s, будь ласка, встановіть його." #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "" "Немає доступного графічного середовища, використовується безголовий режим " "(без GUI)" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_Підключитися" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_Відключити" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "_Привілеї Soulseek" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_Налаштування" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_Вихід" #: pynicotine/gtkgui/application.py:370 #, fuzzy msgid "Browse _Public Shares" msgstr "_Перегляд спільних каталогів" #: pynicotine/gtkgui/application.py:371 #, fuzzy msgid "Browse _Buddy Shares" msgstr "_Перегляд спільних каталогів друзів" #: pynicotine/gtkgui/application.py:372 #, fuzzy msgid "Browse _Trusted Shares" msgstr "_Перегляд спільних каталогів друзів" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_Пересканувати спільні каталоги" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 #, fuzzy msgid "Configure _Shares" msgstr "_Налаштувати спільні каталоги" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_Гарячі клавіши" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_Помічник з налаштування" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_Статистика передач" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "Повідомити про помилку" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "Покращити Пе_реклад" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_Про Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_Файл" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_Спільні каталоги" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_Допомога" #: pynicotine/gtkgui/application.py:438 #, fuzzy msgid "_Browse Shares" msgstr "Переглянути спільні каталоги" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "Не вдається показати сповіщення: %s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "Ви все ще завантажуєте файли. Ви дійсно хочете вийти?" #: pynicotine/gtkgui/application.py:534 #, fuzzy msgid "Wait for uploads to finish" msgstr "Чекати завершення відвантажень" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "Ви дійсно хочете вийти?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_Ні" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_Запуск у фоновому режимі" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "Вийти з Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "Спільні каталоги недоступні" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 #, fuzzy msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "" "Переконайтеся, що зовнішні диски підключено та дозволи для папок правильні." #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_Скасувати" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_Повторити спробу" #: pynicotine/gtkgui/application.py:576 #, fuzzy msgid "_Force Rescan" msgstr "_Примусове повторне сканування" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "Недійсний пароль" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "" "Користувач %s вже існує, а введений пароль недійсний. Будь ласка, виберіть " "інше ім’я користувача, якщо це ваш перший вхід." #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "Змінити _Дані входу" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "Повідомити користувачів які завантажують" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "" "Надіслати приватне повідомлення всім користувачам, які завантажують ваші " "файли:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_Відправити повідомлення" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "Написати друзям" #: pynicotine/gtkgui/application.py:781 #, fuzzy msgid "Send private message to all online buddies:" msgstr "Надіслати приватне повідомлення всім друзям онлайн:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "Виберіть збережений файл списку спільних каталогів" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "Критична помилка" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "" "Nicotine+ зіткнувся з критичною помилкою, тому його потрібно закрити. Будь " "ласка, скопіюйте наступне повідомлення та додайте його до звіту про помилку:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_Закрити Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_Копіювати та повідомити про помилку" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "Статус" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "Країна" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "Користувач" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "Швидкість" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "Файли" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "Довірений" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "Повідомити" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "Пріоритетні" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "Востаннє у мережі" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "Примітка" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "Додати _примітку користувача…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "Видалити" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "Ніколи" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "Додати примітку користувача" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "Додати примітку про користувача %s:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 #, fuzzy msgid "_Add" msgstr "_Додати" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "Створити нову кімнату?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "Ви дійсно хочете створити нову кімнату \"%s\"?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "Зробити кімнату приватною" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "По_шук у файлах користувача" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "Шукати…" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "Копіювати" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "Копіювати все" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "Очистити перегляд активності" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_Покинути кімнату" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "Копіювати посилання" #: pynicotine/gtkgui/chatrooms.py:554 #, fuzzy msgid "View Room Log" msgstr "Переглянути журнал кімнати" #: pynicotine/gtkgui/chatrooms.py:555 #, fuzzy msgid "Delete Room Log…" msgstr "Видалити журнал кімнати…" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "Очистити перегляд повідомлень" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s приєднався до кімнати" #: pynicotine/gtkgui/chatrooms.py:756 #, fuzzy, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s згадав вас у кімнаті %(room)s" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, fuzzy, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "Повідомлення від %(user)s у кімнаті %(room)s" #: pynicotine/gtkgui/chatrooms.py:779 #, fuzzy, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "Повідомлення від %(user)s у кімнаті %(room)s" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s покинув кімнату" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s пішов" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s повернувся" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "Видалити зареєстровані повідомлення?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "Ви дійсно хочете назавжди видалити всі повідомлення для цієї кімнати?" #: pynicotine/gtkgui/dialogs/about.py:383 #, fuzzy msgid "About" msgstr "Про" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "Web-сторінка" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "Помилка перевірки останньої версії: %s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "Доступна нова версія: %s" #: pynicotine/gtkgui/dialogs/about.py:438 #, fuzzy msgid "Up to date" msgstr "Актуально" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "Перевірити останню версію…" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "Помічник з налаштування" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "Віртуальний каталог" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "Каталог" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_Готово" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_Далі" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "Додати спільний каталог" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "Редагувати спільний каталог" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "Введіть нове віртуальне ім'я для \"%(dir)s\":" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_Редагувати" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "Властивості файлу" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "Властивості файлу (%(num)i з %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "Властивості файлу (%(num)i з %(total)i / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_Застосувати" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "Додати…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "Редагувати…" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s Налаштування" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "Додати елемент" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "Редагувати елемент" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "Невідомо" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "Перевірити статус порту" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, fuzzy, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s, порт %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "Зміна пароля відхилена" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "Введіть новий пароль для свого облікового запису Soulseek:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "Наразі ви вийшли з мережі Soulseek. Якщо ви хочете змінити пароль існуючого " "облікового запису Soulseek, вам потрібно увійти в цей обліковий запис." #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "Введіть пароль для входу в систему:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "Змінити пароль" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_Змінити" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "Ніхто" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "Кожен" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "Друзі" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 #, fuzzy msgid "Trusted buddies" msgstr "Довірені друзі" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "Нічого" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "Відкрити файл" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "Відкрити в диспетчері файлів" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "Пошук" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "Призупинити" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "Продовжити" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "Перегляд каталогу" #: pynicotine/gtkgui/dialogs/preferences.py:310 #, fuzzy msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "Синтаксис: регістр не враховується. Якщо ввімкнено, можна " "використовувати регулярні вирази Python, інакше підтримуються лише збіги " "символів підстановки *." #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "Фільтр" #: pynicotine/gtkgui/dialogs/preferences.py:327 #, fuzzy msgid "Regex" msgstr "Регулярний вираз" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "Додати фільтр завантаження" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "Введіть новий фільтр завантаження:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 #, fuzzy msgid "Enable regular expressions" msgstr "Увімкнути регулярні вирази" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "Редагувати фільтр завантаження" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "Змініть такий фільтр завантаження:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d Помилка! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "Фільтри успішно застосовані" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 #, fuzzy msgid "Public" msgstr "Публічний" #: pynicotine/gtkgui/dialogs/preferences.py:612 #, fuzzy msgid "Accessible To" msgstr "Доступно для" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "Перервати" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "Повторити спробу" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "Циклічний/круговий" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "Першим зайшов, першим вийшов" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "Ім'я користувача" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP-адреса" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "Ігнорувати користувача" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "Введіть ім’я користувача, якого ви хочете проігнорувати:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "Ігнорувати IP-адресу" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "Введіть IP-адресу, яку ви хочете ігнорувати:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* є символом підстановки" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "Блокувати користувача" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "Введіть ім'я користувача, якого хочете заблокувати:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "Забанити IP-адресу" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "Введіть IP-адресу, яку хочете заблокувати:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 #, fuzzy msgid "Format codes" msgstr "Формат кодів" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "Шаблон" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "Заміна" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "Шаблон цензури" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "Введіть шаблон, який потрібно піддати цензурі. Додайте пробіли навколо " "шаблону, якщо ви не хочете збігати рядки всередині слів (може не вдатися на " "початку і в кінці рядків)." #: pynicotine/gtkgui/dialogs/preferences.py:1474 #, fuzzy msgid "Edit Censored Pattern" msgstr "Цензурові шаблони" #: pynicotine/gtkgui/dialogs/preferences.py:1507 #, fuzzy msgid "Add Replacement" msgstr "Заміна" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 #, fuzzy msgid "Enter a text pattern and what to replace it with:" msgstr "Введіть шаблон тексту та заміну відповідно:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 #, fuzzy msgid "Edit Replacement" msgstr "Заміна" #: pynicotine/gtkgui/dialogs/preferences.py:1654 #, fuzzy msgid "System default" msgstr "За замовчуванням" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "Показати діалогове вікно підтвердження" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "Запуск у фоновому режимі" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "напівжирний" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "курсив" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "підкреслений" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "звичайний" #: pynicotine/gtkgui/dialogs/preferences.py:1688 #, fuzzy msgid "Separate Buddies tab" msgstr "Довірені друзі" #: pynicotine/gtkgui/dialogs/preferences.py:1689 #, fuzzy msgid "Sidebar in Chat Rooms tab" msgstr "Список друзів у чатах" #: pynicotine/gtkgui/dialogs/preferences.py:1690 #, fuzzy msgid "Always visible sidebar" msgstr "Бічна панель завжди видима" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "Зверху" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "Знизу" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "Ліворуч" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "Праворуч" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "В мережі" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "Відсутній" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "Поза мережею" #: pynicotine/gtkgui/dialogs/preferences.py:1837 #, fuzzy msgid "Tab Changed" msgstr "Зміна пароля відхилена" #: pynicotine/gtkgui/dialogs/preferences.py:1838 #, fuzzy msgid "Tab Highlight" msgstr "Виділити" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "Вікно" #: pynicotine/gtkgui/dialogs/preferences.py:1843 #, fuzzy msgid "Online (Tray)" msgstr "Підключено (лоток)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "Відсутній (лоток)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 #, fuzzy msgid "Offline (Tray)" msgstr "Поза мережею" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "Повідомлення (лоток)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "Протокол" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "Команда" #: pynicotine/gtkgui/dialogs/preferences.py:2487 #, fuzzy msgid "Add URL Handler" msgstr "Обробники URL-адрес" #: pynicotine/gtkgui/dialogs/preferences.py:2488 #, fuzzy msgid "Enter the protocol and the command for the URL handler:" msgstr "Введіть протокол і команду для обробки URL-адреси відповідно:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 #, fuzzy msgid "Edit Command" msgstr "Команда" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, fuzzy, python-format msgid "Enter a new command for protocol %s:" msgstr "Введіть нове значення для побажання \"%s\":" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "Ім'я користувача;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 #, fuzzy msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "" "Ім’я клієнта (наприклад, amarok, audacious, exaile) або залиште пустим щоб " "отримати автоматично:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 #, fuzzy msgid "Username: " msgstr "Ім'я користувача: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "Команда:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "Назва" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "Зараз відтворюється (зазвичай \"%(artist)s - %(title)s\")" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "Виконавець" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 #, fuzzy msgid "Duration" msgstr "Тривалість" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "Бітрейт" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "Коментар" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "Альбом" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "Номер треку" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "Рік" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "Ім'я файлу (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "Програма" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "Увімкнено" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "Плагін" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "Не вибрано плагін" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "Мережа" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "Користувацький інтерфейс" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "Спільні файли" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "Вивантаження" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "Пошуки" #: pynicotine/gtkgui/dialogs/preferences.py:2912 #, fuzzy msgid "User Profile" msgstr "Користувацький інтерфейс" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "Чати" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "Зараз грає" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "Журналювання" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "Заблоковані користувачі" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "Ігноровані користувачі" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "Плагіни" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "Обробники URL-адрес" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "Налаштування" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "Виберіть ім’я файлу для резервного копіювання конфігурації" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "Статистика передач" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, fuzzy, python-format msgid "Total Since %(date)s" msgstr "Усього з %(date)s" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "Скинути статистику передач?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "Ви дійсно хочете скинути статистику передач?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "Список бажань" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "Побажання" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_Знайти елемент" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "Редагувати побажання" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "Введіть нове значення для побажання \"%s\":" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "Очистити список побажань?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "Ви дійсно хочете очистити свій список побажань?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "Шлях" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_Відновити" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "П_ауза" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "Готово / відфільтровано" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "Готово" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "Призупинено" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "Відфільтровано" #: pynicotine/gtkgui/downloads.py:75 #, fuzzy msgid "Deleted" msgstr "Видалено" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "У черзі…" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "Все…" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "Очистити завантаження в черзі" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "Ви дійсно хочете очистити всі завантаження в черзі?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "Очистити всі завантаження" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "Ви дійсно хочете очистити всі завантаження?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "Завантажити файли %(num)i?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "" "Ви дійсно хочете завантажити файли %(num)i з каталогу %(user)s %(folder)s?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_Завантажити каталог" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "Подобається" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "Не подобається" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "Рейтинг" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "Елемент" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_Рекомендації щодо елемента" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "Мені це _подобається" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "Мені це _не подобається" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "Рекомендації" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "Схожі користувачі" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "Рекомендації (%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "Схожі користувачі (%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "Приватне повідомлення від %(user)s" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 #, fuzzy msgid "Wishlist Results Found" msgstr "Список бажань знайдено" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 #, fuzzy msgid "User Profiles" msgstr "Профілі користувачів" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "Чати" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "Інтереси" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "Чат" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[Відлагодження] Підключення" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[Відлагодження] Повідомлення" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[Відлагодження] Передачі" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[Відлагодження] Різне" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_Знайти…" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_Копіювати" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "Копіювати _Все" #: pynicotine/gtkgui/mainwindow.py:1074 #, fuzzy msgid "View _Debug Logs" msgstr "Переглянути журнал кімнат" #: pynicotine/gtkgui/mainwindow.py:1075 #, fuzzy msgid "View _Transfer Logs" msgstr "Відкрити журнал _передач" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_Категорії журналу" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "Очистити вигляд журналу" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "Завантаження: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "Вивантаження: %(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 #, fuzzy msgid "Preparing Shares" msgstr "Сканування спільних каталогів" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "Сканування спільних каталогів" #: pynicotine/gtkgui/mainwindow.py:1236 #, fuzzy msgid "Quitting..." msgstr "Завершення..." #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "Останні повідомлення" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "Кімната" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "Користувачі" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "Приєднатися до кімнати" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "Залишити кімнату" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "Відмовитися від окремої кімнати" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "Скасувати членство в кімнаті" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "Закрити всі вкладинки…" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_Закрити вкладинку" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "Переглянути журнал чату" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "Видалити журнал чату…" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 #, fuzzy msgid "User Actions" msgstr "Список користувачів" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "" "Ви дійсно хочете назавжди видалити всі зареєстровані повідомлення для цього " "користувача?" #: pynicotine/gtkgui/privatechat.py:525 #, fuzzy msgid "* Messages sent while you were offline" msgstr "* Повідомлення, які були надіслані коли ви були офлайн." #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_Глобальний" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_Друзі" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_Кімнати" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_Користувач" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "У черзі" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "Тип файлу" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "Ім'я файлу" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "Розмір" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 #, fuzzy msgid "Quality" msgstr "якість" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "Копіювати _шлях до файлу" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "Копіювати _посилання" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "Копіювати _каталог посилання" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_Завантажити файл(-и)" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "Завантажити файл(-и) _до…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "Завантажити _каталог(-и)" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "Завантажити к_аталог(-и) до…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 #, fuzzy msgid "View User _Profile" msgstr "Переглянути _профіль користувача" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 #, fuzzy msgid "_Browse Folder" msgstr "Перегляд каталогу" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "Властивості _файлу" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "Копіювати пошуковий термін" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "Очистити всі результати" #: pynicotine/gtkgui/search.py:702 #, fuzzy msgid "Clear Filters" msgstr "Очистити історію фільтрів" #: pynicotine/gtkgui/search.py:705 #, fuzzy msgid "Restore Filters" msgstr "Фільтри результатів" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[ПРИВАТНО] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_Фільтри результатів [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "Фільтри _результатів" #: pynicotine/gtkgui/search.py:1271 #, fuzzy, python-format msgid "%d active filter(s)" msgstr "Очистити всі активні фільтри" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "Додати _бажання" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "Видалити б_ажання" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "Виберіть результати користувача" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "Всього: %s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "Результати" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "Виберіть каталог призначення для файлу(-ів)" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "Виберіть каталог призначення" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "В черзі" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "В черзі (з пріоритетом)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "В черзі (привілейований)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "Отримання статусу" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "Передавання" #: pynicotine/gtkgui/transfers.py:65 #, fuzzy msgid "Connection closed" msgstr "З'єднання закрито одноранговим вузлом" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "Час очікування з'єднання" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "Користувач вийшов" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "Скасовано" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "Помилка завантаження каталогу" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "Помилка локального файлу" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "Заблоковано" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "Файл не є спільним" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "Очікування вимкнення" #: pynicotine/gtkgui/transfers.py:77 #, fuzzy msgid "File read error" msgstr "Передача файлів" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "В черзі" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "Відсоток" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "Час, що минув" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "Час, що залишився" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 #, fuzzy msgid "_Open File" msgstr "_Відкрити список" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "Відкрити в менеджері _файлів" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_Пошук" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "Очистити все" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "Виберіть передачі користувачів" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_Скасувати" #: pynicotine/gtkgui/uploads.py:70 #, fuzzy msgid "Finished / Cancelled / Failed" msgstr "Завершено / Перервано / Не вдалося" #: pynicotine/gtkgui/uploads.py:71 #, fuzzy msgid "Finished / Cancelled" msgstr "Готово / відфільтровано" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "Помилка" #: pynicotine/gtkgui/uploads.py:76 #, fuzzy msgid "User Logged Off" msgstr "Користувач вийшов" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "Очистити чергу вивантажень" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "Ви дійсно хочете очистити всі вивантаження в черзі?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "Очистити всі вивантаження" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "Ви дійсно хочете очистити всі вивантаження?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_Зберегти список спільних каталогів на диск" #: pynicotine/gtkgui/userbrowse.py:288 #, fuzzy msgid "Upload Folder & Subfolders…" msgstr "Вивантажити каталог з підкаталогом(-ами)…" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "Копіювати _шлях до каталогу" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "Завантажити каталог та підкаталог(-и)" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "Завантажити каталог та підкаталог(-и) до…" #: pynicotine/gtkgui/userbrowse.py:325 #, fuzzy msgid "File Name" msgstr "Ім'я файлу" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "_Вивантажити файл(-и)…" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "Вивантажити каталог…" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "Завантажити каталог _до…" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "" "Список спільних файлів користувача порожній. Або користувач нічим не " "ділиться, або він ділиться файлами приватно." #: pynicotine/gtkgui/userbrowse.py:599 #, fuzzy msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "Неможливо запитати спільні файли від користувача. Або користувач поза " "мережею, у вас обох закритий порт прослуховування, або виникла тимчасова " "проблема з підключенням." #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "Виберіть розміщення для завантаження кількох каталогів" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "Вивантажити каталог (з підкаталогами) користувачеві" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "Вивантажити каталог користувачеві" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "Введіть ім’я користувача, якому ви хочете вивантажити:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 #, fuzzy msgid "_Upload" msgstr "Вивантаження" #: pynicotine/gtkgui/userbrowse.py:1124 #, fuzzy msgid "Select Destination Folder for Files" msgstr "Виберіть каталог призначення для файлу(-ів)" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "Вивантажити файл(-и) користувачеві" #: pynicotine/gtkgui/userinfo.py:363 #, fuzzy msgid "Copy Picture" msgstr "Копіювати Зображення" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "Зберегти зображення" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "Не вдалося завантажити зображення для користувача %(user)s: %(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "Неможливо запитати інформацію від користувача. Або ви обидва маєте закритий " "порт прослуховування, або користувач перебуває поза мережею, або є тимчасові " "проблеми зі з'єднанням." #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Remove _Buddy" msgstr "Видалити б_ажання" #: pynicotine/gtkgui/userinfo.py:529 #, fuzzy msgid "Add _Buddy" msgstr "Додати _друга" #: pynicotine/gtkgui/userinfo.py:533 #, fuzzy msgid "Unban User" msgstr "Блокувати користувача" #: pynicotine/gtkgui/userinfo.py:537 #, fuzzy msgid "Unignore User" msgstr "Ігнорувати користувача" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "Так" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "Немає" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "Будь ласка, введіть кількість днів." #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "" "Подарувати дні ваших привілеїв Soulseek користувачеві %(user)s " "(%(days_left)s):" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "Залишилося %(days)s днів" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "Подарувати привілеї" #: pynicotine/gtkgui/userinfo.py:722 #, fuzzy msgid "_Give Privileges" msgstr "Подарувати привілеї" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "Закрити" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_Так" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_Гаразд" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "Виберіть файл" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "Виберіть каталог" #: pynicotine/gtkgui/widgets/filechooser.py:159 #, fuzzy msgid "_Select" msgstr "Вибрати все" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "Виберіть зображення" #: pynicotine/gtkgui/widgets/filechooser.py:183 #, fuzzy msgid "All images" msgstr "Всі зображення" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "Зберегти як…" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(Немає)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 #, fuzzy msgid "Close Tab" msgstr "_Закрити вкладинку" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "Закрити всі вкладки?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "Ви дійсно хочете закрити всі вкладки?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, fuzzy, python-format msgid "%i Unread Tab(s)" msgstr "Непрочитані вкладинки" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 #, fuzzy msgid "All Tabs" msgstr "Всі вкладки" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 #, fuzzy msgid "Re_open Closed Tab" msgstr "_Закрити вкладинку" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "Вибрано %s файл(-ів)" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_Перегляд файлів" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 #, fuzzy msgid "_Add Buddy" msgstr "Д_одати друга" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "Показати IP-_адресу" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "Приватні кімнати" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "Видалити з приватної кімнати %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "Додати до приватної кімнати %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "Видалити як оператора %s" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "Додати як оператора %s" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- старі повідомлення вище ---" #: pynicotine/gtkgui/widgets/theme.py:209 #, fuzzy msgid "Executable" msgstr "Виконано: %s" #: pynicotine/gtkgui/widgets/theme.py:210 #, fuzzy msgid "Audio" msgstr "Аудіо" #: pynicotine/gtkgui/widgets/theme.py:211 #, fuzzy msgid "Image" msgstr "Зображення" #: pynicotine/gtkgui/widgets/theme.py:212 #, fuzzy msgid "Archive" msgstr "Архів" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "Різне" #: pynicotine/gtkgui/widgets/theme.py:214 #, fuzzy msgid "Video" msgstr "відео" #: pynicotine/gtkgui/widgets/theme.py:215 #, fuzzy msgid "Document" msgstr "Документ/Текст" #: pynicotine/gtkgui/widgets/theme.py:216 #, fuzzy msgid "Text" msgstr "Текст" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "Помилка завантаження спеціального значка %(path)s: %(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "Приховати Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "Показати Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "Стовпець №%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "Незгрупований" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "Групувати за каталогом" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "Групувати за користувачем" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "Ви дійсно хочете вийти? %s" #: pynicotine/headless/application.py:78 #, fuzzy, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "" "Користувач %s вже існує, а введений пароль недійсний. Будь ласка, виберіть " "інше ім’я користувача, якщо це ваш перший вхід." #: pynicotine/headless/application.py:80 #, fuzzy, python-format msgid "Type %s to log in with another username or password." msgstr "[X0X] обмінів вказано ([X30X] налаштовано)" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 #, fuzzy msgid "Password: " msgstr "Пароль: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "Щоб створити новий обліковий запис Soulseek, введіть бажане ім’я користувача " "та пароль. Якщо у вас уже є обліковий запис, заповніть існуючі дані для " "входу." #: pynicotine/headless/application.py:116 #, fuzzy msgid "The following shares are unavailable:" msgstr "Наступні обміні недоступні:" #: pynicotine/headless/application.py:122 #, fuzzy, python-format msgid "Retry rescan? %s" msgstr "Повторити повторне сканування? %s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "Не вдалося записати у файл журналу \"%(filename)s\": %(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, fuzzy, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "Не вдається зберегти файл %(path)s: %(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "Андорра" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "Об'єднані Арабські Емірати" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "Афганістан" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "Антигуа і Барбуда" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "Ангілья" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "Албанія" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "Вірменія" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "Ангола" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "Антарктида" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "Аргентина" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "Американське Самоа" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "Австрія" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "Австралія" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "Аруба" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "Аландські острови" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "Азербайджан" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "Боснія і Герцеговина" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "Барбадос" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "Бангладеш" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "Бельгія" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "Буркіна-Фасо" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "Болгарія" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "Бахрейн" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "Бурунді" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "Бенін" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "Сен-Бартелемі" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "Бермудські острови" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "Бруней-Даруссалам" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "Болівія" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "Бонайре, Сент-Естатіус і Саба" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "Бразилія" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "Багамські острови" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "Бутан" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "Острів Буве" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "Ботсвана" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "Білорусь" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "Беліз" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "Канада" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "Кокосові (Кілінг) острови" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "Демократична Республіка Конго" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "Центральноафриканська Республіка" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "Конго" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "Швейцарія" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "Кот-Д'Ивуар" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "Острови Кука" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "Чилі" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "Камерун" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "Китай" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "Колумбія" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "Коста-Рика" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "Куба" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "Кабо-Верде" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "Кюрасао" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "Острів Різдва" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "Кіпр" #: pynicotine/networkfilter.py:92 #, fuzzy msgid "Czechia" msgstr "Чехія" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "Німеччина" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "Джібуті" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "Данія" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "Домініка" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "Домініканська республіка" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "Алжир" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "Еквадор" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "Естонія" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "Єгипет" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "Західна Сахара" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "Еритрея" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "Іспанія" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "Ефіопія" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "Європа" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "Фінляндія" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "Фіджі" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "Фолклендські (Мальвінські) острови" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "Мікронезія" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "Фарерські острови" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "Франція" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "Габон" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "Велика Британія" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "Гренада" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "Грузія" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "Французька Гвіана" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "Гернсі" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "Гана" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "Гібралтар" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "Гренландія" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "Гамбія" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "Гвінея" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "Гваделупа" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "Екваторіальна Гвінея" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "Греція" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "Південна Джорджія та Південні Сандвічеві острови" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "Гватемала" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "Гуам" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "Гвінея-Бісау" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "Гайана" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "Гонконг" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "Острови Херда і МакДональда" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "Гондурас" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "Хорватія" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "Гаїті" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "Угорщина" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "Індонезія" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "Ірландія" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "Ізраїль" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "Острів Мен" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "Індія" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "Британська територія в Індійському океані" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "Ірак" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "Іран" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "Ісландія" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "Італія" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "Джерсі" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "Ямайка" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "Йорданія" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "Японія" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "Кенія" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "Киргизстан" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "Камбоджа" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "Кірібаті" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "Коморські острови" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "Сент-Кітс і Невіс" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "Північна Корея" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "Південна Корея" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "Кувейт" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "Кайманові острови" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "Казахстан" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "Лаос" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "Ліван" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "Сент-Люсія" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "Ліхтенштейн" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "Шрі-Ланка" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "Ліберія" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "Лесото" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "Литва" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "Люксембург" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "Латвія" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "Лівія" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "Марокко" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "Монако" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "Молдова" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "Чорногорія" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "Сен-Мартен" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "Мадагаскар" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "Маршаллові острови" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "Північна Македонія" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "Малі" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "М'янма" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "Монголія" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "Макао" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "Північні Маріанські острови" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "Мартініка" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "Мавританія" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "Монтсеррат" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "Мальта" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "Маврикій" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "Мальдіви" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "Малаві" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "Мексика" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "Малайзія" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "Мозамбік" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "Намібія" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "Нова Каледонія" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "Нігер" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "Острів Норфолк" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "Нігерія" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "Нікарагуа" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "Нідерланди" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "Норвегія" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "Непал" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "Науру" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "Ніуе" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "Нова Зеландія" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "Оман" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "Панама" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "Перу" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "Французька Полінезія" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "Папуа-Нова Гвінея" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "Філіппіни" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "Пакистан" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "Польща" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "Сен-П'єр і Мікелон" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "Піткерн" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "Пуерто-Ріко" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "Палестина" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "Португалія" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "Палау" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "Парагвай" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "Катар" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "Реюньон" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "Румунія" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "Сербія" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "Росія" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "Руанда" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "Саудівська Аравія" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "Соломонові острови" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "Сейшельські острови" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "Судан" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "Швеція" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "Сінгапур" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "Свята Олена" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "Словенія" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "Острови Шпіцберген і Ян-Майєн" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "Словацька Республіка" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "Сьєрра-Леоне" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "Сан-Марино" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "Сенегал" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "Сомалі" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "Суринам" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "Південний Судан" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "Сан-Томе і Прінсіпі" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "Сальвадор" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "Сінт-Мартен" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "Сирія" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "Есватіні" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "Острови Теркс і Кайкос" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "Чад" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "Французькі Південні Території" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "Того" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "Таїланд" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "Таджикистан" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "Токелау" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "Тимор-Лешті" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "Туркменістан" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "Туніс" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "Тонга" #: pynicotine/networkfilter.py:262 #, fuzzy msgid "Türkiye" msgstr "Туреччина" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "Тринідад і Тобаго" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "Тувалу" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "Тайвань" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "Танзанія" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "Україна" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "Уганда" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "Малі віддалені острови США" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "Сполучені Штати Америки" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "Уругвай" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "Узбекистан" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "Ватикан" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "Сент-Вінсент і Гренадіни" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "Венесуела" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "Британські Віргінські острови" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "Віргінські острови США" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "В'єтнам" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "Вануату" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "Уолліс і Футуна" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "Самоа" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "Ємен" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "Майотта" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "Південна Африка" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "Замбія" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "Зімбабве" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "Помилка синтезу мовлення для повідомлення: %s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm: будь ласка, надайте своє ім’я користувача Last.fm і ключ API" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 #, fuzzy msgid "Now Playing Error" msgstr "Помилка \"Зараз відтворюється\"" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm: не вдалося підключитися до Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "" "Last.fm: не вдалося отримати останній трек від Audioscrobbler: %(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: Не вдалося знайти відповідний програвач MPRIS" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "" "Знайдено кілька програвачів MPRIS: %(players)s. Використання: %(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "Автовизначений програвач MPRIS: %s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS: Сталася помилка під час запиту %(player)s: %(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz: будь ласка, вкажіть своє ім’я користувача ListenBrainz" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz: не вдалося підключитися до ListenBrainz: %(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz: Ви, здається, зараз нічого не слухаєте" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "" "ListenBrainz: не вдалося отримати поточний трек від ListenBrainz: %(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 #, fuzzy msgid "Network Filters" msgstr "Пошуки в мережі" #: pynicotine/plugins/core_commands/__init__.py:44 #, fuzzy msgid "List available commands" msgstr "Вбудовані команди" #: pynicotine/plugins/core_commands/__init__.py:49 #, fuzzy msgid "Connect to the server" msgstr "Не вдається підключитися до сервера. Причина: %s" #: pynicotine/plugins/core_commands/__init__.py:53 #, fuzzy msgid "Disconnect from the server" msgstr "Відключено від сервера %(host)s: %(port)s" #: pynicotine/plugins/core_commands/__init__.py:58 #, fuzzy msgid "Toggle away status" msgstr "Перемикає ваш статус відсутності" #: pynicotine/plugins/core_commands/__init__.py:62 #, fuzzy msgid "Manage plugins" msgstr "Увімкнути плагіни" #: pynicotine/plugins/core_commands/__init__.py:74 #, fuzzy msgid "Clear chat window" msgstr "Очистіть вікно чату" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "Скажіть щось від третьої особи" #: pynicotine/plugins/core_commands/__init__.py:87 #, fuzzy msgid "Announce the song currently playing" msgstr "Оголосити пісню, яка зараз грає" #: pynicotine/plugins/core_commands/__init__.py:94 #, fuzzy msgid "Join chat room" msgstr "Приєднатися до кімнати" #: pynicotine/plugins/core_commands/__init__.py:102 #, fuzzy msgid "Leave chat room" msgstr "Залишити поточну кімнату" #: pynicotine/plugins/core_commands/__init__.py:110 #, fuzzy msgid "Say message in specified chat room" msgstr "Скажіть повідомлення у вказаній кімнаті чату" #: pynicotine/plugins/core_commands/__init__.py:117 #, fuzzy msgid "Open private chat" msgstr "Приватний чат" #: pynicotine/plugins/core_commands/__init__.py:125 #, fuzzy msgid "Close private chat" msgstr "Закрийте поточний приватний чат" #: pynicotine/plugins/core_commands/__init__.py:133 #, fuzzy msgid "Request user's client version" msgstr "Запит інформації про користувача" #: pynicotine/plugins/core_commands/__init__.py:142 #, fuzzy msgid "Send private message to user" msgstr "Надіслати приватне повідомлення користувачу" #: pynicotine/plugins/core_commands/__init__.py:150 #, fuzzy msgid "Add user to buddy list" msgstr "Додати користувача до свого списку друзів" #: pynicotine/plugins/core_commands/__init__.py:158 #, fuzzy msgid "Remove buddy from buddy list" msgstr "Видалити користувача зі свого списку друзів" #: pynicotine/plugins/core_commands/__init__.py:166 #, fuzzy msgid "Browse files of user" msgstr "Перегляд файлів користувача 'user'" #: pynicotine/plugins/core_commands/__init__.py:175 #, fuzzy msgid "Show user profile information" msgstr "Показати інформацію профілю користувача" #: pynicotine/plugins/core_commands/__init__.py:183 #, fuzzy msgid "Show IP address or username" msgstr "Показати IP користувача" #: pynicotine/plugins/core_commands/__init__.py:190 #, fuzzy msgid "Block connections from user or IP address" msgstr "Блокувати підключення від користувача або IP-адреси" #: pynicotine/plugins/core_commands/__init__.py:197 #, fuzzy msgid "Remove user or IP address from ban lists" msgstr "Видалити користувача зі списку блокувань" #: pynicotine/plugins/core_commands/__init__.py:204 #, fuzzy msgid "Silence messages from user or IP address" msgstr "Вимкнення повідомлень від користувача або IP-адреси" #: pynicotine/plugins/core_commands/__init__.py:212 #, fuzzy msgid "Remove user or IP address from ignore lists" msgstr "Видалити користувача зі списку ігнорування" #: pynicotine/plugins/core_commands/__init__.py:220 #, fuzzy msgid "Add share" msgstr "Додати _бажання" #: pynicotine/plugins/core_commands/__init__.py:226 #, fuzzy msgid "Remove share" msgstr "Видалити б_ажання" #: pynicotine/plugins/core_commands/__init__.py:233 #, fuzzy msgid "List shares" msgstr "Пересканування спільних каталогів" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "Пересканування спільних каталогів" #: pynicotine/plugins/core_commands/__init__.py:246 #, fuzzy msgid "Start global file search" msgstr "Запустіть глобальний пошук файлів" #: pynicotine/plugins/core_commands/__init__.py:254 #, fuzzy msgid "Search files in joined rooms" msgstr "Пошук файлів і каталоргів (точна відповідність)" #: pynicotine/plugins/core_commands/__init__.py:262 #, fuzzy msgid "Search files of all buddies" msgstr "Пошук файлів і каталоргів (точна відповідність)" #: pynicotine/plugins/core_commands/__init__.py:270 #, fuzzy msgid "Search a user's shared files" msgstr "Шукати в спільних ресурсах користувача за \"запитом\"" #: pynicotine/plugins/core_commands/__init__.py:296 #, fuzzy, python-format msgid "Listing %(num)i available commands:" msgstr "Список %(num)i доступних команд:" #: pynicotine/plugins/core_commands/__init__.py:298 #, fuzzy, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "Список %(num)i доступних команд, що відповідають \"%(query)s\":" #: pynicotine/plugins/core_commands/__init__.py:311 #, fuzzy, python-format msgid "Type %(command)s to list similar commands" msgstr "Введіть %(command)s, щоб отримати список подібних команд" #: pynicotine/plugins/core_commands/__init__.py:314 #, fuzzy, python-format msgid "Type %(command)s to list available commands" msgstr "Введіть %(command)s, щоб отримати список доступних команд" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, fuzzy, python-format msgid "Not joined in room %s" msgstr "%s приєднався до кімнати" #: pynicotine/plugins/core_commands/__init__.py:404 #, fuzzy, python-format msgid "Not messaging with user %s" msgstr "Не ведеться листування з користувачем %s" #: pynicotine/plugins/core_commands/__init__.py:408 #, fuzzy, python-format msgid "Closed private chat of user %s" msgstr "Закрийте поточний приватний чат" #: pynicotine/plugins/core_commands/__init__.py:479 #, fuzzy, python-format msgid "Banned %s" msgstr "Заблоковано" #: pynicotine/plugins/core_commands/__init__.py:493 #, fuzzy, python-format msgid "Unbanned %s" msgstr "Блокувати користувача" #: pynicotine/plugins/core_commands/__init__.py:506 #, fuzzy, python-format msgid "Ignored %s" msgstr "Ігноровані користувачі" #: pynicotine/plugins/core_commands/__init__.py:520 #, fuzzy, python-format msgid "Unignored %s" msgstr "Ігнорувати користувача" #: pynicotine/plugins/core_commands/__init__.py:556 #, fuzzy, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "%(num_listed)s обмінів в списку (%(num_total)s налаштовано)" #: pynicotine/plugins/core_commands/__init__.py:568 #, fuzzy, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "Не можу обмінятися недоступною папкою \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:571 #, fuzzy, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "" "Додано %(group_name)s обмін \"%(virtual_name)s\" (потрібне повторне " "сканування)" #: pynicotine/plugins/core_commands/__init__.py:582 #, fuzzy, python-format msgid "No share with name \"%s\"" msgstr "Немає обміну з назвою \"%s\"" #: pynicotine/plugins/core_commands/__init__.py:585 #, fuzzy, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "Видалено обмін \"%s\" (потрібне повторне сканування)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "Завантаження системи плагінів" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "" "Не вдається завантажити плагін %(name)s. Назва каталога плагіна містить " "недійсні символи: %(characters)s" #: pynicotine/pluginsystem.py:540 #, fuzzy, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "Конфліктна команда %(interface)s у плагіні %(name)s: %(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "Завантажений плагін %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Не вдається завантажити плагін %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "Вивантажений плагін %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "Не вдається вивантажити плагін %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "Сбій плагіна %(module)s з помилкою %(errortype)s: %(error)s.\n" "Отчет: %(trace)s" #: pynicotine/pluginsystem.py:793 #, fuzzy msgid "No description" msgstr "Самоопис" #: pynicotine/pluginsystem.py:873 #, fuzzy, python-format msgid "Missing %s argument" msgstr "Відсутній аргумент %s." #: pynicotine/pluginsystem.py:882 #, fuzzy, python-format msgid "Invalid argument, possible choices: %s" msgstr "Недійсна відповідь: %s" #: pynicotine/pluginsystem.py:887 #, fuzzy, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "Використання: %(command)s %(args)s" #: pynicotine/pluginsystem.py:926 #, fuzzy, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "" "Невідома команда: %(command)s. Введіть %(help_command)s, щоб отримати список " "доступних команд." #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 #, fuzzy msgid "No UPnP devices found" msgstr "Пристроїв UPnP не знайдено" #: pynicotine/portmapper.py:594 #, fuzzy, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "UPnP: не вдалося переслати зовнішній порт %(external_port)s: %(error)s" #: pynicotine/portmapper.py:608 #, fuzzy, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "UPnP: зовнішній порт %(external_port)s успішно перенаправлено на локальну IP-" "адресу %(ip_address)s порт %(local_port)s" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "Приватне повідомлення від користувача \"%(user)s\": %(message)s" #: pynicotine/search.py:328 #, fuzzy, python-format msgid "Searching for wishlist item \"%s\"" msgstr "Пошук елемента списку бажань \"%s\"" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "Період очікування списку бажань встановлено на %s секунд" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "Користувач %(user)s шукає \"%(query)s\", знайдено %(num)i результатів" #: pynicotine/shares.py:272 #, fuzzy msgid "Rebuilding shares…" msgstr "Пересканування спільних каталогів…" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "Пересканування спільних каталогів…" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "Пересканування завершено: знайдено %(num)s каталог(-ів)" #: pynicotine/shares.py:297 #, fuzzy, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "Під час пересканування спільних ресурсів сталася серйозна помилка. Якщо " "проблема не зникне, видаліть %(dir)s/*.db і повторіть спробу. Якщо це не " "допомогло, надішліть звіт про помилку з включеною трасуванням стека: " "%(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "Помилка під час сканування файлу %(path)s: %(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "Помилка під час сканування каталога %(path)s: %(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "Помилка під час сканування метаданих для файлу %(path)s: %(error)s" #: pynicotine/shares.py:1052 #, fuzzy, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "Повторне сканування перервано через недоступність спільних ресурсів" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "Користувач %(user)s переглядає ваш список спільних файлів" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "Не вдалося отримати спільний каталог %(folder)s: %(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "" "Неможливо прочитати базу даних спільних ресурсів. Будь ласка, перескануйте " "спільні ресурси. Помилка: %s" #: pynicotine/slskproto.py:492 #, fuzzy, python-format msgid "Specified network interface '%s' is not available" msgstr "Зазначений мережевий інтерфейс \"%s\" не існує" #: pynicotine/slskproto.py:503 #, fuzzy, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "Не вдається прослухати через порт %(port)s. Переконайтеся, що жодна інша " "програма не використовує його, або виберіть інший порт. Помилка: %(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "Прослуховування через порт: %i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "Не вдається підключитися до сервера %(host)s:%(port)s: %(error)s" #: pynicotine/slskproto.py:1128 #, fuzzy, python-format msgid "Reconnecting to server in %i seconds" msgstr "Автоматичне підключення до сервера під час запуску" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "З'єднання з %(host)s: %(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "Підключено до сервера %(host)s: %(port)s, вхід…" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "Відключено від сервера %(host)s: %(port)s" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "Хтось увійшов у ваш обліковий запис Soulseek в іншому місці" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Вивантаження завершено: користувач %(user)s, IP-адреса %(ip)s, файл %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "Вивантаження перервано, користувач %(user)s файл %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "Помилка вивантаження введення-виводу: %s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "" "Вивантаження розпочато: користувач %(user)s, IP-адреса %(ip)s, файл %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "Не вдається створити каталог \"%(folder)s\", помилка: %(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "Збій завантаження спільних ресурсів з диска: %(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "" "Список спільних файлів для користувача \"%(user)s\" збережено на %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "" "Не вдається зберегти спільні ресурси, \"%(user)s\", повідомляється про " "помилку: %(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "Зображення збережено у %s" #: pynicotine/userinfo.py:162 #, fuzzy, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "Не вдається зберегти %(filename)s: %(error)s" #: pynicotine/userinfo.py:189 #, fuzzy, python-format msgid "User %(user)s is viewing your profile" msgstr "Користувач %(user)s читає вашу інформацію про користувача" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "Не вдається підключитися до сервера. Причина: %s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "Не вдається підключитися" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "" "Не вдається отримати IP-адресу користувача %s, оскільки цей користувач не в " "мережі" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "IP-адреса користувача %(user)s: %(ip)s, порт %(port)i%(country)s" #: pynicotine/users.py:348 #, fuzzy msgid "Soulseek Announcement" msgstr "Оголошення Soulseek" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i привілейованих користувачів" #: pynicotine/users.py:366 #, fuzzy msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "" "У вас немає привілеїв. Привілеї не є обов’язковими, але дозволяють ставати " "завантаженням в чергу перед непривілейованими користувачами." #: pynicotine/users.py:372 #, fuzzy, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Привелеїв на завантаження залишилося %(days)i днів, %(hours)i годин, " "%(minutes)i хвилин, %(seconds)i секунд." #: pynicotine/users.py:390 #, fuzzy msgid "Your password has been changed" msgstr "Ваш пароль був змінений. Пароль %s" #: pynicotine/users.py:390 #, fuzzy msgid "Password Changed" msgstr "Зміна пароля відхилена" #: pynicotine/utils.py:576 #, fuzzy, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "Не вдається зберегти файл %(path)s: %(error)s" #: pynicotine/utils.py:623 #, fuzzy, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "Не вдається зберегти %(filename)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "Під час читання файлу %(filename)s сталася помилка: %(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "Спроба завантажити резервну копію файлу %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "Не вдається створити резервну копію файлу %(path)s: %(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "Не вдається зберегти файл %(path)s: %(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "Не вдається відновити попередній файл %(path)s: %(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "Додати друга…" #: pynicotine/gtkgui/ui/chatrooms.ui:27 #, fuzzy msgid "Search activity log…" msgstr "Пошуковий термін…" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 #, fuzzy msgid "Search chat log…" msgstr "Пошуковий термін…" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 #, fuzzy msgid "Send message…" msgstr "Відправити повідомлення…" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "Перемкнути режиму синтезу мовлення" #: pynicotine/gtkgui/ui/chatrooms.ui:121 #, fuzzy msgid "Chat Room Command Help" msgstr "Довідка команди чат-кімнати" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_Журнал" #: pynicotine/gtkgui/ui/chatrooms.ui:208 #, fuzzy msgid "Room Wall" msgstr "Стіна кімнати" #: pynicotine/gtkgui/ui/chatrooms.ui:223 #, fuzzy msgid "R_oom Wall" msgstr "Стіна кімнати" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 #, fuzzy msgid "Created by" msgstr "Створений" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 #, fuzzy msgid "Translated by" msgstr "Переклав" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 #, fuzzy msgid "License" msgstr "Ліцензія" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_Попередній" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "Ласкаво просимо до Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_Налаштувати…" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "" "Якщо потрібне ім’я користувача вже зайнято, вам буде запропоновано його " "змінити." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 #, fuzzy msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "" "Щоб підключитися до інших користувачів Soulseek, на вашому роутері потрібно " "налаштувати перенаправлення порту на ваш комп'ютер." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "" "Якщо ваш порт прослуховування закритий, ви зможете підключатися лише до тих " "користувачів, чиї порти прослуховування відкриті." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 #, fuzzy msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "" "За потреби виберіть інший порт прослуховування нижче. Це також можна зробити " "пізніше в налаштуваннях." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "Завантажити файли в каталог" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "Спільні каталоги" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 #, fuzzy msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Користувачі Soulseek зможуть завантажувати з ваших спільних ресурсів. Робіть " "внесок у мережу Soulseek, ділячись своєю колекцією та повторно ділячись тим, " "що ви завантажили від інших користувачів." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Ви готові до використання Nicotine+!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 #, fuzzy msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "" "Soulseek - це незашифрований протокол, який не призначений для захищеного " "спілкування." #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "Пожертвування на Soulseek надає вам привілеї на певний період часу. Якщо у " "вас є привілеї, ваші завантаження будуть стояти в черзі перед " "непривілейованими користувачами." #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 #, fuzzy msgid "Previous File" msgstr "Попередній файл" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 #, fuzzy msgid "Next File" msgstr "Наступний файл" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "Ім'я" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "Остання швидкість" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_Експорт…" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "Гарячі клавіши" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "Загальне" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "З'єднатися" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "Від’єднатися" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "Пересканування спільних каталогів" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "Показати панель журналу" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 #, fuzzy msgid "Confirm Quit" msgstr "Налаштувати чати" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "Вийти" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "Меню" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "Відкрити Головне меню" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "Відкрити контекстне меню" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "Вкладинки" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "Змінити головну вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "Перейти на попередню додаткову вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "Перейдіть на наступну додаткову вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 #, fuzzy msgid "Reopen Closed Secondary Tab" msgstr "Закрити додаткову вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "Закрити додаткову вкладку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "Списки" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "Копіювати вибрану клітинку" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "Видалити виділений рядок" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "Редагувати" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "Вирізати" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "Вставити" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "Вставити Emoji" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "Вибрати все" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "Знайти" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "Знайти наступне співпадіння" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "Знайти попередне співпадіння" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "Передача файлів" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "Відновити / Повторити передачу" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "Призупинення / Переривання передачі" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "Завантажити / Вивантажити до" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "Зберегти список на диск" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "Оновити" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "Розгорнути/Згорнути все" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "Назад до батьківського каталога" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "Пошук файлів" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "Фільтри результатів" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "Поточна сесія" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "Завершено завантаження" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "Завантажений розмір" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "Завершені вивантаження" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "Вивантажений розмір" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "Всього" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_Скинути…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "" "Елементи списку бажань автоматично шукаються через регулярні проміжки часу " "для виявлення файлів." #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "Додати бажання…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "Очистити все…" #: pynicotine/gtkgui/ui/downloads.ui:138 #, fuzzy msgid "Clear All Finished/Filtered Downloads" msgstr "Очистити всі завершені та відфільтровані завантаження." #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "Очистити завершені" #: pynicotine/gtkgui/ui/downloads.ui:169 #, fuzzy msgid "Clear Specific Downloads" msgstr "Очистити всі завантаження" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "Очистити _все…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "Особисті інтереси" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "Додайте те, що вам подобається…" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "Особисті антипатії" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "Додайте те, що вам не подобається…" #: pynicotine/gtkgui/ui/interests.ui:143 #, fuzzy msgid "Refresh Recommendations" msgstr "Оновити список рекомендацій" #: pynicotine/gtkgui/ui/mainwindow.ui:26 #, fuzzy msgid "Main Menu" msgstr "Відкрити Головне меню" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "Кімната…" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "Ім'я користувача…" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "Пошуковий термін…" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "Шаблони пошуку: зі словом = слово, без слова = -слово, часткове слово = *ово" #: pynicotine/gtkgui/ui/mainwindow.ui:95 #, fuzzy msgid "Search Scope" msgstr "Сфера пошуку" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_Список бажань" #: pynicotine/gtkgui/ui/mainwindow.ui:163 #, fuzzy msgid "Configure Searches" msgstr "Налаштувати пошук" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "" "Введіть пошуковий термін, щоб шукати файли, які зробили спільними інші " "користувачі в мережі Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 #, fuzzy msgid "File Grouping Mode" msgstr "Режим групування файлів" #: pynicotine/gtkgui/ui/mainwindow.ui:402 #, fuzzy msgid "Configure Downloads" msgstr "Налаштувати завантаження" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "" "Файли, які ви завантажуєте від інших користувачів, знаходяться тут у черзі, " "і їх можна призупинити та відновити за запитом" #: pynicotine/gtkgui/ui/mainwindow.ui:641 #, fuzzy msgid "Configure Uploads" msgstr "Налаштувати вивантаження" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "" "Спроби користувачів завантажити ваші спільні файли стоять у черзі й " "керуються тут" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_Відкрити список" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "" "Відкриває локальний список спільних файлів, які раніше були збережені на " "диску" #: pynicotine/gtkgui/ui/mainwindow.ui:810 #, fuzzy msgid "Configure Shares" msgstr "_Налаштувати спільні каталоги" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "" "Введіть ім’я користувача, чиї спільні файли ви хочете переглянути. Ви також " "можете зберегти список на диск і перевірити його пізніше." #: pynicotine/gtkgui/ui/mainwindow.ui:956 #, fuzzy msgid "_Personal Profile" msgstr "Особисті антипатії" #: pynicotine/gtkgui/ui/mainwindow.ui:978 #, fuzzy msgid "Configure Account" msgstr "Налаштувати чати" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "" "Введіть ім’я користувача, щоб переглянути його опис, інформацію та особисте " "зображення" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "_Історія чату" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 #, fuzzy msgid "Configure Chats" msgstr "Налаштувати чати" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "Введіть ім’я користувача, щоб почати текстову розмову з ним" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 #, fuzzy msgid "_Message All" msgstr "Повідомлення (лоток)" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 #, fuzzy msgid "Configure Ignored Users" msgstr "Ігноровані користувачі" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "" "Додайте користувачів як друзів, щоб ділитися з ними певними каталогами та " "отримувати сповіщення, коли вони в мережі" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 #, fuzzy msgid "Join or create room…" msgstr "Приєднайтеся або створіть кімнату…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "" "Приєднайтеся до наявної кімнати чату або створіть нову кімнату для " "спілкування з іншими користувачами мережі Soulseek" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 #, fuzzy msgid "Configure User Profile" msgstr "Переглянути профіль користувача" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 #, fuzzy msgid "Search log…" msgstr "Журнал пошуку…" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "З'єднання" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 #, fuzzy msgid "Downloading (Speed / Active Users)" msgstr "Завантаження (швидкість / активні користувачі)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 #, fuzzy msgid "Uploading (Speed / Active Users)" msgstr "Вивантаження (швидкість / активні користувачі)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 #, fuzzy msgid "Search chat history…" msgstr "Пошуковий термін…" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "Обмеження швидкості завантаження" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 #, fuzzy msgid "Unlimited download speed" msgstr "Необмежена швидкість завантаження" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 #, fuzzy msgid "Use download speed limit (KiB/s):" msgstr "Альтернативне обмеження швидкості завантаження (КБ/с):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 #, fuzzy msgid "Use alternative download speed limit (KiB/s):" msgstr "Альтернативне обмеження швидкості завантаження (КБ/с):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 #, fuzzy msgid "Search rooms…" msgstr "Пошуковий термін…" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 #, fuzzy msgid "Refresh Rooms" msgstr "Оновити список кімнат" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_Показати стрічку повідомлень публічної кімнати чату" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_Прийняти запрошення в приватну кімнату" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 #, fuzzy msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "Функція стіни кімнати дозволяє користувачам у кімнаті показати іншим " "унікальне повідомлення. Останні повідомлення відображаються вгорі." #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "Встановити повідомлення на стіні…" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "Фільтри результатів пошуку" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "" "Фільтри результатів пошуку використовуються, щоб уточнити, які результати " "пошуку відображаються." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 #, fuzzy msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "Кожен список результатів пошуку має власний фільтр, який можна відкрити, " "натиснувши кнопку «Фільтри результатів». Фільтр складається з кількох полів, " "усі з яких застосовуються при натисканні клавіші Enter у будь-якому з полів. " "Фільтрація застосовується негайно до вже отриманих результатів, а також до " "тих, які ще не надійшли. Щоб знову переглянути повні результати, просто " "очистіть усі фільтри і повторно застосуйте його. Як випливає з назви, фільтр " "результатів пошуку не може розширити початковий пошук, він може лише звузити " "його. Щоб розширити або змінити пошукові терміни, виконайте новий пошук." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 #, fuzzy msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "Як випливає з назви, фільтр результатів пошуку не може розширити початковий " "пошук, він може лише звузити його. Щоб розширити або змінити терміни пошуку, " "виконайте новий пошук." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 #, fuzzy msgid "Result Filter Usage" msgstr "Фільтри результатів" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "Включає текст" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 #, fuzzy msgid "Files, folders and usernames containing this text will be shown." msgstr "Будуть показані файли та каталоги, що містять цей текст." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 #, fuzzy msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "До регістру нечутливе, але порядок слів важливий: \"Спірс Брітні\" не " "показуватиме \"Брітні Спірс\"" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 #, fuzzy msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "Використовуйте | (або труби), щоб відокремити кілька точних фраз. приклад:\n" " Ремікс|Дуб Мікс|Інструментал" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "Не включає текст" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 #, fuzzy msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "" "Як і вище, але файли та каталоги відфільтровуються, якщо текст збігається." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "Фільтрує файли на основі їх розширення." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 #, fuzzy msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "Можна вказати кілька розширень файлів, що, у свою чергу, розширить список " "результатів.\n" " Приклад: flac|wav|ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 #, fuzzy msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "Також можна інвертувати фільтр, вказуючи розширення файлів, які ви не хочете " "бачити в результатах.\n" " Приклад: !mp3|!jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "Розмір файлу" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "Фільтрує файли на основі їх розміру." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 #, fuzzy msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "" "За замовчуванням використовуваною одиницею є байти, і файли, що перевищують " "або дорівнюють вказаному значенню." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 #, fuzzy msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "Додайте b, k, m або g (альтернативно kib, mib або gib), щоб вказати байт, " "кібібайт, мебібайт або гібібайт:\n" " <1024k знайде файли розміром 1024 кібібайт (тобто 1 мебібайт) або менше." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 #, fuzzy msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "Додайте знак \"=\" до значення, щоб указати точну відповідність:\n" " =1024 відповідає лише файлам розміром 1024 байти (тобто 1 кібібайт)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 #, fuzzy msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "Додайте знак \"=\" до значення, щоб указати точну відповідність:\n" " =1024 відповідає лише файлам розміром 1024 байти (тобто 1 кібібайт)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "Додайте < або > перед значенням, щоб знайти файли менші/більші за вказане " "значення. Використовуйте пробіл між умовами, щоб включити діапазон:\n" " >10.5m <1g щоб показати файли більші за 10.5 МіБ, але менші за 1 ГіБ." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 #, fuzzy msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "" "Для зручності також можна використовувати варіанти kb, mb і gb для відоміших " "одиниць кіло-, мега- та гігабайт." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "Фільтрує файли на основі їх бітрейту." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 #, fuzzy msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "" "Значення слід вводити лише як цифри. Одиницею завжди є Кбіт/с (кілобіт на " "секунду)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "Як і Розмір файлу (вище), можна використовувати оператори =, !, <, >, <= або " ">=, та вказувати кілька умов, наприклад, щоб показати файли з бітрейтом " "щонайменше 256 Кб/с із максимальним бітрейтом 1411 Кб/с:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 #, fuzzy msgid "Filters files based upon their duration." msgstr "Фільтрує файли на основі їх бітрейту." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 #, fuzzy msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "За замовчуванням буде зіставлено файли, тривалість яких перевищує або " "дорівнює введеній тривалості, якщо не використовується оператор (=, !, < або " ">)." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "Введіть значення у секундах або використовуйте формати часу MM:SS та HH:MM:" "SS:\n" " =53 показує файли, тривалість яких приблизно 53 секунди.\n" " >5:30, щоб показати файли тривалістю понад 5 з половиною хвилин.\n" " <5:30:00 показує файли, які тривають менше ніж 5 з половиною годин." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 #, fuzzy msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "Кілька умов можна вказати за допомогою | роздільники труб:\n" " >6:00|<12:00, щоб показати файли тривалістю від 6 до 12 хвилин.\n" " !9:54|!8:43|!7:32, щоб приховати певні файли з результатів.\n" " =5:34|=4:23|=3:05, щоб включити файли з певною тривалістю." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "Фільтрує файли на основі географічного розташування користувачів згідно з " "кодами країн, визначеними ISO 3166-2:\n" " US покаже результати тільки від користувачів з ip-адресами у Сполучених " "Штатах.\n" " !GB приховає результати, які надходять від користувачів у Великій " "Британії." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 #, fuzzy msgid "Multiple countries can be specified with commas or spaces." msgstr "Кілька країн можна вказати через кому або пробіли." #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "Вільний слот" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 #, fuzzy msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "" "Показувати лише ті результати від користувачів, у яких є принаймні один " "вільний слот для вивантаження. Цей фільтр застосовується негайно." #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "Обмеження швидкості вивантаження" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 #, fuzzy msgid "Unlimited upload speed" msgstr "Необмежена швидкість вивантаження" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 #, fuzzy msgid "Use upload speed limit (KiB/s):" msgstr "Альтернативне обмеження швидкості вивантаження (КіБ/с):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 #, fuzzy msgid "Use alternative upload speed limit (KiB/s):" msgstr "Альтернативне обмеження швидкості вивантаження (КіБ/с):" #: pynicotine/gtkgui/ui/privatechat.ui:76 #, fuzzy msgid "Private Chat Command Help" msgstr "Довідка команди приватного чату" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "Включає текст…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Включити до результатів, шляхи до файлів яких містять вказаний текст. Можна " "вказати кілька фраз і слів, наприклад точна фраза|музика|термін|точна фраза " "друга" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "Не включає текст…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "Виключити з результатів, шляхи до файлів яких містять вказаний текст. Можна " "вказати кілька фраз і слів, наприклад точна фраза|музика|термін|точна фраза " "друга" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "Тип файлу…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 #, fuzzy msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "Тип файлу, напр. flac|wav|ape або !mp3|!m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "Розмір файлу…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 #, fuzzy msgid "File size, e.g. >10.5m <1g" msgstr "Розмір файлу, напр. >10,5м <1г" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "Бітрейт…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 #, fuzzy msgid "Bitrate, e.g. 256 <1412" msgstr "Бітрейт, напр. 256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 #, fuzzy msgid "Duration…" msgstr "Тривалість…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 #, fuzzy msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "Тривалість, напр. 2:20|!3:30|=4:40" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "Код країни…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 #, fuzzy msgid "Country code, e.g. US ES or !DE !GB" msgstr "Код країни, напр. US|GB|ES або !DE|!GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "" "Заборонити користувачам доступ до ваших спільних файлів на основі імені " "користувача, IP-адреси або країни." #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "Коди країн для блокування (розділені комами):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "Коди мають бути у форматі ISO 3166-2." #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "Використовуйте власне повідомлення про геоблокування:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "Використовуйте власне повідомлення про блокування:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP-адреси" #: pynicotine/gtkgui/ui/settings/chats.ui:50 #, fuzzy msgid "Enable spell checker" msgstr "Увімкнути перевірку орфографії (потрібно перезапустити)" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "Відновлювати раніше відкриті приватні чати під час запуску" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "" "Увімкнути відповіді на приватні повідомлення, схожі на CTCP (клієнтська " "версія)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "Кількість останніх повідомлень приватного чату для відображення:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "Кількість останніх повідомлень кімнати чату для відображення:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "Автодоповнення чату" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "Увімкнути автодоповнення табуляцією" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "Увімкнути випадаючий список автодоповнення" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "" "Мінімальна кількість символів, необхідних для відображення випадаючого меню:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "Дозволені автодоповнення чату:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "Імена друзів" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "Імена користувачів чат-кімнати" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "Назви кімнат" #: pynicotine/gtkgui/ui/settings/chats.ui:359 #, fuzzy msgid "Commands" msgstr "Команда" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "Позначки часу" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "Формат приватної кімнати:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "За замовчуванням" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "Формат чату:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "Синтез мовлення" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "Увімкнути синтез мовлення" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "Команда синтезу мовлення:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "Повідомлення в приватному чаті:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "Повідомлення чату:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "Цензура" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "Увімкнути цензування текстових шаблонів" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "Автозаміна" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "Увімкнути автоматичну заміну слів" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "" "Автоматичне очищення завершених/відфільтрованих завантажень зі списку передач" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "Зберігайте завершені завантаження у підкаталогах імені користувача" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "Двічі клацніть для завантаження:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 #, fuzzy msgid "Allow users to send you any files:" msgstr "Дозволити цим користувачам надсилати вам файли:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "Каталоги" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "Завершені завантаження:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "Незавершені завантаження:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 #, fuzzy msgid "Received files:" msgstr "Отримано файли:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "Події" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "" "Виконати команду після завершення завантаження файлу ($ для шляху до файлу):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "" "Виконати команду після завершення завантаження каталогу ($ для шляху до " "каталогу):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "Фільтри завантаження" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "Увімкнути фільтри завантаження" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "Додати" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "Встановити параметри за замовчуванням" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "Перевірити фільтри" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "Неперевірено" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "" "Ігнорувати повідомлення чату та результати пошуку від користувачів на основі " "імені користувача чи IP-адреси." #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "Журналювати чати за умовчанням" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "Журналювати приватні чати за замовчуванням" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "Журналювати передачі у файл" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "Журналювати повідомлення про відлагодження у файл" #: pynicotine/gtkgui/ui/settings/log.ui:178 #, fuzzy msgid "Log timestamp format:" msgstr "Формат часової позначки файлу журналу:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "Розташування каталогів" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "Каталог журналів чату:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "Каталог журналів приватного чату:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "Каталог журналів передачі:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "Каталог журналів відлагодження:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "" "Увійдіть до наявного облікового запису Soulseek або створіть новий. Імена " "користувачів чутливі до регістру та унікальні." #: pynicotine/gtkgui/ui/settings/network.ui:115 #, fuzzy msgid "Public IP address:" msgstr "Блокувати IP-адресу" #: pynicotine/gtkgui/ui/settings/network.ui:156 #, fuzzy msgid "Listening port (requires a restart):" msgstr "Діапазон портів прослуховування (потрібно перезавантажити):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "Статус відсутності" #: pynicotine/gtkgui/ui/settings/network.ui:201 #, fuzzy msgid "Minutes of inactivity before going away (0 to disable):" msgstr "Хвилини бездіяльності перед відходом (0 для вимкнення):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "Повідомлення автоматичної відповіді, коли відсутній:" #: pynicotine/gtkgui/ui/settings/network.ui:272 #, fuzzy msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "Автоматично перенаправляти порт прослуховування (UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "Автоматичне підключення до сервера під час запуску" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Сервер Soulseek:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "Прив’язує з’єднання до певного мережевого інтерфейсу, корисно, наприклад, " "для забезпечення постійного використання VPN. Залиште порожнім, щоб " "використовувати будь-який доступний інтерфейс. Змінюйте це значення, лише " "якщо ви знаєте, що робите." #: pynicotine/gtkgui/ui/settings/network.ui:349 #, fuzzy msgid "Network interface (requires a restart):" msgstr "Діапазон портів прослуховування (потрібно перезавантажити):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "" "Функція «Зараз відтворюється» дозволяє відображати, що відтворює ваш " "програвач, за допомогою команди /now у чаті." #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "Інше" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "Формат \"Зараз відтворюється\"" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "Формат повідомлення \"Зараз відтворюється\":" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "Тестувати конфігурацію" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "Увімкнути плагіни" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "Додати плагіни" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_Додати плагіни" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "Налаштування" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_Налаштування" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "Версія:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 #, fuzzy msgid "Created by:" msgstr "Створений" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "Увімкнути історію пошуку" #: pynicotine/gtkgui/ui/settings/search.ui:70 #, fuzzy msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "Інші клієнти можуть мати налаштування для приватного обміну файлами у " "відповідь на запити пошуку. Такі файли мають префікс \"[ПРИВАТНО]\", і їх не " "можна завантажити, якщо користувач, який роздає, не надав чіткого дозволу. " "Запитуйте дозвіл у власника безпосередньо." #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "Показувати приватні файли в результатах пошуку" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "Обмежити кількість результатів на пошук:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "Увімкнути фільтри результатів пошуку за замовчуванням" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "Включає:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "Виключає:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "Тип файлу:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "Розмір:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "Бітрейт:" #: pynicotine/gtkgui/ui/settings/search.ui:307 #, fuzzy msgid "Duration:" msgstr "Тривалість:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "Код країни:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "" "Показувати результати лише від користувачів із доступним слотом для " "вивантаження." #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "Довідка фільтра результатів" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "Пошуки в мережі" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "Відповідати на пошукові запити інших користувачів" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "Пошуки, менші за цю кількість символів, будуть ігноровані:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "" "Максимальна кількість результатів пошуку для надсилання на пошуковий запит:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "Очистити історію пошуку" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "Очистити історію фільтрів" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "Автоматично пересканує вміст ваших спільних каталогів час запуску. Якщо " "вимкнено, ваші спільні ресурси оновлюватимуться лише тоді, коли ви вручну " "ініціюєте пересканування." #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "Пересканувати спільні ресурси під час запуску" #: pynicotine/gtkgui/ui/settings/shares.ui:68 #, fuzzy msgid "Visible to everyone:" msgstr "Видимо для всіх:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 #, fuzzy msgid "Buddy shares" msgstr "Імена друзів" #: pynicotine/gtkgui/ui/settings/shares.ui:90 #, fuzzy msgid "Trusted shares" msgstr "Пересканування спільних каталогів" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "" "Автоматичне очищення завершених/скасованих вивантажень зі списку передач" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "Двічі клацніть для вивантаження:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "Обмеження швидкості вивантаження:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "За одну передачу" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "Кількість передач" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "Слоти вивантаження" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "Циклічно: файли будуть вивантажуватися циклічно користувачам, які чекають у " "черзі.\n" "Першим зайшов, першим вийшов: файли вивантажуватимуться в тому порядку, в " "якому вони стояли в чергу." #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "Тип черги вивантаження:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 #, fuzzy msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "" "Вивантаження в черзі, якщо загальна швидкість передачі досягає (КіБ/с):" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 #, fuzzy msgid "Fixed number of upload slots:" msgstr "Обмежте кількість слотів для вивантаження:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "Пріоритети для всіх друзів" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "Обмеження черги" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 #, fuzzy msgid "Maximum number of queued files per user:" msgstr "Обмежити кількість результатів на пошук:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 #, fuzzy msgid "Maximum total size of queued files per user (MiB):" msgstr "Максимальний загальний розмір файлів в черзі на користувача (МіБ):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 #, fuzzy msgid "Limits do not apply to buddies" msgstr "Обмеження черги не поширюються на друзів" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "" "Примірники $ замінюються URL-адресою. Системні програми за замовчуванням " "використовуються в тих випадках, коли протокол не налаштовано." #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "Команда файлового менеджера:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "Скинути зображення" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "Самоопис" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 #, fuzzy msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "" "Додайте речі, які ви хочете, щоб всі бачили, наприклад короткий опис, " "корисні поради або правила для завантаження ваших обмінів." #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "Зображення:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "Очистити" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "Віддавати перевагу темному режиму" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 #, fuzzy msgid "Use header bar" msgstr "Використовувати панель заголовків" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "Відображення значка в треї" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "Згорнути в трей під час запуску" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 #, fuzzy msgid "Language (requires a restart):" msgstr "Діапазон портів прослуховування (потрібно перезавантажити):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 #, fuzzy msgid "When closing window:" msgstr "При закритті Nicotine+:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "Сповіщення" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "Увімкнути звук для сповіщень" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "Показувати сповіщення про приватні чати та згадки в заголовку вікна" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "Показати сповіщення для:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "Завершено завантаження файлів" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "Завершено завантаження каталогу" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "Приватні повідомлення" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "Повідомлення чату" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "Згадки в чаті" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 #, fuzzy msgid "Wishlist results found" msgstr "Список бажань знайдено" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "Відновлювати раніше активну головну вкладку під час запуску" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "Кнопки закриття на додаткових вкладках" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "Колір мітки звичайної вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "Змінений колір мітки вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "Колір мітки виділеної вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 #, fuzzy msgid "Buddy list position:" msgstr "Позиція списку друзів:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "Видимі основні вкладки:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 #, fuzzy msgid "Tab bar positions:" msgstr "Положення панелі вкладок:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 #, fuzzy msgid "Main tabs" msgstr "Основні вкладки" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 #, fuzzy msgid "Show reverse file paths (requires a restart)" msgstr "" "Показувати зворотні шляхи до файлів у переглядах пошуку та передачі " "(потрібно перезавантажити)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 #, fuzzy msgid "Show exact file sizes (requires a restart)" msgstr "Мережевий інтерфейс (потрібно перезавантажити):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "Колір тексту списку:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "Колір тексту результату пошуку в черзі:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 #, fuzzy msgid "Enable colored usernames" msgstr "Імена користувачів чат-кімнати" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "Зовнішній вигляд імені користувача в чаті:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "Колір віддаленого тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "Колір місцевого тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 #, fuzzy msgid "Command output text color:" msgstr "Колір віддаленого тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me дія колір-тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "Колір виділеного тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "Колір тексту посилання URL:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 #, fuzzy msgid "User Statuses" msgstr "Сполучені Штати Америки" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 #, fuzzy msgid "Online color:" msgstr "Колір тексту у мережі:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 #, fuzzy msgid "Away color:" msgstr "Колір тексту при відсутності:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 #, fuzzy msgid "Offline color:" msgstr "Колір тексту поза мережею:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "Текстові записи" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "Колір фону введення тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "Колір тексту введення:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "Шрифти" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "Загальний шрифт:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "Шрифт списку:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 #, fuzzy msgid "Text view font:" msgstr "Шрифт перегляду тексту:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "Шрифт чату:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "Шрифт передач:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "Шрифт пошуку:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "Шрифт переглядачу:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "Іконки" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 #, fuzzy msgid "Icon theme folder:" msgstr "Каталог неповних файлів:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "Перервати користувача(-ів)" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "Заблокувати користувача(-ів)" #: pynicotine/gtkgui/ui/uploads.ui:138 #, fuzzy msgid "Clear All Finished/Cancelled Uploads" msgstr "Очистити всі завершені та скасовані завантаження." #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 #, fuzzy msgid "Message All" msgstr "Повідомлення (лоток)" #: pynicotine/gtkgui/ui/uploads.ui:199 #, fuzzy msgid "Clear Specific Uploads" msgstr "Очистити всі вивантаження" #: pynicotine/gtkgui/ui/userbrowse.ui:161 #, fuzzy msgid "Save Shares List to Disk" msgstr "_Зберегти список спільних каталогів на диск" #: pynicotine/gtkgui/ui/userbrowse.ui:178 #, fuzzy msgid "Refresh Files" msgstr "Оновити файли" #: pynicotine/gtkgui/ui/userinfo.ui:78 #, fuzzy msgid "Edit Profile" msgstr "Редагувати спільний каталог" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "Спільні файли" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "Спільні каталоги" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "Черга вивантаження" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "Вільні слоти вивантаження" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "Швидкість вивантаження" #: pynicotine/gtkgui/ui/userinfo.ui:362 #, fuzzy msgid "Edit Interests" msgstr "Інтереси" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_Подарувати привілеї…" #: pynicotine/gtkgui/ui/userinfo.ui:711 #, fuzzy msgid "_Refresh Profile" msgstr "Оновити файли" #: pynicotine/plugins/core_commands/PLUGININFO:3 #, fuzzy msgid "Nicotine+ Commands" msgstr "Команда Nicotine+" #~ msgid "_Clear" #~ msgstr "_Очистити" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "Не вдається зберегти %(filename)s: %(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "Довірені друзі" #~ msgid "Quit program" #~ msgstr "Вийти з програми" #~ msgid "Username:" #~ msgstr "Ім'я користувача:" #~ msgid "Re_commendations for Item" #~ msgstr "_Рекомендації щодо елементу" #~ msgid "_Remove Item" #~ msgstr "_Видалити елемент" #~ msgid "_Remove" #~ msgstr "_Видалити" #~ msgid "Send M_essage" #~ msgstr "Відправити _повідомлення" #~ msgid "Send Message" #~ msgstr "Відправити повідомлення" #, fuzzy #~ msgid "View User Profile" #~ msgstr "Переглянути профіль користувача" #~ msgid "Start Messaging" #~ msgstr "Почати листування" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "Введіть ім'я користувача, якому ви хочете надіслати повідомлення:" #, fuzzy #~ msgid "_Message" #~ msgstr "Повідомлення (лоток)" #, fuzzy #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "Введіть ім'я користувача, чиї спільні каталоги ви хочете побачити:" #, fuzzy #~ msgid "_View Profile" #~ msgstr "Переглянути профіль користувача" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "Введіть ім'я користувача, чиї спільні каталоги ви хочете побачити:" #, fuzzy #~ msgid "_Browse" #~ msgstr "_Перегляд файлів" #~ msgid "Password" #~ msgstr "Пароль" #, fuzzy #~ msgid "Download File" #~ msgstr "Завантажити файл" #, fuzzy #~ msgid "Refresh Similar Users" #~ msgstr "Схожі користувачі" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "Введіть ім’я користувача особи, чиї файли ви хочете побачити" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "Введіть ім’я користувача особи, чию інформацію ви хочете побачити" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "" #~ "Введіть ім’я користувача особи, якій ви хочете надіслати повідомлення" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "" #~ "Введіть ім’я користувача, якого ви хочете додати до свого списку друзів" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "" #~ "Введіть назву кімнати, до якої хочете приєднатися. Якщо кімната не існує, " #~ "вона буде створена." #, fuzzy #~ msgid "Show Log History Pane" #~ msgstr "Показувати панель журналу історії" #~ msgid "Save _Picture" #~ msgstr "Зберегти _Зображення" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "Відфільтровано неправильний результат пошуку %(filepath)s від користувача " #~ "%(user)s для пошукового запиту \"%(query)s\"" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "" #~ "Деякі клієнти не надсилають результати пошуку, якщо в них є спеціальні " #~ "символи." #~ msgid "Remove special characters from search terms" #~ msgstr "Видаляти спеціальні символи з пошукових запитів" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "Проблема виконання \"%s\"" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "Проблема з виконанням у каталозі: %s" #~ msgid "Disallowed extension" #~ msgstr "Заборонене розширення" #~ msgid "Too many files" #~ msgstr "Забагато файлів" #~ msgid "Too many megabytes" #~ msgstr "Забагато мегабайт" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "На даний момент сервер не дозволяє виконувати пошук у списку бажань" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "Швидкість передачі файлів залежить від користувачів, від яких ви " #~ "завантажуєте файли. Деякі користувачі будуть швидшими, а інші – " #~ "повільними." #~ msgid "Started Downloads" #~ msgstr "Розпочато завантаження" #~ msgid "Started Uploads" #~ msgstr "Розпочато вивантаження" #~ msgid "Replace censored letters with:" #~ msgstr "Заміняти цензуровану лексику на:" #~ msgid "Censored Patterns" #~ msgstr "Цензурові шаблони" #~ msgid "Replacements" #~ msgstr "Заміни" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "Якщо користувач у мережі Soulseek шукає файл, який існує у ваших спільних " #~ "ресурсах, результати пошуку будуть надіслані користувачеві." #~ msgid "Send to Player" #~ msgstr "Надіслати до програвача" #~ msgid "Send to _Player" #~ msgstr "Надіслати до _програвачу" #~ msgid "_Open in File Manager" #~ msgstr "_Відкрити в диспетчері файлів" #~ msgid "Media player command:" #~ msgstr "Команда програвача:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "" #~ "Не вдається зберегти завантаження у каталог з іменем користувача, " #~ "повернення до каталога завантаження за замовчуванням. Помилка: %s" #~ msgid "Buddy-only" #~ msgstr "Лише для друзів" #, fuzzy #~ msgid "Share with buddies only" #~ msgstr "Поділитися лише з друзями" #~ msgid "_Quit…" #~ msgstr "_Вийти…" #~ msgid "_Configure Shares" #~ msgstr "_Налаштувати спільні каталоги" #~ msgid "Remote file error" #~ msgstr "Помилка віддаленого файлу" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "" #~ "Не вдається знайти %(option1)s або %(option2)s, будь ласка, встановіть " #~ "будь-який з них." #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s каталогів знайдені перед перескануванням, перебудова…" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "Не вдалося обробити такі бази даних: %(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "Не вдалося надіслати кількість спільних файлів на сервер: %s" #~ msgid "Quit / Run in Background" #~ msgstr "Вийти/запустити у фоновому режимі" #, fuzzy #~ msgid "Listening port:" #~ msgstr "Порт прослуховування не встановлений" #, fuzzy #~ msgid "Network interface:" #~ msgstr "Пошуки в мережі" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "" #~ "Обмежувати доступ до дружніх спільних ресурсів лише довіреним друзям" #~ msgid "Shared" #~ msgstr "Розмір спільного" #, fuzzy #~ msgid "Search Files and Folders" #~ msgstr "Пошук файлів і каталоргів (точна відповідність)" #, fuzzy #~ msgid "Out of Date" #~ msgstr "Застарілий" #, fuzzy, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "Доступна версія %(version)s, випущена %(date)s" #, fuzzy, python-format #~ msgid "You are using a development version of %s" #~ msgstr "Схоже, ви використовуєте версію Nicotine+ для розробки." #, fuzzy, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "Ви використовуєте останню версію Nicotine+." #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "Перевірити _останню версію" #~ msgid "Prefer Dark _Mode" #~ msgstr "Віддавати перевагу _темному режиму" #~ msgid "Show _Log History Pane" #~ msgstr "Показувати панель журналу історії" #~ msgid "Buddy List in Separate Tab" #~ msgstr "Список друзів на окремій вкладці" #~ msgid "Buddy List Always Visible" #~ msgstr "Список друзів завжди видимий" #~ msgid "_View" #~ msgstr "_Вигляд" #~ msgid "_Open Log Folder" #~ msgstr "_Відкрити каталог журналу" #~ msgid "_Browse Folder(s)" #~ msgstr "_Переглянути каталог(-и)" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "Кібібайти (2^10 байт) на секунду." #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "Надіслано користувачам як причина геоблокування." #~ msgid "Sent to users as the reason for being banned." #~ msgstr "Надсилати користувачам як причину блокування." #, fuzzy #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "" #~ "Після того, як ви взаємодієте з програмою, яка перебуває на відстані, " #~ "статус буде встановлено на онлайн." #~ msgid "Each user may queue a maximum of either:" #~ msgstr "Кожен користувач може поставити в чергу не більше:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "Мебібайти (2^20 байт)." #~ msgid "MiB" #~ msgstr "МіБ" #~ msgid "files" #~ msgstr "файлів" #~ msgid "Queue Behavior" #~ msgstr "Поведінка черги" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "" #~ "Якщо вимкнено, слоти автоматично визначатимуться доступними обмеженнями " #~ "пропускної здатності." #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "Зауважте, що тема операційної системи може мати пріоритет." #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "За замовчуванням під час запуску активується крайня ліва вкладка" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "Вихід з %(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "припинено" #~ msgid "done" #~ msgstr "виконано" #~ msgid "Remember choice" #~ msgstr "Запам'ятати вибір" #~ msgid "Kosovo" #~ msgstr "Косово" #, fuzzy #~ msgid "Unknown Network Interface" #~ msgstr "Користувацький інтерфейс" #, fuzzy #~ msgid "Listening Port Unavailable" #~ msgstr "Прослуховування через порт: %i" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "" #~ "Здається, що сервер не працює або не відповідає, повторна спроба через %i " #~ "секунд" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ використовує однорангову мережу для підключення до інших " #~ "користувачів. Щоб користувачі могли без проблем підключатися до вас, " #~ "відкритий порт прослуховування має вирішальне значення." #~ msgid "--- disconnected ---" #~ msgstr "--- відключено ---" #~ msgid "--- reconnected ---" #~ msgstr "--- відновлено ---" #~ msgid "ID" #~ msgstr "Ідентифікатор" #~ msgid "Earth" #~ msgstr "Земля" #~ msgid "Czech Republic" #~ msgstr "Чеська Республіка" #~ msgid "Turkey" #~ msgstr "Туреччина" #~ msgid "Joined Rooms " #~ msgstr "Об’єднані кімнати " #~ msgid "_Auto-join Room" #~ msgstr "_Автоматичне приєднання до кімнати" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ "Синтаксис: Літери не чутливі до регістру. Усі регулярні вирази " #~ "Python підтримуються, якщо екранування вимкнено. Для простих фільтрів " #~ "рекомендується залишати екранування увімкненим." #~ msgid "Escaped" #~ msgstr "Такий, що втік" #, fuzzy #~ msgid "Escape filter" #~ msgstr "Такий, що втік" #, fuzzy #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "Введіть шаблон тексту та чим замінити" #, fuzzy, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "У вказаному діапазоні портів %s–%s порт прослуховування недоступний" #, fuzzy #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "" #~ "Виберіть діапазон для вибору порту для прослуховування. Буде використано " #~ "перший доступний порт у діапазоні." #, fuzzy #~ msgid "First Port" #~ msgstr "Початковий порт" #~ msgid "to" #~ msgstr "до" #, fuzzy #~ msgid "Last Port" #~ msgstr "Кінцевий порт" #, fuzzy, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "Не вдається знайти %s, будь ласка, встановіть його." #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "" #~ "Не вдається імпортувати модуль Gtk. Погане встановлення модуля python-" #~ "gobject?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "Ви використовуєте непідтримувану версію GTK %(major_version)s. Вам слід " #~ "встановити GTK %(complete_version)s або новішу." #~ msgid "User Info" #~ msgstr "Інформація про користувача" #~ msgid "Zoom 1:1" #~ msgstr "Масштаб 1:1" #~ msgid "Zoom In" #~ msgstr "Збільшити" #~ msgid "Zoom Out" #~ msgstr "Зменшити" #~ msgid "Show User I_nfo" #~ msgstr "Показати інформацію про _користувача" #~ msgid "Request User's Info" #~ msgstr "Запит інформації про користувача" #~ msgid "Request User's Shares" #~ msgstr "Запит спільних каталогів користувача" #~ msgid "Request User Info" #~ msgstr "Запит інформації про користувача" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "Введіть ім'я користувача, чию інформацію ви хочете побачити:" #~ msgid "Request Shares List" #~ msgstr "Запит на список спільних каталогів" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "Недійсна URL-адреса Soulseek: %s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Користувачі мережі Soulseek зможуть завантажувати файли з каталогів, які " #~ "ви зробили спільними. Спільний доступ до файлів має вирішальне значення " #~ "для здоров’я мережі Soulseek." #~ msgid "Update I_nfo" #~ msgstr "Оновити І_нфо" #~ msgid "Chat Room Commands" #~ msgstr "Команди кімнати чату" #~ msgid "/join /j 'room'" #~ msgstr "/join /j 'кімната'" #~ msgid "Join room 'room'" #~ msgstr "Приєднатися до кімнати \"кімната\"" #~ msgid "/me 'message'" #~ msgstr "/me 'повідомлення'" #~ msgid "Display the Now Playing script's output" #~ msgstr "Відобразити вихідні дані сценарію \"Зараз відтворюється\"" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'користувач'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "Додати користувача \"user\" до свого списку друзів" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'користувач'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "Видалити користувача \"user\" зі списку друзів" #~ msgid "/ban 'user'" #~ msgstr "/ban 'користувач'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "Додати користувача \"user\" до вашого списку блокувань" #~ msgid "/unban 'user'" #~ msgstr "/unban 'користувач'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "Видалити користувача \"user\" зі списку блокувань" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'користувач'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "Додати користувача \"user\" до свого списку ігнорування" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'користувач'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "Видаліть користувача \"user\" зі списку ігнорування" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'користувач'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'користувач'" #~ msgid "Request info for 'user'" #~ msgstr "Запит інформації для \"користувача\"" #~ msgid "/ip 'user'" #~ msgstr "/ip 'користувач'" #~ msgid "Show IP for user 'user'" #~ msgstr "Показати IP для користувача \"user\"" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'запит'" #~ msgid "Start a new search for 'query'" #~ msgstr "Почати новий пошук за \"запитом\"" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'запит'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "Шукайте в об'єднаних кімнатах \"запит\"" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'запит'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "Знайдіть у списку друзів \"запит\"" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'користувач' 'запит'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'користувач' 'повідомлення'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "Надіслати повідомлення 'message' користувачу 'user'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'користувач'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "Відкрити вікно приватного чату для користувача 'user'" #~ msgid "Private Chat Commands" #~ msgstr "Команди приватного чату" #~ msgid "Add user to your ban list" #~ msgstr "Додати користувача до списку блокувань" #~ msgid "Add user to your ignore list" #~ msgstr "Додати користувача до списку ігнорування" #~ msgid "Browse shares of user" #~ msgstr "Переглянути спільні ресурси користувача" #, fuzzy #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "Для фільтрації без урахування порядку, а також для фільтрації кількох " #~ "точних фраз, вертикальні смуги можна використовувати для розділення фраз " #~ "і слів.\n" #~ " Приклад: Спірс|Брітні|Мій прекрасний альбом|привіт" #, fuzzy #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "Щоб виключити неаудіофайли, використовуйте !0 у фільтрі тривалості." #, fuzzy #~ msgid "Filters files based upon users' geographical location." #~ msgstr "Фільтрує файли за країнами користувачів." #, fuzzy #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "" #~ "Щоб знову переглянути повні результати, просто очистіть усі активні " #~ "фільтри." #, fuzzy #~ msgid "See the preferences to set default search result filter options." #~ msgstr "Перегляньте параметри, щоб отримати додаткові параметри фільтра." #~ msgid "File size" #~ msgstr "Розмір файлу" #, fuzzy #~ msgid "Clear Active Filters" #~ msgstr "Очистити всі активні фільтри" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "Перебирати автодоповнення, натискаючи клавішу Tab" #~ msgid "Hide drop-down when only one matches" #~ msgstr "Приховати випадаюче меню, якщо збігається лише одне" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "Завантажуйте каталоги у зворотному алфавітно-цифровому порядку" #~ msgid "Incomplete file folder:" #~ msgstr "Каталог неповних файлів:" #~ msgid "Download folder:" #~ msgstr "Каталог завантаження:" #~ msgid "Save buddies' uploads to:" #~ msgstr "Зберігайте завантаження друзів у:" #, fuzzy #~ msgid "Use UPnP to forward listening port" #~ msgstr "" #~ "Використовуйте UPnP для переадресації порту прослуховування (інтервал у " #~ "годинах):" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "Поділіться каталогами з кожним користувачем або друзями Soulseek, " #~ "дозволяючи завантажувати вміст безпосередньо з вашого пристрою. Приховані " #~ "файли ніколи не надсилаються." #~ msgid "Secondary Tabs" #~ msgstr "Додаткові вкладинки" #~ msgid "Chat room tab bar position:" #~ msgstr "Розташування панелі вкладок кімнати чату:" #~ msgid "Private chat tab bar position:" #~ msgstr "Положення панелі вкладок приватного чату:" #~ msgid "Search tab bar position:" #~ msgstr "Позиція панелі вкладок пошуку:" #~ msgid "User info tab bar position:" #~ msgstr "Розташування панелі вкладки інформації про користувача:" #~ msgid "User browse tab bar position:" #~ msgstr "Позиція панелі вкладок перегляду користувача:" #~ msgid "Tab Labels" #~ msgstr "Мітки вкладок" #~ msgid "_Refresh Info" #~ msgstr "_Оновити інформацію" #~ msgid "Block IP Address" #~ msgstr "Блокувати IP-адресу" #~ msgid "Connected" #~ msgstr "Підключено" #~ msgid "Disconnected" #~ msgstr "Відключено" #~ msgid "Disconnected (Tray)" #~ msgstr "Відключено (лоток)" #~ msgid "User(s)" #~ msgstr "Користувач(-и)" #, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "Псевдонім \"%s\" нічого не повернув" #~ msgid "Alternative Speed Limits" #~ msgstr "Альтернативні обмеження швидкості" #~ msgid "Last played" #~ msgstr "Востаннє відтворювався" #~ msgid "Playing now" #~ msgstr "Відтворюється зараз" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "Не вдається зберегти файл %(path)s: %(error)s" #, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "Код помилки %(code)s: %(description)s" #, python-format #~ msgid "No such alias (%s)" #~ msgstr "Немає такого псевдоніма (%s)" #~ msgid "Aliases:" #~ msgstr "Псевдоніми:" #, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "Вилучено псевдонім %(alias)s: %(action)s\n" #, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "Немає псевдоніма (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "Альтернативні обмеження швидкості" #~ msgid "Aliases" #~ msgstr "Псевдоніми" #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al 'команда' 'визначення'" #~ msgid "Add a new alias" #~ msgstr "Додати новий псевдонім" #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un 'команда'" #~ msgid "Remove an alias" #~ msgstr "Видалити псевдонім" #~ msgid "Chat History" #~ msgstr "Історія чату" #~ msgid "Command aliases" #~ msgstr "Псевдоніми команд" #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "Обмежити швидкість завантаження до (КіБ/с):" #~ msgid "Author(s):" #~ msgstr "Автор(-и):" #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "Обмежити швидкість вивантаження до (КіБ/с):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "Знайдено товар у списку бажань" #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "" #~ "На вкладках замість тексту відображаються значки статусу користувача" #~ msgid "Show file path tooltips in file list views" #~ msgstr "Показувати підказки шляхів до файлів у переглядах списку файлів" #~ msgid "Colored and clickable usernames" #~ msgstr "Кольорові та клікабельні імена користувачів" #~ msgid "Notification changes the tab's text color" #~ msgstr "Сповіщення змінює колір тексту вкладки" #~ msgid "Cancel" #~ msgstr "Скасувати" #~ msgid "OK" #~ msgstr "Гаразд" #~ msgid "_Add to Buddy List" #~ msgstr "_Додати до списку друзів" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "Очистити всі завантаження, позначені певним статусом." #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "Очистити всі вивантаження, позначені певним статусом." #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "" #~ "використовувати користувацький каталог даних, наприклад, список " #~ "завантажень" #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "Невідомий розділ конфігурації \"%s\"" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "" #~ "Невідомий параметр конфігурації \"%(option)s\" у розділі \"%(section)s\"" #, python-format #~ msgid "Version %s is available" #~ msgstr "Доступна версія %s" #, python-format #~ msgid "released on %s" #~ msgstr "випущено на %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+ працює у фоновому режимі" #, python-format #~ msgid "Private message from %s" #~ msgstr "Приватне повідомлення від %s" #~ msgid "Aborted" #~ msgstr "Перервано" #~ msgid "Blocked country" #~ msgstr "Заблокована країна" #~ msgid "Finished / Aborted" #~ msgstr "Завершено / перервано" #~ msgid "Close tab" #~ msgstr "Закрити вкладинку" #, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "Вас згадали в кімнаті %(room)s" #, python-format #~ msgid "Command %s is not recognized" #~ msgstr "Команда %s не розпізнається" #, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(Попередження: %(realuser)s намагається підробити %(fakeuser)s) " #, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "Мережевий інтерфейс, який ви вказали, «%s», не існує. Змініть або " #~ "видаліть вказаний мережевий інтерфейс та перезапустіть Nicotine+." #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "" #~ "Діапазон, який ви вказали для портів підключення клієнта, був {}-{}, але " #~ "жоден з них не можна було використовувати. Збільшіть та/або " #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "Зауважте, що частина вашого діапазону знаходиться нижче 1024, це зазвичай " #~ "не дозволяється в більшості операційних систем, за винятком Windows." #, python-format #~ msgid "Rescan progress: %s" #~ msgstr "Перебіг пересканування: %s" #, python-format #~ msgid "OS error: %s" #~ msgstr "Помилка ОС: %s" #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP недоступний у цій мережі" #, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "Не вдалося зіставити зовнішній порт WAN: %(error)s" #~ msgid "Room wall" #~ msgstr "Стіна кімнати" #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "Порт прослуховування за замовчуванням «2234» у більшості випадків працює " #~ "нормально. Якщо вам потрібно використовувати інший порт, ви зможете " #~ "змінити його в налаштуваннях пізніше." #~ msgid "Show users with similar interests" #~ msgstr "Показати користувачів зі схожими інтересами" #~ msgid "Menu" #~ msgstr "Меню" #~ msgid "Expand / Collapse all" #~ msgstr "Розгорнути/згорнути все" #~ msgid "Configure shares" #~ msgstr "Налаштувати спільні каталоги" #~ msgid "Create or join room…" #~ msgstr "Створити або приєднатися до кімнати…" #~ msgid "_Room List" #~ msgstr "_Список кімнат" #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "" #~ "Увімкнути альтернативні обмеження швидкості завантаження та вивантаження" #~ msgid "Show log history" #~ msgstr "Показати історію журналу" #~ msgid "Result grouping mode" #~ msgstr "Режим групування результатів" #~ msgid "Free slot" #~ msgstr "Вільний слот" #~ msgid "Save shares list to disk" #~ msgstr "Зберегти список спільних ресурсів на диск" #~ msgid "_Away" #~ msgstr "_Відсутній" #, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "" #~ "Не вдалося завантажити файл інтерфейсу користувача %(file)s: %(error)s" #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "" #~ "Спроба скинути індекс спільних файлів через помилку. Будь ласка, " #~ "перескануйте свої спільні ресурси." #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "Не вдалося отримати доступ до індексу файлів спільного доступу. Це може " #~ "статися через декілька випадків одночасної активності Nicotine+, проблеми " #~ "з дозволом на файл або іншу проблему в Nicotine+." #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ є клієнтом Soulseek" #~ msgid "enable the tray icon" #~ msgstr "відображати піктограму в треї" #~ msgid "disable the tray icon" #~ msgstr "приховати піктограму в треї" #~ msgid "Get Soulseek Privileges…" #~ msgstr "Отримати привілеї Soulseek…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "" #~ "Загальнодоступна IP-адреса — %(ip)s, а активний порт " #~ "прослуховування — %(port)s" #~ msgid "unknown" #~ msgstr "невідомий" #~ msgid "Notification" #~ msgstr "Повідомлення" #~ msgid "Length" #~ msgstr "Тривалість" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "Зображення не збережено, %s вже існує." #~ msgid "_Open" #~ msgstr "_Відкрити" #~ msgid "_Save" #~ msgstr "_Зберегти" #, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "Не вдалося завантажити плагін \"%s\", не вдалося його знайти." #, python-format #~ msgid "I/O error: %s" #~ msgstr "Помилка введення-виводу: %s" #, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "Не вдалося відкрити шлях до файлу: %s" #, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "Не вдалося відкрити URL-адресу: %s" #~ msgid "_Log Conversation" #~ msgstr "_Журнал розмови" #~ msgid "Result Filter List" #~ msgstr "Список фільтрів результатів" #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "Додайте , щоб знайти файли, менші/більші за задане значення." #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "Файли VBR відображають середній бітрейт і, як правило, нижчий за бітрейт, " #~ "ніж стиснений файл CBR зі швидкістю 320 кбіт/с з такою ж якістю звуку." #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "Як і у фільтрі розміру, можна використовувати =, < і >." #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "" #~ "Заборонити доступ на запис іншим програмам для файлів, що завантажуються " #~ "(вимкніть для NFS)" #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "Де тимчасово зберігаються неповні завантаження." #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "" #~ "Де зберігатимуться вивантаження друзів (з підкаталогом, створеною для " #~ "кожного друга)." #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "Перемкнути статус відсутності після хвилин бездіяльності:" #~ msgid "Protocol:" #~ msgstr "Протокол:" #~ msgid "Icon theme folder (requires restart):" #~ msgstr "Каталог теми іконок (потрібно перезавантажити):" #~ msgid "Establishing connection" #~ msgstr "Встановлення з'єднання" #~ msgid "Clear Groups" #~ msgstr "Очистити групи" #~ msgid "_Reset Statistics…" #~ msgstr "_Скинути статистику…" #~ msgid "Clear _Downloads…" #~ msgstr "Очистити _завантажені…" #~ msgid "Clear Uploa_ds…" #~ msgstr "Очистити ви_вантаження…" #~ msgid "Block User's IP Address" #~ msgstr "Блокувати IP-адресу користувача" #~ msgid "Ignore User's IP Address" #~ msgstr "Ігнорувати IP-адресу користувача" #, fuzzy #~ msgid "" #~ "Clear every download that has finished transferring or been caught by a " #~ "filter." #~ msgstr "" #~ "Очистіть кожне завантаження, яке завершилося передачу або було " #~ "перехоплено фільтром." #~ msgid "Usernames" #~ msgstr "Імена користувачів" #~ msgid "Display logged chat room messages when a room is rejoined" #~ msgstr "" #~ "Відображати зареєстровані повідомлення кімнати чату, коли знову " #~ "приєднуєтеся до кімнати" #, fuzzy #~ msgid "" #~ "Clear every upload that has either finished transferring, or been " #~ "cancelled by the remote user." #~ msgstr "" #~ "Очистіть кожне завантаження, передачу якого було завершено або скасовано " #~ "віддаленим користувачем." #~ msgid "Queue Position" #~ msgstr "Позиція в черзі" #, python-format #~ msgid "" #~ "User %(user)s is directly searching for \"%(query)s\", returning %(num)i " #~ "results" #~ msgstr "" #~ "Користувач %(user)s безпосередньо шукає \"%(query)s\", повертаючи " #~ "результати %(num)i" #, fuzzy #~ msgid "[PRIVATE]" #~ msgstr "[ПРИВАТНО]" nicotine-plus-3.3.4/po/zh_CN.po000066400000000000000000006036221461625273200163120ustar00rootroot00000000000000# Copyright (C) 2022-2024 Nicotine+ Translators # This file is distributed under the same license as the Nicotine+ package. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-05 13:36+0300\n" "PO-Revision-Date: 2024-05-05 11:12+0000\n" "Last-Translator: Mat \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.5.3\n" #: data/org.nicotine_plus.Nicotine.desktop.in:6 msgid "Soulseek Client" msgstr "Soulseek客户端" #: data/org.nicotine_plus.Nicotine.desktop.in:7 pynicotine/__init__.py:49 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:71 msgid "Graphical client for the Soulseek peer-to-peer network" msgstr "Soulseek 点对点网络的图形客户端" #: data/org.nicotine_plus.Nicotine.desktop.in:12 msgid "Soulseek;Nicotine;sharing;chat;messaging;P2P;peer-to-peer;GTK;" msgstr "Soulseek;Nicotine;分享;聊天;信息;P2P;点对点;GTK;" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:9 #, fuzzy msgid "Browse the Soulseek network" msgstr "Soulseek 网络的图形客户端" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:11 msgid "Nicotine+ is a graphical client for the Soulseek peer-to-peer network." msgstr "Nicotine+ 是 Soulseek 点对点网络的图形客户端。" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:15 msgid "" "Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) " "alternative to the official Soulseek client, while also providing a " "comprehensive set of features." msgstr "" "Nicotine+ 旨在成为轻量、易用、自由和开源 (FOSS) 的官方 Soulseek 客户端替代" "品,提供额外的功能。" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:27 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:43 #: pynicotine/gtkgui/mainwindow.py:707 #: pynicotine/plugins/core_commands/__init__.py:29 #: pynicotine/gtkgui/ui/mainwindow.ui:219 #: pynicotine/gtkgui/ui/settings/userinterface.ui:614 #: pynicotine/gtkgui/ui/settings/userinterface.ui:799 #: pynicotine/gtkgui/ui/userbrowse.ui:144 msgid "Search Files" msgstr "搜索文件" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:31 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:47 #: pynicotine/gtkgui/dialogs/preferences.py:2909 #: pynicotine/gtkgui/mainwindow.py:708 pynicotine/gtkgui/mainwindow.py:1056 #: pynicotine/gtkgui/widgets/trayicon.py:89 #: pynicotine/gtkgui/ui/mainwindow.ui:458 #: pynicotine/gtkgui/ui/settings/downloads.ui:62 #: pynicotine/gtkgui/ui/settings/userinterface.ui:626 msgid "Downloads" msgstr "下载" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:35 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:51 #: pynicotine/gtkgui/mainwindow.py:710 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:246 #: pynicotine/gtkgui/ui/mainwindow.ui:866 #: pynicotine/gtkgui/ui/settings/userinterface.ui:650 #: pynicotine/gtkgui/ui/settings/userinterface.ui:821 msgid "Browse Shares" msgstr "浏览共享" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:39 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:55 #: pynicotine/gtkgui/mainwindow.py:712 pynicotine/gtkgui/widgets/trayicon.py:94 #: pynicotine/plugins/core_commands/__init__.py:27 #: pynicotine/gtkgui/ui/mainwindow.ui:1194 #: pynicotine/gtkgui/ui/settings/userinterface.ui:674 #: pynicotine/gtkgui/ui/settings/userinterface.ui:865 msgid "Private Chat" msgstr "私聊" #: data/org.nicotine_plus.Nicotine.appdata.xml.in:76 #: data/org.nicotine_plus.Nicotine.appdata.xml.in:78 msgid "Nicotine+ Team" msgstr "Nicotine+团队" #: pynicotine/__init__.py:50 #, python-format msgid "Website: %s" msgstr "网站:%s" #: pynicotine/__init__.py:56 msgid "show this help message and exit" msgstr "显示此条帮助信息并退出" #: pynicotine/__init__.py:59 msgid "file" msgstr "文件" #: pynicotine/__init__.py:60 msgid "use non-default configuration file" msgstr "不使用默认配置文件" #: pynicotine/__init__.py:63 msgid "dir" msgstr "目录" #: pynicotine/__init__.py:64 msgid "alternative directory for user data and plugins" msgstr "用户数据和插件的备选目录" #: pynicotine/__init__.py:68 msgid "start the program without showing window" msgstr "启动程序时不显示窗口" #: pynicotine/__init__.py:71 msgid "ip" msgstr "ip" #: pynicotine/__init__.py:72 msgid "bind sockets to the given IP (useful for VPN)" msgstr "将套接字绑定到给定的 IP(在 VPN 下有用)" #: pynicotine/__init__.py:75 msgid "port" msgstr "端口" #: pynicotine/__init__.py:76 msgid "listen on the given port" msgstr "监听指定的端口" #: pynicotine/__init__.py:80 msgid "rescan shared files" msgstr "重新扫描共享文件" #: pynicotine/__init__.py:84 msgid "start the program in headless mode (no GUI)" msgstr "以无界面模式启动程序(无 GUI)" #: pynicotine/__init__.py:88 msgid "display version and exit" msgstr "显示版本并退出" #: pynicotine/__init__.py:118 #, python-format msgid "" "You are using an unsupported version of Python (%(old_version)s).\n" "You should install Python %(min_version)s or newer." msgstr "" "您使用的 Python 版本(%(old_version)s)已不受支持。\n" "您应该安装 Python %(min_version)s 或更新版本。" #: pynicotine/__init__.py:184 msgid "" "Failed to scan shares. Please close other Nicotine+ instances and try again." msgstr "扫描共享失败。请关闭其他 Nicotine+ 实例,然后重试。" #: pynicotine/buddies.py:293 pynicotine/plugins/core_commands/__init__.py:337 #, python-format msgid "%(user)s is away" msgstr "%(user)s 已离开" #: pynicotine/buddies.py:296 pynicotine/plugins/core_commands/__init__.py:335 #, python-format msgid "%(user)s is online" msgstr "%(user)s 已上线" #: pynicotine/buddies.py:299 pynicotine/plugins/core_commands/__init__.py:329 #, python-format msgid "%(user)s is offline" msgstr "%(user)s 已离线" #: pynicotine/buddies.py:302 msgid "Buddy Status" msgstr "好友状态" #: pynicotine/chatrooms.py:338 #, python-format msgid "You have been added to a private room: %(room)s" msgstr "您已被加入到私密聊天室:%(room)s" #: pynicotine/chatrooms.py:466 #, python-format msgid "Chat message from user '%(user)s' in room '%(room)s': %(message)s" msgstr "来自房间“%(room)s”中用户“%(user)s”的聊天消息:%(message)s" #: pynicotine/config.py:123 pynicotine/config.py:142 #, python-format msgid "Can't create directory '%(path)s', reported error: %(error)s" msgstr "无法创建目录“%(path)s”,错误信息:%(error)s" #: pynicotine/config.py:801 #, python-format msgid "Error backing up config: %s" msgstr "备份配置时出错:%s" #: pynicotine/config.py:804 #, python-format msgid "Config backed up to: %s" msgstr "配置备份到:%s" #: pynicotine/core.py:95 pynicotine/core.py:99 pynicotine/gtkgui/__init__.py:96 #, python-format msgid "Loading %(program)s %(version)s" msgstr "正在加载 %(program)s %(version)s" #: pynicotine/core.py:234 #, python-format msgid "Quitting %(program)s %(version)s, %(status)s…" msgstr "退出 %(program)s %(version)s, %(status)s…" #: pynicotine/core.py:237 msgid "terminating" msgstr "终止" #: pynicotine/core.py:237 msgid "application closing" msgstr "程序正在关闭" #: pynicotine/core.py:271 #, python-format msgid "Quit %(program)s %(version)s!" msgstr "退出 %(program)s %(version)s 中!" #: pynicotine/core.py:279 msgid "You need to specify a username and password before connecting…" msgstr "在连接之前,您需要指定一个用户名和密码……" #: pynicotine/downloads.py:224 #, python-format msgid "Error: Download Filter failed! Verify your filters. Reason: %s" msgstr "错误:下载过滤失败!请检查您的过滤器。原因:%s" #: pynicotine/downloads.py:239 #, python-format msgid "Error: %(num)d Download filters failed! %(error)s " msgstr "错误:%(num)d 个下载过滤器失败! %(error)s " #: pynicotine/downloads.py:354 #, python-format msgid "%(file)s downloaded from %(user)s" msgstr "%(file)s 下载自 %(user)s" #: pynicotine/downloads.py:358 msgid "File Downloaded" msgstr "已下载的文件" #: pynicotine/downloads.py:366 #, python-format msgid "Executed: %s" msgstr "已执行: %s" #: pynicotine/downloads.py:369 pynicotine/downloads.py:410 #: pynicotine/nowplaying.py:308 #, python-format msgid "Executing '%(command)s' failed: %(error)s" msgstr "执行“%(command)s”失败:%(error)s" #: pynicotine/downloads.py:395 #, python-format msgid "%(folder)s downloaded from %(user)s" msgstr "%(folder)s 下载自 %(user)s" #: pynicotine/downloads.py:399 msgid "Folder Downloaded" msgstr "文件夹已下载" #: pynicotine/downloads.py:407 #, python-format msgid "Executed on folder: %s" msgstr "已在文件夹上执行:%s" #: pynicotine/downloads.py:434 #, python-format msgid "Couldn't move '%(tempfile)s' to '%(file)s': %(error)s" msgstr "无法将“%(tempfile)s”移动到“%(file)s”:%(error)s" #: pynicotine/downloads.py:442 pynicotine/downloads.py:1213 msgid "Download Folder Error" msgstr "下载文件夹错误" #: pynicotine/downloads.py:481 #, python-format msgid "Download finished: user %(user)s, file %(file)s" msgstr "下载完成:用户%(user)s,文件%(file)s" #: pynicotine/downloads.py:499 #, python-format msgid "Download aborted, user %(user)s file %(file)s" msgstr "下载中止,用户 %(user)s 文件 %(file)s" #: pynicotine/downloads.py:1151 #, python-format msgid "Download I/O error: %s" msgstr "下载 I/O 错误:%s" #: pynicotine/downloads.py:1194 #, python-format msgid "Can't get an exclusive lock on file - I/O error: %s" msgstr "无法独占锁定文件 - I/O 错误:%s" #: pynicotine/downloads.py:1207 #, python-format msgid "Cannot save file in %(folder_path)s: %(error)s" msgstr "无法保存文件至 %(folder_path)s: %(error)s" #: pynicotine/downloads.py:1226 #, python-format msgid "Download started: user %(user)s, file %(file)s" msgstr "下载开始:用户 %(user)s,文件 %(file)s" #: pynicotine/gtkgui/__init__.py:77 pynicotine/gtkgui/__init__.py:86 #, python-format msgid "Cannot find %s, please install it." msgstr "找不到 %s,请安装。" #: pynicotine/gtkgui/__init__.py:152 msgid "No graphical environment available, using headless (no GUI) mode" msgstr "没有可用的图形环境,使用无界面(无 GUI)模式" #: pynicotine/gtkgui/application.py:339 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Connect" msgstr "_连接" #: pynicotine/gtkgui/application.py:340 #: pynicotine/gtkgui/widgets/trayicon.py:124 msgid "_Disconnect" msgstr "_断开" #: pynicotine/gtkgui/application.py:341 msgid "Soulseek _Privileges" msgstr "Soulseek_特权" #: pynicotine/gtkgui/application.py:347 msgid "_Preferences" msgstr "_偏好" #: pynicotine/gtkgui/application.py:353 pynicotine/gtkgui/application.py:541 #: pynicotine/gtkgui/widgets/trayicon.py:106 msgid "_Quit" msgstr "_退出" #: pynicotine/gtkgui/application.py:370 msgid "Browse _Public Shares" msgstr "浏览_公开共享" #: pynicotine/gtkgui/application.py:371 msgid "Browse _Buddy Shares" msgstr "浏览_好友分享" #: pynicotine/gtkgui/application.py:372 msgid "Browse _Trusted Shares" msgstr "浏览_信任分享" #: pynicotine/gtkgui/application.py:381 pynicotine/gtkgui/application.py:437 msgid "_Rescan Shares" msgstr "_重新扫描共享库" #: pynicotine/gtkgui/application.py:382 pynicotine/gtkgui/application.py:439 msgid "Configure _Shares" msgstr "配置_共享" #: pynicotine/gtkgui/application.py:404 msgid "_Keyboard Shortcuts" msgstr "_键盘快捷键" #: pynicotine/gtkgui/application.py:405 msgid "_Setup Assistant" msgstr "_设置向导" #: pynicotine/gtkgui/application.py:406 msgid "_Transfer Statistics" msgstr "_数据传输统计" #: pynicotine/gtkgui/application.py:408 msgid "Report a _Bug" msgstr "报告_bug" #: pynicotine/gtkgui/application.py:409 msgid "Improve T_ranslations" msgstr "协助翻_译" #: pynicotine/gtkgui/application.py:411 msgid "_About Nicotine+" msgstr "_关于Nicotine+" #: pynicotine/gtkgui/application.py:422 msgid "_File" msgstr "_文件" #: pynicotine/gtkgui/application.py:423 msgid "_Shares" msgstr "_分享" #: pynicotine/gtkgui/application.py:424 pynicotine/gtkgui/application.py:441 msgid "_Help" msgstr "_帮助" #: pynicotine/gtkgui/application.py:438 msgid "_Browse Shares" msgstr "_浏览共享" #: pynicotine/gtkgui/application.py:490 #, python-format msgid "Unable to show notification: %s" msgstr "无法显示通知:%s" #: pynicotine/gtkgui/application.py:533 msgid "You are still uploading files. Do you really want to exit?" msgstr "您正在上传文件。真的要退出吗?" #: pynicotine/gtkgui/application.py:534 msgid "Wait for uploads to finish" msgstr "等待文件上传结束" #: pynicotine/gtkgui/application.py:536 msgid "Do you really want to exit?" msgstr "你真的要退出吗?" #: pynicotine/gtkgui/application.py:540 #: pynicotine/gtkgui/widgets/dialogs.py:455 msgid "_No" msgstr "_不" #: pynicotine/gtkgui/application.py:545 msgid "_Run in Background" msgstr "_在后台运行" #: pynicotine/gtkgui/application.py:549 #: pynicotine/gtkgui/dialogs/preferences.py:1667 #: pynicotine/plugins/core_commands/__init__.py:68 msgid "Quit Nicotine+" msgstr "退出Nicotine+" #: pynicotine/gtkgui/application.py:570 msgid "Shares Not Available" msgstr "共享不可用" #: pynicotine/gtkgui/application.py:571 pynicotine/headless/application.py:121 msgid "" "Verify that external disks are mounted and folder permissions are correct." msgstr "验证外部磁盘是否挂载、文件夹权限是否正确。" #: pynicotine/gtkgui/application.py:574 pynicotine/gtkgui/application.py:598 #: pynicotine/gtkgui/dialogs/pluginsettings.py:41 #: pynicotine/gtkgui/downloads.py:154 pynicotine/gtkgui/widgets/dialogs.py:494 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:5 msgid "_Cancel" msgstr "_取消" #: pynicotine/gtkgui/application.py:575 pynicotine/gtkgui/uploads.py:46 msgid "_Retry" msgstr "_重试" #: pynicotine/gtkgui/application.py:576 msgid "_Force Rescan" msgstr "_强制重新扫描" #: pynicotine/gtkgui/application.py:589 msgid "Invalid Password" msgstr "无效的密码" #: pynicotine/gtkgui/application.py:590 #, python-format msgid "" "User %s already exists, and the password you entered is invalid. Please " "choose another username if this is your first time logging in." msgstr "用户%s已经存在,您输入的密码无效。如果这是您第一次登录,请更换用户名。" #: pynicotine/gtkgui/application.py:599 msgid "Change _Login Details" msgstr "更改_登录详情" #: pynicotine/gtkgui/application.py:766 msgid "Message Downloading Users" msgstr "给正在下载的用户发消息" #: pynicotine/gtkgui/application.py:767 msgid "Send private message to all users who are downloading from you:" msgstr "给下载您文件的所有用户发送私信:" #: pynicotine/gtkgui/application.py:768 pynicotine/gtkgui/application.py:782 #: pynicotine/gtkgui/widgets/popupmenu.py:374 #: pynicotine/gtkgui/ui/userinfo.ui:478 msgid "_Send Message" msgstr "_发信息" #: pynicotine/gtkgui/application.py:780 msgid "Message Buddies" msgstr "向好友发送信息" #: pynicotine/gtkgui/application.py:781 msgid "Send private message to all online buddies:" msgstr "给所有在线好友发私信:" #: pynicotine/gtkgui/application.py:810 msgid "Select a Saved Shares List File" msgstr "选择已保存的共享列表文件" #: pynicotine/gtkgui/application.py:907 msgid "Critical Error" msgstr "严重错误" #: pynicotine/gtkgui/application.py:908 msgid "" "Nicotine+ has encountered a critical error and needs to exit. Please copy " "the following message and include it in a bug report:" msgstr "Nicotine+ 遇到严重错误,需要退出。请复制以下消息并将其加在bug报告中:" #: pynicotine/gtkgui/application.py:912 msgid "_Quit Nicotine+" msgstr "_退出 Nicotine+" #: pynicotine/gtkgui/application.py:913 msgid "_Copy & Report Bug" msgstr "_复制和报告bug" #: pynicotine/gtkgui/buddies.py:71 pynicotine/gtkgui/chatrooms.py:476 #: pynicotine/gtkgui/interests.py:127 #: pynicotine/gtkgui/popovers/chathistory.py:65 #: pynicotine/gtkgui/transfers.py:171 msgid "Status" msgstr "状态" #: pynicotine/gtkgui/buddies.py:77 pynicotine/gtkgui/chatrooms.py:482 #: pynicotine/gtkgui/interests.py:133 pynicotine/gtkgui/search.py:510 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:292 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:385 #: pynicotine/gtkgui/ui/userinfo.ui:290 msgid "Country" msgstr "国家" #: pynicotine/gtkgui/buddies.py:83 pynicotine/gtkgui/chatrooms.py:488 #: pynicotine/gtkgui/dialogs/preferences.py:978 #: pynicotine/gtkgui/dialogs/preferences.py:1121 #: pynicotine/gtkgui/interests.py:139 #: pynicotine/gtkgui/popovers/chathistory.py:71 pynicotine/gtkgui/search.py:504 #: pynicotine/gtkgui/transfers.py:146 msgid "User" msgstr "用户" #: pynicotine/gtkgui/buddies.py:90 pynicotine/gtkgui/chatrooms.py:498 #: pynicotine/gtkgui/interests.py:146 pynicotine/gtkgui/search.py:516 #: pynicotine/gtkgui/transfers.py:193 msgid "Speed" msgstr "速度" #: pynicotine/gtkgui/buddies.py:96 pynicotine/gtkgui/chatrooms.py:505 #: pynicotine/gtkgui/interests.py:153 pynicotine/gtkgui/ui/mainwindow.ui:336 #: pynicotine/gtkgui/ui/mainwindow.ui:575 msgid "Files" msgstr "文件" #: pynicotine/gtkgui/buddies.py:102 #: pynicotine/gtkgui/dialogs/preferences.py:650 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted" msgstr "信任的" #: pynicotine/gtkgui/buddies.py:108 msgid "Notify" msgstr "通知" #: pynicotine/gtkgui/buddies.py:114 msgid "Prioritized" msgstr "优先" #: pynicotine/gtkgui/buddies.py:120 msgid "Last Seen" msgstr "最后登录" #: pynicotine/gtkgui/buddies.py:126 msgid "Note" msgstr "备注" #: pynicotine/gtkgui/buddies.py:143 msgid "Add User _Note…" msgstr "添加用户 _备注…" #: pynicotine/gtkgui/buddies.py:145 #: pynicotine/gtkgui/dialogs/pluginsettings.py:213 #: pynicotine/gtkgui/dialogs/preferences.py:291 #: pynicotine/gtkgui/dialogs/preferences.py:794 #: pynicotine/gtkgui/dialogs/wishlist.py:78 pynicotine/gtkgui/interests.py:182 #: pynicotine/gtkgui/interests.py:191 pynicotine/gtkgui/transfers.py:262 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:447 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:463 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:90 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:106 #: pynicotine/gtkgui/ui/downloads.ui:116 #: pynicotine/gtkgui/ui/settings/ban.ui:193 #: pynicotine/gtkgui/ui/settings/ban.ui:209 #: pynicotine/gtkgui/ui/settings/ban.ui:315 #: pynicotine/gtkgui/ui/settings/ban.ui:331 #: pynicotine/gtkgui/ui/settings/chats.ui:727 #: pynicotine/gtkgui/ui/settings/chats.ui:743 #: pynicotine/gtkgui/ui/settings/chats.ui:911 #: pynicotine/gtkgui/ui/settings/chats.ui:927 #: pynicotine/gtkgui/ui/settings/downloads.ui:501 #: pynicotine/gtkgui/ui/settings/downloads.ui:517 #: pynicotine/gtkgui/ui/settings/ignore.ui:128 #: pynicotine/gtkgui/ui/settings/ignore.ui:144 #: pynicotine/gtkgui/ui/settings/ignore.ui:249 #: pynicotine/gtkgui/ui/settings/ignore.ui:265 #: pynicotine/gtkgui/ui/settings/shares.ui:191 #: pynicotine/gtkgui/ui/settings/shares.ui:207 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:138 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:154 msgid "Remove" msgstr "删除" #: pynicotine/gtkgui/buddies.py:332 msgid "Never seen" msgstr "从未在线" #: pynicotine/gtkgui/buddies.py:500 msgid "Add User Note" msgstr "添加用户备注" #: pynicotine/gtkgui/buddies.py:501 #, python-format msgid "Add a note about user %s:" msgstr "添加关于用户 %s 的备注:" #: pynicotine/gtkgui/buddies.py:502 #: pynicotine/gtkgui/dialogs/pluginsettings.py:369 #: pynicotine/gtkgui/dialogs/preferences.py:460 #: pynicotine/gtkgui/dialogs/preferences.py:1033 #: pynicotine/gtkgui/dialogs/preferences.py:1063 #: pynicotine/gtkgui/dialogs/preferences.py:1196 #: pynicotine/gtkgui/dialogs/preferences.py:1227 #: pynicotine/gtkgui/dialogs/preferences.py:1450 #: pynicotine/gtkgui/dialogs/preferences.py:1509 #: pynicotine/gtkgui/dialogs/preferences.py:2489 msgid "_Add" msgstr "_添加" #: pynicotine/gtkgui/chatrooms.py:207 msgid "Create New Room?" msgstr "创建新聊天室?" #: pynicotine/gtkgui/chatrooms.py:208 #, python-format msgid "Do you really want to create a new room \"%s\"?" msgstr "您确定要创建新聊天室“%s”吗?" #: pynicotine/gtkgui/chatrooms.py:209 msgid "Make room private" msgstr "设为私密聊天室" #: pynicotine/gtkgui/chatrooms.py:530 msgid "Sear_ch User's Files" msgstr "搜索用户文件" #: pynicotine/gtkgui/chatrooms.py:536 pynicotine/gtkgui/chatrooms.py:548 #: pynicotine/gtkgui/privatechat.py:366 msgid "Find…" msgstr "查找……" #: pynicotine/gtkgui/chatrooms.py:538 pynicotine/gtkgui/chatrooms.py:550 #: pynicotine/gtkgui/chatrooms.py:730 pynicotine/gtkgui/chatrooms.py:733 #: pynicotine/gtkgui/privatechat.py:368 pynicotine/gtkgui/privatechat.py:437 #: pynicotine/gtkgui/search.py:614 pynicotine/gtkgui/transfers.py:268 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:176 msgid "Copy" msgstr "复制" #: pynicotine/gtkgui/chatrooms.py:539 pynicotine/gtkgui/chatrooms.py:552 #: pynicotine/gtkgui/privatechat.py:370 msgid "Copy All" msgstr "全部复制" #: pynicotine/gtkgui/chatrooms.py:541 msgid "Clear Activity View" msgstr "清除活动视图" #: pynicotine/gtkgui/chatrooms.py:543 pynicotine/gtkgui/chatrooms.py:558 #: pynicotine/gtkgui/chatrooms.py:563 msgid "_Leave Room" msgstr "_离开房间" #: pynicotine/gtkgui/chatrooms.py:551 pynicotine/gtkgui/chatrooms.py:734 #: pynicotine/gtkgui/privatechat.py:369 pynicotine/gtkgui/privatechat.py:438 msgid "Copy Link" msgstr "复制链接" #: pynicotine/gtkgui/chatrooms.py:554 msgid "View Room Log" msgstr "查看房间日志" #: pynicotine/gtkgui/chatrooms.py:555 msgid "Delete Room Log…" msgstr "删除房间日志……" #: pynicotine/gtkgui/chatrooms.py:557 pynicotine/gtkgui/privatechat.py:375 msgid "Clear Message View" msgstr "清除消息视图" #: pynicotine/gtkgui/chatrooms.py:697 pynicotine/gtkgui/chatrooms.py:831 #, python-format msgid "%s joined the room" msgstr "%s 加入了房间" #: pynicotine/gtkgui/chatrooms.py:756 #, python-format msgid "%(user)s mentioned you in room %(room)s" msgstr "%(user)s 在 %(room)s 房间里提到了你" #: pynicotine/gtkgui/chatrooms.py:761 pynicotine/gtkgui/mainwindow.py:393 #, python-format msgid "Mentioned by %(user)s in Room %(room)s" msgstr "%(user)s 在房间 %(room)s 提到了您" #: pynicotine/gtkgui/chatrooms.py:779 #, python-format msgid "Message by %(user)s in Room %(room)s" msgstr "来自房间 %(room)s %(user)s的消息" #: pynicotine/gtkgui/chatrooms.py:854 #, python-format msgid "%s left the room" msgstr "%s 离开了房间" #: pynicotine/gtkgui/chatrooms.py:899 #, python-format msgid "%s has gone away" msgstr "%s 已离开" #: pynicotine/gtkgui/chatrooms.py:902 #, python-format msgid "%s has returned" msgstr "%s 已返回" #: pynicotine/gtkgui/chatrooms.py:994 pynicotine/gtkgui/privatechat.py:473 msgid "Delete Logged Messages?" msgstr "删除消息记录?" #: pynicotine/gtkgui/chatrooms.py:995 msgid "" "Do you really want to permanently delete all logged messages for this room?" msgstr "您确定要永久删除此房间的所有消息记录吗?" #: pynicotine/gtkgui/dialogs/about.py:383 msgid "About" msgstr "关于" #: pynicotine/gtkgui/dialogs/about.py:393 msgid "Website" msgstr "网站" #: pynicotine/gtkgui/dialogs/about.py:428 #, python-format msgid "Error checking latest version: %s" msgstr "无法检查最新版本:%s" #: pynicotine/gtkgui/dialogs/about.py:433 #, python-format msgid "New release available: %s" msgstr "新版本可下载:%s" #: pynicotine/gtkgui/dialogs/about.py:438 msgid "Up to date" msgstr "已是最新" #: pynicotine/gtkgui/dialogs/about.py:467 msgid "Checking latest version…" msgstr "检查最新版本……" #: pynicotine/gtkgui/dialogs/fastconfigure.py:71 msgid "Setup Assistant" msgstr "设置向导" #: pynicotine/gtkgui/dialogs/fastconfigure.py:95 #: pynicotine/gtkgui/dialogs/preferences.py:599 msgid "Virtual Folder" msgstr "虚拟文件夹" #: pynicotine/gtkgui/dialogs/fastconfigure.py:101 #: pynicotine/gtkgui/dialogs/preferences.py:606 pynicotine/gtkgui/search.py:530 #: pynicotine/gtkgui/uploads.py:45 pynicotine/gtkgui/userbrowse.py:262 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:113 msgid "Folder" msgstr "文件夹" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Finish" msgstr "_完成" #: pynicotine/gtkgui/dialogs/fastconfigure.py:127 msgid "_Next" msgstr "_下一个" #: pynicotine/gtkgui/dialogs/fastconfigure.py:168 #: pynicotine/gtkgui/dialogs/preferences.py:688 msgid "Add a Shared Folder" msgstr "添加共享文件夹" #: pynicotine/gtkgui/dialogs/fastconfigure.py:199 #: pynicotine/gtkgui/dialogs/preferences.py:730 msgid "Edit Shared Folder" msgstr "编辑共享文件夹" #: pynicotine/gtkgui/dialogs/fastconfigure.py:200 #: pynicotine/gtkgui/dialogs/preferences.py:731 #, python-format msgid "Enter new virtual name for '%(dir)s':" msgstr "为“%(dir)s”输入新的虚拟名称:" #: pynicotine/gtkgui/dialogs/fastconfigure.py:202 #: pynicotine/gtkgui/dialogs/pluginsettings.py:395 #: pynicotine/gtkgui/dialogs/preferences.py:491 #: pynicotine/gtkgui/dialogs/preferences.py:737 #: pynicotine/gtkgui/dialogs/preferences.py:1477 #: pynicotine/gtkgui/dialogs/preferences.py:1539 #: pynicotine/gtkgui/dialogs/preferences.py:2518 #: pynicotine/gtkgui/dialogs/wishlist.py:137 msgid "_Edit" msgstr "_编辑" #: pynicotine/gtkgui/dialogs/fileproperties.py:64 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:258 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:313 msgid "File Properties" msgstr "文件属性" #: pynicotine/gtkgui/dialogs/fileproperties.py:75 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s / %(length)s)" msgstr "文件属性 (%(num)i of %(total)i / %(size)s / %(length)s)" #: pynicotine/gtkgui/dialogs/fileproperties.py:81 #, python-format msgid "File Properties (%(num)i of %(total)i / %(size)s)" msgstr "文件属性 (%(total)i 中的第 %(num)i 个 / %(size)s)" #: pynicotine/gtkgui/dialogs/pluginsettings.py:44 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:17 msgid "_Apply" msgstr "_应用" #: pynicotine/gtkgui/dialogs/pluginsettings.py:211 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:385 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:401 #: pynicotine/gtkgui/ui/settings/ban.ui:162 #: pynicotine/gtkgui/ui/settings/ban.ui:178 #: pynicotine/gtkgui/ui/settings/ban.ui:284 #: pynicotine/gtkgui/ui/settings/ban.ui:300 #: pynicotine/gtkgui/ui/settings/chats.ui:665 #: pynicotine/gtkgui/ui/settings/chats.ui:681 #: pynicotine/gtkgui/ui/settings/chats.ui:849 #: pynicotine/gtkgui/ui/settings/chats.ui:865 #: pynicotine/gtkgui/ui/settings/downloads.ui:455 #: pynicotine/gtkgui/ui/settings/ignore.ui:97 #: pynicotine/gtkgui/ui/settings/ignore.ui:113 #: pynicotine/gtkgui/ui/settings/ignore.ui:218 #: pynicotine/gtkgui/ui/settings/ignore.ui:234 #: pynicotine/gtkgui/ui/settings/shares.ui:129 #: pynicotine/gtkgui/ui/settings/shares.ui:145 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:76 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:92 msgid "Add…" msgstr "添加……" #: pynicotine/gtkgui/dialogs/pluginsettings.py:212 #: pynicotine/gtkgui/dialogs/wishlist.py:76 pynicotine/gtkgui/search.py:620 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:416 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:432 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:60 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:76 #: pynicotine/gtkgui/ui/settings/chats.ui:696 #: pynicotine/gtkgui/ui/settings/chats.ui:712 #: pynicotine/gtkgui/ui/settings/chats.ui:880 #: pynicotine/gtkgui/ui/settings/chats.ui:896 #: pynicotine/gtkgui/ui/settings/downloads.ui:470 #: pynicotine/gtkgui/ui/settings/downloads.ui:486 #: pynicotine/gtkgui/ui/settings/shares.ui:160 #: pynicotine/gtkgui/ui/settings/shares.ui:176 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:107 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:123 msgid "Edit…" msgstr "编辑……" #: pynicotine/gtkgui/dialogs/pluginsettings.py:351 #, python-format msgid "%s Settings" msgstr "%s 设置" #: pynicotine/gtkgui/dialogs/pluginsettings.py:367 msgid "Add Item" msgstr "增加条目" #: pynicotine/gtkgui/dialogs/pluginsettings.py:393 msgid "Edit Item" msgstr "编辑项目" #: pynicotine/gtkgui/dialogs/preferences.py:124 #: pynicotine/gtkgui/search.py:1533 pynicotine/gtkgui/userinfo.py:585 #: pynicotine/gtkgui/userinfo.py:708 pynicotine/gtkgui/widgets/treeview.py:642 #: pynicotine/users.py:222 pynicotine/gtkgui/ui/settings/network.ui:129 #: pynicotine/gtkgui/ui/userinfo.ui:139 pynicotine/gtkgui/ui/userinfo.ui:166 #: pynicotine/gtkgui/ui/userinfo.ui:193 pynicotine/gtkgui/ui/userinfo.ui:220 #: pynicotine/gtkgui/ui/userinfo.ui:247 pynicotine/gtkgui/ui/userinfo.ui:274 #: pynicotine/gtkgui/ui/userinfo.ui:302 msgid "Unknown" msgstr "未知" #: pynicotine/gtkgui/dialogs/preferences.py:128 #: pynicotine/gtkgui/ui/settings/network.ui:139 msgid "Check Port Status" msgstr "检查端口状态" #: pynicotine/gtkgui/dialogs/preferences.py:130 #, python-format msgid "%(ip)s, port %(port)s" msgstr "%(ip)s,端口 %(port)s" #: pynicotine/gtkgui/dialogs/preferences.py:198 msgid "Password Change Rejected" msgstr "密码更改被拒绝" #: pynicotine/gtkgui/dialogs/preferences.py:217 msgid "Enter a new password for your Soulseek account:" msgstr "为您的 Soulseek 账户输入新密码:" #: pynicotine/gtkgui/dialogs/preferences.py:219 msgid "" "You are currently logged out of the Soulseek network. If you want to change " "the password of an existing Soulseek account, you need to be logged into " "that account." msgstr "" "您当前已退出 Soulseek 网络。如果您想更改现有 Soulseek 账户的密码,您需要登录" "该帐户。" #: pynicotine/gtkgui/dialogs/preferences.py:222 msgid "Enter password to use when logging in:" msgstr "输入登录时使用的密码:" #: pynicotine/gtkgui/dialogs/preferences.py:226 #: pynicotine/gtkgui/ui/settings/network.ui:77 #: pynicotine/gtkgui/ui/settings/network.ui:93 msgid "Change Password" msgstr "更改密码" #: pynicotine/gtkgui/dialogs/preferences.py:229 msgid "_Change" msgstr "_更改" #: pynicotine/gtkgui/dialogs/preferences.py:276 msgid "No one" msgstr "没有人" #: pynicotine/gtkgui/dialogs/preferences.py:277 msgid "Everyone" msgstr "所有人" #: pynicotine/gtkgui/dialogs/preferences.py:278 #: pynicotine/gtkgui/dialogs/preferences.py:570 #: pynicotine/gtkgui/dialogs/preferences.py:646 #: pynicotine/gtkgui/mainwindow.py:713 pynicotine/gtkgui/search.py:275 #: pynicotine/gtkgui/ui/buddies.ui:18 pynicotine/gtkgui/ui/mainwindow.ui:1363 #: pynicotine/gtkgui/ui/settings/userinterface.ui:686 msgid "Buddies" msgstr "好友" #: pynicotine/gtkgui/dialogs/preferences.py:279 #: pynicotine/gtkgui/dialogs/preferences.py:571 #: pynicotine/gtkgui/dialogs/preferences.py:696 #: pynicotine/gtkgui/dialogs/preferences.py:733 msgid "Trusted buddies" msgstr "信任好友" #: pynicotine/gtkgui/dialogs/preferences.py:286 #: pynicotine/gtkgui/dialogs/preferences.py:789 msgid "Nothing" msgstr "没有" #: pynicotine/gtkgui/dialogs/preferences.py:287 #: pynicotine/gtkgui/dialogs/preferences.py:790 msgid "Open File" msgstr "打开文件" #: pynicotine/gtkgui/dialogs/preferences.py:288 #: pynicotine/gtkgui/dialogs/preferences.py:791 #: pynicotine/gtkgui/widgets/filechooser.py:272 msgid "Open in File Manager" msgstr "在文件管理器中打开" #: pynicotine/gtkgui/dialogs/preferences.py:289 #: pynicotine/gtkgui/dialogs/preferences.py:792 #: pynicotine/gtkgui/mainwindow.py:1058 msgid "Search" msgstr "搜索" #: pynicotine/gtkgui/dialogs/preferences.py:290 #: pynicotine/gtkgui/ui/downloads.ui:86 msgid "Pause" msgstr "暂停" #: pynicotine/gtkgui/dialogs/preferences.py:292 #: pynicotine/gtkgui/ui/downloads.ui:56 msgid "Resume" msgstr "恢复" #: pynicotine/gtkgui/dialogs/preferences.py:293 #: pynicotine/gtkgui/dialogs/preferences.py:796 msgid "Browse Folder" msgstr "浏览文件夹" #: pynicotine/gtkgui/dialogs/preferences.py:310 msgid "" "Syntax: Case-insensitive. If enabled, Python regular expressions can " "be used, otherwise only wildcard * matches are supported." msgstr "" "语法:不区分大小写。如果启用正则,则可以使用 Python 正则表达式,否则仅" "支持通配符 * 匹配。" #: pynicotine/gtkgui/dialogs/preferences.py:320 msgid "Filter" msgstr "筛选" #: pynicotine/gtkgui/dialogs/preferences.py:327 msgid "Regex" msgstr "正则表达式" #: pynicotine/gtkgui/dialogs/preferences.py:458 msgid "Add Download Filter" msgstr "添加下载过滤器" #: pynicotine/gtkgui/dialogs/preferences.py:459 msgid "Enter a new download filter:" msgstr "输入新的下载过滤器:" #: pynicotine/gtkgui/dialogs/preferences.py:463 #: pynicotine/gtkgui/dialogs/preferences.py:496 msgid "Enable regular expressions" msgstr "启用正则表达式" #: pynicotine/gtkgui/dialogs/preferences.py:489 msgid "Edit Download Filter" msgstr "编辑下载过滤器" #: pynicotine/gtkgui/dialogs/preferences.py:490 msgid "Modify the following download filter:" msgstr "修改以下下载过滤器:" #: pynicotine/gtkgui/dialogs/preferences.py:556 #, python-format msgid "%(num)d Failed! %(error)s " msgstr "%(num)d 失败! %(error)s " #: pynicotine/gtkgui/dialogs/preferences.py:563 msgid "Filters Successful" msgstr "过滤成功" #: pynicotine/gtkgui/dialogs/preferences.py:569 #: pynicotine/gtkgui/dialogs/preferences.py:642 #: pynicotine/gtkgui/dialogs/preferences.py:681 msgid "Public" msgstr "公开" #: pynicotine/gtkgui/dialogs/preferences.py:612 msgid "Accessible To" msgstr "可访问的人" #: pynicotine/gtkgui/dialogs/preferences.py:793 #: pynicotine/gtkgui/ui/uploads.ui:56 msgid "Abort" msgstr "中止" #: pynicotine/gtkgui/dialogs/preferences.py:795 #: pynicotine/gtkgui/ui/userbrowse.ui:5 pynicotine/gtkgui/ui/userinfo.ui:5 msgid "Retry" msgstr "重试" #: pynicotine/gtkgui/dialogs/preferences.py:803 msgid "Round Robin" msgstr "循环调度" #: pynicotine/gtkgui/dialogs/preferences.py:804 msgid "First In, First Out" msgstr "先进先出" #: pynicotine/gtkgui/dialogs/preferences.py:959 #: pynicotine/gtkgui/dialogs/preferences.py:1102 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:215 msgid "Username" msgstr "用户名" #: pynicotine/gtkgui/dialogs/preferences.py:972 #: pynicotine/gtkgui/dialogs/preferences.py:1115 pynicotine/users.py:232 msgid "IP Address" msgstr "IP地址" #: pynicotine/gtkgui/dialogs/preferences.py:1031 #: pynicotine/gtkgui/userinfo.py:537 pynicotine/gtkgui/widgets/popupmenu.py:385 #: pynicotine/gtkgui/widgets/popupmenu.py:431 msgid "Ignore User" msgstr "忽略用户" #: pynicotine/gtkgui/dialogs/preferences.py:1032 msgid "Enter the name of the user you want to ignore:" msgstr "输入您想要忽略的用户:" #: pynicotine/gtkgui/dialogs/preferences.py:1061 #: pynicotine/gtkgui/widgets/popupmenu.py:388 #: pynicotine/gtkgui/widgets/popupmenu.py:433 msgid "Ignore IP Address" msgstr "忽略 IP 地址" #: pynicotine/gtkgui/dialogs/preferences.py:1062 msgid "Enter an IP address you want to ignore:" msgstr "输入要忽略的 IP 地址:" #: pynicotine/gtkgui/dialogs/preferences.py:1062 #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "* is a wildcard" msgstr "* 是通配符" #: pynicotine/gtkgui/dialogs/preferences.py:1194 #: pynicotine/gtkgui/userinfo.py:533 pynicotine/gtkgui/widgets/popupmenu.py:384 #: pynicotine/gtkgui/widgets/popupmenu.py:430 msgid "Ban User" msgstr "封禁用户" #: pynicotine/gtkgui/dialogs/preferences.py:1195 msgid "Enter the name of the user you want to ban:" msgstr "输入您想要封禁的用户名:" #: pynicotine/gtkgui/dialogs/preferences.py:1225 #: pynicotine/gtkgui/widgets/popupmenu.py:387 #: pynicotine/gtkgui/widgets/popupmenu.py:432 msgid "Ban IP Address" msgstr "封禁 IP 地址" #: pynicotine/gtkgui/dialogs/preferences.py:1226 msgid "Enter an IP address you want to ban:" msgstr "输入您想要封禁的 IP 地址:" #: pynicotine/gtkgui/dialogs/preferences.py:1275 #: pynicotine/gtkgui/dialogs/preferences.py:2124 msgid "Format codes" msgstr "样式代码" #: pynicotine/gtkgui/dialogs/preferences.py:1296 #: pynicotine/gtkgui/dialogs/preferences.py:1310 msgid "Pattern" msgstr "匹配模式" #: pynicotine/gtkgui/dialogs/preferences.py:1317 msgid "Replacement" msgstr "替换" #: pynicotine/gtkgui/dialogs/preferences.py:1447 msgid "Censor Pattern" msgstr "违禁词匹配模式" #: pynicotine/gtkgui/dialogs/preferences.py:1448 #: pynicotine/gtkgui/dialogs/preferences.py:1475 msgid "" "Enter a pattern you want to censor. Add spaces around the pattern if you " "don't want to match strings inside words (may fail at the beginning and end " "of lines)." msgstr "" "输入违禁词的匹配模式。如果您不想匹配单词中的字符串(可能在行首和行尾失败)," "请在模式匹配模式周围添加空格。" #: pynicotine/gtkgui/dialogs/preferences.py:1474 msgid "Edit Censored Pattern" msgstr "编辑违禁词匹配模式" #: pynicotine/gtkgui/dialogs/preferences.py:1507 msgid "Add Replacement" msgstr "添加替换" #: pynicotine/gtkgui/dialogs/preferences.py:1508 #: pynicotine/gtkgui/dialogs/preferences.py:1538 msgid "Enter a text pattern and what to replace it with:" msgstr "输入文本匹配模式及其替换内容:" #: pynicotine/gtkgui/dialogs/preferences.py:1537 msgid "Edit Replacement" msgstr "编辑替换" #: pynicotine/gtkgui/dialogs/preferences.py:1654 msgid "System default" msgstr "系统默认" #: pynicotine/gtkgui/dialogs/preferences.py:1668 msgid "Show confirmation dialog" msgstr "显示确认对话框" #: pynicotine/gtkgui/dialogs/preferences.py:1669 msgid "Run in the background" msgstr "在后台运行" #: pynicotine/gtkgui/dialogs/preferences.py:1677 msgid "bold" msgstr "粗体" #: pynicotine/gtkgui/dialogs/preferences.py:1678 msgid "italic" msgstr "斜体" #: pynicotine/gtkgui/dialogs/preferences.py:1679 msgid "underline" msgstr "下划线" #: pynicotine/gtkgui/dialogs/preferences.py:1680 msgid "normal" msgstr "标准" #: pynicotine/gtkgui/dialogs/preferences.py:1688 msgid "Separate Buddies tab" msgstr "拆分好友选项卡" #: pynicotine/gtkgui/dialogs/preferences.py:1689 msgid "Sidebar in Chat Rooms tab" msgstr "在聊天室中显示侧边栏" #: pynicotine/gtkgui/dialogs/preferences.py:1690 msgid "Always visible sidebar" msgstr "侧边栏总是可见" #: pynicotine/gtkgui/dialogs/preferences.py:1695 msgid "Top" msgstr "顶部" #: pynicotine/gtkgui/dialogs/preferences.py:1696 msgid "Bottom" msgstr "底部" #: pynicotine/gtkgui/dialogs/preferences.py:1697 msgid "Left" msgstr "左侧" #: pynicotine/gtkgui/dialogs/preferences.py:1698 msgid "Right" msgstr "右侧" #: pynicotine/gtkgui/dialogs/preferences.py:1833 #: pynicotine/gtkgui/mainwindow.py:952 #: pynicotine/gtkgui/widgets/iconnotebook.py:613 #: pynicotine/gtkgui/widgets/theme.py:219 msgid "Online" msgstr "在线" #: pynicotine/gtkgui/dialogs/preferences.py:1834 #: pynicotine/gtkgui/mainwindow.py:949 #: pynicotine/gtkgui/widgets/iconnotebook.py:610 #: pynicotine/gtkgui/widgets/theme.py:220 #: pynicotine/gtkgui/widgets/trayicon.py:101 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:33 msgid "Away" msgstr "离开" #: pynicotine/gtkgui/dialogs/preferences.py:1835 #: pynicotine/gtkgui/mainwindow.py:956 #: pynicotine/gtkgui/widgets/iconnotebook.py:616 #: pynicotine/gtkgui/widgets/theme.py:221 #: pynicotine/gtkgui/ui/mainwindow.ui:1843 msgid "Offline" msgstr "离线" #: pynicotine/gtkgui/dialogs/preferences.py:1837 msgid "Tab Changed" msgstr "选项卡已更改" #: pynicotine/gtkgui/dialogs/preferences.py:1838 msgid "Tab Highlight" msgstr "选项卡高亮" #: pynicotine/gtkgui/dialogs/preferences.py:1839 msgid "Window" msgstr "窗口" #: pynicotine/gtkgui/dialogs/preferences.py:1843 msgid "Online (Tray)" msgstr "在线(托盘)" #: pynicotine/gtkgui/dialogs/preferences.py:1844 msgid "Away (Tray)" msgstr "离开(托盘)" #: pynicotine/gtkgui/dialogs/preferences.py:1845 msgid "Offline (Tray)" msgstr "离线 (托盘)" #: pynicotine/gtkgui/dialogs/preferences.py:1846 msgid "Message (Tray)" msgstr "消息(托盘)" #: pynicotine/gtkgui/dialogs/preferences.py:2415 msgid "Protocol" msgstr "协议" #: pynicotine/gtkgui/dialogs/preferences.py:2423 msgid "Command" msgstr "命令" #: pynicotine/gtkgui/dialogs/preferences.py:2487 msgid "Add URL Handler" msgstr "添加 URL 处理程序" #: pynicotine/gtkgui/dialogs/preferences.py:2488 msgid "Enter the protocol and the command for the URL handler:" msgstr "输入 URL 处理程序的协议和命令:" #: pynicotine/gtkgui/dialogs/preferences.py:2516 msgid "Edit Command" msgstr "编辑命令" #: pynicotine/gtkgui/dialogs/preferences.py:2517 #, python-format msgid "Enter a new command for protocol %s:" msgstr "为协议输入新命令 %s:" #: pynicotine/gtkgui/dialogs/preferences.py:2672 msgid "Username;APIKEY" msgstr "用户名;APIKEY" #: pynicotine/gtkgui/dialogs/preferences.py:2676 msgid "" "Music player (e.g. amarok, audacious, exaile); leave empty to autodetect:" msgstr "音乐播放器(例如 amarok、audacious、exaile); 留空自动检测:" #: pynicotine/gtkgui/dialogs/preferences.py:2680 #: pynicotine/headless/application.py:101 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:170 #: pynicotine/gtkgui/ui/settings/network.ui:54 msgid "Username: " msgstr "用户名: " #: pynicotine/gtkgui/dialogs/preferences.py:2684 msgid "Command:" msgstr "命令:" #: pynicotine/gtkgui/dialogs/preferences.py:2692 #: pynicotine/gtkgui/dialogs/preferences.py:2695 msgid "Title" msgstr "标题" #: pynicotine/gtkgui/dialogs/preferences.py:2694 #, python-format msgid "Now Playing (typically \"%(artist)s - %(title)s\")" msgstr "正在播放(通常为“%(artist)s - %(title)s”)" #: pynicotine/gtkgui/dialogs/preferences.py:2695 #: pynicotine/gtkgui/dialogs/preferences.py:2703 msgid "Artist" msgstr "艺术家" #: pynicotine/gtkgui/dialogs/preferences.py:2697 #: pynicotine/gtkgui/search.py:567 pynicotine/gtkgui/userbrowse.py:345 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:163 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:321 msgid "Duration" msgstr "时长" #: pynicotine/gtkgui/dialogs/preferences.py:2699 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:272 msgid "Bitrate" msgstr "比特率" #: pynicotine/gtkgui/dialogs/preferences.py:2701 msgid "Comment" msgstr "评论" #: pynicotine/gtkgui/dialogs/preferences.py:2705 msgid "Album" msgstr "专辑" #: pynicotine/gtkgui/dialogs/preferences.py:2707 msgid "Track Number" msgstr "音轨号" #: pynicotine/gtkgui/dialogs/preferences.py:2709 msgid "Year" msgstr "年" #: pynicotine/gtkgui/dialogs/preferences.py:2711 msgid "Filename (URI)" msgstr "文件名 (URI)" #: pynicotine/gtkgui/dialogs/preferences.py:2713 msgid "Program" msgstr "程序" #: pynicotine/gtkgui/dialogs/preferences.py:2775 msgid "Enabled" msgstr "启用" #: pynicotine/gtkgui/dialogs/preferences.py:2782 msgid "Plugin" msgstr "插件" #: pynicotine/gtkgui/dialogs/preferences.py:2831 msgid "No Plugin Selected" msgstr "未选择插件" #: pynicotine/gtkgui/dialogs/preferences.py:2906 #: pynicotine/gtkgui/ui/settings/network.ui:27 msgid "Network" msgstr "网络" #: pynicotine/gtkgui/dialogs/preferences.py:2907 #: pynicotine/gtkgui/ui/settings/userinterface.ui:28 msgid "User Interface" msgstr "用户界面" #: pynicotine/gtkgui/dialogs/preferences.py:2908 #: pynicotine/plugins/core_commands/__init__.py:30 #: pynicotine/gtkgui/ui/settings/shares.ui:11 msgid "Shares" msgstr "共享" #: pynicotine/gtkgui/dialogs/preferences.py:2910 #: pynicotine/gtkgui/mainwindow.py:709 pynicotine/gtkgui/mainwindow.py:1057 #: pynicotine/gtkgui/widgets/trayicon.py:90 #: pynicotine/gtkgui/ui/mainwindow.ui:697 #: pynicotine/gtkgui/ui/settings/uploads.ui:47 #: pynicotine/gtkgui/ui/settings/userinterface.ui:638 msgid "Uploads" msgstr "上传" #: pynicotine/gtkgui/dialogs/preferences.py:2911 #: pynicotine/gtkgui/widgets/trayicon.py:96 #: pynicotine/gtkgui/ui/settings/search.ui:33 msgid "Searches" msgstr "搜索" #: pynicotine/gtkgui/dialogs/preferences.py:2912 msgid "User Profile" msgstr "用户资料" #: pynicotine/gtkgui/dialogs/preferences.py:2913 #: pynicotine/gtkgui/ui/settings/chats.ui:32 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1064 msgid "Chats" msgstr "聊天" #: pynicotine/gtkgui/dialogs/preferences.py:2914 #: pynicotine/gtkgui/ui/settings/nowplaying.ui:16 msgid "Now Playing" msgstr "正在播放" #: pynicotine/gtkgui/dialogs/preferences.py:2915 #: pynicotine/gtkgui/ui/settings/log.ui:64 msgid "Logging" msgstr "日志" #: pynicotine/gtkgui/dialogs/preferences.py:2916 #: pynicotine/gtkgui/ui/settings/ban.ui:16 msgid "Banned Users" msgstr "已拉黑的用户" #: pynicotine/gtkgui/dialogs/preferences.py:2917 #: pynicotine/gtkgui/ui/settings/ignore.ui:16 msgid "Ignored Users" msgstr "已忽略的用户" #: pynicotine/gtkgui/dialogs/preferences.py:2918 #: pynicotine/gtkgui/ui/settings/plugin.ui:29 msgid "Plugins" msgstr "插件" #: pynicotine/gtkgui/dialogs/preferences.py:2919 #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:11 msgid "URL Handlers" msgstr "URL 处理程序" #: pynicotine/gtkgui/dialogs/preferences.py:2944 #: pynicotine/gtkgui/widgets/trayicon.py:105 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:61 msgid "Preferences" msgstr "偏好" #: pynicotine/gtkgui/dialogs/preferences.py:3252 msgid "Pick a File Name for Config Backup" msgstr "为配置备份选择一个文件名" #: pynicotine/gtkgui/dialogs/statistics.py:75 msgid "Transfer Statistics" msgstr "传输统计信息" #: pynicotine/gtkgui/dialogs/statistics.py:97 #, python-format msgid "Total Since %(date)s" msgstr "自 %(date)s 以来总计" #: pynicotine/gtkgui/dialogs/statistics.py:123 msgid "Reset Transfer Statistics?" msgstr "重置数据传输统计?" #: pynicotine/gtkgui/dialogs/statistics.py:124 msgid "Do you really want to reset transfer statistics?" msgstr "您真的要重置传输统计信息吗?" #: pynicotine/gtkgui/dialogs/wishlist.py:47 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:320 msgid "Wishlist" msgstr "心愿单" #: pynicotine/gtkgui/dialogs/wishlist.py:60 pynicotine/gtkgui/search.py:355 msgid "Wish" msgstr "心愿单" #: pynicotine/gtkgui/dialogs/wishlist.py:75 pynicotine/gtkgui/interests.py:180 #: pynicotine/gtkgui/interests.py:189 pynicotine/gtkgui/interests.py:201 #: pynicotine/gtkgui/userinfo.py:351 msgid "_Search for Item" msgstr "_搜索条目" #: pynicotine/gtkgui/dialogs/wishlist.py:134 msgid "Edit Wish" msgstr "编辑心愿单" #: pynicotine/gtkgui/dialogs/wishlist.py:135 #, python-format msgid "Enter new value for wish '%s':" msgstr "为心愿单“%s”输入新值:" #: pynicotine/gtkgui/dialogs/wishlist.py:174 msgid "Clear Wishlist?" msgstr "清除愿心愿单?" #: pynicotine/gtkgui/dialogs/wishlist.py:175 msgid "Do you really want to clear your wishlist?" msgstr "您真的要清空心愿单吗?" #: pynicotine/gtkgui/downloads.py:45 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:138 msgid "Path" msgstr "路径" #: pynicotine/gtkgui/downloads.py:46 msgid "_Resume" msgstr "_恢复" #: pynicotine/gtkgui/downloads.py:47 msgid "P_ause" msgstr "暂停" #: pynicotine/gtkgui/downloads.py:70 msgid "Finished / Filtered" msgstr "已完成 / 已过滤" #: pynicotine/gtkgui/downloads.py:72 pynicotine/gtkgui/transfers.py:70 #: pynicotine/gtkgui/uploads.py:73 msgid "Finished" msgstr "已完成" #: pynicotine/gtkgui/downloads.py:73 pynicotine/gtkgui/transfers.py:68 msgid "Paused" msgstr "已暂停" #: pynicotine/gtkgui/downloads.py:74 pynicotine/gtkgui/transfers.py:71 msgid "Filtered" msgstr "已过滤" #: pynicotine/gtkgui/downloads.py:75 msgid "Deleted" msgstr "已删除" #: pynicotine/gtkgui/downloads.py:76 pynicotine/gtkgui/uploads.py:77 msgid "Queued…" msgstr "队列……" #: pynicotine/gtkgui/downloads.py:78 pynicotine/gtkgui/uploads.py:79 msgid "Everything…" msgstr "全部……" #: pynicotine/gtkgui/downloads.py:119 msgid "Clear Queued Downloads" msgstr "清除下载队列" #: pynicotine/gtkgui/downloads.py:120 msgid "Do you really want to clear all queued downloads?" msgstr "您真的要清除已加入队列的下载吗?" #: pynicotine/gtkgui/downloads.py:132 msgid "Clear All Downloads" msgstr "清除所有下载" #: pynicotine/gtkgui/downloads.py:133 msgid "Do you really want to clear all downloads?" msgstr "您真的要清除所有下载吗?" #: pynicotine/gtkgui/downloads.py:150 #, python-format msgid "Download %(num)i files?" msgstr "下载 %(num)i 个文件?" #: pynicotine/gtkgui/downloads.py:151 #, python-format msgid "" "Do you really want to download %(num)i files from %(user)s's folder " "%(folder)s?" msgstr "您真的要从 %(user)s 的文件夹 %(folder)s 下载 %(num)i 个文件吗?" #: pynicotine/gtkgui/downloads.py:155 pynicotine/gtkgui/userbrowse.py:381 msgid "_Download Folder" msgstr "_下载文件夹" #: pynicotine/gtkgui/interests.py:79 pynicotine/gtkgui/userinfo.py:319 msgid "Likes" msgstr "喜欢" #: pynicotine/gtkgui/interests.py:91 pynicotine/gtkgui/userinfo.py:331 msgid "Dislikes" msgstr "不喜欢" #: pynicotine/gtkgui/interests.py:104 msgid "Rating" msgstr "评分" #: pynicotine/gtkgui/interests.py:111 msgid "Item" msgstr "条目" #: pynicotine/gtkgui/interests.py:179 pynicotine/gtkgui/interests.py:188 #: pynicotine/gtkgui/interests.py:200 msgid "_Recommendations for Item" msgstr "_条目建议" #: pynicotine/gtkgui/interests.py:197 pynicotine/gtkgui/interests.py:528 #: pynicotine/gtkgui/userinfo.py:348 msgid "I _Like This" msgstr "我_喜欢这个" #: pynicotine/gtkgui/interests.py:198 pynicotine/gtkgui/interests.py:531 #: pynicotine/gtkgui/userinfo.py:349 msgid "I _Dislike This" msgstr "我_不喜欢这个" #: pynicotine/gtkgui/interests.py:402 pynicotine/gtkgui/interests.py:417 #: pynicotine/gtkgui/ui/interests.ui:131 msgid "Recommendations" msgstr "建议" #: pynicotine/gtkgui/interests.py:403 pynicotine/gtkgui/interests.py:438 #: pynicotine/gtkgui/ui/interests.ui:191 msgid "Similar Users" msgstr "类似用户" #: pynicotine/gtkgui/interests.py:415 #, python-format msgid "Recommendations (%s)" msgstr "建议(%s)" #: pynicotine/gtkgui/interests.py:436 #, python-format msgid "Similar Users (%s)" msgstr "类似用户(%s)" #: pynicotine/gtkgui/mainwindow.py:388 pynicotine/gtkgui/privatechat.py:496 #, python-format msgid "Private Message from %(user)s" msgstr "来自 %(user)s 的私信" #: pynicotine/gtkgui/mainwindow.py:396 pynicotine/gtkgui/search.py:915 msgid "Wishlist Results Found" msgstr "已找到心愿单项目" #: pynicotine/gtkgui/mainwindow.py:711 pynicotine/gtkgui/ui/mainwindow.ui:1034 #: pynicotine/gtkgui/ui/settings/userinterface.ui:662 #: pynicotine/gtkgui/ui/settings/userinterface.ui:843 msgid "User Profiles" msgstr "用户资料" #: pynicotine/gtkgui/mainwindow.py:714 pynicotine/gtkgui/widgets/trayicon.py:95 #: pynicotine/plugins/core_commands/__init__.py:26 #: pynicotine/gtkgui/ui/mainwindow.ui:1527 #: pynicotine/gtkgui/ui/settings/userinterface.ui:698 #: pynicotine/gtkgui/ui/settings/userinterface.ui:887 msgid "Chat Rooms" msgstr "聊天室" #: pynicotine/gtkgui/mainwindow.py:715 pynicotine/gtkgui/ui/mainwindow.ui:1583 #: pynicotine/gtkgui/ui/settings/userinterface.ui:710 #: pynicotine/gtkgui/ui/userinfo.ui:348 msgid "Interests" msgstr "兴趣" #: pynicotine/gtkgui/mainwindow.py:1059 #: pynicotine/plugins/core_commands/__init__.py:25 msgid "Chat" msgstr "聊天" #: pynicotine/gtkgui/mainwindow.py:1061 msgid "[Debug] Connections" msgstr "[调试] 连接" #: pynicotine/gtkgui/mainwindow.py:1062 msgid "[Debug] Messages" msgstr "[调试] 信息" #: pynicotine/gtkgui/mainwindow.py:1063 msgid "[Debug] Transfers" msgstr "[调试] 传输" #: pynicotine/gtkgui/mainwindow.py:1064 msgid "[Debug] Miscellaneous" msgstr "[调试] 杂项" #: pynicotine/gtkgui/mainwindow.py:1069 msgid "_Find…" msgstr "_查找……" #: pynicotine/gtkgui/mainwindow.py:1071 pynicotine/gtkgui/mainwindow.py:1097 msgid "_Copy" msgstr "_复制" #: pynicotine/gtkgui/mainwindow.py:1072 msgid "Copy _All" msgstr "复制_全部" #: pynicotine/gtkgui/mainwindow.py:1074 msgid "View _Debug Logs" msgstr "查看_调试日志" #: pynicotine/gtkgui/mainwindow.py:1075 msgid "View _Transfer Logs" msgstr "打开_传输日志" #: pynicotine/gtkgui/mainwindow.py:1077 msgid "_Log Categories" msgstr "_日志分类" #: pynicotine/gtkgui/mainwindow.py:1079 msgid "Clear Log View" msgstr "清除日志视图" #: pynicotine/gtkgui/mainwindow.py:1148 #, python-format msgid "Downloads: %(speed)s" msgstr "下载:%(speed)s" #: pynicotine/gtkgui/mainwindow.py:1152 #, python-format msgid "Uploads: %(speed)s" msgstr "上传:%(speed)s" #: pynicotine/gtkgui/mainwindow.py:1181 msgid "Preparing Shares" msgstr "准备共享" #: pynicotine/gtkgui/mainwindow.py:1189 msgid "Scanning Shares" msgstr "扫描共享" #: pynicotine/gtkgui/mainwindow.py:1236 msgid "Quitting..." msgstr "退出中……" #: pynicotine/gtkgui/popovers/chathistory.py:77 msgid "Latest Message" msgstr "最新消息" #: pynicotine/gtkgui/popovers/roomlist.py:68 msgid "Room" msgstr "房间" #: pynicotine/gtkgui/popovers/roomlist.py:76 #: pynicotine/plugins/core_commands/__init__.py:31 #: pynicotine/gtkgui/ui/chatrooms.ui:185 pynicotine/gtkgui/ui/mainwindow.ui:296 #: pynicotine/gtkgui/ui/mainwindow.ui:535 #: pynicotine/gtkgui/ui/settings/ban.ui:123 #: pynicotine/gtkgui/ui/settings/ignore.ui:59 msgid "Users" msgstr "用户" #: pynicotine/gtkgui/popovers/roomlist.py:92 #: pynicotine/gtkgui/popovers/roomlist.py:257 msgid "Join Room" msgstr "加入聊天室" #: pynicotine/gtkgui/popovers/roomlist.py:93 #: pynicotine/gtkgui/popovers/roomlist.py:258 msgid "Leave Room" msgstr "离开聊天室" #: pynicotine/gtkgui/popovers/roomlist.py:95 #: pynicotine/gtkgui/popovers/roomlist.py:260 msgid "Disown Private Room" msgstr "放弃私密聊天室所有权" #: pynicotine/gtkgui/popovers/roomlist.py:96 #: pynicotine/gtkgui/popovers/roomlist.py:261 msgid "Cancel Room Membership" msgstr "取消聊天室会员资格" #: pynicotine/gtkgui/privatechat.py:360 pynicotine/gtkgui/search.py:624 #: pynicotine/gtkgui/userbrowse.py:279 pynicotine/gtkgui/userinfo.py:343 #: pynicotine/gtkgui/widgets/iconnotebook.py:741 msgid "Close All Tabs…" msgstr "关闭所有标签……" #: pynicotine/gtkgui/privatechat.py:361 pynicotine/gtkgui/search.py:625 #: pynicotine/gtkgui/userbrowse.py:280 pynicotine/gtkgui/userinfo.py:344 msgid "_Close Tab" msgstr "_关闭标签" #: pynicotine/gtkgui/privatechat.py:372 msgid "View Chat Log" msgstr "查看聊天日志" #: pynicotine/gtkgui/privatechat.py:373 msgid "Delete Chat Log…" msgstr "删除聊天日志……" #: pynicotine/gtkgui/privatechat.py:377 pynicotine/gtkgui/search.py:615 #: pynicotine/gtkgui/transfers.py:270 pynicotine/gtkgui/userbrowse.py:296 #: pynicotine/gtkgui/userbrowse.py:308 pynicotine/gtkgui/userbrowse.py:374 #: pynicotine/gtkgui/userbrowse.py:389 msgid "User Actions" msgstr "用户操作" #: pynicotine/gtkgui/privatechat.py:474 msgid "" "Do you really want to permanently delete all logged messages for this user?" msgstr "您确定要永久删除此用户的所有消息记录吗?" #: pynicotine/gtkgui/privatechat.py:525 msgid "* Messages sent while you were offline" msgstr "离线收到的消息" #: pynicotine/gtkgui/search.py:81 msgid "_Global" msgstr "_全局" #: pynicotine/gtkgui/search.py:82 msgid "_Buddies" msgstr "_好友" #: pynicotine/gtkgui/search.py:83 pynicotine/gtkgui/ui/mainwindow.ui:1445 msgid "_Rooms" msgstr "_聊天室" #: pynicotine/gtkgui/search.py:84 msgid "_User" msgstr "_用户" #: pynicotine/gtkgui/search.py:523 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:242 msgid "In Queue" msgstr "队列中" #: pynicotine/gtkgui/search.py:538 pynicotine/gtkgui/transfers.py:158 #: pynicotine/gtkgui/userbrowse.py:319 #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:137 msgid "File Type" msgstr "文件类型" #: pynicotine/gtkgui/search.py:545 pynicotine/gtkgui/transfers.py:164 msgid "Filename" msgstr "文件名" #: pynicotine/gtkgui/search.py:553 pynicotine/gtkgui/transfers.py:187 #: pynicotine/gtkgui/userbrowse.py:333 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:88 msgid "Size" msgstr "大小" #: pynicotine/gtkgui/search.py:560 pynicotine/gtkgui/userbrowse.py:339 #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:190 msgid "Quality" msgstr "质量" #: pynicotine/gtkgui/search.py:595 pynicotine/gtkgui/transfers.py:247 #: pynicotine/gtkgui/userbrowse.py:371 pynicotine/gtkgui/userbrowse.py:386 msgid "Copy _File Path" msgstr "复制_文件路径" #: pynicotine/gtkgui/search.py:596 pynicotine/gtkgui/transfers.py:248 #: pynicotine/gtkgui/userbrowse.py:372 pynicotine/gtkgui/userbrowse.py:387 msgid "Copy _URL" msgstr "复制_URL" #: pynicotine/gtkgui/search.py:597 pynicotine/gtkgui/transfers.py:249 #: pynicotine/gtkgui/userbrowse.py:294 pynicotine/gtkgui/userbrowse.py:306 msgid "Copy Folder U_RL" msgstr "复制文件夹 U_RL" #: pynicotine/gtkgui/search.py:604 pynicotine/gtkgui/userbrowse.py:378 msgid "_Download File(s)" msgstr "_下载文件" #: pynicotine/gtkgui/search.py:605 pynicotine/gtkgui/userbrowse.py:379 msgid "Download File(s) _To…" msgstr "下载文件 _到…" #: pynicotine/gtkgui/search.py:607 msgid "Download _Folder(s)" msgstr "下载_文件夹" #: pynicotine/gtkgui/search.py:608 msgid "Download F_older(s) To…" msgstr "将 _文件夹下载到…" #: pynicotine/gtkgui/search.py:610 pynicotine/gtkgui/transfers.py:264 #: pynicotine/gtkgui/widgets/popupmenu.py:371 msgid "View User _Profile" msgstr "查看用户_资料" #: pynicotine/gtkgui/search.py:611 pynicotine/gtkgui/transfers.py:265 msgid "_Browse Folder" msgstr "_浏览文件夹" #: pynicotine/gtkgui/search.py:612 pynicotine/gtkgui/transfers.py:258 #: pynicotine/gtkgui/userbrowse.py:291 pynicotine/gtkgui/userbrowse.py:303 #: pynicotine/gtkgui/userbrowse.py:369 pynicotine/gtkgui/userbrowse.py:384 msgid "F_ile Properties" msgstr "文件属性" #: pynicotine/gtkgui/search.py:621 msgid "Copy Search Term" msgstr "复制搜索词" #: pynicotine/gtkgui/search.py:623 msgid "Clear All Results" msgstr "清除所有结果" #: pynicotine/gtkgui/search.py:702 msgid "Clear Filters" msgstr "清除过滤器" #: pynicotine/gtkgui/search.py:705 msgid "Restore Filters" msgstr "恢复过滤器" #: pynicotine/gtkgui/search.py:832 pynicotine/gtkgui/userbrowse.py:533 #, python-format msgid "[PRIVATE] %s" msgstr "[私密] %s" #: pynicotine/gtkgui/search.py:1267 #, python-format msgid "_Result Filters [%d]" msgstr "_结果过滤 [%d]" #: pynicotine/gtkgui/search.py:1269 pynicotine/gtkgui/ui/search.ui:181 msgid "_Result Filters" msgstr "_结果过滤" #: pynicotine/gtkgui/search.py:1271 #, python-format msgid "%d active filter(s)" msgstr "%d 个启用的过滤器" #: pynicotine/gtkgui/search.py:1319 msgid "Add Wi_sh" msgstr "添加到心愿单" #: pynicotine/gtkgui/search.py:1322 msgid "Remove Wi_sh" msgstr "移除心愿项目" #: pynicotine/gtkgui/search.py:1339 msgid "Select User's Results" msgstr "选择用户的结果" #: pynicotine/gtkgui/search.py:1462 #, python-format msgid "Total: %s" msgstr "总计:%s" #: pynicotine/gtkgui/search.py:1465 pynicotine/gtkgui/ui/search.ui:105 msgid "Results" msgstr "结果" #: pynicotine/gtkgui/search.py:1574 msgid "Select Destination Folder for File(s)" msgstr "选择文件的目标文件夹" #: pynicotine/gtkgui/search.py:1617 pynicotine/gtkgui/userbrowse.py:909 msgid "Select Destination Folder" msgstr "选择目标文件夹" #: pynicotine/gtkgui/transfers.py:60 msgid "Queued" msgstr "排队" #: pynicotine/gtkgui/transfers.py:61 msgid "Queued (prioritized)" msgstr "排队(优先)" #: pynicotine/gtkgui/transfers.py:62 msgid "Queued (privileged)" msgstr "排队(特权)" #: pynicotine/gtkgui/transfers.py:63 msgid "Getting status" msgstr "获取状态" #: pynicotine/gtkgui/transfers.py:64 msgid "Transferring" msgstr "传输中" #: pynicotine/gtkgui/transfers.py:65 msgid "Connection closed" msgstr "连接关闭" #: pynicotine/gtkgui/transfers.py:66 msgid "Connection timeout" msgstr "连接超时" #: pynicotine/gtkgui/transfers.py:67 msgid "User logged off" msgstr "用户已登出" #: pynicotine/gtkgui/transfers.py:69 pynicotine/gtkgui/uploads.py:74 msgid "Cancelled" msgstr "取消" #: pynicotine/gtkgui/transfers.py:72 msgid "Download folder error" msgstr "下载文件夹出错" #: pynicotine/gtkgui/transfers.py:73 msgid "Local file error" msgstr "本地文件错误" #: pynicotine/gtkgui/transfers.py:74 msgid "Banned" msgstr "已封禁" #: pynicotine/gtkgui/transfers.py:75 msgid "File not shared" msgstr "文件未共享" #: pynicotine/gtkgui/transfers.py:76 msgid "Pending shutdown" msgstr "准备关闭" #: pynicotine/gtkgui/transfers.py:77 msgid "File read error" msgstr "文件读取错误" #: pynicotine/gtkgui/transfers.py:176 msgid "Queue" msgstr "队列" #: pynicotine/gtkgui/transfers.py:182 msgid "Percent" msgstr "百分比" #: pynicotine/gtkgui/transfers.py:199 msgid "Time Elapsed" msgstr "已用时间" #: pynicotine/gtkgui/transfers.py:205 msgid "Time Left" msgstr "剩余时间" #: pynicotine/gtkgui/transfers.py:256 pynicotine/gtkgui/userbrowse.py:367 msgid "_Open File" msgstr "_打开文件" #: pynicotine/gtkgui/transfers.py:257 pynicotine/gtkgui/userbrowse.py:290 #: pynicotine/gtkgui/userbrowse.py:368 msgid "Open in File _Manager" msgstr "在文件_管理器中打开" #: pynicotine/gtkgui/transfers.py:266 msgid "_Search" msgstr "_搜索" #: pynicotine/gtkgui/transfers.py:269 msgid "Clear All" msgstr "全部清除" #: pynicotine/gtkgui/transfers.py:874 msgid "Select User's Transfers" msgstr "选择用户的传输" #: pynicotine/gtkgui/uploads.py:47 msgid "_Abort" msgstr "_中止" #: pynicotine/gtkgui/uploads.py:70 msgid "Finished / Cancelled / Failed" msgstr "已完成/已取消/已失败" #: pynicotine/gtkgui/uploads.py:71 msgid "Finished / Cancelled" msgstr "已完成/已取消" #: pynicotine/gtkgui/uploads.py:75 msgid "Failed" msgstr "已失败" #: pynicotine/gtkgui/uploads.py:76 msgid "User Logged Off" msgstr "用户已登出" #: pynicotine/gtkgui/uploads.py:125 msgid "Clear Queued Uploads" msgstr "清除上传队列" #: pynicotine/gtkgui/uploads.py:126 msgid "Do you really want to clear all queued uploads?" msgstr "您真的要清空上传队列吗?" #: pynicotine/gtkgui/uploads.py:138 msgid "Clear All Uploads" msgstr "清除所有上传" #: pynicotine/gtkgui/uploads.py:139 msgid "Do you really want to clear all uploads?" msgstr "您真的要清除所有上传吗?" #: pynicotine/gtkgui/userbrowse.py:278 msgid "_Save Shares List to Disk" msgstr "_将共享列表保存到磁盘" #: pynicotine/gtkgui/userbrowse.py:288 msgid "Upload Folder & Subfolders…" msgstr "上传文件夹和子文件夹……" #: pynicotine/gtkgui/userbrowse.py:293 pynicotine/gtkgui/userbrowse.py:305 msgid "Copy _Folder Path" msgstr "复制_文件夹路径" #: pynicotine/gtkgui/userbrowse.py:300 #, fuzzy msgid "_Download Folder & Subfolders" msgstr "下载文件夹和子文件夹" #: pynicotine/gtkgui/userbrowse.py:301 #, fuzzy msgid "Download Folder & Subfolders _To…" msgstr "下载文件夹和子文件夹到……" #: pynicotine/gtkgui/userbrowse.py:325 msgid "File Name" msgstr "文件名" #: pynicotine/gtkgui/userbrowse.py:364 msgid "Up_load File(s)…" msgstr "上传文件……" #: pynicotine/gtkgui/userbrowse.py:365 msgid "Upload Folder…" msgstr "上传文件夹……" #: pynicotine/gtkgui/userbrowse.py:382 msgid "Download Folder _To…" msgstr "下载文件夹_到……" #: pynicotine/gtkgui/userbrowse.py:584 msgid "" "User's list of shared files is empty. Either the user is not sharing " "anything, or they are sharing files privately." msgstr "用户的共享文件列表为空。用户没有共享任何内容,或者共享文件均为私密。" #: pynicotine/gtkgui/userbrowse.py:599 msgid "" "Unable to request shared files from user. Either the user is offline, the " "listening ports are closed on both sides, or there is a temporary " "connectivity issue." msgstr "" "无法向用户请求共享文件。可能是用户离线,或是您与对方的监听端口均关闭,也可能" "是连接暂时出现问题。" #: pynicotine/gtkgui/userbrowse.py:907 msgid "Select Destination for Downloading Multiple Folders" msgstr "选择下载多个文件夹的目标路径" #: pynicotine/gtkgui/userbrowse.py:951 msgid "Upload Folder (with Subfolders) To User" msgstr "将文件夹(含子文件夹)上传给用户" #: pynicotine/gtkgui/userbrowse.py:953 msgid "Upload Folder To User" msgstr "上传文件夹给用户" #: pynicotine/gtkgui/userbrowse.py:958 pynicotine/gtkgui/userbrowse.py:1147 msgid "Enter the name of the user you want to upload to:" msgstr "输入您想要传送文件的用户名:" #: pynicotine/gtkgui/userbrowse.py:959 pynicotine/gtkgui/userbrowse.py:1148 msgid "_Upload" msgstr "_上传" #: pynicotine/gtkgui/userbrowse.py:1124 msgid "Select Destination Folder for Files" msgstr "选择文件的目标文件夹" #: pynicotine/gtkgui/userbrowse.py:1146 msgid "Upload File(s) To User" msgstr "上传文件给用户" #: pynicotine/gtkgui/userinfo.py:363 msgid "Copy Picture" msgstr "复制图片" #: pynicotine/gtkgui/userinfo.py:364 msgid "Save Picture" msgstr "保存图片" #: pynicotine/gtkgui/userinfo.py:453 #, python-format msgid "Failed to load picture for user %(user)s: %(error)s" msgstr "加载用户 %(user)s 图片失败:%(error)s" #: pynicotine/gtkgui/userinfo.py:468 msgid "" "Unable to request information from user. Either you both have a closed " "listening port, the user is offline, or there's a temporary connectivity " "issue." msgstr "" "无法向用户请求信息。可能是您与对方的监听端口均关闭,或是用户离线,也可能是连" "接暂时出现问题。" #: pynicotine/gtkgui/userinfo.py:529 msgid "Remove _Buddy" msgstr "移除 _好友" #: pynicotine/gtkgui/userinfo.py:529 msgid "Add _Buddy" msgstr "添加好友" #: pynicotine/gtkgui/userinfo.py:533 msgid "Unban User" msgstr "解禁用户" #: pynicotine/gtkgui/userinfo.py:537 msgid "Unignore User" msgstr "解除忽略用户" #: pynicotine/gtkgui/userinfo.py:564 msgid "Yes" msgstr "是" #: pynicotine/gtkgui/userinfo.py:564 msgid "No" msgstr "否" #: pynicotine/gtkgui/userinfo.py:698 msgid "Please enter number of days." msgstr "请输入天数。" #: pynicotine/gtkgui/userinfo.py:712 #, python-format msgid "Gift days of your Soulseek privileges to user %(user)s (%(days_left)s):" msgstr "您赠予 %(user)s Soulseek 特权的天数 %(days_left)s:" #: pynicotine/gtkgui/userinfo.py:713 #, python-format msgid "%(days)s days left" msgstr "剩余 %(days)s 天" #: pynicotine/gtkgui/userinfo.py:720 msgid "Gift Privileges" msgstr "赠予特权" #: pynicotine/gtkgui/userinfo.py:722 msgid "_Give Privileges" msgstr "_授予特权" #: pynicotine/gtkgui/widgets/dialogs.py:280 msgid "Close" msgstr "关闭" #: pynicotine/gtkgui/widgets/dialogs.py:456 msgid "_Yes" msgstr "_是" #: pynicotine/gtkgui/widgets/dialogs.py:490 #: pynicotine/gtkgui/ui/dialogs/preferences.ui:23 msgid "_OK" msgstr "_确定" #: pynicotine/gtkgui/widgets/filechooser.py:39 msgid "Select a File" msgstr "选择一个文件" #: pynicotine/gtkgui/widgets/filechooser.py:154 msgid "Select a Folder" msgstr "选择一个文件夹" #: pynicotine/gtkgui/widgets/filechooser.py:159 msgid "_Select" msgstr "_选择" #: pynicotine/gtkgui/widgets/filechooser.py:176 msgid "Select an Image" msgstr "选择图像" #: pynicotine/gtkgui/widgets/filechooser.py:183 msgid "All images" msgstr "所有图片" #: pynicotine/gtkgui/widgets/filechooser.py:221 msgid "Save as…" msgstr "另存为……" #: pynicotine/gtkgui/widgets/filechooser.py:268 #: pynicotine/gtkgui/widgets/filechooser.py:379 msgid "(None)" msgstr "(无)" #: pynicotine/gtkgui/widgets/iconnotebook.py:118 msgid "Close Tab" msgstr "关闭选项卡" #: pynicotine/gtkgui/widgets/iconnotebook.py:455 msgid "Close All Tabs?" msgstr "关闭所有标签?" #: pynicotine/gtkgui/widgets/iconnotebook.py:456 msgid "Do you really want to close all tabs?" msgstr "您真的要关闭所有选项卡吗?" #: pynicotine/gtkgui/widgets/iconnotebook.py:480 #, python-format msgid "%i Unread Tab(s)" msgstr "%i 未读标签" #: pynicotine/gtkgui/widgets/iconnotebook.py:483 msgid "All Tabs" msgstr "全部选项卡" #: pynicotine/gtkgui/widgets/iconnotebook.py:740 #: pynicotine/gtkgui/widgets/iconnotebook.py:745 msgid "Re_open Closed Tab" msgstr "重新_打开关闭的选项卡" #: pynicotine/gtkgui/widgets/popupmenu.py:340 #, python-format msgid "%s File(s) Selected" msgstr "%s 已选文件" #: pynicotine/gtkgui/widgets/popupmenu.py:377 #: pynicotine/gtkgui/ui/userinfo.ui:512 msgid "_Browse Files" msgstr "_浏览文件" #: pynicotine/gtkgui/widgets/popupmenu.py:380 #: pynicotine/gtkgui/widgets/popupmenu.py:424 msgid "_Add Buddy" msgstr "_添加好友" #: pynicotine/gtkgui/widgets/popupmenu.py:389 #: pynicotine/gtkgui/ui/userinfo.ui:639 msgid "Show IP A_ddress" msgstr "显示 IP 地_址" #: pynicotine/gtkgui/widgets/popupmenu.py:391 #: pynicotine/gtkgui/widgets/popupmenu.py:443 msgid "Private Rooms" msgstr "私密聊天室" #: pynicotine/gtkgui/widgets/popupmenu.py:460 #, python-format msgid "Remove from Private Room %s" msgstr "从私密聊天室移除 %s" #: pynicotine/gtkgui/widgets/popupmenu.py:463 #, python-format msgid "Add to Private Room %s" msgstr "添加到私密聊天室 %s" #: pynicotine/gtkgui/widgets/popupmenu.py:470 #, python-format msgid "Remove as Operator of %s" msgstr "移除 %s 的操作员身份" #: pynicotine/gtkgui/widgets/popupmenu.py:474 #, python-format msgid "Add as Operator of %s" msgstr "设 %s 为管理员" #: pynicotine/gtkgui/widgets/textview.py:452 msgid "--- old messages above ---" msgstr "--- 旧消息在上 ---" #: pynicotine/gtkgui/widgets/theme.py:209 msgid "Executable" msgstr "可执行文件" #: pynicotine/gtkgui/widgets/theme.py:210 msgid "Audio" msgstr "音频" #: pynicotine/gtkgui/widgets/theme.py:211 msgid "Image" msgstr "图像" #: pynicotine/gtkgui/widgets/theme.py:212 msgid "Archive" msgstr "压缩包" #: pynicotine/gtkgui/widgets/theme.py:213 pynicotine/pluginsystem.py:794 #: pynicotine/gtkgui/ui/settings/network.ui:254 msgid "Miscellaneous" msgstr "杂项" #: pynicotine/gtkgui/widgets/theme.py:214 msgid "Video" msgstr "视频" #: pynicotine/gtkgui/widgets/theme.py:215 msgid "Document" msgstr "文档" #: pynicotine/gtkgui/widgets/theme.py:216 msgid "Text" msgstr "文本" #: pynicotine/gtkgui/widgets/theme.py:325 #, python-format msgid "Error loading custom icon %(path)s: %(error)s" msgstr "加载自定义图标时出错 %(path)s:%(error)s" #: pynicotine/gtkgui/widgets/trayicon.py:114 msgid "Hide Nicotine+" msgstr "隐藏 Nicotine+" #: pynicotine/gtkgui/widgets/trayicon.py:116 msgid "Show Nicotine+" msgstr "显示 Nicotine+" #: pynicotine/gtkgui/widgets/treeview.py:735 #, python-format msgid "Column #%i" msgstr "列 #%i" #: pynicotine/gtkgui/widgets/treeview.py:885 msgid "Ungrouped" msgstr "不分组" #: pynicotine/gtkgui/widgets/treeview.py:888 msgid "Group by Folder" msgstr "按文件夹分组" #: pynicotine/gtkgui/widgets/treeview.py:891 msgid "Group by User" msgstr "按用户分组" #: pynicotine/headless/application.py:74 #, python-format msgid "Do you really want to exit? %s" msgstr "您真的要退出吗?%s" #: pynicotine/headless/application.py:78 #, python-format msgid "User %s already exists, and the password you entered is invalid." msgstr "用户 %s 已经存在,您输入的密码无效。" #: pynicotine/headless/application.py:80 #, python-format msgid "Type %s to log in with another username or password." msgstr "输入 %s 来使用其他用户名或密码登录。" #: pynicotine/headless/application.py:96 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:203 msgid "Password: " msgstr "密码: " #: pynicotine/headless/application.py:99 #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:131 msgid "" "To create a new Soulseek account, fill in your desired username and " "password. If you already have an account, fill in your existing login " "details." msgstr "" "创建新的 Soulseek 帐户,请填写您想要的用户名和密码。如果您已有帐户,请填写登" "录信息。" #: pynicotine/headless/application.py:116 msgid "The following shares are unavailable:" msgstr "以下的共享文件不可用:" #: pynicotine/headless/application.py:122 #, python-format msgid "Retry rescan? %s" msgstr "重新扫描?%s" #: pynicotine/logfacility.py:174 #, python-format msgid "Couldn't write to log file \"%(filename)s\": %(error)s" msgstr "无法写入日志文件“%(filename)s”:%(error)s" #: pynicotine/logfacility.py:233 pynicotine/logfacility.py:259 #, python-format msgid "Cannot access log file %(path)s: %(error)s" msgstr "无法访问日志文件 %(path)s:%(error)s" #: pynicotine/networkfilter.py:37 msgid "Andorra" msgstr "安道尔" #: pynicotine/networkfilter.py:38 msgid "United Arab Emirates" msgstr "阿拉伯联合酋长国" #: pynicotine/networkfilter.py:39 msgid "Afghanistan" msgstr "阿富汗" #: pynicotine/networkfilter.py:40 msgid "Antigua & Barbuda" msgstr "安提瓜和巴布达" #: pynicotine/networkfilter.py:41 msgid "Anguilla" msgstr "安圭拉" #: pynicotine/networkfilter.py:42 msgid "Albania" msgstr "阿尔巴尼亚" #: pynicotine/networkfilter.py:43 msgid "Armenia" msgstr "亚美尼亚" #: pynicotine/networkfilter.py:44 msgid "Angola" msgstr "安哥拉" #: pynicotine/networkfilter.py:45 msgid "Antarctica" msgstr "南极洲" #: pynicotine/networkfilter.py:46 msgid "Argentina" msgstr "阿根廷" #: pynicotine/networkfilter.py:47 msgid "American Samoa" msgstr "美属萨摩亚" #: pynicotine/networkfilter.py:48 msgid "Austria" msgstr "奥地利" #: pynicotine/networkfilter.py:49 msgid "Australia" msgstr "澳大利亚" #: pynicotine/networkfilter.py:50 msgid "Aruba" msgstr "阿鲁巴岛" #: pynicotine/networkfilter.py:51 msgid "Åland Islands" msgstr "奥兰群岛" #: pynicotine/networkfilter.py:52 msgid "Azerbaijan" msgstr "阿塞拜疆" #: pynicotine/networkfilter.py:53 msgid "Bosnia & Herzegovina" msgstr "波斯尼亚和黑塞哥维那" #: pynicotine/networkfilter.py:54 msgid "Barbados" msgstr "巴巴多斯" #: pynicotine/networkfilter.py:55 msgid "Bangladesh" msgstr "孟加拉国" #: pynicotine/networkfilter.py:56 msgid "Belgium" msgstr "比利时" #: pynicotine/networkfilter.py:57 msgid "Burkina Faso" msgstr "布基纳法索" #: pynicotine/networkfilter.py:58 msgid "Bulgaria" msgstr "保加利亚" #: pynicotine/networkfilter.py:59 msgid "Bahrain" msgstr "巴林" #: pynicotine/networkfilter.py:60 msgid "Burundi" msgstr "布隆迪" #: pynicotine/networkfilter.py:61 msgid "Benin" msgstr "贝宁" #: pynicotine/networkfilter.py:62 msgid "Saint Barthelemy" msgstr "圣巴泰勒米" #: pynicotine/networkfilter.py:63 msgid "Bermuda" msgstr "百慕大" #: pynicotine/networkfilter.py:64 msgid "Brunei Darussalam" msgstr "文莱达鲁萨兰国" #: pynicotine/networkfilter.py:65 msgid "Bolivia" msgstr "玻利维亚" #: pynicotine/networkfilter.py:66 msgid "Bonaire, Sint Eustatius and Saba" msgstr "博内尔岛、圣尤斯特歇斯岛和萨巴岛" #: pynicotine/networkfilter.py:67 msgid "Brazil" msgstr "巴西" #: pynicotine/networkfilter.py:68 msgid "Bahamas" msgstr "巴哈马" #: pynicotine/networkfilter.py:69 msgid "Bhutan" msgstr "不丹" #: pynicotine/networkfilter.py:70 msgid "Bouvet Island" msgstr "布维岛" #: pynicotine/networkfilter.py:71 msgid "Botswana" msgstr "博茨瓦纳" #: pynicotine/networkfilter.py:72 msgid "Belarus" msgstr "白俄罗斯" #: pynicotine/networkfilter.py:73 msgid "Belize" msgstr "伯利兹" #: pynicotine/networkfilter.py:74 msgid "Canada" msgstr "加拿大" #: pynicotine/networkfilter.py:75 msgid "Cocos (Keeling) Islands" msgstr "科科斯(基林)群岛" #: pynicotine/networkfilter.py:76 msgid "Democratic Republic of Congo" msgstr "刚果民主共和国" #: pynicotine/networkfilter.py:77 msgid "Central African Republic" msgstr "中非共和国" #: pynicotine/networkfilter.py:78 msgid "Congo" msgstr "刚果" #: pynicotine/networkfilter.py:79 msgid "Switzerland" msgstr "瑞士" #: pynicotine/networkfilter.py:80 msgid "Ivory Coast" msgstr "象牙海岸" #: pynicotine/networkfilter.py:81 msgid "Cook Islands" msgstr "库克群岛" #: pynicotine/networkfilter.py:82 msgid "Chile" msgstr "智利" #: pynicotine/networkfilter.py:83 msgid "Cameroon" msgstr "喀麦隆" #: pynicotine/networkfilter.py:84 msgid "China" msgstr "中国" #: pynicotine/networkfilter.py:85 msgid "Colombia" msgstr "哥伦比亚" #: pynicotine/networkfilter.py:86 msgid "Costa Rica" msgstr "哥斯达黎加" #: pynicotine/networkfilter.py:87 msgid "Cuba" msgstr "古巴" #: pynicotine/networkfilter.py:88 msgid "Cabo Verde" msgstr "佛得角" #: pynicotine/networkfilter.py:89 msgid "Curaçao" msgstr "库拉索" #: pynicotine/networkfilter.py:90 msgid "Christmas Island" msgstr "圣诞岛" #: pynicotine/networkfilter.py:91 msgid "Cyprus" msgstr "塞浦路斯" #: pynicotine/networkfilter.py:92 msgid "Czechia" msgstr "捷克" #: pynicotine/networkfilter.py:93 msgid "Germany" msgstr "德国" #: pynicotine/networkfilter.py:94 msgid "Djibouti" msgstr "吉布提" #: pynicotine/networkfilter.py:95 msgid "Denmark" msgstr "丹麦" #: pynicotine/networkfilter.py:96 msgid "Dominica" msgstr "多米尼克" #: pynicotine/networkfilter.py:97 msgid "Dominican Republic" msgstr "多明尼加共和国" #: pynicotine/networkfilter.py:98 msgid "Algeria" msgstr "阿尔及利亚" #: pynicotine/networkfilter.py:99 msgid "Ecuador" msgstr "厄瓜多尔" #: pynicotine/networkfilter.py:100 msgid "Estonia" msgstr "爱沙尼亚" #: pynicotine/networkfilter.py:101 msgid "Egypt" msgstr "埃及" #: pynicotine/networkfilter.py:102 msgid "Western Sahara" msgstr "西撒哈拉" #: pynicotine/networkfilter.py:103 msgid "Eritrea" msgstr "厄立特里亚" #: pynicotine/networkfilter.py:104 msgid "Spain" msgstr "西班牙" #: pynicotine/networkfilter.py:105 msgid "Ethiopia" msgstr "埃塞俄比亚" #: pynicotine/networkfilter.py:106 msgid "Europe" msgstr "欧洲" #: pynicotine/networkfilter.py:107 msgid "Finland" msgstr "芬兰" #: pynicotine/networkfilter.py:108 msgid "Fiji" msgstr "斐济" #: pynicotine/networkfilter.py:109 msgid "Falkland Islands (Malvinas)" msgstr "福克兰群岛(马尔维纳斯)" #: pynicotine/networkfilter.py:110 msgid "Micronesia" msgstr "密克罗尼西亚联邦" #: pynicotine/networkfilter.py:111 msgid "Faroe Islands" msgstr "法罗群岛" #: pynicotine/networkfilter.py:112 msgid "France" msgstr "法国" #: pynicotine/networkfilter.py:113 msgid "Gabon" msgstr "加蓬" #: pynicotine/networkfilter.py:114 msgid "Great Britain" msgstr "大不列颠" #: pynicotine/networkfilter.py:115 msgid "Grenada" msgstr "格林纳达" #: pynicotine/networkfilter.py:116 msgid "Georgia" msgstr "格鲁吉亚" #: pynicotine/networkfilter.py:117 msgid "French Guiana" msgstr "法属圭亚那" #: pynicotine/networkfilter.py:118 msgid "Guernsey" msgstr "根西岛" #: pynicotine/networkfilter.py:119 msgid "Ghana" msgstr "加纳" #: pynicotine/networkfilter.py:120 msgid "Gibraltar" msgstr "直布罗陀" #: pynicotine/networkfilter.py:121 msgid "Greenland" msgstr "格陵兰岛" #: pynicotine/networkfilter.py:122 msgid "Gambia" msgstr "冈比亚" #: pynicotine/networkfilter.py:123 msgid "Guinea" msgstr "几内亚" #: pynicotine/networkfilter.py:124 msgid "Guadeloupe" msgstr "瓜德罗普" #: pynicotine/networkfilter.py:125 msgid "Equatorial Guinea" msgstr "赤道几内亚" #: pynicotine/networkfilter.py:126 msgid "Greece" msgstr "希腊" #: pynicotine/networkfilter.py:127 msgid "South Georgia & South Sandwich Islands" msgstr "南乔治亚岛和南桑威奇群岛" #: pynicotine/networkfilter.py:128 msgid "Guatemala" msgstr "危地马拉" #: pynicotine/networkfilter.py:129 msgid "Guam" msgstr "关岛" #: pynicotine/networkfilter.py:130 msgid "Guinea-Bissau" msgstr "几内亚比索" #: pynicotine/networkfilter.py:131 msgid "Guyana" msgstr "圭亚那" #: pynicotine/networkfilter.py:132 msgid "Hong Kong" msgstr "香港" #: pynicotine/networkfilter.py:133 msgid "Heard & McDonald Islands" msgstr "赫德和麦克唐纳群岛" #: pynicotine/networkfilter.py:134 msgid "Honduras" msgstr "洪都拉斯" #: pynicotine/networkfilter.py:135 msgid "Croatia" msgstr "克罗地亚" #: pynicotine/networkfilter.py:136 msgid "Haiti" msgstr "海地" #: pynicotine/networkfilter.py:137 msgid "Hungary" msgstr "匈牙利" #: pynicotine/networkfilter.py:138 msgid "Indonesia" msgstr "印度尼西亚" #: pynicotine/networkfilter.py:139 msgid "Ireland" msgstr "爱尔兰" #: pynicotine/networkfilter.py:140 msgid "Israel" msgstr "以色列" #: pynicotine/networkfilter.py:141 msgid "Isle of Man" msgstr "马恩岛" #: pynicotine/networkfilter.py:142 msgid "India" msgstr "印度" #: pynicotine/networkfilter.py:143 msgid "British Indian Ocean Territory" msgstr "英属印度洋领地" #: pynicotine/networkfilter.py:144 msgid "Iraq" msgstr "伊拉克" #: pynicotine/networkfilter.py:145 msgid "Iran" msgstr "伊朗" #: pynicotine/networkfilter.py:146 msgid "Iceland" msgstr "冰岛" #: pynicotine/networkfilter.py:147 msgid "Italy" msgstr "意大利" #: pynicotine/networkfilter.py:148 msgid "Jersey" msgstr "泽西岛" #: pynicotine/networkfilter.py:149 msgid "Jamaica" msgstr "牙买加" #: pynicotine/networkfilter.py:150 msgid "Jordan" msgstr "约旦" #: pynicotine/networkfilter.py:151 msgid "Japan" msgstr "日本" #: pynicotine/networkfilter.py:152 msgid "Kenya" msgstr "肯尼亚" #: pynicotine/networkfilter.py:153 msgid "Kyrgyzstan" msgstr "吉尔吉斯斯坦" #: pynicotine/networkfilter.py:154 msgid "Cambodia" msgstr "柬埔寨" #: pynicotine/networkfilter.py:155 msgid "Kiribati" msgstr "基里巴斯" #: pynicotine/networkfilter.py:156 msgid "Comoros" msgstr "科摩罗" #: pynicotine/networkfilter.py:157 msgid "Saint Kitts & Nevis" msgstr "圣基茨和尼维斯" #: pynicotine/networkfilter.py:158 msgid "North Korea" msgstr "朝鲜" #: pynicotine/networkfilter.py:159 msgid "South Korea" msgstr "韩国" #: pynicotine/networkfilter.py:160 msgid "Kuwait" msgstr "科威特" #: pynicotine/networkfilter.py:161 msgid "Cayman Islands" msgstr "开曼群岛" #: pynicotine/networkfilter.py:162 msgid "Kazakhstan" msgstr "哈萨克斯坦" #: pynicotine/networkfilter.py:163 msgid "Laos" msgstr "老挝" #: pynicotine/networkfilter.py:164 msgid "Lebanon" msgstr "黎巴嫩" #: pynicotine/networkfilter.py:165 msgid "Saint Lucia" msgstr "圣卢西亚" #: pynicotine/networkfilter.py:166 msgid "Liechtenstein" msgstr "列支敦士登" #: pynicotine/networkfilter.py:167 msgid "Sri Lanka" msgstr "斯里兰卡" #: pynicotine/networkfilter.py:168 msgid "Liberia" msgstr "利比里亚" #: pynicotine/networkfilter.py:169 msgid "Lesotho" msgstr "莱索托" #: pynicotine/networkfilter.py:170 msgid "Lithuania" msgstr "立陶宛" #: pynicotine/networkfilter.py:171 msgid "Luxembourg" msgstr "卢森堡" #: pynicotine/networkfilter.py:172 msgid "Latvia" msgstr "拉脱维亚" #: pynicotine/networkfilter.py:173 msgid "Libya" msgstr "利比亚" #: pynicotine/networkfilter.py:174 msgid "Morocco" msgstr "摩洛哥" #: pynicotine/networkfilter.py:175 msgid "Monaco" msgstr "摩纳哥" #: pynicotine/networkfilter.py:176 msgid "Moldova" msgstr "摩尔多瓦" #: pynicotine/networkfilter.py:177 msgid "Montenegro" msgstr "黑山" #: pynicotine/networkfilter.py:178 msgid "Saint Martin" msgstr "圣马丁" #: pynicotine/networkfilter.py:179 msgid "Madagascar" msgstr "马达加斯加" #: pynicotine/networkfilter.py:180 msgid "Marshall Islands" msgstr "马绍尔群岛" #: pynicotine/networkfilter.py:181 msgid "North Macedonia" msgstr "北马其顿" #: pynicotine/networkfilter.py:182 msgid "Mali" msgstr "马里" #: pynicotine/networkfilter.py:183 msgid "Myanmar" msgstr "缅甸" #: pynicotine/networkfilter.py:184 msgid "Mongolia" msgstr "蒙古" #: pynicotine/networkfilter.py:185 msgid "Macau" msgstr "澳门" #: pynicotine/networkfilter.py:186 msgid "Northern Mariana Islands" msgstr "北马里亚纳群岛" #: pynicotine/networkfilter.py:187 msgid "Martinique" msgstr "马提尼克" #: pynicotine/networkfilter.py:188 msgid "Mauritania" msgstr "毛里塔尼亚" #: pynicotine/networkfilter.py:189 msgid "Montserrat" msgstr "蒙塞拉特岛" #: pynicotine/networkfilter.py:190 msgid "Malta" msgstr "马耳他" #: pynicotine/networkfilter.py:191 msgid "Mauritius" msgstr "毛里求斯" #: pynicotine/networkfilter.py:192 msgid "Maldives" msgstr "马尔代夫" #: pynicotine/networkfilter.py:193 msgid "Malawi" msgstr "马拉维" #: pynicotine/networkfilter.py:194 msgid "Mexico" msgstr "墨西哥" #: pynicotine/networkfilter.py:195 msgid "Malaysia" msgstr "马来西亚" #: pynicotine/networkfilter.py:196 msgid "Mozambique" msgstr "莫桑比克" #: pynicotine/networkfilter.py:197 msgid "Namibia" msgstr "纳米比亚" #: pynicotine/networkfilter.py:198 msgid "New Caledonia" msgstr "新喀里多尼亚" #: pynicotine/networkfilter.py:199 msgid "Niger" msgstr "尼日尔" #: pynicotine/networkfilter.py:200 msgid "Norfolk Island" msgstr "诺福克岛" #: pynicotine/networkfilter.py:201 msgid "Nigeria" msgstr "尼日利亚" #: pynicotine/networkfilter.py:202 msgid "Nicaragua" msgstr "尼加拉瓜" #: pynicotine/networkfilter.py:203 msgid "Netherlands" msgstr "荷兰" #: pynicotine/networkfilter.py:204 msgid "Norway" msgstr "挪威" #: pynicotine/networkfilter.py:205 msgid "Nepal" msgstr "尼泊尔" #: pynicotine/networkfilter.py:206 msgid "Nauru" msgstr "瑙鲁" #: pynicotine/networkfilter.py:207 msgid "Niue" msgstr "纽埃" #: pynicotine/networkfilter.py:208 msgid "New Zealand" msgstr "新西兰" #: pynicotine/networkfilter.py:209 msgid "Oman" msgstr "阿曼" #: pynicotine/networkfilter.py:210 msgid "Panama" msgstr "巴拿马" #: pynicotine/networkfilter.py:211 msgid "Peru" msgstr "秘鲁" #: pynicotine/networkfilter.py:212 msgid "French Polynesia" msgstr "法国波利尼西亚" #: pynicotine/networkfilter.py:213 msgid "Papua New Guinea" msgstr "巴布亚新几内亚" #: pynicotine/networkfilter.py:214 msgid "Philippines" msgstr "菲律宾" #: pynicotine/networkfilter.py:215 msgid "Pakistan" msgstr "巴基斯坦" #: pynicotine/networkfilter.py:216 msgid "Poland" msgstr "波兰" #: pynicotine/networkfilter.py:217 msgid "Saint Pierre & Miquelon" msgstr "圣皮埃尔和密克隆群岛" #: pynicotine/networkfilter.py:218 msgid "Pitcairn" msgstr "皮特凯恩群岛" #: pynicotine/networkfilter.py:219 msgid "Puerto Rico" msgstr "波多黎各" #: pynicotine/networkfilter.py:220 msgid "State of Palestine" msgstr "巴勒斯坦国" #: pynicotine/networkfilter.py:221 msgid "Portugal" msgstr "葡萄牙" #: pynicotine/networkfilter.py:222 msgid "Palau" msgstr "帛琉" #: pynicotine/networkfilter.py:223 msgid "Paraguay" msgstr "巴拉圭" #: pynicotine/networkfilter.py:224 msgid "Qatar" msgstr "卡塔尔" #: pynicotine/networkfilter.py:225 msgid "Réunion" msgstr "留尼汪" #: pynicotine/networkfilter.py:226 msgid "Romania" msgstr "罗马尼亚" #: pynicotine/networkfilter.py:227 msgid "Serbia" msgstr "塞尔维亚" #: pynicotine/networkfilter.py:228 msgid "Russia" msgstr "俄罗斯" #: pynicotine/networkfilter.py:229 msgid "Rwanda" msgstr "卢旺达" #: pynicotine/networkfilter.py:230 msgid "Saudi Arabia" msgstr "沙特阿拉伯" #: pynicotine/networkfilter.py:231 msgid "Solomon Islands" msgstr "所罗门群岛" #: pynicotine/networkfilter.py:232 msgid "Seychelles" msgstr "塞舌尔" #: pynicotine/networkfilter.py:233 msgid "Sudan" msgstr "苏丹" #: pynicotine/networkfilter.py:234 msgid "Sweden" msgstr "瑞典" #: pynicotine/networkfilter.py:235 msgid "Singapore" msgstr "新加坡" #: pynicotine/networkfilter.py:236 msgid "Saint Helena" msgstr "圣赫勒拿岛" #: pynicotine/networkfilter.py:237 msgid "Slovenia" msgstr "斯洛文尼亚" #: pynicotine/networkfilter.py:238 msgid "Svalbard & Jan Mayen Islands" msgstr "斯瓦尔巴群岛和扬马延群岛" #: pynicotine/networkfilter.py:239 msgid "Slovak Republic" msgstr "斯洛伐克共和国" #: pynicotine/networkfilter.py:240 msgid "Sierra Leone" msgstr "塞拉利昂" #: pynicotine/networkfilter.py:241 msgid "San Marino" msgstr "圣马力诺" #: pynicotine/networkfilter.py:242 msgid "Senegal" msgstr "塞内加尔" #: pynicotine/networkfilter.py:243 msgid "Somalia" msgstr "索马里" #: pynicotine/networkfilter.py:244 msgid "Suriname" msgstr "苏里南" #: pynicotine/networkfilter.py:245 msgid "South Sudan" msgstr "南苏丹" #: pynicotine/networkfilter.py:246 msgid "Sao Tome & Principe" msgstr "圣多美和普林西比" #: pynicotine/networkfilter.py:247 msgid "El Salvador" msgstr "萨尔瓦多" #: pynicotine/networkfilter.py:248 msgid "Sint Maarten" msgstr "荷属圣马丁" #: pynicotine/networkfilter.py:249 msgid "Syria" msgstr "叙利亚" #: pynicotine/networkfilter.py:250 msgid "Eswatini" msgstr "斯威士兰" #: pynicotine/networkfilter.py:251 msgid "Turks & Caicos Islands" msgstr "特克斯和凯科斯群岛" #: pynicotine/networkfilter.py:252 msgid "Chad" msgstr "乍得" #: pynicotine/networkfilter.py:253 msgid "French Southern Territories" msgstr "法属南部领地" #: pynicotine/networkfilter.py:254 msgid "Togo" msgstr "多哥" #: pynicotine/networkfilter.py:255 msgid "Thailand" msgstr "泰国" #: pynicotine/networkfilter.py:256 msgid "Tajikistan" msgstr "塔吉克斯坦" #: pynicotine/networkfilter.py:257 msgid "Tokelau" msgstr "托克劳" #: pynicotine/networkfilter.py:258 msgid "Timor-Leste" msgstr "东帝汶" #: pynicotine/networkfilter.py:259 msgid "Turkmenistan" msgstr "土库曼斯坦" #: pynicotine/networkfilter.py:260 msgid "Tunisia" msgstr "突尼斯" #: pynicotine/networkfilter.py:261 msgid "Tonga" msgstr "汤加" #: pynicotine/networkfilter.py:262 msgid "Türkiye" msgstr "土耳其" #: pynicotine/networkfilter.py:263 msgid "Trinidad & Tobago" msgstr "特立尼达和多巴哥" #: pynicotine/networkfilter.py:264 msgid "Tuvalu" msgstr "图瓦卢" #: pynicotine/networkfilter.py:265 msgid "Taiwan" msgstr "台湾" #: pynicotine/networkfilter.py:266 msgid "Tanzania" msgstr "坦桑尼亚" #: pynicotine/networkfilter.py:267 msgid "Ukraine" msgstr "乌克兰" #: pynicotine/networkfilter.py:268 msgid "Uganda" msgstr "乌干达" #: pynicotine/networkfilter.py:269 msgid "U.S. Minor Outlying Islands" msgstr "美国本土外小岛屿" #: pynicotine/networkfilter.py:270 msgid "United States" msgstr "美国" #: pynicotine/networkfilter.py:271 msgid "Uruguay" msgstr "乌拉圭" #: pynicotine/networkfilter.py:272 msgid "Uzbekistan" msgstr "乌兹别克斯坦" #: pynicotine/networkfilter.py:273 msgid "Holy See (Vatican City State)" msgstr "罗马教廷(梵蒂冈城国)" #: pynicotine/networkfilter.py:274 msgid "Saint Vincent & The Grenadines" msgstr "圣文森特和格林纳丁斯" #: pynicotine/networkfilter.py:275 msgid "Venezuela" msgstr "委内瑞拉" #: pynicotine/networkfilter.py:276 msgid "British Virgin Islands" msgstr "英属维尔京群岛" #: pynicotine/networkfilter.py:277 msgid "U.S. Virgin Islands" msgstr "美属维尔京群岛" #: pynicotine/networkfilter.py:278 msgid "Viet Nam" msgstr "越南" #: pynicotine/networkfilter.py:279 msgid "Vanuatu" msgstr "瓦努阿图" #: pynicotine/networkfilter.py:280 msgid "Wallis & Futuna" msgstr "瓦利斯群岛和富图纳群岛" #: pynicotine/networkfilter.py:281 msgid "Samoa" msgstr "萨摩亚" #: pynicotine/networkfilter.py:282 msgid "Yemen" msgstr "也门" #: pynicotine/networkfilter.py:283 msgid "Mayotte" msgstr "马约特" #: pynicotine/networkfilter.py:284 msgid "South Africa" msgstr "南非" #: pynicotine/networkfilter.py:285 msgid "Zambia" msgstr "赞比亚" #: pynicotine/networkfilter.py:286 msgid "Zimbabwe" msgstr "津巴布韦" #: pynicotine/notifications.py:73 pynicotine/notifications.py:92 #, python-format msgid "Text-to-speech for message failed: %s" msgstr "文字转语音失败:%s" #: pynicotine/nowplaying.py:128 msgid "Last.fm: Please provide both your Last.fm username and API key" msgstr "Last.fm:请提供您的 Last.fm 用户名和 API 密钥" #: pynicotine/nowplaying.py:128 pynicotine/nowplaying.py:139 #: pynicotine/nowplaying.py:161 pynicotine/nowplaying.py:193 #: pynicotine/nowplaying.py:216 pynicotine/nowplaying.py:262 #: pynicotine/nowplaying.py:272 pynicotine/nowplaying.py:280 #: pynicotine/nowplaying.py:294 pynicotine/nowplaying.py:309 msgid "Now Playing Error" msgstr "正在播放错误" #: pynicotine/nowplaying.py:138 #, python-format msgid "Last.fm: Could not connect to Audioscrobbler: %(error)s" msgstr "Last.fm:无法连接到 Audioscrobbler:%(error)s" #: pynicotine/nowplaying.py:160 #, python-format msgid "Last.fm: Could not get recent track from Audioscrobbler: %(error)s" msgstr "Last.fm:无法从 Audioscrobbler 获取最近的曲目:%(error)s" #: pynicotine/nowplaying.py:193 msgid "MPRIS: Could not find a suitable MPRIS player" msgstr "MPRIS: 找不到合适的MPRIS播放器" #: pynicotine/nowplaying.py:198 #, python-format msgid "Found multiple MPRIS players: %(players)s. Using: %(player)s" msgstr "找到多个 MPRIS 播放器:%(players)s。使用:%(player)s" #: pynicotine/nowplaying.py:201 #, python-format msgid "Auto-detected MPRIS player: %s" msgstr "自动检测到MPRIS 播放器:%s" #: pynicotine/nowplaying.py:215 #, python-format msgid "MPRIS: Something went wrong while querying %(player)s: %(exception)s" msgstr "MPRIS:查询 %(player)s 时出现问题:%(exception)s" #: pynicotine/nowplaying.py:262 msgid "ListenBrainz: Please provide your ListenBrainz username" msgstr "ListenBrainz:请提供您的 ListenBrainz 用户名" #: pynicotine/nowplaying.py:271 #, python-format msgid "ListenBrainz: Could not connect to ListenBrainz: %(error)s" msgstr "ListenBrainz:无法连接到 ListenBrainz:%(error)s" #: pynicotine/nowplaying.py:279 msgid "ListenBrainz: You don't seem to be listening to anything right now" msgstr "ListenBrainz:你现在似乎没有在听音乐" #: pynicotine/nowplaying.py:293 #, python-format msgid "ListenBrainz: Could not get current track from ListenBrainz: %(error)s" msgstr "ListenBrainz:无法从 ListenBrainz 获取当前曲目:%(error)s" #: pynicotine/plugins/core_commands/__init__.py:28 msgid "Network Filters" msgstr "筛选网络" #: pynicotine/plugins/core_commands/__init__.py:44 msgid "List available commands" msgstr "可用命令列表" #: pynicotine/plugins/core_commands/__init__.py:49 msgid "Connect to the server" msgstr "连接到服务器" #: pynicotine/plugins/core_commands/__init__.py:53 msgid "Disconnect from the server" msgstr "与服务器断开连接" #: pynicotine/plugins/core_commands/__init__.py:58 msgid "Toggle away status" msgstr "离开状态开关" #: pynicotine/plugins/core_commands/__init__.py:62 msgid "Manage plugins" msgstr "管理插件" #: pynicotine/plugins/core_commands/__init__.py:74 msgid "Clear chat window" msgstr "清空聊天窗口" #: pynicotine/plugins/core_commands/__init__.py:80 msgid "Say something in the third-person" msgstr "用第三人称说话" #: pynicotine/plugins/core_commands/__init__.py:87 msgid "Announce the song currently playing" msgstr "公开当前正在播放的歌曲" #: pynicotine/plugins/core_commands/__init__.py:94 msgid "Join chat room" msgstr "加入聊天室" #: pynicotine/plugins/core_commands/__init__.py:102 msgid "Leave chat room" msgstr "离开聊天室" #: pynicotine/plugins/core_commands/__init__.py:110 msgid "Say message in specified chat room" msgstr "在指定的聊天室发送消息" #: pynicotine/plugins/core_commands/__init__.py:117 msgid "Open private chat" msgstr "打开私聊" #: pynicotine/plugins/core_commands/__init__.py:125 msgid "Close private chat" msgstr "关闭私聊" #: pynicotine/plugins/core_commands/__init__.py:133 msgid "Request user's client version" msgstr "请求用户客户端版本" #: pynicotine/plugins/core_commands/__init__.py:142 msgid "Send private message to user" msgstr "私信用户" #: pynicotine/plugins/core_commands/__init__.py:150 msgid "Add user to buddy list" msgstr "添加好友" #: pynicotine/plugins/core_commands/__init__.py:158 msgid "Remove buddy from buddy list" msgstr "移除好友" #: pynicotine/plugins/core_commands/__init__.py:166 msgid "Browse files of user" msgstr "浏览用户文件" #: pynicotine/plugins/core_commands/__init__.py:175 msgid "Show user profile information" msgstr "显示用户资料" #: pynicotine/plugins/core_commands/__init__.py:183 msgid "Show IP address or username" msgstr "显示 IP 连接或用户名" #: pynicotine/plugins/core_commands/__init__.py:190 msgid "Block connections from user or IP address" msgstr "阻止此用户或 IP 地址的连接" #: pynicotine/plugins/core_commands/__init__.py:197 msgid "Remove user or IP address from ban lists" msgstr "从黑名单中移除用户或 IP" #: pynicotine/plugins/core_commands/__init__.py:204 msgid "Silence messages from user or IP address" msgstr "对用户或 IP 开启消息免打扰" #: pynicotine/plugins/core_commands/__init__.py:212 msgid "Remove user or IP address from ignore lists" msgstr "从忽略列表中移除用户或 IP" #: pynicotine/plugins/core_commands/__init__.py:220 msgid "Add share" msgstr "添加分享" #: pynicotine/plugins/core_commands/__init__.py:226 msgid "Remove share" msgstr "移除分享" #: pynicotine/plugins/core_commands/__init__.py:233 msgid "List shares" msgstr "列出共享" #: pynicotine/plugins/core_commands/__init__.py:239 msgid "Rescan shares" msgstr "重新扫描共享" #: pynicotine/plugins/core_commands/__init__.py:246 msgid "Start global file search" msgstr "开始全局文件搜索" #: pynicotine/plugins/core_commands/__init__.py:254 msgid "Search files in joined rooms" msgstr "在已加入的聊天室中搜索文件" #: pynicotine/plugins/core_commands/__init__.py:262 msgid "Search files of all buddies" msgstr "搜索所有好友的文件" #: pynicotine/plugins/core_commands/__init__.py:270 msgid "Search a user's shared files" msgstr "搜索用户的共享文件" #: pynicotine/plugins/core_commands/__init__.py:296 #, python-format msgid "Listing %(num)i available commands:" msgstr "列出 %(num)i 条可用命令:" #: pynicotine/plugins/core_commands/__init__.py:298 #, python-format msgid "Listing %(num)i available commands matching \"%(query)s\":" msgstr "列出 %(num)i 条匹配“%(query)s”的可用命令:" #: pynicotine/plugins/core_commands/__init__.py:311 #, python-format msgid "Type %(command)s to list similar commands" msgstr "键入 %(command)s 列出类似命令" #: pynicotine/plugins/core_commands/__init__.py:314 #, python-format msgid "Type %(command)s to list available commands" msgstr "键入 %(command)s 列出可用命令" #: pynicotine/plugins/core_commands/__init__.py:375 #: pynicotine/plugins/core_commands/__init__.py:387 #, python-format msgid "Not joined in room %s" msgstr "未加入房间 %s" #: pynicotine/plugins/core_commands/__init__.py:404 #, python-format msgid "Not messaging with user %s" msgstr "未与用户 %s 聊天" #: pynicotine/plugins/core_commands/__init__.py:408 #, python-format msgid "Closed private chat of user %s" msgstr "与用户 %s 聊天的已关闭" #: pynicotine/plugins/core_commands/__init__.py:479 #, python-format msgid "Banned %s" msgstr "已封禁 %s" #: pynicotine/plugins/core_commands/__init__.py:493 #, python-format msgid "Unbanned %s" msgstr "已解封 %s" #: pynicotine/plugins/core_commands/__init__.py:506 #, python-format msgid "Ignored %s" msgstr "已忽略 %s" #: pynicotine/plugins/core_commands/__init__.py:520 #, python-format msgid "Unignored %s" msgstr "已解除忽略 %s" #: pynicotine/plugins/core_commands/__init__.py:556 #, python-format msgid "%(num_listed)s shares listed (%(num_total)s configured)" msgstr "已列出 %(num_listed)s 个共享(共配置 %(num_total)s)" #: pynicotine/plugins/core_commands/__init__.py:568 #, python-format msgid "Cannot share inaccessible folder \"%s\"" msgstr "无法访问文件夹“%s”,无法共享" #: pynicotine/plugins/core_commands/__init__.py:571 #, python-format msgid "Added %(group_name)s share \"%(virtual_name)s\" (rescan required)" msgstr "已添加 %(group_name)s 分享“%(virtual_name)s”(需要重新扫描)" #: pynicotine/plugins/core_commands/__init__.py:582 #, python-format msgid "No share with name \"%s\"" msgstr "没有名为“%s”的共享" #: pynicotine/plugins/core_commands/__init__.py:585 #, python-format msgid "Removed share \"%s\" (rescan required)" msgstr "已移除共享“%s”(需要重新扫描)" #: pynicotine/pluginsystem.py:404 msgid "Loading plugin system" msgstr "加载插件系统" #: pynicotine/pluginsystem.py:508 #, python-format msgid "" "Unable to load plugin %(name)s. Plugin folder name contains invalid " "characters: %(characters)s" msgstr "无法加载插件 %(name)s。插件文件夹名称包含无效字符:%(characters)s" #: pynicotine/pluginsystem.py:540 #, python-format msgid "Conflicting %(interface)s command in plugin %(name)s: %(command)s" msgstr "插件 %(name)s 中含有冲突 %(interface)s 命令:%(command)s" #: pynicotine/pluginsystem.py:567 #, python-format msgid "Loaded plugin %s" msgstr "已加载插件 %s" #: pynicotine/pluginsystem.py:571 #, python-format msgid "" "Unable to load plugin %(module)s\n" "%(exc_trace)s" msgstr "" "无法加载插件 %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:637 #, python-format msgid "Unloaded plugin %s" msgstr "已卸载的插件 %s" #: pynicotine/pluginsystem.py:641 #, python-format msgid "" "Unable to unload plugin %(module)s\n" "%(exc_trace)s" msgstr "" "无法卸载插件 %(module)s\n" "%(exc_trace)s" #: pynicotine/pluginsystem.py:725 #, python-format msgid "" "Plugin %(module)s failed with error %(errortype)s: %(error)s.\n" "Trace: %(trace)s" msgstr "" "插件 %(module)s 失败,出现错误 %(errortype)s: %(error)s。\n" "调试轨迹:%(trace)s" #: pynicotine/pluginsystem.py:793 msgid "No description" msgstr "无描述" #: pynicotine/pluginsystem.py:873 #, python-format msgid "Missing %s argument" msgstr "缺少 %s 参数" #: pynicotine/pluginsystem.py:882 #, python-format msgid "Invalid argument, possible choices: %s" msgstr "参数无效,可选择:%s" #: pynicotine/pluginsystem.py:887 #, python-format msgid "Usage: %(command)s %(parameters)s" msgstr "用法:%(command)s %(parameters)s" #: pynicotine/pluginsystem.py:926 #, python-format msgid "" "Unknown command: %(command)s. Type %(help_command)s to list available " "commands." msgstr "未知命令:%(command)s。键入 %(help_command)s 列出可用的命令。" #: pynicotine/portmapper.py:477 pynicotine/portmapper.py:600 msgid "No UPnP devices found" msgstr "未找到 UPnP 设备" #: pynicotine/portmapper.py:594 #, python-format msgid "" "%(protocol)s: Failed to forward external port %(external_port)s: %(error)s" msgstr "%(protocol)s:转发外部端口 %(external_port)s 失败:%(error)s" #: pynicotine/portmapper.py:608 #, python-format msgid "" "%(protocol)s: External port %(external_port)s successfully forwarded to " "local IP address %(ip_address)s port %(local_port)s" msgstr "" "%(protocol)s:外部端口 %(external_port)s 成功转发到本地 IP 地" "址%(ip_address)s %(local_port)s 端口" #: pynicotine/privatechat.py:216 #, python-format msgid "Private message from user '%(user)s': %(message)s" msgstr "来自用户“%(user)s”的私信:%(message)s" #: pynicotine/search.py:328 #, python-format msgid "Searching for wishlist item \"%s\"" msgstr "正在搜索心愿单条目“%s”" #: pynicotine/search.py:392 #, python-format msgid "Wishlist wait period set to %s seconds" msgstr "设置心愿单等待时间为 %s 秒" #: pynicotine/search.py:711 #, python-format msgid "User %(user)s is searching for \"%(query)s\", found %(num)i results" msgstr "用户 %(user)s 正在搜索“%(query)s”,找到了 %(num)i 结果" #: pynicotine/shares.py:272 msgid "Rebuilding shares…" msgstr "正在重建共享库……" #: pynicotine/shares.py:272 msgid "Rescanning shares…" msgstr "正在重新扫描共享……" #: pynicotine/shares.py:289 #, python-format msgid "Rescan complete: %(num)s folders found" msgstr "重新扫描完成:找到 %(num)s 个文件夹" #: pynicotine/shares.py:297 #, python-format msgid "" "Serious error occurred while rescanning shares. If this problem persists, " "delete %(dir)s/*.dbn and try again. If that doesn't help, please file a bug " "report with this stack trace included: %(trace)s" msgstr "" "重新扫描共享时出现严重错误。如果此问题持续,请删除 %(dir)s/*.dbn 并重试。若问" "题仍存在,请提交包含此堆栈跟踪的错误报告:%(trace)s" #: pynicotine/shares.py:548 #, python-format msgid "Error while scanning file %(path)s: %(error)s" msgstr "扫描文件 %(path)s 时出错:%(error)s" #: pynicotine/shares.py:552 #, python-format msgid "Error while scanning folder %(path)s: %(error)s" msgstr "扫描文件夹 %(path)s 时出错:%(error)s" #: pynicotine/shares.py:585 #, python-format msgid "Error while scanning metadata for file %(path)s: %(error)s" msgstr "扫描文件 %(path)s 的元数据时出错:%(error)s" #: pynicotine/shares.py:1052 #, python-format msgid "Rescan aborted due to unavailable shares: %s" msgstr "共享 %s 不可用,重新扫描已中止" #: pynicotine/shares.py:1125 #, python-format msgid "User %(user)s is browsing your list of shared files" msgstr "用户 %(user)s 正在浏览您的共享文件列表" #: pynicotine/shares.py:1162 #, python-format msgid "Failed to fetch the shared folder %(folder)s: %(error)s" msgstr "无法获取共享文件夹 %(folder)s:%(error)s" #: pynicotine/slskmessages.py:3008 #, python-format msgid "Unable to read shares database. Please rescan your shares. Error: %s" msgstr "无法读取共享数据库。请重新扫描您的共享。错误: %s" #: pynicotine/slskproto.py:492 #, python-format msgid "Specified network interface '%s' is not available" msgstr "指定的网络接口“%s”不可用" #: pynicotine/slskproto.py:503 #, python-format msgid "" "Cannot listen on port %(port)s. Ensure no other application uses it, or " "choose a different port. Error: %(error)s" msgstr "" "无法侦听端口 %(port)s。确保没有其他程序占用端口,或选择其他端口。错误:" "%(error)s" #: pynicotine/slskproto.py:515 #, python-format msgid "Listening on port: %i" msgstr "正在监听端口:%i" #: pynicotine/slskproto.py:815 #, python-format msgid "Cannot connect to server %(host)s:%(port)s: %(error)s" msgstr "无法连接到服务器 %(host)s:%(port)s:%(error)s" #: pynicotine/slskproto.py:1128 #, python-format msgid "Reconnecting to server in %i seconds" msgstr "%i 秒后自动重连服务器" #: pynicotine/slskproto.py:1202 #, python-format msgid "Connecting to %(host)s:%(port)s" msgstr "连接到 %(host)s:%(port)s" #: pynicotine/slskproto.py:1241 #, python-format msgid "Connected to server %(host)s:%(port)s, logging in…" msgstr "已连接到服务器 %(host)s:%(port)s,正在登录……" #: pynicotine/slskproto.py:1520 #, python-format msgid "Disconnected from server %(host)s:%(port)s" msgstr "与服务器 %(host)s:%(port)s 断开连接" #: pynicotine/slskproto.py:1526 msgid "Someone logged in to your Soulseek account elsewhere" msgstr "有人在其他地方登录了你的 Soulseek 账户" #: pynicotine/uploads.py:388 #, python-format msgid "Upload finished: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "上传完成:用户 %(user)s,IP 地址 %(ip)s,文件 %(file)s" #: pynicotine/uploads.py:409 #, python-format msgid "Upload aborted, user %(user)s file %(file)s" msgstr "上传中止,用户 %(user)s 文件 %(file)s" #: pynicotine/uploads.py:1049 pynicotine/uploads.py:1080 #, python-format msgid "Upload I/O error: %s" msgstr "上传 I/O 错误:%s" #: pynicotine/uploads.py:1093 #, python-format msgid "Upload started: user %(user)s, IP address %(ip)s, file %(file)s" msgstr "上传开始:用户 %(user)s,IP 地址 %(ip)s,文件 %(file)s" #: pynicotine/userbrowse.py:167 #, python-format msgid "Can't create directory '%(folder)s', reported error: %(error)s" msgstr "无法创建目录“%(folder)s”,错误信息:%(error)s" #: pynicotine/userbrowse.py:218 #, python-format msgid "Loading Shares from disk failed: %(error)s" msgstr "从磁盘加载共享失败:%(error)s" #: pynicotine/userbrowse.py:264 #, python-format msgid "Saved list of shared files for user '%(user)s' to %(dir)s" msgstr "将用户“%(user)s”的共享文件列表保存到 %(dir)s" #: pynicotine/userbrowse.py:268 #, python-format msgid "Can't save shares, '%(user)s', reported error: %(error)s" msgstr "无法保存共享,“%(user)s”,报告错误:%(error)s" #: pynicotine/userinfo.py:159 #, python-format msgid "Picture saved to %s" msgstr "图片已保存到 %s" #: pynicotine/userinfo.py:162 #, python-format msgid "Cannot save picture to %(filename)s: %(error)s" msgstr "图片无法保存到 %(filename)s:%(error)s" #: pynicotine/userinfo.py:189 #, python-format msgid "User %(user)s is viewing your profile" msgstr "用户 %(user)s 正在查看您的资料" #: pynicotine/users.py:184 #, python-format msgid "Unable to connect to the server. Reason: %s" msgstr "无法连接到服务器。原因:%s" #: pynicotine/users.py:184 msgid "Cannot Connect" msgstr "无法连接" #: pynicotine/users.py:218 #, python-format msgid "Cannot retrieve the IP of user %s, since this user is offline" msgstr "该用户已经离线,无法检索用户 %s 的 IP" #: pynicotine/users.py:227 #, python-format msgid "IP address of user %(user)s: %(ip)s, port %(port)i%(country)s" msgstr "用户%(user)s的IP地址为:%(ip)s,端口%(port)i%(country)s" #: pynicotine/users.py:348 msgid "Soulseek Announcement" msgstr "Soulseek公告" #: pynicotine/users.py:356 #, python-format msgid "%i privileged users" msgstr "%i 特权用户" #: pynicotine/users.py:366 msgid "" "You have no Soulseek privileges. While privileges are active, your downloads " "will be queued ahead of those of non-privileged users." msgstr "您没有 Soulseek 特权。特权用户的下载请求将优先于无特权用户。" #: pynicotine/users.py:372 #, python-format msgid "" "%(days)i days, %(hours)i hours, %(minutes)i minutes, %(seconds)i seconds of " "Soulseek privileges left" msgstr "" "Soulseek 特权剩余 %(days)i 天,%(hours)i 小时,%(minutes)i 分钟,%(seconds)i " "秒" #: pynicotine/users.py:390 msgid "Your password has been changed" msgstr "您的密码已更改" #: pynicotine/users.py:390 msgid "Password Changed" msgstr "密码已更改" #: pynicotine/utils.py:576 #, python-format msgid "Cannot open file path %(path)s: %(error)s" msgstr "无法打开文件路径 %(path)s:%(error)s" #: pynicotine/utils.py:623 #, python-format msgid "Cannot open URL %(url)s: %(error)s" msgstr "无法打开URL %(url)s: %(error)s" #: pynicotine/utils.py:648 #, python-format msgid "Something went wrong while reading file %(filename)s: %(error)s" msgstr "读取文件 %(filename)s 时出现问题:%(error)s" #: pynicotine/utils.py:653 #, python-format msgid "Attempting to load backup of file %s" msgstr "尝试加载文件的备份 %s" #: pynicotine/utils.py:674 #, python-format msgid "Unable to back up file %(path)s: %(error)s" msgstr "无法备份文件 %(path)s:%(error)s" #: pynicotine/utils.py:694 #, python-format msgid "Unable to save file %(path)s: %(error)s" msgstr "无法保存文件 %(path)s:%(error)s" #: pynicotine/utils.py:705 #, python-format msgid "Unable to restore previous file %(path)s: %(error)s" msgstr "无法恢复以前的文件 %(path)s:%(error)s" #: pynicotine/gtkgui/ui/buddies.ui:31 pynicotine/gtkgui/ui/mainwindow.ui:1254 msgid "Add buddy…" msgstr "添加好友……" #: pynicotine/gtkgui/ui/chatrooms.ui:27 msgid "Search activity log…" msgstr "查找活动日志……" #: pynicotine/gtkgui/ui/chatrooms.ui:63 pynicotine/gtkgui/ui/privatechat.ui:18 msgid "Search chat log…" msgstr "查找聊天日志……" #: pynicotine/gtkgui/ui/chatrooms.ui:96 pynicotine/gtkgui/ui/privatechat.ui:51 msgid "Send message…" msgstr "发送消息……" #: pynicotine/gtkgui/ui/chatrooms.ui:106 pynicotine/gtkgui/ui/privatechat.ui:61 msgid "Toggle Text-to-Speech" msgstr "文字转语音开关" #: pynicotine/gtkgui/ui/chatrooms.ui:121 msgid "Chat Room Command Help" msgstr "聊天室命令帮助" #: pynicotine/gtkgui/ui/chatrooms.ui:136 pynicotine/gtkgui/ui/privatechat.ui:91 msgid "_Log" msgstr "_日志" #: pynicotine/gtkgui/ui/chatrooms.ui:208 msgid "Room Wall" msgstr "聊天室留言板" #: pynicotine/gtkgui/ui/chatrooms.ui:223 msgid "R_oom Wall" msgstr "聊_天室留言版" #: pynicotine/gtkgui/ui/dialogs/about.ui:124 msgid "Created by" msgstr "创建者" #: pynicotine/gtkgui/ui/dialogs/about.ui:163 msgid "Translated by" msgstr "译者" #: pynicotine/gtkgui/ui/dialogs/about.ui:202 msgid "License" msgstr "许可" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:5 msgid "_Previous" msgstr "_上一个" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:57 msgid "Welcome to Nicotine+" msgstr "欢迎来到Nicotine+" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:89 msgid "_Set Up…" msgstr "_设置……" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:141 msgid "" "If your desired username is already taken, you will be prompted to change it." msgstr "如果您指定的用户名已被占用,系统将提示您。" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:256 msgid "" "To connect with other Soulseek peers, a listening port on your router has to " "be forwarded to your computer." msgstr "为了连接其他 Soulseek 用户,路由器上的一个监听端口已转发到您的电脑上。" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:266 msgid "" "If your listening port is closed, you will only be able to connect to users " "whose listening ports are open." msgstr "如果您的监听端口关闭,您将只能连接到监听端口打开的用户。" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:276 msgid "" "If necessary, choose a different listening port below. This can also be done " "later in the preferences." msgstr "如有必要,请在下面选择不同的侦听端口。您也可以稍后在偏好中选择。" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:317 msgid "Download Files to Folder" msgstr "下载文件到文件夹" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:338 msgid "Share Folders" msgstr "共享文件夹" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:350 #: pynicotine/gtkgui/ui/settings/shares.ui:23 msgid "" "Soulseek users will be able to download from your shares. Contribute to the " "Soulseek network by sharing your own files and by resharing what you " "downloaded from other users." msgstr "" "Soulseek 用户可以从您的共享中下载。通过分享您自己的收藏和转发您从其他用户下载" "的内容,为 Soulseek 网络做出贡献。" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:515 msgid "You are ready to use Nicotine+!" msgstr "Nicotine+ 已经可以使用!" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:533 msgid "" "Soulseek is an unencrypted protocol not intended for secure communication." msgstr "Soulseek 是非加密协议,并非为加密通信设计。" #: pynicotine/gtkgui/ui/dialogs/fastconfigure.ui:543 msgid "" "Donating to Soulseek grants you privileges for a certain time period. If you " "have privileges, your downloads will be queued ahead of non-privileged users." msgstr "" "向 Soulseek 捐款可获得一段时间的特权。如果您有特权,您的下载将排在非特权用户" "之前。" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:20 msgid "Previous File" msgstr "上一个文件" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:34 msgid "Next File" msgstr "下一个文件" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:63 msgid "Name" msgstr "名称" #: pynicotine/gtkgui/ui/dialogs/fileproperties.ui:267 msgid "Last Speed" msgstr "最后速度" #: pynicotine/gtkgui/ui/dialogs/preferences.ui:11 msgid "_Export…" msgstr "_导出……" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:6 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:54 msgid "Keyboard Shortcuts" msgstr "键盘快捷键" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:14 msgid "General" msgstr "通用" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:19 msgid "Connect" msgstr "连接" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:26 msgid "Disconnect" msgstr "断开连接" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:40 msgid "Rescan Shares" msgstr "重新扫描共享" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:47 #: pynicotine/gtkgui/ui/mainwindow.ui:1861 msgid "Show Log Pane" msgstr "显示日志窗格" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:68 msgid "Confirm Quit" msgstr "确认退出" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:75 msgid "Quit" msgstr "退出" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:83 msgid "Menus" msgstr "菜单" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:88 msgid "Open Main Menu" msgstr "打开主菜单" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:95 msgid "Open Context Menu" msgstr "打开上下文菜单" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:103 #: pynicotine/gtkgui/ui/settings/userinterface.ui:377 msgid "Tabs" msgstr "选项卡" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:108 msgid "Change Main Tab" msgstr "更改主选项卡" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:115 msgid "Go to Previous Secondary Tab" msgstr "转到上一个二级选项卡" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:122 msgid "Go to Next Secondary Tab" msgstr "转到下一个二级选项卡" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:129 msgid "Reopen Closed Secondary Tab" msgstr "打开已关闭的二级选项卡" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:136 msgid "Close Secondary Tab" msgstr "关闭二级选项卡" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:144 #: pynicotine/gtkgui/ui/settings/userinterface.ui:917 msgid "Lists" msgstr "列表" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:149 msgid "Copy Selected Cell" msgstr "复制所选单元格" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:156 msgid "Remove Selected Row" msgstr "移除所选行" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:164 msgid "Editing" msgstr "编辑" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:169 msgid "Cut" msgstr "剪切" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:183 msgid "Paste" msgstr "粘贴" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:190 msgid "Insert Emoji" msgstr "插入表情符号" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:197 msgid "Select All" msgstr "全选" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:204 msgid "Find" msgstr "查找" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:211 #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:272 msgid "Find Next Match" msgstr "查找下一个匹配项" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:218 msgid "Find Previous Match" msgstr "查找上一个匹配项" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:226 msgid "File Transfers" msgstr "文件传输" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:231 msgid "Resume / Retry Transfer" msgstr "恢复/重试传输" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:238 msgid "Pause / Abort Transfer" msgstr "暂停/中止传输" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:251 msgid "Download / Upload To" msgstr "下载/上传至" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:265 msgid "Save List to Disk" msgstr "保存列表到磁盘" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:279 msgid "Refresh" msgstr "刷新" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:286 #: pynicotine/gtkgui/ui/mainwindow.ui:369 #: pynicotine/gtkgui/ui/mainwindow.ui:608 pynicotine/gtkgui/ui/search.ui:199 #: pynicotine/gtkgui/ui/userbrowse.ui:103 msgid "Expand / Collapse All" msgstr "展开/折叠全部" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:293 msgid "Back to Parent Folder" msgstr "返回父文件夹" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:301 msgid "File Search" msgstr "文件搜索" #: pynicotine/gtkgui/ui/dialogs/shortcuts.ui:306 msgid "Result Filters" msgstr "结果过滤器" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:21 msgid "Current Session" msgstr "当前会话" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:38 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:156 msgid "Completed Downloads" msgstr "完成的下载" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:64 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:182 msgid "Downloaded Size" msgstr "下载大小" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:91 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:209 msgid "Completed Uploads" msgstr "完成的上传" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:117 #: pynicotine/gtkgui/ui/dialogs/statistics.ui:235 msgid "Uploaded Size" msgstr "上传大小" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:138 msgid "Total" msgstr "共计" #: pynicotine/gtkgui/ui/dialogs/statistics.ui:278 msgid "_Reset…" msgstr "_重置…" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:16 msgid "" "Wishlist items are auto-searched at regular intervals, for discovering " "uncommon files." msgstr "心愿单条目会定期自动搜索,以发现稀有文件。" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:26 msgid "Add Wish…" msgstr "添加心愿……" #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:125 #: pynicotine/gtkgui/ui/dialogs/wishlist.ui:141 msgid "Clear All…" msgstr "清除所有……" #: pynicotine/gtkgui/ui/downloads.ui:138 msgid "Clear All Finished/Filtered Downloads" msgstr "清除所有已完成和已过滤的下载" #: pynicotine/gtkgui/ui/downloads.ui:154 pynicotine/gtkgui/ui/uploads.ui:154 msgid "Clear Finished" msgstr "已清除" #: pynicotine/gtkgui/ui/downloads.ui:169 msgid "Clear Specific Downloads" msgstr "清除特定的下载" #: pynicotine/gtkgui/ui/downloads.ui:178 pynicotine/gtkgui/ui/uploads.ui:208 msgid "Clear _All…" msgstr "清除_全部…" #: pynicotine/gtkgui/ui/interests.ui:21 msgid "Personal Interests" msgstr "个人兴趣" #: pynicotine/gtkgui/ui/interests.ui:40 msgid "Add something you like…" msgstr "添加你喜欢的东西……" #: pynicotine/gtkgui/ui/interests.ui:62 msgid "Personal Dislikes" msgstr "个人反感" #: pynicotine/gtkgui/ui/interests.ui:80 msgid "Add something you dislike…" msgstr "添加你不喜欢的东西……" #: pynicotine/gtkgui/ui/interests.ui:143 msgid "Refresh Recommendations" msgstr "刷新建议" #: pynicotine/gtkgui/ui/mainwindow.ui:26 msgid "Main Menu" msgstr "主菜单" #: pynicotine/gtkgui/ui/mainwindow.ui:43 msgid "Room…" msgstr "聊天室……" #: pynicotine/gtkgui/ui/mainwindow.ui:51 pynicotine/gtkgui/ui/mainwindow.ui:730 #: pynicotine/gtkgui/ui/mainwindow.ui:899 #: pynicotine/gtkgui/ui/mainwindow.ui:1095 msgid "Username…" msgstr "用户名……" #: pynicotine/gtkgui/ui/mainwindow.ui:58 msgid "Search term…" msgstr "查找内容……" #: pynicotine/gtkgui/ui/mainwindow.ui:60 msgid "" "Search patterns: with a word = term, without a word = -term, partial word = " "*erm" msgstr "" "搜索匹配模式:输入包含的文字 = 搜索内容,排除包含的文字 = -搜索内容,模糊匹" "配 = *内容" #: pynicotine/gtkgui/ui/mainwindow.ui:95 msgid "Search Scope" msgstr "搜索范围" #: pynicotine/gtkgui/ui/mainwindow.ui:141 msgid "_Wishlist" msgstr "_心愿单" #: pynicotine/gtkgui/ui/mainwindow.ui:163 msgid "Configure Searches" msgstr "配置搜索" #: pynicotine/gtkgui/ui/mainwindow.ui:230 msgid "" "Enter a search term to search for files shared by other users on the " "Soulseek network" msgstr "输入搜索词以搜索 Soulseek 网络上其他用户共享的文件" #: pynicotine/gtkgui/ui/mainwindow.ui:384 #: pynicotine/gtkgui/ui/mainwindow.ui:623 pynicotine/gtkgui/ui/search.ui:214 msgid "File Grouping Mode" msgstr "文件分组模式" #: pynicotine/gtkgui/ui/mainwindow.ui:402 msgid "Configure Downloads" msgstr "配置下载" #: pynicotine/gtkgui/ui/mainwindow.ui:469 msgid "" "Files you download from other users are queued here, and can be paused and " "resumed on demand" msgstr "您从其他用户下载的文件在此处排队,按需暂停和恢复" #: pynicotine/gtkgui/ui/mainwindow.ui:641 msgid "Configure Uploads" msgstr "配置上传" #: pynicotine/gtkgui/ui/mainwindow.ui:708 msgid "" "Users' attempts to download your shared files are queued and managed here" msgstr "用户尝试下载您的共享文件在此处排队和管理" #: pynicotine/gtkgui/ui/mainwindow.ui:787 msgid "_Open List" msgstr "_打开列表" #: pynicotine/gtkgui/ui/mainwindow.ui:789 msgid "Opens a local list of shared files that was previously saved to disk" msgstr "打开以前保存到磁盘的共享文件的本地列表" #: pynicotine/gtkgui/ui/mainwindow.ui:810 msgid "Configure Shares" msgstr "配置共享" #: pynicotine/gtkgui/ui/mainwindow.ui:877 msgid "" "Enter the name of a user, whose shared files you'd like to browse. You can " "also save the list to disk, and inspect it later on." msgstr "输入要浏览共享文件的用户名。您还可以将列表保存到磁盘,以便稍后检查。" #: pynicotine/gtkgui/ui/mainwindow.ui:956 msgid "_Personal Profile" msgstr "_个人资料" #: pynicotine/gtkgui/ui/mainwindow.ui:978 msgid "Configure Account" msgstr "配置账户" #: pynicotine/gtkgui/ui/mainwindow.ui:1045 msgid "" "Enter the name of a user to view their user description, information and " "personal picture" msgstr "输入用户名以查看其用户描述、信息和个人照片" #: pynicotine/gtkgui/ui/mainwindow.ui:1112 msgid "Chat _History" msgstr "聊天_历史" #: pynicotine/gtkgui/ui/mainwindow.ui:1138 #: pynicotine/gtkgui/ui/mainwindow.ui:1471 msgid "Configure Chats" msgstr "配置聊天" #: pynicotine/gtkgui/ui/mainwindow.ui:1205 msgid "" "Enter the name of a user to start a text conversation with them in private" msgstr "输入用户名,开始私聊" #: pynicotine/gtkgui/ui/mainwindow.ui:1285 msgid "_Message All" msgstr "_私信全部" #: pynicotine/gtkgui/ui/mainwindow.ui:1307 msgid "Configure Ignored Users" msgstr "配置已忽略的用户" #: pynicotine/gtkgui/ui/mainwindow.ui:1374 msgid "" "Add users as buddies to share specific folders with them and receive " "notifications when they are online" msgstr "添加用户为好友,与他们分享特定的文件夹,并在他们在线时收到通知" #: pynicotine/gtkgui/ui/mainwindow.ui:1428 msgid "Join or create room…" msgstr "加入或创建聊天室…" #: pynicotine/gtkgui/ui/mainwindow.ui:1538 msgid "" "Join an existing chat room, or create a new room to chat with other users on " "the Soulseek network" msgstr "加入现有的聊天室,或创建一个新的聊天室,与Soulseek网络上的其他用户聊天" #: pynicotine/gtkgui/ui/mainwindow.ui:1599 msgid "Configure User Profile" msgstr "配置用户资料" #: pynicotine/gtkgui/ui/mainwindow.ui:1649 msgid "Search log…" msgstr "查找日志……" #: pynicotine/gtkgui/ui/mainwindow.ui:1730 msgid "Connections" msgstr "连接" #: pynicotine/gtkgui/ui/mainwindow.ui:1762 msgid "Downloading (Speed / Active Users)" msgstr "下载(速度/活跃用户)" #: pynicotine/gtkgui/ui/mainwindow.ui:1793 msgid "Uploading (Speed / Active Users)" msgstr "上传(速度/活跃用户)" #: pynicotine/gtkgui/ui/popovers/chathistory.ui:15 msgid "Search chat history…" msgstr "查找聊天历史……" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/downloads.ui:167 msgid "Download Speed Limits" msgstr "下载速度限制" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/downloads.ui:181 msgid "Unlimited download speed" msgstr "不限制下载速度" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/downloads.ui:193 msgid "Use download speed limit (KiB/s):" msgstr "使用下载速度限制 (KiB/s):" #: pynicotine/gtkgui/ui/popovers/downloadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/downloads.ui:215 msgid "Use alternative download speed limit (KiB/s):" msgstr "使用备用下载速度限制 (KiB/s):" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:19 msgid "Search rooms…" msgstr "查找聊天室……" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:27 msgid "Refresh Rooms" msgstr "刷新聊天室" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:70 msgid "_Show feed of public chat room messages" msgstr "_显示公共聊天室消息订阅流" #: pynicotine/gtkgui/ui/popovers/roomlist.ui:97 msgid "_Accept private room invitations" msgstr "_接受私密聊天室邀请" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:14 msgid "" "Write a single message that other room users can read later. Recent messages " "are shown at the top." msgstr "" "编写一条消息,聊天室里的其他用户都将看到此消息。新增加的消息将在顶部显示。" #: pynicotine/gtkgui/ui/popovers/roomwall.ui:42 msgid "Set wall message…" msgstr "设置留言板消息……" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:17 #: pynicotine/gtkgui/ui/settings/search.ui:134 msgid "Search Result Filters" msgstr "搜索结果过滤器" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:28 msgid "" "Search result filters are used to refine which search results are displayed." msgstr "搜索结果筛选器用于控制哪些搜索结果显示或不显示。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:37 msgid "" "Each list of search results has its own filter which can be revealed by " "toggling the Result Filters button. A filter is made up of multiple fields, " "all of which are applied when pressing Enter in any one of its fields. " "Filtering is applied immediately to results already received, and also to " "those yet to arrive." msgstr "" "每个搜索结果列表都有自己的过滤器,可以通过切换“结果过滤器”按钮来显示。过滤器" "由多个字段组成,在其任一字段中按 Enter 时将应用所有这些字段。过滤会立即应用于" "已收到的结果,也适用于尚未到达的结果。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:46 msgid "" "As the name suggests, a search result filter cannot expand your original " "search, it can only narrow it down. To broaden or change your search terms, " "perform a new search." msgstr "" "顾名思义,搜索结果过滤器不能扩大您原来的搜索范围,它只能缩小范围。要扩大或更" "改搜索项,请执行新的搜索。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:55 msgid "Result Filter Usage" msgstr "结果筛选器用法" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:67 msgid "Include Text" msgstr "包含文本" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:83 msgid "Files, folders and usernames containing this text will be shown." msgstr "显示包含此文本的文件、文件夹和用户名。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:93 msgid "" "Case is insensitive, but word order is important: 'Instrumental Remix' will " "not show any 'Remix Instrumental'" msgstr "" "不区分大小写,但词序很重要:“Instrumental Remix”不会显示任何“Remix " "Instrumental”的结果" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:103 msgid "" "Use | (or pipes) to seperate several exact phrases. Example:\n" " Remix|Dub Mix|Instrumental" msgstr "" "使用 | (“或”管道符)来分隔短语。示例:\n" " Remix|Dub Mix|伴奏" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:116 msgid "Exclude Text" msgstr "排除文本" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:127 msgid "" "As above, but files, folders and usernames are filtered out if the text " "matches." msgstr "如上所述,但如果文本匹配,则会过滤掉文件、文件夹和用户名。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:148 msgid "Filters files based upon their file extension." msgstr "根据文件扩展名过滤文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:158 msgid "" "Multiple file extensions can be specified, which in turn will reveal more " "from the list of results. Example:\n" " flac wav ape" msgstr "" "可以指定多个文件扩展名从结果列表中筛选出更多项目。示例:\n" " flac wav ape" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:169 msgid "" "It is also possible to invert the filter, specifying file extensions you " "don't want in your results with an exclamation mark! Example:\n" " !mp3 !jpg" msgstr "" "也可以反转过滤器,用感叹号 ! 剔除结果中不需要的文件扩展名。示例:\n" " !mp3 !jpg" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:180 msgid "File Size" msgstr "文件大小" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:196 msgid "Filters files based upon their file size." msgstr "根据文件大小过滤文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:206 msgid "" "By default, the unit used is bytes (B) and files greater than or equal to " "(>=) the value will be matched." msgstr "默认情况下,使用的单位是字节(B),将匹配大于或等于该值的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:216 msgid "" "Append b, k, m, or g (alternatively kib, mib, or gib) to specify byte, " "kibibyte, mebibyte, or gibibyte units:\n" " 20m to show files larger than 20 MiB (mebibytes)." msgstr "" "附加 b、k、m 或 g(或者 kib、mib 或 gib)以指定 byte、kibibyte、mebibyte 或 " "gibibyte 单位:\n" " 20m以显示大于20 MiB(兆字节)的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:227 msgid "" "Prepend = to a value to specify an exact match:\n" " =1024 matches files that are exactly 1 KiB (kibibyte)." msgstr "" "前缀=指定精确匹配的值:\n" " =1024 仅匹配大小为 1 KiB (即 1 kibibyte)的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:238 msgid "" "Prepend ! to a value to exclude files of a specific size:\n" " !30.5m to hide files that are 30.5 MiB (mebibytes)." msgstr "" "前置!到一个值以排除特定大小的文件:\n" " !30.5m 用于隐藏 30.5 MiB(兆字节)的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:249 msgid "" "Prepend < or > to find files smaller/larger than the given value. Use a " "space between each condition to include a range:\n" " >10.5m <1g to show files larger than 10.5 MiB, but smaller than 1 GiB." msgstr "" "前缀 < or > 查找小于或大于给定值的文件:在匹配条件中间插入空格来表示范围:\n" " >10.5m <1g 显示大于 10.5 MiB、小于 1 GiB 的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:260 msgid "" "The better-known variants kb, mb, and gb can also be used for kilobyte, " "megabyte, and gigabyte units." msgstr "常见的kb、mb和gb也可以用于千字节、兆字节和千兆字节单位。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:288 msgid "Filters files based upon their bitrate." msgstr "根据比特率过滤文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:298 msgid "" "Values must be entered as numeric digits only. The unit is always Kb/s " "(Kilobits per second)." msgstr "值只能以数字形式输入。单位始终为 Kb/s(千比特每秒)。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:308 msgid "" "Like File Size (above), operators =, !, <, >, <= or >= can be used, and " "multiple conditions can be specified, for example to show files with a " "bitrate of at least 256 Kb/s with a maximum bitrate of 1411 Kb/s:\n" " 256 <=1411" msgstr "" "与文件大小(上文)一样,可以使用运算符 =、!、< and >,并且可以使用 | 指定多个" "条件,例如显示比特率至少为 256 Kb/s 且最大比特率为1411 Kb/s 的比特率:\n" " 256 <=1411" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:337 msgid "Filters files based upon their duration." msgstr "根据文件的持续时间过滤文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:347 msgid "" "By default, files longer than or equal to (>=) the entered duration will be " "matched, unless an operator (=, !, <=, < or >) is used." msgstr "" "若不使用运算符(=、!、< and >,)默认匹配大于或等于指定持续时间的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:357 msgid "" "Enter a raw value in seconds or use the MM:SS and HH:MM:SS time formats:\n" " =53 shows files that are around 53 seconds long.\n" " >5:30 to show files more than 5 and a half minutes long.\n" " <5:30:00 shows files less than 5 and a half hours long." msgstr "" "输入秒数或格式为 MM:SS 和 HH:MM:SS 的时间:\n" " =53 显示时长大约为 53 秒的文件。\n" " >5:30 显示时长至少 5 分半的文件。\n" " <5:30:00 显示时长少于 5 个半小时的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:370 msgid "" "Multiple conditions can be specified:\n" " >6:00 <12:00 to show files between 6 and 12 minutes long.\n" " !9:54 !8:43 !7:32 to hide some specific files from the results.\n" " =5:34 =4:23 =3:05 to include files with specific durations." msgstr "" "您可以指定多个条件:\n" " >6:00 <12:00 显示 6 至 12 分钟的文件。\n" " !9:54 !8:43 !7:32 从结果中剔除特定的文件。\n" " =5:34 =4:23 =3:05 包含指定时长的文件。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:396 msgid "" "Filters files based upon users' geographical location according to country " "codes defined by ISO 3166-2:\n" " US will only show results from users with IP addresses in the United " "States.\n" " !GB will hide results that come from users in Great Britain." msgstr "" "使用 ISO 3166-2 标准国家代码来筛选文件:\n" " US 将只显示美国 IP 用户的结果。\n" " !GB 将隐藏英国用户的结果。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:408 msgid "Multiple countries can be specified with commas or spaces." msgstr "可以用逗号或空格指定多个国家/地区。" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:418 #: pynicotine/gtkgui/ui/search.ui:330 #: pynicotine/gtkgui/ui/settings/search.ui:362 msgid "Free Slot" msgstr "免费槽位" #: pynicotine/gtkgui/ui/popovers/searchfilterhelp.ui:429 msgid "" "Show only those results from users which have at least one upload slot free, " "i.e. files that are available immediately." msgstr "仅显示至少有一个可用上传槽位的用户的结果,即立即可用的文件。" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:25 #: pynicotine/gtkgui/ui/settings/uploads.ui:106 msgid "Upload Speed Limits" msgstr "上传速度限制" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:38 #: pynicotine/gtkgui/ui/settings/uploads.ui:158 msgid "Unlimited upload speed" msgstr "不限制上传速度" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:51 #: pynicotine/gtkgui/ui/settings/uploads.ui:170 msgid "Use upload speed limit (KiB/s):" msgstr "使用上传速度限制 (KiB/s):" #: pynicotine/gtkgui/ui/popovers/uploadspeeds.ui:75 #: pynicotine/gtkgui/ui/settings/uploads.ui:193 msgid "Use alternative upload speed limit (KiB/s):" msgstr "使用备用上传速度限制 (KiB/s):" #: pynicotine/gtkgui/ui/privatechat.ui:76 msgid "Private Chat Command Help" msgstr "私聊命令帮助" #: pynicotine/gtkgui/ui/search.ui:7 msgid "Include text…" msgstr "包含文本…" #: pynicotine/gtkgui/ui/search.ui:9 pynicotine/gtkgui/ui/settings/search.ui:186 msgid "" "Filter in results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "过滤文件路径包含指定文本的结果。可以指定多个短语和单词,例如确切:短语|音乐|" "术语|精确的短语" #: pynicotine/gtkgui/ui/search.ui:18 msgid "Exclude text…" msgstr "排除文本…" #: pynicotine/gtkgui/ui/search.ui:20 #: pynicotine/gtkgui/ui/settings/search.ui:211 msgid "" "Filter out results whose file paths contain the specified text. Multiple " "phrases and words can be specified, e.g. exact phrase|music|term|exact " "phrase two" msgstr "" "过滤文件路径包含指定文本的结果。可以指定多个短语和单词,例如确切:短语|音乐|" "术语|精确的短语" #: pynicotine/gtkgui/ui/search.ui:29 msgid "File type…" msgstr "文件类型…" #: pynicotine/gtkgui/ui/search.ui:31 #: pynicotine/gtkgui/ui/settings/search.ui:238 msgid "File type, e.g. flac wav or !mp3 !m4a" msgstr "文件类型,例如:flac wav 或 !mp3 !m4a" #: pynicotine/gtkgui/ui/search.ui:40 msgid "File size…" msgstr "文件大小…" #: pynicotine/gtkgui/ui/search.ui:42 #: pynicotine/gtkgui/ui/settings/search.ui:265 msgid "File size, e.g. >10.5m <1g" msgstr "文件大小,例如 >10.5m <1g" #: pynicotine/gtkgui/ui/search.ui:51 msgid "Bitrate…" msgstr "比特率…" #: pynicotine/gtkgui/ui/search.ui:53 #: pynicotine/gtkgui/ui/settings/search.ui:292 msgid "Bitrate, e.g. 256 <1412" msgstr "比特率,例如256 <1412" #: pynicotine/gtkgui/ui/search.ui:62 msgid "Duration…" msgstr "期间…" #: pynicotine/gtkgui/ui/search.ui:64 #: pynicotine/gtkgui/ui/settings/search.ui:319 msgid "Duration, e.g. >6:00 <12:00 !6:54" msgstr "持续时间,例如 >6:00 <12:00 !6:54" #: pynicotine/gtkgui/ui/search.ui:73 msgid "Country code…" msgstr "国家/地区代码…" #: pynicotine/gtkgui/ui/search.ui:75 #: pynicotine/gtkgui/ui/settings/search.ui:346 msgid "Country code, e.g. US ES or !DE !GB" msgstr "国家/地区代码,例如 US ES 或 !DE !GB" #: pynicotine/gtkgui/ui/settings/ban.ui:28 msgid "" "Prohibit users from accessing your shared files, based on username, IP " "address or country." msgstr "根据用户名、IP 地址或国家/地区,禁止用户访问您的共享文件。" #: pynicotine/gtkgui/ui/settings/ban.ui:43 msgid "Country codes to block (comma separated):" msgstr "要阻止的国家/地区代码(逗号分隔):" #: pynicotine/gtkgui/ui/settings/ban.ui:50 msgid "Codes must be in ISO 3166-2 format." msgstr "编码必须是ISO 3166-2格式。" #: pynicotine/gtkgui/ui/settings/ban.ui:65 msgid "Use custom geo block message:" msgstr "使用自定义地理块消息:" #: pynicotine/gtkgui/ui/settings/ban.ui:86 msgid "Use custom ban message:" msgstr "使用自定义禁止消息:" #: pynicotine/gtkgui/ui/settings/ban.ui:244 #: pynicotine/gtkgui/ui/settings/ignore.ui:179 msgid "IP Addresses" msgstr "IP地址" #: pynicotine/gtkgui/ui/settings/chats.ui:50 msgid "Enable spell checker" msgstr "启用拼写检查" #: pynicotine/gtkgui/ui/settings/chats.ui:74 msgid "Restore previously open private chats on startup" msgstr "在启动时恢复之前打开的私人聊天" #: pynicotine/gtkgui/ui/settings/chats.ui:98 msgid "Enable CTCP-like private message responses (client version)" msgstr "启用类似 CTCP 的私人消息响应(客户端版本)" #: pynicotine/gtkgui/ui/settings/chats.ui:122 msgid "Number of recent private chat messages to show:" msgstr "显示的最近私人聊天消息的数量:" #: pynicotine/gtkgui/ui/settings/chats.ui:147 msgid "Number of recent chat room messages to show:" msgstr "显示的最近聊天室消息的数量:" #: pynicotine/gtkgui/ui/settings/chats.ui:176 msgid "Chat Completion" msgstr "聊天结束" #: pynicotine/gtkgui/ui/settings/chats.ui:194 msgid "Enable tab-key completion" msgstr "启用 tab 键补全" #: pynicotine/gtkgui/ui/settings/chats.ui:223 msgid "Enable completion drop-down list" msgstr "启用完成下拉列表" #: pynicotine/gtkgui/ui/settings/chats.ui:253 msgid "Minimum characters required to display drop-down:" msgstr "显示下拉列表所需的最少字符数:" #: pynicotine/gtkgui/ui/settings/chats.ui:293 msgid "Allowed chat completions:" msgstr "允许的聊天完成:" #: pynicotine/gtkgui/ui/settings/chats.ui:320 msgid "Buddy names" msgstr "好友名称" #: pynicotine/gtkgui/ui/settings/chats.ui:333 msgid "Chat room usernames" msgstr "聊天室用户名" #: pynicotine/gtkgui/ui/settings/chats.ui:346 msgid "Room names" msgstr "聊天室名称" #: pynicotine/gtkgui/ui/settings/chats.ui:359 msgid "Commands" msgstr "命令" #: pynicotine/gtkgui/ui/settings/chats.ui:386 msgid "Timestamps" msgstr "时间戳" #: pynicotine/gtkgui/ui/settings/chats.ui:403 msgid "Private chat format:" msgstr "私聊形式:" #: pynicotine/gtkgui/ui/settings/chats.ui:414 #: pynicotine/gtkgui/ui/settings/chats.ui:441 #: pynicotine/gtkgui/ui/settings/chats.ui:535 #: pynicotine/gtkgui/ui/settings/chats.ui:562 #: pynicotine/gtkgui/ui/settings/downloads.ui:15 #: pynicotine/gtkgui/ui/settings/downloads.ui:27 #: pynicotine/gtkgui/ui/settings/downloads.ui:39 #: pynicotine/gtkgui/ui/settings/log.ui:5 #: pynicotine/gtkgui/ui/settings/log.ui:17 #: pynicotine/gtkgui/ui/settings/log.ui:29 #: pynicotine/gtkgui/ui/settings/log.ui:41 #: pynicotine/gtkgui/ui/settings/log.ui:189 #: pynicotine/gtkgui/ui/settings/network.ui:332 #: pynicotine/gtkgui/ui/settings/userinterface.ui:466 #: pynicotine/gtkgui/ui/settings/userinterface.ui:505 #: pynicotine/gtkgui/ui/settings/userinterface.ui:544 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1006 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1045 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1146 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1185 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1224 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1263 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1302 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1341 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1400 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1439 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1478 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1537 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1576 msgid "Default" msgstr "默认" #: pynicotine/gtkgui/ui/settings/chats.ui:430 msgid "Chat room format:" msgstr "聊天室格式:" #: pynicotine/gtkgui/ui/settings/chats.ui:467 msgid "Text-to-Speech" msgstr "文字转语音" #: pynicotine/gtkgui/ui/settings/chats.ui:484 msgid "Enable Text-to-Speech" msgstr "启用文字转语音" #: pynicotine/gtkgui/ui/settings/chats.ui:508 msgid "Text-to-Speech command:" msgstr "文字转语音命令:" #: pynicotine/gtkgui/ui/settings/chats.ui:524 msgid "Private chat message:" msgstr "私聊消息:" #: pynicotine/gtkgui/ui/settings/chats.ui:551 msgid "Chat room message:" msgstr "聊天室留言:" #: pynicotine/gtkgui/ui/settings/chats.ui:600 msgid "Censor" msgstr "审查" #: pynicotine/gtkgui/ui/settings/chats.ui:618 msgid "Enable censoring of text patterns" msgstr "启用审查文本模式" #: pynicotine/gtkgui/ui/settings/chats.ui:783 msgid "Auto-Replace" msgstr "自动替换" #: pynicotine/gtkgui/ui/settings/chats.ui:801 msgid "Enable automatic replacement of words" msgstr "启用自动替换单词" #: pynicotine/gtkgui/ui/settings/downloads.ui:80 msgid "Autoclear finished/filtered downloads from transfer list" msgstr "自动清除传输列表中已完成/已过滤的下载" #: pynicotine/gtkgui/ui/settings/downloads.ui:104 msgid "Store completed downloads in username subfolders" msgstr "将完成的下载存储在用户名子文件夹中" #: pynicotine/gtkgui/ui/settings/downloads.ui:127 msgid "Double-click action for downloads:" msgstr "双击下载操作:" #: pynicotine/gtkgui/ui/settings/downloads.ui:143 msgid "Allow users to send you any files:" msgstr "允许用户向您发送任意文件:" #: pynicotine/gtkgui/ui/settings/downloads.ui:239 #: pynicotine/gtkgui/ui/userbrowse.ui:45 msgid "Folders" msgstr "文件夹" #: pynicotine/gtkgui/ui/settings/downloads.ui:256 msgid "Finished downloads:" msgstr "已完成的下载:" #: pynicotine/gtkgui/ui/settings/downloads.ui:272 msgid "Incomplete downloads:" msgstr "未完成的下载:" #: pynicotine/gtkgui/ui/settings/downloads.ui:288 msgid "Received files:" msgstr "收到的文件:" #: pynicotine/gtkgui/ui/settings/downloads.ui:307 msgid "Events" msgstr "事件" #: pynicotine/gtkgui/ui/settings/downloads.ui:324 msgid "Run command after file download finishes ($ for file path):" msgstr "文件下载完成后运行命令($ 为文件路径):" #: pynicotine/gtkgui/ui/settings/downloads.ui:348 msgid "Run command after folder download finishes ($ for folder path):" msgstr "文件夹下载完成后运行命令($ 为文件夹路径):" #: pynicotine/gtkgui/ui/settings/downloads.ui:375 msgid "Download Filters" msgstr "下载过滤器" #: pynicotine/gtkgui/ui/settings/downloads.ui:393 msgid "Enable download filters" msgstr "启用下载过滤器" #: pynicotine/gtkgui/ui/settings/downloads.ui:439 msgid "Add" msgstr "添加" #: pynicotine/gtkgui/ui/settings/downloads.ui:537 #: pynicotine/gtkgui/ui/settings/downloads.ui:553 msgid "Load Defaults" msgstr "载入默认值" #: pynicotine/gtkgui/ui/settings/downloads.ui:596 msgid "Verify Filters" msgstr "验证过滤器" #: pynicotine/gtkgui/ui/settings/downloads.ui:608 msgid "Unverified" msgstr "未认证" #: pynicotine/gtkgui/ui/settings/ignore.ui:28 msgid "" "Ignore chat messages and search results from users, based on username or IP " "address." msgstr "根据用户名或IP地址,忽略来自用户的聊天消息和搜索结果。" #: pynicotine/gtkgui/ui/settings/log.ui:82 msgid "Log chatrooms by default" msgstr "默认记录聊天室" #: pynicotine/gtkgui/ui/settings/log.ui:106 msgid "Log private chat by default" msgstr "默认记录私聊" #: pynicotine/gtkgui/ui/settings/log.ui:130 msgid "Log transfers to file" msgstr "日志传输到文件" #: pynicotine/gtkgui/ui/settings/log.ui:154 msgid "Log debug messages to file" msgstr "调试信息记录到文件" #: pynicotine/gtkgui/ui/settings/log.ui:178 msgid "Log timestamp format:" msgstr "日志时间戳格式:" #: pynicotine/gtkgui/ui/settings/log.ui:216 msgid "Folder Locations" msgstr "文件夹位置" #: pynicotine/gtkgui/ui/settings/log.ui:233 msgid "Chatroom logs folder:" msgstr "聊天室日志文件夹:" #: pynicotine/gtkgui/ui/settings/log.ui:249 msgid "Private chat logs folder:" msgstr "私人聊天记录文件夹:" #: pynicotine/gtkgui/ui/settings/log.ui:265 msgid "Transfer logs folder:" msgstr "传输日志文件夹:" #: pynicotine/gtkgui/ui/settings/log.ui:281 msgid "Debug logs folder:" msgstr "调试日志文件夹:" #: pynicotine/gtkgui/ui/settings/network.ui:39 msgid "" "Log in to an existing Soulseek account or create a new one. Usernames are " "case-sensitive and unique." msgstr "登录现有的 Soulseek 帐户或创建一个新帐户。用户名区分大小写且唯一。" #: pynicotine/gtkgui/ui/settings/network.ui:115 msgid "Public IP address:" msgstr "公共IP地址:" #: pynicotine/gtkgui/ui/settings/network.ui:156 msgid "Listening port (requires a restart):" msgstr "监听端口(需要重新启动):" #: pynicotine/gtkgui/ui/settings/network.ui:184 msgid "Away Status" msgstr "离开状态" #: pynicotine/gtkgui/ui/settings/network.ui:201 msgid "Minutes of inactivity before going away (0 to disable):" msgstr "离开前的非活动分钟数(0 表示禁用):" #: pynicotine/gtkgui/ui/settings/network.ui:226 msgid "Auto-reply message when away:" msgstr "离开时自动回复消息:" #: pynicotine/gtkgui/ui/settings/network.ui:272 msgid "Automatically forward listening port (UPnP/NAT-PMP)" msgstr "自动转发监听端口(UPnP/NAT-PMP)" #: pynicotine/gtkgui/ui/settings/network.ui:297 msgid "Auto-connect to server on startup" msgstr "启动时自动连接服务器" #: pynicotine/gtkgui/ui/settings/network.ui:321 msgid "Soulseek server:" msgstr "Soulseek服务器:" #: pynicotine/gtkgui/ui/settings/network.ui:345 msgid "" "Binds connections to a specific network interface, useful for e.g. ensuring " "a VPN is used at all times. Leave empty to use any available interface. Only " "change this value if you know what you are doing." msgstr "" "连接绑定到特定的网络接口,例如确保始终使用 VPN。保留为空以使用任何可用接口。" "仅当您知道自己在做什么时才更改此值。" #: pynicotine/gtkgui/ui/settings/network.ui:349 msgid "Network interface (requires a restart):" msgstr "网络接口(需要重新启动):" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:28 msgid "" "Now Playing allows you to display what your media player is playing by using " "the /now command in chat." msgstr "允许您在聊天中使用 /now 命令显示媒体播放器正在播放的内容。" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:61 msgid "Other" msgstr "其他" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:99 msgid "Now Playing Format" msgstr "正在播放格式" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:124 msgid "Now Playing message format:" msgstr "正在播放消息格式:" #: pynicotine/gtkgui/ui/settings/nowplaying.ui:155 msgid "Test Configuration" msgstr "测试配置" #: pynicotine/gtkgui/ui/settings/plugin.ui:48 msgid "Enable plugins" msgstr "启用插件" #: pynicotine/gtkgui/ui/settings/plugin.ui:95 msgid "Add Plugins" msgstr "添加插件" #: pynicotine/gtkgui/ui/settings/plugin.ui:111 msgid "_Add Plugins" msgstr "_添加插件" #: pynicotine/gtkgui/ui/settings/plugin.ui:132 msgid "Settings" msgstr "设置" #: pynicotine/gtkgui/ui/settings/plugin.ui:148 msgid "_Settings" msgstr "_设置" #: pynicotine/gtkgui/ui/settings/plugin.ui:216 msgid "Version:" msgstr "版本:" #: pynicotine/gtkgui/ui/settings/plugin.ui:241 msgid "Created by:" msgstr "创作者:" #: pynicotine/gtkgui/ui/settings/search.ui:51 msgid "Enable search history" msgstr "启用搜索历史" #: pynicotine/gtkgui/ui/settings/search.ui:70 msgid "" "Privately shared files that have been made visible to everyone will be " "prefixed with '[PRIVATE]', and cannot be downloaded until the uploader gives " "explicit permission. Ask them kindly." msgstr "" "公开显示的私密文件前会有 “[PRIVATE]”前缀,此类文件没有分享者授权不能下载。您" "可以向分享者申请权限。" #: pynicotine/gtkgui/ui/settings/search.ui:76 msgid "Show privately shared files in search results" msgstr "在搜索结果中显示私人共享文件" #: pynicotine/gtkgui/ui/settings/search.ui:106 msgid "Limit number of results per search:" msgstr "限制每次搜索的结果数量:" #: pynicotine/gtkgui/ui/settings/search.ui:152 msgid "Enable search result filters by default" msgstr "默认启用搜索结果筛选器" #: pynicotine/gtkgui/ui/settings/search.ui:176 msgid "Include:" msgstr "包含:" #: pynicotine/gtkgui/ui/settings/search.ui:201 msgid "Exclude:" msgstr "排除:" #: pynicotine/gtkgui/ui/settings/search.ui:226 msgid "File Type:" msgstr "文件类型:" #: pynicotine/gtkgui/ui/settings/search.ui:253 msgid "Size:" msgstr "大小:" #: pynicotine/gtkgui/ui/settings/search.ui:280 msgid "Bitrate:" msgstr "比特率:" #: pynicotine/gtkgui/ui/settings/search.ui:307 msgid "Duration:" msgstr "持续时间:" #: pynicotine/gtkgui/ui/settings/search.ui:334 msgid "Country Code:" msgstr "国家/地区代码:" #: pynicotine/gtkgui/ui/settings/search.ui:363 msgid "Only show results from users with an available upload slot." msgstr "仅显示具有可用上传槽位的用户的结果。" #: pynicotine/gtkgui/ui/settings/search.ui:385 msgid "Result Filter Help" msgstr "结果过滤器帮助" #: pynicotine/gtkgui/ui/settings/search.ui:407 msgid "Network Searches" msgstr "网络搜索" #: pynicotine/gtkgui/ui/settings/search.ui:429 msgid "Respond to search requests from other users" msgstr "响应其他用户的搜索请求" #: pynicotine/gtkgui/ui/settings/search.ui:463 msgid "Searches shorter than this number of characters will be ignored:" msgstr "少于此字符数的搜索将被忽略:" #: pynicotine/gtkgui/ui/settings/search.ui:488 msgid "Maximum search results to send per search request:" msgstr "每个搜索请求发送的最大搜索结果:" #: pynicotine/gtkgui/ui/settings/search.ui:553 msgid "Clear Search History" msgstr "清除搜索历史" #: pynicotine/gtkgui/ui/settings/search.ui:601 msgid "Clear Filter History" msgstr "清除过滤历史" #: pynicotine/gtkgui/ui/settings/shares.ui:33 msgid "" "Automatically rescans the contents of your shared folders on startup. If " "disabled, your shares are only updated when you manually initiate a rescan." msgstr "" "启动时自动重新扫描共享文件夹的内容。如果禁用,您的共享仅在手动启动重新扫描时" "更新。" #: pynicotine/gtkgui/ui/settings/shares.ui:39 msgid "Rescan shares on startup" msgstr "在启动时重新扫描共享" #: pynicotine/gtkgui/ui/settings/shares.ui:68 msgid "Visible to everyone:" msgstr "公开可见:" #: pynicotine/gtkgui/ui/settings/shares.ui:82 msgid "Buddy shares" msgstr "好友分享" #: pynicotine/gtkgui/ui/settings/shares.ui:90 msgid "Trusted shares" msgstr "可信分享" #: pynicotine/gtkgui/ui/settings/uploads.ui:65 msgid "Autoclear finished/cancelled uploads from transfer list" msgstr "自动清除传输列表中完成/取消的上传" #: pynicotine/gtkgui/ui/settings/uploads.ui:88 msgid "Double-click action for uploads:" msgstr "双击上传操作:" #: pynicotine/gtkgui/ui/settings/uploads.ui:122 msgid "Limit upload speed:" msgstr "限制上传速度:" #: pynicotine/gtkgui/ui/settings/uploads.ui:137 msgid "Per transfer" msgstr "每次传输" #: pynicotine/gtkgui/ui/settings/uploads.ui:145 msgid "Total transfers" msgstr "传输总量" #: pynicotine/gtkgui/ui/settings/uploads.ui:217 #: pynicotine/gtkgui/ui/userinfo.ui:182 msgid "Upload Slots" msgstr "上传槽位" #: pynicotine/gtkgui/ui/settings/uploads.ui:231 msgid "" "Round Robin: Files will be uploaded in cyclical fashion to the users waiting " "in queue.\n" "First In, First Out: Files will be uploaded in the order they were queued." msgstr "" "循环调度:文件将以循环方式上传给排队等候的用户。\n" "先进先出:文件将按照排队的顺序上传。" #: pynicotine/gtkgui/ui/settings/uploads.ui:236 msgid "Upload queue type:" msgstr "上传队列类型:" #: pynicotine/gtkgui/ui/settings/uploads.ui:253 msgid "Allocate upload slots until total speed reaches (KiB/s):" msgstr "总传输速度达到(KiB/s)时分配上传槽位:" #: pynicotine/gtkgui/ui/settings/uploads.ui:276 msgid "Fixed number of upload slots:" msgstr "将上传槽位限制为:" #: pynicotine/gtkgui/ui/settings/uploads.ui:294 msgid "Prioritize all buddies" msgstr "优先所有好友" #: pynicotine/gtkgui/ui/settings/uploads.ui:308 msgid "Queue Limits" msgstr "队列限制" #: pynicotine/gtkgui/ui/settings/uploads.ui:325 msgid "Maximum number of queued files per user:" msgstr "单个用户的最大队列文件数量:" #: pynicotine/gtkgui/ui/settings/uploads.ui:350 msgid "Maximum total size of queued files per user (MiB):" msgstr "单个用户的最大队列文件大小(MiB):" #: pynicotine/gtkgui/ui/settings/uploads.ui:371 msgid "Limits do not apply to buddies" msgstr "队列限制不适用于好友" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:24 msgid "" "Instances of $ are replaced by the URL. Default system applications are used " "in cases where a protocol has not been configured." msgstr "$ 的实例被 URL 替换。在未配置协议的情况下使用默认系统应用程序。" #: pynicotine/gtkgui/ui/settings/urlhandlers.ui:38 msgid "File manager command:" msgstr "文件管理器命令:" #: pynicotine/gtkgui/ui/settings/userinfo.ui:5 #: pynicotine/gtkgui/ui/settings/userinfo.ui:21 msgid "Reset Picture" msgstr "重置图片" #: pynicotine/gtkgui/ui/settings/userinfo.ui:40 msgid "Self Description" msgstr "自我描述" #: pynicotine/gtkgui/ui/settings/userinfo.ui:53 msgid "" "Add things you want everyone to see, such as a short description, helpful " "tips, or guidelines for downloading your shares." msgstr "增加所有人可见的文本,如简介、提示、下载您分享文件时需要遵守的准则。" #: pynicotine/gtkgui/ui/settings/userinfo.ui:89 msgid "Picture:" msgstr "图片:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:5 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1633 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1678 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1723 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1768 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1813 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1858 #: pynicotine/gtkgui/ui/settings/userinterface.ui:1903 msgid "Clear" msgstr "清除" #: pynicotine/gtkgui/ui/settings/userinterface.ui:46 msgid "Prefer dark mode" msgstr "倾向深色模式" #: pynicotine/gtkgui/ui/settings/userinterface.ui:70 msgid "Use header bar" msgstr "使用顶栏" #: pynicotine/gtkgui/ui/settings/userinterface.ui:98 msgid "Display tray icon" msgstr "显示托盘图标" #: pynicotine/gtkgui/ui/settings/userinterface.ui:128 msgid "Minimize to tray on startup" msgstr "启动时最小化到托盘" #: pynicotine/gtkgui/ui/settings/userinterface.ui:156 msgid "Language (requires a restart):" msgstr "语言(需要重新启动):" #: pynicotine/gtkgui/ui/settings/userinterface.ui:172 msgid "When closing window:" msgstr "关闭窗口时:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:191 msgid "Notifications" msgstr "通知" #: pynicotine/gtkgui/ui/settings/userinterface.ui:209 msgid "Enable sound for notifications" msgstr "启用通知声音" #: pynicotine/gtkgui/ui/settings/userinterface.ui:233 msgid "Show notification for private chats and mentions in the window title" msgstr "在窗口标题中显示私人聊天和提及的通知" #: pynicotine/gtkgui/ui/settings/userinterface.ui:265 msgid "Show notifications for:" msgstr "显示以下通知:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:292 msgid "Finished file downloads" msgstr "完成文件下载" #: pynicotine/gtkgui/ui/settings/userinterface.ui:304 msgid "Finished folder downloads" msgstr "已完成的文件夹下载" #: pynicotine/gtkgui/ui/settings/userinterface.ui:316 msgid "Private messages" msgstr "私人信息" #: pynicotine/gtkgui/ui/settings/userinterface.ui:328 msgid "Chat room messages" msgstr "聊天室信息" #: pynicotine/gtkgui/ui/settings/userinterface.ui:340 msgid "Chat room mentions" msgstr "聊天室提及" #: pynicotine/gtkgui/ui/settings/userinterface.ui:352 msgid "Wishlist results found" msgstr "心愿单已发现" #: pynicotine/gtkgui/ui/settings/userinterface.ui:395 msgid "Restore the previously active main tab at startup" msgstr "在启动时恢复先前活动的主选项卡" #: pynicotine/gtkgui/ui/settings/userinterface.ui:419 msgid "Close-buttons on secondary tabs" msgstr "辅助选项卡上的关闭按钮" #: pynicotine/gtkgui/ui/settings/userinterface.ui:443 msgid "Regular tab label color:" msgstr "常规选项卡标签颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:482 msgid "Changed tab label color:" msgstr "更改选项卡标签颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:521 msgid "Highlighted tab label color:" msgstr "高亮选项卡标签颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:561 msgid "Buddy list position:" msgstr "好友队列位置:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:587 msgid "Visible main tabs:" msgstr "可见的主选项卡:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:742 msgid "Tab bar positions:" msgstr "标签栏位置:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:777 msgid "Main tabs" msgstr "主选项卡" #: pynicotine/gtkgui/ui/settings/userinterface.ui:935 msgid "Show reverse file paths (requires a restart)" msgstr "显示反向文件路径(需要重新启动)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:959 msgid "Show exact file sizes (requires a restart)" msgstr "显示文件具体大小(需要重启)" #: pynicotine/gtkgui/ui/settings/userinterface.ui:983 msgid "List text color:" msgstr "列表文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1022 msgid "Queued search result text color:" msgstr "排队搜索结果文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1082 msgid "Enable colored usernames" msgstr "使用彩色用户名" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1106 msgid "Chat username appearance:" msgstr "聊天用户名外观:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1123 msgid "Remote text color:" msgstr "远程文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1162 msgid "Local text color:" msgstr "本地文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1201 msgid "Command output text color:" msgstr "命令输出文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1240 msgid "/me action text color:" msgstr "/me 动作文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1279 msgid "Highlighted text color:" msgstr "高亮文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1318 msgid "URL link text color:" msgstr "URL 链接文本颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1360 msgid "User Statuses" msgstr "用户状态" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1377 msgid "Online color:" msgstr "在线颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1416 msgid "Away color:" msgstr "离开颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1455 msgid "Offline color:" msgstr "离线颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1497 msgid "Text Entries" msgstr "文本条目" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1514 msgid "Text entry background color:" msgstr "文本输入背景颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1553 msgid "Text entry text color:" msgstr "文字输入文字颜色:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1595 msgid "Fonts" msgstr "字体" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1612 msgid "Global font:" msgstr "全局字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1657 msgid "List font:" msgstr "列表字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1702 msgid "Text view font:" msgstr "文本视图字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1747 msgid "Chat font:" msgstr "聊天字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1792 msgid "Transfers font:" msgstr "传输字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1837 msgid "Search font:" msgstr "搜索字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1882 msgid "Browse font:" msgstr "浏览字体:" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1931 msgid "Icons" msgstr "图标" #: pynicotine/gtkgui/ui/settings/userinterface.ui:1948 msgid "Icon theme folder:" msgstr "图标主题文件夹:" #: pynicotine/gtkgui/ui/uploads.ui:86 msgid "Abort User(s)" msgstr "中止用户" #: pynicotine/gtkgui/ui/uploads.ui:116 msgid "Ban User(s)" msgstr "禁止用户" #: pynicotine/gtkgui/ui/uploads.ui:138 msgid "Clear All Finished/Cancelled Uploads" msgstr "清除所有已完成/已取消的上传" #: pynicotine/gtkgui/ui/uploads.ui:169 pynicotine/gtkgui/ui/uploads.ui:184 msgid "Message All" msgstr "全部留言" #: pynicotine/gtkgui/ui/uploads.ui:199 msgid "Clear Specific Uploads" msgstr "清除特定上传" #: pynicotine/gtkgui/ui/userbrowse.ui:161 msgid "Save Shares List to Disk" msgstr "将共享列表保存到磁盘" #: pynicotine/gtkgui/ui/userbrowse.ui:178 msgid "Refresh Files" msgstr "刷新文件" #: pynicotine/gtkgui/ui/userinfo.ui:78 msgid "Edit Profile" msgstr "编辑资料" #: pynicotine/gtkgui/ui/userinfo.ui:128 msgid "Shared Files" msgstr "共享文件" #: pynicotine/gtkgui/ui/userinfo.ui:155 msgid "Shared Folders" msgstr "共享文件夹" #: pynicotine/gtkgui/ui/userinfo.ui:209 msgid "Queued Uploads" msgstr "排队上传" #: pynicotine/gtkgui/ui/userinfo.ui:236 msgid "Free Upload Slots" msgstr "免费上传槽位" #: pynicotine/gtkgui/ui/userinfo.ui:263 msgid "Upload Speed" msgstr "上传速度" #: pynicotine/gtkgui/ui/userinfo.ui:362 msgid "Edit Interests" msgstr "编辑兴趣" #: pynicotine/gtkgui/ui/userinfo.ui:672 msgid "_Gift Privileges…" msgstr "_赠予特权…" #: pynicotine/gtkgui/ui/userinfo.ui:711 msgid "_Refresh Profile" msgstr "_刷新资料" #: pynicotine/plugins/core_commands/PLUGININFO:3 msgid "Nicotine+ Commands" msgstr "Nicotine+ 指令" #~ msgid "_Clear" #~ msgstr "_清除" #, python-format #~ msgid "Can't save %(filename)s: %(error)s" #~ msgstr "无法保存 %(filename)s:%(error)s" #~ msgid "Nicotine+" #~ msgstr "Nicotine+" #~ msgid "Trusted Buddies" #~ msgstr "可信的朋友" #~ msgid "Quit program" #~ msgstr "退出程序" #~ msgid "Username:" #~ msgstr "用户名:" #~ msgid "Re_commendations for Item" #~ msgstr "条目推_荐" #~ msgid "_Remove Item" #~ msgstr "_移除条目" #~ msgid "_Remove" #~ msgstr "_移除" #~ msgid "Send M_essage" #~ msgstr "发送信_息" #~ msgid "Send Message" #~ msgstr "发送信息" #~ msgid "View User Profile" #~ msgstr "查看用户资料" #~ msgid "Start Messaging" #~ msgstr "开始发送消息" #~ msgid "Enter the name of the user whom you want to send a message:" #~ msgstr "输入你想发送消息的用户名:" #~ msgid "_Message" #~ msgstr "_留言" #~ msgid "Enter the name of the user whose profile you want to see:" #~ msgstr "输入要查看资料的用户名:" #~ msgid "_View Profile" #~ msgstr "_查看资料" #~ msgid "Enter the name of the user whose shares you want to see:" #~ msgstr "输入要查共享的用户名:" #~ msgid "_Browse" #~ msgstr "_浏览文件" #~ msgid "Password" #~ msgstr "密码" #~ msgid "Download File" #~ msgstr "下载文件" #~ msgid "Refresh Similar Users" #~ msgstr "刷新相似用户" #~ msgid "Enter the username of the person whose files you want to see" #~ msgstr "输入要查看文件的人的用户名" #~ msgid "Enter the username of the person whose information you want to see" #~ msgstr "输入您要查看信息的用户名" #~ msgid "Enter the username of the person you want to send a message to" #~ msgstr "输入你想发送消息的用户名称" #~ msgid "Enter the username of the person you want to add to your buddy list" #~ msgstr "输入您要添加到好友列表的用户名称" #~ msgid "" #~ "Enter the name of a room you want to join. If the room doesn't exist, it " #~ "will be created." #~ msgstr "输入您要加入的聊天室的名称。如果房间不存在则自动创建。" #~ msgid "Show Log History Pane" #~ msgstr "显示日志历史窗格" #~ msgid "Save _Picture" #~ msgstr "保存图片" #, python-format #~ msgid "" #~ "Filtered out incorrect search result %(filepath)s from user %(user)s for " #~ "search query \"%(query)s\"" #~ msgstr "" #~ "筛选出了以“%(query)s”为关键字从用户 %(user)s 处得到的错误搜索结果 " #~ "%(filepath)s" #~ msgid "" #~ "Certain clients don't send search results if special characters are " #~ "included." #~ msgstr "如果包含特殊字符,某些客户端不会发送搜索结果。" #~ msgid "Remove special characters from search terms" #~ msgstr "从搜索文字中删除特殊字符" #, python-format #~ msgid "Trouble executing '%s'" #~ msgstr "执行“%s”时出现问题" #, python-format #~ msgid "Trouble executing on folder: %s" #~ msgstr "在文件夹上执行时出现问题:%s" #~ msgid "Disallowed extension" #~ msgstr "禁止的扩展" #~ msgid "Too many files" #~ msgstr "太多文件" #~ msgid "Too many megabytes" #~ msgstr "过大" #~ msgid "Server does not permit performing wishlist searches at this time" #~ msgstr "服务器当前不允许执行心愿单搜索" #~ msgid "" #~ "File transfer speeds depend on users you are downloading from. Certain " #~ "users will be faster, while others will be slow." #~ msgstr "" #~ "文件传输速度取决于分享文件的用户。一些用户的连接速度会更快,另一些用户会较" #~ "慢。" #~ msgid "Started Downloads" #~ msgstr "开始的下载" #~ msgid "Started Uploads" #~ msgstr "开始的上传" #~ msgid "Replace censored letters with:" #~ msgstr "将被删减的字母替换为:" #~ msgid "Censored Patterns" #~ msgstr "审查模式" #~ msgid "Replacements" #~ msgstr "替换" #~ msgid "" #~ "If a user on the Soulseek network searches for a file that exists in your " #~ "shares, search results will be sent to the user." #~ msgstr "" #~ "如果 Soulseek 网络上的用户搜索您的共享中存在的文件,搜索结果将发送给用户。" #~ msgid "Send to Player" #~ msgstr "发送给播放器" #~ msgid "Send to _Player" #~ msgstr "发送给_播放器" #~ msgid "_Open in File Manager" #~ msgstr "_在文件管理器中打开" #~ msgid "Media player command:" #~ msgstr "媒体播放器命令:" #, python-format #~ msgid "" #~ "Unable to save download to username subfolder, falling back to default " #~ "download folder. Error: %s" #~ msgstr "无法将下载保存到用户名子文件夹,回退到默认下载文件夹。错误:%s" #~ msgid "Buddy-only" #~ msgstr "仅限好友" #~ msgid "Share with buddies only" #~ msgstr "仅与好友共享" #~ msgid "_Quit…" #~ msgstr "_退出…" #~ msgid "_Configure Shares" #~ msgstr "_配置共享库" #~ msgid "Remote file error" #~ msgstr "远程文件错误" #, python-format #~ msgid "Cannot find %(option1)s or %(option2)s, please install either one." #~ msgstr "找不到 %(option1)s 或 %(option2)s,请安装其中一个。" #, fuzzy, python-format #~ msgid "%(num)s folders found before rescan" #~ msgstr "%(num)s 在重新扫描、重建之前找到的文件夹…" #, python-format #~ msgid "Failed to process the following databases: %(names)s" #~ msgstr "无法处理以下数据库:%(names)s" #, python-format #~ msgid "Failed to send number of shared files to the server: %s" #~ msgstr "向服务器发送共享文件的数量失败:%s" #~ msgid "Quit / Run in Background" #~ msgstr "退出/在后台运行" #, fuzzy #~ msgid "Listening port:" #~ msgstr "监听端口范围:" #~ msgid "Network interface:" #~ msgstr "网络界面:" #~ msgid "Limit buddy-only shares to trusted buddies" #~ msgstr "好友共享限制为受信任的好友" #~ msgid "Shared" #~ msgstr "共享" #~ msgid "Search Files and Folders" #~ msgstr "搜索文件和文件夹" #~ msgid "Out of Date" #~ msgstr "已过时" #, python-format #~ msgid "Version %(version)s is available, released on %(date)s" #~ msgstr "版本 %(version)s 可用,发布于 %(date)s" #, python-format #~ msgid "You are using a development version of %s" #~ msgstr "您似乎正在使用 Nicotine+ 的开发版本 %s" #, python-format #~ msgid "You are using the latest version of %s" #~ msgstr "您正在使用最新版本 %s" #, fuzzy #~ msgid "Latest Version Unknown" #~ msgstr "检查_最新版本" #~ msgid "Prefer Dark _Mode" #~ msgstr "喜欢黑暗模式" #~ msgid "Show _Log History Pane" #~ msgstr "显示_日志历史记录窗格" #~ msgid "Buddy List in Separate Tab" #~ msgstr "单独选项卡中的好友列表" #~ msgid "Buddy List Always Visible" #~ msgstr "好友列表始终可见" #~ msgid "_View" #~ msgstr "_查看" #~ msgid "_Open Log Folder" #~ msgstr "_打开日志文件夹" #~ msgid "_Browse Folder(s)" #~ msgstr "_浏览文件夹" #~ msgid "Kibibytes (2^10 bytes) per second." #~ msgstr "每秒千字节(2^10 字节)。" #~ msgid "Sent to users as the reason for being geo blocked." #~ msgstr "作为被地理封锁的原因发送给用户。" #~ msgid "Sent to users as the reason for being banned." #~ msgstr "发送给用户被禁止的原因。" #~ msgid "" #~ "Once you interact with the application being away, status will be set to " #~ "online." #~ msgstr "与离开的应用程序交互后,状态将设置为联机。" #~ msgid "Each user may queue a maximum of either:" #~ msgstr "每个用户最多可以排队:" #~ msgid "Mebibytes (2^20 bytes)." #~ msgstr "兆字节(2^20 字节)。" #~ msgid "MiB" #~ msgstr "兆字节" #~ msgid "files" #~ msgstr "文件" #~ msgid "Queue Behavior" #~ msgstr "队列行为" #~ msgid "" #~ "If disabled, slots will automatically be determined by available " #~ "bandwidth limitations." #~ msgstr "如果禁用,槽位将由可用带宽限制自动调整。" #~ msgid "Note that the operating system's theme may take precedence." #~ msgstr "请注意,操作系统的主题可能优先。" #~ msgid "By default the leftmost tab is activated at startup" #~ msgstr "默认情况下,最左边的选项卡在启动时被激活" #, python-format #~ msgid "Quit %(program)s %(version)s, %(status)s!" #~ msgstr "退出%(program)s %(version)s, %(status)s!" #~ msgid "terminated" #~ msgstr "已终止" #~ msgid "done" #~ msgstr "完成" #~ msgid "Remember choice" #~ msgstr "记住选择" #~ msgid "Kosovo" #~ msgstr "科索沃" #~ msgid "Unknown Network Interface" #~ msgstr "未知的用户界面" #~ msgid "Listening Port Unavailable" #~ msgstr "监听端口不可用" #, python-format #~ msgid "" #~ "The server seems to be down or not responding, retrying in %i seconds" #~ msgstr "服务器似乎已关闭或没有响应,在 %i 秒后重试" #~ msgid "" #~ "Nicotine+ uses peer-to-peer networking to connect to other users. In " #~ "order to allow users to connect to you without trouble, an open listening " #~ "port is crucial." #~ msgstr "" #~ "Nicotine+ 使用点对点网络连接到其他用户。为了让用户能够顺利连接到你,一个开" #~ "放的监听端口是至关重要的。" #~ msgid "--- disconnected ---" #~ msgstr "--- 断开连接 ---" #~ msgid "--- reconnected ---" #~ msgstr "--- 重新连接 ---" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Earth" #~ msgstr "地球" #~ msgid "Czech Republic" #~ msgstr "捷克共和国" #~ msgid "Turkey" #~ msgstr "土耳其" #~ msgid "Joined Rooms " #~ msgstr "已加入的房间 " #~ msgid "_Auto-join Room" #~ msgstr "_自动加入房间" #, fuzzy #~ msgid "" #~ "Syntax: Letters are case-insensitive. All Python regular " #~ "expressions are supported if escaping is disabled. For simple filters, " #~ "keeping escaping enabled is recommended." #~ msgstr "" #~ " 语法: 字母不区分大小写。如果禁用转义,则支持所有 Python 正则表达" #~ "式。对于简单的过滤器,建议保持启用转义。" #~ msgid "Escaped" #~ msgstr "逃脱" #~ msgid "Escape filter" #~ msgstr "离开过滤" #~ msgid "Enter a text pattern and what to replace it with" #~ msgstr "分别输入文本模式和替换" #, python-format #~ msgid "No listening port is available in the specified port range %s–%s" #~ msgstr "指定的端口范围%s–%s中无可用的监听端口" #~ msgid "" #~ "Choose a range to select a listening port from. The first available port " #~ "in the range will be used." #~ msgstr "从范围内选择监听端口。使用范围内的第一个可用端口。" #~ msgid "First Port" #~ msgstr "第一个端口" #~ msgid "to" #~ msgstr "到" #~ msgid "Last Port" #~ msgstr "最后一个端口" #, python-format #~ msgid "Cannot find %s or newer, please install it." #~ msgstr "找不到%s或更新版本,请安装。" #~ msgid "" #~ "Cannot import the Gtk module. Bad install of the python-gobject module?" #~ msgstr "无法导入 Gtk 模块。错误安装的 python-gobject 模块?" #, python-format #~ msgid "" #~ "You are using an unsupported version of GTK %(major_version)s. You should " #~ "install GTK %(complete_version)s or newer." #~ msgstr "" #~ "您正在使用不受支持的 GTK %(major_version)s 版本。您应该安装 GTK " #~ "%(complete_version)s 或更新版本。" #~ msgid "User Info" #~ msgstr "用户信息" #~ msgid "Zoom 1:1" #~ msgstr "1:1缩放" #~ msgid "Zoom In" #~ msgstr "放大" #~ msgid "Zoom Out" #~ msgstr "缩小" #~ msgid "Show User I_nfo" #~ msgstr "显示用户信息" #~ msgid "Request User's Info" #~ msgstr "请求用户信息" #~ msgid "Request User's Shares" #~ msgstr "请求用户的共享" #~ msgid "Request User Info" #~ msgstr "请求用户信息" #~ msgid "Enter the name of the user whose info you want to see:" #~ msgstr "输入您要查看信息的用户的名字:" #~ msgid "Request Shares List" #~ msgstr "请求共享列表" #, python-format #~ msgid "Invalid Soulseek URL: %s" #~ msgstr "无效的 Soulseek 网址:%s" #~ msgid "" #~ "Users on the Soulseek network will be able to download files from folders " #~ "you share. Sharing files is crucial for the health of the Soulseek " #~ "network." #~ msgstr "" #~ "Soulseek 网络上的用户将能够从您共享的文件夹中下载文件。共享文件对于 " #~ "Soulseek 网络的健康至关重要。" #~ msgid "Update I_nfo" #~ msgstr "更新资料" #~ msgid "Chat Room Commands" #~ msgstr "聊天室命令" #~ msgid "/join /j 'room'" #~ msgstr "/加入 /j 'room'" #~ msgid "Join room 'room'" #~ msgstr "加入房间 'room'" #~ msgid "/me 'message'" #~ msgstr "/我 'message'" #~ msgid "Display the Now Playing script's output" #~ msgstr "显示正在播放脚本的输出" #~ msgid "/add /ad 'user'" #~ msgstr "/add /ad 'user'" #~ msgid "Add user 'user' to your buddy list" #~ msgstr "将用户 'user' 添加到您的好友列表" #~ msgid "/rem /unbuddy 'user'" #~ msgstr "/rem /unbuddy 'user'" #~ msgid "Remove user 'user' from your buddy list" #~ msgstr "从您的好友列表中删除用户“user”" #~ msgid "/ban 'user'" #~ msgstr "/ban 'user'" #~ msgid "Add user 'user' to your ban list" #~ msgstr "将用户 'user'添加到您的黑名单" #~ msgid "/unban 'user'" #~ msgstr "/unban 'user'" #~ msgid "Remove user 'user' from your ban list" #~ msgstr "从您的黑名单中移除用户'user'" #~ msgid "/ignore 'user'" #~ msgstr "/ignore 'user'" #~ msgid "Add user 'user' to your ignore list" #~ msgstr "将用户 'user' 添加到您的忽略列表" #~ msgid "/unignore 'user'" #~ msgstr "/unignore 'user'" #~ msgid "Remove user 'user' from your ignore list" #~ msgstr "从您的忽略列表中移除用户'user'" #~ msgid "/browse /b 'user'" #~ msgstr "/browse /b 'user'" #~ msgid "/whois /w 'user'" #~ msgstr "/whois /w 'user'" #~ msgid "Request info for 'user'" #~ msgstr "请求'user'的资料" #~ msgid "/ip 'user'" #~ msgstr "/ip 'user'" #~ msgid "Show IP for user 'user'" #~ msgstr "显示用户'user'的IP" #~ msgid "/search /s 'query'" #~ msgstr "/search /s 'query'" #~ msgid "Start a new search for 'query'" #~ msgstr "开始新的搜索 'query'" #~ msgid "/rsearch /rs 'query'" #~ msgstr "/rsearch /rs 'query'" #~ msgid "Search the joined rooms for 'query'" #~ msgstr "在加入的房间中搜索'query'" #~ msgid "/bsearch /bs 'query'" #~ msgstr "/bsearch /bs 'query'" #~ msgid "Search the buddy list for 'query'" #~ msgstr "在好友列表中搜索'query'" #~ msgid "/usearch /us 'user' 'query'" #~ msgstr "/usearch /us 'user' 'query'" #~ msgid "/msg 'user' 'message'" #~ msgstr "/msg 'user' 'message'" #~ msgid "Send message 'message' to user 'user'" #~ msgstr "向用户 'user'发送消息'message'" #~ msgid "/pm 'user'" #~ msgstr "/pm 'user'" #~ msgid "Open private chat window for user 'user'" #~ msgstr "为用户 \"user \"打开私人聊天窗口" #~ msgid "Private Chat Commands" #~ msgstr "私人聊天命令" #~ msgid "Add user to your ban list" #~ msgstr "将用户添加到您的黑名单" #~ msgid "Add user to your ignore list" #~ msgstr "将用户添加到您的忽略列表" #~ msgid "Browse shares of user" #~ msgstr "浏览用户的共享" #~ msgid "" #~ "For order-insensitive filtering, as well as filtering several exact " #~ "phrases, vertical bars can be used to separate phrases and words.\n" #~ " Example: Remix|Instrumental|Dub Mix" #~ msgstr "" #~ "对于不区分顺序的过滤,以及过滤几个确切的短语,可以使用竖线来分隔短语和单" #~ "词。\n" #~ " 示例:Remix|Instrumental|Dub Mix" #~ msgid "To exclude non-audio files use !0 in the duration filter." #~ msgstr "要排除非音频文件,在持续时间过滤器中使用 !0。" #~ msgid "Filters files based upon users' geographical location." #~ msgstr "根据用户的地理位置过滤文件。" #~ msgid "To view the full results again, simply clear all active filters." #~ msgstr "要再次查看完整结果,只需清除所有激活过滤器。" #~ msgid "See the preferences to set default search result filter options." #~ msgstr "有关更多过滤器选项,请参阅首选项。" #~ msgid "File size" #~ msgstr "文件大小" #~ msgid "Clear Active Filters" #~ msgstr "移除所有活动过滤器" #~ msgid "Cycle through completions when pressing tab-key" #~ msgstr "按tab键时,循环浏览完成情况" #~ msgid "Hide drop-down when only one matches" #~ msgstr "只有一个匹配时隐藏下拉菜单" #~ msgid "Download folders in reverse alphanumerical order" #~ msgstr "以相反的字母数字顺序下载文件夹" #~ msgid "Incomplete file folder:" #~ msgstr "未完成的文件夹:" #~ msgid "Download folder:" #~ msgstr "下载文件夹:" #~ msgid "Save buddies' uploads to:" #~ msgstr "将好友上传的内容保存到:" #~ msgid "Use UPnP to forward listening port" #~ msgstr "使用 UPnP 转发监听端口" #~ msgid "" #~ "Share folders with every Soulseek user or buddies, allowing contents to " #~ "be downloaded directly from your device. Hidden files are never shared." #~ msgstr "" #~ "与每个 Soulseek 用户或好友共享文件夹,允许直接从您的设备下载内容。隐藏文件" #~ "永远不会共享。" #~ msgid "Secondary Tabs" #~ msgstr "辅助选项卡" #~ msgid "Chat room tab bar position:" #~ msgstr "聊天室选项卡位置:" #~ msgid "Private chat tab bar position:" #~ msgstr "私人聊天选项卡栏位置:" #~ msgid "Search tab bar position:" #~ msgstr "搜索选项卡栏位置:" #~ msgid "User info tab bar position:" #~ msgstr "用户信息选项卡栏位置:" #~ msgid "User browse tab bar position:" #~ msgstr "用户浏览选项卡栏位置:" #~ msgid "Tab Labels" #~ msgstr "选项卡标签" #~ msgid "_Refresh Info" #~ msgstr "_刷新信息" #~ msgid "Block IP Address" #~ msgstr "阻止 IP 地址" #~ msgid "Connected" #~ msgstr "已连接" #~ msgid "Disconnected" #~ msgstr "断开连接" #~ msgid "Disconnected (Tray)" #~ msgstr "断开连接(托盘)" #~ msgid "User(s)" #~ msgstr "用户" #, fuzzy, python-format #~ msgid "Alias \"%s\" returned nothing" #~ msgstr "别名“%s”什么也没返回" #, fuzzy #~ msgid "Alternative Speed Limits" #~ msgstr "替代速度限制" #, fuzzy #~ msgid "Last played" #~ msgstr "最后播放" #, fuzzy #~ msgid "Playing now" #~ msgstr "现在播放" #, fuzzy, python-format #~ msgid "Cannot download file to %(path)s: %(error)s" #~ msgstr "无法保存文件 %(path)s:%(error)s" #, fuzzy, python-format #~ msgid "Error code %(code)s: %(description)s" #~ msgstr "错误代码 %(code)s:%(description)s" #, fuzzy, python-format #~ msgid "No such alias (%s)" #~ msgstr "没有这样的别名 (%s)" #, fuzzy #~ msgid "Aliases:" #~ msgstr "别名:" #, fuzzy, python-format #~ msgid "Removed alias %(alias)s: %(action)s\n" #~ msgstr "移除别名 %(alias)s: %(action)s\n" #, fuzzy, python-format #~ msgid "No such alias (%(alias)s)\n" #~ msgstr "没有这样的别名 (%(alias)s)\n" #, fuzzy #~ msgid "Use Alternative Transfer Speed Limits" #~ msgstr "替代速度限制" #, fuzzy #~ msgid "Aliases" #~ msgstr "别名" #, fuzzy #~ msgid "/alias /al 'command' 'definition'" #~ msgstr "/alias /al '命令' '定义'" #, fuzzy #~ msgid "Add a new alias" #~ msgstr "添加新别名" #, fuzzy #~ msgid "/unalias /un 'command'" #~ msgstr "/unalias /un '命令'" #, fuzzy #~ msgid "Remove an alias" #~ msgstr "删除别名" #, fuzzy #~ msgid "Chat History" #~ msgstr "聊天记录" #~ msgid "Command aliases" #~ msgstr "命令别名" #, fuzzy #~ msgid "Limit download speed to (KiB/s):" #~ msgstr "将下载速度限制为 (KiB/s):" #, fuzzy #~ msgid "Author(s):" #~ msgstr "作者:" #, fuzzy #~ msgid "Limit upload speed to (KiB/s):" #~ msgstr "将上传速度限制为 (KiB/s):" #, fuzzy #~ msgid "Wishlist item found" #~ msgstr "找到心愿单项目" #, fuzzy #~ msgid "Tabs show user status icons instead of status text" #~ msgstr "选项卡显示用户状态图标而不是状态文本" #, fuzzy #~ msgid "Show file path tooltips in file list views" #~ msgstr "在文件列表视图中显示文件路径工具提示" #, fuzzy #~ msgid "Colored and clickable usernames" #~ msgstr "彩色和可点击的用户名" #, fuzzy #~ msgid "Notification changes the tab's text color" #~ msgstr "通知更改选项卡的文本颜色" #~ msgid "Cancel" #~ msgstr "取消" #~ msgid "OK" #~ msgstr "确定" #, fuzzy #~ msgid "_Add to Buddy List" #~ msgstr "_添加到好友列表" #, fuzzy #~ msgid "Clear Downloads With Specific Status" #~ msgstr "清除所有标有特定状态的下载。" #, fuzzy #~ msgid "Clear Uploads With Specific Status" #~ msgstr "清除所有标有特定状态的上传。" #~ msgid "use non-default user data directory for e.g. list of downloads" #~ msgstr "为如下载列表等使用非默认用户数据目录," #, python-format #~ msgid "Unknown config section '%s'" #~ msgstr "未知的配置部分“%s”" #, python-format #~ msgid "Unknown config option '%(option)s' in section '%(section)s'" #~ msgstr "在“%(section)s”部分中未知的配置选项“%(option)s”" #, python-format #~ msgid "Version %s is available" #~ msgstr "版本 %s 可用" #, python-format #~ msgid "released on %s" #~ msgstr "发布于 %s" #~ msgid "Nicotine+ is running in the background" #~ msgstr "Nicotine+正在后台运行" #, python-format #~ msgid "Private message from %s" #~ msgstr "%s的私信" #~ msgid "Aborted" #~ msgstr "中断" #~ msgid "Blocked country" #~ msgstr "封闭国家" #~ msgid "Finished / Aborted" #~ msgstr "完成/中止" #, fuzzy #~ msgid "Close tab" #~ msgstr "关闭标签" #, fuzzy, python-format #~ msgid "You've been mentioned in the %(room)s room" #~ msgstr "你在 %(room)s 房间被提及" #, fuzzy, python-format #~ msgid "Command %s is not recognized" #~ msgstr "命令 %s 无法识别" #, fuzzy, python-format #~ msgid "(Warning: %(realuser)s is attempting to spoof %(fakeuser)s) " #~ msgstr "(警告:%(realuser)s 试图欺骗 %(fakeuser)s) " #, fuzzy, python-format #~ msgid "" #~ "The network interface you specified, '%s', does not exist. Change or " #~ "remove the specified network interface and restart Nicotine+." #~ msgstr "" #~ "您指定的网络接口“%s”不存在。更改或删除指定的网络接口并重新启动 Nicotine+。" #, fuzzy #~ msgid "" #~ "The range you specified for client connection ports was {}-{}, but none " #~ "of these were usable. Increase and/or " #~ msgstr "您为客户端连接端口指定的范围是 {}-{},但没有一个可用。增加和/或 " #, fuzzy #~ msgid "" #~ "Note that part of your range lies below 1024, this is usually not allowed " #~ "on most operating systems with the exception of Windows." #~ msgstr "" #~ "请注意,您的部分范围低于 1024,除 Windows 外,大多数操作系统通常不允许这样" #~ "做。" #, fuzzy, python-format #~ msgid "Rescan progress: %s" #~ msgstr "重新扫描进度:%s" #, fuzzy, python-format #~ msgid "OS error: %s" #~ msgstr "操作系统错误:%s" #, fuzzy #~ msgid "UPnP is not available on this network" #~ msgstr "UPnP 在此网络上不可用" #, fuzzy, python-format #~ msgid "Failed to map the external WAN port: %(error)s" #~ msgstr "外接WAN口映射失败:%(error)s" #, fuzzy #~ msgid "Room wall" #~ msgstr "房间墙壁" #, fuzzy #~ msgid "" #~ "The default listening port '2234' works fine in most cases. If you need " #~ "to use a different port, you will be able to modify it in the preferences " #~ "later." #~ msgstr "" #~ "在大多数情况下,默认侦听端口“2234”可以正常工作。如果您需要使用不同的端口," #~ "您可以稍后在首选项中进行修改。" #, fuzzy #~ msgid "Show users with similar interests" #~ msgstr "显示具有相似兴趣的用户" #, fuzzy #~ msgid "Menu" #~ msgstr "菜单" #, fuzzy #~ msgid "Expand / Collapse all" #~ msgstr "展开/折叠所有" #, fuzzy #~ msgid "Configure shares" #~ msgstr "配置共享" #, fuzzy #~ msgid "Create or join room…" #~ msgstr "创建或加入房间…" #, fuzzy #~ msgid "_Room List" #~ msgstr "_房间列表" #, fuzzy #~ msgid "Enable alternative download and upload speed limits" #~ msgstr "启用替代下载和上传速度限制" #, fuzzy #~ msgid "Show log history" #~ msgstr "显示日志历史" #, fuzzy #~ msgid "Result grouping mode" #~ msgstr "结果分组方式" #, fuzzy #~ msgid "Free slot" #~ msgstr "免费插槽" #, fuzzy #~ msgid "Save shares list to disk" #~ msgstr "将共享列表保存到磁盘" #~ msgid "_Away" #~ msgstr "_离开" #, fuzzy, python-format #~ msgid "Failed to load ui file %(file)s: %(error)s" #~ msgstr "加载ui文件失败%(file)s:%(error)s" #, fuzzy #~ msgid "" #~ "Attempting to reset index of shared files due to an error. Please rescan " #~ "your shares." #~ msgstr "由于错误而尝试重置共享文件的索引。请重新扫描您的股票。" #, fuzzy #~ msgid "" #~ "File index of shared files could not be accessed. This could occur due to " #~ "several instances of Nicotine+ being active simultaneously, file " #~ "permission issues, or another issue in Nicotine+." #~ msgstr "" #~ "无法访问共享文件的文件索引。这可能是由于多个 Nicotine+ 实例同时处于活动状" #~ "态、文件权限问题或 Nicotine+ 中的另一个问题。" #~ msgid "Nicotine+ is a Soulseek client" #~ msgstr "Nicotine+ 是 Soulseek 客户端" #~ msgid "enable the tray icon" #~ msgstr "启用托盘图标" #~ msgid "disable the tray icon" #~ msgstr "禁用托盘图标" #~ msgid "Get Soulseek Privileges…" #~ msgstr "获取 Soulseek 特权…" #, python-format #~ msgid "" #~ "Public IP address is %(ip)s and active listening port is " #~ "%(port)s" #~ msgstr "公共IP地址为%(ip)s,活动的监听端口为%(port)s" #~ msgid "unknown" #~ msgstr "未知" #~ msgid "Notification" #~ msgstr "通知" #~ msgid "Length" #~ msgstr "长度" #, python-format #~ msgid "Picture not saved, %s already exists." #~ msgstr "图片未保存,%s 已存在。" #, fuzzy #~ msgid "_Open" #~ msgstr "_打开" #, fuzzy #~ msgid "_Save" #~ msgstr "_保存" #, fuzzy, python-format #~ msgid "Failed to load plugin '%s', could not find it." #~ msgstr "无法加载插件“%s”,找不到它。" #, fuzzy, python-format #~ msgid "I/O error: %s" #~ msgstr "输入/输出错误:%s" #, fuzzy, python-format #~ msgid "Failed to open file path: %s" #~ msgstr "打开文件路径失败:%s" #, fuzzy, python-format #~ msgid "Failed to open URL: %s" #~ msgstr "打开网址失败:%s" #, fuzzy #~ msgid "_Log Conversation" #~ msgstr "_记录对话" #, fuzzy #~ msgid "Result Filter List" #~ msgstr "结果过滤器列表" #, fuzzy #~ msgid "Prepend < or > to find files less/greater than the given value." #~ msgstr "添加 < 或 > 以查找小于/大于给定值的文件。" #, fuzzy #~ msgid "" #~ "VBR files display their average bitrate and are typically lower in " #~ "bitrate than a compressed 320 kbps CBR file of the same audio quality." #~ msgstr "" #~ "VBR 文件显示其平均比特率,并且比特率通常低于相同音频质量的压缩 320 kbps " #~ "CBR 文件。" #, fuzzy #~ msgid "Like Size above, =, <, and > can be used." #~ msgstr "与上面的 Size 一样,可以使用 =、< 和 >。" #, fuzzy #~ msgid "" #~ "Prevent write access by other programs for files being downloaded (turn " #~ "off for NFS)" #~ msgstr "防止其他程序对正在下载的文件进行写访问(对 NFS 关闭)" #, fuzzy #~ msgid "Where incomplete downloads are temporarily stored." #~ msgstr "临时存储不完整下载的位置。" #, fuzzy #~ msgid "" #~ "Where buddies' uploads will be stored (with a subfolder created for each " #~ "buddy)." #~ msgstr "将存储好友上传的内容(为每个好友创建一个子文件夹)。" #, fuzzy #~ msgid "Toggle away status after minutes of inactivity:" #~ msgstr "几分钟不活动后切换状态:" #, fuzzy #~ msgid "Protocol:" #~ msgstr "协议:" #, fuzzy #~ msgid "Icon theme folder (requires restart):" #~ msgstr "图标主题文件夹(需要重启):" #~ msgid "Establishing connection" #~ msgstr "建立中的连接" #~ msgid "Clear Groups" #~ msgstr "清除组" #, fuzzy #~ msgid "_Reset Statistics…" #~ msgstr "_重置统计…" #, fuzzy #~ msgid "Clear _Downloads…" #~ msgstr "清除_下载…" #, fuzzy #~ msgid "Clear Uploa_ds…" #~ msgstr "清除Upload_ds…" nicotine-plus-3.3.4/pynicotine/000077500000000000000000000000001461625273200165035ustar00rootroot00000000000000nicotine-plus-3.3.4/pynicotine/__init__.py000066400000000000000000000157311461625273200206230ustar00rootroot00000000000000# COPYRIGHT (C) 2020-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . __application_name__ = "Nicotine+" __application_id__ = "org.nicotine_plus.Nicotine" __version__ = "3.3.4" __author__ = "Nicotine+ Team" __copyright__ = """© 2004–2024 Nicotine+ Contributors © 2003–2004 Nicotine Contributors © 2001–2003 PySoulSeek Contributors""" __website_url__ = "https://nicotine-plus.org" __privileges_url__ = "https://www.slsknet.org/qtlogin.php?username=%s" __port_checker_url__ = "https://www.slsknet.org/porttest.php?port=%s" __issue_tracker_url__ = "https://github.com/nicotine-plus/nicotine-plus/issues" __translations_url__ = "https://nicotine-plus.org/doc/TRANSLATIONS" import io import os import sys from pynicotine.config import config from pynicotine.core import core from pynicotine.i18n import LOCALE_PATH from pynicotine.i18n import apply_translations from pynicotine.logfacility import log def check_arguments(): """Parse command line arguments specified by the user.""" import argparse parser = argparse.ArgumentParser( prog="nicotine", description=_("Graphical client for the Soulseek peer-to-peer network"), epilog=_("Website: %s") % __website_url__, add_help=False ) # Visible arguments parser.add_argument( "-h", "--help", action="help", help=_("show this help message and exit") ) parser.add_argument( "-c", "--config", metavar=_("file"), help=_("use non-default configuration file") ) parser.add_argument( "-u", "--user-data", metavar=_("dir"), help=_("alternative directory for user data and plugins") ) parser.add_argument( "-s", "--hidden", action="store_true", help=_("start the program without showing window") ) parser.add_argument( "-b", "--bindip", metavar=_("ip"), help=_("bind sockets to the given IP (useful for VPN)") ) parser.add_argument( "-l", "--port", metavar=_("port"), type=int, help=_("listen on the given port") ) parser.add_argument( "-r", "--rescan", action="store_true", help=_("rescan shared files") ) parser.add_argument( "-n", "--headless", action="store_true", help=_("start the program in headless mode (no GUI)") ) parser.add_argument( "-v", "--version", action="version", version=f"{__application_name__} {__version__}", help=_("display version and exit") ) # Disables critical error dialog; used for integration tests parser.add_argument("--ci-mode", action="store_true", help=argparse.SUPPRESS) args = parser.parse_args() multi_instance = False if args.config: config.set_config_file(args.config) # Since a custom config was specified, allow another instance of the application to open multi_instance = True if args.user_data: config.set_data_folder(args.user_data) core.cli_interface_address = args.bindip core.cli_listen_port = args.port return args.headless, args.hidden, args.ci_mode, args.rescan, multi_instance def check_python_version(): # Require minimum Python version python_version = (3, 6) if sys.version_info < python_version: return _("""You are using an unsupported version of Python (%(old_version)s). You should install Python %(min_version)s or newer.""") % { "old_version": ".".join(str(x) for x in sys.version_info[:3]), "min_version": ".".join(str(x) for x in python_version) } return None def set_up_python(): is_frozen = getattr(sys, "frozen", False) # Always use UTF-8 for print() if sys.stdout is not None: sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding="utf-8", line_buffering=True) if is_frozen: import multiprocessing # Set up paths for frozen binaries (Windows and macOS) executable_folder = os.path.dirname(sys.executable) os.environ["SSL_CERT_FILE"] = os.path.join(executable_folder, "lib/cert.pem") # Support file scanning process in frozen binaries multiprocessing.freeze_support() def rename_process(new_name, debug_info=False): errors = [] # Renaming ourselves for pkill et al. try: import ctypes # GNU/Linux style libc = ctypes.CDLL(None) libc.prctl(15, new_name, 0, 0, 0) except Exception as error: errors.append(error) errors.append("Failed GNU/Linux style") try: import ctypes # BSD style libc = ctypes.CDLL(None) libc.setproctitle(new_name) except Exception as second_error: errors.append(second_error) errors.append("Failed BSD style") if debug_info and errors: msg = ["Errors occurred while trying to change process name:"] for i in errors: msg.append(str(i)) log.add("\n".join(msg)) def rescan_shares(): exit_code = 0 if not core.shares.rescan_shares(use_thread=False): log.add("--------------------------------------------------") log.add(_("Failed to scan shares. Please close other Nicotine+ instances and try again.")) exit_code = 1 core.quit() return exit_code def run(): """Run application and return its exit code.""" set_up_python() rename_process(b"nicotine") headless, hidden, ci_mode, rescan, multi_instance = check_arguments() error = check_python_version() if error: print(error) return 1 core.init_components(enabled_components={"cli", "shares"} if rescan else None) # Dump tracebacks for C modules (in addition to pure Python code) try: import faulthandler faulthandler.enable() except Exception as error: log.add(f"Faulthandler module could not be enabled. Error: {error}") if not os.path.isdir(LOCALE_PATH): log.add("Translation files (.mo) are unavailable, using default English strings") if rescan: return rescan_shares() # Initialize GTK-based GUI if not headless: from pynicotine import gtkgui as application exit_code = application.run(hidden, ci_mode, multi_instance) if exit_code is not None: return exit_code # Run without a GUI from pynicotine import headless as application return application.run() apply_translations() nicotine-plus-3.3.4/pynicotine/__main__.py000066400000000000000000000014411461625273200205750ustar00rootroot00000000000000# COPYRIGHT (C) 2021-2023 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import sys from pynicotine import run sys.exit(run()) nicotine-plus-3.3.4/pynicotine/buddies.py000066400000000000000000000207021461625273200204750ustar00rootroot00000000000000# COPYRIGHT (C) 2021-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import time from pynicotine.config import config from pynicotine.core import core from pynicotine.events import events from pynicotine.logfacility import log from pynicotine.slskmessages import UserStatus class Buddy: __slots__ = ("username", "note", "notify_status", "is_prioritized", "is_trusted", "last_seen", "country", "status") def __init__(self, username, note, notify_status, is_prioritized, is_trusted, last_seen, country, status): self.username = username self.note = note self.notify_status = notify_status self.is_prioritized = is_prioritized self.is_trusted = is_trusted self.last_seen = last_seen self.country = country self.status = status class Buddies: def __init__(self): self.users = {} self.allow_saving_buddies = False for event_name, callback in ( ("quit", self._quit), ("server-login", self._server_login), ("server-disconnect", self._server_disconnect), ("start", self._start), ("user-country", self._user_country), ("user-status", self._user_status) ): events.connect(event_name, callback) def _start(self): for row in config.sections["server"]["userlist"]: if not row: continue username = row[0] if not isinstance(username, str) or not isinstance(row, list): continue if username in self.users: continue num_items = len(row) if num_items <= 1: note = "" row.append(note) if num_items <= 2: notify = False row.append(notify) if num_items <= 3: prioritized = False row.append(prioritized) if num_items <= 4: trusted = False row.append(trusted) if num_items <= 5: last_seen = "Never seen" row.append(last_seen) if num_items <= 6: country = "" row.append(country) _username, note, notify_status, is_prioritized, is_trusted, last_seen, country = row self.users[username] = user_data = Buddy( username=username, note=note, notify_status=notify_status, is_prioritized=is_prioritized, is_trusted=is_trusted, last_seen=last_seen, country=country, status=UserStatus.OFFLINE ) events.emit("add-buddy", username, user_data) self.allow_saving_buddies = True def _quit(self): self.users.clear() self.allow_saving_buddies = False def _server_login(self, msg): if not msg.success: return for username in self.users: core.users.watch_user(username) def _server_disconnect(self, _msg): for username, user_data in self.users.items(): user_data.status = UserStatus.OFFLINE self.set_buddy_last_seen(username, is_online=False) self.save_buddy_list() def add_buddy(self, username): if username in self.users: return note = "" country_code = core.users.countries.get(username) country = f"flag_{country_code}" if country_code else "" is_trusted = notify_status = is_prioritized = False status = core.users.statuses.get(username, UserStatus.OFFLINE) last_seen = "Never seen" if status == UserStatus.OFFLINE else "" self.users[username] = user_data = Buddy( username=username, note=note, notify_status=notify_status, is_prioritized=is_prioritized, is_trusted=is_trusted, last_seen=last_seen, country=country, status=status ) if config.sections["words"]["buddies"]: core.chatrooms.update_completions() core.privatechat.update_completions() self.save_buddy_list() events.emit("add-buddy", username, user_data) # Request user status, speed and number of shared files core.users.watch_user(username) def remove_buddy(self, username): if username in self.users: del self.users[username] if config.sections["words"]["buddies"]: core.chatrooms.update_completions() core.privatechat.update_completions() self.save_buddy_list() events.emit("remove-buddy", username) def set_buddy_note(self, username, note): if username not in self.users: return self.users[username].note = note self.save_buddy_list() events.emit("buddy-note", username, note) def set_buddy_notify(self, username, notify): if username not in self.users: return self.users[username].notify_status = notify self.save_buddy_list() events.emit("buddy-notify", username, notify) def set_buddy_prioritized(self, username, prioritized): if username not in self.users: return self.users[username].is_prioritized = prioritized self.save_buddy_list() events.emit("buddy-prioritized", username, prioritized) def set_buddy_trusted(self, username, trusted): if username not in self.users: return self.users[username].is_trusted = trusted self.save_buddy_list() events.emit("buddy-trusted", username, trusted) def set_buddy_last_seen(self, username, is_online): if username not in self.users: return previous_last_seen = self.users[username].last_seen if is_online: self.users[username].last_seen = "" elif not previous_last_seen: self.users[username].last_seen = time.strftime("%m/%d/%Y %H:%M:%S") else: return events.emit("buddy-last-seen", username, is_online) def _user_country(self, username, country_code): if not country_code: return if username not in self.users: return self.users[username].country = f"flag_{country_code}" def save_buddy_list(self): if not self.allow_saving_buddies: return user_rows = [] for username, user_data in self.users.items(): user_rows.append([ username, user_data.note, user_data.notify_status, user_data.is_prioritized, user_data.is_trusted, user_data.last_seen, user_data.country ]) config.sections["server"]["userlist"] = user_rows config.write_configuration() def _user_status(self, msg): """Server code 7.""" username = msg.user if username not in self.users: return if msg.status == self.users[username].status: # Buddy status didn't change, don't show notification' return self.users[username].status = msg.status self.set_buddy_last_seen(username, is_online=bool(msg.status)) notify = self.users[username].notify_status if not notify: return if msg.status == UserStatus.AWAY: status_text = _("%(user)s is away") elif msg.status == UserStatus.ONLINE: status_text = _("%(user)s is online") else: status_text = _("%(user)s is offline") log.add(status_text, {"user": username}) core.notifications.show_notification(status_text % {"user": username}, title=_("Buddy Status")) nicotine-plus-3.3.4/pynicotine/chatrooms.py000066400000000000000000000515441461625273200210650ustar00rootroot00000000000000# COPYRIGHT (C) 2020-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . from pynicotine import slskmessages from pynicotine.config import config from pynicotine.core import core from pynicotine.events import events from pynicotine.logfacility import log from pynicotine.utils import censor_text from pynicotine.utils import find_whole_word class Room: __slots__ = ("name", "is_private", "users", "tickers") def __init__(self, name=None, is_private=False): self.name = name self.is_private = is_private self.users = set() self.tickers = {} class ChatRooms: # Trailing spaces to avoid conflict with regular rooms GLOBAL_ROOM_NAME = "Public " def __init__(self): self.completions = set() self.server_rooms = set() self.joined_rooms = {} self.private_rooms = config.sections["private_rooms"]["rooms"] for event_name, callback in ( ("global-room-message", self._global_room_message), ("join-room", self._join_room), ("leave-room", self._leave_room), ("private-room-add-operator", self._private_room_add_operator), ("private-room-add-user", self._private_room_add_user), ("private-room-added", self._private_room_added), ("private-room-operator-added", self._private_room_operator_added), ("private-room-operator-removed", self._private_room_operator_removed), ("private-room-owned", self._private_room_owned), ("private-room-remove-operator", self._private_room_remove_operator), ("private-room-remove-user", self._private_room_remove_user), ("private-room-removed", self._private_room_removed), ("private-room-toggle", self._private_room_toggle), ("private-room-users", self._private_room_users), ("quit", self._quit), ("room-list", self._room_list), ("say-chat-room", self._say_chat_room), ("server-login", self._server_login), ("server-disconnect", self._server_disconnect), ("start", self._start), ("ticker-add", self._ticker_add), ("ticker-remove", self._ticker_remove), ("ticker-state", self._ticker_state), ("user-joined-room", self._user_joined_room), ("user-left-room", self._user_left_room) ): events.connect(event_name, callback) def _start(self): for room in config.sections["server"]["autojoin"]: if isinstance(room, str): self.show_room(room, is_private=(room in self.private_rooms), switch_page=False, remembered=True) def _quit(self): self.remove_all_rooms(is_permanent=False) self.completions.clear() def _server_login(self, msg): if not msg.success: return # Request a complete room list. A limited room list not including blacklisted rooms and # rooms with few users is automatically sent when logging in, but subsequent room list # requests contain all rooms. core.send_message_to_server(slskmessages.RoomList()) core.send_message_to_server(slskmessages.PrivateRoomToggle(config.sections["server"]["private_chatrooms"])) for room in self.joined_rooms: if room == self.GLOBAL_ROOM_NAME: core.send_message_to_server(slskmessages.JoinGlobalRoom()) else: core.send_message_to_server(slskmessages.JoinRoom(room)) def _server_disconnect(self, _msg): for room_obj in self.joined_rooms.values(): room_obj.tickers.clear() room_obj.users.clear() self.server_rooms.clear() self.update_completions() def show_room(self, room, is_private=False, switch_page=True, remembered=False): room_obj = self.joined_rooms.get(room) if room_obj is None: self.joined_rooms[room] = room_obj = Room(name=room, is_private=is_private) if room not in config.sections["server"]["autojoin"]: position = 0 if room == self.GLOBAL_ROOM_NAME else -1 config.sections["server"]["autojoin"].insert(position, room) if not room_obj.users: if room == self.GLOBAL_ROOM_NAME: core.send_message_to_server(slskmessages.JoinGlobalRoom()) else: core.send_message_to_server(slskmessages.JoinRoom(room, is_private)) events.emit("show-room", room, is_private, switch_page, remembered) def remove_room(self, room, is_permanent=True): if room not in self.joined_rooms: return if room == self.GLOBAL_ROOM_NAME: core.send_message_to_server(slskmessages.LeaveGlobalRoom()) else: core.send_message_to_server(slskmessages.LeaveRoom(room)) room_obj = self.joined_rooms.pop(room) non_watched_users = room_obj.users.difference(core.users.watched) for username in non_watched_users: # We haven't explicitly watched the user, server will no longer send status updates for dictionary in (core.users.addresses, core.users.countries, core.users.statuses): dictionary.pop(username, None) if is_permanent: if room in config.sections["columns"]["chat_room"]: del config.sections["columns"]["chat_room"][room] if room in config.sections["server"]["autojoin"]: config.sections["server"]["autojoin"].remove(room) events.emit("remove-room", room) def remove_all_rooms(self, is_permanent=True): for room in self.joined_rooms.copy(): self.remove_room(room, is_permanent) def clear_room_messages(self, room): events.emit("clear-room-messages", room) def echo_message(self, room, message, message_type="local"): events.emit("echo-room-message", room, message, message_type) def send_message(self, room, message): if room not in self.joined_rooms: return event = core.pluginhandler.outgoing_public_chat_event(room, message) if event is None: return room, message = event if config.sections["words"]["replacewords"]: for word, replacement in config.sections["words"]["autoreplaced"].items(): message = message.replace(str(word), str(replacement)) core.send_message_to_server(slskmessages.SayChatroom(room, message)) core.pluginhandler.outgoing_public_chat_notification(room, message) def create_private_room(self, room, owner=None, operators=None): private_room = self.private_rooms.get(room) if private_room is None: private_room = self.private_rooms[room] = { "users": [], "joined": 0, "operators": operators or [], "owned": False, "owner": owner } return private_room private_room["owner"] = owner if operators is None: return private_room for operator in operators: if operator not in private_room["operators"]: private_room["operators"].append(operator) return private_room def add_user_to_private_room(self, room, username): core.send_message_to_server(slskmessages.PrivateRoomAddUser(room, username)) def add_operator_to_private_room(self, room, username): core.send_message_to_server(slskmessages.PrivateRoomAddOperator(room, username)) def remove_user_from_private_room(self, room, username): core.send_message_to_server(slskmessages.PrivateRoomRemoveUser(room, username)) def remove_operator_from_private_room(self, room, username): core.send_message_to_server(slskmessages.PrivateRoomRemoveOperator(room, username)) def is_private_room_owned(self, room): private_room = self.private_rooms.get(room) return private_room is not None and private_room["owner"] == core.users.login_username def is_private_room_member(self, room): return room in self.private_rooms def is_private_room_operator(self, room): private_room = self.private_rooms.get(room) return private_room is not None and core.users.login_username in private_room["operators"] def request_room_list(self): core.send_message_to_server(slskmessages.RoomList()) def request_private_room_disown(self, room): if not self.is_private_room_owned(room): return core.send_message_to_server(slskmessages.PrivateRoomDisown(room)) del self.private_rooms[room] def request_private_room_dismember(self, room): if not self.is_private_room_member(room): return core.send_message_to_server(slskmessages.PrivateRoomDismember(room)) del self.private_rooms[room] def request_private_room_toggle(self, enabled): core.send_message_to_server(slskmessages.PrivateRoomToggle(enabled)) def request_update_ticker(self, room, message): core.send_message_to_server(slskmessages.RoomTickerSet(room, message)) def _join_room(self, msg): """Server code 14.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is None: self.show_room(msg.room, is_private=msg.private, switch_page=False) room_obj = self.joined_rooms[msg.room] else: room_obj.is_private = msg.private if msg.private: self.create_private_room(msg.room, msg.owner, msg.operators) for userdata in msg.users: username = userdata.username core.users.statuses[username] = userdata.status room_obj.users.add(username) # Request user's IP address, so we can get the country and ignore messages by IP if username not in core.users.addresses: core.users.request_ip_address(username) core.pluginhandler.join_chatroom_notification(msg.room) def _leave_room(self, msg): """Server code 15.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is not None: room_obj.users.clear() core.pluginhandler.leave_chatroom_notification(msg.room) def _private_room_users(self, msg): """Server code 133.""" private_room = self.private_rooms.get(msg.room) if private_room is None: private_room = self.create_private_room(msg.room) private_room["users"] = msg.users private_room["joined"] = msg.numusers def _private_room_add_user(self, msg): """Server code 134.""" private_room = self.private_rooms.get(msg.room) if private_room is not None and msg.user not in private_room["users"]: private_room["users"].append(msg.user) def _private_room_remove_user(self, msg): """Server code 135.""" private_room = self.private_rooms.get(msg.room) if private_room is not None and msg.user in private_room["users"]: private_room["users"].remove(msg.user) def _private_room_added(self, msg): """Server code 139.""" if msg.room in self.private_rooms: return self.create_private_room(msg.room) if msg.room in self.joined_rooms: # Room tab previously opened, join room now self.show_room(msg.room, is_private=True, switch_page=False) log.add(_("You have been added to a private room: %(room)s"), {"room": msg.room}) def _private_room_removed(self, msg): """Server code 140.""" if msg.room in self.private_rooms: del self.private_rooms[msg.room] def _private_room_toggle(self, msg): """Server code 141.""" config.sections["server"]["private_chatrooms"] = msg.enabled def _private_room_add_operator(self, msg): """Server code 143.""" private_room = self.private_rooms.get(msg.room) if private_room is not None and msg.user not in private_room["operators"]: private_room["operators"].append(msg.user) def _private_room_remove_operator(self, msg): """Server code 144.""" private_room = self.private_rooms.get(msg.room) if private_room is not None and msg.user in private_room["operators"]: private_room["operators"].remove(msg.user) def _private_room_operator_added(self, msg): """Server code 145.""" private_room = self.private_rooms.get(msg.room) if private_room is not None and core.users.login_username not in private_room["operators"]: private_room["operators"].append(core.users.login_username) def _private_room_operator_removed(self, msg): """Server code 146.""" private_room = self.private_rooms.get(msg.room) if private_room is not None and core.users.login_username in private_room["operators"]: private_room["operators"].remove(core.users.login_username) def _private_room_owned(self, msg): """Server code 148.""" private_room = self.private_rooms.get(msg.room) if private_room is None: private_room = self.create_private_room(msg.room) private_room["operators"] = msg.operators def _global_room_message(self, msg): """Server code 152.""" self._say_chat_room(msg, is_global=True) def _room_list(self, msg): """Server code 64.""" login_username = core.users.login_username for room, user_count in msg.rooms: self.server_rooms.add(room) for room, user_count in msg.ownedprivaterooms: room_data = self.private_rooms.get(room) if room_data is None: self.private_rooms[room] = { "users": [], "joined": user_count, "operators": [], "owner": login_username } continue room_data["joined"] = user_count room_data["owner"] = login_username for room, user_count in msg.otherprivaterooms: room_data = self.private_rooms.get(room) if room_data is None: self.private_rooms[room] = { "users": [], "joined": user_count, "operators": [], "owner": None } continue room_data["joined"] = user_count if room_data["owner"] == login_username: room_data["owner"] = None if config.sections["words"]["roomnames"]: self.update_completions() core.privatechat.update_completions() def get_message_type(self, user, text): if text.startswith("/me "): return "action" if user == core.users.login_username: return "local" if core.users.login_username and find_whole_word(core.users.login_username.lower(), text.lower()) > -1: return "hilite" return "remote" def _say_chat_room(self, msg, is_global=False): """Server code 13.""" room = msg.room username = msg.user if not is_global: if room not in self.joined_rooms: msg.room = None return log.add_chat(_("Chat message from user '%(user)s' in room '%(room)s': %(message)s"), { "user": username, "room": room, "message": msg.message }) if username != "server": if core.network_filter.is_user_ignored(username): msg.room = None return if core.network_filter.is_user_ip_ignored(username): msg.room = None return event = core.pluginhandler.incoming_public_chat_event(room, username, msg.message) if event is None: msg.room = None return _room, _username, msg.message = event else: room = self.GLOBAL_ROOM_NAME message = msg.message msg.message_type = self.get_message_type(username, message) is_action_message = (msg.message_type == "action") if is_action_message: message = message.replace("/me ", "", 1) if config.sections["words"]["censorwords"] and username != core.users.login_username: message = censor_text(message, censored_patterns=config.sections["words"]["censored"]) if is_action_message: msg.formatted_message = msg.message = f"* {username} {message}" else: msg.formatted_message = f"[{username}] {message}" if is_global: msg.formatted_message = f"{msg.room} | {msg.formatted_message}" if config.sections["logging"]["chatrooms"] or room in config.sections["logging"]["rooms"]: log.write_log_file( folder_path=log.room_folder_path, basename=room, text=msg.formatted_message ) if is_global: core.pluginhandler.public_room_message_notification(msg.room, username, msg.message) else: core.pluginhandler.incoming_public_chat_notification(room, username, msg.message) def _user_joined_room(self, msg): """Server code 16.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is None: msg.room = None return username = msg.userdata.username if username == core.users.login_username: # Redundant message, we're already present in the list of users msg.room = None return room_obj.users.add(username) core.users.statuses[username] = msg.userdata.status # Request user's IP address, so we can get the country and ignore messages by IP if username not in core.users.addresses: core.users.request_ip_address(username) core.pluginhandler.user_join_chatroom_notification(msg.room, username) def _user_left_room(self, msg): """Server code 17.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is None: msg.room = None return username = msg.username room_obj.users.discard(username) if username not in core.users.watched: # We haven't explicitly watched the user, server will no longer send status updates for dictionary in (core.users.addresses, core.users.countries, core.users.statuses): dictionary.pop(username, None) core.pluginhandler.user_leave_chatroom_notification(msg.room, username) def _ticker_state(self, msg): """Server code 113.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is None: msg.room = None return room_obj.tickers.clear() for username, message in msg.msgs: if core.network_filter.is_user_ignored(username) or \ core.network_filter.is_user_ip_ignored(username): # User ignored, ignore ticker message continue room_obj.tickers[username] = message def _ticker_add(self, msg): """Server code 114.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is None: msg.room = None return username = msg.user if core.network_filter.is_user_ignored(username) or core.network_filter.is_user_ip_ignored(username): # User ignored, ignore Ticker messages return room_obj.tickers[username] = msg.msg def _ticker_remove(self, msg): """Server code 115.""" room_obj = self.joined_rooms.get(msg.room) if room_obj is None: msg.room = None return room_obj.tickers.pop(msg.user, None) def update_completions(self): self.completions.clear() self.completions.add(config.sections["server"]["login"]) if config.sections["words"]["roomnames"]: self.completions.update(self.server_rooms) if config.sections["words"]["buddies"]: self.completions.update(core.buddies.users) if config.sections["words"]["commands"]: self.completions.update(core.pluginhandler.get_command_list("chatroom")) events.emit("room-completions", self.completions.copy()) nicotine-plus-3.3.4/pynicotine/cli.py000066400000000000000000000121461461625273200176300ustar00rootroot00000000000000# COPYRIGHT (C) 2022-2023 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import os import sys import time from collections import deque from getpass import getpass from threading import Thread from pynicotine.events import events from pynicotine.logfacility import log class CLIInputProcessor(Thread): def __init__(self): super().__init__(name="CLIInputProcessor", daemon=True) try: # Enable line editing and history import readline # noqa: F401 # pylint:disable=unused-import except ImportError: # Readline is not available on this OS pass self.has_custom_prompt = False self.prompt_message = "" self.prompt_callback = None self.prompt_silent = False def run(self): while True: # Small time window to set custom prompt time.sleep(0.25) try: self._handle_prompt() except Exception as error: log.add_debug("CLI input prompt is no longer available: %s", error) return def _handle_prompt_callback(self, user_input, callback): if not callback: return False events.invoke_main_thread(callback, user_input) return True def _handle_prompt_command(self, user_input): if not user_input: return False command, *args = user_input.split(maxsplit=1) if command.startswith("/"): command = command[1:] if args: (args,) = args events.emit_main_thread("cli-command", command, args) return True def _handle_prompt(self): callback = self.prompt_callback input_func = getpass if self.prompt_silent else input self.has_custom_prompt = (callback is not None) user_input = input_func(self.prompt_message) self.has_custom_prompt = False self.prompt_message = "" self.prompt_callback = None self.prompt_silent = False events.emit("cli-prompt-finished") # Check if custom prompt is active if self._handle_prompt_callback(user_input, callback): return # No custom prompt, treat input as command self._handle_prompt_command(user_input) class CLI: def __init__(self): self._input_processor = CLIInputProcessor() self._log_message_queue = deque(maxlen=1000) self._tty_attributes = None events.connect("quit", self._quit) def enable_prompt(self): try: import termios # pylint: disable=import-error self._tty_attributes = termios.tcgetattr(sys.stdin) except Exception: # Not a terminal, or using Windows pass self._input_processor.start() def enable_logging(self): for event_name, callback in ( ("cli-prompt-finished", self._cli_prompt_finished), ("log-message", self._log_message) ): events.connect(event_name, callback) def prompt(self, message, callback, is_silent=False): self._input_processor.prompt_message = message self._input_processor.prompt_callback = callback self._input_processor.prompt_silent = is_silent def _print_log_message(self, log_message): try: print(log_message, flush=True) except OSError: # stdout is gone, prevent future errors sys.stdout = open(os.devnull, "w", encoding="utf-8") # pylint: disable=consider-using-with def _cli_prompt_finished(self): while self._log_message_queue: self._print_log_message(self._log_message_queue.popleft()) def _log_message(self, timestamp_format, msg, _title, _level): if timestamp_format: timestamp = time.strftime(timestamp_format) log_message = f"[{timestamp}] {msg}" else: log_message = msg if self._input_processor.has_custom_prompt: # Don't print log messages while custom prompt is active self._log_message_queue.append(log_message) return self._print_log_message(log_message) def _quit(self): """Restores TTY attributes and re-enables echo on quit.""" if self._tty_attributes is None: return import termios # pylint: disable=import-error termios.tcsetattr(sys.stdin, termios.TCSANOW, self._tty_attributes) self._tty_attributes = None cli = CLI() nicotine-plus-3.3.4/pynicotine/config.py000066400000000000000000000705241461625273200203320ustar00rootroot00000000000000# COPYRIGHT (C) 2020-2023 Nicotine+ Contributors # COPYRIGHT (C) 2016-2017 Michael Labouebe # COPYRIGHT (C) 2016-2018 Mutnick # COPYRIGHT (C) 2008-2011 quinox # COPYRIGHT (C) 2009 hedonist # COPYRIGHT (C) 2007 gallows # COPYRIGHT (C) 2006-2009 daelstorm # COPYRIGHT (C) 2003-2004 Hyriand # COPYRIGHT (C) 2001-2003 Alexander Kanavin # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import os import sys from collections import defaultdict from pynicotine.events import events from pynicotine.i18n import apply_translations from pynicotine.utils import encode_path from pynicotine.utils import load_file from pynicotine.utils import write_file_and_backup class Config: """This class holds configuration information and provides the following methods: need_config() - returns true if configuration information is incomplete read_config() - reads configuration information from file write_configuration - writes configuration information to file The actual configuration information is stored as a two-level dictionary. First-level keys are config sections, second-level keys are config parameters. """ def __init__(self): config_folder_path, data_folder_path = self.get_user_folders() self.set_config_file(os.path.join(config_folder_path, "config")) self.set_data_folder(data_folder_path) self.config_loaded = False self.sections = defaultdict(dict) self.defaults = {} self.removed_options = {} self._parser = None @staticmethod def get_user_folders(): """Returns a tuple: - the config folder - the data folder """ if sys.platform == "win32": try: data_folder_path = os.path.join(os.path.normpath(os.environ["APPDATA"]), "nicotine") except KeyError: data_folder_path = os.path.dirname(sys.argv[0]) config_folder_path = os.path.join(data_folder_path, "config") return config_folder_path, data_folder_path home = os.path.expanduser("~") legacy_folder_path = os.path.join(home, ".nicotine") if os.path.isdir(legacy_folder_path.encode("utf-8")): return legacy_folder_path, legacy_folder_path def xdg_path(xdg, default): path = os.environ.get(xdg) path = path.split(":")[0] if path else default return os.path.join(path, "nicotine") config_folder_path = xdg_path("XDG_CONFIG_HOME", os.path.join(home, ".config")) data_folder_path = xdg_path("XDG_DATA_HOME", os.path.join(home, ".local", "share")) return config_folder_path, data_folder_path def set_config_file(self, file_path): self.config_file_path = os.path.abspath(file_path) def set_data_folder(self, folder_path): self.data_folder_path = os.environ["NICOTINE_DATA_HOME"] = os.path.abspath(folder_path) def create_config_folder(self): """Create the folder for storing the config file in, if the folder doesn't exist.""" folder_path = os.path.dirname(self.config_file_path) if not folder_path: # Only file name specified, use current folder return True folder_path_encoded = encode_path(folder_path) try: if not os.path.isdir(folder_path_encoded): os.makedirs(folder_path_encoded) except OSError as error: from pynicotine.logfacility import log log.add(_("Can't create directory '%(path)s', reported error: %(error)s"), {"path": folder_path, "error": error}) return False return True def create_data_folder(self): """Create the folder for storing data in (shared files etc.), if the folder doesn't exist.""" data_folder_path_encoded = encode_path(self.data_folder_path) try: if not os.path.isdir(data_folder_path_encoded): os.makedirs(data_folder_path_encoded) except OSError as error: from pynicotine.logfacility import log log.add(_("Can't create directory '%(path)s', reported error: %(error)s"), {"path": self.data_folder_path, "error": error}) def load_config(self): if self.config_loaded: return from configparser import ConfigParser self._parser = ConfigParser(strict=False, interpolation=None) log_folder_path = os.path.join("${NICOTINE_DATA_HOME}", "logs") self.defaults = { "server": { "server": ("server.slsknet.org", 2242), "login": "", "passw": "", "interface": "", "ctcpmsgs": False, "autosearch": [], "autoreply": "", "portrange": (2234, 2234), "upnp": True, "upnp_interval": 4, "auto_connect_startup": True, "userlist": [], "banlist": [], "ignorelist": [], "ipignorelist": {}, "ipblocklist": {}, "autojoin": ["nicotine"], "autoaway": 15, "away": False, "private_chatrooms": False, "command_aliases": {} }, "transfers": { "incompletedir": os.path.join("${NICOTINE_DATA_HOME}", "incomplete"), "downloaddir": os.path.join("${NICOTINE_DATA_HOME}", "downloads"), "uploaddir": os.path.join("${NICOTINE_DATA_HOME}", "received"), "usernamesubfolders": False, "shared": [], "buddyshared": [], "trustedshared": [], "uploadbandwidth": 50, "use_upload_speed_limit": "unlimited", "uploadlimit": 1000, "uploadlimitalt": 100, "use_download_speed_limit": "unlimited", "downloadlimit": 1000, "downloadlimitalt": 100, "preferfriends": False, "useupslots": False, "uploadslots": 2, "afterfinish": "", "afterfolder": "", "fifoqueue": False, "usecustomban": False, "limitby": True, "customban": "Banned, don't bother retrying", "usecustomgeoblock": False, "customgeoblock": "Sorry, your country is blocked", "queuelimit": 10000, "filelimit": 100, "reveal_buddy_shares": False, "reveal_trusted_shares": False, "friendsnolimits": False, "groupdownloads": "folder_grouping", "groupuploads": "folder_grouping", "geoblock": False, "geoblockcc": [""], "remotedownloads": False, "uploadallowed": 3, "autoclear_downloads": False, "autoclear_uploads": False, "rescanonstartup": True, "enablefilters": False, "downloadregexp": "", "downloadfilters": [ ["desktop.ini", 1], ["*.url", 1], ["thumbs.db", 1], ["albumart(_{........-....-....-....-............}_)?(_?(large|small))?\\.jpg", 0] ], "download_doubleclick": 2, "upload_doubleclick": 2, "downloadsexpanded": True, "uploadsexpanded": True }, "userbrowse": { "expand_folders": True }, "userinfo": { "descr": "''", "pic": "" }, "words": { "censored": [], "autoreplaced": { "teh ": "the ", "taht ": "that ", "tihng": "thing", "youre": "you're", "jsut": "just", "thier": "their", "tihs": "this" }, "censorwords": False, "replacewords": False, "tab": True, "dropdown": False, "characters": 3, "roomnames": False, "buddies": True, "roomusers": True, "commands": True }, "logging": { "debug": False, "debugmodes": [], "debuglogsdir": os.path.join(log_folder_path, "debug"), "logcollapsed": True, "transferslogsdir": os.path.join(log_folder_path, "transfers"), "rooms_timestamp": "%X", "private_timestamp": "%x %X", "log_timestamp": "%x %X", "privatechat": True, "chatrooms": True, "transfers": False, "debug_file_output": False, "roomlogsdir": os.path.join(log_folder_path, "rooms"), "privatelogsdir": os.path.join(log_folder_path, "private"), "readroomlogs": True, "readroomlines": 200, "readprivatelines": 200, "private_chats": [], "rooms": [] }, "privatechat": { "store": True, "users": [] }, "columns": { "file_search": {}, "download": {}, "upload": {}, "user_browse": {}, "buddy_list": {}, "chat_room": {} }, "searches": { "expand_searches": True, "group_searches": "folder_grouping", "maxresults": 150, "enable_history": True, "history": [], "enablefilters": False, "filters_visible": False, "defilter": ["", "", "", "", 0, "", ""], "filtercc": [], "filterin": [], "filterout": [], "filtersize": [], "filterbr": [], "filtertype": [], "filterlength": [], "search_results": True, "max_displayed_results": 1500, "min_search_chars": 3, "private_search_results": True }, "ui": { "language": "", "dark_mode": False, "header_bar": True, "icontheme": "", "chatme": "#908E8B", "chatremote": "", "chatlocal": "", "chatcommand": "#908E8B", "chathilite": "#5288CE", "urlcolor": "#5288CE", "useronline": "#16BB5C", "useraway": "#C9AE13", "useroffline": "#E04F5E", "usernamehotspots": True, "usernamestyle": "bold", "textbg": "", "search": "", "searchq": "GREY", "inputcolor": "", "spellcheck": True, "exitdialog": 1, "tab_default": "", "tab_hilite": "#497EC2", "tab_changed": "#497EC2", "tab_select_previous": True, "tabmain": "Top", "tabrooms": "Top", "tabprivate": "Top", "tabinfo": "Top", "tabbrowse": "Top", "tabsearch": "Top", "globalfont": "", "textviewfont": "", "chatfont": "", "tabclosers": True, "searchfont": "", "listfont": "", "browserfont": "", "transfersfont": "", "last_tab_id": "", "modes_visible": { "search": True, "downloads": True, "uploads": True, "userbrowse": True, "userinfo": True, "private": True, "chatrooms": True, "interests": True }, "modes_order": [ "search", "downloads", "uploads", "userbrowse", "userinfo", "private", "userlist", "chatrooms", "interests" ], "buddylistinchatrooms": "tab", "trayicon": True, "startup_hidden": False, "filemanager": "", "speechenabled": False, "speechprivate": "User %(user)s told you: %(message)s", "speechrooms": "In room %(room)s, user %(user)s said: %(message)s", "speechcommand": "flite -t $", "width": 800, "height": 600, "xposition": -1, "yposition": -1, "maximized": True, "reverse_file_paths": True, "file_size_unit": "" }, "private_rooms": { "rooms": {} }, "urls": { "protocols": {} }, "interests": { "likes": [], "dislikes": [] }, "players": { "npothercommand": "", "npplayer": "mpris", "npformatlist": [], "npformat": "" }, "notifications": { "notification_window_title": True, "notification_tab_colors": False, "notification_popup_sound": False, "notification_popup_file": True, "notification_popup_folder": True, "notification_popup_private_message": True, "notification_popup_chatroom": False, "notification_popup_chatroom_mention": True, "notification_popup_wish": True }, "plugins": { "enable": True, "enabled": [] }, "statistics": { "since_timestamp": 0, "started_downloads": 0, "completed_downloads": 0, "downloaded_size": 0, "started_uploads": 0, "completed_uploads": 0, "uploaded_size": 0 } } self.removed_options = { "transfers": ( "pmqueueddir", "autoretry_downloads", "shownotification", "shownotificationperfolder", "prioritize", "sharedownloaddir", "geopanic", "enablebuddyshares", "friendsonly", "enabletransferbuttons", "uselimit", "usealtlimits", "uploadsinsubdirs", "reverseorder", "lock", "buddysharestrustedonly" ), "server": ( "lastportstatuscheck", "serverlist", "enc", "fallbackencodings", "roomencoding", "userencoding", "firewalled" ), "ui": ( "enabletrans", "mozembed", "open_in_mozembed", "tooltips", "transalpha", "transfilter", "transtint", "soundenabled", "soundtheme", "soundcommand", "tab_colors", "tab_icons", "searchoffline", "chat_hidebuttons", "tab_reorderable", "private_search_results", "private_shares", "labelmain", "labelrooms", "labelprivate", "labelinfo", "labelbrowse", "labelsearch", "notexists", "roomlistcollapsed", "showaway", "decimalsep", "urgencyhint", "tab_status_icons", "file_path_tooltips" ), "columns": ( "downloads", "uploads", "search", "search_widths", "downloads_columns", "downloads_widths", "uploads_columns", "uploads_widths", "userbrowse", "userbrowse_widths", "userlist", "userlist_widths", "chatrooms", "chatrooms_widths", "download_columns", "download_widths", "upload_columns", "upload_widths", "filesearch_columns", "filesearch_widths", "hideflags" ), "searches": ( "distrib_timer", "distrib_ignore", "reopen_tabs", "max_stored_results", "re_filter", "remove_special_chars" ), "userinfo": ( "descrutf8", ), "private_rooms": ( "enabled", ), "logging": ( "logsdir", "timestamps" ), "ticker": ( "default", "rooms", "hide" ), "language": ( "language", "setlanguage" ), "urls": ( "urlcatching", "humanizeurls" ), "notifications": ( "notification_tab_icons", ), "words": ( "cycle", "onematch", "aliases", "censorfill" ), "players": ( "default", ) } self.create_config_folder() self.create_data_folder() load_file(self.config_file_path, self._parse_config) # Update config values from file self._set_config() language = self.sections["ui"]["language"] if language: apply_translations(language) from pynicotine.logfacility import log log.init_log_levels() log.update_folder_paths() log.add_debug("Using configuration: %(file)s", {"file": self.config_file_path}) events.connect("quit", self._quit) def _parse_config(self, file_path): """Parses the config file.""" with open(encode_path(file_path), "a+", encoding="utf-8") as file_handle: file_handle.seek(0) self._parser.read_file(file_handle) def need_config(self): # Check if we have specified a username or password if not self.sections["server"]["login"] or not self.sections["server"]["passw"]: return True return False def _set_config(self): """Set config values parsed from file earlier.""" from ast import literal_eval from pynicotine.logfacility import log for i in self._parser.sections(): for j, val in self._parser.items(i, raw=True): # Check if config section exists in defaults if i not in self.defaults and i not in self.removed_options: log.add_debug("Unknown config section '%s'", i) # Check if config option exists in defaults elif (j not in self.defaults.get(i, {}) and j not in self.removed_options.get(i, {}) and i != "plugins" and j != "filter"): log.add_debug("Unknown config option '%(option)s' in section '%(section)s'", {"option": j, "section": i}) else: # Attempt to get the default value for a config option. If there's no default # value, it's a custom option from a plugin, so no checks are needed. try: default_val = self.defaults[i][j] except KeyError: try: val = literal_eval(val) except Exception: pass self.sections[i][j] = val continue # Check that the value of a config option is of the same type as the default # value. If that's not the case, reset the value. try: if not isinstance(default_val, str): # Values are always read as strings, evaluate them if they aren't # supposed to remain as strings eval_val = literal_eval(val) else: eval_val = val if i != "plugins" and j != "filter": if (isinstance(eval_val, type(default_val)) or (isinstance(default_val, bool) and isinstance(eval_val, int) and eval_val in {0, 1})): # Value is valid pass else: raise TypeError("Invalid config value type detected") self.sections[i][j] = eval_val except Exception: # Value was unexpected, reset option self.sections[i][j] = default_val log.add("Config error: Couldn't decode '%s' section '%s' value '%s', value has been reset", ( (i[:120] + "…") if len(i) > 120 else i, (j[:120] + "…") if len(j) > 120 else j, (val[:120] + "…") if len(val) > 120 else val )) # Add any default options not present in the config file for section, options in self.defaults.items(): if section not in self.sections: self.sections[section] = {} for option, value in options.items(): if option in self.sections[section]: continue # Migrate download speed limit preference (3.3.0) if option == "use_download_speed_limit" and section == "transfers": if self.sections[section].get("usealtlimits", False): use_speed_limit = "alternative" elif self.sections[section].get("downloadlimit", 0) > 0: use_speed_limit = "primary" else: use_speed_limit = "unlimited" self.sections[section][option] = use_speed_limit continue # Migrate upload speed limit preference (3.3.0) if option == "use_upload_speed_limit" and section == "transfers": if self.sections[section].get("usealtlimits", False): use_speed_limit = "alternative" elif self.sections[section].get("uselimit", False): use_speed_limit = "primary" else: use_speed_limit = "unlimited" self.sections[section][option] = use_speed_limit continue # Set default value self.sections[section][option] = value # Convert special download folder share to regular share if self.sections["transfers"].get("sharedownloaddir", False): shares = self.sections["transfers"]["shared"] virtual_name = "Downloaded" shared_folder = (virtual_name, self.sections["transfers"]["downloaddir"]) if shared_folder not in shares and virtual_name not in (x[0] for x in shares): shares.append(shared_folder) # Migrate old trusted buddy shares to new format (3.3.0) if self.sections["transfers"].get("buddysharestrustedonly", False): buddy_shares = self.sections["transfers"]["buddyshared"] self.sections["transfers"]["trustedshared"] = buddy_shares[:] buddy_shares.clear() # Migrate old media player command to new format (3.3.0) old_default_player = self.sections["players"].get("default", None) if old_default_player: self.sections["urls"]["protocols"]["audio"] = old_default_player # Enable previously disabled header bar on macOS (3.3.0) if sys.platform == "darwin" and old_default_player is not None: self.sections["ui"]["header_bar"] = True # Check if server value is valid server_addr = self.sections["server"]["server"] if (len(server_addr) != 2 or not isinstance(server_addr[0], str) or not isinstance(server_addr[1], int)): self.sections["server"]["server"] = self.defaults["server"]["server"] # Check if port range value is valid port_range = self.sections["server"]["portrange"] if (len(port_range) != 2 or not all(isinstance(i, int) for i in port_range)): self.sections["server"]["portrange"] = self.defaults["server"]["portrange"] self.config_loaded = True def _write_config_callback(self, file_path): self._parser.write(file_path) def write_configuration(self): if not self.config_loaded: return # Write new config options to file for section, options in self.sections.items(): if not self._parser.has_section(section): self._parser.add_section(section) for option, value in options.items(): if value is None: value = "" self._parser.set(section, option, str(value)) # Remove legacy config options for section, options in self.removed_options.items(): if not self._parser.has_section(section): continue for option in options: self._parser.remove_option(section, option) if not self.create_config_folder(): return from pynicotine.logfacility import log write_file_and_backup(self.config_file_path, self._write_config_callback, protect=True) log.add_debug("Saved configuration: %(file)s", {"file": self.config_file_path}) def write_config_backup(self, file_path): from pynicotine.logfacility import log if not file_path.endswith(".tar.bz2"): file_path += ".tar.bz2" file_path_encoded = encode_path(file_path) try: if os.path.exists(file_path_encoded): raise FileExistsError(f"File {file_path} exists") import tarfile with tarfile.open(file_path_encoded, "w:bz2") as tar: if not os.path.exists(file_path_encoded): raise FileNotFoundError("Config file missing") tar.add(self.config_file_path) except Exception as error: log.add(_("Error backing up config: %s"), error) return log.add(_("Config backed up to: %s"), file_path) def _quit(self): if self._parser is not None: self._parser.clear() self.sections.clear() self.defaults.clear() self.removed_options.clear() self.config_loaded = False config = Config() nicotine-plus-3.3.4/pynicotine/core.py000066400000000000000000000302761461625273200200150ustar00rootroot00000000000000# COPYRIGHT (C) 2020-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import os import sys import threading import pynicotine from pynicotine.config import config from pynicotine.events import events from pynicotine.logfacility import log class Core: """Core handles initialization, quitting, as well as the various components used by the application. """ def __init__(self): self.shares = None self.users = None self.network_filter = None self.statistics = None self.search = None self.downloads = None self.uploads = None self.interests = None self.userbrowse = None self.userinfo = None self.buddies = None self.privatechat = None self.chatrooms = None self.pluginhandler = None self.now_playing = None self.portmapper = None self.notifications = None self.update_checker = None self._network_thread = None self.cli_interface_address = None self.cli_listen_port = None self.enabled_components = set() def init_components(self, enabled_components=None): # Enable all components by default if enabled_components is None: enabled_components = { "error_handler", "signal_handler", "cli", "portmapper", "network_thread", "shares", "users", "notifications", "network_filter", "now_playing", "statistics", "update_checker", "search", "downloads", "uploads", "interests", "userbrowse", "userinfo", "buddies", "chatrooms", "privatechat", "pluginhandler" } self.enabled_components = enabled_components if "error_handler" in enabled_components: self._init_error_handler() if "signal_handler" in enabled_components: self._init_signal_handler() if "cli" in enabled_components: from pynicotine.cli import cli cli.enable_logging() config.load_config() events.enable() for event_name, callback in ( ("quit", self._quit), ("server-reconnect", self.connect) ): events.connect(event_name, callback) script_folder_path = os.path.dirname(__file__) log.add(_("Loading %(program)s %(version)s"), {"program": "Python", "version": sys.version.split()[0]}) log.add_debug("Using %(program)s executable: %(exe)s", {"program": "Python", "exe": str(sys.executable)}) log.add_debug("Using %(program)s executable: %(exe)s", { "program": pynicotine.__application_name__, "exe": script_folder_path}) log.add(_("Loading %(program)s %(version)s"), { "program": pynicotine.__application_name__, "version": pynicotine.__version__}) if "portmapper" in enabled_components: from pynicotine.portmapper import PortMapper self.portmapper = PortMapper() if "network_thread" in enabled_components: from pynicotine.slskproto import NetworkThread self._network_thread = NetworkThread() else: events.connect("schedule-quit", self._schedule_quit) if "shares" in enabled_components: # Initialized before "users" component in order to send share stats to server # before watching our username, otherwise we get outdated stats back. from pynicotine.shares import Shares self.shares = Shares() if "users" in enabled_components: from pynicotine.users import Users self.users = Users() if "notifications" in enabled_components: from pynicotine.notifications import Notifications self.notifications = Notifications() if "network_filter" in enabled_components: from pynicotine.networkfilter import NetworkFilter self.network_filter = NetworkFilter() if "now_playing" in enabled_components: from pynicotine.nowplaying import NowPlaying self.now_playing = NowPlaying() if "statistics" in enabled_components: from pynicotine.transfers import Statistics self.statistics = Statistics() if "update_checker" in enabled_components: self.update_checker = UpdateChecker() if "search" in enabled_components: from pynicotine.search import Search self.search = Search() if "downloads" in enabled_components: from pynicotine.downloads import Downloads self.downloads = Downloads() if "uploads" in enabled_components: from pynicotine.uploads import Uploads self.uploads = Uploads() if "interests" in enabled_components: from pynicotine.interests import Interests self.interests = Interests() if "userbrowse" in enabled_components: from pynicotine.userbrowse import UserBrowse self.userbrowse = UserBrowse() if "userinfo" in enabled_components: from pynicotine.userinfo import UserInfo self.userinfo = UserInfo() if "buddies" in enabled_components: from pynicotine.buddies import Buddies self.buddies = Buddies() if "chatrooms" in enabled_components: from pynicotine.chatrooms import ChatRooms self.chatrooms = ChatRooms() if "privatechat" in enabled_components: from pynicotine.privatechat import PrivateChat self.privatechat = PrivateChat() if "pluginhandler" in enabled_components: from pynicotine.pluginsystem import PluginHandler self.pluginhandler = PluginHandler() def _init_signal_handler(self): """Handle Ctrl+C and "kill" exit gracefully.""" import signal for signal_type in (signal.SIGINT, signal.SIGTERM): signal.signal(signal_type, self.quit) def _init_error_handler(self): def thread_excepthook(args): sys.excepthook(*args[:3]) if hasattr(threading, "excepthook"): threading.excepthook = thread_excepthook return # Workaround for Python <= 3.7 init_thread = threading.Thread.__init__ def init_thread_excepthook(self, *args, **kwargs): init_thread(self, *args, **kwargs) run_thread = self.run def run_with_excepthook(*args2, **kwargs2): try: run_thread(*args2, **kwargs2) except Exception: thread_excepthook(sys.exc_info()) self.run = run_with_excepthook threading.Thread.__init__ = init_thread_excepthook def start(self): if "cli" in self.enabled_components: from pynicotine.cli import cli cli.enable_prompt() events.emit("start") def setup(self): events.emit("setup") def confirm_quit(self, only_on_active_uploads=False): events.emit("confirm-quit", only_on_active_uploads) def quit(self, signal_type=None, _frame=None, should_finish_uploads=False): if not should_finish_uploads: import signal log.add(_("Quitting %(program)s %(version)s, %(status)s…"), { "program": pynicotine.__application_name__, "version": pynicotine.__version__, "status": _("terminating") if signal_type == signal.SIGTERM else _("application closing") }) # Allow the networking thread to finish up before quitting events.emit("schedule-quit", should_finish_uploads) def _schedule_quit(self, _should_finish_uploads): events.emit("quit") def _quit(self): self._network_thread = None self.shares = None self.users = None self.portmapper = None self.notifications = None self.network_filter = None self.now_playing = None self.statistics = None self.update_checker = None self.search = None self.downloads = None self.uploads = None self.interests = None self.userbrowse = None self.userinfo = None self.buddies = None self.chatrooms = None self.privatechat = None self.pluginhandler = None config.write_configuration() log.add(_("Quit %(program)s %(version)s!"), { "program": pynicotine.__application_name__, "version": pynicotine.__version__ }) def connect(self): if config.need_config(): log.add(_("You need to specify a username and password before connecting…")) self.setup() return from pynicotine.slskmessages import ServerConnect events.emit("enable-message-queue") self.send_message_to_network_thread(ServerConnect( addr=config.sections["server"]["server"], login=(config.sections["server"]["login"], config.sections["server"]["passw"]), interface_name=config.sections["server"]["interface"], interface_address=self.cli_interface_address, listen_port=self.cli_listen_port or config.sections["server"]["portrange"][0], portmapper=self.portmapper )) def disconnect(self): from pynicotine.slskmessages import ServerDisconnect self.send_message_to_network_thread(ServerDisconnect()) def send_message_to_network_thread(self, message): """Sends message to the networking thread to inform about something.""" events.emit("queue-network-message", message) def send_message_to_server(self, message): """Sends message to the server.""" events.emit("queue-network-message", message) def send_message_to_peer(self, username, message): """Sends message to a peer.""" message.username = username events.emit("queue-network-message", message) class UpdateChecker: def __init__(self): self._thread = None def check(self): if self._thread and self._thread.is_alive(): return self._thread = threading.Thread(target=self._check, name="UpdateChecker", daemon=True) self._thread.start() def _check(self): try: error_message = None h_latest_version, latest_version = self.retrieve_latest_version() current_version = self.create_integer_version(pynicotine.__version__) is_outdated = (current_version < latest_version) except Exception as error: error_message = str(error) h_latest_version = None is_outdated = False events.emit_main_thread("check-latest-version", h_latest_version, is_outdated, error_message) @staticmethod def create_integer_version(version): major, minor, patch = version.split(".")[:3] stable = 1 if "dev" in version or "rc" in version: # Example: 2.0.1.dev1 # A dev version will be one less than a stable version stable = 0 return (int(major) << 24) + (int(minor) << 16) + (int(patch.split("rc", 1)[0]) << 8) + stable @classmethod def retrieve_latest_version(cls): import json from urllib.request import urlopen with urlopen("https://pypi.org/pypi/nicotine-plus/json", timeout=5) as response: response_body = response.read().decode("utf-8") data = json.loads(response_body) h_latest_version = data["info"]["version"] latest_version = cls.create_integer_version(h_latest_version) return h_latest_version, latest_version core = Core() nicotine-plus-3.3.4/pynicotine/downloads.py000066400000000000000000001463461461625273200210650ustar00rootroot00000000000000# COPYRIGHT (C) 2020-2024 Nicotine+ Contributors # COPYRIGHT (C) 2016-2017 Michael Labouebe # COPYRIGHT (C) 2016 Mutnick # COPYRIGHT (C) 2013 eLvErDe # COPYRIGHT (C) 2008-2012 quinox # COPYRIGHT (C) 2009 hedonist # COPYRIGHT (C) 2006-2009 daelstorm # COPYRIGHT (C) 2003-2004 Hyriand # COPYRIGHT (C) 2001-2003 Alexander Kanavin # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import os import re import shutil import time try: # Try faster module import first, if available from _md5 import md5 # pylint: disable=import-private-name except ImportError: from hashlib import md5 from collections import defaultdict from pynicotine import slskmessages from pynicotine.config import config from pynicotine.core import core from pynicotine.events import events from pynicotine.logfacility import log from pynicotine.slskmessages import TransferRejectReason from pynicotine.transfers import Transfer from pynicotine.transfers import Transfers from pynicotine.transfers import TransferStatus from pynicotine.utils import execute_command from pynicotine.utils import clean_file from pynicotine.utils import clean_path from pynicotine.utils import encode_path from pynicotine.utils import truncate_string_byte class RequestedFolder: __slots__ = ("username", "folder_path", "download_folder_path", "request_timer_id", "has_retried", "legacy_attempt") def __init__(self, username, folder_path, download_folder_path): self.username = username self.folder_path = folder_path self.download_folder_path = download_folder_path self.request_timer_id = None self.has_retried = False self.legacy_attempt = False class Downloads(Transfers): def __init__(self): super().__init__(transfers_file_path=os.path.join(config.data_folder_path, "downloads.json")) self._requested_folders = defaultdict(dict) self._requested_folder_token = 0 self._folder_basename_byte_limits = {} self._pending_queue_messages = {} self._download_queue_timer_id = None self._retry_connection_downloads_timer_id = None self._retry_io_downloads_timer_id = None for event_name, callback in ( ("download-file-error", self._download_file_error), ("file-connection-closed", self._file_connection_closed), ("file-transfer-init", self._file_transfer_init), ("file-download-progress", self._file_download_progress), ("folder-contents-response", self._folder_contents_response), ("peer-connection-closed", self._peer_connection_closed), ("peer-connection-error", self._peer_connection_error), ("place-in-queue-response", self._place_in_queue_response), ("set-connection-stats", self._set_connection_stats), ("shares-ready", self._shares_ready), ("transfer-request", self._transfer_request), ("upload-denied", self._upload_denied), ("upload-failed", self._upload_failed), ("user-status", self._user_status) ): events.connect(event_name, callback) def _start(self): super()._start() self.update_download_filters() def _quit(self): super()._quit() self._folder_basename_byte_limits.clear() self._requested_folder_token = 0 def _server_login(self, msg): if not msg.success: return super()._server_login(msg) # Request queue position of queued downloads every 3 minutes self._download_queue_timer_id = events.schedule(delay=180, callback=self._check_download_queue, repeat=True) # Retry downloads failed due to connection issues every 3 minutes self._retry_connection_downloads_timer_id = events.schedule( delay=180, callback=self._retry_failed_connection_downloads, repeat=True) # Retry downloads failed due to file I/O errors every 15 minutes self._retry_io_downloads_timer_id = events.schedule( delay=900, callback=self._retry_failed_io_downloads, repeat=True) def _server_disconnect(self, msg): super()._server_disconnect(msg) for timer_id in ( self._download_queue_timer_id, self._retry_connection_downloads_timer_id, self._retry_io_downloads_timer_id ): events.cancel_scheduled(timer_id) for user_requested_folders in self._requested_folders.values(): for requested_folder in user_requested_folders.values(): if requested_folder.request_timer_id is None: continue events.cancel_scheduled(requested_folder.request_timer_id) requested_folder.request_timer_id = None self._requested_folders.clear() # Load Transfers # def _get_transfer_list_file_path(self): downloads_file_1_4_2 = os.path.join(config.data_folder_path, "config.transfers.pickle") downloads_file_1_4_1 = os.path.join(config.data_folder_path, "transfers.pickle") if os.path.exists(encode_path(self.transfers_file_path)): # New file format return self.transfers_file_path if os.path.exists(encode_path(downloads_file_1_4_2)): # Nicotine+ 1.4.2+ return downloads_file_1_4_2 if os.path.exists(encode_path(downloads_file_1_4_1)): # Nicotine <=1.4.1 return downloads_file_1_4_1 # Fall back to new file format return self.transfers_file_path def _load_transfers(self): load_func = self._load_transfers_file transfers_file_path = self._get_transfer_list_file_path() if transfers_file_path != self.transfers_file_path: load_func = self._load_legacy_transfers_file for transfer in self._get_stored_transfers(transfers_file_path, load_func): self._append_transfer(transfer) if transfer.status == TransferStatus.USER_LOGGED_OFF: # Mark transfer as failed in order to resume it when connected self._fail_transfer(transfer) # Filters/Limits # def update_download_filters(self): failed = {} outfilter = "(\\\\(" download_filters = sorted(config.sections["transfers"]["downloadfilters"]) # Get Filters from config file and check their escaped status # Test if they are valid regular expressions and save error messages for item in download_filters: dfilter, escaped = item if escaped: dfilter = re.escape(dfilter) dfilter = dfilter.replace("\\*", ".*") try: re.compile(f"({dfilter})") outfilter += dfilter if item is not download_filters[-1]: outfilter += "|" except re.error as error: failed[dfilter] = error outfilter += ")$)" try: re.compile(outfilter) except re.error as error: # Strange that individual filters _and_ the composite filter both fail log.add(_("Error: Download Filter failed! Verify your filters. Reason: %s"), error) config.sections["transfers"]["downloadregexp"] = "" return config.sections["transfers"]["downloadregexp"] = outfilter # Send error messages for each failed filter to log window if not failed: return errors = "" for dfilter, error in failed.items(): errors += f"Filter: {dfilter} Error: {error} " log.add(_("Error: %(num)d Download filters failed! %(error)s "), {"num": len(failed), "error": errors}) def update_transfer_limits(self): events.emit("update-download-limits") use_speed_limit = config.sections["transfers"]["use_download_speed_limit"] if use_speed_limit == "primary": speed_limit = config.sections["transfers"]["downloadlimit"] elif use_speed_limit == "alternative": speed_limit = config.sections["transfers"]["downloadlimitalt"] else: speed_limit = 0 core.send_message_to_network_thread(slskmessages.SetDownloadLimit(speed_limit)) # Transfer Actions # def _append_transfer(self, transfer): self.transfers[transfer.username + transfer.virtual_path] = transfer def _update_transfer(self, transfer, update_parent=True): events.emit("update-download", transfer, update_parent) def _enqueue_transfer(self, transfer, bypass_filter=False): username = transfer.username virtual_path = transfer.virtual_path size = transfer.size if not bypass_filter and config.sections["transfers"]["enablefilters"]: try: downloadregexp = re.compile(config.sections["transfers"]["downloadregexp"], flags=re.IGNORECASE) if downloadregexp.search(virtual_path) is not None: log.add_transfer("Filtering: %s", virtual_path) if not self._auto_clear_transfer(transfer): self._abort_transfer(transfer, status=TransferStatus.FILTERED) return False except re.error: pass if slskmessages.UserStatus.OFFLINE in (core.users.login_status, core.users.statuses.get(username)): # Either we are offline or the user we want to download from is self._abort_transfer(transfer, status=TransferStatus.USER_LOGGED_OFF) return False log.add_transfer("Adding file %(filename)s from user %(user)s to download queue", { "filename": virtual_path, "user": username }) _file_path, file_exists = self.get_complete_download_file_path( username, virtual_path, size, transfer.folder_path) if file_exists: self._finish_transfer(transfer, already_exists=True) return False super()._enqueue_transfer(transfer) msg = slskmessages.QueueUpload(virtual_path, transfer.legacy_attempt) if not core.shares.initialized: # Remain queued locally until our shares have initialized, to prevent invalid # messages about not sharing any files self._pending_queue_messages[transfer] = msg else: core.send_message_to_peer(username, msg) return True def _enqueue_limited_transfers(self, username): num_limited_transfers = 0 queue_size_limit = self._user_queue_limits.get(username) if queue_size_limit is None: return for download in self.failed_users.get(username, {}).copy().values(): if download.status != TransferRejectReason.QUEUED: continue if num_limited_transfers >= queue_size_limit: # Only enqueue a small number of downloads at a time return self._unfail_transfer(download) if self._enqueue_transfer(download): self._update_transfer(download) num_limited_transfers += 1 # No more limited downloads del self._user_queue_limits[username] def _dequeue_transfer(self, transfer): super()._dequeue_transfer(transfer) if transfer in self._pending_queue_messages: del self._pending_queue_messages[transfer] def _file_downloaded_actions(self, username, file_path): if config.sections["notifications"]["notification_popup_file"]: core.notifications.show_download_notification( _("%(file)s downloaded from %(user)s") % { "user": username, "file": os.path.basename(file_path) }, title=_("File Downloaded") ) command = config.sections["transfers"]["afterfinish"] if command: try: execute_command(command, file_path, hidden=True) log.add(_("Executed: %s"), command) except Exception as error: log.add(_("Executing '%(command)s' failed: %(error)s"), { "command": command, "error": error }) def _folder_downloaded_actions(self, username, folder_path): if not folder_path: return if folder_path == self.get_default_download_folder(username): return for downloads in ( self.queued_users.get(username, {}), self.active_users.get(username, {}), self.failed_users.get(username, {}) ): for download in downloads.values(): if download.folder_path == folder_path: return events.emit("folder-download-finished", folder_path) if config.sections["notifications"]["notification_popup_folder"]: core.notifications.show_download_notification( _("%(folder)s downloaded from %(user)s") % { "user": username, "folder": folder_path }, title=_("Folder Downloaded") ) command = config.sections["transfers"]["afterfolder"] if command: try: execute_command(command, folder_path, hidden=True) log.add(_("Executed on folder: %s"), command) except Exception as error: log.add(_("Executing '%(command)s' failed: %(error)s"), { "command": command, "error": error }) def _move_finished_transfer(self, transfer): download_folder_path = transfer.folder_path or self.get_default_download_folder(transfer.username) download_folder_path_encoded = encode_path(download_folder_path) download_basename = self.get_download_basename(transfer.virtual_path, download_folder_path, avoid_conflict=True) download_file_path = os.path.join(download_folder_path, download_basename) incomplete_file_path_encoded = transfer.file_handle.name self._close_file(transfer) try: if not os.path.isdir(download_folder_path_encoded): os.makedirs(download_folder_path_encoded) shutil.move(incomplete_file_path_encoded, encode_path(download_file_path)) except OSError as error: log.add( _("Couldn't move '%(tempfile)s' to '%(file)s': %(error)s"), { "tempfile": incomplete_file_path_encoded.decode("utf-8", "replace"), "file": download_file_path, "error": error } ) self._abort_transfer(transfer, status=TransferStatus.DOWNLOAD_FOLDER_ERROR) core.notifications.show_download_notification( str(error), title=_("Download Folder Error"), high_priority=True ) return None return download_file_path def _finish_transfer(self, transfer, already_exists=False): username = transfer.username virtual_path = transfer.virtual_path self._deactivate_transfer(transfer) if not already_exists: download_file_path = self._move_finished_transfer(transfer) if download_file_path is None: # Download was not moved successfully return transfer.status = TransferStatus.FINISHED transfer.current_byte_offset = transfer.size if not self._auto_clear_transfer(transfer): self._update_transfer(transfer) if already_exists: log.add_transfer("File %s is already downloaded", virtual_path) return core.statistics.append_stat_value("completed_downloads", 1) # Attempt to show notification and execute commands self._file_downloaded_actions(username, download_file_path) self._folder_downloaded_actions(username, transfer.folder_path) core.pluginhandler.download_finished_notification(username, virtual_path, download_file_path) log.add_download( _("Download finished: user %(user)s, file %(file)s"), { "user": username, "file": virtual_path } ) def _abort_transfer(self, transfer, denied_message=None, status=None, update_parent=True): transfer.legacy_attempt = False transfer.size_changed = False if transfer.sock is not None: core.send_message_to_network_thread(slskmessages.CloseConnection(transfer.sock)) if transfer.file_handle is not None: self._close_file(transfer) log.add_download( _("Download aborted, user %(user)s file %(file)s"), { "user": transfer.username, "file": transfer.virtual_path } ) self._deactivate_transfer(transfer) self._dequeue_transfer(transfer) self._unfail_transfer(transfer) if not status: return transfer.status = status if status not in {TransferStatus.FINISHED, TransferStatus.FILTERED, TransferStatus.PAUSED}: self._fail_transfer(transfer) events.emit("abort-download", transfer, status, update_parent) def _auto_clear_transfer(self, transfer): if config.sections["transfers"]["autoclear_downloads"]: self._clear_transfer(transfer) return True return False def _clear_transfer(self, transfer, update_parent=True): self._abort_transfer(transfer) log.add_transfer("Clearing download %(path)s from user %(user)s", { "path": transfer.virtual_path, "user": transfer.username }) try: del self.transfers[transfer.username + transfer.virtual_path] except KeyError: log.add(("FIXME: failed to remove download %(path)s from user %(user)s, not " "present in list"), { "path": transfer.virtual_path, "user": transfer.username }) events.emit("clear-download", transfer, update_parent) def _check_download_queue(self): for download in self.queued_transfers: core.send_message_to_peer( download.username, slskmessages.PlaceInQueueRequest(download.virtual_path, download.legacy_attempt) ) def _retry_failed_connection_downloads(self): statuses = { TransferStatus.CONNECTION_CLOSED, TransferStatus.CONNECTION_TIMEOUT, TransferRejectReason.PENDING_SHUTDOWN} for failed_downloads in self.failed_users.copy().values(): for download in failed_downloads.copy().values(): if download.status not in statuses: continue self._unfail_transfer(download) if self._enqueue_transfer(download): self._update_transfer(download) def _retry_failed_io_downloads(self): statuses = { TransferStatus.DOWNLOAD_FOLDER_ERROR, TransferStatus.LOCAL_FILE_ERROR, TransferRejectReason.FILE_READ_ERROR} for failed_downloads in self.failed_users.copy().values(): for download in failed_downloads.copy().values(): if download.status not in statuses: continue self._unfail_transfer(download) if self._enqueue_transfer(download): self._update_transfer(download) def can_upload(self, username): transfers = config.sections["transfers"] if not transfers["remotedownloads"]: return False if transfers["uploadallowed"] == 1: # Everyone return True if transfers["uploadallowed"] == 2 and username in core.buddies.users: # Buddies return True if transfers["uploadallowed"] == 3: # Trusted buddies user_data = core.buddies.users.get(username) if user_data and user_data.is_trusted: return True return False def get_folder_destination(self, username, folder_path, root_folder_path=None, download_folder_path=None): # Remove parent folders of the requested folder from path parent_folder_path = root_folder_path if root_folder_path else folder_path removed_parent_folders = parent_folder_path.rpartition("\\")[0] target_folders = folder_path.replace(removed_parent_folders, "").lstrip("\\").replace("\\", os.sep) # Check if a custom download location was specified if not download_folder_path: requested_folder = self._requested_folders.get(username, {}).get(folder_path) if requested_folder is not None and requested_folder.download_folder_path: download_folder_path = requested_folder.download_folder_path else: download_folder_path = self.get_default_download_folder(username) # Merge download path with target folder name return os.path.join(download_folder_path, target_folders) def get_default_download_folder(self, username=None): download_folder_path = os.path.normpath(os.path.expandvars(config.sections["transfers"]["downloaddir"])) # Check if username subfolders should be created for downloads if username and config.sections["transfers"]["usernamesubfolders"]: download_folder_path = os.path.join(download_folder_path, clean_file(username)) return download_folder_path def get_incomplete_download_folder(self): return os.path.normpath(os.path.expandvars(config.sections["transfers"]["incompletedir"])) def get_basename_byte_limit(self, folder_path): max_bytes = self._folder_basename_byte_limits.get(folder_path) if max_bytes is None: try: max_bytes = os.statvfs(encode_path(folder_path)).f_namemax except (AttributeError, OSError): max_bytes = 255 self._folder_basename_byte_limits[folder_path] = max_bytes return max_bytes def get_download_basename(self, virtual_path, download_folder_path, avoid_conflict=False): """Returns the download basename for a virtual file path.""" max_bytes = self.get_basename_byte_limit(download_folder_path) basename = clean_file(virtual_path.rpartition("\\")[-1]) basename_no_extension, separator, extension = basename.rpartition(".") extension = separator + extension basename_limit = max_bytes - len(extension.encode("utf-8")) basename_no_extension = truncate_string_byte(basename_no_extension, max(0, basename_limit)) if basename_limit < 0: extension = truncate_string_byte(extension, max_bytes) corrected_basename = basename_no_extension + extension if not avoid_conflict: return corrected_basename counter = 1 while os.path.exists(encode_path(os.path.join(download_folder_path, corrected_basename))): corrected_basename = f"{basename_no_extension} ({counter}){extension}" counter += 1 return corrected_basename def get_complete_download_file_path(self, username, virtual_path, size, download_folder_path=None): """Returns the download path of a complete download, if available.""" if not download_folder_path: download_folder_path = self.get_default_download_folder(username) basename = self.get_download_basename(virtual_path, download_folder_path) basename_no_extension, separator, extension = basename.rpartition(".") extension = separator + extension download_file_path = os.path.join(download_folder_path, basename) file_exists = False counter = 1 while os.path.exists(encode_path(download_file_path)): if os.stat(encode_path(download_file_path)).st_size == size: # Found a previous download with a matching file size file_exists = True break basename = f"{basename_no_extension} ({counter}){extension}" download_file_path = os.path.join(download_folder_path, basename) counter += 1 return download_file_path, file_exists def get_incomplete_download_file_path(self, username, virtual_path): """Returns the path to store a download while it's still transferring.""" md5sum = md5() md5sum.update((virtual_path + username).encode("utf-8")) prefix = f"INCOMPLETE{md5sum.hexdigest()}" # Ensure file name length doesn't exceed file system limit incomplete_folder_path = self.get_incomplete_download_folder() max_bytes = self.get_basename_byte_limit(incomplete_folder_path) basename = clean_file(virtual_path.rpartition("\\")[-1]) basename_no_extension, separator, extension = basename.rpartition(".") extension = separator + extension basename_limit = max_bytes - len(prefix) - len(extension.encode("utf-8")) basename_no_extension = truncate_string_byte(basename_no_extension, max(0, basename_limit)) if basename_limit < 0: extension = truncate_string_byte(extension, max_bytes - len(prefix)) return os.path.join(incomplete_folder_path, prefix + basename_no_extension + extension) def get_current_download_file_path(self, transfer): """Returns the current file path of a download.""" file_path, file_exists = self.get_complete_download_file_path( transfer.username, transfer.virtual_path, transfer.size, transfer.folder_path) if file_exists or transfer.status == TransferStatus.FINISHED: return file_path return self.get_incomplete_download_file_path(transfer.username, transfer.virtual_path) def enqueue_folder(self, username, folder_path, download_folder_path=None): requested_folder = self._requested_folders.get(username, {}).get(folder_path) if requested_folder is None: self._requested_folders[username][folder_path] = requested_folder = RequestedFolder( username, folder_path, download_folder_path ) # First timeout is shorter to get a response sooner in case the first request # failed. Second timeout is longer in case the response is delayed. timeout = 60 if requested_folder.has_retried else 15 if requested_folder.request_timer_id is not None: events.cancel_scheduled(requested_folder.request_timer_id) requested_folder.request_timer_id = None requested_folder.request_timer_id = events.schedule( delay=timeout, callback=self._requested_folder_timeout, callback_args=(requested_folder,) ) log.add_transfer("Requesting contents of folder %(path)s from user %(user)s", { "path": folder_path, "user": username }) self._requested_folder_token = slskmessages.increment_token(self._requested_folder_token) core.send_message_to_peer( username, slskmessages.FolderContentsRequest( folder_path, self._requested_folder_token, legacy_client=requested_folder.legacy_attempt ) ) def enqueue_download(self, username, virtual_path, folder_path=None, size=0, file_attributes=None, bypass_filter=False): transfer = self.transfers.get(username + virtual_path) if folder_path: folder_path = clean_path(folder_path) else: folder_path = self.get_default_download_folder(username) if transfer is not None and transfer.folder_path != folder_path and transfer.status == TransferStatus.FINISHED: # Only one user + virtual path transfer possible at a time, remove the old one self._clear_transfer(transfer, update_parent=False) transfer = None if transfer is not None: # Duplicate download found, stop here return transfer = Transfer(username, virtual_path, folder_path, size, file_attributes) self._append_transfer(transfer) if self._enqueue_transfer(transfer, bypass_filter=bypass_filter): self._update_transfer(transfer) def retry_download(self, transfer, bypass_filter=False): username = transfer.username active_downloads = self.active_users.get(username, {}).values() if transfer in active_downloads or transfer.status == TransferStatus.FINISHED: # Don't retry active or finished downloads return self._dequeue_transfer(transfer) self._unfail_transfer(transfer) if self._enqueue_transfer(transfer, bypass_filter=bypass_filter): self._update_transfer(transfer) def retry_downloads(self, downloads): num_downloads = len(downloads) for download in downloads: # Provide a way to bypass download filters in case the user actually wants a file. # To avoid accidentally bypassing filters, ensure that only a single file is selected, # and it has the "Filtered" status. bypass_filter = (num_downloads == 1 and download.status == TransferStatus.FILTERED) self.retry_download(download, bypass_filter) def abort_downloads(self, downloads, status=TransferStatus.PAUSED): ignored_statuses = {status, TransferStatus.FINISHED} for download in downloads: if download.status not in ignored_statuses: self._abort_transfer(download, status=status, update_parent=False) events.emit("abort-downloads", downloads, status) def clear_downloads(self, downloads=None, statuses=None, clear_deleted=False): if downloads is None: # Clear all downloads downloads = self.transfers.copy().values() else: downloads = downloads.copy() for download in downloads: if statuses and download.status not in statuses: continue if clear_deleted: if download.status != TransferStatus.FINISHED: continue _file_path, file_exists = self.get_complete_download_file_path( download.username, download.virtual_path, download.size, download.folder_path) if file_exists: continue self._clear_transfer(download, update_parent=False) events.emit("clear-downloads", downloads, statuses, clear_deleted) # Events # def _shares_ready(self, _successful): """Send any QueueUpload messages we delayed while our shares were initializing. """ for transfer, msg in self._pending_queue_messages.items(): core.send_message_to_peer(transfer.username, msg) self._pending_queue_messages.clear() def _user_status(self, msg): """Server code 7.""" username = msg.user if username not in core.users.watched: # Skip redundant status updates from users in joined rooms return if msg.status == slskmessages.UserStatus.OFFLINE: for users in (self.queued_users, self.failed_users): for download in users.get(username, {}).copy().values(): self._abort_transfer(download, status=TransferStatus.USER_LOGGED_OFF) for download in self.active_users.get(username, {}).copy().values(): if download.status != TransferStatus.TRANSFERRING: self._abort_transfer(download, status=TransferStatus.USER_LOGGED_OFF) self._online_users.discard(username) return # No need to check transfers on away status change if username not in self._online_users: for download in self.failed_users.get(username, {}).copy().values(): if download.status != TransferStatus.USER_LOGGED_OFF: # Only a online/away status update, no transfers to resume break # User logged in, resume "User logged off" transfers self._unfail_transfer(download) if self._enqueue_transfer(download): self._update_transfer(download) self._online_users.add(username) def _set_connection_stats(self, download_bandwidth=0, **_unused): self.total_bandwidth = download_bandwidth def _peer_connection_error(self, username, msgs=None, is_offline=False, is_timeout=True): if msgs is None: return for msg in msgs: if msg.__class__ is slskmessages.QueueUpload: self._cant_connect_queue_file(username, msg.file, is_offline, is_timeout) def _peer_connection_closed(self, username, msgs=None): self._peer_connection_error(username, msgs, is_timeout=False) def _cant_connect_queue_file(self, username, virtual_path, is_offline, is_timeout): """We can't connect to the user, either way (QueueUpload).""" download = self.queued_users.get(username, {}).get(virtual_path) if download is None: return if is_offline: status = TransferStatus.USER_LOGGED_OFF elif is_timeout: status = TransferStatus.CONNECTION_TIMEOUT else: status = TransferStatus.CONNECTION_CLOSED log.add_transfer(("Download attempt for file %(filename)s from user %(user)s failed " "with status %(status)s"), { "filename": virtual_path, "user": username, "status": status }) self._abort_transfer(download, status=status) def _requested_folder_timeout(self, requested_folder): if requested_folder.request_timer_id is None: return requested_folder.request_timer_id = None username = requested_folder.username folder_path = requested_folder.folder_path if requested_folder.has_retried: log.add_transfer(("Folder content request for folder %(path)s from user %(user)s timed out, " "giving up"), { "path": folder_path, "user": username }) del self._requested_folders[username][folder_path] return log.add_transfer(("Folder content request for folder %(path)s from user %(user)s timed out, " "retrying"), { "path": folder_path, "user": username }) requested_folder.has_retried = True self.enqueue_folder(username, folder_path, requested_folder.download_folder_path) def _folder_contents_response(self, msg, check_num_files=True): """Peer code 37.""" username = msg.username if username not in self._requested_folders: return for folder_path, files in msg.list.items(): if folder_path not in self._requested_folders[username]: continue log.add_transfer(("Received response for folder content request for folder %(path)s " "from user %(user)s"), { "path": folder_path, "user": username }) num_files = len(files) requested_folder = self._requested_folders[username][folder_path] if requested_folder.request_timer_id is not None: events.cancel_scheduled(requested_folder.request_timer_id) requested_folder.request_timer_id = None if check_num_files and num_files > 100: check_num_files = False events.emit( "download-large-folder", username, folder_path, num_files, self._folder_contents_response, (msg, check_num_files) ) return if not files and not requested_folder.legacy_attempt: log.add_transfer("Folder content response is empty. Trying legacy latin-1 request.") requested_folder.legacy_attempt = requested_folder.has_retried = True self.enqueue_folder(username, folder_path, requested_folder.download_folder_path) return destination_folder_path = self.get_folder_destination(username, folder_path) del self._requested_folders[username][folder_path] log.add_transfer(("Attempting to download files in folder %(folder)s for user %(user)s. " "Destination path: %(destination)s"), { "folder": folder_path, "user": username, "destination": destination_folder_path }) for _code, basename, file_size, _ext, file_attributes, *_unused in files: virtual_path = folder_path.rstrip("\\") + "\\" + basename self.enqueue_download( username, virtual_path, folder_path=destination_folder_path, size=file_size, file_attributes=file_attributes) def _transfer_request(self, msg): """Peer code 40.""" if msg.direction != slskmessages.TransferDirection.UPLOAD: return username = msg.username response = self._transfer_request_downloads(msg) log.add_transfer(("Responding to download request with token %(token)s for file %(filename)s " "from user: %(user)s, allowed: %(allowed)s, reason: %(reason)s"), { "token": response.token, "filename": msg.file, "user": username, "allowed": response.allowed, "reason": response.reason }) core.send_message_to_peer(username, response) def _transfer_request_downloads(self, msg): username = msg.username virtual_path = msg.file size = msg.filesize token = msg.token log.add_transfer("Received download request with token %(token)s for file %(filename)s from user %(user)s", { "token": token, "filename": virtual_path, "user": username }) download = (self.queued_users.get(username, {}).get(virtual_path) or self.failed_users.get(username, {}).get(virtual_path)) if download is not None: # Remote peer is signaling a transfer is ready, attempting to download it # If the file is larger than 2GB, the SoulseekQt client seems to # send a malformed file size (0 bytes) in the TransferRequest response. # In that case, we rely on the cached, correct file size we received when # we initially added the download. self._unfail_transfer(download) self._dequeue_transfer(download) if size > 0: if download.size != size: # The remote user's file contents have changed since we queued the download download.size_changed = True download.size = size self._activate_transfer(download, token) self._update_transfer(download) return slskmessages.TransferResponse(allowed=True, token=token) download = self.transfers.get(username + virtual_path) cancel_reason = TransferRejectReason.CANCELLED if download is not None: if download.status == TransferStatus.FINISHED: # SoulseekQt sends "Complete" as the reason for rejecting the download if it exists cancel_reason = TransferRejectReason.COMPLETE elif self.can_upload(username): # Check if download exists in our default download folder _file_path, file_exists = self.get_complete_download_file_path(username, virtual_path, size) if file_exists: cancel_reason = TransferRejectReason.COMPLETE else: # If this file is not in your download queue, then it must be # a remotely initiated download and someone is manually uploading to you parent_folder_path = virtual_path.replace("/", "\\").split("\\")[-2] received_folder_path = os.path.normpath(os.path.expandvars(config.sections["transfers"]["uploaddir"])) folder_path = os.path.join(received_folder_path, username, parent_folder_path) transfer = Transfer(username, virtual_path, folder_path, size) self._append_transfer(transfer) self._activate_transfer(transfer, token) self._update_transfer(transfer) return slskmessages.TransferResponse(allowed=True, token=token) log.add_transfer("Denied file request: User %(user)s, %(msg)s", { "user": username, "msg": msg }) return slskmessages.TransferResponse(allowed=False, reason=cancel_reason, token=token) def _transfer_timeout(self, transfer): if transfer.request_timer_id is None: return log.add_transfer("Download %(filename)s with token %(token)s for user %(user)s timed out", { "filename": transfer.virtual_path, "token": transfer.token, "user": transfer.username }) self._abort_transfer(transfer, status=TransferStatus.CONNECTION_TIMEOUT) def _download_file_error(self, username, token, error): """Networking thread encountered a local file error for download.""" download = self.active_users.get(username, {}).get(token) if download is None: return self._abort_transfer(download, status=TransferStatus.LOCAL_FILE_ERROR) log.add(_("Download I/O error: %s"), error) def _file_transfer_init(self, msg): """A peer is requesting to start uploading a file to us.""" if msg.is_outgoing: # Upload init message sent to ourselves, ignore return username = msg.username token = msg.token download = self.active_users.get(username, {}).get(token) if download is None or download.sock is not None: return virtual_path = download.virtual_path incomplete_folder_path = self.get_incomplete_download_folder() sock = download.sock = msg.sock need_update = True download_started = False log.add_transfer(("Received file download init with token %(token)s for file %(filename)s " "from user %(user)s"), { "token": token, "filename": virtual_path, "user": username }) try: incomplete_folder_path_encoded = encode_path(incomplete_folder_path) if not os.path.isdir(incomplete_folder_path_encoded): os.makedirs(incomplete_folder_path_encoded) incomplete_file_path = self.get_incomplete_download_file_path(username, virtual_path) file_handle = open(encode_path(incomplete_file_path), "ab+") # pylint: disable=consider-using-with try: import fcntl try: fcntl.lockf(file_handle, fcntl.LOCK_EX | fcntl.LOCK_NB) except OSError as error: log.add(_("Can't get an exclusive lock on file - I/O error: %s"), error) except ImportError: pass if download.size_changed: # Remote user sent a different file size than we originally requested, # wipe any existing data in the incomplete file to avoid corruption file_handle.truncate(0) # Seek to the end of the file for resuming the download offset = file_handle.seek(0, os.SEEK_END) except OSError as error: log.add(_("Cannot save file in %(folder_path)s: %(error)s"), { "folder_path": incomplete_folder_path, "error": error }) self._abort_transfer(download, status=TransferStatus.DOWNLOAD_FOLDER_ERROR) core.notifications.show_download_notification( str(error), title=_("Download Folder Error"), high_priority=True) need_update = False else: download.file_handle = file_handle download.last_byte_offset = offset download.last_update = time.monotonic() download.start_time = download.last_update - download.time_elapsed core.statistics.append_stat_value("started_downloads", 1) download_started = True log.add_download( _("Download started: user %(user)s, file %(file)s"), { "user": username, "file": file_handle.name.decode("utf-8", "replace") } ) if download.size > offset: download.status = TransferStatus.TRANSFERRING core.send_message_to_network_thread(slskmessages.DownloadFile( sock=sock, token=token, file=file_handle, leftbytes=(download.size - offset) )) core.send_message_to_peer(username, slskmessages.FileOffset(sock, offset)) else: self._finish_transfer(download) need_update = False if need_update: self._update_transfer(download) if download_started: # Must be emitted after the final update to prevent inconsistent state core.pluginhandler.download_started_notification(username, virtual_path, incomplete_file_path) def _upload_denied(self, msg): """Peer code 50.""" username = msg.username virtual_path = msg.file reason = msg.reason queued_downloads = self.queued_users.get(username, {}) download = queued_downloads.get(virtual_path) if download is None: return if reason in TransferStatus.__dict__.values(): # Don't allow internal statuses as reason reason = TransferRejectReason.CANCELLED if reason == TransferRejectReason.FILE_NOT_SHARED and not download.legacy_attempt: # The peer is possibly using an old client that doesn't support Unicode # (Soulseek NS). Attempt to request file name encoded as latin-1 once. log.add_transfer("User %(user)s responded with reason '%(reason)s' for download request %(filename)s. " "Attempting to request file as latin-1.", { "user": username, "reason": reason, "filename": virtual_path }) self._dequeue_transfer(download) download.legacy_attempt = True if self._enqueue_transfer(download): self._update_transfer(download) return if (reason in {TransferRejectReason.TOO_MANY_FILES, TransferRejectReason.TOO_MANY_MEGABYTES} or reason.startswith("User limit of")): # Make limited downloads appear as queued, and automatically resume them later reason = TransferRejectReason.QUEUED self._user_queue_limits[username] = max(5, len(queued_downloads) - 1) self._abort_transfer(download, status=reason) self._update_transfer(download) log.add_transfer("Download request denied by user %(user)s for file %(filename)s. Reason: %(reason)s", { "user": username, "filename": virtual_path, "reason": msg.reason }) def _upload_failed(self, msg): """Peer code 46.""" username = msg.username virtual_path = msg.file download = self.transfers.get(username + virtual_path) if download is None: return if download.token not in self.active_users.get(username, {}): return should_retry = not download.legacy_attempt if should_retry: # Attempt to request file name encoded as latin-1 once self._dequeue_transfer(download) download.legacy_attempt = True if self._enqueue_transfer(download): self._update_transfer(download) return # Already failed once previously, give up self._abort_transfer(download, status=TransferStatus.CONNECTION_CLOSED) log.add_transfer("Upload attempt by user %(user)s for file %(filename)s failed. Reason: %(reason)s", { "filename": virtual_path, "user": username, "reason": download.status }) def _file_download_progress(self, username, token, bytes_left): """A file download is in progress.""" download = self.active_users.get(username, {}).get(token) if download is None: return if download.request_timer_id is not None: events.cancel_scheduled(download.request_timer_id) download.request_timer_id = None current_time = time.monotonic() size = download.size download.status = TransferStatus.TRANSFERRING download.time_elapsed = current_time - download.start_time download.current_byte_offset = current_byte_offset = (size - bytes_left) byte_difference = current_byte_offset - download.last_byte_offset if byte_difference: core.statistics.append_stat_value("downloaded_size", byte_difference) if size > current_byte_offset or download.speed <= 0: download.speed = int(max(0, byte_difference // max(0.1, current_time - download.last_update))) download.time_left = (size - current_byte_offset) // download.speed if download.speed else 0 else: download.time_left = 0 download.last_byte_offset = current_byte_offset download.last_update = current_time self._update_transfer(download) def _file_connection_closed(self, username, token, sock, **_unused): """A file download connection has closed for any reason.""" download = self.active_users.get(username, {}).get(token) if download is None: return if download.sock != sock: return if download.current_byte_offset is not None and download.current_byte_offset >= download.size: self._finish_transfer(download) return if core.users.statuses.get(download.username) == slskmessages.UserStatus.OFFLINE: status = TransferStatus.USER_LOGGED_OFF else: status = TransferStatus.CANCELLED self._abort_transfer(download, status=status) def _place_in_queue_response(self, msg): """Peer code 44. The peer tells us our place in queue for a particular transfer """ username = msg.username virtual_path = msg.filename download = self.queued_users.get(username, {}).get(virtual_path) if download is None: return download.queue_position = msg.place self._update_transfer(download, update_parent=False) nicotine-plus-3.3.4/pynicotine/events.py000066400000000000000000000217041461625273200203650ustar00rootroot00000000000000# COPYRIGHT (C) 2022-2024 Nicotine+ Contributors # # GNU GENERAL PUBLIC LICENSE # Version 3, 29 June 2007 # # 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 3 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, see . import time from collections import deque from threading import Thread EVENT_NAMES = { # General "check-latest-version", "cli-command", "cli-prompt-finished", "confirm-quit", "enable-message-queue", "log-message", "queue-network-message", "quit", "schedule-quit", "set-connection-stats", "setup", "start", "thread-callback", # Users "admin-message", "change-password", "check-privileges", "connect-to-peer", "invalid-password", "peer-address", "privileged-users", "server-disconnect", "server-login", "server-reconnect", "user-country", "user-stats", "user-status", "watch-user", # Notification messages "show-notification", "show-chatroom-notification", "show-download-notification", "show-private-chat-notification", "show-search-notification", # Buddy list "add-buddy", "buddy-note", "buddy-notify", "buddy-last-seen", "buddy-prioritized", "buddy-trusted", "remove-buddy", # Chatrooms "clear-room-messages", "echo-room-message", "global-room-message", "join-room", "leave-room", "private-room-add-operator", "private-room-add-user", "private-room-added", "private-room-operator-added", "private-room-operator-removed", "private-room-owned", "private-room-remove-operator", "private-room-remove-user", "private-room-removed", "private-room-toggle", "private-room-users", "remove-room", "room-completions", "room-list", "say-chat-room", "show-room", "ticker-add", "ticker-remove", "ticker-state", "user-joined-room", "user-left-room", # Interests "add-dislike", "add-interest", "global-recommendations", "item-recommendations", "item-similar-users", "recommendations", "remove-dislike", "remove-interest", "similar-users", # Network filter "ban-user", "ignore-user", "unban-user", "unignore-user", # Private chat "clear-private-messages", "echo-private-message", "message-user", "private-chat-completions", "private-chat-remove-user", "private-chat-show-user", # Search "add-search", "add-wish", "excluded-search-phrases", "file-search-request-distributed", "file-search-request-server", "file-search-response", "remove-search", "remove-wish", "set-wishlist-interval", "show-search", # Statistics "update-stat", # Shares "folder-contents-request", "shared-file-list-progress", "shared-file-list-request", "shared-file-list-response", "shares-preparing", "shares-ready", "shares-scanning", "shares-unavailable", "user-browse-remove-user", "user-browse-show-user", # Transfers "abort-download", "abort-downloads", "abort-upload", "abort-uploads", "clear-download", "clear-downloads", "clear-upload", "clear-uploads", "download-connection-closed", "download-file-error", "download-large-folder", "file-connection-closed", "file-download-progress", "file-transfer-init", "file-upload-progress", "folder-contents-response", "folder-download-finished", "peer-connection-closed", "peer-connection-error", "place-in-queue-request", "place-in-queue-response", "queue-upload", "transfer-request", "transfer-response", "update-download", "update-download-limits", "update-upload", "update-upload-limits", "upload-denied", "upload-failed", "upload-file-error", # User info "user-info-progress", "user-info-remove-user", "user-info-request", "user-info-response", "user-info-show-user", "user-interests", } class Events: SCHEDULER_MAX_IDLE = 1 def __init__(self): self._callbacks = {} self._thread_events = deque() self._pending_scheduler_events = deque() self._scheduler_events = {} self._scheduler_event_id = 0 self._is_active = False def enable(self): if self._is_active: return self._is_active = True for event_name, callback in ( ("quit", self._quit), ("thread-callback", self._thread_callback) ): self.connect(event_name, callback) Thread(target=self._run_scheduler, name="SchedulerThread", daemon=True).start() def connect(self, event_name, function): if event_name not in EVENT_NAMES: raise ValueError(f"Unknown event {event_name}") if event_name not in self._callbacks: self._callbacks[event_name] = [] self._callbacks[event_name].append(function) def disconnect(self, event_name, function): self._callbacks[event_name].remove(function) def emit(self, event_name, *args, **kwargs): if event_name not in self._callbacks: return callbacks = self._callbacks[event_name] if event_name == "quit": # Event and log modules register callbacks first, but need to quit last callbacks.reverse() for function in callbacks: function(*args, **kwargs) def emit_main_thread(self, event_name, *args, **kwargs): self._thread_events.append((event_name, args, kwargs)) def invoke_main_thread(self, callback, *args, **kwargs): self.emit_main_thread("thread-callback", callback, *args, **kwargs) def schedule(self, delay, callback, callback_args=None, repeat=False): self._scheduler_event_id += 1 next_time = (time.monotonic() + delay) if callback_args is None: callback_args = () self._pending_scheduler_events.append( (self._scheduler_event_id, (next_time, delay, repeat, callback, callback_args))) return self._scheduler_event_id def cancel_scheduled(self, event_id): self._pending_scheduler_events.append((event_id, None)) def process_thread_events(self): """Called by the main loop 10 times per second to emit thread events in the main thread. Return value indicates if the main loop should continue processing events. """ if not self._thread_events: if not self._is_active: return False return True event_list = [] while self._thread_events: event_list.append(self._thread_events.popleft()) for event_name, args, kwargs in event_list: self.emit(event_name, *args, **kwargs) return True def _run_scheduler(self): while self._is_active: # Scheduled events additions/removals from other threads while self._pending_scheduler_events: event_id, event = self._pending_scheduler_events.popleft() if event is not None: self._scheduler_events[event_id] = event else: self._scheduler_events.pop(event_id, None) # No scheduled events if not self._scheduler_events: time.sleep(self.SCHEDULER_MAX_IDLE) continue # Retrieve upcoming event event_id, event_data = min(self._scheduler_events.items(), key=lambda x: x[1][0]) # Compare timestamps event_time, delay, repeat, callback, callback_args = event_data current_time = time.monotonic() sleep_time = (event_time - current_time) if sleep_time <= 0: self.invoke_main_thread(callback, *callback_args) if repeat: self._scheduler_events[event_id] = ((event_time + delay), delay, repeat, callback, callback_args) else: self._scheduler_events.pop(event_id, None) continue time.sleep(min(sleep_time, self.SCHEDULER_MAX_IDLE)) def _thread_callback(self, callback, *args, **kwargs): callback(*args, **kwargs) def _quit(self): # Ensure any remaining events are processed self.process_thread_events() self._is_active = False self._callbacks.clear() self._pending_scheduler_events.clear() self._scheduler_events.clear() events = Events() nicotine-plus-3.3.4/pynicotine/external/000077500000000000000000000000001461625273200203255ustar00rootroot00000000000000nicotine-plus-3.3.4/pynicotine/external/README.md000066400000000000000000000522371461625273200216150ustar00rootroot00000000000000# IP2Location Country Data - Nicotine+ uses the IP2Location LITE database for [IP geolocation](https://lite.ip2location.com). - Generated with data/scripts/update_ip_country_data.py ## License Copyright (c) 2001-2024 Hexasoft Development Sdn. Bhd. Attribution-ShareAlike 4.0 International ======================================================================= Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an "as-is" basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. Using Creative Commons Public Licenses Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC- licensed material, or material used under an exception or limitation to copyright. More considerations for licensors: wiki.creativecommons.org/Considerations_for_licensors Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor's permission is not necessary for any reason--for example, because of any applicable exception or limitation to copyright--then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public: wiki.creativecommons.org/Considerations_for_licensees ======================================================================= Creative Commons Attribution-ShareAlike 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 -- Definitions. a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. c. BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. d. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. e. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. f. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. g. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. h. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. i. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. j. Licensor means the individual(s) or entity(ies) granting rights under this Public License. k. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. l. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. m. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. Section 2 -- Scope. a. License grant. 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: a. reproduce and Share the Licensed Material, in whole or in part; and b. produce, reproduce, and Share Adapted Material. 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 3. Term. The term of this Public License is specified in Section 6(a). 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a) (4) never produces Adapted Material. 5. Downstream recipients. a. Offer from the Licensor -- Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. b. Additional offer from the Licensor -- Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter's License You apply. c. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. 6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). b. Other rights. 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. 2. Patent and trademark rights are not licensed under this Public License. 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. Section 3 -- License Conditions. Your exercise of the Licensed Rights is expressly made subject to the following conditions. a. Attribution. 1. If You Share the Licensed Material (including in modified form), You must: a. retain the following if it is supplied by the Licensor with the Licensed Material: i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); ii. a copyright notice; iii. a notice that refers to this Public License; iv. a notice that refers to the disclaimer of warranties; v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; b. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and c. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. b. ShareAlike. In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. 1. The Adapter's License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. 2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. 3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. Section 4 -- Sui Generis Database Rights. Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. Section 5 -- Disclaimer of Warranties and Limitation of Liability. a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. Section 6 -- Term and Termination. a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or 2. upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. Section 7 -- Other Terms and Conditions. a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. Section 8 -- Interpretation. a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. ======================================================================= Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark "Creative Commons" or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. Creative Commons may be contacted at creativecommons.org. # tinytag - Audio metadata parser, modified for Nicotine+ - Original source code: https://github.com/devsnd/tinytag ## License MIT License Copyright (c) 2014-2023 Tom Wallroth, Mat (mathiascode) Copyright (c) 2020-2023 Nicotine+ Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. nicotine-plus-3.3.4/pynicotine/external/__init__.py000066400000000000000000000000001461625273200224240ustar00rootroot00000000000000nicotine-plus-3.3.4/pynicotine/external/data/000077500000000000000000000000001461625273200212365ustar00rootroot00000000000000nicotine-plus-3.3.4/pynicotine/external/data/__init__.py000066400000000000000000000000001461625273200233350ustar00rootroot00000000000000nicotine-plus-3.3.4/pynicotine/external/data/country_codes.py000066400000000000000000026635141461625273200245110ustar00rootroot00000000000000# IP2Location LITE is licensed under # Creative Commons Attribution-ShareAlike 4.0 International. # # Copyright (c) 2001-2024 Hexasoft Development Sdn. Bhd. All Rights Reserved. # # Generated on 2024-04-04 timestamp=1712242720 _,AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TG,TH,TJ,TK,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW="","AD","AE","AF","AG","AI","AL","AM","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GT","GU","GW","GY","HK","HN","HR","HT","HU","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SI","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW" values=_,US,CN,AU,CN,JP,CN,JP,TH,CN,US,CN,JP,TH,CN,AU,CN,TH,CN,AU,CN,TH,JP,IN,SG,IN,CN,MY,CN,IN,CN,TH,KR,CN,KR,_,KR,TH,JP,IN,CN,MY,SG,HK,SG,HK,SG,TW,KR,HK,KR,HK,KR,JP,HK,JP,US,HK,KH,HK,JP,TW,HK,PH,IN,AU,CN,TH,CN,VN,CN,HK,JP,CN,JP,CN,KR,JP,CN,HK,CN,AU,TW,KR,AU,BR,AR,AU,PS,AU,PS,ES,AU,PS,AU,PS,AU,PS,AU,FR,TH,CN,GB,IN,CN,TW,KR,CN,KR,GB,FR,BR,DE,CZ,DE,IT,FR,ES,FR,DE,FR,CH,ZA,AR,AT,IT,NL,GR,RU,IT,SE,IT,DE,NL,DE,GB,FR,GB,ES,US,DE,NL,AE,GB,DE,FR,BE,IT,DE,RU,ES,NL,GB,BE,DE,DK,ES,PT,BR,SE,IT,DE,NL,GB,GH,ES,IT,FR,IT,ES,FR,DE,CH,FR,BE,DE,NL,RU,DE,FR,ES,ZA,DE,FR,GB,FR,DE,IT,DE,BR,DE,BE,US,FR,JP,GB,DE,SG,FR,DE,CM,IT,FR,GB,ES,ZA,NL,FR,GB,IT,FR,TR,FR,GB,RU,SE,AE,GB,RU,ZA,GB,DE,FR,BR,GB,BR,GB,FI,PL,GB,SE,FR,GB,FR,DE,FR,BR,ZA,DE,BR,GB,ZA,BR,DE,GB,DE,FR,DE,BR,GR,ES,FR,GB,DE,FR,GB,ZA,FR,GB,DE,DK,GB,CH,BE,ES,FR,DE,SE,JO,ZA,ES,DE,ES,FR,ES,FR,GB,BR,GB,DE,BE,BR,TH,JP,GB,US,AT,DE,IT,FR,GB,SE,GB,BE,NL,GB,FR,GB,RO,FR,IT,FR,TR,IT,RU,CZ,GB,ES,PL,NL,KE,BR,FR,ZA,BR,KE,IE,DE,US,DE,GB,US,BE,DE,ES,FR,ZA,DE,GB,SE,ES,NL,ES,TR,NL,TR,PL,AT,UG,AM,TZ,SE,TR,US,IT,TR,DE,DK,NL,BI,PL,FR,ES,BR,ES,IE,DE,FR,DE,PL,FR,IT,SE,AT,FR,AT,FR,SE,BE,AU,AR,FR,GB,DE,NL,GB,FR,AT,SE,DE,AT,GB,ES,NL,DE,GB,SE,GB,BR,NL,BR,FR,JP,DE,BR,GB,DE,GB,AT,NO,FR,ZA,IT,NL,FR,IT,TR,ES,NL,IT,FR,BR,IT,IE,IT,BE,GB,NL,AR,BR,FR,LU,BR,IT,GB,NL,US,NL,BR,DE,BE,IT,CO,AR,NL,GB,DE,GR,GB,FR,PT,ZA,GB,IE,CH,DE,FR,DE,IT,DE,GB,DE,NL,ES,DE,FR,BE,GB,DE,IT,DE,US,GB,US,CO,GB,CO,DK,DE,US,IE,AR,IT,DE,RU,IT,SE,DE,SE,GB,DE,IT,TR,NL,TR,AT,DE,BR,TR,US,RU,BE,FR,TR,DE,FR,BR,CZ,ES,DE,FR,ES,DE,FR,GB,DE,FR,BR,ZA,FR,NL,FI,IT,FR,ZA,IT,CH,BR,TR,PL,GB,FR,ES,BG,FR,BE,GB,ES,SE,CL,ZA,DE,FR,BE,DE,ES,AT,TR,IT,FR,RO,NL,BR,FR,TR,FR,NL,BR,FR,DE,CL,TR,ZA,IT,NL,ZA,DE,TR,BR,GB,DE,ES,FR,DE,FR,BR,NL,IT,CH,IT,CH,FR,BE,CH,FR,AE,FR,IT,ES,RU,FR,RU,NL,SE,GB,FR,IT,FR,IT,DE,BE,DE,CH,FR,DE,DK,ES,FR,ES,GB,DK,IT,FR,BR,GB,CO,GR,FR,CZ,CO,DE,GB,BR,FR,UA,BR,FR,SE,ZA,DE,ZA,FR,AT,FR,DE,FR,NL,FR,US,JP,BE,AT,CA,JP,FR,GB,BE,DE,BE,EG,FR,DE,GB,DE,ES,FR,BR,ZA,IT,PT,FR,UA,FR,GB,PT,ES,SE,GB,SE,FR,AE,ZA,BE,TR,SE,BR,ZA,NL,FR,BR,FR,TR,FR,SE,GB,IT,GB,IT,FR,DE,FR,IT,GB,SE,IT,SE,GB,FR,ES,DE,BR,FR,NL,FR,SE,DE,IT,DE,GB,CA,FR,AT,DE,GB,AT,FR,BR,CL,GB,FR,ES,FR,CL,AR,FR,CH,GB,US,TR,ZA,IN,FR,ZA,ES,IT,ES,BR,FR,IE,GB,BE,ES,GB,IT,IL,IT,BE,RU,FR,DE,FR,SE,ES,GB,IT,GB,FR,GB,FR,US,GB,DE,CZ,FR,DE,IT,IN,DE,IT,GB,BE,GB,BE,GB,BE,DE,BR,AT,FR,BE,AR,BR,PL,FR,GB,FR,US,SE,FR,US,AT,IT,DE,FR,GB,AR,NL,IT,RU,QA,DK,CH,DE,GB,CL,SE,DE,BE,BR,SE,CL,PT,DE,GB,DE,GB,NL,ES,GB,QA,GB,IT,AE,IL,MD,DE,IE,TR,GB,US,SC,US,BG,VN,US,RU,SE,US,IQ,CH,GB,BG,NL,TR,ES,PL,US,DE,FR,GB,RU,NL,HK,IT,DE,NL,FR,LU,TR,BE,NL,VA,PL,US,IT,NO,IT,CH,DE,UA,US,RU,US,NL,LV,NL,US,CH,HK,GB,US,TR,FR,AT,GB,NL,US,UA,CH,DE,BE,NO,CH,RU,US,NL,GB,AM,AT,NL,FR,NL,LU,ES,US,NL,EE,US,DE,RU,IS,DE,TR,BR,KR,IT,JP,CZ,TH,US,RU,DE,ES,IR,ES,PL,NL,US,DE,NL,BE,GB,US,IE,CL,BR,IT,UA,RU,UA,BE,GB,AT,RU,NL,GE,SK,FR,US,RU,IT,NL,GB,US,DE,KZ,ES,AT,ES,UA,DE,RO,GB,RO,TH,ES,PL,FR,GB,US,RU,UA,US,FR,AT,DE,US,CA,IT,BR,LU,SE,AT,RU,TR,ES,GB,UA,PL,US,GE,EE,ES,IL,FR,LV,GB,TR,NL,US,NL,EG,NZ,SE,AU,NL,FR,US,SE,GB,US,IT,NL,LV,NL,NO,GB,HR,IL,IT,LU,US,TR,NL,GB,DK,GB,HR,DE,NL,MD,DE,RU,GB,HR,DE,MX,US,DE,US,BH,TR,US,FI,BG,IT,DE,RU,US,DE,NL,PL,BE,DE,FR,DE,GB,IT,PS,IT,TR,US,NL,GB,NL,GB,DE,NL,US,SG,HU,GB,DE,GB,US,IE,IT,ES,NL,DE,FR,US,GB,UA,IT,NL,PL,FI,ES,PH,VN,FI,SG,NO,NL,US,TW,HK,DE,GB,VN,SG,IT,RO,PL,RO,IT,NL,FR,GB,DE,CH,DE,JP,RU,DE,RU,UA,SA,DE,US,DE,US,GB,US,BE,FR,UA,RU,DE,NL,ES,CH,HK,IE,ES,AT,TR,SK,TR,CH,ES,MT,DE,NL,IT,FR,DE,US,BR,US,KR,JP,HK,US,DE,RU,EE,NL,US,RU,US,TR,US,NL,DK,FR,ES,HU,GB,JP,BE,SE,NL,RU,UA,NL,IT,ES,FR,RU,ES,IT,TR,NL,US,RU,SE,KZ,PT,GR,SA,RU,GB,DK,CY,DK,IT,GB,DK,KZ,ES,IR,NO,ES,IT,DE,IR,IT,DE,GB,IT,DE,SE,DE,BE,CA,DE,BE,SG,US,SE,US,IE,DE,US,JP,IT,US,CA,US,GB,BR,US,DE,US,ES,ID,AU,IN,AE,CH,IL,US,IE,US,DE,KR,SG,JP,US,AU,US,CA,US,MY,KR,US,ZA,FR,IN,HK,SE,BH,FR,ZA,BR,HK,JP,GB,IT,CA,IN,GB,US,GB,US,AU,AE,BH,AE,BH,US,DE,US,AU,US,KR,US,DE,US,DE,US,DE,US,CA,US,CA,US,AU,IN,JP,US,DE,US,DE,AE,AR,PT,US,FR,IT,ES,BE,IE,MX,US,MX,GB,IE,GB,US,DE,US,CA,AT,US,CA,US,CA,US,CA,GB,US,FR,SG,US,IE,GB,IE,US,AR,US,BR,US,JP,US,BR,US,FR,JP,US,IE,FR,US,FR,US,JP,US,IE,US,CA,US,CA,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,MX,US,DE,US,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,GB,US,AR,BR,US,CO,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,GB,US,GB,US,DE,US,CA,US,CA,US,DE,US,SG,JP,SG,CA,SG,CA,US,SG,US,CA,US,SG,DE,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,US,CA,US,CA,US,CA,US,CA,US,HK,SG,AU,US,BR,US,BR,QA,US,BR,US,QA,US,BR,QA,US,BR,US,BR,US,QA,US,QA,US,BR,QA,BR,US,BR,QA,US,QA,US,BR,US,BR,QA,US,QA,US,QA,BR,US,BR,US,BR,US,BR,US,BR,US,QA,US,BR,US,QA,BR,US,BR,QA,BR,US,BR,US,QA,US,QA,US,QA,US,BR,US,QA,BR,US,QA,US,QA,US,QA,US,BR,US,QA,BR,QA,US,QA,US,QA,US,QA,US,QA,BR,US,BR,US,BR,US,BR,US,BR,US,BR,QA,BR,US,QA,US,BR,US,QA,BR,QA,BR,US,BR,QA,BR,QA,BR,QA,BR,US,BR,US,BR,US,BR,US,BR,QA,US,BR,US,BR,US,QA,BR,US,QA,BR,QA,BR,US,BR,QA,BR,US,QA,BR,US,QA,US,QA,US,QA,BR,QA,US,QA,BR,US,BR,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,BR,US,BR,US,BR,US,QA,US,QA,US,BR,US,BR,US,BR,US,BR,US,BR,US,QA,US,QA,US,QA,US,BR,US,QA,US,QA,BR,US,BR,US,QA,US,QA,BR,US,BR,US,QA,US,BR,US,BR,US,BR,QA,BR,US,QA,US,QA,US,BR,US,QA,US,QA,US,QA,US,BR,US,QA,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,US,QA,US,BR,US,BR,US,QA,BR,QA,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,QA,BR,US,BR,US,BR,US,QA,US,QA,BR,US,BR,US,QA,US,BR,US,QA,US,BR,QA,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,BR,AE,CH,SE,ZA,BR,QA,GB,IN,US,IN,QA,IN,GB,IN,QA,IN,GB,QA,IN,GB,IN,QA,US,QA,GB,IN,QA,IN,QA,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,SE,CA,US,CA,SE,US,CA,SE,CA,US,CA,US,CA,SE,CA,SE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,IN,CA,US,ZA,CA,US,CA,US,ZA,US,CA,ZA,US,CA,IN,CA,SE,CA,IN,CA,IN,CA,SE,US,CA,IN,CA,ZA,CA,US,ZA,US,IN,CA,NL,FR,NO,FR,US,NO,NL,KR,DE,KR,US,DE,IN,JP,HK,SG,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,SG,AU,US,AU,US,AU,BR,US,CA,IE,US,IE,NL,FR,IN,JP,AE,IN,JP,AE,JP,AE,JP,HK,JP,HK,JP,AE,JP,IN,JP,HK,JP,HK,JP,IN,JP,AE,JP,AE,JP,AE,JP,HK,JP,US,JP,US,IN,US,JP,US,JP,US,JP,US,JP,IN,JP,IN,JP,US,JP,US,JP,AE,JP,KR,NO,ZA,SE,IN,SE,CH,US,BR,CA,KR,NL,IE,IT,US,IT,FR,GB,NO,US,AU,US,BR,CA,IN,JP,US,KR,QA,NL,IE,US,IN,CA,US,GB,US,FR,HK,ZA,US,AU,US,SY,UA,ES,RU,IT,IR,IT,GB,US,RU,CZ,DE,CH,IQ,TR,IQ,CH,DE,IT,GB,ES,RU,NL,TR,ES,GB,RO,RU,DE,EE,RU,CY,SE,RU,US,SG,RU,NL,GB,NL,IN,RU,US,RU,NL,PL,NL,RU,DE,RU,US,RU,PL,NL,LU,RU,JP,RU,US,DE,JP,IT,LB,RU,ES,DE,ES,RU,IQ,NL,FR,GB,ES,DE,GB,CA,US,GB,US,GB,GE,DE,NL,US,NL,GB,NL,CA,NL,FR,GB,DE,FR,TR,GB,DE,GB,DE,NL,US,SG,US,SG,US,SG,US,ES,DE,IQ,GB,SC,GB,IR,NL,AX,SC,AT,GB,ZM,ZA,ZM,ZA,IQ,DE,IT,PS,DE,FR,RU,NL,GB,IT,TR,RO,RU,LT,OM,IR,IL,GB,DE,CZ,RU,SK,US,CZ,RS,IR,US,NL,ES,PL,GB,SE,NO,SE,DE,NL,TR,GB,DE,GB,HU,TR,GB,LU,ES,GB,NO,SA,AT,GB,KZ,FR,GB,ES,GB,DE,IT,NL,IT,FR,RU,FI,IS,RU,IR,TR,BE,TR,HU,IT,RU,KH,DE,GB,DE,IL,NL,IL,AE,BG,SI,RU,GB,DE,MD,MK,DE,OM,DK,KZ,ES,PS,CZ,SG,US,NL,UA,IT,IR,US,JP,DE,NL,GB,BE,SE,SC,LI,RU,NL,RU,NL,RU,NL,RU,KZ,RU,SK,KZ,RU,NL,RU,JE,NL,SE,US,ES,RO,ES,FR,DE,FR,DE,FR,DE,FR,OM,AE,HU,FR,HR,RU,NL,GB,NL,PL,CZ,AM,ES,NL,FR,BE,DE,BE,SE,DE,GB,DE,ES,SA,RU,CZ,NL,CZ,RU,SE,RU,DE,RU,SE,RU,SE,GB,CN,RU,HK,NL,FR,DE,RU,JE,DE,IT,FR,NL,CN,FR,NL,DE,FR,RO,RU,FR,DE,TR,GB,IE,CY,AE,NL,GB,DE,SA,RU,IR,US,RU,EE,KZ,IR,SA,PT,BA,RU,HR,PS,CZ,IT,RU,IT,RU,GB,AZ,RU,AE,RU,US,NL,PL,RU,NO,NL,TR,DE,CH,GE,DK,TR,FR,RU,SE,EE,SE,AT,LV,GB,FI,BR,SG,UA,GB,UA,GB,PS,US,DE,ES,GB,FR,GB,NL,US,IN,FR,LV,GB,CZ,DE,NL,US,DE,NL,RU,NL,DE,EE,JO,DE,NO,ES,DE,US,NL,SG,LB,RU,KZ,RU,FI,RU,DE,RU,FI,RU,FI,RU,NL,RU,FI,RU,TR,FR,IR,PE,ES,CZ,RU,IR,GB,AE,CH,UA,RU,BG,GR,ES,IT,DE,ES,DE,UA,HU,FR,GB,ES,MD,IR,AE,IR,RU,DK,ES,GB,DE,LB,KG,GB,NL,GB,NL,GB,NL,GB,US,ES,IR,DE,DK,GB,UA,RS,GB,FR,PL,DE,CH,US,CZ,US,JP,RU,US,PL,TR,RU,ES,NL,RU,SE,NL,UA,RU,CZ,SK,ES,RU,ES,RU,CZ,SK,HR,KZ,RU,UA,IT,GE,KZ,ES,CZ,IT,ES,CZ,RU,CZ,UA,ES,CZ,RU,BA,SK,ES,UA,ES,RU,GR,GB,RU,SK,NL,ES,CZ,KZ,UA,SK,NL,RU,KZ,ES,KZ,SK,UA,BE,GR,RU,KG,ES,GR,GB,KZ,UA,RU,IT,US,IT,RU,IR,US,IR,DE,NL,GB,DE,HK,US,GB,DE,FI,BG,IE,GB,US,IE,GB,DE,SK,NL,CZ,GB,ES,DE,FR,IT,CH,RU,HU,NL,GB,US,NL,BE,GB,US,GB,US,GB,CZ,IN,CZ,GB,CZ,NL,GB,DE,GB,US,CZ,GB,CZ,GB,US,PH,US,GB,US,IT,US,IM,GG,IM,MT,IM,IE,GI,GB,DE,GB,US,DE,US,BR,SG,JP,DE,AU,DE,GB,IQ,CA,IR,LY,IR,ES,IT,GB,MD,DE,TR,DK,IR,FR,DE,KZ,RU,IT,GB,RU,AM,IT,DE,PL,HU,GB,IR,DE,KZ,RU,GB,IT,AM,US,GB,NL,RU,GB,SA,AR,NL,AR,NL,GB,UA,DK,RO,ES,FI,ES,GB,IT,AE,IT,DE,BE,DE,US,DE,GB,US,PA,GB,PA,GB,IN,GB,KR,HK,PA,NO,FR,IE,IT,DE,RU,DE,FR,GB,YE,GB,NO,BY,NL,IT,LB,RU,IL,RU,KZ,RU,AM,PL,NL,US,NL,RU,KZ,RU,AM,RU,NL,EE,RU,GB,RU,DE,GB,EE,RU,GB,HU,RU,BG,LU,UZ,CA,NL,RU,IT,CH,DE,CA,PL,CZ,PL,YT,MQ,GP,FR,GP,MF,MQ,GF,GB,HK,BR,US,TR,BR,TR,ES,NL,CH,RU,DE,GB,OM,GB,IL,DK,TR,CZ,IT,RU,QA,BE,FR,BE,BG,DE,US,HK,JP,BE,HK,BE,CH,FR,DE,NL,SY,NL,DE,RO,BG,FR,RU,IR,AT,NL,KZ,IL,US,IL,US,IL,PL,UA,NL,US,UA,US,TR,DE,GB,UA,GB,UA,US,CA,US,UA,CA,UA,CA,UA,CA,UA,US,CA,UA,CA,UA,CA,UA,ES,UA,CA,ES,UA,ES,FI,ES,UA,ES,UA,US,UA,GB,US,CA,UA,ES,GB,US,ES,US,CA,ES,GB,UA,CA,DE,US,UA,GB,UA,US,GB,UA,ES,US,UA,US,UA,US,ES,UA,NL,UA,US,UA,US,CA,ES,US,SG,GB,ES,IT,UA,IT,US,ES,UA,ES,UA,US,UA,ES,UA,US,UA,US,UA,US,ES,US,GB,UA,US,UA,US,ES,US,ES,US,GB,US,CA,US,UA,NL,UA,US,UA,US,UA,ES,US,NL,US,UA,NL,US,UA,US,UA,SG,UA,US,UA,ES,US,ES,UA,GB,ES,GB,UA,ES,UA,GB,ES,UA,MX,US,MX,UA,SK,UA,NZ,BE,HU,NZ,US,UA,IR,AE,SA,IR,RU,NL,AT,DE,AT,SA,BA,PL,GB,PS,IT,GB,IT,LT,FR,GB,RU,DE,HK,NL,GB,BG,IT,CH,FI,KZ,RU,PL,RU,DE,FR,IT,PL,US,UZ,US,BA,GE,NL,GE,NL,GB,SE,AZ,GB,PL,BE,GB,DE,CH,ES,AZ,PL,AM,NZ,GB,IE,FR,RS,ES,IT,IR,SY,PL,RU,SY,FR,GB,FR,DE,FR,RU,CH,IL,RU,GB,NL,GB,RU,IR,FR,ES,GB,IT,GB,TR,GB,IT,GB,TR,GB,IT,GR,CH,CZ,IR,IT,DE,US,NO,RU,ES,DE,GB,DE,RU,DE,GB,CH,HU,CH,GB,CH,BA,IQ,BE,LU,BE,PL,SA,BE,RU,PL,IE,FR,PL,RU,UA,DE,HU,NL,GB,CA,NL,GB,IT,IE,GB,US,GB,SE,GB,IT,GB,GE,IT,CZ,NO,IT,SE,IT,PL,IT,FR,ES,DE,ES,GB,CH,GB,LV,BA,IT,AE,NL,GB,NO,CH,UA,DE,RU,UA,RU,GB,SE,GB,SE,PL,SE,CH,GB,ES,GB,NL,CZ,IT,SE,DE,GB,DE,FR,DE,BA,CH,RO,ES,PT,ES,DE,ES,DE,SE,GB,ES,CH,ES,GB,DE,IT,RO,RS,DE,BA,DE,GB,DE,ES,RO,IT,RO,US,ES,GB,DE,SE,BA,CH,IT,SY,SA,IS,CZ,SE,DE,SE,SC,SE,NL,IT,SE,GB,SC,IE,US,SE,LT,FI,SC,RO,SC,SE,PL,FI,DK,CZ,RO,SC,GB,BG,SE,EE,GB,DK,EE,SE,IS,SC,GB,IT,EE,SG,GB,SE,NO,SE,FR,SC,SE,IE,EE,SE,FI,NL,GB,SI,NL,LK,NL,IT,ES,US,RO,US,RO,US,GB,RO,GB,RO,US,GB,RO,US,RO,US,PT,IT,ES,GB,RU,DE,NO,FR,AT,GB,AT,ES,GB,RU,FR,AT,ES,GE,DE,NL,IE,IR,DE,RU,GB,ES,NL,GB,LU,GB,HU,ES,TR,IR,US,OM,SA,RU,IT,RU,RS,NL,GB,IT,CH,SE,GB,US,NL,RU,KZ,US,NO,GB,PL,GR,IT,NL,PL,US,FR,DE,FR,DE,IT,ES,IT,GB,IT,FR,ES,DE,CH,GB,IT,SZ,CD,IT,NL,RU,DE,TR,IT,RU,DE,RU,IT,FR,NL,AZ,NL,AE,NL,AE,NL,RU,NL,IT,GB,IT,SK,NL,SE,RU,IT,GB,TR,GB,TR,GB,US,GB,ES,GB,TR,NL,IT,GE,LV,IE,GB,DK,GB,BE,SE,BE,SE,BE,FR,IT,FR,DE,BE,DE,BE,DE,BE,GB,BE,DE,BE,FR,BE,DE,BE,DE,NL,US,NL,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,GB,BE,DE,SE,US,ES,AT,KZ,RU,US,TR,DE,US,QA,EE,US,MD,IS,JP,US,DE,US,FR,GB,DE,FR,DE,IT,FI,JP,SG,NL,DE,TR,DE,NO,GB,DE,RU,HK,UA,RU,CZ,TR,IT,AT,IT,CH,HU,NL,UA,CH,RU,NL,US,BR,US,DE,GB,US,GB,NL,LU,IT,RU,SK,BR,US,GH,NL,TR,US,GB,DE,CZ,IT,US,DE,GB,DE,FR,JP,BE,FR,ES,NL,DE,GB,JP,IT,RU,HK,ES,DE,RU,HK,JP,US,IE,BE,IE,MX,BE,TR,FI,AT,DE,EE,RU,RO,LU,GB,BG,US,NL,US,ES,DE,GB,FR,UA,BG,GB,RU,US,IT,GB,NL,HU,GB,JP,BG,UA,GB,UA,JP,CZ,ES,GB,ES,GB,RU,GB,FR,DE,ES,DE,GB,DE,GB,DE,BE,MY,DE,NL,ES,GB,TR,IT,US,DK,MD,US,IQ,US,IQ,US,CA,US,TR,MX,FR,IN,FR,TR,ID,DE,US,SE,DE,FR,IN,PL,IT,IQ,US,NL,US,ES,RU,TR,SG,US,ES,CN,HK,JP,CN,AT,NO,CA,US,JP,ES,GB,UA,RU,DE,RU,GB,FR,US,DE,GB,US,BG,DE,US,RU,UZ,RU,US,GB,IT,GB,CH,RO,HU,PT,DE,IR,US,RU,IL,HK,NL,RU,IT,ES,TR,ES,RU,NL,DE,RU,UA,FR,PL,US,DE,DK,PS,DE,FR,DE,US,JP,BE,NL,US,HU,RU,GB,US,AR,DK,KW,FR,PL,FR,CZ,DE,FR,ES,FR,ES,DE,IL,AZ,BD,US,NL,US,BT,BN,US,DE,NL,FR,GB,US,GB,RU,DE,AT,DE,IT,TR,CH,FR,CH,US,CZ,FR,DE,RS,RU,US,IT,DE,GB,DE,LU,ES,GB,RU,DE,US,GB,US,DE,US,JP,IN,DE,PT,NO,DK,GB,ES,FR,IT,TR,HK,FR,UA,RU,NL,DE,NL,RU,ES,IQ,RU,DK,RO,AT,JP,AU,US,DE,RU,ES,RU,PL,US,UA,US,GB,NL,DE,NL,ES,DE,FR,AT,ES,GB,FR,DE,ES,BG,RU,BE,US,AT,FR,CA,US,NL,PL,DK,DE,GE,GB,FR,GB,US,AT,GB,US,GB,ES,CZ,ES,RU,PL,CH,RU,GP,MQ,GP,MQ,HU,US,ZA,RU,BR,GB,UA,BY,RU,PL,NL,EE,RU,US,HK,SG,RU,TR,RU,BG,NL,RU,BG,RU,KZ,RU,FR,JP,RU,NL,RU,FR,IL,RU,PL,US,RU,ZA,RU,AU,US,ES,RU,UZ,ZA,LU,RU,ES,RU,JP,KZ,RU,TR,KZ,RU,DE,LT,NL,RU,ES,RU,ES,NL,TR,UA,RU,TR,RU,NL,US,NL,TR,GB,RU,GB,US,SE,US,RU,SE,RU,BR,IT,IL,IN,RU,HK,US,NL,RU,BR,KZ,RU,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,RU,HK,RU,KZ,FR,NL,RU,GB,KZ,RU,US,NL,LU,PL,ES,RU,FR,US,NL,PL,IR,AZ,AE,FR,DE,FR,AZ,GB,CZ,GB,AT,IR,FR,NL,FR,NL,FR,NL,FR,IT,JO,SE,GB,DE,CA,DE,NL,LT,DE,JO,NL,RU,ES,UA,DE,NL,RU,IR,PL,IR,GR,HU,ES,RU,HU,DK,AT,NL,PT,RS,PL,UA,IR,FI,ES,FR,ES,SE,NL,JP,AU,GB,PL,GB,CH,RU,NO,ES,US,ES,US,ES,GB,US,GB,ES,TR,RU,TR,DE,IR,AE,IR,SE,SA,UA,PT,IT,DE,CH,US,NL,RU,DK,NO,DK,IR,KZ,FI,RU,FR,ES,AZ,SE,RU,TR,KZ,ES,TR,ES,AT,IT,UA,NL,DE,SK,BR,DE,TH,AZ,RU,DE,GB,CZ,IT,AZ,DE,FR,RU,GB,FR,IT,TR,US,GB,IT,FR,ES,TR,DE,ES,PL,PM,FR,PM,RU,MY,NL,RU,JP,DE,SE,GB,SE,US,CH,US,FR,NL,RU,UA,SE,GB,NL,GB,CH,GB,NL,US,GB,LV,RU,US,RO,RU,UA,LT,IT,US,RU,GB,US,JP,GB,PL,TR,GB,PL,IR,GB,DE,PL,DE,US,GB,RS,IT,NO,US,ES,DE,ES,DE,AU,HK,NL,AU,IR,US,NL,SG,NL,US,GB,US,GB,IT,RO,SG,RU,NL,DE,PS,FI,IM,SA,GB,US,NL,FR,IT,PL,DE,IR,RU,GB,DE,GB,PL,IE,PT,FR,US,JP,US,TR,RU,NL,FR,ES,GB,RU,GB,TR,EE,PT,LA,IL,US,RO,DE,IT,GB,LU,BE,PL,AT,CH,IT,AT,TR,GB,IR,PL,CL,MD,US,FR,IT,DE,NL,DE,TR,GB,NL,GB,US,NL,US,DE,NL,DE,AT,DE,NL,DE,ES,DE,NL,DE,US,ES,NL,US,NL,US,NL,US,NL,RO,AT,GB,RO,US,GB,RO,GB,RO,CZ,DE,US,DE,RO,DE,RO,NL,US,DE,NL,US,DE,US,GB,US,AT,US,DE,AT,US,DE,US,DE,US,RO,DE,GB,US,GB,RO,US,RO,NL,RO,US,DE,NL,RO,US,HK,GB,SE,RU,AT,SE,RU,YE,UA,GB,CH,NL,GB,US,NL,BE,GB,ES,DE,NL,UA,RU,DE,RU,FI,RU,FI,RU,US,DE,RU,FI,RU,US,SG,JP,US,GU,MP,US,AT,US,CA,US,JP,US,DO,US,DE,US,DE,US,GB,US,BR,CL,US,MX,US,GR,IN,US,DE,US,BR,US,CA,US,CA,US,CA,US,IE,ID,TR,US,NL,US,HK,GB,US,AU,US,CA,US,RU,US,BT,US,DE,US,IT,US,NL,IT,NL,US,CA,US,CA,US,RU,IT,US,NL,US,RU,US,IN,US,CA,US,AU,PE,US,SG,JP,GB,US,TR,US,CA,US,CA,US,DE,US,GB,US,DE,JP,SG,US,SG,US,CA,US,SG,US,IN,US,IN,US,CA,US,IN,US,SG,US,CA,US,CA,US,SG,US,CA,US,CA,US,IN,KR,JP,US,RU,JP,SG,US,BE,US,BE,US,BE,US,NG,ZA,US,IT,US,MY,US,AU,US,CA,US,CA,US,CA,US,ZA,BR,CL,FR,PE,US,AR,US,JP,US,SG,KR,US,JP,US,HR,US,AU,US,MY,TW,US,DE,US,AU,NZ,EE,MD,US,GB,IS,TR,CH,US,BG,RU,IT,LV,CZ,FR,US,PL,US,AT,US,SE,US,DE,FR,GB,US,NO,RU,US,UA,FI,US,DE,CH,US,ES,US,LU,US,GB,US,JP,US,PT,US,DE,IE,US,DK,HU,RO,US,DE,RS,BE,ES,US,CA,US,GR,US,CA,US,HK,US,GB,US,CA,US,SG,US,MX,US,CA,US,SK,US,DE,US,HK,US,DE,US,HK,SG,JP,US,SG,US,SG,US,MX,US,MX,US,CA,US,PE,US,CL,PE,CL,AR,CO,EC,BR,CO,CL,EC,VE,EC,PE,AR,US,CA,US,CA,US,MY,US,CA,US,CA,US,CA,US,CN,US,DE,US,GB,RU,TW,TH,BR,PH,VN,AE,DE,RU,JP,HK,DE,JP,GB,HK,PH,VN,SA,KR,TH,SG,TH,SG,ID,JP,SG,HK,SG,IN,DE,PH,KR,US,JP,TH,PH,ID,MY,JP,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,DE,US,DE,US,DE,US,NL,US,DE,US,HU,US,FR,US,DE,GB,DE,IT,PL,GB,AT,NL,FR,DE,CZ,DE,FR,PL,GB,FR,ES,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,DE,US,SG,HK,US,HK,US,SG,US,SG,US,SG,US,SG,US,SG,US,JP,US,HK,US,BR,AR,BR,MX,BR,CO,EC,BR,PE,CO,EC,CO,BR,CO,MX,CR,CL,CO,EC,PE,VE,PA,PE,AR,BR,CO,PE,AR,BR,CO,CL,EC,MX,PA,CR,VE,HK,SG,KR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SG,NL,SG,JP,SG,JP,US,NZ,AU,US,KR,AU,JP,PH,US,JP,SG,JP,US,KR,US,VE,PA,VE,PA,US,JP,US,JP,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,CA,US,DE,US,DE,US,DE,US,DE,US,JP,US,JP,US,HK,US,JP,US,JP,US,HK,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SG,US,CH,US,GB,US,GB,US,_,US,DE,US,NL,US,PR,US,PR,US,PR,US,PR,US,NL,US,NL,US,FR,US,PR,US,BO,US,BO,US,PR,US,PR,US,PR,US,VI,US,VI,US,VI,PR,US,PR,US,AT,DE,AT,DE,IN,DE,IN,FI,IN,AU,US,DE,JP,FI,DE,JP,ES,IN,US,DK,AU,US,ES,US,GB,ES,US,JP,FI,DE,US,DE,JP,US,AT,FI,DE,US,BR,DE,FI,AU,ES,US,DE,US,AT,AU,JP,DE,FR,FI,FR,US,CZ,US,FR,US,FI,GB,US,FR,US,NL,US,IN,US,FR,JP,CA,US,JP,US,JP,US,SG,US,SG,JP,SG,FR,SG,DE,SG,US,SG,GB,US,SG,US,SG,US,SG,FR,BR,JP,SG,US,FR,JP,US,NZ,US,BR,IN,GB,US,NZ,US,NZ,US,NZ,BR,DK,US,BR,DK,IN,US,IN,DK,CA,IN,FR,GB,CA,IN,FR,JP,FR,IN,US,FR,KR,TW,FR,GB,FR,TW,US,JP,FR,US,JP,US,ES,FI,US,IN,US,DE,US,ID,US,IE,BH,US,DE,SE,AE,FR,AU,ES,CH,IE,AU,US,SG,US,JP,DE,IE,US,GB,IT,US,IE,US,JP,US,JP,US,FR,IL,US,JP,US,KR,US,DE,BR,US,GB,BH,IT,IN,IT,US,IE,US,CA,US,JP,DE,CA,SE,US,JP,IE,US,SG,JP,US,IT,US,DE,US,MY,US,JP,US,TW,SG,TW,SG,TW,JP,TW,JP,IT,JP,IT,FR,SE,CO,JP,US,IN,AU,TW,AE,IN,GB,IN,GB,DE,FR,GB,US,SE,US,SE,US,SE,US,SE,US,SE,AU,US,SE,US,SG,US,NL,IE,HK,AU,IE,IN,JP,CA,US,HK,AU,JP,US,AU,NL,AU,US,NL,JP,US,IE,HK,AU,SG,AU,US,JP,US,IE,NL,US,NL,US,GB,US,GB,US,NL,HK,CA,US,NL,US,HK,IE,NL,US,JP,US,CA,NL,JP,FR,KR,GB,US,KR,US,GB,US,BR,NL,US,JP,BR,NL,BR,US,NL,US,ZA,US,GB,US,CH,GB,IE,NL,NO,US,DE,US,NL,US,IE,AE,US,SG,HK,FR,IN,ZA,GB,US,HK,US,NO,US,IE,US,AU,IN,US,FR,US,NL,IE,US,DE,SG,NL,US,NO,US,JP,US,CA,AU,US,SG,CL,CH,AU,HK,US,IN,US,JP,SG,AU,BR,NL,BR,US,HK,US,KR,IE,NL,US,NL,US,NL,US,IN,IE,US,IE,IN,US,BR,US,NL,IN,AT,US,DE,US,IE,US,IE,HK,US,SE,BR,US,NO,AU,US,AU,DE,TW,US,IN,KR,IE,NO,US,SE,HK,US,IT,IL,US,MX,TW,MX,US,IN,AE,SE,PL,US,IL,KR,QA,US,MX,MY,US,IL,US,JP,PL,GB,US,KR,US,IE,IT,US,MX,IT,ES,NZ,AT,JP,QA,US,DE,NZ,TW,ES,IT,US,JP,US,IN,IE,SE,US,IN,SG,JP,CA,US,GB,JP,US,JP,CA,HK,IN,CA,US,AU,US,NL,US,IE,AE,US,NL,PR,US,IE,KR,US,NL,IE,US,MY,IE,US,PR,US,CA,US,AU,GB,US,FR,NL,FR,NL,FR,US,SG,IE,US,SG,JP,US,IE,US,AU,HK,IE,JP,AU,US,JP,US,SG,AU,US,AU,ZA,US,ZA,US,ZA,HK,IE,NL,US,FI,QA,IN,US,KR,SG,US,NL,JP,IE,JP,AU,CA,US,GB,US,FI,US,GB,US,FI,US,FI,TW,US,GB,US,GB,US,GB,US,DE,US,KR,US,GB,US,GB,US,GB,US,QA,US,GB,US,JP,US,BR,IT,BR,IT,BR,NO,BR,IT,BR,IT,BR,IT,BR,IT,BR,IT,NO,BR,IT,BR,US,NO,ES,NO,ES,NO,ES,FR,GB,ES,NO,ES,NO,ES,NO,ES,NO,ES,NO,FR,ES,FR,ES,GB,ES,FR,ES,FR,ES,FR,NO,ES,GB,FR,ES,FR,ES,NO,US,NO,ES,FR,ES,FR,ES,NO,ES,NO,ES,NO,ES,FR,ES,FR,ES,FR,ES,FR,ES,US,GB,ES,FR,ES,FR,ES,FR,ES,FR,ES,US,NO,ES,NO,FR,ES,FR,ES,NO,ES,NO,ES,NO,ES,NO,ES,FR,ES,FR,ES,FR,ES,GB,ES,FR,ES,FR,ES,FR,ES,US,KR,IN,US,JP,IN,JP,KR,AU,SG,US,SG,US,SG,US,IN,US,CA,US,FR,IE,GB,CH,ES,US,GB,JP,HK,AU,DE,US,GB,SG,PT,BE,FR,US,DE,HK,KR,US,JP,CA,US,BE,PT,IL,US,PH,US,AU,JP,AU,US,AU,US,AT,CZ,US,AU,HK,BH,HK,CA,DE,CA,DE,IT,DE,IT,US,IT,US,IE,FR,IT,US,BH,CO,BH,CO,US,CO,US,JP,HK,JP,US,AR,US,AR,BR,AR,BR,IN,BR,IN,DE,IN,DE,GB,DE,GB,IN,GB,IN,US,IN,US,NL,US,NL,IN,NL,IN,SG,IN,SG,CA,SG,JP,IN,US,IN,US,IN,AU,US,ZA,US,ZA,JP,HK,IN,ES,AE,AU,CH,JP,ID,IL,CA,US,MY,US,IE,DE,JP,US,SE,GB,AU,US,BR,IN,BH,SG,US,AU,ID,US,IE,BR,JP,US,IN,IE,GB,IE,SE,DE,US,SG,CA,SG,US,FR,US,FR,US,FR,US,JP,US,IN,US,GB,DE,IN,GB,US,SG,US,CN,JP,CN,VN,KR,JP,KR,JP,KR,HK,CN,JP,AU,HK,CN,US,NL,NZ,PH,NF,US,IN,PH,AU,MN,AU,MV,AU,NF,AU,CX,CC,PH,AU,ID,CN,BD,SG,PK,CN,HK,IN,MN,MY,AU,JP,KR,JP,CN,KR,IN,DE,IN,SG,JP,IN,CN,JP,AU,MY,ID,CN,IN,JP,PH,US,AU,CN,HK,IN,JP,PL,US,BR,US,FR,DE,US,_,CN,JP,NZ,SG,TH,BD,JP,HK,KR,HK,KR,HK,KR,HK,JP,KR,CN,JP,CN,HK,NZ,PG,TL,SB,PG,SB,VU,FJ,GU,CK,SG,VU,PG,NZ,TO,FJ,PG,NP,AU,SG,AU,SE,GB,DE,FR,IT,ES,JP,ID,MY,PL,KE,NG,CZ,HU,NO,FI,AU,JP,KR,IN,HK,IN,CN,VN,IN,US,HK,IN,HK,IN,JP,MY,KR,MY,IN,AU,CN,MY,HK,MY,PG,CN,KR,JP,PK,HK,MY,JP,IN,CN,HK,AU,CN,KR,TH,CN,VN,US,SG,US,SG,US,DE,US,GB,US,JP,US,CA,US,SE,US,FR,US,BH,US,FR,US,BR,US,IN,FR,US,IN,US,DE,US,ES,US,BR,PL,US,NL,US,FR,US,GB,IE,FR,US,FR,US,AU,US,ES,US,ES,US,DE,IE,FR,US,DE,IE,NO,FR,US,ES,US,FR,US,IE,US,IT,IE,ES,US,IE,US,FR,US,FR,US,AU,ES,US,ES,US,DE,US,FR,US,IT,DE,US,FI,US,DK,FR,US,FR,US,ES,US,BR,PL,FR,BE,US,IE,ES,FR,US,ES,FR,US,FR,US,IT,GB,US,IT,US,IT,US,KR,US,KR,US,JP,US,BR,IE,JP,SG,AU,US,DE,BR,SE,IN,FR,IE,KR,JP,GB,JP,US,SG,AU,CA,HK,BH,BR,IE,IT,ZA,ID,AE,IN,MY,AU,ES,CH,IL,CA,US,BH,US,FR,US,IL,MY,CA,US,IL,MY,CA,US,IN,JP,SG,AU,DE,GB,US,CA,KR,ZA,US,IN,US,IN,US,SG,PL,TW,PL,TW,SG,BR,AR,IN,DE,OM,FI,DE,OM,FI,MX,TH,US,IN,US,IN,US,TH,US,IE,DE,US,BR,US,SG,US,AU,US,CA,JP,SG,BR,GB,US,FR,IT,ZA,SE,US,AU,BR,US,IE,US,JP,IE,US,CA,US,BR,US,IN,US,SG,US,SG,US,BH,US,DE,US,IE,US,CA,AU,JP,US,SG,IE,US,CN,US,GB,US,CN,IE,DE,SG,IN,GB,US,JP,KR,IE,IL,US,ID,DE,US,SE,BH,IN,US,ZA,BR,HK,JP,IT,JP,AU,CA,DE,KR,FR,US,IE,DE,GB,US,CA,US,BR,US,SE,BH,JP,US,FR,US,IE,IN,US,GB,US,CA,DE,IT,IE,US,AU,SE,US,JP,US,DE,IE,SG,US,SE,US,ZA,US,CN,US,IT,DE,US,IE,JP,GB,JP,FR,US,GB,JP,US,SG,GB,IE,US,CH,US,GB,BH,US,IE,US,ID,US,JP,IE,US,IT,IE,GB,US,IN,IE,KR,BR,BH,US,SG,US,IN,US,KR,US,SG,AU,US,IN,US,ID,US,AE,US,AU,US,DE,US,SG,CH,US,IN,US,AU,BR,US,BR,IN,US,GB,US,CA,SG,CA,FR,GB,FR,US,DE,US,FR,BH,IN,GB,SE,KR,US,IL,MY,CA,US,FR,US,BE,US,BE,US,BE,US,FR,US,IN,US,SG,US,IN,US,BE,US,SG,US,SG,AU,JP,IN,NL,CH,US,DE,US,DE,US,BE,US,GB,US,JP,SG,ID,US,TH,IN,HK,JP,US,SG,US,IN,NL,IN,US,SG,US,BR,US,CA,HK,SE,IL,GB,FR,IT,US,DE,IN,MY,US,SG,CA,IT,US,AU,US,SE,US,BH,AU,ZA,US,DE,US,AU,CA,US,SG,US,CH,US,ID,US,BE,US,SG,US,BE,US,BE,US,BE,US,ZA,SG,US,HK,US,SE,US,SE,US,SE,US,AU,US,KR,US,BE,US,BE,US,BE,US,BE,US,PL,US,IN,US,JP,US,SG,US,DE,US,DE,US,DE,US,DE,US,ZA,US,DE,US,JP,US,JP,US,JP,US,JP,US,DE,US,DE,US,AU,US,IL,US,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,FR,US,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,US,IE,JP,SG,US,DE,US,NL,US,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,MX,US,BR,US,BR,US,BR,US,MX,US,MX,US,DK,US,IE,US,IE,DE,AT,FR,FI,DE,NL,DE,ES,DE,CZ,AT,DE,ES,NL,GB,DK,FR,GB,FR,GB,DE,FR,SE,CZ,GB,ES,IL,NL,US,BE,ES,US,DE,GB,FI,US,AT,US,GB,FR,NL,US,CH,US,SE,US,DK,DE,US,NL,DE,TR,US,DE,US,ES,DE,ES,US,GB,DE,US,BE,FR,IT,GB,US,AT,FR,DE,US,AE,GB,US,KR,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,GB,NL,IE,IL,US,GB,SE,DE,IT,US,DE,NL,ES,AE,FI,US,AE,IL,GB,ZA,FR,US,IL,US,DE,US,AE,GB,TR,SA,US,DE,CH,FR,CH,US,FR,IT,CH,FR,DE,IT,DE,FR,IT,FR,DE,NL,IT,FR,IT,DE,FR,IT,FR,DE,FR,IT,CH,US,DE,FR,NL,IT,DE,FR,IT,FR,IT,FR,DE,IT,NL,US,PT,US,NL,PL,PT,CH,US,DE,US,HU,NO,US,SE,US,IT,DK,DE,US,BE,US,IN,IE,US,AE,US,TR,US,GB,ES,GB,ES,GB,ES,GB,US,NL,US,GB,ES,US,GB,SE,GB,ES,GB,US,SE,TR,US,TR,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,NL,PL,IL,CH,NL,IL,AE,DE,US,GB,US,GB,US,GB,US,GB,US,NL,DE,US,DE,AE,US,HU,NO,US,HU,TR,US,TR,CH,SE,NL,DE,US,NL,US,DE,IT,DK,DE,US,BE,DE,IL,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,FR,SE,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,NL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,US,IL,GB,NL,IL,US,DE,US,GB,DE,GB,ES,NL,DE,GB,IL,US,DE,US,NL,US,GB,US,DE,US,ES,US,NL,US,CN,VN,CN,VN,CN,VN,KR,CN,TH,CN,VN,CN,VN,CN,US,CN,US,VN,US,CN,JP,US,CN,VN,CN,KR,CN,VN,CN,US,CN,TH,CN,US,VN,CN,VN,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,VN,US,JP,US,SG,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SG,US,JP,US,JP,US,JP,US,CN,US,CN,US,AU,NZ,AU,NZ,AU,NZ,AU,CN,JP,CN,US,JP,US,JP,US,JP,US,JP,US,JP,CN,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CN,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,MY,AU,US,JP,KR,HK,JP,HK,JP,TW,KR,MO,HK,JP,HK,SG,TW,JP,TH,KR,JP,TH,SG,MO,SG,KR,US,KR,US,HK,US,MY,TH,HK,ID,US,TW,PH,TW,US,HK,US,VN,US,VN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,CN,US,JP,IE,SG,US,NI,CA,US,JM,US,CR,US,GR,AL,SE,PT,US,EG,GE,US,SE,US,BR,US,CA,US,BR,US,BR,US,AU,US,PT,US,JO,PT,US,GR,US,IE,US,NL,US,CN,US,SG,US,SG,US,JP,US,GR,US,TR,US,FR,PT,US,SE,DK,US,SG,HK,JP,DK,NL,US,JP,SG,SE,AU,US,NL,US,GB,NL,IN,US,NL,IN,US,SG,US,IN,US,IN,US,GB,US,JP,SG,CN,AU,DE,IE,IL,US,IN,US,IN,US,GB,US,IN,US,ZA,US,DE,US,IN,US,GB,US,BE,US,BE,US,BE,US,GB,DE,US,SE,ZA,HK,IN,SG,AU,HK,US,JP,HK,JP,IN,HK,SG,HK,JP,US,HK,US,DE,US,NL,US,GB,DK,DE,AU,BE,US,BE,US,ZA,US,DE,DK,FR,US,AU,JP,US,IE,US,GB,DE,GB,SE,US,JP,US,JP,US,HK,TW,JP,US,JP,US,GB,US,AU,US,AU,US,AU,US,AU,US,AU,US,BR,US,DE,US,IN,US,CA,US,GB,US,AU,US,GB,SE,US,NL,US,CA,DE,US,SG,IE,US,AU,JP,DE,JP,GB,DE,US,HK,AU,JP,HK,US,GB,NL,DK,FR,ZA,FR,KR,TW,SG,US,AU,FR,US,FR,IE,FR,IE,FR,IE,FR,US,FR,IE,FR,US,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,US,SE,US,FR,IE,US,IN,US,IN,US,KR,ID,AU,US,DE,US,CA,US,BR,US,NL,AR,IT,DE,IT,DE,IT,DE,IT,DE,IT,DE,IT,DE,IT,BE,IT,BE,IT,JP,US,DE,AT,IN,DE,BH,IE,DE,IT,PL,DE,US,CA,KR,US,AU,BR,IN,ID,US,FR,US,FR,US,FR,US,FR,DE,FR,DE,FR,DE,US,DE,FR,US,FR,US,FR,US,FR,US,FR,ES,DE,US,FR,DE,US,IT,DK,FR,ES,FR,US,IE,GB,US,FR,US,IT,IE,US,BE,US,ES,FR,US,FR,JP,US,BR,US,CA,US,DE,JP,US,FR,US,FR,NL,IN,FR,US,IN,US,IT,FR,US,IE,US,IE,FR,BE,US,BH,US,IE,CA,US,HK,NL,US,ES,US,FR,US,ES,FR,US,FR,GB,AU,GB,US,FR,US,IE,BE,DE,FR,DE,US,NL,US,ES,US,DE,IN,US,DE,US,ES,IT,US,GB,US,GB,SG,US,SG,US,DE,ID,ES,DE,GB,US,GB,US,IE,US,GB,IE,US,IT,DE,US,IN,SG,AU,IN,FR,IN,US,IN,US,FR,IN,FR,IN,FR,DE,US,AU,CO,US,DE,US,MX,US,ID,AE,US,FR,US,FR,US,FR,IN,FR,IN,FR,US,FR,US,FR,US,FR,BR,IN,HK,PE,US,FR,GB,US,IN,US,IN,US,FR,IN,FR,IN,FR,US,FR,US,IN,US,BG,US,FI,GB,IE,AT,BE,IE,BE,IE,BE,IE,BE,CH,GB,BH,GB,US,HK,GB,US,GB,US,GB,IN,PH,JP,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,GB,US,GB,US,TH,FR,TH,FR,TH,FR,TH,ES,HU,DK,US,GB,PE,US,IN,US,ES,GB,US,AU,PH,US,IT,JP,US,IE,US,FR,US,FR,US,MX,US,SG,US,BG,US,PL,US,CH,US,DE,US,ID,JP,US,DE,US,DE,US,DE,US,GB,JP,DE,US,DE,US,DE,IE,US,BR,US,FR,NL,FR,NL,US,GB,US,GB,US,GB,US,GB,US,NL,FR,NL,FR,NL,US,NL,FR,NL,US,NL,US,NL,US,NL,US,NL,US,NL,FR,NL,FR,NL,FR,NL,FR,US,NL,FR,US,FR,US,FR,US,FR,US,TH,FR,TH,FR,TH,FR,TH,FR,TH,IN,US,GB,US,GB,IE,US,GB,US,GB,HU,US,HU,US,FR,US,BG,PL,GB,PL,GB,PL,GB,PL,US,AU,GB,MX,ID,DE,US,DE,FR,SG,IT,US,IE,US,AR,US,BR,US,DE,US,CA,AT,US,CA,GB,US,JP,US,FR,DE,US,DE,US,GB,US,GB,DE,ES,DE,US,CA,US,CA,US,ID,US,GB,IE,FR,US,FR,GB,IE,GB,FR,US,FR,US,FR,US,GB,IE,GB,US,IE,GB,US,GB,US,GB,IE,US,GB,IE,GB,US,GB,US,HK,US,NL,AU,SG,HK,US,NL,US,AU,US,NL,IE,US,NL,MY,US,MY,US,MY,JP,US,JP,FR,US,CL,SE,PL,IT,IL,MX,TW,ES,NZ,DE,NO,CH,AE,ZA,QA,JP,US,QA,US,NL,SG,HK,SG,HK,US,GB,JP,AU,US,NL,US,NL,US,BR,NL,KR,US,IN,ZA,US,ZA,IE,CH,IN,US,NL,US,FR,GB,NL,US,IE,IN,US,NL,GB,SG,NL,US,SG,NL,IE,US,SG,US,IN,US,NL,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,GB,BR,IN,US,NL,US,IE,US,IN,AU,NL,US,IT,IL,MX,ES,FR,US,GB,US,SG,ZA,US,AE,MY,US,NL,AU,US,GB,IE,US,CA,JP,IN,KR,CH,US,SG,US,BR,IN,NL,US,GB,US,GB,IL,NO,SE,AU,ZA,PL,SE,QA,US,IE,MX,US,AU,DE,ES,HK,US,CA,FR,US,NZ,US,CA,AE,NO,AE,NZ,US,NL,JP,US,JP,KR,PL,US,NL,US,IE,ID,US,AU,US,NL,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,AU,US,AU,US,AU,AE,JP,US,AU,US,QA,PL,IL,TW,MY,IT,MX,ES,MY,NZ,ID,US,IE,US,IE,US,GB,NL,US,AU,ZA,DE,JP,DE,US,NO,CA,US,AE,IN,AE,CA,AE,US,AU,FR,US,FR,NL,US,AU,FR,AU,CA,GB,KR,JP,KR,GB,FR,IN,BR,US,BR,IN,AU,JP,GB,BR,AU,FR,AU,US,KR,US,IN,US,AU,CA,FR,JP,AU,US,IN,SG,US,KR,IN,US,JP,SG,US,AE,US,ZA,AU,GB,US,AE,US,AU,JP,US,AE,JP,AE,US,NL,IE,SG,JP,GB,JP,US,NL,IE,US,CH,DE,FR,US,NL,US,IE,SG,GB,AU,BR,CA,IN,HK,FR,DE,KR,NO,ZA,IN,CH,AE,GB,IN,US,SG,DE,JP,CH,GB,US,CH,IN,AU,US,FR,GB,DE,BR,CA,IN,KR,ZA,AE,NL,SG,JP,US,JP,FR,CH,US,IE,DE,US,GB,NL,US,IE,NL,US,AU,IN,HK,US,JP,CA,US,CA,US,GB,NL,IE,NL,GB,NL,US,DE,US,DE,AU,US,AU,IE,NL,US,NL,US,GB,AU,US,ZA,US,IN,FR,JP,FR,US,NO,KR,GB,US,IE,US,AE,DE,US,NL,US,AU,US,BR,US,IE,CA,US,KR,US,IN,US,AU,SE,US,IN,HK,US,PL,IL,MX,ES,AU,MY,JP,IN,AU,AE,ES,MX,GB,TW,NZ,JP,US,ID,US,NL,HK,US,SG,US,SG,US,CA,IE,US,NL,US,FR,US,GB,US,IN,JP,CH,US,AU,US,JP,FR,ZA,SE,US,NL,US,KR,IE,NO,QA,ZA,AE,AU,IN,US,NL,US,IN,US,SE,US,CA,US,IE,JP,NL,SE,HK,NL,US,CA,JP,US,NL,IE,GB,US,AU,NL,US,NL,FR,AE,US,NL,GB,JP,DE,US,NL,IE,US,NL,ZA,US,JP,GB,SE,AU,IE,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,NO,NL,GB,NL,DE,GB,NL,GB,NL,DE,NL,GB,FR,GB,SE,IE,CH,NL,GB,DE,NL,IT,GB,CH,US,FR,US,JP,QA,AE,IN,SG,HK,US,IN,SG,JP,HK,KR,IN,US,AU,US,AU,US,ZA,US,BR,US,NO,NL,US,NL,CA,IE,NL,US,NL,IE,GB,US,FR,US,DE,US,CA,GB,US,IE,NL,US,NL,US,GB,US,IE,US,NL,KR,FR,KR,ZA,US,AE,IN,HK,IN,JP,AU,DE,NO,SE,CH,GB,CA,US,BR,ZA,SG,IN,JP,KR,AE,AU,BR,IE,NL,FR,DE,NO,SE,CH,GB,CA,US,HK,QA,DE,US,QA,PL,IL,US,SG,US,GB,US,IN,US,QA,US,QA,US,QA,US,QA,US,QA,US,CA,US,QA,US,QA,US,QA,US,NL,US,IE,US,PL,US,IE,IT,ES,PL,IT,IL,ES,MX,NL,US,NL,TW,MY,IE,MY,NL,US,AE,NZ,JP,US,NO,HK,GB,KR,AE,NL,JP,AU,KR,CA,SG,IN,FR,US,ZA,HK,US,IN,US,IE,GB,SG,US,CA,US,NL,US,CA,GB,NL,US,SE,GB,IE,US,GB,NO,DE,CH,NO,US,CH,DE,FR,ZA,US,IN,AU,US,GB,US,CA,US,BR,NL,IE,NL,US,BR,US,NL,IE,JP,SG,US,AU,US,HK,IN,US,SE,CA,ZA,US,AU,IE,JP,IN,US,IN,GB,BR,DE,CA,IN,AE,CH,AU,CH,AU,SE,NO,NL,BR,AU,DE,US,SG,US,CA,US,IT,JP,MX,US,ID,US,AU,NO,CA,US,CA,JP,SG,US,NL,US,AE,NL,SG,US,CA,IE,GB,US,NL,SG,US,NL,US,JP,US,BR,US,AU,GB,US,CA,HK,US,BR,JP,US,IE,US,AE,DE,US,IN,US,DE,US,IN,US,DE,US,NL,SG,US,IE,AU,IN,JP,US,AU,JP,US,IE,GB,CA,US,NL,US,SG,US,IE,GB,CA,US,NL,US,SG,IE,SG,FR,US,AE,US,CH,US,IN,KR,AU,IN,KR,AE,US,JP,US,NL,US,CA,US,SE,IN,QA,AU,FR,GB,NL,IE,DE,CA,ZA,US,NO,US,PL,IL,NL,US,TW,CH,SG,HK,IN,IE,US,GB,DE,US,NL,TW,BR,QA,US,TW,US,SE,AT,BR,IL,IT,IN,MY,MX,NZ,PL,QA,ES,US,HK,NL,HK,AU,US,IE,SG,HK,AU,NL,BR,NL,JP,PL,AU,BR,ZA,DE,NL,US,SE,IN,US,IT,MY,US,MX,JP,ES,IE,NL,GB,IE,US,MY,IT,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,NL,US,GB,US,ZA,US,IE,AU,US,DE,US,QA,AE,CA,US,SG,US,HK,US,HK,JP,FR,US,SG,AU,US,HK,US,JP,US,SG,AU,US,IE,US,NL,US,CA,SG,JP,AU,GB,KR,BR,IN,FR,KR,US,IE,NL,CA,SG,HK,JP,AU,GB,BR,IN,FR,KR,SE,CH,NO,AE,AU,US,IN,US,IE,US,SG,JP,AU,IN,AU,IN,KR,JP,SG,HK,SG,HK,SG,BR,US,BR,AE,KR,IN,SG,BR,IN,SG,FR,CH,CA,KR,BR,TW,IL,CL,US,BE,MY,IN,MY,US,JP,US,ID,US,ID,US,AE,US,FR,IE,NL,GB,FR,NL,US,KR,IN,JP,SG,JP,IN,JP,SG,AT,AU,AT,AU,JP,SE,AU,ZA,AE,IN,BR,JP,BR,US,JP,US,JP,US,JP,US,SG,ZA,AE,FR,US,SG,FR,US,SG,FR,US,SG,FR,US,IE,US,JP,FR,US,SG,FR,US,SG,FR,US,SG,NL,IE,NL,IE,NL,IE,NL,IE,NL,IE,NL,IE,NL,IE,NL,IE,NL,IE,NL,IE,NL,FR,IN,AU,BR,JP,ZA,US,SE,US,KR,FR,IN,NL,US,IN,US,AE,CH,IN,HK,AU,HK,SG,BR,IN,CH,US,QA,US,GB,FR,NL,BR,IE,JP,US,SG,JP,NO,US,CH,GB,DE,US,TW,KR,NL,AE,US,QA,IN,IE,PL,US,CA,MY,US,CA,NL,US,NL,MY,IT,BR,US,IT,GB,US,PL,IE,US,IE,US,NL,US,IL,IT,MX,US,SG,GB,ZA,GB,IL,US,MY,US,TW,US,TW,US,AU,GB,IE,US,AU,HK,CA,JP,IN,CH,DE,US,IN,US,SG,US,NL,US,GB,AE,QA,AU,DE,ZA,BR,IL,FR,SE,US,AE,IE,MX,US,ES,NL,BR,JP,AE,GB,DE,US,NZ,US,KR,NO,US,JP,AU,SG,AU,KR,PL,AE,FR,US,IL,US,IL,US,IL,US,IL,US,DE,IN,CA,US,JP,IE,NL,US,BR,AU,AT,AU,US,NL,US,CL,SE,PL,IT,IL,MX,TW,ES,US,NZ,NO,DE,CH,AE,ZA,QA,JP,US,AE,IE,NL,IN,US,IE,NL,HK,SE,US,SE,US,JP,IN,US,HK,SG,AU,KR,CH,NO,US,GB,HK,US,DE,AU,US,IN,BE,US,CA,US,ID,CH,US,ID,US,AU,US,NL,US,MY,US,AU,US,NL,US,PT,US,IN,JP,US,AU,IN,US,IT,BR,JP,US,DE,US,AR,JP,US,AR,US,IN,US,AU,US,FR,ES,US,GB,US,DE,US,SG,HK,US,MX,US,JP,US,IT,US,AR,US,BR,US,NL,US,HK,US,AU,US,MX,US,JP,US,BR,US,JP,IN,TT,JP,IN,ID,MX,US,DE,SE,US,HK,US,JP,US,ID,US,DE,US,BR,US,MX,US,MX,US,CL,US,BR,US,AR,JP,US,MX,US,BR,US,CA,US,GB,US,GB,NL,SG,US,NL,US,CL,US,CA,US,AT,US,AU,US,IN,BR,CA,CO,US,CO,HK,US,HK,US,PH,US,PH,US,MX,US,PH,US,IN,PH,US,IN,US,IN,US,CO,IN,US,CA,IN,US,AU,US,ID,IN,US,IN,JP,US,IN,BR,ES,US,CA,US,IN,US,FR,IT,US,CH,US,ID,US,TW,US,ID,TH,SG,TH,US,TH,US,TH,US,DE,US,CA,US,IN,US,IN,US,CA,US,AU,US,IT,CL,IT,US,AR,US,AR,IN,US,MX,US,IT,US,TH,SG,TH,SG,TH,US,IT,HK,US,GB,US,HK,US,CO,US,IN,CL,CO,US,CL,US,BE,NL,US,TR,US,ES,SE,US,ES,US,MY,US,KR,JP,US,MY,US,IN,US,IN,US,QA,US,SG,US,ES,US,IN,US,SG,MX,US,DE,FR,US,CL,US,BR,CL,IN,US,SG,CR,US,SG,US,CA,US,DE,US,GB,US,TR,JP,AE,US,TR,PA,US,GU,JM,TR,US,TR,AR,TR,US,TR,US,TR,US,CN,TR,US,TR,US,IT,TR,HK,US,TR,US,TR,US,HK,US,TR,US,AU,HK,US,PH,US,HK,US,LT,PA,US,HK,GB,BR,US,CA,US,SS,US,GB,US,HK,US,GB,US,ES,CN,US,CH,US,CH,AU,US,CN,IE,PA,BG,US,KH,US,TR,SG,CN,US,BR,US,IN,SG,US,CZ,US,JP,PA,BR,US,CA,US,DE,TR,US,EE,CA,US,SG,JP,US,JP,US,NL,US,ES,JP,US,GB,US,IT,US,JP,US,JP,US,CA,US,JP,SG,US,ES,US,FR,US,DE,US,BR,US,FR,US,FR,US,CA,US,CA,US,FR,AT,US,ES,US,AT,US,CA,US,JP,US,AT,US,AT,PL,US,AU,US,PL,US,IE,US,CA,US,BR,US,JP,NL,AU,US,NL,IT,JP,US,NL,HK,MY,AU,SE,IN,SG,HK,US,FR,US,GB,MX,US,NZ,DE,KR,IN,AR,AU,HK,US,MX,CA,NZ,BR,BE,US,SG,IT,TH,US,VN,US,HK,US,SE,IN,DE,US,JP,DE,IN,US,CH,US,HK,US,MX,US,IN,AU,US,DE,US,CO,DE,US,IT,JP,US,ID,SG,US,DE,HK,KR,DE,ID,JP,US,IT,US,FR,US,NL,JP,US,JP,US,PH,JP,US,MX,IT,MX,US,FR,HK,US,NL,US,NL,US,MX,IT,JP,US,IN,US,CH,NO,VN,HK,US,HK,US,TH,AU,US,ES,CL,JP,US,BR,US,HK,US,TH,DE,US,NL,ID,PL,US,MX,FR,IN,US,HK,US,IN,US,IT,JP,IN,US,IN,US,DK,JP,US,FR,US,MX,IN,US,SA,US,JP,US,MY,JP,AE,US,RU,JP,US,NL,US,JP,US,MX,NL,US,CA,US,SE,AU,US,JP,US,MX,US,IN,US,ID,US,HK,US,IN,GB,IN,GB,US,FR,US,IN,US,JP,RU,BE,KR,JP,US,IN,US,HK,IN,TH,US,BR,HK,US,KR,US,AT,CO,HK,US,KR,SG,KR,DE,IN,HK,US,IN,US,JP,US,IN,SG,US,SG,US,CO,HK,JP,US,NO,US,JP,TW,US,ES,ID,US,DE,US,IN,US,DE,BR,US,SG,GB,US,IN,US,IL,US,MX,HK,US,JP,US,AT,MX,US,JP,KR,CH,US,HK,US,DE,TW,US,ID,NL,GB,SG,GB,BR,US,MX,US,DE,AT,DE,US,MY,IN,US,JP,US,JP,AU,US,AU,US,ES,AE,ID,US,DE,US,BR,US,DE,IN,JP,NL,IN,JP,DE,US,DE,US,JP,DE,US,CA,US,PH,US,ID,US,BR,AU,DE,AT,DE,US,JP,AU,BR,US,AU,US,IE,US,IN,US,ID,KR,US,NO,US,IE,US,NL,US,NL,US,SG,US,SG,US,CO,US,CA,US,SG,BR,TW,SE,ES,SE,ES,SE,ES,SE,ES,TH,IT,PH,NL,GB,US,SG,IL,DE,JP,NL,US,JP,US,NL,ID,US,GB,US,PR,BR,SE,JP,BR,US,GB,US,ID,US,ID,FR,US,SG,US,GB,KR,US,PH,US,JP,US,JP,US,AU,VN,MX,US,AU,NZ,NL,DK,FR,GB,CA,SE,JP,US,IT,US,JP,IT,AU,JP,CO,US,AR,US,JP,US,JP,US,JP,US,IE,DK,HK,NL,JP,HK,IN,HK,PH,ID,US,BR,CL,US,JP,US,SG,JP,MX,IN,US,JP,HK,JP,AU,US,IT,BR,KR,US,IN,KR,TW,CL,JP,US,DE,US,BR,US,BE,US,DE,ID,US,AU,IN,IT,MX,IN,MX,FR,MX,US,PH,US,BR,US,DE,BR,ZA,DE,JP,SG,TH,SG,TH,SG,TH,JP,US,TW,JP,BR,TH,US,CA,US,GB,JP,US,NL,HK,BR,US,JP,AU,ZA,US,GB,ID,MY,US,HK,US,AU,US,DE,GB,US,JP,US,SE,IN,US,ES,US,FR,NZ,US,CA,TH,US,KR,IN,US,IT,US,HK,US,PH,US,CA,US,ID,JP,US,SG,US,JP,US,IN,JP,US,AU,SG,US,JP,US,DE,GB,NL,US,AT,US,DE,US,DE,US,GB,US,IT,US,PH,US,AU,US,JP,KR,JP,US,BR,US,FR,US,SG,CZ,HK,PH,KR,US,CL,GB,IN,US,MX,JP,IN,US,BR,US,JP,US,IN,SG,US,JP,US,AU,US,NL,JP,US,AU,NZ,US,NL,AU,IN,MX,JP,DE,US,JP,DE,SG,US,IL,FR,IT,US,IT,US,HK,JP,US,PL,JP,US,JP,US,HK,BR,IN,AU,US,NL,MY,JP,IN,SG,US,IN,US,TW,AU,BR,US,BR,US,MY,US,JP,US,DE,SE,BR,CO,US,IN,JP,IN,JP,ES,US,SG,US,BR,TH,US,JP,US,AU,HK,US,ES,US,TW,NL,OM,PH,SE,JP,US,FR,US,GB,US,JP,US,MX,HK,DE,AU,US,IN,US,HK,US,JP,IN,US,NZ,US,JP,US,JP,US,NL,US,BR,US,FR,TH,TW,CA,US,ES,US,AU,MY,US,JP,HK,AE,JP,HK,JP,US,IN,JP,US,JP,US,IN,US,MY,US,FR,US,PT,SG,JP,US,ID,US,MX,BR,US,IN,PL,US,JP,MX,US,BR,DE,US,DE,US,AU,US,JP,US,IN,AU,JP,TH,JP,US,AU,US,AU,US,IN,SG,IL,JP,AU,NL,US,JP,US,ES,AU,US,GB,JP,MY,SG,AU,US,SG,ID,US,GB,US,TH,AU,US,HK,DE,US,JP,HK,US,AU,US,IN,AU,HK,ES,IN,US,IN,US,AU,US,SG,US,NL,MX,KR,JP,MX,US,SG,MY,US,IT,BR,CA,JP,HK,SG,US,SE,TW,CA,KR,GB,US,JP,AU,JP,PT,US,KR,US,NL,VN,HK,US,ID,NL,US,ES,DE,NL,GB,FR,SE,JP,HK,US,SG,CH,US,ID,JP,US,KR,US,IN,US,NL,DE,SE,US,AU,GB,FR,IT,ZA,MY,US,TW,US,SG,US,TH,IN,JP,US,IN,JP,US,IN,US,DE,CA,US,KR,MY,IT,US,JP,NL,AU,FR,DE,JP,CL,JP,AR,US,FR,MX,US,IN,ES,IT,US,JP,CO,US,NL,US,SE,KR,IT,SG,US,SG,IT,HK,ZA,JP,NZ,SG,US,IN,SE,MY,SE,US,GB,AU,CA,JP,GB,NL,SG,US,DE,GB,US,SG,US,BR,US,IN,MX,US,JP,SG,JP,AU,GB,DE,PL,CO,US,MX,CA,AU,US,JP,KR,NL,CA,PL,US,GB,ZA,AU,US,ES,US,ID,TH,KR,SG,US,KR,DE,US,AU,IN,CL,TH,US,JP,AU,JP,US,IN,AU,SG,JP,GB,SG,JP,VN,US,KR,US,DE,AU,IN,AU,JP,SE,BR,SE,AU,US,BR,IN,AU,US,ID,IN,SG,JP,US,JP,US,IN,US,SG,IN,DE,CH,DE,SG,US,JP,SG,US,MX,AU,FR,NL,SG,US,SG,GB,SG,ZA,US,SG,US,IN,US,IN,US,DE,US,MX,JP,CL,AU,IN,MX,US,AU,SG,US,JP,HK,FR,HK,NL,US,TR,JP,US,AR,BE,US,JP,IN,US,IN,DE,US,AE,CO,BR,US,JP,US,BR,US,FR,DE,US,MX,JP,SG,US,BR,US,AU,US,DE,CA,JP,US,AU,US,IN,US,JP,US,JP,HK,SE,US,CH,US,UA,US,GB,IN,US,RU,US,AU,JP,HK,JP,AU,KR,AU,SG,JP,HK,TH,US,HK,US,JP,US,IL,US,HK,GB,US,MX,DE,US,CL,US,FR,US,JP,US,GB,ID,KW,US,FR,US,SG,JP,IN,DE,IN,US,HK,AU,US,IN,US,IN,SG,IN,FR,IT,NL,US,JP,NL,GB,SE,GB,NL,BE,NL,HK,SG,AU,NL,US,NL,HK,JP,EC,IN,US,IE,IN,MY,HK,US,CA,KR,US,IN,BR,IN,AU,NL,MX,IN,US,JP,US,CA,US,JP,NL,US,NL,SG,US,JP,US,BR,CA,NL,US,JP,ES,CA,FR,AU,SE,US,AU,US,DE,US,AU,TR,US,JP,US,JP,US,IN,DK,GB,US,KR,ZA,SG,US,PL,US,JP,MX,US,MX,JP,US,CA,US,JP,US,AU,JP,SG,US,DE,GB,JP,US,IN,US,CA,US,MX,US,IN,US,MX,JP,DE,US,BR,US,BR,CL,BR,US,BR,US,JP,BR,US,JP,US,CL,BR,US,SE,VN,US,SG,US,CL,US,BR,US,JP,US,AU,ID,JP,US,JP,MX,US,IN,US,IN,US,JP,ZA,DE,SE,ES,SE,ES,SE,ES,SE,ES,SG,HK,US,BE,CA,US,KR,TR,JP,US,IN,US,BR,US,BR,US,NL,CA,HK,IT,SG,US,MX,SE,JP,US,CA,US,JP,US,JP,US,IN,JP,AU,US,AU,JP,US,IN,US,IN,JP,US,IN,US,MX,US,NZ,US,BR,US,NL,US,MY,NL,IN,US,JP,HK,US,ID,US,NL,SG,US,CA,US,AU,US,ES,KR,JP,ES,GB,MX,US,MY,DE,US,AT,NL,SG,US,AU,US,AU,KR,US,CA,AU,US,ES,AU,US,SA,IN,US,GB,AT,US,NL,US,IN,DE,US,TH,US,IN,ID,CA,US,AU,JP,US,AE,US,TH,IN,US,PL,US,GB,US,AR,IN,US,MX,SG,US,SG,US,NL,IN,US,HK,US,IN,US,PL,US,PL,US,GB,US,DK,NL,US,KR,US,IN,LK,IN,LK,IN,HK,LK,IN,LK,IN,US,PL,US,IN,US,MX,BR,MX,US,KR,US,IN,US,FR,US,JP,NL,HK,US,HK,US,BR,SG,US,ES,JP,US,HK,US,HK,US,AU,US,CO,AU,US,AU,IT,HK,AU,HK,US,DE,IN,US,JP,SG,US,CH,US,HK,SG,KR,IN,US,HK,US,MO,US,JP,US,DE,US,IN,JP,US,DE,US,FR,US,IE,US,SG,US,SG,US,SE,US,FR,US,SE,FR,CL,NL,SE,ES,US,FR,SG,US,DK,US,NZ,US,ES,US,GB,CZ,US,BR,US,BR,NL,BR,US,HK,KR,US,GB,US,SG,PL,US,NL,NZ,US,RU,SG,US,SG,US,CZ,US,SG,FR,US,SG,US,MY,US,KR,US,IN,HK,US,CA,US,CA,US,NL,US,HK,US,HK,US,SG,US,AU,FR,NZ,SG,US,AR,US,FR,DK,US,JP,US,IT,HK,JP,US,DK,US,AR,DK,US,JP,US,HK,US,IT,VN,US,IL,US,AU,US,CR,US,IN,US,KR,FR,IT,US,JP,US,JP,US,NL,US,NL,US,CA,US,GB,US,GB,US,GB,US,GB,US,GB,US,DE,US,AF,US,CA,US,CA,US,CA,US,TR,US,GB,CA,US,CA,US,DE,US,DE,NL,US,AU,DE,NL,US,GB,NL,DE,NL,DE,US,NL,DE,US,RU,DE,NL,TR,AE,TR,GB,AE,GB,FR,ES,FR,US,GB,US,CA,HK,VN,US,TW,US,CA,US,CA,US,FI,US,CA,IE,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,SG,HK,BR,US,BR,NL,US,HK,US,NL,US,JP,US,SG,US,HK,US,NL,US,IE,US,HK,JP,SG,US,IE,US,HK,SG,US,IE,NL,US,AU,IE,JP,US,HK,US,HK,US,AT,US,GB,US,ZA,IN,US,AU,US,JP,US,IE,US,SG,US,NL,US,GB,US,IE,US,JP,BR,FR,JP,AU,CL,FR,CA,DE,AE,NO,DE,ZA,US,RU,US,GB,US,SG,GB,SG,US,NL,SG,JP,US,JP,GB,AU,SG,US,SG,US,CN,US,NL,US,NL,SG,NL,SG,NL,RU,NL,RU,NL,GB,NL,LU,NL,RU,NL,US,LU,US,SG,NL,RU,CA,NL,RU,US,RU,NL,US,CA,_,PR,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,PR,_,US,_,CA,_,US,_,CA,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,PR,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,FR,BR,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,RO,_,PR,US,_,US,_,CA,US,CA,_,PR,_,US,_,US,_,GD,_,US,_,US,_,US,_,US,_,US,_,US,_,VG,_,US,_,US,_,CA,_,US,_,CA,_,CH,_,CA,_,CA,_,US,_,PR,_,US,_,US,_,PR,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,MX,AR,_,US,_,US,_,KN,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,AG,_,PR,_,CA,_,US,_,CA,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,TW,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,PR,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,AU,CA,US,_,PR,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,FR,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,DE,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,BL,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,VG,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,FR,_,CA,_,US,_,US,_,US,_,US,_,KN,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,VG,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,NL,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,PR,_,US,_,PR,_,US,_,CA,_,US,_,MF,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,AU,TW,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,TR,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,CH,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,CA,_,US,_,CA,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,GD,_,US,_,US,_,CA,_,CA,_,US,_,US,_,NZ,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,CA,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,CA,_,US,_,US,_,CA,_,VI,_,US,_,US,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,GB,_,US,_,US,_,US,_,US,_,US,_,PR,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,JP,_,US,_,US,_,US,_,US,DE,_,US,_,US,_,US,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,DE,_,CA,_,US,_,CA,_,US,_,IN,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,TW,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,HK,_,US,_,US,_,US,_,US,_,CA,_,MO,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,DE,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,SA,_,US,_,IN,_,CA,_,CA,US,JP,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,PR,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,UG,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,DE,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,JP,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,HK,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,VN,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,HK,_,CA,_,CA,_,JM,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,HK,_,CA,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,NL,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,DE,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,DE,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,DE,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,HK,_,PR,_,US,_,US,_,HK,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,IN,_,US,_,US,_,US,_,CA,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,JP,_,US,_,GB,_,US,_,FR,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,HK,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,NL,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,DE,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,CH,_,US,_,US,_,US,_,GB,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,VG,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,PR,_,US,_,CA,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,HK,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,VC,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,PR,_,US,_,CA,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,CA,_,US,_,CA,_,US,_,US,_,PR,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,NL,_,US,_,CA,_,US,_,US,_,FR,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,BR,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,AG,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,PR,US,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,CA,_,CA,_,US,_,PR,_,US,_,US,_,PR,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,PR,_,US,JP,DE,US,DE,GB,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,BS,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,JP,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,DM,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,KY,_,US,_,US,_,US,_,CA,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,VG,_,US,_,US,_,PR,_,US,_,US,_,US,_,US,_,BS,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,_,US,_,CA,_,US,_,CA,_,US,_,US,_,US,_,US,_,US,_,US,JP,US,AT,IN,US,AU,US,IN,US,FR,US,IN,US,AR,US,MX,US,MX,AR,SG,US,DE,US,MX,NL,US,SG,US,FR,JP,US,BR,US,ID,BR,MX,BR,KR,JP,US,ID,US,BR,JP,US,FR,US,HK,IN,BR,FR,US,AU,DE,US,ZA,GB,US,HK,TW,US,DE,US,IN,SE,US,GB,IN,JP,IN,US,MY,US,SG,US,AE,US,IN,US,DE,US,JP,US,KR,MX,CL,PE,JP,MX,US,JP,US,VN,US,CA,US,ID,MX,ID,US,TH,MX,GB,ES,FR,TH,JP,US,ES,US,JP,US,MY,US,JP,GB,US,AU,VN,ES,JP,US,IT,US,SG,US,IN,AE,JP,US,JP,US,NL,US,KR,US,BR,US,QA,IL,JP,US,IT,US,ID,AE,US,GB,US,IN,US,JP,US,ES,US,CL,US,ID,US,KR,HK,VN,AU,US,JP,SG,MX,JP,US,JP,BR,SG,ID,BR,US,ID,IN,CZ,US,DE,NO,NL,US,IN,AR,US,AU,US,FR,US,IN,IT,US,GB,US,KR,US,BR,AR,US,BR,US,PH,US,DE,RU,US,DE,IN,US,DE,US,GB,US,JP,US,DE,KR,JP,AR,US,GB,IT,CH,GB,US,NL,FR,IT,IE,SE,BE,FR,ID,AU,MX,US,JP,US,NL,US,PL,US,DE,NL,KR,US,JP,US,IT,MY,US,AU,SE,AR,US,MY,IN,US,NL,US,HK,US,NL,US,HK,AU,US,TW,US,HK,US,HK,US,AR,US,HK,BR,US,JP,TW,DE,US,TW,US,TH,US,JP,US,JP,AU,US,JP,US,IN,AU,IN,AU,US,MM,IT,US,DK,HK,SG,MY,RU,IN,US,MY,US,BR,DE,JP,US,KR,IN,SG,SE,BR,SG,US,JP,FR,MY,JP,US,SG,MX,SG,US,BR,US,MX,US,IN,JP,US,JP,ES,SA,US,HK,KR,US,IN,US,BR,FR,US,FR,US,TH,US,SG,US,IE,US,AU,US,ID,TH,AU,US,HK,US,HK,US,GB,HK,US,FR,PL,US,NL,US,ES,SG,ID,SG,US,IN,US,FR,IN,SG,US,TW,US,HK,US,IN,US,AU,TW,JP,US,ZA,US,DE,HK,US,SG,KR,TW,SE,US,IN,DE,IN,US,IN,US,KR,IN,US,GB,US,HK,ES,US,HK,US,JP,GB,SG,JP,IN,HK,US,IN,US,HK,BR,IN,AU,JP,US,ID,MY,US,DE,US,MX,IN,CA,BE,US,BR,IN,DE,US,BR,FR,SG,HK,US,JO,US,VN,US,KR,US,ID,US,SE,IN,AT,ZA,TW,SG,US,PH,US,GB,DE,US,AU,IN,MY,CH,US,BR,CA,US,IN,AU,US,TH,DE,US,IN,US,MX,US,IN,MX,SG,US,SG,US,AT,IL,JP,US,HK,BR,ZA,US,CA,US,BR,FR,US,ID,US,MM,KR,US,IN,US,AU,JP,ZA,US,AU,US,SG,KR,US,JP,US,GB,SA,US,CL,SE,US,AR,US,FR,US,KR,JP,FR,IN,US,DE,FR,US,IN,RU,US,JP,HK,US,AU,GB,IN,US,MX,US,IN,JP,US,JP,IT,US,AU,US,ID,JP,US,IN,US,JP,NL,FR,IN,US,JP,NL,DE,US,IN,US,JP,IN,TW,AU,IN,JP,BR,US,CA,CH,UY,CA,BR,US,IN,US,FR,US,GB,US,AU,MX,TW,US,AT,US,SG,US,JP,IN,US,IN,BR,AR,US,IN,JP,GB,CA,US,DE,GB,US,DE,JP,US,FR,GB,NL,AT,US,GB,US,IN,SG,KR,US,SG,TW,HK,US,IN,BR,US,AU,US,CA,AU,FR,IN,DE,US,DE,US,AU,NL,JP,US,ID,AT,JP,MY,HK,SG,AU,IT,IL,US,JP,IT,US,ZA,AU,ID,US,FR,US,BR,US,IN,NL,GB,IN,GB,IN,GB,IN,GB,IN,GB,IN,GB,IN,GB,IN,GB,IN,GB,IN,GB,IN,US,AU,US,AU,US,JP,KR,SG,ID,SG,US,CA,SE,US,DE,BR,GB,US,IN,US,NL,US,NL,US,NL,US,CA,US,ES,US,CA,BR,CA,US,SE,KR,US,BR,US,AU,US,NG,US,IN,US,BR,TW,CA,JP,US,SE,JP,SE,US,MX,HK,MX,ES,US,CL,US,TH,US,DE,AT,US,MX,US,GD,TH,AE,UY,AE,IN,US,IN,JP,GB,BR,MX,AT,US,JP,US,AU,US,JP,SG,US,JP,SG,US,TH,JP,US,IN,US,GB,US,IT,LK,US,PE,US,PE,US,JP,US,KR,EC,US,AU,US,IN,NL,US,JP,US,SA,US,NL,US,MX,US,JP,TH,US,AU,ID,US,BR,US,ID,IN,NL,TH,IN,US,JP,NZ,US,NL,JP,US,JP,DE,AT,DE,AT,DE,US,KR,JP,ES,GB,FR,DE,FR,GB,NL,IT,ES,SE,AT,NL,DE,BR,IN,US,JP,IN,AU,MX,IN,FR,NL,US,IN,CA,SG,DE,US,SE,AU,CA,US,PH,US,JP,ES,BE,US,SG,TW,US,JP,SE,TW,US,IN,JP,KR,US,FR,SG,BR,SE,BR,CH,DE,US,JP,HK,PL,US,IN,SG,PH,PL,GB,US,IN,US,JP,US,AU,KR,US,JP,US,MX,US,JP,IN,HK,IN,US,SG,NZ,IN,DK,US,JP,US,NL,IT,IN,TW,US,ES,GB,NZ,US,NZ,JP,US,JP,US,BR,MY,JP,US,BR,JP,US,BE,US,NL,IN,AE,US,KR,ES,SE,ES,SE,ES,SE,ES,SE,ES,SE,ES,JP,AR,IN,JP,NL,US,IN,GB,IN,US,TW,US,IN,US,BR,DE,SG,US,AU,IN,US,JP,ID,IN,CZ,US,ID,US,FR,IN,US,FR,NZ,US,ID,JP,US,NL,US,NZ,BR,CH,US,DE,FR,TH,GB,US,IN,US,IN,JP,US,BR,IN,KR,US,GB,BR,US,BR,US,MX,CL,JP,US,JP,SG,ES,ZA,US,FR,AU,US,IN,SG,IN,SG,IN,SG,IN,SG,IN,US,AU,US,AR,NZ,JP,US,NL,US,JP,US,DE,JP,DE,US,MX,IN,JP,MY,AU,CA,CL,SG,US,JP,US,IN,TW,US,CA,US,AU,US,NL,US,DE,US,GB,TR,AU,US,GB,DK,CA,US,ID,JP,IN,US,AU,IN,US,JP,AU,NL,JP,US,AU,US,AU,GB,ZA,US,GB,BR,JP,ID,US,DK,US,ID,AU,DE,JP,IT,US,NL,US,IN,US,SG,IN,US,AT,IT,JP,US,DE,CA,US,AU,JP,ID,US,JP,US,SG,US,AU,US,JP,US,IN,US,JP,US,DE,US,SE,US,GB,AU,PE,AU,US,IN,US,IN,AU,IN,US,BR,US,GB,JP,US,CA,US,JP,US,JP,US,JP,US,BR,PE,US,NZ,US,AU,FR,SG,US,MY,US,DE,US,AR,US,AU,US,HK,US,AU,US,JP,IE,IN,ID,KR,BR,MX,DE,MX,NL,US,GB,US,TW,US,ID,BR,US,AT,IN,CA,US,IN,US,JP,MX,US,NL,NZ,US,AU,US,JP,DE,US,IN,SG,US,JP,US,CA,FR,US,CL,PH,IN,ID,US,JP,FR,JP,MX,HK,US,JP,US,GB,US,HK,US,NL,US,SG,US,JP,US,FR,US,FR,JP,CA,AU,US,MY,NL,GB,US,KG,US,IN,SE,US,JP,AU,US,ID,US,IN,MY,IN,US,DE,US,DE,US,BR,US,IT,US,CA,US,IN,US,IN,US,ZA,KR,TW,US,JP,US,CL,US,AU,JP,BR,JP,HK,BR,US,DE,AU,US,ID,JP,US,JP,US,CA,US,HK,RU,US,RU,EC,CL,US,MX,US,HK,US,CA,US,JP,US,HK,US,ID,NL,ID,GB,US,ID,US,AU,US,AU,US,MY,JP,US,AU,US,IN,JP,US,IN,CA,US,JP,MY,CA,US,CA,US,CA,ES,JP,US,KR,US,ID,CA,US,FR,TH,US,HK,TW,CA,US,SG,CA,US,MX,TW,IN,MY,US,FR,US,JP,US,JP,US,IN,IT,CA,US,AU,US,IL,IN,US,NL,US,AU,ID,US,IN,US,HK,US,JP,US,JP,IN,US,IN,US,TH,US,PH,IL,TR,US,SG,IT,TW,US,IN,US,CO,US,NL,NZ,US,ID,US,CA,NL,NZ,HK,US,NZ,US,HK,MY,US,AR,US,MX,US,JP,US,CL,BR,US,HK,CA,US,CL,IN,AU,CA,HK,US,AU,US,CA,US,CA,US,IN,US,IN,AU,US,CA,US,GB,DK,US,DE,IT,ES,ID,CA,GB,US,IN,US,BR,US,AU,CA,US,AU,FR,BR,US,IN,US,JP,US,HK,US,HK,US,HK,US,CA,US,CA,US,CA,US,CA,US,CA,US,FR,US,GB,US,AU,IE,US,IE,AU,LU,US,GB,LU,US,LU,US,MA,US,MA,US,PL,US,CA,GB,US,GB,BA,CA,MT,PH,US,CA,US,GB,US,ME,US,IE,US,KH,US,PH,US,PL,US,PL,US,JO,US,PL,US,JO,US,SA,US,KE,US,HK,US,SA,US,SA,US,CA,US,GB,US,CA,US,SA,US,PH,US,CY,US,PH,US,PH,GB,US,TW,US,TW,US,NZ,US,NL,US,NZ,US,NZ,US,GB,US,ES,US,GB,DE,CA,US,TW,US,NZ,US,IL,NL,US,TW,US,IT,US,JP,CA,US,HK,US,TH,US,TH,US,SG,US,CA,US,CO,ZA,DE,US,CA,US,HK,US,BB,US,HK,US,GB,US,JP,US,HK,US,TW,US,DE,US,DE,US,DE,HK,US,SG,US,BR,US,CA,US,CA,US,GB,US,CA,US,CA,US,CA,US,GB,US,GB,US,ES,US,FR,US,CA,US,GB,US,GB,US,CA,US,CA,US,CA,US,KR,US,CA,US,GB,US,BR,US,SE,US,JP,ES,IT,US,SG,HK,US,HK,US,BR,US,HK,US,CA,US,_,US,CA,US,NL,US,CA,US,CA,KR,HK,JP,BR,US,ID,NG,US,ID,TW,ID,US,QA,NG,US,ZA,AE,NG,NL,US,JP,US,HK,US,HK,US,JP,US,HK,US,AE,US,CA,US,IN,US,CA,PR,US,CA,NL,CA,US,GB,US,CA,US,CA,US,GB,FR,US,IE,US,NL,US,BR,US,MX,US,DE,US,ZA,SG,US,BR,BE,US,CA,US,KR,US,IE,SE,US,BH,FR,US,HK,IT,US,CA,US,NL,US,DE,US,TR,US,HK,US,CA,US,_,US,CA,US,DE,US,DE,US,DE,US,FR,DE,US,FR,US,DE,US,DE,FR,US,DE,US,FR,DE,FR,DE,US,DE,US,DE,US,DE,US,DE,US,BE,US,FR,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,FR,DE,US,NZ,CA,US,CA,US,CA,US,DE,US,JP,PR,PS,US,CA,US,CA,PR,US,CA,US,CA,US,CA,PR,US,BS,US,CA,US,CA,US,CA,US,JP,CA,US,PR,US,PR,US,PR,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,LC,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,TR,DE,RS,US,CA,US,CA,PR,CA,PR,CA,US,PR,US,CA,US,CA,US,CA,US,CA,US,NL,US,CA,US,CA,US,GB,US,GB,US,GB,US,GB,US,GB,US,CA,US,BR,PY,BR,DO,GT,CO,AR,CO,BR,US,CA,US,CA,US,UM,US,CA,US,PR,US,CA,US,PR,US,CA,US,CA,US,CA,US,BS,US,CA,US,CH,US,CA,US,CA,AE,GB,FR,ZA,GB,AT,AE,SE,ES,IL,IT,DE,FR,CH,FR,GB,DE,NG,ZA,NL,IE,SA,ES,SA,DE,CZ,PL,FR,BE,NG,DE,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,PR,US,FR,US,CA,US,BS,CA,US,AR,HK,US,AU,US,_,US,CA,US,HK,CA,US,CA,US,CA,US,AU,SG,NZ,IN,JP,AU,IN,HK,KR,AU,TH,IN,JP,IN,TW,PH,IN,JP,AU,HK,IN,AU,US,BR,AR,CO,CL,BR,PE,BR,MX,BR,CO,US,FI,PT,US,CA,US,CA,BS,DM,BS,CA,US,CA,US,CA,US,GB,US,JP,MY,SG,VN,JP,IN,AU,BD,CN,IN,TW,HK,US,HK,CN,IN,ES,IN,PK,CN,KR,ID,IN,CN,IN,US,IN,HK,GB,SG,HK,KR,VN,IN,KR,VN,IN,CN,AU,NP,JP,_,JP,AU,CN,IN,KR,CN,IN,PH,IN,AU,EC,ID,HK,JP,HK,CN,HK,AU,JP,CN,TW,SG,AU,CN,AU,JP,ID,PK,JP,AU,BD,CN,IN,CN,TH,IN,VN,JP,HK,JP,TK,JP,NZ,JP,KH,IN,PK,SG,KR,AU,TW,IN,JP,_,CN,AU,CN,AU,_,JP,IN,US,SG,IN,JP,AU,TH,JP,TW,KR,CN,SG,TW,HK,CN,AU,CN,JP,PH,JP,IN,PH,IN,CN,PH,JP,SG,AU,KH,SG,KH,SG,KH,JP,CN,MO,HK,MO,HK,MO,HK,MO,HK,MO,JP,HK,MY,JP,NZ,PH,AU,KH,NZ,NP,ID,AU,IN,JP,AU,HK,PH,AU,KR,JP,HK,JP,GB,HK,GB,JP,GB,JP,HK,GB,JP,HK,JP,GB,HK,JP,GB,JP,HK,JP,HK,JP,HK,JP,SG,JP,SG,JP,SG,JP,AU,CN,ID,SG,ID,AU,ID,CN,_,AU,JP,CN,IN,JP,KR,CN,JP,AU,JP,IN,JP,MV,SG,CN,KR,JP,IN,JP,SG,JP,AU,IN,CN,IN,_,KH,KR,JP,VN,IN,US,IN,GB,US,GB,IN,SG,IN,KR,JP,AU,CN,ID,AU,JP,NZ,IN,GB,SG,MY,ID,AU,CN,JP,NC,JP,HK,PG,JP,HK,SG,IN,JP,AU,KR,ID,JP,TH,NZ,AU,SG,TW,IN,HK,TW,SG,IN,FJ,SG,TW,AU,TW,PH,JP,PH,MN,IN,ID,_,HK,JP,HK,JP,IN,DE,IN,BD,HK,KR,HK,US,HK,TW,HK,DE,KH,HK,SG,VN,SG,HK,SG,VN,HK,IN,ID,BD,IN,ID,AU,GB,AU,KR,SG,WF,SG,IN,JP,AU,MY,KR,JP,AU,PH,_,JP,HK,US,HK,US,HK,US,HK,JP,AU,JP,CN,TH,ID,SG,ID,JP,BD,JP,MY,AU,TH,JP,IN,AU,CN,JP,ID,US,JP,CN,TH,MY,TW,JP,BD,CN,KR,CN,JP,KR,TW,IN,NZ,AU,JP,TH,PK,KR,IN,US,PL,IR,TR,DE,TR,NL,RU,SK,GB,DK,DE,MK,NL,ES,CH,FR,DE,SE,NL,BG,SE,IT,UA,GB,ES,RO,GB,RO,FR,DE,GB,DE,GB,EG,GB,AU,GB,US,GB,CZ,DE,BE,GB,DE,GB,NL,GB,BE,GB,DE,GB,CH,GB,DE,GB,NL,GB,DE,GB,PH,GB,PL,GB,IT,RU,PL,NL,GB,FI,TR,PL,IE,CH,IR,GB,IQ,IR,AT,IR,IT,AM,MK,DE,MK,BG,DE,NL,DE,GB,SI,RU,CZ,FR,RU,SY,RU,KZ,RU,NL,RU,LI,GB,IT,CZ,RU,CH,IT,FR,QA,NL,MK,PL,AT,IT,MK,DE,BE,LU,US,DE,IT,TR,RU,JP,SE,DE,SE,GB,RU,GB,UA,GB,SE,RU,IE,RU,IE,US,SG,IT,US,SE,IE,KR,IE,NZ,IN,CA,PL,JP,ES,AT,BR,IT,TW,US,MX,BR,IE,US,AR,ID,IE,RU,IT,RU,GB,PS,DE,RU,DE,ES,US,DE,SE,BG,IT,BG,IT,DE,BG,US,BG,AU,BG,IT,FR,RO,US,RO,NL,RO,AT,RO,ES,NL,GB,KZ,IT,DE,GB,NL,RS,RO,US,GB,JP,RO,NL,DE,NL,RO,BE,TR,RO,ES,TR,GB,CA,FR,CZ,US,UA,FR,IR,NL,RO,GB,ES,RO,IR,IT,IR,RO,US,IT,SY,GR,LT,NL,IT,RO,ES,GR,GB,TR,AU,RO,IQ,TR,IT,NL,AU,ES,RO,GR,GB,RO,TR,GB,ES,CZ,DE,RU,FR,SE,DE,IT,RU,IT,GB,IS,FI,SI,DE,NL,GB,US,GB,BE,DE,RU,GB,AL,DE,GB,NL,CY,DK,SE,PL,GB,DE,GR,LU,PT,RU,GB,CH,HU,RU,GB,ES,NL,EE,SE,FR,UA,US,PL,MW,DE,GB,RU,BY,DE,GB,BE,ES,NO,IT,DE,ES,NL,DE,SK,HU,LV,IR,UA,GB,AU,GB,NL,GB,IR,FR,BE,NL,FR,IQ,GB,TR,RU,GB,PT,RO,AQ,DE,DK,RU,IT,DE,NL,US,GB,SE,PS,IE,FR,IE,DE,IR,NL,IR,US,GB,CH,IR,IQ,FI,DE,GB,TR,ES,GB,NL,GB,RU,GB,NO,RU,CY,RU,IR,GR,GB,RU,PL,IT,RU,GB,RU,CZ,UA,RU,UA,KG,DE,AE,FR,RU,CZ,MD,NL,IT,CH,RU,CZ,DK,ES,DE,UA,BE,SE,PL,YE,RU,DE,KZ,CZ,FR,IR,RU,UA,UZ,RU,UA,RU,UA,RU,UA,RU,UA,RU,UA,RU,UA,US,UA,US,CH,RU,CH,UA,AR,SE,US,CH,NL,DE,GB,TW,US,CH,TR,ES,RU,UA,RU,UA,RU,BG,PL,RU,AL,US,IR,FR,ES,JP,RU,UA,RU,UA,PL,UA,RU,UA,RU,UA,PL,RU,PL,RU,CZ,PL,UA,RU,PL,RU,GB,NL,GB,IN,PE,FI,NL,PL,RU,UA,LV,RU,LV,RU,UA,DE,UA,NL,UA,US,UA,US,CH,UA,NL,RU,UA,DE,SG,IN,UA,IS,FR,PL,UA,KZ,UA,FR,UA,FR,UA,AZ,RU,UA,NL,US,RU,IT,CH,RU,AL,RU,LT,IT,IL,ES,IT,RU,PL,DE,RU,TR,FR,SE,RU,NO,HR,HU,RO,HU,RO,HU,BA,IR,FI,ES,DE,IT,DE,CZ,RU,AM,SE,RO,GB,DE,GB,CZ,JP,LT,LV,ZA,MD,RO,TR,TH,KE,AL,TW,AR,BR,AE,BD,PH,MY,UA,BE,GR,NO,BE,CN,UY,IS,RU,UA,IR,AE,IR,PL,GB,PL,RU,AM,RU,UA,US,RU,UA,RU,UA,RU,PT,RU,UA,RU,NO,DE,RU,IT,RU,UA,RU,UA,RU,PL,RU,KZ,RU,SK,CZ,IR,RU,BY,GB,PL,AU,GB,IT,RU,MD,US,RO,GB,UA,NL,UA,NL,UA,RO,PL,UA,RU,LV,RU,UA,RU,UA,RU,RO,FR,PL,ES,RU,DK,RU,SK,IT,RU,GB,CH,FI,CZ,RU,GB,RU,US,IT,GB,IT,DE,US,GB,AE,SE,DE,SE,DE,PL,AM,DE,AM,KZ,RU,RO,NL,RU,PL,CZ,PL,GB,RO,RU,UA,RU,UA,RU,UA,DE,UA,DE,UA,IL,RU,UA,RU,AU,AR,GB,SG,US,JP,US,GB,RU,NL,RU,US,RU,PL,UA,SK,UA,RU,NL,UA,CZ,RU,BE,NO,RO,FR,BE,RU,PL,RU,UA,PL,RU,PL,UZ,LT,RU,NL,TR,UA,TR,GE,HR,RU,UA,RU,UA,RU,KZ,UA,RU,UA,RU,UA,KG,RU,UA,RU,MD,UA,UZ,RU,IT,NL,MD,UA,RU,KZ,UZ,RU,UA,SY,UZ,UA,RU,KZ,UA,RU,UZ,MD,RU,UZ,GB,GE,RU,UA,UZ,GB,MD,RU,MD,UZ,UA,MD,RU,UZ,RU,UA,RU,BY,UA,NL,DE,NL,GR,CY,GR,CY,IL,TR,IT,NL,RU,CH,SA,IL,KZ,GB,FR,BE,NO,NL,TR,IE,IT,GB,US,CL,SI,NL,SG,CZ,IE,FR,LV,SE,RU,IT,IR,US,IR,SK,LB,ES,NL,DE,RU,GB,UA,US,GB,US,RU,CZ,RU,DE,AZ,NL,JP,GB,NL,GB,IT,CH,AL,KZ,RU,NL,US,IR,HU,CH,DE,RU,UA,RU,DE,US,DE,NL,DE,RU,DE,NL,US,DE,RU,UA,LU,FI,FR,BE,PL,FR,PL,RU,LT,FR,GB,RU,PL,TR,BA,FR,LT,GB,CZ,NL,IT,ES,GR,RU,ES,RU,IT,DE,TR,PL,RU,PL,DE,NL,IR,RU,NL,JP,RU,PL,CZ,RU,NL,RU,PL,RU,IT,NO,GB,DK,IT,DE,GB,BA,GB,TR,IE,CH,BE,DE,AU,IT,KG,RU,PL,NO,RU,GR,JE,DE,RU,NL,GB,US,CZ,PL,NL,US,NL,DE,GB,US,GB,US,GB,NL,US,NL,US,NL,GB,DE,NL,IE,NL,RU,JP,DE,ES,FR,GB,US,SG,NL,DE,IL,DE,FI,DE,US,RU,IT,DE,NL,IT,GE,CZ,GB,RU,NL,RU,SE,TR,PL,SE,NL,SE,US,SG,NL,ES,DE,SG,NL,GB,FR,GB,KG,GB,IT,SM,BE,FR,IT,SY,UA,PL,NL,IR,RU,GB,IT,AT,GB,BE,UA,IL,IR,PL,RO,BG,UA,US,LT,SE,CH,IE,GB,ES,DK,NL,ES,DE,DK,US,SE,IT,TR,IE,RU,NL,RU,ES,RU,NL,UA,KW,RU,LU,RU,DE,US,CA,SG,US,AU,AT,PH,HK,UA,PL,CA,IT,UA,AU,SE,DE,SE,NO,SE,NO,FR,LU,RU,DE,NL,US,FR,NL,JP,NL,RU,NL,RU,ME,GB,TR,_,NL,FR,GB,NL,CH,US,CH,RU,TR,ES,MX,ES,IT,RU,SE,NO,SE,DK,SE,FI,SE,GB,DE,CY,DE,CD,GB,CD,IS,DE,SE,DE,IS,FR,RO,TR,DE,AT,RO,TR,HU,NL,TR,RO,NL,MX,NL,GB,TR,US,TR,GB,RU,ES,US,DE,TR,DE,RU,NL,KZ,IL,RU,ES,GB,US,NL,GB,SE,RU,BG,GB,NO,DE,ES,SE,DE,KW,US,TR,DE,IR,US,PL,AT,PL,DE,JP,DE,PL,IR,DE,TR,IT,IR,ES,GB,NL,BR,DE,GB,US,DE,IR,ES,DE,US,IR,US,DE,US,DE,IR,US,DE,IR,AE,GB,FR,GB,FR,SE,BE,SE,BE,SE,CH,GB,DE,UA,BE,US,FR,IR,UA,CY,IT,DE,SE,LU,IT,RU,BA,HR,SE,IE,IT,HR,GB,AE,GB,SG,IE,GB,GR,FI,IT,IR,AT,KW,FR,IE,DO,BH,DK,NL,UA,RU,DE,RU,AE,BZ,NL,SE,SG,SE,JP,CH,DE,US,SE,US,GB,NL,LT,DE,US,DE,NL,DE,NL,LT,US,DE,HK,DE,US,HK,US,DE,US,GB,US,SG,GB,DE,RO,DE,PL,ES,PL,DE,PS,DE,NL,RU,GB,ES,CZ,PL,CZ,PL,CH,RU,AL,GB,IE,GB,CZ,NL,US,DE,ES,GB,FR,US,GB,RU,AZ,NL,RU,US,NL,BG,US,ES,DE,US,UA,PH,NL,GB,BY,RU,US,RU,ES,US,GB,US,BA,US,IN,RU,NZ,RU,US,RU,TR,BA,NL,PS,JP,IQ,JP,PL,FR,ES,JP,BA,PL,HU,IT,DE,US,SG,US,GB,US,CA,US,CA,US,GB,US,GB,US,GB,NL,US,NL,US,NL,GB,NL,US,CA,GB,US,GB,US,GB,US,IN,HK,JP,AU,JP,SG,AU,US,CA,US,GB,US,NL,US,GB,US,GB,US,FR,DE,US,DE,GB,US,GB,NL,BR,PA,SV,BR,CL,BR,MX,BR,MX,BR,US,BR,AR,BR,AR,CL,CO,BR,MX,PA,BR,PE,BR,CL,BR,CR,BR,MX,BR,US,AU,US,JP,US,SG,US,SG,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,JP,NL,HK,US,FR,US,GB,US,CA,US,CA,US,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,BR,US,BR,US,BR,US,CA,US,BR,US,CA,US,CA,US,GB,US,JP,US,AR,US,BR,US,DE,NL,DE,NL,DE,NL,DE,US,GB,DE,GB,PL,US,GB,US,FR,US,FR,DE,US,GB,US,DK,IT,AT,CH,DE,HR,BG,SI,HU,NO,ES,US,IE,DK,US,ES,CH,FI,IT,US,CZ,NO,DE,DK,US,DK,GR,US,SE,GB,US,GB,IE,US,GB,NL,US,ES,BE,US,FR,BE,DE,BE,US,NL,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,NL,SE,DE,GB,NL,DK,CH,ES,FR,IT,SI,NL,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,AU,US,HK,US,SG,US,FR,GB,US,GB,US,GB,FR,SG,US,SG,US,SG,US,JP,US,FR,US,GB,US,GB,US,GB,US,SG,JP,US,SG,GB,US,GB,US,SG,US,GB,US,GB,US,SG,US,GB,US,GB,US,GB,US,GB,FR,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,MX,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,PL,US,CA,US,FR,US,GB,US,PL,US,FR,US,FR,US,FR,US,CA,US,GB,US,CA,US,NL,US,PL,US,FR,US,SG,US,GB,US,PL,US,CA,US,GB,US,PL,US,DE,US,GB,US,GB,US,FR,US,FR,US,FR,US,JP,US,FR,US,FR,US,NL,US,GB,US,GB,US,FR,US,NL,US,FR,US,NL,US,IN,AU,CA,CL,IL,KR,US,IT,ES,DE,US,DE,IN,CA,US,CA,US,PL,FR,US,QA,SA,AE,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IT,QA,US,CA,US,SG,US,KR,BE,US,DE,NL,US,NL,BE,US,ID,US,ZA,US,BE,GB,BE,GB,BR,DE,AU,US,CA,KR,IN,US,KR,ID,US,KR,SG,US,SG,US,SG,US,SG,KR,CH,AE,CH,US,BE,US,TW,US,JP,US,SG,AU,FI,GB,DE,NL,US,HK,IN,US,CA,US,BR,AR,BR,US,HK,JP,US,TW,HK,JP,KR,JP,KR,GB,FR,IE,BD,IN,PK,IN,BD,IN,KH,ID,MY,MM,PH,SG,TH,VN,KH,ID,MY,MM,PH,SG,TH,VN,AU,NZ,PG,AU,NZ,PG,AU,BY,FI,LT,NO,RU,SE,FI,SE,BE,DK,NL,BE,DK,NL,CA,US,CR,MX,PA,US,CR,MX,PA,US,CR,MX,KE,NG,ZA,AD,AT,BG,HR,CZ,EG,DE,GR,HU,IL,IT,JO,KW,LI,LU,MD,MC,PL,PT,RO,SA,SK,SI,ES,CH,TR,UA,AE,UZ,KE,NG,ZA,AD,AT,BG,HR,CZ,EG,DE,GR,HU,IL,IT,JO,KW,LI,LU,MD,MC,PL,PT,RO,SA,SK,AR,BO,BR,CL,CO,EC,PY,PE,VE,AR,BO,BR,CL,CO,EC,PY,PE,US,CA,US,JP,US,PK,IN,PK,US,IN,ID,SG,US,SG,US,SG,ID,SG,ID,SG,ID,US,KH,ID,MY,MM,PH,SG,TH,VN,US,BY,LT,NO,RU,US,GB,FR,IE,BE,DK,NL,CA,US,MX,PA,US,VE,US,ES,CH,AT,TR,SI,UA,AE,UZ,KE,NG,ZA,AD,AT,BG,HR,CZ,EG,DE,GR,HU,IL,IT,JO,KW,LI,LU,MD,MC,PL,PT,RO,SA,SK,SI,ES,CH,TR,UA,AE,UZ,DE,KE,NG,ZA,AD,AT,BG,HR,CZ,EG,DE,GR,HU,IL,IT,JO,KW,LI,LU,MD,MC,PL,PT,RO,SA,SK,SI,ES,TR,UA,AE,UZ,ZA,DE,AD,ZA,US,JP,US,JP,CL,US,SG,US,JP,US,CA,BR,HK,FI,AU,SG,IN,CH,DE,CA,PL,IN,AU,US,NL,JP,US,GB,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,PL,US,PL,CA,US,DE,IT,DE,US,BE,US,CA,BR,HK,FI,AU,SG,IN,CH,DE,CA,PL,IN,AU,US,NL,CH,KE,PK,CH,AT,SK,EG,JO,KW,SA,ES,AE,US,JP,US,BE,US,CA,SG,US,SG,AU,IN,US,JP,CL,US,GB,US,JP,US,AU,CA,US,CA,SG,US,AU,CA,US,GB,US,CA,SG,US,ID,US,AU,CA,IN,US,TW,US,BE,FR,BE,DE,NL,GB,SG,US,SG,US,JP,NL,GB,US,HK,US,BR,AU,BR,CA,IN,ID,CA,US,DE,US,SA,ZA,US,IN,CL,US,IN,CL,US,IT,FR,US,IT,US,FR,US,GB,ES,US,DE,JP,NL,SG,US,IN,SG,IL,NL,US,IT,US,IT,QA,US,IT,US,FR,US,JP,GB,ES,US,DE,JP,NL,SG,US,IN,IL,US,NL,US,IT,QA,ID,CA,US,DE,US,FR,ES,IL,SA,US,ES,CL,US,IN,DE,US,SA,ZA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IE,US,PE,US,MX,US,IE,US,ID,AU,SE,BH,IN,FR,US,ZA,AE,DE,BR,HK,IN,KR,JP,GB,AU,IT,JP,US,SG,CA,ES,CH,US,JP,US,JP,US,IT,US,IN,US,DE,US,GB,US,GB,FR,CA,US,CA,US,TW,SG,US,SG,US,BE,US,TW,BE,JP,SG,US,AU,GB,JP,TW,BE,US,BE,JP,US,JP,TW,BE,US,SG,AU,GB,BR,DE,SG,US,BR,US,JP,IN,AU,US,IN,US,TW,US,CA,US,GB,US,TW,HK,US,FI,US,NL,BE,US,CA,US,CA,US,CA,US,CA,US,BE,TW,US,DE,IN,US,BE,US,JP,SG,AU,GB,NL,CA,US,HK,BR,KR,CH,FI,US,JP,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,ID,US,CA,US,CA,US,CA,US,CA,US,IT,US,NL,DE,GB,SG,FI,HK,US,TW,BR,AU,IN,CA,CH,JP,US,JP,US,BE,HK,US,JP,TW,US,FI,US,TW,US,GB,US,JP,US,BE,US,TW,DE,GB,NL,US,SG,IN,AU,CA,BR,TW,DE,GB,US,JP,US,ES,CH,US,TW,US,BE,SG,US,HK,BE,US,NL,DE,GB,SG,FI,HK,US,TW,BR,AU,IN,CA,CH,JP,US,JP,US,BE,US,GB,DE,US,HK,US,JP,US,IN,AU,US,GB,DE,US,SG,BR,US,CN,NP,CN,JP,CN,JP,CN,HK,CN,AU,CN,ID,SG,ID,SG,ID,KH,KR,CN,AU,US,IN,MN,BD,PK,HK,VN,BD,AF,BD,VN,PH,BD,US,SG,IN,BT,AU,BD,AU,ID,JP,IN,BD,VN,ID,PH,SG,VN,ID,PK,BD,PK,ID,IN,BD,IN,US,SG,ID,HK,AU,ID,AU,ID,BD,ID,AU,ID,PH,ID,BD,IN,ID,IN,ID,HK,VN,ID,AU,BD,AU,NP,ID,IN,ID,IN,ID,VN,BD,ID,BD,ID,AU,IN,BD,ID,IN,ID,NZ,VN,ID,IN,ID,HK,ID,CN,TW,MY,VN,SG,BD,ID,TW,BD,JP,ID,CN,JP,CN,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,CN,TW,JP,CN,NP,CN,IN,US,IN,PK,JP,AU,PK,AU,BD,HK,PH,IN,BD,AU,BD,IN,SK,EC,KR,TW,PH,SG,IN,PK,MV,PH,IN,AU,CN,JP,SG,CN,IN,_,SG,MY,KH,SG,IN,JP,CN,IN,CN,IN,US,HK,IN,HK,AU,JP,IN,SG,PK,SK,JP,CN,IN,JP,IN,PH,IN,IE,NL,IE,NL,EE,CH,ME,FR,NL,GB,ES,DE,CZ,SE,DE,IE,GB,DE,FR,RU,SE,LT,RU,GB,SI,LU,GB,NL,DE,RU,TR,NL,TR,NL,GB,DE,IT,MA,IT,DE,AT,CH,GB,FR,ES,DE,ES,DE,ES,FR,GR,PT,DE,IT,FI,DE,NL,US,NL,GB,PA,FR,SE,DE,GR,US,PS,BA,RU,FR,PL,RU,KZ,US,NL,US,RU,FR,AR,US,AR,UA,RU,GB,RU,BY,RU,US,RU,FI,RU,FR,RU,NL,SK,CY,DE,CZ,TR,HU,NL,IT,RU,IR,DE,NL,DE,US,SG,NL,DE,NL,DE,NL,US,HK,SG,US,NL,HK,SG,US,DE,NL,DE,NL,HK,SG,US,GB,NL,DE,NL,DE,NL,DE,NL,US,IR,DE,ES,GB,ES,IT,GB,AU,DE,US,ES,IR,DE,JP,GB,IM,IR,US,DE,US,ES,US,SA,DE,AT,US,NL,US,ES,FR,US,RU,SE,UY,RU,MX,DE,FI,SA,BY,IQ,HU,KZ,GB,DE,GB,HK,SG,HK,SG,JO,NL,DE,CH,UA,SE,NL,RU,BE,RU,DE,RU,US,RU,KZ,RU,KG,RU,FR,GL,NO,DE,AZ,GE,RU,TR,NO,RU,KZ,RU,TR,RU,NL,RU,GB,US,GB,ES,IM,IE,RU,FR,US,RS,US,DE,SE,DK,SI,ES,RU,BE,FI,BE,FI,GB,RU,US,RU,IR,IE,FR,IE,DE,IE,RS,IL,FR,CZ,DE,AT,US,SG,RU,BG,SG,JP,US,TR,CA,US,CA,ES,US,FR,UA,AE,US,SE,AT,ES,RU,DE,SA,IL,FR,GB,DE,FR,DE,FR,MK,IM,UA,DE,IE,IT,DE,IE,IT,DE,IE,ES,DE,IT,DE,IT,ES,IE,AZ,RS,GB,AL,GB,MK,GB,BE,MD,IL,SE,PL,AM,FR,PL,DE,NO,GB,DE,GB,FR,DE,RU,FR,ES,FI,OM,NO,DK,PL,RU,PT,RU,ES,PL,IR,NO,FR,AZ,IT,ES,GB,RU,GB,DE,IT,IR,GR,FI,TR,IT,NL,ES,IT,US,NL,MD,KW,FR,RS,FI,RO,SG,CA,RO,SG,IT,RO,US,GB,RO,DE,RO,RS,GB,FI,GB,DK,CH,ES,KW,OM,SA,DE,NL,CZ,JO,RU,FI,IR,BY,NO,RU,DE,SE,CZ,AR,AT,US,DE,JP,AT,MC,GB,UA,FR,BE,SG,US,DK,UA,BY,GB,DE,PL,IE,GB,IL,KZ,RU,HU,ES,CZ,ES,KZ,DE,GE,NL,LU,BG,RS,BG,CH,SE,NL,RU,NL,CH,PL,NZ,NL,IT,ES,SE,NL,US,NL,DE,GB,CZ,UA,PL,CZ,NL,SY,GB,HR,GB,RU,DE,DK,US,NO,US,DE,US,DE,RU,NL,HK,NL,FR,SE,DE,UA,SA,UA,SK,TR,GB,RU,BE,DE,NL,FR,DE,FR,DE,FR,DE,FR,RU,PL,IT,IL,FR,GB,HR,BG,US,BG,PS,FR,US,DK,US,DE,RU,FR,NL,DE,RU,DE,AZ,DE,ES,SK,RU,AT,FR,DE,HK,US,PA,US,IT,GB,US,KZ,GB,FR,ES,BE,BG,IR,FR,ES,IT,UA,TR,RU,NL,GB,PL,UA,BG,RU,HK,HR,NZ,BR,US,FR,NL,RU,MX,US,RU,DE,GG,BE,US,NL,US,RU,SE,SC,SE,SC,EE,FR,BE,ES,LU,PL,RO,SK,FR,UA,NL,GB,NL,RU,TR,MD,MT,MD,GE,AT,JO,AE,JO,NL,DK,RU,PS,RU,NL,GB,US,NL,IR,RU,HU,RU,PS,SA,TR,BE,FR,BE,FR,BE,FR,BE,FR,IQ,BG,NZ,IE,BG,NZ,BG,NZ,IQ,BG,IT,RU,IT,KZ,RU,IT,MD,CZ,US,RU,ES,RU,NL,PL,IT,RS,NL,MT,GB,NL,SE,GB,DE,IT,CZ,RU,DE,DK,FR,GB,FR,DK,ES,RO,ES,NL,IR,FI,GB,TJ,RU,GR,ES,PL,IQ,NL,US,RU,KZ,SA,GR,DE,IT,RU,IT,SA,PL,RU,GE,FR,CH,UZ,IE,GB,RU,GB,MM,PK,BD,RU,IT,RU,DE,FR,MT,FI,NL,DE,AZ,IR,UA,IT,DE,SG,DE,CA,DK,US,GB,IT,FR,CH,US,RO,NL,ES,BE,HU,DK,DE,US,ES,NO,US,SG,BG,SE,JP,AT,PL,US,FR,GB,DE,NL,RS,DK,DE,GB,ES,GB,IT,US,NO,FR,CA,RO,IT,SG,SE,JP,PL,AT,CH,US,DE,BE,US,ES,SK,DE,RO,DK,GB,AU,IE,BE,CA,NL,RO,US,RO,FO,RO,SA,RU,DE,SE,IL,PS,ME,GB,FR,GB,ES,AT,TR,DK,GB,TR,JO,TR,US,DE,GB,FR,GB,DE,SE,US,HK,JP,HK,PL,NL,RU,SE,BE,IT,GB,DE,GB,SA,PL,GB,IT,DK,PL,ES,CH,GB,IE,SC,LV,DK,RO,AU,ID,JP,TW,KR,IR,PL,TR,DE,ES,IT,FI,RU,GB,IR,ES,IT,DE,GB,BG,GB,BH,PL,DE,CH,RU,GE,DE,TR,ES,FI,IR,DE,NL,RU,NL,RU,DE,RU,UA,PL,RU,IT,UA,AL,ES,DE,ES,TH,NL,CA,HK,GB,NL,PL,SE,UA,RU,FI,RU,FI,RU,DE,IT,FR,ID,DE,IT,FR,RU,US,TR,UZ,PL,IT,DK,CZ,RU,US,FR,AU,NL,AU,UA,NL,TR,KZ,IT,RU,DE,US,RU,NL,US,UA,NL,TR,CH,US,SA,IL,DE,RU,NL,DE,NO,FR,DE,GB,DE,GB,EE,HU,NL,UA,RU,CZ,ES,CL,FI,ES,CH,UA,GB,IR,GE,RO,AT,BG,RU,IR,NL,DE,NO,DE,NL,LV,BE,NL,DE,NL,DE,TR,DO,DE,GB,IT,DE,FR,IR,FR,CY,KZ,JO,NL,PL,GB,SE,IS,TR,CY,TR,GB,ES,SK,ES,IR,GB,RU,GB,CH,ES,NL,IR,GB,FI,HK,IT,RO,TR,SE,FR,GR,FR,GB,NL,DE,UZ,GR,NL,BE,RS,IR,NL,TR,IR,RO,DE,HK,RO,IR,PL,US,RO,JE,CH,IR,GB,FR,RO,IS,NL,RO,GB,ES,DE,IT,IR,IQ,ES,IR,IT,IR,IT,ES,GB,IT,GE,IR,RO,US,CZ,ES,SE,IT,IR,LT,RO,GB,RO,NL,IR,IT,RO,TR,NL,IR,NL,LT,DK,FR,RU,GB,DE,GB,FR,EE,FR,BG,LT,LU,BG,CZ,PL,AM,FR,RU,GB,DE,ES,IT,FR,IT,BE,AT,SA,QA,AM,IT,FR,PL,GB,FR,GB,DE,FR,GB,FR,RU,NL,HU,FR,GB,CZ,PT,RU,PL,HU,IR,GB,NO,RU,SE,NO,RU,IT,DE,NL,CH,TR,RU,FR,DE,FR,DE,FR,TR,GB,RU,OM,DE,RU,IT,NO,PL,TR,NO,JO,IR,UA,DE,LV,DE,GB,NL,GB,IE,NL,BA,GB,IE,DE,IE,RU,FR,SE,FR,FI,SC,SE,IT,NL,IT,RU,CH,RU,TR,CZ,RU,BA,IS,FR,RU,GB,RU,HR,IQ,DK,IT,SE,BA,KZ,FR,BE,RU,GB,BE,GB,BE,RU,DE,NL,RU,QA,DE,PL,ES,BG,CH,AU,IT,GB,RU,LB,QA,BY,SA,ES,KG,CY,TR,CY,US,AE,HU,NL,US,NL,US,NL,DE,FI,GB,NL,IT,FR,RS,RU,PL,NL,RU,UZ,GB,JO,HU,NL,RU,NL,RU,HU,IR,MD,CZ,DE,CH,RU,FR,CZ,US,DE,IT,PL,SE,US,GB,DE,US,CZ,BG,GB,UA,RO,DE,RO,US,ME,RU,DE,RU,KZ,RU,KZ,HU,GB,SE,ES,CZ,ES,SA,PL,IT,PL,KZ,NL,RU,ES,US,RU,DE,IS,FI,DE,IR,DE,IR,DE,IR,DE,NL,DE,IE,UA,DE,GB,US,GB,US,SG,HK,IN,GB,HK,ES,NL,TR,RU,BE,DE,NL,SI,NL,IT,RU,GB,RU,GL,IL,PL,SG,IL,PH,IL,US,NL,US,RU,LT,RU,NL,RU,ES,US,IL,RU,NL,RU,GL,RU,GE,RU,KZ,RU,KW,GE,RU,MD,SE,RU,FI,PL,RU,MT,GE,HU,AT,AU,IE,IT,AT,NL,IR,ES,GB,PL,IS,CH,AT,CL,ES,GB,IM,AT,RU,TR,NL,FR,GB,US,CZ,NL,US,CZ,US,CZ,NL,GB,RU,IQ,SA,NL,FR,US,FR,GB,HR,AE,TR,NL,TR,SE,NL,IT,PL,DE,BE,AT,IT,DE,FR,IT,ES,BE,DE,TR,GB,TR,DE,ES,PL,SE,NL,RO,NL,PL,NL,RO,DE,NL,RO,RU,NL,BE,PL,SE,PL,RU,NL,RU,GB,AM,ES,DE,NO,NL,CH,NL,DE,NL,ES,AT,GB,FR,MA,FR,DE,NO,US,JP,NO,AM,ES,AL,JO,DE,SI,FR,CA,DE,JP,GB,IE,GB,AT,GR,AT,BR,AU,AT,TW,KR,AE,SK,BG,DE,HK,AT,CL,AT,IT,RU,NO,IR,US,CA,US,CA,US,DE,US,HK,US,VE,AR,US,MX,US,AR,US,DO,ID,DO,MX,PE,PA,VE,DO,CA,MX,BR,US,ES,DO,BR,DO,US,BR,US,BT,BR,LB,US,ES,PK,CL,BR,US,AU,BR,GB,ES,DO,BR,DO,BR,US,PE,VE,DO,BR,US,EC,BR,IN,US,IQ,BR,IQ,BR,ID,VE,CL,US,IN,US,PR,TR,US,VE,DO,BR,US,PH,CO,BR,EC,BR,PE,IN,AR,DO,CA,US,DO,US,IT,US,PK,DO,CO,US,OM,US,DO,VE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,AE,US,IN,US,CA,US,CA,US,CA,US,CA,US,MX,US,MX,US,MX,US,CA,US,CA,US,PE,VE,US,CA,US,PR,US,GB,US,NZ,US,BR,US,CA,US,CA,US,CA,US,CA,US,MX,US,CA,US,CA,US,MX,US,CA,US,CA,US,CA,US,MX,US,CA,US,CA,US,AU,US,CA,US,CA,US,CA,US,CA,NL,AU,US,CA,US,MX,US,CA,MX,US,CA,US,CA,IT,CA,US,CA,US,CA,US,EG,US,CA,US,VE,US,IT,VE,BR,US,TR,US,IN,US,TR,BR,IN,US,DO,US,BR,VE,BR,PL,CA,GT,US,SS,BR,AR,CL,AR,DO,BR,US,MX,BR,PE,CA,US,DO,CO,PE,CA,VE,US,CA,DO,ES,AR,US,AZ,DO,US,PT,US,VE,MX,DO,VE,EC,DO,US,AR,ES,EC,PE,DO,US,CA,VE,DO,US,VE,US,GB,TW,GB,HK,TW,BR,US,AU,HK,US,GB,US,TW,HK,US,CA,MX,US,MX,US,CA,US,CA,US,CA,US,MM,HK,CN,JP,CN,HK,CN,ID,JP,CA,HK,US,HK,JP,US,SG,JP,HK,JP,CN,JP,CN,JP,CN,NL,CN,PH,SG,ID,MY,ID,HK,SG,HK,US,HK,US,HK,US,MX,CA,US,BR,ID,PH,VN,TW,DE,TW,SG,MY,FR,TW,SA,AE,TR,AE,US,DO,ES,DO,BR,IT,US,CO,US,BR,AR,US,AR,BR,VE,JM,DO,BR,CO,DO,BR,DO,US,DO,AR,EC,DO,CA,LB,DO,EC,VE,DO,US,AR,US,VE,BR,US,PR,BR,MX,VE,US,VE,US,OM,VE,US,CO,DO,BR,DO,VE,US,CO,VE,BW,EC,CO,US,PA,US,AR,US,BR,MX,DO,MM,IQ,PY,VE,CO,DO,US,VE,EC,MX,BR,DO,US,PE,CA,LB,MX,US,BR,DO,MX,US,DO,AR,EC,DO,US,MY,SG,BH,KH,US,AE,HK,DE,VN,SG,HK,CL,PK,CO,HK,US,BG,GR,VN,TH,HK,PH,SA,KR,BD,AR,CL,SA,JP,BR,TR,JP,BR,EG,SA,ZA,ID,SA,GB,NP,SA,HK,QA,AE,HK,PK,PH,TH,SG,DE,HK,PH,JP,VN,TR,KH,US,MY,HK,SG,US,KW,US,TR,TW,US,HK,US,MY,SA,VN,OM,TH,SG,CO,MY,FR,MY,KW,MY,GB,MY,US,CA,US,HK,AU,US,BR,DO,BR,CO,US,IT,US,MX,DO,US,BR,DO,ID,BR,US,AR,MY,AR,MX,DO,US,PE,US,PE,US,PE,US,PE,US,PE,US,PE,US,PE,US,SG,MX,BR,DO,US,SV,PE,IL,BR,MX,CA,US,CA,US,PR,US,CA,US,PA,US,MX,US,MX,US,MX,US,CA,US,CA,US,GB,DE,US,PE,US,TR,US,CO,US,HK,FR,JP,AE,TH,TW,HK,SG,PH,TH,GB,US,FR,TR,ID,PH,TH,FR,ZA,MX,ZA,KR,PH,FR,HK,ID,CO,TR,BR,ID,MY,GB,SG,TH,AE,HK,US,TR,BR,SA,DE,JP,TW,GR,FR,PK,RU,VN,KR,RU,FR,RU,MX,VN,EG,HK,VN,TH,KW,TR,SA,BR,OM,CO,PH,BG,GB,DE,US,VN,TH,TR,US,CA,US,CA,US,NL,GB,DE,CA,US,CA,US,CA,US,CA,US,MX,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,US,MX,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CY,US,CA,US,CA,US,CA,US,SG,US,GB,US,GB,US,CA,US,FR,US,MX,US,MX,US,IE,US,CA,US,CA,US,VE,US,FR,US,CA,US,IL,US,GP,US,GP,US,CA,US,GB,US,SG,US,GP,US,PA,US,PA,US,VE,US,DO,MX,US,CA,US,IL,VE,PA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,LT,US,IL,US,GP,US,VE,US,AG,US,MX,US,MX,US,NL,US,RO,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,US,DO,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,MX,US,MX,US,CA,US,DE,US,CA,US,PA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,CA,US,CA,US,CA,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NZ,US,FR,US,CA,US,CA,US,CA,US,ZA,US,DO,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,PT,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,US,CA,US,CA,US,CA,US,CA,US,LT,US,CA,US,MX,US,MX,CA,US,CA,US,CA,US,MX,US,CA,US,CA,US,MX,US,MX,US,MX,US,MX,US,MX,US,MX,US,MX,US,DE,US,GB,US,HK,US,SG,US,HK,US,JP,US,BR,US,CA,US,CA,US,CA,US,LT,US,BR,US,CA,US,CA,US,CA,US,CA,US,CN,US,CA,US,CA,US,CA,US,PA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PL,US,CA,US,CY,US,IL,US,CA,US,IN,US,BR,ES,VE,BR,PE,CO,PE,CO,PE,CO,PE,CO,US,VE,UA,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PA,US,CA,US,CA,US,CA,US,CA,US,CA,US,MX,US,CA,US,CA,US,BR,US,CA,US,HK,US,CA,US,CA,US,SG,JP,HK,CN,HK,CN,US,CN,HK,CN,US,HK,CN,US,CN,SG,ID,US,MY,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,CA,US,GB,US,CA,NL,NZ,US,CA,GB,US,GB,US,GB,US,GB,US,CA,US,GB,US,GB,US,BR,US,ID,CO,US,MX,US,DO,BR,IN,BR,US,BR,TR,US,AR,BR,DO,BR,US,CO,BR,ID,AR,MX,US,VE,CO,DO,US,DO,BR,PA,VE,DO,EC,CO,US,CA,US,DO,PE,EC,US,DO,AR,US,DO,MX,MM,PR,US,PE,PR,US,MX,AZ,BR,US,MM,US,BR,DO,CA,DO,AR,VE,AR,DO,IL,US,BR,DO,US,DO,BR,EC,DO,US,CA,US,CA,US,CO,GT,MX,AR,EC,MX,PY,MX,AR,US,VE,US,GB,US,CA,US,NL,US,CA,US,CA,US,ES,MY,US,TR,MX,VE,DO,US,PE,PR,US,BR,VE,BR,CA,ID,DO,LB,CL,VE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CZ,TR,GR,RO,BE,DK,NO,IT,AT,PT,HR,PL,US,AU,CA,US,CA,US,FR,NO,BG,US,JP,GB,SG,EE,AE,CA,CZ,CH,BR,RS,BE,HU,DK,IE,IT,AT,PL,US,AE,JP,GB,FR,RO,ES,PL,RO,KZ,US,EE,CH,CZ,PL,ES,IT,SE,NL,AT,US,FR,GB,RU,NL,DK,SG,NO,BR,US,CH,BE,US,FR,HK,NL,RS,RO,TR,SG,HU,PL,TR,NL,IE,NL,US,CA,AU,US,NL,US,GB,US,FR,HK,SG,HK,US,SG,US,HK,JP,US,SG,HK,US,CN,US,SG,US,HK,US,HK,MY,CN,US,CN,MY,HK,CN,HK,CN,HK,CN,HK,CN,MY,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,US,CN,HK,US,AU,IN,ID,PH,AE,US,AZ,AE,TW,SA,US,KZ,US,MY,SG,TH,TW,QA,AU,IN,VN,US,ID,TW,ML,GH,CD,US,CD,TW,KE,MZ,SZ,US,HK,US,PH,JP,VN,US,TH,AE,TR,ID,TW,BR,HK,IN,US,IN,VE,BR,IN,US,MX,DO,ID,VE,BR,DO,ID,FI,PL,VE,US,DO,US,VE,AR,BR,EC,VE,BR,ID,VE,DO,VE,US,CA,US,CA,US,PE,US,MX,US,DO,IN,BR,VE,US,LB,VE,CA,US,PH,AR,ID,DO,VE,US,BR,IN,ID,US,DO,BR,CO,BR,IN,US,VE,US,IN,US,ID,US,SG,DO,CO,BR,AR,VE,DO,ID,CO,US,BR,CO,US,BR,VE,CO,VE,CO,BR,GB,LB,CO,BR,CO,BR,US,BR,CO,US,BR,CO,US,LB,DO,AL,IN,US,BR,VE,US,GB,US,AR,PY,BR,CO,DO,VE,AR,BR,CO,US,PA,SG,CO,BR,US,MX,BR,PK,US,BA,CA,US,BR,IL,US,CA,BR,CA,US,BR,PE,US,CO,OM,CO,BR,DO,CN,DO,CA,AR,US,GB,RO,GB,US,GB,RO,GB,RO,GB,US,RO,GB,US,GB,RO,GB,US,RO,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,SG,HK,IN,HK,JP,HK,US,KZ,HK,JP,US,SG,JP,US,HK,US,HK,US,HK,US,VE,US,DE,US,HK,US,CA,US,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,GB,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,US,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,US,CN,MY,CN,MY,CN,US,CN,MY,CN,MY,CN,US,CN,US,CN,HK,CN,HK,CN,HK,CN,US,CN,US,CN,US,CN,US,CN,MY,CN,US,CN,MY,CN,US,CN,US,CN,MY,CN,US,CN,MY,CN,US,CN,HK,CN,US,CN,HK,BR,US,BR,CL,US,CA,US,CL,PE,US,PE,US,BR,US,BR,US,BR,US,BR,US,PA,BR,PH,IL,DO,LY,BR,PR,BR,CR,BR,CO,AZ,BR,VE,US,DO,BR,KH,PE,CO,US,MM,US,VE,US,ES,US,DO,LB,BR,US,PE,BR,ES,VE,BR,DO,BR,CO,DO,IN,US,CA,AR,NP,CO,IN,US,TR,CO,PE,BR,VE,DO,IL,US,BR,PK,BR,PE,OM,ID,CR,US,BR,US,MX,US,DO,US,AR,DO,LB,VE,BR,KH,BR,EC,MX,US,IN,ID,US,VE,PY,BR,US,GB,NL,US,GB,NL,GB,US,SG,VE,CL,DO,BR,VE,TR,EC,DO,GR,DO,PE,US,PE,HN,BR,GR,PH,PR,NP,VE,CN,AU,CN,TW,JP,KR,TW,KR,PK,CN,HK,PH,HK,SG,GB,US,HK,JP,KR,HK,SG,JP,KR,CN,ID,US,IN,US,QA,US,AU,BR,CA,CL,HK,US,JP,US,IE,SG,GB,NL,US,ZA,AU,US,DE,NO,DE,SE,US,QA,PL,IL,NZ,IT,US,TW,IN,ID,US,SG,US,AU,US,AU,NL,US,QA,US,FR,US,AE,US,AU,AE,JP,ZA,SG,BR,US,GB,KR,US,ZA,US,JP,AU,CH,ZA,GB,AU,US,GB,NL,SG,US,NL,IE,NL,IE,CA,US,IE,US,GB,US,KR,CA,US,AU,US,SG,US,IN,US,QA,BR,QA,BR,QA,US,BR,QA,BR,QA,BR,QA,US,BR,QA,BR,QA,US,BR,QA,BR,QA,BR,QA,US,CN,NL,JP,US,QA,BR,QA,BR,QA,US,BR,US,QA,US,QA,US,BR,US,IE,HK,US,HK,US,IE,US,IE,US,HK,US,HK,US,IE,US,IE,US,HK,US,HK,US,IE,US,IN,US,ZA,NL,IE,FI,AT,US,SG,US,SG,US,QA,US,QA,US,QA,BR,QA,BR,US,BR,US,QA,BR,QA,BR,US,QA,US,BR,US,FR,US,AU,FR,JP,US,GB,ZA,US,IN,US,JP,HK,AU,IN,GB,CA,GB,IN,KR,FR,US,GB,FI,US,GB,FR,AT,KR,CA,IN,JP,IN,FR,US,BR,US,KR,JP,US,KR,CA,US,HK,US,AU,IN,GB,JP,IN,US,ZA,US,SG,AU,US,JP,US,NL,US,KR,CA,AU,FR,AU,US,HK,US,IE,US,CA,US,CA,US,IE,US,NL,IE,HK,SG,JP,AU,IN,GB,US,AU,JP,US,AU,US,IN,QA,US,CA,US,FR,KR,US,CH,GB,US,DE,US,GB,US,NL,US,IE,US,BR,AU,IE,US,SG,NL,US,FR,US,IE,AU,US,FR,US,IE,NL,US,IE,SG,US,NL,US,NL,SG,US,BR,US,IE,US,NL,IE,US,NL,US,PL,US,PL,US,NL,AT,US,DE,US,CA,US,AT,NL,IE,KR,SG,HK,NO,AT,IE,NL,HK,SG,AU,IE,FI,AT,NL,FI,AT,NL,IE,AT,FI,IE,AT,FR,GB,NL,DE,HK,SG,KR,JP,NO,ZA,IE,AT,NL,CH,US,BR,JP,MY,JP,IN,SG,CA,JP,US,SE,GB,QA,KR,IT,IL,ES,MX,US,AE,SG,KR,JP,IN,AU,DE,SG,HK,SG,KR,HK,US,CA,US,BR,US,IE,NL,ES,GB,FR,TW,JP,ZA,FR,DE,IL,NO,PL,QA,CH,IT,US,HK,SG,JP,IN,AE,AU,KR,US,SE,US,CA,US,JP,US,CA,US,FI,IE,FI,AT,NL,FI,FR,NL,AT,NL,FI,FR,NL,FR,GB,ZA,NL,IN,NL,GB,US,IE,US,FR,US,JP,US,SG,US,AE,SG,KR,JP,IN,FR,AU,KR,JP,KR,US,KR,JP,US,SG,HK,SG,HK,US,KR,US,PL,US,PL,US,KR,US,CA,US,KR,US,CH,AT,NL,IE,KR,SG,HK,NO,AT,IE,NL,HK,SG,AU,IE,FI,AT,NL,FI,AT,NL,IE,AT,FI,IE,AT,FR,GB,DE,GB,HK,SG,KR,JP,NO,ZA,IE,AT,NL,DE,CH,NL,AT,IE,AU,US,BR,JP,MY,JP,IN,SG,CA,JP,US,SE,GB,QA,IT,IL,ES,MX,US,AE,SG,KR,JP,IN,AU,MY,SG,HK,SG,KR,HK,US,SG,US,HK,US,SG,US,HK,CA,US,BR,US,IE,US,GB,US,GB,US,KR,US,SG,US,JP,US,CL,US,CA,US,CA,US,IN,JP,IN,AE,JP,AE,IN,SG,KR,JP,SG,IN,JP,KR,SG,JP,KR,JP,QA,IN,JP,IN,JP,KR,JP,KR,IL,JP,MY,KR,JP,IN,JP,SG,KR,IN,JP,AE,IN,MY,JP,MY,KR,IN,JP,KR,JP,IL,AE,IN,JP,KR,MY,KR,IN,JP,MY,KR,MY,JP,MY,KR,JP,IN,JP,IN,KR,MY,KR,JP,SG,AE,JP,IN,US,DE,JP,GB,CA,FR,KR,JP,US,JP,AU,US,NL,IE,DE,IE,GB,IE,DE,IE,NL,US,GB,NL,IE,NL,IE,SE,NL,IE,NL,SE,NL,FR,NL,IE,NL,IE,PL,GB,NO,IE,FR,GB,FR,IE,NL,IE,US,MX,US,HK,SG,MY,AU,HK,US,MY,KR,JP,KR,NZ,HK,SG,US,JP,BR,HK,KR,US,JP,HK,SG,HK,AU,US,ZA,AE,IN,QA,MX,TW,NZ,ID,US,AU,US,IN,US,AU,US,JP,CA,US,GB,US,SE,IE,NL,AT,NL,IE,US,DE,NO,SE,FI,IE,FI,AT,US,AT,DE,FR,NO,US,NL,FI,AT,IE,AT,NL,FI,NL,FR,IE,NL,US,PL,IT,US,NL,IE,FI,CA,FR,JP,US,BR,US,CL,US,CL,US,PR,US,IE,US,IE,US,IE,US,IE,US,IE,US,IE,US,AU,US,AU,BR,SG,CH,JP,US,ZA,GB,US,ZA,US,FR,BR,PL,TW,US,FR,SE,JP,NO,CH,GB,AT,IE,AT,SE,KR,FR,KR,IE,US,DE,JP,NZ,IT,DE,AU,US,NL,FI,AT,NL,IE,AT,IE,FI,AT,FR,GB,FR,FI,AT,IE,NL,IE,ZA,IE,AT,NL,CH,NL,AT,IE,IT,IL,ES,MX,US,CA,US,PL,US,PL,US,KR,US,KR,US,AT,IE,NL,HK,AU,US,BR,JP,CA,JP,US,SE,GB,QA,SG,DE,KR,HK,SG,KR,SG,DE,AU,IN,JP,AE,US,FI,IE,FI,AT,SG,FI,FR,NL,FI,AT,NL,FI,FR,NL,US,SG,HK,US,JP,IN,US,NO,KR,US,HK,SG,KR,HK,SG,KR,US,MY,US,IN,SG,AT,US,NL,US,IE,US,IN,JP,KR,US,BR,US,NL,IE,NL,US,NL,KR,US,CA,KR,IE,AU,IE,US,GB,IE,GB,IE,US,NL,GB,US,AU,US,GB,US,NL,US,NL,US,AU,JP,IE,US,NL,US,GB,SG,GB,FR,AU,US,IE,JP,HK,GB,NL,IE,GB,US,SG,JP,HK,JP,US,NL,IE,NL,IE,HK,SG,US,AU,US,NL,IE,BR,AU,NL,US,MY,US,IE,AU,US,IE,NL,US,IE,NL,US,NL,AU,IE,JP,US,ZA,US,NL,US,ZA,AE,CH,US,DE,US,NO,SE,IN,NL,AE,SG,AE,ZA,GB,AE,US,IT,US,GB,MX,US,ES,US,QA,US,IE,US,NZ,US,BR,US,NL,US,QA,US,IE,US,PL,IL,TW,US,NL,US,SG,AE,ZA,US,AE,US,CN,US,IE,US,NL,US,CA,SG,JP,AU,GB,KR,BR,IN,FR,KR,US,IE,NL,CA,SG,HK,JP,AU,GB,BR,IN,FR,KR,SE,CH,NO,AE,AU,US,IN,CN,AU,AE,CH,US,DE,US,NO,US,SE,IN,BR,AE,AU,ZA,IN,US,AU,IE,CA,US,IN,AU,US,HK,US,IE,US,CN,US,GB,FI,GB,AE,BH,CA,IE,US,IN,US,MX,US,CA,US,ZA,TR,ZA,EG,ZA,ZW,LR,KE,ZA,MU,NG,MU,ZW,MU,ZA,MU,AE,MU,NG,TZ,ZM,CD,ZM,ZW,ZM,ZA,ZM,BW,ZM,ZW,ZA,KE,CD,ZM,ZW,BW,MZ,KE,ZM,KE,ZM,ZA,ZM,KE,ZM,ZA,TN,ZM,ZA,NG,EG,ZA,DE,ZA,DE,IN,OM,GB,EC,ZA,MG,AO,NA,EG,CI,AT,ZA,GH,SD,CI,MU,CI,NG,MU,EG,MW,AO,ZA,NG,IN,NL,IN,CA,NG,MU,ZM,ZA,KE,ZA,KE,ZA,KE,ZA,KE,ZA,KE,MU,NG,CI,ZA,MU,ML,NG,GH,TZ,NG,BJ,MG,MU,BW,LY,GH,CI,TZ,CV,ZA,RW,ZA,DE,ZA,MG,MU,AO,BW,CI,GH,CG,NG,ZA,MW,ZA,KE,UG,NG,TZ,MU,MZ,GM,LS,MU,ZA,MU,ZA,NG,MU,ZA,MU,ZA,CI,MZ,NG,CI,KE,ZA,KE,NG,ZA,CI,BW,NG,ZM,MW,MG,ZA,MZ,NG,ZA,MU,GH,MU,UG,CM,BW,ZA,CA,MA,MU,MZ,EG,GB,ZM,ZA,ZM,ZA,CI,NG,MU,GN,MU,ZA,MU,CI,CD,MU,SZ,MU,US,MU,CI,MU,ZA,NG,CI,AO,EG,KE,ZA,MU,ZA,MU,CI,BF,MW,IT,FR,IT,TZ,CI,SO,ZW,NG,SL,NG,CI,MU,NG,CI,SD,MU,NE,CF,GH,ZA,CI,TG,ZA,CI,EG,CI,NG,CI,MU,TZ,NG,CI,ZA,CD,ZA,MU,NG,ZA,MW,ZA,NG,ZA,CI,GA,ZA,MW,NG,CI,NG,KE,CI,ZA,SS,ZW,BW,ZA,MU,BI,GQ,MU,ZW,SC,NG,TZ,ZA,CI,MW,ZA,GH,CI,ZA,CI,NG,SS,CV,MU,ZA,BW,CI,MU,ZA,NG,ZA,MU,KE,ZA,MU,ZA,TZ,ZW,ZA,SO,GN,NG,EG,ZA,BJ,ZA,BI,KE,CD,PT,CG,GN,ZA,MZ,ZA,KE,UG,KE,SN,ZA,KE,NG,KE,CI,KE,UG,ZM,SZ,ZA,BJ,ZW,NA,ZW,ZA,LR,SC,MU,ZA,NG,TZ,ZA,BJ,MW,CI,NG,KE,MU,KE,ZA,KE,MU,ZA,MU,MA,BW,ZA,BW,ZA,MU,KE,EG,MA,CM,MU,CM,MU,CM,MU,CM,MU,CM,MU,CM,MU,CM,TZ,MU,FR,MZ,SD,DZ,AS,DZ,ZA,EG,ZA,MU,MA,MU,NE,ZA,BW,RW,BJ,ZA,BF,MR,NG,IL,MU,UG,MZ,KE,GH,CI,KE,MA,ZA,EG,MU,GH,EG,ZA,GA,ZA,ZM,NG,ZA,ZM,ZA,KE,ZA,TZ,ZA,ZM,ZW,ZM,ZA,ZM,ZA,ZM,ZA,EG,ZA,EG,ZA,US,ZA,US,GB,ZA,US,ZA,GB,ZA,GB,ZA,FR,GB,ZA,NA,ZA,NG,ZA,RW,EG,MG,MR,TZ,ZA,NG,CI,ZA,CI,GH,CD,DJ,SO,DJ,NG,ZW,MU,GH,MU,CD,NA,GH,MW,NA,UG,ZA,UG,ZA,CI,CM,NE,CD,MG,CI,BW,EG,CI,BW,CI,MZ,UG,EG,BJ,ZA,CI,GH,CM,LR,CI,ZM,ZA,ZM,SC,ZA,MU,KE,LS,CI,MU,BW,GN,KE,ZW,MU,GH,SL,MU,ZA,ML,ZA,LY,ZA,US,NG,ZA,SN,ZA,US,KE,ZA,KM,IO,ZA,RW,ZA,SG,ZA,IO,ZA,SG,KE,ZA,GB,SG,US,ZA,GB,ZA,NG,US,ZA,CD,ZA,CG,AO,ZA,DE,ZA,SS,ZA,SN,ZA,EG,RW,CD,RW,MU,NA,MU,ZM,MU,ZA,MU,EG,DZ,MU,ZA,CM,ZA,CI,MU,SD,CM,UG,ZA,NG,BJ,NG,GH,NG,NE,ZA,LS,ML,KE,BF,SC,SZ,GH,CM,MG,TZ,KE,ZA,MU,CM,AO,CM,EG,NA,CI,MA,MU,SL,MU,NG,KE,CI,TZ,MU,ZA,MU,KE,TZ,ZA,MU,TZ,MU,KE,MU,UG,MU,KE,MU,UG,EG,ZA,KE,TZ,KE,ZA,TZ,ZA,KE,ZA,EG,TZ,ZA,SG,KE,CA,SG,EG,CA,ZA,CI,MG,KE,GB,KE,BI,KE,MU,TG,CI,MU,ZA,TZ,NG,GH,ZA,LY,SN,ZA,KE,SD,CI,MU,GH,MU,UG,AO,GH,SZ,MU,CM,GA,CI,KE,MU,ZA,RE,SN,MA,KE,SZ,GH,ZM,CI,CV,CI,ZA,EG,GB,NG,RW,CD,CI,BJ,ZM,RW,ZW,ZA,BF,NG,PT,ID,GB,NL,SG,NL,ZA,SG,ID,GB,DE,ZA,BW,NG,MA,MW,CM,AO,CI,NG,MU,CM,MU,ZA,CI,TZ,NG,CI,ZA,MW,KE,EG,UG,ZA,CI,SD,TD,SD,NA,AO,NA,AO,NA,EG,GH,SN,NA,NG,CI,UG,ZW,MZ,MU,NG,SC,KE,TZ,DZ,MZ,TZ,MZ,UG,KE,ZA,KE,ZA,KE,ZA,DZ,TZ,MZ,UG,MW,CI,MU,ZW,NG,ML,CV,ZA,MZ,TZ,KE,GH,US,ZA,NE,CD,SG,CG,MR,EG,ZA,AO,UG,ZA,UG,KE,ZM,MU,ZA,NG,ZA,TZ,NG,SS,NG,CI,TZ,MU,ZA,GB,ZA,GB,ZA,IM,ZA,GQ,ZA,EG,ZA,MU,ZA,KE,EG,TZ,MW,BJ,CD,AO,SC,NG,ZA,CD,MU,ZA,GH,AO,MU,RW,AO,CI,TZ,ZA,CI,MU,EG,ZA,CM,ZA,AO,NG,GN,EG,GB,KE,ZA,NG,CI,BW,MU,NA,UG,MU,MR,AO,CD,SO,US,MU,ZM,ZA,MZ,NG,SL,NG,BW,NG,KE,MZ,AO,SD,AO,MU,ZA,MU,TZ,CF,CI,BW,EG,SD,SC,CI,GM,SC,MU,RW,TZ,BF,DZ,EG,IT,EG,ZA,BJ,ZA,TN,EG,SD,KE,MU,LY,MU,ZA,NG,MU,ZA,MU,GN,MU,MG,GH,NG,GH,YT,MU,RE,MU,CI,MU,RW,MU,TD,ZA,CI,ZA,CD,CM,CI,MU,ZA,MA,LY,CN,BD,CN,MY,CN,TW,CN,MY,VN,CN,HK,CN,KR,CN,SG,CN,ID,CN,AU,CN,TW,CN,KR,JP,CN,PK,CN,VN,CN,IN,CN,HK,CN,_,CN,JP,HK,JP,SG,JP,MY,HK,JP,SG,JP,IN,JP,IN,JP,IN,JP,TW,JP,IN,JP,SG,JP,SG,JP,SG,JP,HK,JP,AU,SG,HK,JP,TW,JP,SG,JP,HK,JP,US,CN,IN,VN,HK,VN,CN,JP,CN,JP,CN,JP,MY,CN,MM,CN,JP,CN,MY,CN,HK,CN,SG,CN,AU,CN,HK,CN,HK,CN,HK,CN,US,CN,US,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,SG,HK,US,SG,TH,JP,ID,PH,IN,SG,CN,US,SG,CN,HK,SG,MY,KR,HK,TH,SG,SA,GB,FR,CN,BE,US,CN,SG,HK,SG,KR,IN,TH,JP,HK,ID,HK,US,CA,JP,DE,RU,KR,HK,SG,HK,SG,TR,SG,GB,FR,VN,PK,JP,SG,US,PK,SG,TH,JP,US,JP,SG,RU,ID,TR,VN,MY,SG,HK,JP,SG,KR,TH,ID,JP,KR,SG,HK,SG,HK,US,BR,SG,CN,BR,US,VN,PH,ID,VN,SG,IQ,EG,NP,HK,BR,AE,AR,PE,CL,US,HK,DE,TH,SA,AE,TH,SG,TH,BR,JP,SG,BR,NL,DE,TH,BR,US,CL,SG,AR,PE,HK,SG,EG,SG,AE,US,TR,BR,SG,US,BR,VN,US,DE,US,NL,SE,SG,IN,KR,PH,IN,ID,MO,VN,HK,PH,VN,MY,HK,TH,PK,TR,VN,MX,EG,MX,US,CO,FR,ES,GB,IT,IN,TH,US,JP,SG,HK,KR,SG,DE,BR,ID,DE,RU,IN,HK,SG,HK,ID,SG,VN,ID,HK,SG,NG,TR,PK,PH,US,BR,US,BR,KR,IQ,TH,VN,JP,MY,SG,AU,AE,JP,DE,BR,US,HK,SG,IN,HK,US,HK,SG,JP,SG,IN,PK,AE,US,BR,AU,TR,US,EG,ID,JP,BR,AR,NL,SA,AE,US,NL,CO,BR,SA,TH,LA,US,DE,US,TH,HK,SG,EG,BR,HK,CL,PE,AR,TR,CL,DE,US,BR,US,DE,HK,SG,ES,KZ,UZ,US,HK,TH,BD,BN,US,ID,SA,SG,ID,VN,KG,HK,IQ,JO,BH,QA,DZ,KW,HK,US,HK,JP,TH,ID,FR,SG,KH,EC,HK,PH,MO,ID,MM,JP,HK,US,DE,US,NL,SG,CN,HK,KR,IN,US,IN,JP,US,MY,NZ,ID,US,JP,IN,HK,IN,CN,ID,TW,CN,JP,KR,JP,LA,MM,CN,HK,CN,AU,HK,PH,US,CN,US,CN,MM,MO,HK,IN,CN,KR,BD,NZ,LK,IN,JP,CN,HK,IN,CN,IN,ID,IN,CN,IN,CN,PH,NC,HK,CN,IN,US,HK,PK,CN,HK,NZ,IN,SG,HK,AU,IN,_,AU,HK,BN,HK,AU,IN,HK,AU,ID,IN,CN,JP,CN,JP,IN,HK,IN,ES,PK,HK,MY,IM,IN,CN,KR,_,HK,BN,TH,AU,BD,SG,HK,IN,HK,AU,CN,SG,IN,US,AE,TR,IN,HK,NZ,BD,CN,IN,CN,IN,CN,AU,IN,PH,NZ,KH,HK,US,IN,CN,HK,CN,NZ,MV,US,AU,MY,PA,TW,CN,MM,IN,TW,HK,CN,_,CN,AU,KR,AU,IN,CN,ID,CN,IN,CN,IN,SG,CN,JP,US,CN,JP,SG,IN,CN,IN,CN,TH,LA,TH,HK,IN,CN,_,LK,IN,CN,SG,MN,CN,IN,SG,HK,CN,NZ,SG,PK,AU,KR,IN,JP,ID,IN,SG,US,CN,NP,TH,MY,CN,BD,SG,TW,HK,IN,HK,IN,SG,AE,SE,BD,CN,MY,_,KR,HK,AR,IT,AR,BD,_,ID,IN,HK,JP,HK,CN,TH,CN,HK,CN,AU,TH,IN,TH,IN,SG,IN,CN,IN,HK,KR,HK,_,BT,SG,TH,CN,TH,HK,SG,IN,PK,CN,IN,ID,BD,HK,CN,IN,_,CN,HK,JP,ID,KR,ID,NR,ID,HK,SG,HK,CN,SG,TH,ID,CN,IN,GB,PH,US,KH,IN,CN,KR,CN,HK,PK,SG,AU,IN,US,PH,US,AU,HK,BD,CN,ID,IN,HK,CN,HK,PS,HK,IN,ID,IN,JP,HK,_,AU,IN,HK,SG,IN,HK,KH,IN,HK,BT,AF,BD,IN,KR,CN,HK,KR,US,HK,BD,AU,MV,CN,IN,PK,KH,AU,MY,BD,CN,MN,IN,ID,IN,_,IN,CN,HK,US,HK,PH,TW,PH,NZ,HK,AU,US,NP,IN,JP,KH,MY,PH,US,IN,JP,IN,JP,CN,_,CN,IN,HK,IN,BD,IN,HK,GB,DE,GB,NZ,AU,NZ,AU,SG,ID,SG,AU,TH,PH,IN,CN,IN,HK,NL,IN,VN,IN,HK,US,HK,IN,CN,NZ,VN,IN,MY,MM,IN,VN,IN,HK,MY,IN,JP,BT,TH,MY,CN,IN,HK,MY,TW,HK,NZ,HK,AU,TW,HK,_,CN,IN,CN,ID,CN,GU,_,AU,BD,TW,TH,_,AU,CN,GB,CN,DE,TW,CN,ID,_,KR,CN,IN,TW,IN,MY,IN,SG,HK,CN,AU,TH,IN,HK,CN,MY,_,KR,CN,IN,BT,SG,IN,ID,HK,PS,TW,WS,CN,AU,IN,_,AU,HK,CN,ID,AU,ID,CN,KR,_,CN,HK,IN,AU,CN,AU,CN,PK,IN,MO,ID,KR,IN,HK,ID,MM,JP,HK,CN,HK,PK,CN,SG,CN,HK,CN,IN,CN,IN,_,HK,MN,IN,AU,CN,AU,CN,_,NZ,PS,HK,PS,IN,GB,HK,_,HK,NZ,HK,IN,US,CN,PS,NP,_,HK,_,AU,SG,AU,TL,PH,CN,PK,CN,ID,CN,ID,CN,SC,HK,IN,TL,CN,ID,KR,NL,FR,HK,ID,NZ,AU,BD,HK,IN,KR,HK,CN,AU,HK,CN,_,TW,JP,GB,JP,IN,PK,IN,SG,IN,AU,KH,AU,MM,AU,SG,HK,AU,PG,SG,HK,_,AU,NZ,NP,IN,NP,ID,SG,IN,SG,AU,US,BD,US,BD,MY,PK,AU,IN,BD,TH,_,AU,PS,AU,HK,AU,NZ,AU,ID,BD,HK,SG,HK,KH,PK,PS,NC,KH,HK,AU,SG,BD,NP,NZ,BD,ID,HK,SG,CN,IN,CN,SG,HK,IN,PH,HK,IN,KR,IN,MY,HK,MY,KR,TH,TW,JP,PH,TH,BD,HK,_,TW,PK,CN,AU,IN,JP,IN,HK,CN,ID,PH,ID,MO,HK,IN,ID,IN,CN,IN,TH,GU,AU,CN,JP,CN,AU,CN,KR,CN,AU,PK,AU,HK,IN,MV,IN,CN,IN,HK,JP,NZ,CN,KR,CN,HK,PK,TW,CN,ID,CN,IN,JP,AU,CN,AU,IN,HK,IN,CN,IN,FM,JP,HK,SG,CN,ID,PH,GB,IN,HK,CN,IN,CN,HK,_,SG,HK,CN,HK,JP,HK,SG,US,SG,_,HK,TH,HK,SG,_,AU,KR,IN,HK,IN,TH,NZ,CL,AR,NZ,HK,IN,_,JP,HK,JP,HK,TH,AU,CN,_,JP,CN,ID,CN,HK,PF,IN,CN,NZ,HK,ID,TW,SG,HK,IN,HK,IN,CN,JP,SG,HK,SG,CN,HK,CN,AU,CN,IN,TW,NP,AU,HK,AU,CN,ID,BD,PK,JP,AU,CN,US,HK,CN,HK,CN,IN,MN,CN,IN,AF,AU,CN,KR,IN,CN,IN,CN,HK,JP,CN,ID,HK,SG,US,CN,AU,NZ,IN,CN,PH,KH,AU,HK,CN,LK,CN,AU,US,AU,IN,ES,CN,JP,KR,HK,MY,HK,KR,HK,CN,AU,HK,JP,AU,TW,HK,TW,IN,KR,IN,HK,IN,BD,IN,ID,CN,HK,AU,HK,AU,HK,JP,DE,KR,IN,BN,HK,MY,HK,IN,AU,NZ,HK,DE,SG,IN,US,PH,IN,CN,HK,AU,TH,MY,IN,HK,_,CN,HK,CN,SG,CN,HK,PK,AU,IN,ID,LK,KH,AU,UA,US,IN,MY,HK,MY,CN,HK,CN,IN,NZ,ID,AU,MM,HK,IN,AU,IN,ID,AU,IN,SG,AU,HK,ID,IN,ID,HK,MY,ID,HK,TH,ID,IN,HK,IN,HK,MY,IN,ID,_,HK,MY,ID,JP,LA,IN,AU,JP,CN,US,TW,NZ,CN,IN,CN,IN,CN,IN,CN,TL,PH,CN,ID,CN,MY,ID,CN,BD,CN,IN,CN,SG,AU,ID,CN,TH,CN,IN,HK,VN,JP,CN,IN,CN,IN,CN,IN,HK,CN,KR,CN,TW,CN,BD,US,GB,US,HK,AU,_,JP,AU,CN,HK,SG,AE,BR,TH,CN,HK,US,HK,AU,CN,TW,CN,SG,TH,PS,KH,HK,TR,HK,SG,AU,IN,AU,IN,CN,TO,SG,HK,IN,TW,NZ,IN,DE,US,MY,CN,TW,CN,JP,HK,US,HK,CN,ID,CN,PH,IN,CN,NC,TH,CN,KR,US,GB,US,GB,US,IT,US,SE,US,SE,US,FR,US,FR,US,FR,US,FR,US,HR,US,LU,US,DE,BE,US,DE,US,CA,US,DE,US,CA,US,JP,CA,US,RU,US,RU,PT,CA,DE,AU,US,HK,US,BE,US,GB,US,AU,CA,DE,US,CA,US,JP,US,JP,BE,HK,US,FR,US,TW,US,GB,NO,US,HK,GB,US,FR,US,GB,US,BG,GB,AU,US,JP,GB,US,SG,US,FR,LU,US,AU,US,CA,US,CA,BE,CA,US,BR,ES,US,FR,US,DE,US,DE,HK,US,AT,GR,GB,US,AU,DE,US,GB,US,AU,DE,US,GB,US,CA,US,CA,US,FR,US,PT,US,SG,US,CA,JP,US,JP,US,AU,GB,US,AU,US,NL,US,AU,US,GB,US,RO,US,RO,US,RO,US,RO,US,DE,US,CA,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,IT,US,DE,US,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,BE,CA,BE,CA,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,FI,US,NO,US,NO,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,BE,US,BE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,FR,US,FR,US,BE,US,BE,FR,US,GR,US,GR,US,IE,US,TH,US,JP,US,AU,US,AU,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,PL,US,PL,US,PL,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,CA,US,BG,US,BG,US,CA,US,NL,US,NL,US,CA,DE,US,CL,BR,HN,EC,CO,AR,CO,BR,AR,BO,AR,BR,GT,BR,HN,BR,AR,CL,US,BR,US,EC,GB,US,BR,AR,BR,AR,BR,DO,SV,BO,BR,AR,BR,AR,BR,HN,BR,MX,PE,CR,US,PE,BR,HN,BR,MX,BR,GT,CL,BR,AR,BR,CO,BR,CO,BR,CO,BR,NI,BR,AR,BR,DO,ES,BR,MX,BR,AR,BR,AR,BR,MX,BR,AR,BR,EC,BR,_,BR,UY,BR,MX,BR,MX,BR,MX,BR,AR,BR,AR,BR,AR,BR,CO,MX,VE,BR,AR,BR,CL,BR,HN,AR,BA,ES,NO,ES,SG,NL,AR,US,TR,US,ES,PH,ID,PE,IE,HK,GE,CZ,NL,RO,ES,FI,IL,AT,ES,JP,GB,NZ,DK,IQ,IT,ES,NL,IE,RU,UA,RU,BG,RU,KZ,RU,GB,DE,RU,JP,KZ,GB,EE,RU,EE,RU,FI,DE,AE,NL,ES,NL,US,SE,CH,US,SE,RU,US,RU,IR,DE,FI,IT,DE,KR,RU,NL,GB,HU,ID,HK,GB,US,MY,CA,DE,TR,IT,DE,US,GB,US,HK,DE,CL,RU,HU,US,FR,US,AU,JP,GB,RU,FR,NL,CH,NL,RU,GB,DE,GB,DE,HK,BR,GB,TR,GB,US,TH,BD,NL,PL,GB,RU,UA,GE,ES,RU,GE,US,NL,DE,PL,DE,FI,RU,CH,DE,RU,DE,ES,GB,FR,IT,US,MT,FR,HK,FR,US,FR,IL,DE,ES,PL,RU,IR,NL,CH,US,GB,CH,RU,HU,DE,PL,GB,PL,DE,ES,GB,FR,NL,RU,FR,HU,FR,BG,RU,AT,IT,UZ,US,PL,UA,ES,FR,GB,AE,IT,IR,DE,US,ES,FR,US,NL,US,DE,HU,RU,FR,PL,CH,NL,FR,RS,RU,TR,US,GB,FR,DE,RU,US,IT,TR,RU,IT,UA,HU,RO,CZ,DE,GB,ES,RU,ES,NL,FR,NL,ES,JP,NL,PL,RU,AT,TR,DK,DE,FR,NL,LT,US,CA,US,GB,CA,CH,AE,GB,HK,CH,FR,GB,FR,DE,ES,BG,RU,GR,CZ,IN,DE,HU,HK,PH,TH,US,VN,MD,IT,FR,NL,JP,IT,PL,RU,TR,US,JP,US,UA,GB,FR,DE,ES,NL,DE,RU,DE,RU,NL,US,NL,TR,US,BE,HK,FR,DE,ES,GB,FR,NL,UA,US,PL,ES,GB,AT,BH,AE,BH,HK,CZ,SG,IT,US,IT,US,FI,US,RU,TR,IE,HK,BR,NL,BE,HU,RU,IT,PL,RU,DE,CZ,AM,US,GG,FR,NL,FI,KR,FR,AE,BE,IE,HU,US,TR,DE,ES,GB,FR,GB,RO,SE,EE,KR,FR,US,NL,FI,LT,LV,UZ,FR,UA,PL,TR,DE,FR,RU,KG,RU,CH,GB,CH,HU,DE,US,ES,BR,EC,GB,BN,MT,PY,GY,NL,DE,GB,NL,AT,FR,UA,RU,DE,US,RU,TR,UA,GB,BE,US,CA,BE,AL,DK,HU,AT,DE,US,TR,FR,RU,GB,CH,RU,DE,PA,IL,US,TR,US,JP,US,DE,AT,DE,CH,CN,DE,CH,RU,CN,LK,PT,BD,SE,BD,SE,ES,US,ES,DK,US,FR,ES,DE,GB,QA,AE,DK,PL,DE,ES,GB,FR,GB,DE,US,CH,JP,GB,NL,GB,DE,ES,FR,SE,DK,CH,NO,FR,RU,US,RU,GB,NL,IT,CH,NL,SA,BG,JP,GB,ES,DE,KZ,DE,RO,RU,RO,US,FR,BE,RO,GE,FR,LT,OM,US,NL,FI,US,IT,NO,SI,SK,NO,US,GB,IT,NL,IT,US,LV,BE,FR,DE,ES,GB,FR,BE,IT,NL,DE,IT,SG,US,RO,SK,HU,IT,IN,PT,RO,GB,FR,BE,HK,NL,ES,FR,RO,US,DE,ES,GB,FR,SC,NL,DE,BG,GB,TR,UA,NO,DE,US,GB,DE,ES,CH,ES,GB,BE,DE,NL,CY,DE,US,DE,PL,US,DE,DK,US,FR,SG,NL,SE,HU,NL,GB,RU,UA,TR,BA,FI,US,NL,NO,RO,CH,JP,DE,JP,DE,IL,GB,ES,DE,US,TR,ES,BR,DE,HU,DE,GB,JP,SG,JP,SG,UA,GB,US,SE,ES,DE,OM,CH,NL,HU,DK,DE,FR,IT,CZ,IT,TR,MV,HK,FR,GB,DE,FR,DE,ES,GB,FR,IT,DE,NO,DE,US,ES,FI,ES,AU,DE,ES,GB,FR,RU,NL,GB,DE,RO,NL,UA,DE,ES,GB,ES,DK,HK,US,SE,US,BE,NL,RO,US,RO,US,SE,ES,US,NL,US,UA,AZ,RS,ES,DE,AT,DE,CZ,FR,US,HU,RU,UZ,FR,CH,DE,IT,DE,GB,NO,RU,ES,DE,US,GE,AM,ES,TR,US,TR,AR,AM,AR,NL,FR,RU,NL,AR,CA,AE,BR,FR,BR,BG,BR,CH,DE,SE,MF,IR,FR,NL,BG,NL,MX,FR,DE,FR,NL,FR,MD,KW,UA,RU,AU,DE,US,IR,PH,RU,US,JP,US,SG,US,FR,DE,US,GB,NL,AU,US,NL,AU,JP,US,FR,US,GB,US,GB,IT,US,PR,US,CA,US,CA,US,IT,US,NL,US,KR,US,NL,US,KR,US,GB,US,TW,US,PL,IL,US,SA,US,FR,US,UY,US,PL,CR,PL,US,IT,NL,US,IT,DE,US,SA,US,IT,US,SA,US,MY,US,PL,US,IT,PL,MY,US,MY,US,MY,US,NL,AL,FI,US,JP,US,SE,US,ID,US,DE,US,AL,PL,US,JP,GB,US,JP,US,UA,US,JP,US,PL,US,UA,US,NL,US,DE,US,UA,US,GB,US,PL,US,FR,US,PL,US,UA,US,UA,US,PL,US,UA,US,NL,US,NL,US,PL,GB,US,PL,US,UA,US,JP,US,PL,US,CA,LC,JP,US,UA,PL,UA,US,HK,US,UA,US,CA,US,PL,US,PL,UA,CA,UA,US,UA,US,IT,US,CA,US,JP,US,UA,US,UA,US,UA,US,AZ,US,IT,US,NL,US,UA,US,AU,US,UA,US,UA,US,IT,US,IT,US,PL,US,CA,US,SG,TH,IN,HK,JP,CA,US,DE,US,JP,DE,LT,US,CN,US,CA,US,CA,HK,US,CA,US,_,PR,US,MM,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,BM,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,GD,US,VC,US,CA,US,DE,US,HK,TW,KR,IN,JP,PH,HK,TW,HK,US,TW,JP,TW,DE,SG,GB,US,GB,US,GB,US,GB,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,US,JP,US,CA,US,CN,US,CA,US,DE,US,BE,US,CA,GB,US,ZA,BR,US,BR,US,IE,DE,AT,CH,BE,PL,US,FI,US,LU,IN,US,CR,US,CL,US,NZ,US,AU,IT,DE,US,DE,RO,JP,IN,US,TW,US,IN,BR,US,DE,US,ES,KE,FR,US,JP,US,CA,US,CA,US,CA,US,NL,US,BR,US,NL,US,PL,US,TR,CA,US,CA,US,DE,US,LU,US,LU,US,NL,US,CA,US,CA,US,BE,US,MX,BE,US,BE,MX,US,MX,BE,GB,HK,US,BE,US,BE,US,HK,US,MX,BE,US,HK,IL,US,MX,US,BE,GB,US,BE,US,CA,US,MX,US,GB,US,MX,US,MX,BE,US,MX,BE,US,MX,GB,HK,US,BE,US,MX,BE,US,BE,US,BE,MX,US,GB,US,MX,BE,US,GB,US,BE,BR,CA,US,GB,BE,US,BE,CA,US,GB,US,MX,BE,US,BE,US,BE,GB,US,BE,US,MX,US,BE,US,IT,US,ES,US,MX,GB,BE,US,DE,BE,US,CA,US,_,US,CA,US,CA,US,NL,GB,US,CA,US,GB,DE,US,DE,US,GB,US,NL,US,_,CA,US,NL,US,TH,US,CA,US,HK,US,HK,US,CA,VG,CA,US,AU,US,NL,US,GB,US,FR,DE,JP,US,MX,BR,US,AR,US,ID,IN,MO,HK,MO,PK,TW,AU,SG,ID,NZ,HK,AU,NZ,JP,HK,AU,SG,HK,TH,PH,IN,TH,IN,ID,IN,HK,NP,NZ,PH,KH,SG,BD,KR,AU,KR,IN,NP,BD,MY,KR,IN,PK,TH,IN,NZ,IN,TW,IN,HK,BT,ID,SG,NZ,US,LU,NL,AU,CN,HK,IN,IM,US,IN,AF,AU,ES,BG,HK,BG,SA,FR,SM,DK,MX,GB,IL,FR,ES,DE,GB,DE,IT,LT,BR,CO,BR,AR,MX,BR,CR,BR,CO,BR,AR,EC,BR,AR,BR,CO,BR,CL,DO,PE,AR,BR,PA,KW,CH,NL,MD,IT,PL,KZ,DE,NL,SC,GB,GR,BG,NL,ES,SK,RU,GB,US,ES,GB,SK,NL,IT,NL,FR,DE,GB,NL,IT,HU,FR,NL,RU,DE,GR,JP,US,GB,US,PL,IT,GB,JP,US,NL,GB,ID,GB,US,RU,CH,GB,FR,GR,HK,FI,LT,HU,IT,DE,US,AU,CN,ES,JP,CH,IT,BG,NL,CH,GB,ES,AE,US,RU,US,DE,ID,MX,NO,SG,US,DE,US,BE,BG,UA,RU,DE,RU,RO,NL,RO,IT,AT,CH,US,JP,SG,GB,RU,JO,CA,FR,DE,GB,DE,FR,GB,JP,US,BG,DK,AU,KR,NL,ES,US,NL,IT,MD,US,MD,UA,IT,EE,US,DE,US,HK,US,DE,US,ES,TR,HU,NO,IE,AT,GB,ES,IE,RU,GB,HK,LT,DE,MD,US,NL,US,RU,DE,US,NL,DE,NL,US,ES,NL,MD,RU,NL,TR,RU,GB,RU,FR,ES,GB,FR,BO,GT,AR,CL,SR,PE,CO,_,HN,CO,DO,CL,GT,PY,_,BR,AR,EC,BR,EC,BR,AR,BR,AR,BR,AR,BR,CO,BR,BO,AR,BR,EC,BR,AR,BR,BZ,BR,EC,BZ,BR,EC,BR,AR,BR,CO,CL,BR,US,BR,PE,EC,BR,CL,BR,HN,AR,BR,AR,BR,EC,BR,AR,CW,BR,CO,EC,BR,AR,EC,AR,BR,EC,US,CA,US,GB,US,GB,US,CA,US,CA,US,CA,US,MX,US,GB,AL,US,HK,DE,US,BE,GB,US,BE,SG,US,GB,US,BE,US,FI,MT,US,CZ,US,NL,IT,US,AU,US,RO,LU,GB,DE,US,IN,AU,GB,SG,GB,HK,NZ,LU,SE,US,SE,DE,US,MY,US,MY,US,NL,US,CA,US,CA,US,CA,JP,GB,US,NL,FR,JP,US,DE,JP,AU,GB,SG,US,SG,JP,US,JP,SG,AU,DE,GB,FR,DE,US,GB,US,JP,NL,DE,US,SG,JP,US,GB,AU,SG,US,HK,JP,US,DE,CA,US,CA,US,CA,IN,AU,US,IN,US,AU,US,DE,US,FR,SE,VG,DE,FR,ES,CH,FR,US,GB,TR,FR,NL,DK,GB,LV,RU,JP,GB,NZ,US,LV,SE,GB,RU,DE,FR,ES,IL,DK,US,MF,GB,US,MY,DE,MY,DE,HK,GR,RU,GB,RU,RS,CH,DE,NO,NL,RO,NL,US,NL,US,NL,GB,IT,NL,IT,TR,ES,US,SG,TH,CR,VN,DE,US,GB,EC,IT,RU,KZ,LU,US,KR,FI,HK,FR,NL,RU,VN,PL,VN,ES,AU,NL,HU,RU,GB,US,FR,GB,DE,US,LI,US,GE,TW,RU,TW,BG,TJ,BG,NL,SK,CZ,DE,NL,US,GB,US,SK,FR,IT,CH,GB,RU,FR,ES,CZ,TR,ES,HU,BE,TR,DE,IT,US,JP,PL,ES,GB,DE,RU,TR,IQ,CA,US,ES,IT,US,FR,ES,RU,NL,FR,BG,FI,JP,GB,DE,AT,FR,RU,FR,US,FR,DE,FR,GB,NL,DE,US,NL,TR,KR,SA,US,DE,LT,FR,LT,MD,IT,AU,UA,GB,SE,KZ,PL,FI,CA,GB,RO,LU,KZ,LT,LV,LT,CH,IN,DE,IT,NL,IN,DE,NL,IQ,NL,US,HK,SE,DE,ES,DE,US,BA,TR,HU,AM,IT,RO,CL,NL,US,FI,IT,HK,GB,DE,NL,IT,IR,GB,PL,FI,RU,LT,GB,CZ,LU,US,UA,US,GB,US,DE,AT,DE,NL,FR,NL,DE,AE,PL,IT,US,FR,DE,RU,CH,IN,RU,IT,CZ,JP,NL,BR,GB,US,BR,MX,CO,BD,UA,NL,CZ,US,RU,BD,JP,US,GB,DE,TR,GB,IL,DE,IL,GR,ES,EE,IT,SE,DE,CH,EE,GB,ES,JP,GB,US,FR,SE,RU,AE,ES,DE,US,RU,NL,AZ,NP,MY,LK,CO,PE,CZ,QA,DZ,TD,MR,BD,CL,SN,VE,SV,BY,CL,US,DE,GB,NL,UA,MD,GB,UA,IL,US,IN,NL,DE,NL,IT,NL,TH,NL,CZ,BG,SE,PT,FR,NL,HK,US,GB,NL,DE,BE,US,MD,RU,NL,RU,TR,GB,NL,DE,NL,US,NL,DE,LB,US,NO,NL,JP,IL,FR,ES,FR,AU,GB,ES,NL,RU,DE,RU,DE,HU,DE,RU,AU,BG,TR,UA,FR,DK,NL,US,DE,ES,DE,GB,US,RS,US,NL,CZ,NL,HU,RU,HU,FR,DE,IT,AT,UA,RU,IR,GB,CZ,IT,BG,RU,KZ,HK,FR,DE,BG,TR,US,DE,GB,LT,ES,NL,DE,NL,MX,NL,TR,MO,TR,RU,AT,NL,DE,IT,AL,IN,GB,BR,LT,IR,FR,AT,PE,AT,US,GB,JP,LV,IM,DE,HR,PL,US,AT,ZA,IT,BE,RU,BE,FR,UA,DE,FR,DE,FR,DE,GB,RU,SE,HK,FR,US,GB,BR,NL,JP,CH,GB,NL,LV,SE,NL,ES,DE,SE,NL,BE,HR,US,DE,FR,GB,AR,US,FR,ES,RU,US,DE,US,NL,GB,IT,US,IT,FR,CZ,FR,ES,PL,EG,NL,US,GB,US,IM,DE,US,PL,RU,DE,NL,MX,DE,FI,DE,GB,PL,GB,ES,GB,NL,NO,DE,NO,CZ,RU,IR,GB,FR,NL,FR,CH,US,IN,PL,CH,US,RU,FR,RU,CZ,US,RS,BD,AU,GB,AU,PH,US,PH,KE,LK,KZ,RO,MX,US,IR,DE,BE,JP,FR,SE,IT,IL,US,GB,DE,ES,CH,RO,NL,IT,DE,US,DE,IT,NL,DE,AT,RU,EE,FI,NL,RU,ES,NL,BG,US,AT,IR,NL,IS,DE,GB,FR,US,PL,CH,RO,NL,GB,ES,AE,ES,US,IT,DE,US,NO,RO,US,PH,SG,US,MX,FR,NL,IR,US,BR,CL,US,CZ,DE,NL,US,NL,US,HR,GB,NL,SE,PL,IT,NL,US,BR,GB,MY,GB,FR,GB,US,IT,DE,FR,CH,BE,NL,UA,SG,JP,SG,HU,NL,RU,NL,HU,BE,IN,DE,VE,EG,RO,US,NL,US,GB,RU,RS,DE,RU,DE,US,NL,UA,DE,US,TR,US,FR,IT,GB,IT,US,DE,AT,US,FI,HU,GB,DE,JP,US,GB,RU,BY,NL,IE,HK,GB,CZ,US,SG,US,RU,NL,RU,IT,RU,NL,VG,NL,PL,NL,IL,JP,AE,DE,NL,DE,NL,FR,GB,FR,GB,CH,GB,TR,NL,US,JP,SG,JP,FI,NL,RU,DE,NL,DE,GB,TR,NL,AE,SA,FR,IL,NL,GB,AU,DE,BG,DE,TR,HU,PL,DE,US,HU,DE,RU,NL,DE,GB,NO,NL,US,NL,US,NO,AT,US,FR,US,UA,NL,TR,FR,GB,RU,ES,RU,UA,LK,GB,LK,SG,RO,SG,FR,SG,ID,IE,FR,IT,DE,CA,US,LT,NL,US,BE,US,HU,RU,DE,US,NO,US,DE,_,US,GB,US,GB,DE,AT,ES,IE,ES,RU,CH,GB,PL,US,RU,IQ,CH,RU,CY,RU,BE,DE,BR,HK,IE,FR,GB,FR,GB,ES,US,TR,UA,SK,RS,GB,NO,IQ,GB,RU,UA,FR,ES,GB,UA,DE,TH,GB,TH,GB,RU,US,ID,FR,AE,IT,DE,NL,IR,DE,NL,DE,SG,AU,FR,GB,DE,RO,DE,GB,US,FR,RO,TH,IT,FR,RU,NO,ID,TH,FR,IT,IR,US,IT,GI,JP,ES,RU,BY,HK,IR,GB,DE,AU,UA,TR,NL,FR,US,GB,NL,US,AU,PL,DE,LI,US,UA,GB,HK,IT,AT,US,RU,NO,PK,GB,PL,RU,ES,RU,DE,AT,ES,CH,RU,DE,AT,IR,AT,AL,IT,PS,US,BG,IT,DE,CZ,NL,US,JP,MY,US,ES,IT,RO,DE,FR,GB,US,JP,US,NL,TR,DE,GB,FR,PL,IT,GB,UA,IE,GB,DE,ES,FR,RU,DE,US,GB,US,HK,SE,RU,US,OM,US,FR,SG,IT,ES,IT,RU,GB,GE,CZ,BE,RO,RU,DE,US,DE,US,GB,AU,ZA,IT,SE,FR,CA,US,CZ,GB,FR,US,AT,US,AU,ES,SE,FI,NL,DE,ES,RU,NL,GB,DE,GB,DE,US,BR,CH,GB,AT,IT,NL,DE,HU,US,GB,NL,GB,NL,IT,NL,BE,FR,UA,TH,US,BR,DE,GR,BE,FR,PL,TR,IR,DE,RU,CH,RU,BR,NL,GB,SE,ES,AR,FR,MY,VN,CZ,IT,US,BG,LV,BG,DE,NL,US,NL,US,DE,UA,UZ,US,KR,HK,JP,CH,ES,PL,RU,AT,DE,GB,AT,SE,DE,FR,GB,AU,DE,SE,US,CH,ES,US,JP,GR,GB,SE,US,DE,GB,NL,GB,DE,FR,IT,FR,PT,IT,US,ES,PL,US,PL,NL,AU,KZ,AU,IR,AU,EE,GB,FR,DE,IL,GB,RU,LU,NL,LU,ES,DE,BD,GB,US,GB,IT,AU,NL,HK,BD,IN,SE,RU,UZ,RU,FR,ES,DE,IN,US,BE,FR,ES,NL,AT,US,GB,NL,NO,US,GB,SE,GB,CZ,BE,PL,DK,NL,RO,HU,NL,FR,JP,RU,UA,SE,GB,PL,RU,DE,RU,FR,ES,NL,PT,FR,SG,FR,NL,IT,NL,GB,CA,IL,US,NL,SE,FI,DE,IS,ES,DE,UA,HK,NL,FR,RU,GE,US,NL,FR,NL,CH,IL,HK,IT,US,DE,GB,US,NL,ES,NL,RO,RU,LT,NO,FR,NL,NZ,IE,CZ,RU,PL,BE,US,NL,GB,DE,ES,DE,ES,RO,RU,IT,ES,RU,IN,RU,JP,US,GB,AL,GB,PL,SE,DE,SE,TR,DE,AT,IT,TR,GI,SA,FR,RU,SG,GB,IT,SG,BG,CO,BR,DE,GB,DE,HK,IL,DE,GB,TR,DE,GB,AU,KR,IE,RU,TR,DE,CH,UA,BG,UA,FR,ES,RU,DE,IE,RU,FR,US,AT,US,IN,RU,NL,TR,US,GB,SG,UA,PE,UY,US,GB,TR,NL,GB,NL,DE,NL,HU,NL,GB,NL,PT,DE,JP,DE,IR,TJ,US,FR,RU,AE,DE,GB,DE,IR,SG,DE,FI,FR,IT,SK,JP,CA,GB,DE,GB,US,GE,GB,US,BR,RU,IT,RU,US,SE,CH,AU,CA,RO,GB,NL,HU,DE,RU,FR,CA,TR,RU,NL,US,ES,IT,DK,MT,LV,FR,US,IL,US,PH,US,DE,CH,DE,HU,GB,FR,DK,US,FR,DE,AT,VN,DE,PT,RU,AT,LT,NL,RU,AT,GB,BS,BD,BZ,BM,LV,HR,FR,NL,GB,US,UA,IT,US,ES,RU,DE,US,DE,DK,US,IT,BA,US,TR,IE,IT,PL,CH,RO,JP,DE,JP,RO,CH,FR,RU,PL,GB,QA,IM,MM,AT,OM,GB,NL,EG,IN,SG,IN,HK,IN,SG,IN,MM,IN,NZ,TH,IN,BD,SG,PH,DE,KR,FR,ID,JP,CN,IN,TH,IN,KR,IN,MM,NP,IN,CN,IN,MY,IN,HK,CN,FJ,CN,IN,AU,IN,HK,JP,AU,NZ,CN,HK,PH,KR,US,AU,CN,KR,_,CN,SG,IN,HK,CA,CN,IN,HK,NL,TH,IN,AU,IN,PS,HK,IN,PK,HK,BD,IN,HK,CN,IN,TW,HK,JP,CN,JP,CN,IN,CN,IN,SG,CN,AU,CN,AE,ID,AU,NL,US,IQ,CN,AU,IN,CN,SG,PL,JP,PH,HK,MY,CN,IN,CN,HK,IN,CN,IN,BD,KR,CN,HK,KR,HK,JP,AU,SG,ID,JP,SE,DE,HK,KR,JP,KR,PH,CN,IN,KH,HK,IN,JP,SG,IN,CN,AU,IN,JP,IN,GB,CA,CN,NC,US,HK,US,IN,CN,IN,BD,_,AU,TH,KR,DE,ID,IN,GB,PH,HK,_,CN,AU,PK,TH,IN,US,ID,AU,TL,IN,KH,PK,IN,CN,IN,NL,BD,AU,TH,IN,CN,HK,AU,CN,ID,IN,CN,IN,KR,CN,HK,CN,IN,KH,IN,JP,HK,CN,US,KH,CN,NP,MY,PH,CN,AU,HK,CN,IN,HK,JP,HK,CN,NP,CN,IN,CN,HK,IN,AU,CN,IN,HK,IN,JP,HK,IN,_,JP,CN,IN,AU,IN,AF,HK,_,JP,SG,CN,HK,IN,CN,ID,HK,TR,MY,TW,MY,HK,IN,NL,IN,CN,HK,TH,AU,JP,IN,PK,MY,PS,IN,PS,CN,KR,JP,CN,AU,IN,MN,NZ,PS,IN,US,JP,US,DE,_,BD,IN,CN,IN,VN,_,PK,IN,HK,AU,JP,PK,IN,MY,SG,CN,IN,ID,GB,JP,KR,IN,NP,VN,IN,SG,HK,MP,IN,TH,IN,MY,IT,MY,FJ,IN,CN,IN,_,IN,PH,JP,IN,BD,AU,BD,IN,KH,IN,ID,IN,_,IN,SG,VN,IN,SG,IN,DE,NZ,IN,BD,HK,PH,KR,JP,_,HK,IN,_,IN,CN,HK,CN,IN,CN,VN,IN,HK,NZ,CN,VN,IN,CN,_,DE,IN,KH,IN,KR,IN,SG,MY,JP,IN,SG,JP,US,VN,AU,IN,CN,IN,VN,IN,KR,HK,IN,HK,IN,AU,IN,BD,IN,HK,AE,JP,MY,HK,IN,KR,IN,KR,JP,HK,MM,IN,BD,CN,SG,AU,SG,PH,BD,NZ,IN,MY,JP,IN,US,IN,CN,IN,SG,HK,JP,HK,JP,IN,CN,HK,PH,IN,NL,BE,HK,IN,_,PK,KR,AE,GB,MY,HK,IN,HK,ES,VN,IN,CN,ID,IN,HK,VN,IN,NP,MY,ID,IN,TW,CN,HK,TH,CN,IN,HK,SG,LK,CN,IN,PS,IN,AU,HK,_,MY,JP,VN,IN,VN,KR,IN,CN,AU,ZA,JP,SG,HK,GB,HK,AU,HK,CN,ID,IN,KH,CN,IN,TH,ID,CN,IN,HK,IN,HK,JP,SG,CN,VN,JP,AU,_,VN,IN,HK,IN,CN,NL,CN,IN,VN,MY,AU,IN,HK,TR,TW,CN,MY,CN,ID,US,JP,DE,CN,IN,CN,HK,LT,HK,MO,CN,NZ,CN,IN,NP,CN,IN,HK,BD,PH,CN,HK,CN,AU,CN,IN,AU,PH,HK,CN,HK,CN,VN,TJ,MY,CN,IN,_,HK,IN,CN,IN,HK,JP,IN,HK,AU,BD,CN,IN,AU,PH,CN,AU,JP,IN,CN,HK,US,DE,VN,HK,MM,HK,CN,HK,SG,CN,_,HK,IN,CN,HK,CN,IN,JP,HK,LT,HK,IN,ID,CN,_,US,HK,IN,AU,TH,IN,CN,IN,HK,US,HK,NZ,IN,HK,TH,HK,SG,VN,IN,HK,BD,_,TH,KR,VN,JP,DE,JP,IN,AU,PH,ES,IT,HK,IN,HK,JP,HK,IN,AU,IN,ID,AU,CN,ID,SG,IN,BD,HK,US,ID,PH,TW,MY,VN,US,IN,CN,HK,NZ,ID,IN,BN,IN,TW,JP,TW,ID,JP,IN,SG,IN,HK,ID,IN,AU,IN,US,CN,HK,CN,TH,HK,IN,HK,IN,_,IN,AF,IN,HK,MY,CN,IN,JP,SG,HK,IN,BD,IN,TH,IN,AU,HK,IN,NL,HK,SG,IN,HK,CN,ID,IN,BN,CN,KH,CN,HK,PH,SG,AU,PS,AU,HK,IN,US,IN,ID,IN,CN,IN,BD,US,VN,NL,BG,BE,BG,ES,GB,VN,DE,LI,AE,SG,NL,MD,IL,TH,NL,US,GB,US,CH,PL,ES,FR,LV,ME,PL,ES,AZ,GE,US,NL,HU,GE,IL,US,DE,VN,GB,DE,GB,BG,DE,FR,TH,BG,TH,DE,NL,PL,FR,RO,IQ,US,SE,SG,GR,BR,RU,ES,BE,FR,NL,GB,IR,US,HK,UA,US,NL,LV,JP,DE,US,NL,US,DE,NL,LT,AT,RO,AT,RU,DE,RU,UA,SE,GB,AL,SG,NL,ES,RU,BY,RU,HK,GB,PL,DE,HK,GB,FI,RU,NL,TR,HU,ES,IT,NL,IL,DE,PL,SG,RU,HK,RO,GB,BE,TR,BE,ES,CZ,US,CZ,US,DE,IR,DE,FR,EE,DK,SE,BE,NL,RO,BE,UA,RU,UZ,TW,RU,DE,NL,GU,IN,KR,FR,GB,FR,GB,DE,BE,EE,UA,GB,SK,CZ,SK,FR,IR,TR,IL,US,FR,US,UZ,VN,PL,VN,NL,DE,LB,RU,NL,DE,RU,CZ,IT,EE,DE,TR,DK,GB,UZ,RU,NL,DE,NL,RU,AD,SE,FR,US,NL,GB,EE,RU,US,DK,FR,US,CH,SG,ID,DE,NL,RU,DE,IT,PL,UA,RU,TR,ES,NL,FR,PL,GB,US,SG,KW,RU,NL,GB,US,FR,NL,IT,NL,GB,FI,US,CZ,IN,RU,US,LT,CA,UA,SE,US,GB,IT,US,SE,IT,DE,PS,NL,DE,US,DE,IT,RS,RU,HU,IT,SE,NL,CY,IS,IM,OM,NL,US,NL,ES,CO,MX,KZ,SE,TH,BR,PL,RU,HK,RU,HK,RU,GB,TR,ES,US,MD,RU,GB,VG,AU,US,AU,JP,RU,DE,NL,SE,BG,TR,EG,DE,PL,KZ,KG,NL,FR,ID,US,SG,NL,FR,HU,UA,CZ,BE,MX,PH,IL,TR,BZ,IT,US,DE,LB,US,ES,PL,DE,RU,PL,RU,VN,ES,RU,NL,BE,DE,RU,DE,HU,IT,DE,NL,ES,NL,DE,BE,GB,DE,RU,DE,RO,DE,TR,BA,DE,AM,RO,HK,GB,OM,NL,HU,US,DE,JP,HK,KZ,CO,GB,UA,CH,GB,ES,US,HK,NL,PL,CH,SE,US,TR,NL,PL,BZ,NL,CN,FR,NL,GB,IT,BR,GB,DE,IT,NL,LU,IE,CH,FR,DE,ES,PL,NL,US,GB,RU,GB,IN,US,GB,DE,IR,US,ES,AT,KZ,RU,IN,DE,SE,RU,DE,UA,DE,AT,DE,FR,DE,SE,US,ES,PL,NL,DE,GB,DE,KZ,DE,UA,TR,DK,SE,SG,HU,NL,GB,PL,JP,NL,US,DE,AU,DE,RU,IT,CY,GB,PL,GB,ES,RU,NL,DE,BR,DE,US,KZ,GB,IR,KZ,IT,UA,DE,US,AU,CN,EE,BG,US,BY,GB,SY,HU,RU,DE,IT,US,DE,JP,IT,AU,CH,US,GB,SE,US,HK,US,DE,FR,RU,GR,RU,LT,CL,NL,ES,AU,NZ,DE,IT,CA,GB,AE,RU,TR,UA,AT,BG,NL,SE,US,ES,US,FR,DE,FR,DE,US,DE,FR,US,GB,BG,RU,BG,PH,AM,GB,US,JP,FR,NL,GB,CY,NL,US,CZ,ES,NL,IT,RU,RO,DE,US,NL,DK,KH,JP,GB,DE,GB,NL,GB,TW,CH,FR,CH,BR,HK,CA,GB,NL,DE,IS,KR,NO,NL,FR,NL,IT,US,LV,RU,GB,FR,RU,NL,KZ,RU,US,HK,GB,IL,IT,RU,FI,GB,US,NL,US,NL,US,GB,US,MX,US,RU,IT,US,RU,GB,CH,GB,US,AU,NL,IT,NL,RU,US,FR,NL,US,DE,SE,RO,EE,RU,SE,RU,ES,GB,US,FR,US,HK,GB,ES,GB,NO,DE,ES,US,DE,AL,DE,US,EE,CA,SE,RU,NL,US,NL,US,CH,NL,US,BR,US,AR,HK,CH,GB,DE,ES,TN,TZ,UA,RO,DK,HK,NL,UA,NL,RU,IL,SG,US,IL,BT,BO,BN,KH,FR,PS,DE,NO,PL,ES,CZ,UZ,SE,NL,US,NL,DE,GB,DE,HU,IQ,AT,FR,GB,FR,GB,RU,NL,RU,US,NL,FR,GB,FR,GB,CA,IT,FR,IT,RU,GB,LT,US,GB,US,JP,DE,JP,ES,NL,DE,DK,IT,FR,NL,RU,CZ,OM,RU,NL,US,DE,SA,US,KR,NL,DE,US,GB,RU,KZ,RU,KZ,RU,GB,IT,US,GB,DE,FI,DE,CZ,NO,NL,US,RU,DE,NL,UA,NL,PT,AE,RU,ES,AE,CA,AE,MX,ES,HK,SE,DE,NL,DE,ES,DE,TR,NL,RU,KZ,PL,US,RO,SG,US,HK,RU,BY,CW,HK,DE,IR,DE,JP,GB,HK,JP,TR,IT,HK,GB,US,GB,RU,US,DE,ES,DK,RO,HK,NL,GE,KZ,AT,NL,RU,DE,FI,NL,GB,NO,NL,DE,FR,DE,RU,TR,GB,ES,IT,NL,US,HU,US,SK,LI,NL,HR,RU,US,CZ,DE,CA,TR,SE,DE,AZ,DE,GB,DE,RU,VG,HR,ES,HK,BG,RO,GB,RU,UA,RU,TR,FR,GB,FR,GB,DE,NL,IL,NL,IL,GB,TH,US,IE,IL,RU,DE,RU,TH,RO,AT,US,HK,ES,SE,GB,DE,NL,FR,BR,GB,ES,GB,RU,DE,RU,GB,RU,FR,GB,PL,DE,IL,DK,US,IL,NL,DE,US,DE,ES,DZ,AD,AM,AZ,IL,SG,NL,IL,RU,NO,US,NL,DE,KR,US,SA,DE,NL,RU,HU,RU,PK,FI,PK,HU,FR,GB,IN,TR,CZ,IT,ES,CA,FR,DE,FR,GB,RU,UA,GB,AU,SG,US,ES,SK,DE,FR,NL,JP,IE,KZ,RU,AE,DE,US,DE,NL,FR,DE,NO,NL,US,NL,NO,NL,US,BG,PL,MD,IT,GB,CN,DE,GB,ES,JP,US,HR,RU,NL,US,NL,DE,NL,GB,NL,HU,FM,HU,US,FI,IT,NL,AT,NL,US,JP,GB,NL,DE,GE,DE,NL,DE,FR,RO,US,FR,DE,FI,AT,RU,FR,GB,FR,GB,NL,IT,DK,KE,RO,HU,PT,DE,US,AU,CN,CZ,US,HK,US,FR,DE,BE,NL,IR,US,SE,RU,DE,RU,ES,PL,AU,RU,UZ,BY,RU,US,BE,DE,GB,BE,FR,GB,TR,SK,IT,FR,IT,US,IT,FR,MD,MK,NL,US,CZ,HK,NO,RU,GE,NL,KZ,GB,FR,PT,NL,CN,NO,DK,SE,AU,ES,GB,ES,GB,US,JP,AU,TR,AE,IR,GB,RU,FR,RU,NL,RU,GB,NL,FR,GB,FR,GB,IN,US,IN,RU,US,HR,FR,US,NL,RU,NL,RU,US,IN,AT,IN,US,BE,RO,ES,RU,GB,NL,CZ,PL,IT,NL,IQ,US,EE,RU,DE,NL,US,RU,CH,RU,DE,RU,DE,RU,DE,AU,NL,IT,NL,RU,NL,RU,GB,RU,NP,SG,US,HK,SG,NL,BR,TR,US,TR,NL,US,GR,HU,TR,GB,DE,SG,GB,FR,GB,FR,GB,ES,RU,PL,RU,IE,SE,DE,IS,PR,IE,NO,IN,JP,KZ,BG,NL,GB,SE,GB,CH,FR,RU,DE,FR,IT,KG,IR,US,LV,HK,CA,US,GR,US,DE,UA,EE,RU,US,RU,NL,RU,VN,GB,NL,FR,GB,FR,GB,RU,IT,US,KR,RU,IS,CH,FR,OM,FR,DE,UA,DE,JP,BE,DE,NL,GB,FR,GB,NL,IE,GB,MD,NL,AT,DE,NL,ES,GB,ES,GB,RU,BE,GB,AU,US,RU,DE,US,DE,US,NL,BR,NO,US,IT,AU,CN,DE,NL,FR,GB,CH,US,IR,HU,IN,CZ,FR,TR,US,NL,GB,PL,ES,NL,US,NL,DE,NL,US,GB,TH,NL,PL,DE,IT,HK,FR,GB,FR,GB,US,CH,NL,AT,SC,IT,SC,US,NL,ES,HK,DE,RU,US,RU,NL,RU,KG,CH,RU,NL,SE,FR,DE,US,DE,FR,NL,AU,NL,US,DE,US,GB,KR,AU,US,TR,DE,US,GB,AR,UA,BG,MY,NL,HU,GB,US,FR,IL,DE,FR,DE,RU,AU,UA,BR,DE,ES,RU,NL,US,NL,BR,DE,FR,AU,DE,AU,TR,IT,US,DE,GB,US,GB,ES,US,KZ,ES,NL,US,DE,HR,GB,FR,IT,NL,DE,AL,IL,US,DE,RU,NL,GB,UA,ES,UZ,CZ,SG,DE,US,ES,RU,HK,IT,LB,NL,DE,NL,UA,US,EE,NL,EE,DE,HK,DE,FR,DE,NL,BG,TJ,RU,UA,HK,JP,BG,IT,LB,SE,NL,FR,HK,KR,NL,JP,US,PL,NL,JP,IT,FR,DE,IT,IR,RO,BE,DE,RO,JO,GB,NL,SG,NL,FR,GB,FR,GB,RU,NL,RU,MD,LV,MD,LV,GB,DE,CH,ES,NL,DE,IN,US,AT,GB,US,RU,DE,CA,RU,JP,DE,BA,GB,US,NZ,GB,DE,RU,AT,IQ,ES,DE,NL,MD,LV,PL,NL,ES,PL,ES,NL,AE,AT,US,PL,DE,SG,US,BR,RU,KZ,RU,TR,IT,AM,GE,GB,CH,DE,GR,GB,RU,GB,LV,RU,AU,US,GB,ES,GB,CH,US,RU,FR,SK,DE,IT,DE,TR,NL,US,NL,US,GB,BG,BE,RU,AM,IE,DE,HR,BY,NL,GB,DE,JP,RU,DE,KZ,RU,NL,MD,DE,RU,EE,IE,ES,IR,FR,ES,NL,RU,MD,RU,GB,UZ,RU,UZ,RU,PL,RU,GB,IT,RU,US,AU,NL,NO,US,AT,BR,FR,GB,IT,DE,NL,US,SE,PL,IR,BE,DE,HK,IT,GB,NL,BG,TR,BG,FR,GB,FR,GB,TH,RU,NL,RU,GB,DE,MX,HU,US,AT,ES,AT,UA,TR,PL,NL,RU,MX,US,NL,TW,ES,NL,DE,FI,LV,GB,NL,AU,NL,US,NL,DE,US,ES,MD,RU,GB,RU,US,JP,NL,US,DE,NL,RO,BE,RO,TR,IT,GB,LT,LU,DE,AE,DE,OM,GB,NL,US,GB,US,IL,US,LB,RU,IT,US,HK,US,GB,RU,DE,RU,DK,US,GB,BR,NL,FR,RU,GB,FR,GB,FR,US,ES,GB,NL,MF,GB,IN,US,SG,NL,RU,DE,NL,AZ,FR,RU,US,MD,GB,US,RU,US,NL,IT,BE,CA,US,JP,ES,CZ,US,DE,CA,GB,DE,BR,DE,ES,NL,FR,IT,MX,NL,HU,NL,SG,PL,GB,PS,DE,NL,RU,US,RU,DE,FR,AM,RU,GB,US,PL,JP,US,NL,GB,RU,GB,EE,US,BR,US,DE,US,FR,DE,LU,NL,SE,SG,ID,US,CZ,DE,US,JP,NL,GR,NL,BR,DE,BG,GB,ES,RU,GB,DE,BE,HK,JP,RU,UA,RU,DE,GB,IE,US,DK,IE,NL,GB,ES,LT,LU,NL,US,FR,GB,NL,FR,AT,AU,GB,RS,PH,ES,RU,HK,US,DE,AU,DE,HK,SK,FI,DE,RU,NL,RU,DE,US,DE,US,JP,RU,ES,FR,NL,DK,US,GB,DE,CH,TR,DE,BE,GB,BE,KZ,JP,US,PS,FR,SE,PT,CA,IR,RU,GB,DE,NL,GB,NL,FR,US,ES,DE,ES,RU,NL,ES,US,SI,UA,RU,UA,IN,GB,US,GB,US,NL,LU,RU,CA,US,IL,NL,RU,US,RU,NL,DE,GB,RU,GR,RU,NL,RU,ES,FR,HK,CH,DE,IN,ES,BR,GB,DE,JP,IT,NL,US,FR,US,DE,GB,IT,ES,RU,UZ,GB,IE,CH,DE,NL,CA,US,RO,GB,NL,SE,NO,SE,IT,PL,JP,NL,US,FI,ES,GB,PL,GB,CH,NL,AU,NL,DE,GB,NL,US,NL,ES,GB,CZ,ES,IQ,BR,SE,BE,BO,FR,DE,NL,CH,NL,DE,US,AU,CN,US,HK,JP,US,CA,US,TR,IT,TR,NL,UA,FR,BE,NL,US,GB,RU,NL,JP,BE,ES,FR,NL,ES,IT,ES,OM,SE,DE,IT,DE,ES,DE,UA,GB,CH,RU,NL,RU,IR,GB,PL,JP,DE,VE,JP,DE,NL,HK,BR,PT,BR,UA,BR,AT,GB,FR,UA,NL,PL,NL,DE,NL,FR,GB,BE,GB,HK,GB,IR,US,FR,AE,NL,AU,NL,HK,SG,US,DE,BE,CA,ES,FI,US,SE,NL,US,ES,SE,NL,RU,CZ,TR,RU,UA,GB,RU,DK,FR,NL,US,FR,JP,LV,US,DE,FR,NL,US,GB,SK,ES,US,HK,ID,GB,AU,US,ES,PL,SE,DE,SC,GB,US,GB,HK,ZA,ES,IT,TR,US,TH,CH,US,RU,NL,GB,NL,DE,SA,US,BE,US,ES,US,SI,GB,CA,UZ,NL,US,CZ,NL,HR,EG,KR,ME,US,JP,US,GB,US,RU,GB,NL,RU,US,RU,MD,DE,SE,NL,BE,RO,ES,IR,PL,DE,PL,NL,AT,DE,NL,IL,IT,UA,IT,DE,RU,BE,DE,TH,NL,DE,GB,RU,UA,IR,PL,DE,NL,SE,US,NL,US,DE,US,ES,NL,ES,NL,GB,HK,IT,RU,AE,US,ES,US,GB,US,GB,NL,CN,US,IE,UA,TW,UA,NL,FR,SE,FR,GB,TR,UA,NL,FI,FR,IT,FR,DE,HK,RU,PT,RU,NL,FR,JP,HK,JP,ES,RU,US,FR,US,RU,DE,IT,NL,MY,US,NL,ES,IQ,TR,CH,NL,BG,NL,BG,DE,HK,US,RU,US,NL,SE,GB,NL,RU,NL,BR,DE,PL,FI,US,RU,KZ,US,GB,TR,RU,DE,US,NL,DE,NL,DE,US,ES,JP,FR,ES,US,NL,AT,FR,CH,GB,DE,PL,FR,ES,RU,US,RU,SG,UA,DE,ES,TR,GB,NL,ES,FR,DE,UA,GB,NL,BR,US,IT,AT,BR,PL,BR,DE,NO,AT,NL,CH,DE,HK,BE,FR,UA,NL,BE,US,RU,US,JP,GB,SK,DE,FI,DE,US,NL,RU,CH,RU,DE,IT,US,DE,AE,RU,US,ES,IT,ES,DE,NL,DE,ES,US,UA,RU,SE,JP,US,GB,US,FR,US,ES,FR,US,AU,LU,NL,US,GB,IL,US,FR,DE,NL,RU,BY,KZ,RU,JP,RU,DE,GB,NL,DE,US,TR,DE,NL,GB,NL,US,TW,US,DE,NL,RU,NL,GB,DE,TW,DE,RU,DE,GB,IT,RU,CA,UA,KZ,RU,DE,UZ,RU,DK,DE,NL,RO,CH,DE,RO,FR,ES,SE,PL,SE,NO,US,DE,IQ,SE,ES,PL,US,HK,GB,CH,AT,DE,HU,BE,TZ,AE,NL,IT,DO,US,GB,US,FR,DE,GR,NL,GB,NL,SE,RU,CZ,RU,IE,FR,UA,AM,NL,US,TW,GB,RU,DE,NL,UA,DE,RU,AT,PL,BE,US,DE,US,NL,DE,US,DE,BE,US,NL,US,GB,DE,TH,SE,DE,SE,GB,NL,DE,NO,NL,ES,RS,US,FR,PT,FI,IT,RU,BG,GB,FI,GB,GE,DE,BE,HK,BE,IE,CN,JP,SG,US,DE,FI,UA,RO,NL,UA,ES,GB,SG,PL,DE,FR,NL,US,PL,GB,US,TR,GB,BR,US,RU,BE,RU,NL,FR,ES,BG,US,RU,NL,GB,HK,DE,CA,ES,SE,GB,US,CH,UA,US,PL,DE,BE,GB,MX,LT,NO,SE,NO,IT,NL,FR,CH,LT,FR,US,DE,SE,SG,SE,GB,NL,RU,NL,IT,CZ,PA,SG,GB,US,GB,IE,US,IE,ES,NL,HU,LU,IS,BG,OM,ES,FI,KZ,PT,ES,BY,RU,PL,FR,US,NL,SG,NL,US,TR,GB,BE,US,UA,DE,HK,PH,PL,RU,SE,GB,RU,GB,DE,NL,PL,US,GR,TR,DE,LB,DE,RU,PL,SE,US,TR,FR,DE,GE,US,FR,DE,FR,GB,AT,GB,IR,NL,US,RU,NL,KR,US,KR,HK,FR,GB,RU,US,BE,US,AT,DE,US,RU,AT,DK,TR,NL,JP,RU,NL,RU,TR,EE,UA,ES,CZ,NL,JP,AU,US,IT,AU,ES,TR,ES,GB,DE,NL,DE,GB,DE,FI,GB,ES,FI,DE,AZ,SK,CZ,ES,GB,BR,IE,DE,BE,FR,CY,MK,US,DK,US,RU,NL,FI,RU,BE,FR,IT,AM,US,DE,HK,NL,ES,IR,FR,IR,NL,GB,NL,ES,RU,HK,US,SA,FR,PL,AT,FR,BA,FI,US,GB,DE,GB,SI,DE,PL,SE,ES,NL,DE,NL,GB,IT,MX,MT,SG,JP,GB,DE,CH,IQ,ES,FR,IT,DE,GR,DE,US,PT,NL,ES,GB,TH,GB,BE,GB,PL,FR,NL,DE,FI,NL,DE,PL,IE,FR,DE,NL,PT,US,IE,NL,HK,DE,MX,PL,RU,NL,RU,DE,IQ,GE,NL,RU,DK,NZ,NL,GB,DE,ES,CH,EE,FR,IT,NL,UA,US,DE,US,IN,RU,US,DE,IT,DE,IR,FR,GB,ES,PL,BR,DE,US,TR,RS,CA,IL,BG,US,NL,DE,US,RU,LV,EE,SG,TR,US,SG,DE,US,DE,FR,NL,FR,NL,PL,FR,GB,RO,SK,US,ES,US,NO,KW,ES,HU,PL,IE,FR,IE,SE,IR,GB,US,GB,UA,US,TR,LU,IE,US,CA,HU,PS,BG,GB,US,GB,KR,VE,DE,IE,US,JP,US,HK,US,RU,US,NL,DK,KW,ES,HK,ES,NL,RU,SI,NL,UA,DE,HK,RU,US,GB,NL,AZ,SE,ES,SE,UA,US,PL,DE,US,GR,TR,DE,IT,GB,NL,JP,DE,HK,IT,GB,IT,FR,AM,ES,PL,RU,DE,KZ,RU,GB,VG,ES,PL,GB,UA,RU,DE,IR,CZ,DE,DK,RO,US,IL,US,RU,US,NL,BE,DE,NL,IR,GB,SE,PS,PL,ES,IE,DE,DK,NZ,PT,AT,LB,NL,IT,IR,RU,NL,US,DE,ES,DE,ES,GR,PL,DE,PL,FR,PL,GB,FI,KZ,PT,NL,BR,CL,BR,CL,BR,AR,PY,BR,CL,BR,_,BR,CR,BR,AR,BR,CL,BR,AR,BR,CL,BR,VE,BR,AR,BR,SV,BR,EC,BR,CL,BR,CL,AR,BR,AR,BR,AR,BR,AR,BR,CL,BR,PY,BR,CO,BR,AR,BR,AR,BR,EC,CO,BR,CO,HN,SV,AR,BR,AR,BR,AR,BR,AR,CO,BR,CL,BR,AR,BR,AR,BR,PY,CL,BR,CL,BR,CR,CL,BR,BO,AR,BR,CO,AR,BR,AR,BR,AR,BR,MX,AR,BR,CR,AR,BR,PY,BR,EC,BR,AR,BR,DO,AR,US,MX,US,MX,BR,EC,BR,MX,BR,MX,BR,GT,BR,MX,DO,BR,AR,BR,SV,BR,AR,BR,MX,BR,AR,CL,AR,BR,PY,BR,AR,BR,GT,BR,AR,BR,CL,BR,VE,BR,CL,AR,BR,AR,BR,HN,BR,MX,BR,MX,BR,CL,BR,AR,BR,MX,BR,SV,BR,GT,BR,AR,SV,BR,MX,BR,CR,AR,CL,BR,AR,MX,BR,MX,BR,AR,BR,CO,AR,BR,MX,BR,AR,BR,MX,BR,CL,CR,MX,BR,AR,BR,PE,BR,CO,MX,BR,CL,BR,AR,BR,CO,BR,HN,VE,BR,AR,CR,BR,AR,BR,MX,BR,PE,CO,BR,AR,CL,BR,PE,BR,PE,PA,BR,CO,US,EC,PA,PE,AR,BR,PY,BR,VE,EC,CL,BR,CL,GF,AR,BR,DO,BR,MX,BR,HN,BR,AR,BR,CO,BR,AR,DE,BR,SV,HN,BR,AR,EC,PE,BR,CL,PY,AR,VE,BR,CO,PY,CO,AR,CL,BR,AR,MX,BR,AR,BR,NI,BR,SV,BR,CO,MX,US,MX,BR,AR,BR,CL,BR,GT,BR,MX,BR,AR,BR,EC,AR,BR,CO,BR,EC,BR,AR,BR,MX,EC,PE,BR,CO,BR,HN,BR,CL,AR,BR,PE,ES,PE,BR,AR,BR,AR,BR,MX,BR,AR,BR,CL,AR,BR,DO,BR,AR,CO,BR,CO,AR,BR,CO,AR,CO,AR,PY,BR,AR,BR,CO,AR,CO,BR,CO,AR,BR,AR,CO,BR,AR,SV,AR,BR,CO,PE,BR,EC,BR,CL,BR,CL,BR,AR,BR,AR,BR,AR,VE,PE,VE,AR,GT,BR,EC,BR,AR,BR,VE,BR,AR,BR,MX,AR,MX,AR,BR,MX,BR,MX,BR,MX,BR,CL,MX,BR,MX,BR,AR,BR,AR,BR,MX,BR,AR,BR,MX,CL,BR,CO,_,CO,MX,BR,MX,BR,CO,CL,VE,BR,VE,AR,BR,HN,DO,BR,AR,BR,AR,CO,AR,BR,AR,PY,AR,EC,BR,VE,BR,MX,BR,MX,BR,AR,BR,AR,BR,AR,BR,CO,BR,DO,PY,AR,DO,BR,AR,BR,CL,BR,AR,BR,CL,BR,MX,CO,MX,CL,CO,AR,BR,CO,MX,BR,DO,BR,PY,PE,BR,MX,BR,CO,SV,BR,AR,BR,AR,BR,AR,CL,BR,CO,BR,EC,AR,BR,AR,BR,MX,AR,BR,PE,MX,BR,AR,PY,BR,AR,BR,AR,CO,AR,CO,BR,EC,BR,PY,AR,BR,CO,AR,MX,BR,AR,MX,BR,AR,BR,AR,BR,CL,BR,VE,BR,AR,BR,AR,PE,BR,AR,BR,AR,BR,VE,BR,AR,BR,AR,BR,AR,BR,AR,BR,EC,BR,PY,BR,CO,VE,BR,PY,SV,GT,BR,CO,BR,CO,BR,AR,PY,BR,MX,_,BR,PA,CO,CL,BR,CO,EC,BR,AR,BR,CL,BR,AR,BR,CO,BR,CO,BR,PY,BR,BZ,EC,BR,EC,BR,NL,AR,BR,AR,PY,BR,MX,BR,SV,MX,BR,SV,BR,MX,BR,MX,GT,AR,BR,PA,BR,_,IT,BR,HN,BR,CL,VE,AR,BR,CO,BR,AR,BR,CO,BR,CO,BR,VE,BR,AR,VE,BR,HN,BR,AR,BR,PE,BR,CO,BR,CR,BR,AR,BR,AR,CL,EC,BR,AR,PY,BR,VE,NI,AR,BR,AR,BR,AR,TR,PA,CO,BR,AR,BR,AR,BR,AE,BR,CO,PA,VE,PE,BR,AR,BR,PY,BR,EC,BR,PE,BR,EC,BR,AR,BR,AR,BR,MX,CL,BR,BO,BR,CO,BR,GT,BR,CO,BR,AR,BR,CL,BR,HN,BR,SV,EC,VE,AR,PY,BR,AR,BR,MX,BR,DO,BR,AR,PY,BR,EC,AR,BR,VE,BR,VE,TT,BR,GT,CO,BR,CR,BR,US,BR,PA,CR,PA,BR,VE,BR,EC,BR,VE,PE,AR,BR,AR,BR,AR,BR,MX,BR,EC,BR,DO,BR,AR,BR,AR,BR,GT,SV,BR,AR,MX,AR,BR,AR,EC,BR,VE,CL,US,BR,VE,AR,VE,BR,PE,EC,VE,BR,AR,BR,MX,CO,BR,AR,BR,AR,VE,BR,AR,BR,MX,BR,AR,SV,BR,AR,BR,GT,BR,AR,BR,MX,BR,EC,GT,BR,MX,BR,MX,BR,MX,BR,MX,CR,BR,MX,BR,AR,BR,AR,MX,BR,AR,BR,AR,BR,AR,CO,AR,CR,BR,EC,BR,EC,BR,PA,BR,VE,BR,EC,MX,BR,AR,BR,PE,EC,PE,CO,BR,MX,BR,AR,BR,AR,PE,AR,BR,AR,BR,AR,VE,CO,MX,BR,MX,BR,HN,BR,AR,CL,BR,US,BR,MX,BR,VE,CO,MX,BR,PY,BR,VE,BR,AR,VE,PE,BR,MX,HN,PY,DO,MX,BR,MX,BR,CL,AR,CO,AR,BR,CO,CL,MX,AR,BR,CO,BR,AR,PY,BR,PE,CL,BR,AR,BR,AR,BR,US,BR,AR,BR,AR,PE,BR,AR,BR,CO,BR,GT,BR,HK,ZA,US,MX,LK,ZA,KG,SG,ID,RO,NO,PL,NO,SE,IT,SE,IT,PL,IT,CH,SE,HU,RS,HK,JP,HK,PH,SG,HK,SG,HK,ID,IQ,MY,US,DO,PE,US,SG,TW,JP,TW,JP,US,HK,US,GB,HK,KR,US,HK,SG,HK,SG,HK,TW,DE,AU,HK,TH,MX,HK,ID,ZA,NG,CN,KE,GB,VE,GB,PA,HK,TR,US,PH,HK,MY,AU,US,HK,SG,EC,TH,MY,KH,HK,KR,HK,IN,MY,TR,JP,MD,GB,MM,DE,US,HK,PE,HK,FR,IL,US,AU,HK,SG,HK,SV,HK,TH,VN,HK,US,NL,HK,SV,ZA,TR,HK,SG,KR,US,ID,NL,HK,GT,IN,US,HK,US,PH,US,KR,US,HK,US,MY,SG,ID,MX,US,HK,US,HK,SG,HK,US,HK,BR,HK,CY,HK,TW,HK,TW,HK,TW,HK,KR,US,ID,HK,JP,HK,NL,AU,BR,NL,US,NL,BR,NL,BR,US,NL,MX,US,HK,NL,SG,US,HK,PE,ES,US,CL,US,HK,PH,BE,LR,MM,HK,CN,US,TW,MY,US,PK,US,DE,US,HK,SG,ID,HK,PH,ID,SG,HK,JP,HK,SG,HK,TH,JP,MY,SG,TR,JP,HK,MY,US,HK,GH,JP,ES,HK,TH,ID,VE,HK,US,HK,TH,KH,US,HK,US,HK,US,HK,PH,US,HK,SG,US,TH,MX,US,ID,MY,HK,US,DE,HK,ID,MY,HK,MY,PH,HK,ID,KR,BD,KR,HK,JP,HK,SG,HK,US,HK,US,HK,AU,HK,US,HK,US,TW,US,TW,GB,HK,DO,GB,PE,HK,DZ,HK,MY,HK,US,HK,JP,HK,PG,HK,SG,HK,SG,HK,KG,SK,BR,HK,PH,US,SG,HK,US,GH,ZM,MA,ZA,MU,TZ,ZA,MU,GN,ZA,MU,ZA,MU,CD,UG,ZA,MU,GH,MW,ZA,CI,MU,ZA,NG,ZA,UG,ZA,HK,ZA,TZ,ZA,BJ,ZA,GH,ZA,NG,ZA,GH,US,GB,US,BE,US,MX,US,BE,US,MX,BE,GB,US,IL,US,MX,GB,US,ES,DE,US,IT,TH,US,BE,US,BE,US,MX,US,NL,BE,NL,US,BE,US,BE,US,MX,BE,US,BE,US,MX,BE,GB,US,MX,BE,GB,BE,US,BE,US,MX,GB,BE,GB,BE,US,IL,US,FR,IL,US,BE,US,BR,US,CA,US,BE,FR,BE,US,FR,US,TH,US,VN,GB,US,BR,AR,BR,EC,BR,AR,BR,AR,BR,EC,AR,BR,EC,BR,AR,BR,AR,PE,EC,AR,BR,AR,BR,CO,BR,AR,BR,CR,AR,BR,US,HN,US,BR,US,AR,BR,AR,BR,AR,BZ,CL,EC,BR,AR,PA,BR,PA,BO,BR,EC,CL,AR,BR,EC,BR,CL,AR,PA,BR,AR,BR,CL,BR,CL,BR,AR,CO,BR,DO,BR,AR,BR,AR,BO,BR,AR,HN,BR,CR,PE,BR,AR,BR,CO,BR,AR,BR,CL,AR,GT,PY,AR,CO,BR,EC,BR,AR,BR,CO,BR,AR,PE,BR,AR,BR,_,BR,CL,BR,CL,BR,AR,BR,PA,BR,AR,BR,AR,CL,BR,AR,BR,AR,BR,AR,CL,BR,AR,CR,BR,AR,BR,AR,_,BR,AR,BR,HN,PA,BZ,PA,BR,AR,BR,MX,BR,EC,AR,PY,UY,CO,AR,MX,AR,BR,PY,BR,AR,BZ,BR,EC,AR,EC,BR,AR,BR,AR,EC,BR,CL,BR,AR,BR,GT,BR,EC,BR,AR,BR,AR,DO,AR,GT,AR,EC,BR,PA,AR,BR,CO,AR,BR,AR,EC,BR,GT,BR,CL,BR,DO,BR,CR,BR,PY,BR,AR,BR,CL,CO,BR,BO,PA,BR,AR,BR,BO,CR,CL,AR,CR,BR,AR,ES,BR,AR,CL,BR,CO,AR,CL,BR,VE,CL,BR,AR,BR,AR,BR,AR,BR,VE,BR,MX,BR,VE,MX,BR,PE,BR,AR,BR,DO,BR,EC,BR,PE,BR,PE,BR,MX,CL,CR,BR,PE,BR,PE,BR,DO,MX,BR,EC,BR,AR,BR,MX,BR,CO,BR,US,BR,AR,MX,AR,BR,AR,BR,AR,BR,AR,BR,CL,BR,BO,BR,CL,AR,BR,PE,BR,CR,CL,BR,AR,PE,AR,BR,AR,BR,DO,CL,BR,PE,BR,AR,CL,BR,MX,BR,CO,BR,GT,AR,CO,BR,EC,BR,EC,BR,MX,BR,AR,CL,BR,CO,BR,AR,BR,AR,BR,VE,BR,PY,AR,BZ,BR,CW,AR,BR,CL,AR,BR,TT,BR,AR,BR,AR,BR,CL,AR,HN,BR,EC,BR,CL,CO,BR,AR,BR,AR,BR,PY,BR,MX,BR,EC,BR,MX,BR,EC,BR,AR,BR,PA,DO,BR,MX,BR,AR,VE,AR,BR,AR,PE,BR,AR,BR,CL,AR,BR,AR,EC,BR,VE,BR,CL,BR,EC,BR,EC,BR,CL,EC,PE,CL,BR,CL,BR,BO,BR,PE,AR,BR,PY,BR,AR,BR,PY,DO,AR,BR,US,TT,BR,CL,BR,US,PE,AR,BR,PA,BR,AR,BR,AR,CL,BR,NI,BR,PY,BR,AR,EC,CL,BR,AR,BR,HN,CO,BR,CL,US,BR,CL,BR,CL,CO,BR,MX,AR,CO,BR,AR,EC,AR,BR,AR,BR,MX,BR,PE,BR,CL,AR,BR,PY,EC,BR,AR,CR,MX,BR,MX,BR,AR,CO,AR,CL,BR,AR,BR,CO,CL,BR,AR,CO,AR,CL,AR,BR,EC,BR,CL,BR,CL,BR,EG,IN,CN,IN,MY,IN,SG,AU,US,MY,AU,US,IN,HK,KR,AU,CN,IN,CN,_,IN,CA,CN,IN,AU,GB,BD,IN,_,IN,_,IN,AU,IN,KR,IN,CN,PK,CN,IN,SG,IN,US,IN,_,KR,IN,HK,JP,US,HK,SG,BD,SG,IN,CN,AU,IN,_,IN,_,IN,KR,IN,_,BD,CN,ID,IN,ID,PH,IN,_,IN,HK,IN,US,CN,BD,US,GB,CN,IN,US,GB,IN,US,CN,ID,CN,PH,AU,SG,US,CN,IN,US,TH,CN,HK,MM,KR,IN,KR,IN,BD,IN,KH,MM,IN,CL,US,JP,CN,ID,CN,IN,CN,PH,IN,US,IN,CN,BD,FR,HK,JP,IN,ID,IN,CN,HK,VN,IN,CN,BD,JP,HK,JP,DE,US,CN,BD,IN,JP,HK,IN,_,IN,CN,TH,SG,HK,TH,IN,US,CN,NL,AU,JP,AU,IN,NZ,CN,ES,VN,AU,CN,PH,CN,NZ,AU,US,CN,HK,TH,HK,CN,HK,CN,HK,CN,VN,SG,CN,_,CN,_,CN,US,CN,KR,JP,NZ,HK,CN,JP,MY,HK,US,NL,MY,RU,CN,MY,RU,TR,RU,US,RU,US,GB,US,RU,US,HK,US,RU,US,RU,US,HK,US,RU,US,RU,US,RU,DE,RU,HK,RU,DE,ES,IE,RU,CZ,RU,CZ,RU,KG,KZ,RU,UA,RU,KZ,RU,UA,UZ,RU,GE,RU,CZ,KZ,RU,UA,RU,ID,HK,KR,JP,RU,KZ,RU,JP,KR,PH,JP,DE,RU,KZ,GB,RU,ES,HK,NL,BY,RU,BY,NL,US,RU,TR,JP,HK,US,HK,IN,ES,RU,KZ,RU,KZ,RU,NO,BG,MT,GR,CZ,CH,NO,GB,RU,US,RU,GL,RU,BR,RU,KZ,FR,RU,DE,ES,FR,NO,ES,RU,DE,GB,IT,RU,RS,EE,CZ,LT,RU,LV,ES,CY,KZ,CH,GB,US,GB,IT,RU,NL,BG,CH,FR,GB,DE,RU,SE,BE,NL,US,NL,NO,NL,IE,RU,GB,FR,LB,FR,GB,NL,RU,FI,US,DE,PL,RS,TR,ES,RS,IT,GB,SE,SG,LT,GB,SE,FI,RU,GB,SE,RS,AT,ZW,GB,UA,DE,RU,KZ,RU,KZ,UA,GB,PS,IT,BE,ES,GB,DE,AZ,ES,US,GB,FR,AE,TR,UA,NL,RO,IQ,DE,LI,GB,FR,IT,SK,GB,SA,GB,DE,FR,RU,FR,GB,FR,IT,DE,IR,BE,SI,NO,FR,NL,KZ,IT,DE,RU,NL,UA,KZ,AE,IL,DE,AM,FR,RU,FR,CH,LV,DE,GB,HK,BE,SG,NL,FR,RU,LB,LV,US,DE,IL,US,SG,HK,NL,RS,IT,GB,DK,TR,AT,DE,PL,RU,IT,GR,SI,GR,GB,DE,GR,FR,GR,GB,GR,GB,US,GB,RO,TR,FR,RU,TJ,PS,FR,US,GB,NL,CH,NL,CH,NL,CH,NL,DE,CH,DK,CY,RU,IR,SE,NL,SE,FR,DE,FR,ES,FR,US,NL,US,NL,US,NL,IT,FR,PL,NL,RU,NL,IQ,RU,DE,CH,DE,RU,BE,ZA,BG,OM,BE,FI,AU,NL,AU,BE,DE,BE,FR,IS,SE,IE,RS,GB,DE,PL,NL,FR,EE,US,EE,US,EE,US,EE,AZ,RU,SI,DE,LV,CZ,GB,NL,GP,AZ,GP,IN,SC,MY,SC,IN,UA,JO,CZ,RU,FI,RU,IT,DE,GB,BE,FR,BE,DE,GB,BE,DE,BE,FR,DE,FR,DE,FR,DE,FR,ES,IT,PL,IT,RU,IT,DE,US,IN,GB,LV,UA,IR,DE,RU,BY,CZ,DE,IT,RU,PS,SE,IS,ES,FR,CY,DE,UA,CH,ES,HU,RU,TR,NL,TR,GB,AZ,TR,PL,US,PL,US,PL,GB,SK,CZ,RU,PL,NL,EC,VE,HN,ES,AT,DE,ES,GB,DE,RU,SA,GB,DE,IT,RU,FR,UA,HU,PL,RU,MK,LU,CZ,RU,IT,RU,NO,CZ,RU,LT,DK,NL,NO,NL,SE,DE,GB,ES,DE,RU,NL,GB,DE,CZ,DE,CZ,GB,ES,DE,DK,FI,GB,CZ,RU,UA,IT,TR,FR,NL,DE,NL,DE,FR,DK,IT,IQ,CZ,IT,RU,NL,DK,RU,PL,FR,NL,ES,DE,ES,US,RU,US,SA,AE,GB,DE,TR,GB,BE,IL,IT,TR,DE,IT,HR,TR,RU,FR,NL,FR,GB,HU,NO,NL,BE,FR,IM,FR,DE,GB,GG,IT,IR,DK,RU,JO,DK,AZ,SC,RU,LV,AZ,PS,GB,UA,DE,GB,DE,FR,DE,PL,DE,FR,DE,FR,PL,DE,FR,CZ,GB,FR,ME,UA,GB,ES,US,ES,TR,ES,NL,HR,ES,NL,ES,DE,ES,US,GB,ES,US,ES,TR,ES,NL,ES,NL,ES,NL,ES,NL,ES,TR,BE,ES,IR,RU,KZ,RU,KZ,RU,IR,KZ,SK,FR,DE,YE,ES,BA,BG,HU,UA,RU,CZ,LT,IR,AM,KZ,BA,GB,LT,CH,GB,DK,EE,PL,IT,GB,ES,US,IN,US,TR,US,DE,US,GB,US,TR,DE,TR,US,GB,DE,PH,TR,US,TR,DE,US,ES,PT,ES,GB,TR,GB,HK,RU,GB,UA,IT,RU,SA,RU,IR,RU,IR,TR,IR,IN,IR,GB,NL,DE,RU,UA,SE,EE,CZ,ES,RU,RS,BG,SY,OM,DE,RU,PL,IR,RU,BH,RU,KZ,GB,PS,GB,RU,SA,NL,IT,RU,PL,TR,RU,UA,RU,NO,RU,BG,CZ,RU,GE,SA,PT,RU,IR,IE,US,IE,SG,JP,SA,RU,SY,BY,MT,SI,MD,BG,BY,AT,SY,FI,CH,FI,US,FI,SY,SE,DE,PS,GB,RU,FI,UA,RU,GB,NO,GB,AM,RU,AT,PL,DE,UA,RO,UA,RS,IR,GB,DE,GB,DE,RO,IT,US,PL,US,DE,ES,NL,GB,NL,IM,RO,IT,GB,FR,IR,RO,NL,CH,AU,IE,GB,AT,GB,ES,RO,GB,FR,IT,NL,RO,ES,CA,GB,IE,US,IR,IT,ES,RO,GB,NL,US,RO,TR,CH,NL,GB,RO,HK,GB,RO,GR,TR,FR,DE,FR,TR,HU,RO,HU,DE,LV,US,RU,PL,DE,IL,UA,IL,SI,AT,CH,DE,NL,AM,EE,FI,UA,PL,CZ,ES,IE,SG,RU,HU,CH,IT,DE,NL,DE,IR,SA,GB,IR,GB,IR,GB,NL,RU,PL,UA,IR,RU,PL,RU,UA,PL,UA,PL,UA,NL,UA,NL,PL,RU,PL,RU,SA,US,RU,UA,RU,NL,UA,IQ,IT,ES,RU,FI,RU,IT,GB,DE,ES,FR,IT,DE,RU,GB,CZ,BR,EG,IE,BD,VN,NZ,SA,VN,US,KG,TJ,PL,ES,RU,IT,RU,UA,RU,UA,HK,PL,RU,GB,UA,SI,UA,RU,SK,RU,PL,NL,US,HK,NL,ZA,US,UA,RU,UA,RU,UA,RU,SK,UA,PL,UA,RU,BE,RU,PL,RS,HR,PL,UA,RU,DE,RU,ES,HK,FI,PL,SG,ZA,BR,US,SK,US,AT,SA,PL,GB,SI,RU,UA,SA,TR,NO,RU,UA,RU,IT,RU,GB,RU,GB,NL,BG,RU,MD,PL,RU,AU,IL,IN,JP,NL,DE,UA,BY,ME,RU,IQ,SY,NL,GB,NL,YE,RU,US,RU,US,RU,SE,FR,AM,HR,SI,BA,SI,HR,BA,DE,SI,HR,RS,BA,FR,DE,FR,DE,RU,FI,SI,IR,UA,RU,FR,DE,MD,RU,NL,LT,NL,RU,DE,RU,IR,DE,CZ,US,PL,RU,UA,RU,UA,RU,UA,AD,RU,UA,RU,CZ,RU,FI,US,DE,FR,PL,RU,CZ,PL,CZ,RU,CZ,UA,PL,RU,RS,KZ,RU,UA,NL,HR,US,CZ,RO,CZ,UA,PL,UA,RU,RO,PL,UA,PL,UA,RU,SK,CH,RU,GB,PL,UA,RU,PL,GB,DE,UA,CZ,RU,PL,RU,ES,NL,US,NL,RU,DE,GE,GB,UA,NL,IN,AD,UA,BY,CZ,UA,RU,PL,UA,GR,BE,RU,CH,FR,IE,DE,RU,IR,US,IR,FR,BY,GB,TR,FR,UA,IT,PL,NL,FI,NL,RU,DE,IT,FI,TR,AM,NL,IS,BE,SE,FR,NL,SI,IT,DE,RU,GB,GR,NL,US,SE,US,PA,SE,AE,FR,DE,FR,CZ,FI,US,FI,RU,IL,SA,AE,SA,DE,NL,IE,ES,AL,RU,DK,US,NL,DE,IT,DE,NL,US,DE,RU,NO,RU,HR,MK,HU,BE,AT,GB,PL,LV,FR,IT,NL,SA,BH,UA,JO,PL,KW,RU,PL,RU,HR,DE,PT,GR,IT,ES,US,GB,SG,AU,HK,DE,GB,US,GB,BY,RU,FR,GB,FR,GB,FR,SE,TR,CY,GR,CY,UA,PL,AT,GB,IR,IL,UA,NO,SY,RO,US,BY,MK,FR,UA,AT,TR,ES,DE,IR,GB,NO,CZ,NO,ES,GB,BE,NL,RU,GB,DE,NL,RU,FR,LU,DE,GB,TR,RU,KZ,NL,GB,NL,DE,FR,EE,ES,SE,BE,NL,SE,GB,HK,FR,GB,IT,IM,GR,IT,KG,GB,NL,GB,RU,NL,RU,GB,IT,CZ,FR,RU,PL,GB,GR,SE,FR,DE,PL,FO,UZ,DE,UA,GB,NO,RU,GB,RU,CZ,SK,KZ,NO,GB,RU,DE,CH,NL,PL,LB,RU,CZ,GB,IE,GB,IE,GB,IE,GB,IE,NO,RU,PL,RU,FI,GB,FI,IL,DE,IT,GB,AZ,DE,SK,PL,IT,DE,UA,RU,IT,RU,CZ,RU,PL,US,RU,BG,RU,SK,NL,GB,NL,GB,BG,GB,HR,NL,BA,RO,NL,SE,SA,NO,SE,ES,GB,NL,IT,NL,DE,ES,PL,GB,CZ,NL,DE,SK,NL,GB,ES,FR,DE,FR,PL,GB,RU,DE,BE,US,DE,GB,DE,CH,RU,FR,UA,DE,FR,NL,US,HK,JP,HK,RU,US,HK,US,PL,IT,BG,RU,ES,CH,CA,DE,GB,RU,US,NL,PL,RU,DE,UA,RU,DE,NL,BG,US,BG,PA,US,BG,GB,IE,GB,FR,AT,ES,PT,GB,IT,GB,IT,RU,TR,CH,HR,CZ,SK,CZ,ES,CZ,IT,GB,TR,FR,DE,GB,DE,GB,DE,JP,HK,JP,HK,NL,RU,CH,RU,KZ,IR,RU,KZ,SA,RS,CH,PL,HU,DK,IE,FR,DE,PL,GG,IT,CH,GB,FR,GB,BE,MT,US,TR,IT,RU,GB,FR,RU,DE,BH,RU,GB,NL,SE,DE,RU,GB,DE,GB,SE,RU,DE,RU,BG,GB,DE,BG,PL,GP,PL,BA,SE,PL,IS,SA,RS,RU,AM,RU,PL,GB,RU,IQ,NL,IT,NL,CZ,GB,CZ,DE,FR,RU,SK,DE,NL,CH,AT,RO,DE,IE,GB,MT,NL,RU,IL,OM,NL,BH,GL,NL,PL,US,RU,BY,RU,BY,RU,NL,GB,RU,DE,NL,RU,GB,AM,UA,RU,PL,NL,RS,MT,IL,NL,GB,NL,RU,CY,US,CA,RU,DE,RU,DE,NL,CA,RU,NL,US,NL,HK,RU,NL,IE,NL,GB,NL,PS,DE,PL,US,NL,IT,NL,FR,US,NL,BE,DE,IR,RU,GR,CH,SE,TR,RU,DE,CH,PL,AT,IE,DE,FR,_,US,CA,GB,SE,FI,SE,FI,SE,NL,DK,SE,NO,SE,DE,SE,DK,SE,NL,SE,NO,SE,GR,GB,US,UA,GB,FR,DE,IT,FR,GB,US,FR,AT,FR,GB,BE,IT,BE,US,SG,IN,ES,HK,AU,CN,AR,CA,RU,IR,SI,GB,US,PL,JO,GB,RU,NL,BG,AU,CH,DE,NL,TW,RO,DE,US,AU,IR,HU,LT,GB,NO,UA,RU,UA,RU,MX,NO,GB,HU,RS,HU,LT,RU,CY,SA,ES,KG,IR,DE,IR,DE,BE,DE,SG,GB,DE,BR,IR,DE,JP,DE,ES,DE,ES,SE,DE,SE,GB,NO,SE,DE,FR,DE,FR,DE,FR,AL,BG,GB,DE,TR,RU,DE,IT,RU,FR,LU,NL,FR,LU,DE,NL,DE,UA,CZ,RU,BG,DE,GB,ES,DE,PS,CZ,DE,SK,DE,RU,GB,US,RU,DE,BG,US,NL,ES,UA,DE,PL,RU,DE,BE,CH,SE,PL,ES,DE,SI,SE,RU,IT,TR,SI,CZ,PL,RU,US,ID,RU,FI,ES,BR,US,UA,US,RU,UZ,GB,DE,BG,DE,SI,IT,RU,NL,IT,GB,FI,RU,FR,IT,RU,JE,GB,CZ,NO,_,LV,US,FR,OM,DE,OM,UZ,GB,IT,NL,RU,NL,GB,CY,US,GB,CY,FR,RU,AL,IE,FR,CH,FR,NO,ES,NO,FI,FR,LT,IR,CZ,KZ,IT,GB,US,IN,US,IN,US,IN,US,IN,US,GB,US,GB,US,HK,IT,CA,HK,ES,DE,NZ,DE,JP,AU,SG,HK,CA,US,HK,CA,US,ID,SG,HK,JP,SG,HK,US,SG,HK,TW,US,JP,US,CN,HK,SG,US,DE,GB,US,MY,IN,US,HK,US,SG,ID,US,JP,HK,AE,US,VN,PH,GB,US,GB,US,IN,ID,TH,VN,HK,US,GB,US,HK,US,JP,AU,DE,AE,HK,CN,SG,US,ID,HK,CN,ID,VN,ID,VN,FR,SG,US,HK,DE,FR,VN,HK,CN,US,CN,HK,SG,KR,HK,US,SG,HK,SG,CN,SG,CN,US,HK,US,CN,SG,CN,SG,CN,SG,CN,HK,SG,CN,SG,CN,SG,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,SG,HK,US,HK,US,HK,SG,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,SG,HK,US,HK,US,HK,US,HK,US,SG,US,HK,US,HK,US,HK,US,HK,US,HK,US,SG,US,HK,US,HK,SG,US,SG,US,HK,US,HK,US,HK,US,HK,SG,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,SG,US,HK,SG,US,HK,US,HK,US,HK,SG,US,SG,US,HK,US,HK,US,HK,US,HK,US,HK,SG,HK,US,CN,US,CN,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,CN,US,HK,US,HK,US,HK,US,HK,US,HK,US,CN,US,CN,US,HK,US,HK,US,HK,US,HK,US,HK,US,CN,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,CN,US,HK,JP,SG,DE,PH,SG,RU,JP,US,VN,TH,MY,ID,US,HK,US,MY,OM,KR,KW,MY,HK,TW,SG,US,AU,DE,SE,ES,IT,GB,NL,FR,US,IN,US,TH,SG,KR,HK,SG,HK,US,VN,PH,TH,SG,CN,SG,CN,HK,SG,US,CA,SG,GB,DE,HK,GB,US,HK,US,CN,US,HK,SG,US,HK,US,DE,US,MY,AU,GB,RU,JP,HK,US,HK,US,RU,US,GB,HK,DE,FR,IN,MY,GB,US,CN,SG,HK,SG,ID,SG,US,CN,US,RU,DE,SE,DE,ID,GB,ID,US,IN,US,MY,US,AU,US,DE,MY,US,GB,US,ID,BD,AU,JP,ID,NZ,BD,SG,JP,HK,AU,IN,US,TH,MN,MY,MN,TH,SG,HK,KR,AU,CN,JP,CN,JP,CN,KR,DE,IN,KR,IN,TH,KR,ID,JP,ID,MY,KR,IN,KR,NZ,TH,MY,NZ,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,CN,KR,CN,JP,CN,MY,NP,AU,CN,BD,CN,SG,AU,JP,SG,HK,JP,GU,IN,TW,JP,IN,ID,KR,AU,JP,HK,JP,IN,CN,KR,AU,NZ,HK,SG,_,JP,_,IN,PH,CN,KH,JP,AU,ID,AU,KH,NU,VN,ID,IN,JP,PH,TW,KR,AU,IN,CN,JP,HK,SG,MY,HK,_,VN,TW,CN,NZ,TH,CN,IT,KR,MY,VN,NP,ID,JP,AU,TH,JP,IN,KR,CN,JP,KR,CN,JP,NP,SG,KR,VN,HK,KR,IN,JP,KR,AU,NZ,AU,NZ,AU,NZ,AU,NZ,AU,US,DE,US,AE,US,PL,US,BR,IE,PL,US,JP,US,HK,US,NL,US,DE,ES,FR,BR,AT,SE,CH,PT,FI,BG,CO,US,FI,US,IE,US,HK,SG,JP,GB,DE,US,ES,US,DE,US,DE,JP,US,NL,US,NL,US,UA,HK,SG,NL,US,CA,US,PF,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,CA,US,JP,US,JP,US,NL,ES,NL,US,GB,US,JP,US,BE,DE,US,BE,US,BE,US,BE,US,BE,US,DE,US,BE,US,BE,US,BE,US,DE,US,DE,FR,US,BE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,FR,US,BE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,BE,US,BE,US,CA,US,SA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IE,US,CA,US,HK,US,HK,IN,US,JP,US,TR,US,IE,US,KH,US,BR,TR,US,BR,US,HK,US,PH,SG,US,HK,ID,BR,US,IE,US,IT,ID,US,IE,US,IL,US,IE,US,HK,US,CH,US,CH,ES,US,ES,US,ES,TR,ES,PL,US,GB,TH,US,DE,FR,SG,IN,US,IN,US,IN,US,PH,TW,SG,US,GB,US,DE,US,DE,US,CA,US,IT,US,FR,US,GB,US,CA,US,CA,US,IT,US,NL,US,IE,US,IT,US,SA,US,DE,US,DE,AE,FR,DE,GB,US,IL,DE,GB,US,DE,GB,US,IN,US,GB,US,GB,CA,GB,FR,SE,GB,SE,NO,GB,NL,FR,IL,DE,GB,SE,DE,GB,DE,GB,CH,SA,IE,FR,GB,FR,GB,FR,GB,FR,GB,FR,DE,FR,DE,FR,DE,FR,DE,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,SA,DE,GB,FR,DE,GB,TW,KR,GB,DE,GB,FR,PL,FR,PL,FR,PL,DE,FR,DE,FR,DE,FR,DE,GB,FR,US,DE,GB,DE,US,FR,PL,FR,PL,FR,PL,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,GB,FR,US,FR,DE,FR,PL,FR,PL,FR,PL,FR,PL,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,US,CA,SG,US,FR,DE,FR,GB,FR,DE,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,IL,US,DE,GB,US,FR,DE,FR,GB,FR,GB,FR,GB,FR,ES,CH,US,IT,US,FR,CH,GB,CH,GB,IE,GB,FR,NL,GB,CH,SE,CH,NO,CH,DE,GB,DE,GB,AE,US,GB,DE,US,IT,NO,US,DE,NL,US,GB,DE,US,GB,US,GB,US,GB,NL,GB,NL,FR,GB,IE,FR,IE,GB,US,GB,US,GB,US,GB,NL,GB,NL,GB,DE,CH,GB,DE,FR,NL,FR,NL,US,CA,AU,GB,JP,GB,HK,JP,SG,JP,SG,JP,IN,DE,FR,IN,JP,HK,JP,HK,SG,MY,SG,IN,NL,CH,BG,GB,DE,FR,SE,ES,PT,DE,NL,TR,FR,IT,GB,DE,GB,DE,GB,DE,NL,US,DE,US,GB,IE,US,NO,US,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,IT,GB,US,GB,US,GB,US,GB,US,GB,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,US,GB,IE,GB,US,DE,US,DE,US,FR,DE,FR,DE,PL,FR,DE,FR,DE,FR,SA,US,DE,US,SA,GB,US,CA,GB,CA,SA,DE,US,GB,US,GB,SA,US,GB,US,GB,US,GB,US,RU,GB,SA,FR,GB,FR,GB,FR,GB,FR,DE,FR,GB,FR,GB,FR,DE,FR,GB,FR,GB,FR,US,IE,US,DE,IE,US,IE,US,DE,AT,US,DE,US,CH,US,FR,US,IT,JP,US,MY,ZA,US,DE,US,GB,US,FI,IN,GB,US,ZA,SE,US,BR,ES,US,JP,IN,JP,US,SE,KR,JP,AE,BG,TW,AU,US,JP,TW,JP,FR,US,BR,US,DE,US,SE,US,SE,US,IE,US,FR,IE,US,GB,DE,CA,US,AU,IN,BR,JP,US,SG,US,SG,KR,CN,US,IN,US,IE,DE,US,AR,US,IT,FR,IN,FR,DE,US,ES,US,FR,BR,US,KR,DE,GB,KE,HU,BG,US,BR,NL,GB,BG,US,IT,IE,US,BR,US,KR,US,FR,US,FR,US,FR,US,FR,PL,TW,AU,FR,US,FR,IE,IT,IE,SG,US,ID,IN,US,IN,US,TW,SG,KR,FR,ZA,FR,BG,FR,IT,SE,FR,IT,ZA,US,DE,FR,US,ZA,US,ZA,IN,ZA,US,FI,ZA,ID,ZA,US,SE,US,IT,GB,US,DE,IT,CA,HU,BG,GB,CA,FR,FI,IN,GB,HU,IN,US,GB,US,GR,US,GB,KE,HU,DE,NL,FR,FI,DE,ZA,ES,US,KE,GB,US,BR,ZA,GR,US,IN,KR,IN,FR,IN,FR,SE,US,NL,US,ZA,US,IE,US,IE,US,IE,US,CA,IE,SG,US,IE,SG,US,IE,US,DE,US,HK,IE,US,IE,US,IE,BR,IE,US,IE,US,GB,ZA,IE,US,SG,US,JP,BR,IN,BH,US,JP,US,CA,US,AU,IN,GB,IE,SG,US,IE,US,JP,IE,US,IN,IE,US,DE,IE,US,IN,US,JP,KR,GB,IN,US,SE,BR,US,IN,US,JP,BR,US,HK,US,BH,US,IE,US,DE,JP,US,KR,US,JP,US,GB,US,IE,KR,BR,JP,US,SG,US,AU,CA,GB,FR,DE,IT,JP,IN,US,SE,IE,US,ZA,US,GB,CA,US,DE,US,CA,GB,US,DE,US,DE,US,BR,US,GB,US,IE,US,JP,US,DE,BR,US,IE,US,JP,US,JP,SG,AU,US,JP,IE,US,IN,US,IE,US,KR,IE,AU,ES,CH,GB,CA,GB,IT,FR,JP,HK,BR,AU,SE,BH,ZA,ID,ZA,JP,IN,AE,CA,GB,KR,US,SG,US,IT,JP,HK,SE,BH,ZA,US,ID,US,GB,BR,AU,SG,JP,IE,US,DE,IN,CA,US,KR,GB,FR,US,CA,US,CA,US,KR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,BR,CL,BR,CL,BR,CL,BR,CL,BR,CL,BR,CL,BR,CL,BR,CL,FR,US,JP,GB,DE,AU,FR,BR,US,BR,US,BR,US,BR,US,BR,ZA,GB,CH,US,CA,MY,DE,AU,SE,IN,SE,KR,AT,US,AT,GB,FI,GB,SE,NL,IE,NL,IE,AT,NL,IE,GB,NL,IE,NL,FR,NL,IE,AT,IE,NL,AT,IE,NL,IE,GB,AT,IE,NL,AT,NL,IE,NL,IE,NL,IE,NL,AT,IE,NL,AT,CH,IE,FR,DE,FR,NL,IE,NL,IE,NL,IE,FR,NL,GB,NL,FR,GB,FR,IE,FR,NL,IE,NL,IE,GB,NO,GB,NO,NL,IE,NL,FR,IE,GB,AT,IE,NL,GB,AT,IE,NL,CH,GB,FR,IE,AU,ZA,US,AE,SG,IN,SG,MY,KR,JP,SG,JP,SG,JP,KR,JP,SG,KR,MY,JP,SG,IN,JP,IN,JP,SG,JP,KR,JP,SG,JP,AU,JP,HK,JP,SG,JP,IN,JP,SG,JP,AE,HK,SG,HK,SG,JP,IN,JP,SG,MY,SG,JP,SG,AE,JP,SG,JP,IN,KR,MY,JP,IN,AU,NL,NO,GB,FR,SE,NL,SE,IE,GB,IE,NL,FR,DE,GB,FR,NL,IE,GB,IE,NL,GB,NL,IE,DE,SE,IE,SE,FR,US,GB,SG,AT,IN,IE,FR,SE,GB,FR,GB,DE,GB,SE,NL,GB,IE,SE,NL,IE,SE,NL,FR,IE,NL,IE,FR,IE,FR,NL,FR,IE,FR,NL,DE,AT,IE,FR,IE,FR,IE,SE,IT,DE,FR,IT,IE,SE,AT,IE,ES,AT,DE,IE,FR,US,KR,CH,DE,FI,IE,AT,NL,FI,AT,NL,IE,NL,IE,AT,IE,FI,AT,IE,US,PL,US,PL,US,KR,US,KR,US,CA,US,IT,US,SG,US,NL,AT,FR,GB,ZA,HK,KR,SG,AU,IN,JP,KR,SG,AE,NL,IE,AU,HK,AT,NL,IE,NO,NL,AT,IE,AU,US,BR,JP,MY,JP,IN,SG,CA,JP,US,SE,GB,QA,IT,IL,ES,MX,US,IE,NL,SE,IE,US,GB,ES,GB,IT,US,TW,JP,HK,SG,JP,IN,AE,IN,AE,AU,KR,JP,US,AE,ZA,FR,DE,IL,IT,NO,PL,QA,CH,CA,US,GB,BR,US,AE,IN,JP,TW,US,NL,US,JP,CA,US,IE,US,NL,CA,NL,IE,QA,IE,AT,IE,NL,MX,US,TW,NZ,US,CA,US,BR,US,IE,NL,SE,GB,ES,GB,FR,TW,JP,ZA,FR,DE,IL,NO,PL,QA,CH,IT,US,HK,SG,JP,IN,AE,AU,KR,US,CA,US,BR,US,IE,NL,SE,ES,GB,FR,TW,JP,ZA,FR,DE,IL,NO,PL,QA,CH,IT,US,HK,SG,JP,IN,AE,AU,KR,US,CA,US,CA,US,BR,US,IE,NL,SE,ES,GB,FR,TW,JP,ZA,FR,DE,IL,NO,PL,QA,CH,IT,US,HK,SG,JP,IN,AE,AU,KR,US,CH,MX,US,CA,MX,US,GB,US,IE,US,NO,US,CA,US,BR,US,CA,US,CA,BR,US,CA,KR,CA,US,IN,US,CA,US,IN,US,BR,US,BR,US,BR,US,CA,US,SE,FR,JP,NZ,US,NL,IE,NL,IE,CH,NL,IE,ZA,IE,DE,NL,IE,GB,NL,NO,GB,NL,BR,NL,GB,NL,IE,GB,IE,NL,GB,NO,SE,NL,IE,NL,FR,GB,FR,GB,DE,IE,NL,US,DE,IE,NL,IE,NL,DE,NL,IE,DE,NL,GB,NL,IE,NZ,CH,GB,IE,GB,IE,NL,CH,IE,NL,NO,IE,NL,ZA,PL,IE,NL,IE,GB,IT,IE,NL,FR,DE,ES,FR,SE,FR,SE,AT,FR,JP,IN,SG,AE,JP,IN,HK,SG,AU,KR,AU,JP,HK,IN,JP,SG,JP,AU,JP,AU,JP,SG,AU,SG,JP,IN,AU,IN,AU,JP,SG,JP,IN,SG,JP,QA,IL,TW,AE,US,JP,DE,JP,US,FR,US,IN,US,JP,US,AU,US,NL,IE,GB,DE,BR,US,SG,IN,JP,US,GB,US,NL,HK,BR,AU,CA,IN,JP,KR,GB,FR,ZA,NL,US,SG,AE,US,IN,AU,CH,DE,NO,US,NL,HK,BR,AU,CA,IN,JP,KR,GB,FR,ZA,SG,AE,US,IN,AU,CH,DE,NO,GB,US,NL,BR,US,AT,US,IL,IT,IN,MY,MX,NZ,FI,PL,QA,US,ES,SE,TW,GB,US,QA,US,PL,IT,IL,MX,ES,US,FR,BR,IE,NO,DE,CH,AU,US,AE,SG,US,ZA,FR,GB,KR,JP,IN,CA,AU,SG,IE,US,NO,DE,CH,AU,US,AE,SG,US,ZA,FR,GB,KR,JP,IN,CA,AU,SG,IE,US,GB,KR,JP,IN,FR,IE,IT,MX,NZ,NO,NL,CA,AU,DE,IL,BR,AU,HK,SG,AU,JP,US,NO,PL,QA,ZA,ES,CH,AE,BR,US,NL,US,GB,US,IE,US,JP,BR,FR,JP,AU,CL,FR,CA,DE,AE,NO,DE,ZA,US,IL,IT,KR,MX,NZ,NO,PL,QA,ES,CH,AE,GB,US,BR,US,SE,US,AU,BR,CA,US,HK,US,FR,JP,KR,US,IE,ZA,US,SG,IN,GB,NL,IN,US,AE,AU,CA,IN,FR,DE,US,CA,US,NL,US,NL,US,NL,US,CA,US,SG,MY,IT,IL,US,IN,US,CA,US,JP,US,NL,US,JP,US,NL,PL,IE,NL,FR,US,NL,US,BR,SE,US,NL,JP,FR,US,NL,US,NL,US,SE,NL,GB,NL,US,NL,SE,GB,FR,JP,US,FR,IE,US,NL,US,NL,US,AE,BR,AE,NL,US,GB,FR,NL,SE,NL,IE,GB,IE,NL,SE,IE,NL,SE,GB,HK,SG,KR,US,AU,US,HK,US,NL,IN,NL,AU,JP,IN,US,JP,US,NL,IE,SG,KR,AU,US,NL,IN,JP,AU,JP,US,NL,US,NL,JP,AU,IN,HK,SG,JP,AU,HK,SG,JP,HK,SG,KR,IE,GB,US,NL,SG,BR,JP,IN,US,IE,NL,BR,SG,JP,KR,IN,US,NL,GB,IE,US,GB,HK,SG,AU,IN,JP,IN,KR,US,SG,AU,US,NL,IE,SG,GB,US,FR,ZA,FR,US,ZA,US,CA,US,AU,BR,QA,US,JP,US,ZA,SG,US,ZA,SE,CH,SE,ZA,SE,CH,IE,AE,IE,NO,SE,AE,SE,NO,SE,DE,NL,SE,DE,US,IE,NL,MY,US,SG,US,HK,JP,US,HK,SG,AU,JP,KR,FR,JP,US,FR,US,NL,US,JP,BR,IN,US,IN,CH,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,_,US,CA,US,IT,US,SG,DE,IE,US,SG,US,AU,US,JP,US,IE,HK,BH,US,NL,IE,SG,US,SG,HK,AU,GB,IE,NL,US,GB,US,MY,IN,IE,NL,US,BR,IE,NL,JP,ZA,FR,AE,AU,HK,JP,IN,SG,JP,US,MY,JP,KR,FR,ZA,CH,US,SE,US,NL,IE,FR,JP,KR,JP,SE,AU,BR,US,IE,NL,SE,FR,US,SG,JP,KR,JP,BR,AU,MY,ID,US,IE,NL,JP,US,JP,IE,US,NL,US,MY,CH,IN,AU,IN,US,NL,IE,GB,FR,NO,QA,ZA,CH,GB,AE,SE,AU,IN,HK,JP,KR,IN,SG,BR,CA,US,NL,US,ES,MX,DE,US,DE,AU,US,NL,IE,GB,DE,BR,JP,US,SG,IN,JP,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SE,US,IN,FR,IN,US,IE,US,DE,BR,HK,US,KR,US,GB,US,GB,IN,ES,AU,US,PH,FR,US,DE,IT,JP,US,CZ,US,SG,AU,TW,DE,AT,PL,CA,CH,US,GB,US,JP,US,IE,US,KR,US,AE,SG,AU,US,GB,US,JP,TW,JP,TW,US,DE,AE,SG,DE,US,IN,JP,US,DK,US,IE,NL,US,QA,US,QA,US,QA,US,QA,US,QA,US,CA,DE,US,SG,DE,PR,CA,US,HK,US,CA,US,CA,US,CA,US,CA,US,PR,US,NL,BR,US,CN,US,FR,IN,GB,CA,IN,AU,SG,CA,FR,US,JP,IN,US,FR,NL,US,CA,US,IE,CA,HK,SG,IN,JP,KR,US,IE,GB,NL,US,FR,US,NL,IE,SG,US,AU,AE,ZA,US,NL,IE,SG,US,FR,AU,US,AE,US,CA,US,IT,US,CA,US,IE,GB,IE,GB,IE,US,IE,US,SG,JP,US,IN,US,IE,AU,JP,KR,US,SG,US,NL,US,NL,US,GB,US,CA,US,IE,JP,IE,CA,JP,US,AU,IE,US,NL,IE,AU,US,SG,IE,US,NL,US,IE,US,IN,US,NL,HK,JP,US,NL,IE,US,IN,US,HK,US,BR,QA,US,JP,US,SG,AU,US,AU,US,JP,US,IE,US,IE,US,JP,US,SG,DE,US,KR,IN,JP,DE,US,SG,JP,DE,US,KR,JP,IN,JP,SG,DE,JP,US,SG,US,JP,KR,DE,US,DE,GB,US,IT,US,SG,US,IT,FR,IT,FR,IT,NL,FR,US,FR,IT,FR,DE,FR,US,DE,FR,DE,IT,DE,BR,DE,BR,DE,PL,US,DE,BR,DE,IN,US,DE,US,NL,ES,NL,BR,US,CA,US,QA,US,BR,US,BR,US,CA,US,CA,HK,SG,US,KR,NL,CA,AU,KR,US,NL,IE,US,HK,AU,JP,US,JP,US,CA,US,NL,US,CA,US,IE,NL,CA,SG,US,AU,US,HK,SG,AU,FR,IN,IE,NL,JP,US,BR,US,IN,CA,US,FR,US,FR,SG,US,IN,US,KR,IE,US,NL,US,AU,US,HK,AU,SG,US,GB,ZA,AE,US,GB,FR,NL,US,IE,SG,CH,US,CA,US,JP,AU,US,AU,US,CA,JP,IE,US,NL,US,HK,US,GB,US,IN,SG,IN,IE,JP,IN,KR,US,KR,FR,NL,US,QA,US,HK,US,QA,US,CA,JP,US,IN,US,SG,JP,US,JP,GB,US,CH,NO,DE,KR,CH,NO,US,IN,US,BR,SE,IN,CA,BR,US,QA,AT,PL,MX,NZ,ES,IT,TW,HK,US,AU,US,DE,BE,US,BR,US,FR,IE,FR,IE,FR,IE,FR,IE,FR,US,FR,IE,US,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,US,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,FR,IE,US,FR,IE,FR,US,FR,US,IE,FR,US,IE,US,IE,US,FR,US,IE,US,IE,FR,US,IE,FR,IE,FR,US,IE,US,IE,FR,IE,FR,US,IE,FR,IE,FR,IE,FR,US,IE,FR,US,IE,US,IE,FR,US,IE,US,IE,FR,IE,FR,IE,US,FR,IE,US,IE,FR,IE,FR,US,FR,US,FR,US,IE,FR,IE,FR,US,IE,FR,US,FR,IE,FR,US,FR,IE,FR,IE,FR,US,FR,IE,US,IE,FR,IE,FR,US,FR,US,IE,FR,IE,FR,IE,US,FR,IE,US,IE,FR,IE,US,FR,IE,US,FR,IE,US,FR,IE,US,IE,US,FR,IE,FR,IE,US,IE,FR,IE,FR,US,IE,US,IE,FR,IE,US,IE,FR,US,IE,FR,US,FR,IE,FR,US,IE,FR,IE,US,IE,FR,IE,US,IE,US,IE,US,FR,US,FR,US,FR,IE,US,FR,IE,US,IE,FR,IE,US,FR,DE,FR,DE,FR,GB,FR,DE,FR,GB,FR,DE,FR,GB,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,GB,PL,FR,PL,FR,GB,DE,FR,DE,FR,DE,FR,GB,FR,GB,FR,DE,FR,DE,FR,DE,FR,DE,FR,GB,FR,DE,FR,DE,FR,PL,FR,PL,FR,PL,FR,GB,FR,DE,FR,DE,FR,GB,FR,DE,FR,PL,FR,GB,FR,PL,FR,PL,FR,PL,FR,PL,FR,GB,FR,GB,FR,PL,FR,PL,FR,PL,GB,FR,GB,FR,GB,DE,FR,PL,FR,PL,FR,PL,FR,PL,GB,DE,FR,DE,FR,DE,FR,CA,US,HK,US,JP,AU,US,IE,US,IE,AU,US,JP,US,DE,BR,JP,US,KR,US,JP,US,SG,US,AU,IE,US,JP,SG,IE,US,JP,SG,KR,IN,US,GB,US,HK,GB,NL,DE,US,GB,DE,US,GB,US,KR,US,KR,US,NL,DE,US,IN,JP,BR,CA,GB,US,DE,GB,IN,DE,GB,IN,DE,CZ,US,FR,IT,BR,GR,KE,ID,HK,IT,US,GB,US,JP,DE,CA,US,DE,US,KR,FR,KR,US,NL,KR,ES,SE,US,ES,FR,IN,ID,US,IT,IE,FR,IT,US,AU,GB,US,ID,SG,IN,IT,KE,US,CA,IN,KR,NZ,IN,US,FR,IN,ID,FR,US,CO,IN,US,IT,US,FR,AT,FR,DE,TW,FR,NZ,GB,PL,SE,NZ,US,JP,US,IE,US,JP,US,AU,BR,US,IE,US,IE,US,IE,US,CN,US,IE,JP,US,BR,GB,FR,US,IT,US,IN,FR,IN,FR,DE,CA,DE,US,KR,IN,FR,IN,US,NO,HK,IN,ES,SE,DE,US,FR,NO,FR,IN,JP,US,NL,JP,ZA,AU,US,BR,JP,SG,FR,KR,SE,US,KR,JP,KR,DE,JP,US,GB,US,DE,US,TW,NO,KR,IN,US,PL,SE,IN,FR,IN,US,NO,US,NO,US,BR,US,JP,US,JP,US,DE,US,IE,US,JP,DE,US,JP,US,IE,GB,US,DE,US,IE,KR,US,HK,US,JP,US,DE,US,NO,JP,US,DE,US,KR,US,FR,JP,IN,JP,GB,DE,JP,US,PL,DE,US,TW,PH,TW,US,BR,FR,US,DE,KR,IN,PL,GR,SE,JP,US,JP,AU,US,IN,HK,US,GB,US,IE,FR,IE,FR,US,IE,FR,IE,FR,IE,US,CA,ZA,US,IE,JP,US,FR,IN,US,IE,FR,US,IN,US,GB,US,GB,US,DE,JP,GB,SG,US,FR,DE,AU,US,NL,ES,US,HK,IN,US,JP,IT,FR,NL,GR,FR,US,NO,FR,IN,DE,US,IN,FI,KR,JP,US,AU,US,IE,US,SG,JP,US,AU,US,IE,US,JP,SG,US,HK,US,BR,US,IE,JP,SG,AU,SG,US,IE,US,NZ,US,AU,US,CA,US,BR,ID,US,JP,US,JP,US,JP,US,JP,US,BH,US,SE,US,CH,US,CH,US,CH,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,CH,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,CH,US,CH,US,NL,US,BE,US,BE,FR,US,NL,US,NL,US,BE,US,SG,US,HK,US,BE,FR,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,FR,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,CH,US,CH,US,CH,US,DE,GB,DE,FR,NL,BE,NL,LU,US,MX,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,AU,NZ,NC,FJ,VU,TO,WS,TV,PG,SB,PW,MH,FM,NR,KI,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,IE,HK,PH,VN,MM,BD,KH,LA,LK,MV,JP,HK,IN,JP,HK,GB,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,SG,MY,TH,BN,ID,SG,TW,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,KR,NP,BT,MN,KP,HK,FR,HK,FR,HK,JP,FR,HK,JP,HK,JP,HK,GB,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,BR,GT,HN,NI,PA,CR,SV,BZ,US,DM,JM,TT,AW,PR,BS,KN,CU,HT,AG,DO,LC,VC,BB,GD,US,AR,CL,CO,PE,EC,PY,UY,VE,BO,SR,GY,GF,US,PE,EC,US,PY,UY,US,GT,US,HN,NI,US,PA,CR,US,MX,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,CA,IT,ES,IE,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,CH,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,PT,FR,US,FR,US,FR,SE,LI,AD,SM,MC,LI,FR,DE,FR,CY,FR,DE,FR,US,DE,US,DE,SM,VA,FR,US,FR,US,FR,US,FR,US,FR,AD,FR,US,FR,US,FR,US,FR,US,FR,US,FR,ZA,MA,DZ,TN,DE,US,FR,CD,CG,AO,ZM,CF,TD,GQ,GA,ST,BE,US,BE,US,BE,US,MZ,LS,BW,SZ,ZW,MW,NA,FR,MU,MG,SC,KM,BE,US,KE,TZ,UG,ET,ER,DJ,BI,RW,NG,GH,SN,CM,BJ,TG,NE,BF,ML,LR,SL,GN,GW,GM,CV,MR,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,EG,IL,JO,LB,BE,US,BE,US,BE,US,AE,GH,BH,KW,OM,QA,SA,BE,US,BE,US,BE,US,BE,US,BE,LS,BE,US,BE,US,BE,US,BE,US,BE,US,LY,US,MG,BE,US,BE,US,BE,US,BE,US,BE,US,MU,MA,MZ,US,NG,US,SN,US,DE,RU,FI,DK,IS,DK,NO,SE,DE,DK,BE,DK,BE,SE,BE,GB,BE,SE,EE,LT,LV,BY,DK,BE,DK,BE,DE,SE,BE,DK,BE,DK,BE,SE,BE,SE,BE,DK,SE,BE,DE,SE,BE,SE,DK,BE,SE,BE,SE,BE,GB,BE,SE,BE,SE,BE,DK,BE,DK,BE,DK,BE,DE,SE,RU,EE,DK,BE,DK,SE,BE,DK,BE,DK,LT,FR,DE,FR,DE,FR,US,FR,DE,US,UA,FR,US,FR,DE,FR,DE,FR,US,SE,DE,FR,DE,FR,US,SE,US,FR,DE,US,FR,SE,DE,FR,US,DE,FR,US,FR,US,BH,US,IL,US,KW,US,OM,QA,SA,US,AE,US,DE,US,FR,AL,FR,DE,US,FR,US,FR,AT,BG,BA,ME,SI,HR,BA,CZ,GR,HU,UA,MD,MK,PK,KZ,GE,AM,AZ,TM,UZ,KG,TJ,US,DE,PL,RO,DE,FR,US,DE,FR,RS,FR,DE,US,FR,DE,FR,SK,DE,FR,US,DE,FR,DE,FR,DE,FR,US,DE,US,DE,FR,US,FR,DE,FR,US,FR,TR,US,DM,US,JM,US,TT,US,AW,US,HK,JP,GB,HK,JP,HK,JP,HK,JP,BD,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,MM,JP,HK,JP,HK,JP,HK,JP,CN,IN,ID,KZ,JP,GB,HK,JP,HK,JP,HK,GB,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,MV,HK,JP,HK,JP,HK,JP,GB,HK,JP,HK,JP,HK,JP,HK,JP,PK,PH,LK,HK,JP,GB,HK,JP,HK,JP,GB,HK,JP,HK,JP,HK,GB,TH,JP,HK,JP,HK,JP,HK,JP,HK,VN,GB,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,GB,HK,JP,HK,JP,HK,JP,US,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,GB,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,IE,US,DE,IN,HK,JP,HK,JP,HK,GB,SG,JP,HK,GB,HK,JP,HK,JP,HK,SG,HK,JP,HK,JP,AU,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,BR,CL,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,GB,DE,SE,FR,NL,BH,NG,BH,ZA,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,DE,SG,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,FR,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,DE,US,DE,US,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,PL,FR,DE,FR,US,ES,IT,CH,NL,DE,ES,DE,GB,CA,US,IE,US,GB,SG,US,TW,US,JP,US,GB,SG,US,CA,BR,NL,DE,FR,HK,KR,JP,AU,JP,IT,IN,MY,PH,CH,TW,ID,AU,US,TH,US,KR,GB,JP,IE,US,NL,US,ID,US,IN,US,FR,CH,GB,US,IN,IT,US,FR,US,SG,AU,IE,US,CA,US,SE,US,IE,US,PL,IE,NL,US,GB,US,GB,CN,US,JP,CH,GB,JO,LB,AE,DE,CH,GB,IE,FR,CZ,IT,GB,EG,BE,ZA,SA,RU,ES,NL,FR,ZA,US,GB,US,CA,US,BR,US,IN,US,IN,HK,US,SG,AU,IN,US,CH,NL,CH,DE,US,SG,US,JP,DE,US,JP,DE,CH,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,HK,US,GB,US,SG,NL,BE,US,HK,BR,NL,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,IN,CH,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,FR,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,CH,US,CH,US,CH,US,CH,US,CH,US,CH,US,CH,US,CH,US,DE,US,SG,US,DE,US,CH,US,JP,IN,JP,AU,TH,JP,CN,MY,US,MY,PK,NZ,KR,CN,TH,HK,SG,JP,KR,PK,BD,CN,ID,AU,CN,IN,CN,PH,JP,PH,MY,KR,JP,CN,TH,HK,CN,VN,HK,MY,SG,IN,MY,IN,PK,BD,NZ,MY,KR,NZ,HK,IN,AU,NZ,JP,TW,AU,JP,KR,CN,JP,AU,HK,SG,TH,SG,TH,ES,BD,BN,PH,KH,ES,FR,JP,TW,CN,KR,AU,JP,TW,CN,KR,CN,TH,JP,KR,MY,KR,CN,KR,AU,JP,ID,JP,BD,JP,SG,HK,SG,PH,SG,ID,SG,JP,IN,SG,KR,TH,AF,JP,BD,KR,ID,JP,KR,HK,CN,JP,AU,HK,AU,KR,HK,KR,AU,PK,TH,SG,JP,KR,SG,VN,JP,CN,KR,CN,KR,CN,HK,CN,HK,CN,DE,FR,US,DE,JP,FR,IT,CH,CA,JP,US,CH,ES,GB,NL,ES,GB,ES,CH,GB,JP,CA,ES,GB,NL,GB,CA,IT,SG,US,SG,CA,IT,AU,CA,AU,JP,PL,JP,HK,SG,AU,US,CH,JP,DE,IT,AU,HK,JP,DE,US,CH,PL,CN,US,CN,HK,CN,US,CN,HK,CN,US,CN,JP,AU,NZ,AU,KR,JP,IN,AU,TW,PK,TW,JP,CN,TW,JP,IN,JP,HK,KR,CN,US,SG,JP,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,KR,NZ,SG,AU,SG,AU,SG,KR,BD,CN,SG,CH,CN,IN,HK,TW,HK,IN,BD,CN,IN,FR,IT,ES,AU,PS,BD,CN,IN,US,KR,HK,IN,CN,AU,US,BD,NZ,ID,MY,BD,CN,IN,KR,JP,EC,US,HK,CN,SG,ID,MN,MM,CN,IN,BD,SG,MM,MN,CN,IN,AF,ID,TL,CN,JP,HK,US,HK,CN,OM,TH,BD,KW,HK,US,HK,CN,HK,BD,JP,TH,VN,AU,CN,JP,IN,JP,AU,JP,CN,IN,KR,HK,SG,JP,CN,JP,AU,_,HK,CN,JP,MY,CN,JP,CN,JP,CN,JP,CN,KR,TW,CN,JP,CN,AU,CN,NZ,CN,JP,AU,IN,TW,CN,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,CN,TW,CN,KR,ID,CN,IN,JP,AU,SG,JP,SG,AU,SG,AU,SG,JP,SG,AU,SG,AU,SG,AU,SG,AU,SG,US,AU,HK,SG,AU,SG,AU,SG,AU,SG,AU,SG,JP,CN,IN,HK,MM,CN,MY,HK,TW,HK,JP,CN,KR,ID,PK,KR,AF,NC,JP,MY,BN,JP,TH,AU,MY,SG,TW,HK,JP,HK,SG,JP,HK,TW,JP,SG,HK,SG,JP,HK,SG,JP,ID,SG,ID,SG,ID,JP,AU,DE,CN,CA,SG,PH,AU,HK,IN,JP,MY,VN,IN,JP,SG,US,AU,HK,JP,HK,JP,AU,JP,US,HK,AU,HK,SG,JP,ZA,HK,US,CN,US,SG,AU,HK,JP,HK,SG,TW,HK,JP,SG,JP,AU,JP,SG,JP,SG,TW,JP,SG,JP,HK,JP,TW,AU,JP,PH,JP,TW,JP,HK,TW,JP,TW,PH,TW,JP,AU,JP,TW,PH,HK,IN,KR,CN,US,IN,VN,CN,ID,HK,SG,IN,HK,TH,TW,JP,CN,PH,JP,SG,TH,CN,PH,GB,FR,DE,MY,SG,AU,NZ,JP,AU,AE,SG,CN,AU,TH,SG,AE,US,GB,AU,GB,VN,AU,CN,MY,ID,JP,HK,SG,NL,ID,HK,MM,ID,TW,SG,TW,KR,JP,CN,JP,CN,JP,AU,SG,AU,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,SG,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,US,TH,JP,TH,JP,TH,JP,TH,CN,KR,CN,TW,JP,TW,AU,TW,KR,JP,HK,SG,AU,CN,AU,JP,TH,HK,ID,AU,IN,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,JP,US,JP,US,JP,US,JP,US,JP,BR,JP,CN,JP,US,JP,FR,JP,US,JP,US,JP,US,JP,TW,CN,JP,CN,HK,CN,HK,PH,JP,PH,JP,AU,LK,KR,JP,KR,IN,ID,KR,TW,BD,KR,IN,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,JP,KR,JP,KR,JP,KR,_,KR,_,KR,_,KR,_,KR,IL,GR,CH,RS,ID,US,ID,US,JP,ID,DE,US,TR,GB,IR,US,AM,PL,FR,NL,LT,IT,NZ,ID,US,DE,UA,PL,RO,GE,ID,CY,FR,RU,FR,CA,NL,PL,LU,DE,IR,DE,SE,US,DE,AT,RU,ES,BE,US,GB,NL,IE,NL,IQ,US,RU,IL,FR,US,DE,RU,GB,SE,PL,GB,FR,ME,DE,NL,FR,NL,FR,DE,NL,DE,NL,DE,NL,DE,NL,CZ,KG,GE,AM,UA,RS,HU,MD,RO,KZ,DE,UA,HU,GB,CZ,KG,CZ,BE,GB,RU,GB,FR,DE,KE,UG,KE,UG,KE,GB,DE,IE,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,IT,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,QA,US,NL,DK,MW,DK,NL,IE,US,GB,CY,DE,CY,SD,KE,EG,IT,CH,SE,GB,IT,AT,US,AT,ES,UA,RU,PS,SY,RU,NO,IE,FR,IE,GB,IE,FR,IE,GB,IE,FR,IE,GB,IE,FR,IE,GB,IE,GB,IE,FR,IE,IT,SE,PL,NL,ES,FR,CH,FR,AT,FR,ES,FR,BE,FR,DE,FR,IT,FR,DE,FR,AT,FR,IE,GB,FR,IT,FR,IT,FR,GB,FR,IT,FR,IT,AT,FR,AT,FR,IT,ES,FR,ES,FR,AT,ES,FR,ES,FR,IT,FR,DE,AT,FR,DE,FR,GB,DE,IT,DE,FR,AT,FR,DE,FR,IT,FR,AT,FR,DE,FR,BE,DE,FR,GB,FR,IT,ES,DE,FR,BE,DE,FR,DE,NO,CZ,KE,GB,NL,GB,HK,SG,JP,AU,SG,GB,SG,HK,DE,PT,TR,PL,GB,CH,NL,GB,NL,RU,NL,GE,BY,NL,IR,GB,NL,IR,GB,NL,GB,IQ,NL,IQ,RU,KZ,RU,KZ,RU,KZ,RU,GB,ES,RU,FR,ES,GR,FR,BE,FR,DE,IE,CZ,GB,DE,GB,AT,NL,FR,DE,GB,DE,GB,DE,NL,DE,NL,GB,NL,DE,NL,DE,NL,DE,NL,DE,NL,GB,DE,NL,GB,NL,FR,DE,NL,DE,FR,DE,GB,DE,NL,DE,NL,DE,GB,NL,GB,NL,DE,NL,ES,CZ,DE,DK,GB,BG,DK,FI,NL,AT,CH,IT,US,IT,US,DE,CH,PT,GB,NL,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,US,GB,CH,GB,CH,GB,CH,GB,CH,GB,CH,GB,CH,GB,DE,FR,GB,FR,GB,FR,GB,FR,GB,NO,PL,GB,US,DE,GB,IL,CD,GB,ML,IL,GB,IL,NG,GB,IL,GB,CD,UG,IL,GB,IL,GB,ES,DE,GB,DE,GB,UG,IL,GB,IL,GB,IL,GB,SS,IL,GB,UG,IL,ES,NL,BE,NL,BE,NL,BE,NL,BE,NL,BE,NL,BE,NL,BE,NL,BE,NL,BE,NL,GB,IR,TR,IR,AE,IN,NL,DE,NL,DE,NL,DE,NL,DE,NL,TR,NL,TR,RU,PL,FI,DK,OM,RE,BE,FR,NO,RU,LV,SE,RU,FR,UA,GB,SE,NO,SE,EE,SE,CH,SK,EE,DK,DE,GB,DE,GB,DE,GB,DE,GB,BG,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,NO,DE,GB,IT,GB,AT,DK,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,BG,DE,PL,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,LY,PL,FR,PL,SE,GB,PL,BG,NL,PL,MD,UA,DE,PL,FR,ES,CH,IT,PL,DE,UA,NL,MC,UA,NL,FR,PL,BG,RO,PL,US,CH,GB,BA,RU,JE,GG,JE,IM,AT,DE,AT,DE,AT,EG,RU,GB,IT,GB,DE,DK,FI,PL,NO,FI,US,BR,IN,FR,LT,US,IN,LT,FR,DE,SG,US,IN,BR,DE,BE,GB,US,JO,HK,TR,JO,CW,JO,US,GB,JO,CN,FR,SG,JO,MX,US,FR,JO,NL,HK,JO,GB,US,HK,JO,UA,TR,NL,FI,FR,FI,BG,GB,US,GB,US,GB,ES,AT,GB,ES,GB,AT,GB,AT,NO,GR,AL,GR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,RU,US,RU,US,RU,ES,KZ,FR,ZA,KZ,ES,DE,EE,CZ,BD,IT,EE,RU,GB,IT,CZ,HU,BZ,RS,MK,HU,LT,IE,HU,US,RU,DE,RU,FI,DK,DE,HU,SK,HU,CZ,HU,CZ,HU,SK,CZ,HU,SK,NL,DE,NL,DE,NL,DE,NL,DE,NL,FR,DE,NL,DE,FI,UA,SE,LT,ES,LV,KZ,LB,NL,RU,CZ,DE,IT,SE,DE,IT,SE,DE,AT,DE,SE,ES,DE,SE,SI,NL,UA,LV,FR,IT,ES,PL,BE,SE,AM,NO,PL,GB,DE,RU,TJ,RU,TJ,RU,IL,LR,IL,DE,NO,DE,PL,AT,MK,AT,MK,AT,MK,AT,MK,AT,MK,AT,NL,ES,NL,DE,NL,FR,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,FR,DE,NL,DE,CH,NL,DE,NL,DE,NL,DE,NL,DE,NL,IT,SE,DE,IT,ES,NO,IT,ES,AT,NL,IT,ES,FR,GB,IT,US,NL,GB,MX,NZ,GB,US,GB,HU,IT,SE,IT,RS,BA,ES,NO,BE,DE,BE,GB,BE,GB,BE,IR,SE,IT,NO,DE,FR,GR,DE,RU,HK,RU,GB,RU,GB,NL,FI,US,DE,GB,ES,UA,US,JP,TR,US,FR,US,DE,RU,FR,GB,US,UA,MD,TR,GB,KZ,ES,NL,US,RO,CH,TR,IR,RU,FR,DK,NL,DE,TR,RS,BA,RS,CH,GB,CH,PL,SE,IT,RU,SE,FI,SE,DE,CZ,RU,NL,IT,DE,PL,FR,NL,DE,MY,BE,FR,MY,LU,BE,US,HK,BE,DE,BE,DE,RU,IN,US,ID,TH,US,NL,HU,IT,BE,HU,KR,MY,PL,LU,NL,BA,RU,UZ,RU,NO,FI,DE,EG,BE,DE,BE,CA,BE,SE,BE,DK,BE,US,BE,CA,BE,CA,BE,DE,BE,SE,BE,US,FI,BE,SE,BE,SE,BE,DE,BE,SE,FI,SE,FI,DE,SE,ES,SE,FI,SE,AT,DE,DK,SE,DE,EG,RU,ES,RU,SE,SA,GB,FI,RO,PL,DK,CH,KZ,FR,LV,AT,FI,ES,BE,NL,RU,UA,IT,LT,DE,RU,KZ,PL,RU,TJ,RU,UA,DK,NL,RU,US,GB,NL,CY,ES,PL,US,RU,UA,RU,NL,PL,UA,FR,ES,PL,RU,NO,IT,GB,NL,GB,NL,GB,NL,IE,NL,SE,DE,IL,IT,BE,RU,PL,BE,EE,BE,EE,BE,EE,BE,RU,BE,GB,FR,GB,DE,GB,DE,GB,DE,GB,NO,FR,CZ,GB,NL,FR,PL,GB,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,GB,NL,DE,ES,NL,US,RO,IR,KZ,GB,RU,CH,SE,RU,BG,DE,NL,FR,TR,NL,PL,RU,NL,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,EG,DK,GB,FR,DE,FR,DE,GB,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,GB,DE,EG,DE,GB,DE,GB,DE,RO,DE,AT,EG,NL,BE,CH,NL,DE,NL,CH,NL,GB,RU,UA,RU,LT,RU,CZ,DE,RU,NO,DE,PL,FI,DE,NL,DE,NL,GB,IS,FI,NL,DE,LI,DE,LI,DE,LI,DE,LI,DE,LI,DE,LI,DE,LI,DE,LI,DE,US,DE,LI,DE,US,DE,FR,RU,NO,PL,FI,RU,NL,FI,RU,UA,GB,SA,IT,KW,ES,US,ES,CY,RU,IT,PL,DE,PL,DE,RU,SK,DE,FR,MK,NL,ES,BR,MX,GB,HK,ES,GB,DE,US,BR,ES,MX,GB,ES,GB,US,RU,NL,FI,SE,FI,SE,FI,HU,NL,BE,NL,CH,CZ,SK,SE,GE,DE,RU,DE,IT,PT,GB,DE,GB,TR,GB,SK,GR,IT,CH,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,GB,BE,GB,MT,NG,GB,RU,IT,GB,ES,RU,FI,BG,DE,SK,NO,DE,IT,RU,CZ,NL,AT,PL,NL,PL,CH,NL,CH,NL,AT,NL,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,IT,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,PL,RU,SE,DE,PL,SE,RU,GB,RU,TR,FR,DE,FR,RU,BE,RU,UA,RU,GB,US,DE,PL,BG,UA,RU,PL,RS,RU,UA,AE,LU,CH,RU,PL,SE,PL,CZ,NL,DK,RU,FI,SE,FI,DE,FR,GB,DE,NL,FR,AT,FR,NL,FR,DK,DE,DK,SE,IT,DE,GB,BE,NL,ZA,FR,BE,FR,ZA,ES,IT,AT,GB,IT,GB,CH,SE,FR,AT,GB,NL,GB,FR,GB,CH,FR,GB,NL,GB,DE,CH,NO,CH,FR,AT,GB,DE,GB,DE,NL,DE,SE,DE,NL,DE,NL,BE,GB,CH,DE,CH,DE,CH,IT,ZA,NL,IT,BE,FR,GB,FR,AT,HU,AT,DE,AT,SE,CH,NL,CH,FR,NL,AT,NL,DE,NL,CH,GB,IT,DE,GB,ZA,DE,ZA,GB,ES,ZA,BE,IT,DK,ES,DE,GB,BE,NL,IE,BE,NL,BE,DK,IE,HU,CZ,NO,DK,SE,DK,GB,CH,DE,NL,DE,NL,DE,ES,DE,FR,NL,DE,NL,DE,GB,DE,NL,DE,GB,NL,GB,DE,GB,NL,GB,CH,GB,NL,CH,SE,HU,NL,IT,BE,IT,BE,FR,NL,FR,CH,FR,GB,FR,AT,GB,AT,GB,NL,CZ,NL,IE,BE,DE,NO,GB,NO,ZA,BE,IT,GB,ZA,NL,ZA,GB,ZA,PT,NL,CH,GB,CH,ES,BE,ES,BE,DK,ZA,GB,NL,DE,CH,BE,NL,AT,FR,DE,NL,GB,DE,NL,DE,CZ,NL,ZA,DE,NO,ES,NL,FR,AT,GB,NL,GB,NL,CH,NL,AT,NL,GB,NO,NL,NO,DE,FR,ES,GB,ES,ZA,NL,FR,GB,FR,ZA,FR,BE,GB,NL,GB,FR,NL,DE,NL,IT,GB,CH,DE,GB,AT,CH,GB,IE,SE,AT,BE,NL,BE,NL,DE,NL,DE,ES,NL,GB,NL,DK,NL,GB,FI,NL,CH,IE,NL,GB,NL,GB,BE,FR,BE,FR,BE,FR,BE,GB,BE,NL,GB,NL,GB,FR,GB,FR,GB,NL,GB,BE,FR,BE,GB,FR,NL,GB,BE,NL,GB,NL,GB,SE,GB,SE,GB,FR,GB,NL,GB,NL,DE,NL,BE,CH,RU,GR,NL,GB,BG,RU,FR,IT,RS,DE,UA,NL,FR,DK,NL,US,BR,US,NL,HK,FR,LT,GB,US,SG,HK,DE,RU,IR,FR,EG,RS,CI,FR,NL,IT,DE,GB,NL,GB,BE,US,MX,BR,GB,NL,BR,NL,BR,NL,BR,DZ,BS,KH,EG,IM,LT,LI,MC,AD,BD,MO,MN,LK,BT,BN,ME,FI,SK,DK,AT,NL,AT,IT,NL,CH,NL,CH,NL,GB,CH,FR,NL,FR,GB,LT,NL,GR,NL,GR,EE,GB,NL,ZA,NL,GB,NL,CZ,NL,DK,NL,DK,GB,NL,GB,NL,GB,NL,GB,NL,GB,FI,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,FI,DK,NL,ZA,NL,ZA,NL,ES,NL,ES,NL,BE,NL,DK,NL,ZA,NL,FI,NO,NL,NO,NL,AT,ZA,NL,GB,NL,GB,NL,FI,GB,NL,GB,NL,IE,BE,NL,IL,NL,IL,IE,GB,NL,ES,CZ,SE,HU,FR,DE,IQ,CH,FI,RU,UA,GB,US,MY,NL,VN,NZ,SE,RU,NL,FR,IT,NL,DE,TR,SA,RU,NL,US,UA,CZ,US,GB,UA,TR,US,IR,FR,DE,NL,CH,BG,DE,ES,CZ,IT,GR,BE,UA,RU,LV,DE,NL,DE,GB,DE,GB,ES,GB,DE,BE,GB,DE,GB,DE,GB,FK,GB,FK,DE,GB,FR,DE,GB,FR,DE,GB,FR,DE,GB,FR,DE,GB,DE,FR,GB,FR,DE,GB,DE,GB,FR,DE,GB,DE,ES,DE,GB,FR,GB,ES,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,FR,DE,GB,DE,GB,FR,DE,FR,DE,FR,DE,AT,GB,FR,DE,GB,DE,FR,DE,BH,DE,NO,UZ,SE,FI,SE,CZ,FR,IT,GE,NL,FR,NL,AT,LT,AZ,RU,GB,DE,GB,DE,GB,DE,GB,DE,GB,FR,BE,DE,KW,NL,UA,US,GB,DE,GB,US,HK,GB,FI,GB,IN,GB,EG,GB,DE,GB,FR,DE,GR,AZ,RU,RO,AT,IL,DE,RU,IT,IR,CH,SE,MK,FI,FR,ES,FR,ES,FR,IE,GB,UA,MD,BG,IT,NL,IE,FR,NL,DE,NL,BE,NL,IE,NL,DE,CY,CH,US,PT,NL,LU,ES,US,NL,US,ES,US,DE,RU,IE,RO,GB,RU,OM,GB,BE,US,GB,KZ,US,NL,BG,US,RU,LU,PT,RU,FR,RU,PK,RU,UZ,US,RU,US,FR,NL,ES,GB,ES,CZ,IT,TR,UA,US,PL,IT,GB,PL,CN,BE,FI,NL,GB,RS,LY,FI,EG,AT,IT,AT,IT,AT,CZ,CH,FR,IT,NO,DE,FR,EG,GB,FI,DK,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,FR,PL,GB,TR,BR,RU,CZ,DE,SE,TR,FI,PT,IT,AT,RU,NO,GB,NL,MA,GB,US,IE,US,JP,US,BO,US,DE,US,PK,US,GU,US,FR,US,CA,US,PR,US,GB,US,JM,US,GB,US,PR,US,IN,US,PH,US,PR,US,MX,US,EC,US,BM,US,PR,US,PR,US,GB,US,GB,US,GB,US,GB,US,FR,US,FR,GB,US,GB,FR,GB,US,PR,US,FR,US,TZ,US,PR,US,UG,US,GH,US,LR,SA,NG,US,NG,US,KR,US,EC,US,PE,US,EC,US,EC,US,LB,NG,US,MX,US,MX,US,SL,US,SL,US,SL,US,SL,US,SL,US,PK,US,SL,US,SL,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,FK,US,PR,US,CA,US,CA,US,GB,US,MY,US,CA,US,PR,US,KY,US,CA,US,HK,SG,HK,US,BE,CA,GB,US,SI,IS,US,CA,US,IN,US,DE,US,DE,HK,US,CA,DE,KR,US,CA,US,JM,BB,JM,VG,JM,AG,JM,VG,JM,AG,VG,JM,AG,JM,US,CA,US,GB,US,HK,US,HK,US,SG,US,JP,US,GB,US,CA,US,BR,US,MX,US,HN,US,CA,US,HN,US,PR,US,CA,US,YE,US,BB,US,YE,US,CA,US,YE,US,BB,US,DE,US,IN,US,DO,US,CA,US,DE,US,HK,US,HK,US,LB,US,HK,SG,US,SG,US,HK,US,HK,US,HK,US,HK,US,HK,US,PH,US,JP,US,HK,US,HK,US,SG,US,HK,US,SG,US,HK,US,TW,HK,US,HK,US,HK,US,JP,US,DE,US,HK,US,HK,US,HK,US,SG,US,HK,US,GB,US,DE,US,TW,US,HK,US,GB,US,GB,HK,US,HK,US,TW,US,SE,US,SG,US,HK,US,BR,US,PH,US,DM,US,ES,US,HK,US,JP,US,KR,US,AU,US,MX,US,SG,US,SG,US,MY,US,GR,US,HK,US,ID,US,HK,ES,US,HK,GB,US,HK,US,SG,US,DM,US,SG,US,DE,US,KR,US,HK,US,TW,US,TW,US,SG,US,JP,HK,US,IN,US,SG,US,DM,US,SG,US,DE,SG,DE,HK,US,CA,US,HK,US,JP,US,DE,US,GB,US,HK,SG,US,TW,US,HK,US,HK,US,TW,US,HK,US,JP,US,FR,US,HK,US,HK,US,SG,US,VN,TW,US,HK,US,SG,HK,US,CO,PE,CL,US,SG,US,TH,HK,ID,PH,MY,SG,JP,AU,US,MX,US,DE,GB,US,AE,EG,ZA,KE,US,GB,US,GB,US,HK,US,HK,US,ZA,US,FR,US,HK,US,HK,US,AU,US,CA,US,GB,US,IN,US,CA,US,CA,US,SG,HT,US,GB,US,PH,CA,US,CA,US,CA,US,CA,US,CA,US,CA,NG,US,CA,US,CA,PH,SG,CA,US,IR,US,VG,US,CA,US,CA,US,CA,US,CA,US,CO,US,HN,GT,US,DO,PR,US,GD,US,CW,US,GD,US,MX,CW,US,GD,US,PR,US,PR,US,PR,CO,US,MX,US,PR,BS,US,CA,US,CA,US,SE,IE,US,BE,US,GB,US,DE,US,GB,PL,IT,ES,FR,DE,FR,ES,GB,NL,FR,PL,GB,IT,DE,PL,AT,US,CA,JP,GB,NL,US,NL,GB,DE,IL,US,CA,US,BR,US,CA,US,BR,US,BR,US,SG,US,CA,US,ES,US,KY,US,NL,US,QA,US,QA,US,FI,US,CA,US,IN,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,RO,US,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,MX,US,BE,PE,BR,US,BE,US,NL,GB,PL,US,SG,JP,AU,NZ,CO,US,OM,DE,ZA,ES,FR,IT,CA,GB,SE,DE,SG,US,BE,US,CH,US,PH,US,AU,CA,US,CA,US,AU,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,SA,US,BE,US,CA,US,PL,US,PL,US,CA,US,CA,US,KR,US,CA,US,CA,US,CA,US,VI,US,NO,US,TT,US,_,US,CA,US,CA,US,AU,GB,AU,SG,NL,DE,NL,US,CA,US,GB,IN,US,JP,US,FR,US,GB,US,CA,US,DO,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,BZ,CA,US,CA,US,CA,US,CA,US,ES,US,CA,US,DE,US,IL,US,BM,US,GB,US,DE,US,DE,US,CA,US,DE,US,DE,NZ,DE,US,CA,US,GB,US,CA,US,CA,US,AR,US,CA,_,US,DE,US,SG,US,CA,US,CA,US,CA,IE,DK,US,CH,SE,RO,DK,IT,GB,IT,US,DE,US,IE,US,IE,US,SG,US,CA,US,CA,US,CA,US,CA,US,GB,US,GB,US,CA,US,CA,US,CA,US,CH,GB,US,BR,US,_,US,BE,US,DE,US,DE,US,DE,US,DE,US,BE,US,CA,US,IN,US,IN,US,IN,US,CA,US,GB,US,GB,US,JP,SG,US,CA,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,LS,US,CA,US,CA,US,CY,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SE,US,SG,US,PR,US,JP,US,DE,US,CZ,US,BD,US,CA,SG,US,GB,US,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,SA,US,BS,CA,US,CA,US,CA,US,MX,US,CA,US,GB,US,NL,US,CA,US,CA,US,CA,US,DE,US,IN,US,CA,US,HK,US,GB,US,NL,US,AU,US,AR,MX,AR,MX,AR,MX,AR,MX,AR,MX,AR,CO,EC,VE,US,PE,CO,PE,CL,PE,CO,AR,PE,CL,CO,CL,CO,EC,PE,CO,EC,US,MX,US,MX,US,MX,US,MX,US,CA,US,ZA,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,TW,US,PL,IL,US,TR,US,_,US,CA,US,CA,US,CA,US,VG,US,MH,LR,CA,ZW,US,CA,SG,EG,US,PH,CA,US,HT,CA,US,EC,US,CA,US,MH,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PK,US,CA,US,PK,US,CA,US,HN,US,CA,US,CA,US,CA,US,ZM,US,CA,US,CR,CO,CA,US,CA,US,AU,US,CA,US,CA,US,AU,US,BR,US,PR,US,_,US,PR,US,CA,US,PR,US,CA,US,KY,US,KY,US,KY,US,CA,US,SG,US,GB,US,NL,US,DE,US,FR,US,GB,AU,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,GB,NL,GB,NL,IN,JP,SG,JP,IN,JP,AU,US,CH,BH,CH,US,KR,JP,US,AI,US,CA,US,CA,US,CA,US,CA,US,JM,US,CA,US,_,US,CA,US,CA,US,FR,CA,US,CA,US,TR,US,IN,US,TR,HU,US,DE,US,CA,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,VE,BR,US,BR,VE,BR,PA,BE,BR,US,PA,US,BR,PA,US,CL,US,CL,BR,CL,BR,CL,AR,US,BR,AR,BR,AR,US,BR,US,BR,US,BR,US,PR,US,BR,PR,BR,PR,US,BR,PR,BR,PR,BR,US,BR,US,BR,US,BR,US,BR,US,CL,BR,CL,BR,PA,US,BR,US,BR,US,BR,US,BR,US,CA,US,CA,US,CA,US,MN,US,CA,US,BB,CA,US,HK,SG,US,SG,HK,US,SG,US,CA,US,FR,US,SG,US,CA,US,CA,US,RO,US,CA,US,UA,US,CA,US,GB,ES,US,DE,GB,SE,US,CZ,SE,GB,SC,GB,AU,US,ZA,SC,GB,CL,CZ,US,GB,DE,US,GB,SC,FR,SC,US,SC,FR,IT,FR,NO,CZ,SC,NO,SC,RS,US,ES,JP,SC,ES,NO,IT,JP,US,AT,NO,AT,ES,JP,AT,GB,DE,ES,SE,SC,AT,CH,RS,CH,RS,AT,US,CH,SC,US,SC,US,SC,CH,US,GB,CL,US,CH,NL,JP,US,CA,US,SA,US,IN,US,GB,SG,BR,US,CA,US,PF,US,CA,US,IN,US,ZA,US,JP,US,BM,US,CA,US,BS,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,CL,JP,PL,SG,US,IL,GB,US,KR,US,CA,US,PR,US,PR,US,CA,US,CA,US,CA,US,PR,US,CA,US,PR,US,CA,US,CA,US,LU,US,CA,US,CA,US,GB,CA,US,NL,US,KR,US,DE,US,ES,US,FR,US,FR,US,CA,US,CA,US,DE,US,CA,US,GB,US,NL,US,GB,US,GB,US,CO,US,GB,US,CA,US,NL,US,GB,US,PA,US,MP,US,CA,US,CA,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,AF,US,CA,US,CA,US,CA,US,CA,US,BR,CA,US,CA,US,FR,US,MX,US,GB,US,CA,US,HK,SG,HK,US,HK,US,HK,US,HK,US,BB,US,PA,US,CO,US,CA,US,NL,US,FR,US,CA,US,CA,US,PR,US,CA,US,PA,US,DE,US,PR,US,BR,US,CA,US,DE,US,BR,US,DE,US,SG,US,PA,US,CA,US,AR,US,CA,DK,US,TR,IN,US,CA,PH,US,PH,AF,US,CA,US,CA,US,NL,IN,US,DE,US,PL,ES,CA,ES,US,CA,US,CA,US,CA,FR,MA,PH,DE,US,CA,US,PH,ES,CA,US,GB,US,NL,US,DE,IN,US,CA,US,CA,US,CA,US,JP,US,CA,US,CA,US,NL,US,NL,US,SG,US,SG,US,SG,US,SG,US,CA,US,CA,SG,JP,US,SG,US,SG,US,SG,US,JP,HK,JP,US,SG,JP,SG,US,HK,JP,SG,HK,US,GB,US,PR,US,DE,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,NL,US,NL,US,SA,NZ,US,CA,PR,US,AU,US,HK,SG,US,CA,US,CA,US,BR,GB,DE,US,IN,SG,AU,JP,IE,US,CA,US,ES,IE,CH,US,PH,US,FR,HK,US,CA,IT,IN,US,CA,IN,HK,US,GB,US,IN,US,JP,US,JP,IN,US,GB,JP,US,PT,BE,JP,US,AU,US,IN,NL,BR,NL,US,CA,US,AU,US,CO,AU,SG,US,IN,US,GB,US,TH,RO,US,CA,US,CA,US,JP,US,GB,US,CA,US,CA,US,CA,US,IN,US,IN,US,AU,US,CA,IN,GB,MY,GB,AU,GB,US,BR,US,AU,US,CA,IN,GB,IN,CA,US,MY,FR,DE,IT,JP,AU,JP,US,NO,US,SG,US,BR,US,AU,HR,JP,SE,DE,NL,CZ,IL,MX,NZ,MX,TH,HR,JP,SE,DE,NL,CZ,IL,MX,NZ,MX,TH,HR,US,MM,CH,US,HK,US,SG,US,CY,US,CA,US,IN,ES,SE,IQ,FI,US,CA,US,PR,US,CA,US,CA,US,CA,US,CA,US,CR,US,CA,US,RO,US,PR,US,CA,FR,US,CA,US,CA,US,CA,HK,CA,HK,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,BB,GD,VC,BB,VG,BB,LC,BB,GD,BB,LC,VG,BB,VC,BB,VC,BB,US,PR,US,BM,US,HK,US,HK,US,GB,CA,US,CA,JP,US,IE,US,NL,HK,US,IE,US,AE,US,IE,US,IE,US,NL,US,IE,US,NL,US,BR,US,BR,US,PR,US,HK,US,QA,US,CA,US,CA,US,CA,US,_,US,BE,US,BE,US,BE,US,BE,US,FR,US,FR,US,CA,US,BS,US,ES,US,CA,US,IE,US,CA,US,CA,SG,US,CA,US,CA,US,JP,SG,JP,SG,JP,SG,JP,US,SE,US,HK,US,FI,DE,FI,CA,US,GB,US,NL,US,IN,US,JP,US,CA,US,CA,US,DE,US,CA,US,VI,US,VI,US,VI,US,SG,JP,US,CA,US,AU,US,DE,US,CA,DE,US,SG,US,SG,US,DE,US,CA,US,CA,US,AU,US,YE,US,CA,US,CA,US,HN,US,HN,US,BB,US,CO,US,CO,US,HN,US,BM,US,BB,US,HN,US,BO,US,CA,US,CA,US,CA,US,DE,US,AU,JP,PH,TO,AU,MY,AU,MY,SG,FM,MP,NZ,AU,CA,US,HK,US,CA,US,HN,US,SV,US,HN,US,JM,US,GB,US,EC,US,BS,US,EC,US,CO,US,CA,US,MX,US,BR,US,EC,US,PH,US,CO,US,PH,US,PH,US,EC,US,SL,US,PR,US,IT,US,EC,US,GB,US,IN,KR,CA,JP,AU,SE,SG,BR,CL,FR,IN,IT,ES,MX,GB,HK,DE,DK,NL,US,BS,US,CO,US,EC,CO,US,CO,EC,CO,US,HK,IN,AU,US,ID,IN,US,IN,US,JP,US,ZA,US,DE,TC,US,CA,US,CA,US,PR,US,PR,US,DE,US,CA,US,CA,US,ZA,US,PS,US,SA,EG,GM,MX,PR,JM,HT,TT,DO,HN,BR,MX,US,MX,US,SA,US,CA,JP,CA,US,CA,US,ZA,US,CA,US,DE,US,IN,US,JP,US,CA,US,NL,BR,US,JP,US,RU,HK,SG,US,KR,US,AU,CL,US,AR,SE,IT,IN,ZA,ES,AE,DE,RO,US,BR,AU,JP,US,CA,US,MY,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PT,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,CA,US,CA,JP,US,CA,US,CA,US,CD,US,MW,US,CA,US,CA,MX,CA,US,CA,US,GB,CA,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,AU,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,SG,US,CA,US,CA,US,CA,US,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,IE,US,JM,KY,JM,US,IE,US,CA,US,BM,US,CA,US,_,VI,US,GB,US,AR,US,NL,US,SG,US,CA,US,IT,US,PL,US,CA,US,IR,US,CA,US,ES,VG,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,MT,IE,MT,FR,IM,NL,IE,FR,BG,FI,IM,BE,FR,US,DE,US,BS,US,CA,US,CA,US,CA,US,CA,US,CA,US,PR,US,PR,US,PR,US,CO,BR,US,AR,US,CL,US,NL,CO,BR,US,HK,CO,US,NL,RU,US,JP,US,JP,HK,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,CL,GT,PE,US,PE,PA,US,VE,US,VE,US,GT,US,CA,US,SG,ID,US,CA,AR,US,CA,US,CA,US,CA,US,BM,US,CA,US,DK,US,DO,US,CA,US,CA,US,AU,QA,NL,IT,CL,ID,US,CA,US,CA,US,CA,US,CA,US,CA,US,PH,US,PH,US,SA,PT,CA,US,CA,US,_,US,AU,US,FR,US,CA,US,CA,US,TH,US,CA,US,CA,US,CA,US,AE,US,CA,US,CA,DM,AL,BG,BY,FI,US,MY,US,CA,US,CA,US,SA,US,PR,US,IT,LU,US,MX,GT,US,GB,US,PR,SV,US,CA,US,SG,US,CN,US,DE,IE,US,HK,US,CA,US,AR,US,CA,US,CA,PR,CA,US,CA,US,CA,IM,KG,CA,US,CA,US,CA,US,CA,US,CA,US,BR,US,_,HK,US,CA,US,CA,US,CA,US,CA,US,NL,US,DE,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,GB,CA,GB,CA,GB,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,_,US,_,US,CA,US,JP,SG,PH,TW,HK,JP,BD,IN,ID,MY,SG,AU,NZ,AU,FI,NO,SE,GB,FR,IE,BG,HR,CZ,US,DE,US,AU,US,PR,US,CN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,TW,US,TW,US,CA,US,CA,US,CA,US,CA,US,IL,US,GB,US,TR,US,BR,US,GY,LB,NG,GB,GY,US,GY,US,VE,GB,US,VE,US,KE,US,GB,US,NI,US,SA,US,EC,US,NG,US,NI,US,SA,TZ,US,GB,RW,GB,US,CA,US,VE,KE,US,LR,US,AU,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,VG,US,VG,US,MN,US,CA,US,VI,CA,US,CA,US,CA,US,CA,US,AL,US,AL,US,CA,US,CA,US,_,US,CA,US,CA,US,FR,US,CA,US,CA,US,GB,US,AU,US,BR,US,DE,US,SG,FR,ES,JP,IT,HK,NL,PL,AT,RO,JP,US,BR,BE,DE,US,SE,CH,US,ZA,US,IE,IN,BR,IT,FI,NZ,DE,IN,US,SY,US,SY,US,EC,SG,EC,CA,US,CA,US,CA,US,CA,US,CA,US,PH,US,PH,US,EC,SG,US,PH,US,PH,US,CA,US,CA,US,CA,US,SG,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SV,US,CN,AR,US,CL,CA,US,AU,CL,US,LU,NL,US,HK,SG,HK,CA,US,CO,US,CA,US,PA,US,BS,US,PA,US,MX,TT,US,MX,US,CY,US,CA,US,CA,US,IN,CA,US,CA,US,DE,US,DE,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,JM,US,PR,LC,US,SA,US,CA,US,IM,US,VG,US,BZ,US,GB,CA,US,UA,US,DE,US,DE,US,BE,US,BE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,CA,US,JP,US,RO,US,GB,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,BS,US,DE,US,SG,US,AU,US,AU,US,DM,US,AU,US,PR,US,EC,US,PR,US,PR,US,PR,US,PR,US,PR,US,PR,US,HK,US,CA,US,GB,KR,US,CA,US,CA,US,SG,AU,US,CN,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,FR,CA,US,AW,US,VI,US,NL,US,NL,US,NL,US,GB,US,JM,BB,JM,BB,JM,KY,JM,US,SV,US,SV,PR,US,PY,US,FR,ZA,US,ZA,DE,ZA,DE,ZA,US,ZA,DE,ZA,US,ZA,US,ZA,DO,US,RU,US,CA,US,AR,US,CA,US,CA,US,JP,US,DE,US,CA,US,DE,US,NO,US,NO,US,NO,US,NO,US,NO,US,NO,US,CA,US,CA,US,CA,US,NL,DE,US,BE,CA,US,CA,US,CA,US,CA,US,JP,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PE,AR,BR,CO,EC,PE,CL,VE,CO,PE,CO,CR,US,CA,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GU,US,CA,US,NL,US,CA,US,IN,US,CA,IE,US,CA,US,JP,US,CA,US,NL,US,AU,PL,CH,SE,US,GD,US,CA,BR,US,DE,US,DE,US,DE,US,BE,US,BE,US,BE,US,DE,FR,DE,US,BE,US,BE,US,DE,US,DE,US,CA,US,DE,US,HK,US,JP,BE,US,SG,JP,TR,SG,US,PH,HK,US,CA,US,JP,US,CA,US,CA,US,CA,US,CA,US,PR,US,CA,US,CA,US,CA,US,PR,US,GB,DE,US,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,GB,KR,SG,US,KZ,VG,US,_,CA,US,DE,US,DE,US,DE,US,CA,US,IN,CA,IN,CA,US,CA,US,CA,US,HK,US,IM,US,IM,US,IM,US,IM,US,IM,CA,US,CA,US,VI,US,CA,US,CA,US,ES,US,ES,US,AU,JM,US,GB,US,GB,US,CA,US,CA,US,CA,US,SG,US,HK,AU,CA,ZA,US,PR,NZ,CA,US,CA,US,CA,US,GB,US,CA,US,CA,US,CA,ES,US,AU,US,CA,US,CA,US,CA,US,SG,US,TR,US,SG,IN,JP,TR,US,TR,US,SG,US,IE,US,CA,US,CA,US,CA,US,CA,US,MX,US,CA,US,CA,US,PR,CA,US,CA,US,_,US,CA,US,CA,US,DE,US,NO,US,GT,JM,US,PR,US,PR,US,PR,US,PR,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,IT,US,CA,US,PR,US,PR,US,VG,US,AU,US,GB,US,MX,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,GB,DE,US,DE,US,BE,US,CH,AU,US,CA,US,CA,US,CA,US,CN,US,CA,US,MX,CL,US,CA,US,MX,US,GB,US,CA,US,CA,US,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IN,US,CA,US,CA,US,NL,US,GB,US,DE,IN,US,SG,CA,DE,SG,DE,IN,US,GB,US,AT,US,CL,US,AU,US,IE,NL,IE,US,ES,US,GB,US,BR,US,HK,US,HK,US,IN,HK,US,CA,US,GB,US,NL,US,GB,NL,GB,US,NL,US,CA,GB,US,IN,CA,US,AU,US,VN,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,BS,US,CA,US,DE,US,_,US,CY,MT,JP,US,IL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,DM,US,GB,US,DK,US,IT,US,NL,US,CA,BM,CA,US,CA,US,CA,US,PR,US,CR,US,GB,US,GB,US,JP,US,GB,US,HK,US,AU,US,CA,US,CA,US,CA,US,CA,US,CA,US,AR,US,CA,US,CA,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,CA,US,SE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DO,US,CO,US,CA,US,HK,US,GU,US,MX,US,CA,GB,CA,US,MX,US,SG,US,GB,US,CA,US,CA,US,GB,US,AE,US,SG,US,IN,US,CA,US,CA,US,AG,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,NL,IE,US,SG,US,GB,NL,SG,JP,US,CA,US,CA,US,IN,US,CA,AG,AI,AG,VG,LC,AG,LC,VG,AI,AG,LC,AI,KN,LC,VG,DM,AG,AI,AG,AI,VG,AG,KN,US,CA,US,FR,DE,US,CA,US,CA,US,CA,US,CA,SZ,US,CA,US,CA,US,JP,US,JP,US,JP,US,EC,US,EC,US,CA,US,ZA,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,US,BB,GD,BB,VC,BB,GD,BB,GD,BB,VC,GD,BB,US,CA,US,PR,US,PR,US,LC,VC,US,CW,US,DO,BS,US,GT,US,PR,GT,BS,CW,US,BS,PR,US,JM,US,BB,LC,DM,GD,BB,VC,BB,US,NL,US,CA,US,CA,US,JP,US,NO,NZ,US,VN,CN,US,_,US,_,US,CA,US,WS,US,BD,US,BD,US,CA,US,NL,US,PR,US,PR,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,VG,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,IN,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,GB,US,IT,US,DZ,US,CA,US,MV,US,CZ,US,CZ,US,CZ,US,GB,CZ,MV,MY,SG,PH,HK,IN,FR,TH,BE,MY,PH,JP,SG,CY,US,CA,MM,US,JM,US,CA,US,HK,US,CA,US,_,US,CA,US,SG,US,CA,US,CA,US,CA,US,CA,US,BR,US,CL,US,CA,US,CA,US,UY,US,UY,US,UY,US,CA,US,ES,US,DE,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,GB,US,JP,US,EG,US,ES,US,FR,IE,FR,US,FR,US,JP,CA,US,CA,US,CA,US,DE,US,DE,US,HK,IT,US,CA,US,CA,DE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,US,CA,US,CA,US,NL,US,CN,US,JP,US,CA,US,JP,US,DE,US,HK,GB,US,SG,GB,US,JP,HK,US,IN,US,AU,HK,US,AU,US,AU,US,AU,US,AU,US,CA,US,JP,US,MX,JP,US,DE,SG,NL,US,NL,US,HK,US,CA,IR,US,_,HK,US,CO,US,DO,US,CA,US,CA,US,CA,US,GB,ES,KR,US,NL,SE,US,FR,AU,PL,JP,US,HK,IE,SG,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,CN,US,CN,US,CN,US,CN,US,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,IN,US,SG,AU,US,SE,ES,PL,US,PR,NG,US,CR,US,CO,US,CO,CA,US,CA,US,CA,US,PM,US,GB,US,CA,US,JP,US,PR,US,AU,BR,US,CA,US,GB,SG,US,CA,US,GB,US,CA,US,CA,US,NL,US,AU,US,AU,US,NL,US,AU,US,CA,US,HK,US,PR,US,CA,US,CA,US,IL,US,DE,AE,SG,DE,US,IN,JP,US,DK,US,NO,US,FR,GB,FR,IT,US,JP,GB,US,IN,US,TW,FR,AU,US,DE,US,GB,US,JP,US,DE,US,BR,GB,US,GB,JP,US,KR,US,JP,US,DE,US,AU,BR,CA,IN,US,FR,DE,JP,KR,PL,US,IE,NO,ZA,US,IN,SG,SE,CH,AE,GB,US,NL,IN,US,ID,US,ES,US,TW,US,FR,US,AU,US,CH,IE,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,MY,US,CA,US,CA,US,GB,CA,US,GB,US,CA,US,CN,US,CN,US,CN,US,IN,US,FR,GB,IE,IT,US,GB,US,IN,US,JP,IN,FR,TW,IE,US,DE,US,GB,US,JP,US,IE,BR,GB,US,GB,JP,US,JP,US,JP,US,DE,US,IE,US,FR,JP,US,IN,US,DE,IE,IN,US,JP,HK,US,FR,US,IN,US,IE,GB,JP,US,IE,JP,US,HK,US,IN,IE,US,IE,US,CA,US,DE,US,FR,JP,US,GB,US,GB,US,IE,US,CA,US,CA,US,CA,US,CA,US,CA,SA,US,CA,US,DE,US,FR,US,DE,US,BE,US,DE,US,FR,US,DE,US,DE,US,BE,US,DE,US,DE,US,DE,US,NL,US,RO,US,PR,US,CN,US,KH,US,CN,US,NP,US,CA,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,ES,FR,US,LC,US,CA,US,CH,US,HK,US,MY,US,CA,US,JP,US,DE,US,CA,US,CA,US,GB,US,_,US,CA,US,SG,US,MY,US,DE,GB,US,IT,US,CN,US,CN,US,CA,US,BE,US,SG,US,ES,US,BB,VC,BB,GD,VG,BB,GD,BB,US,CA,US,NL,US,JM,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,ID,HK,US,IT,US,CA,US,CA,US,MX,US,CA,US,CA,US,BR,US,CA,US,VG,US,CA,GB,US,JP,SG,CA,US,PR,US,_,GB,PR,US,CO,US,PR,US,CA,US,CA,US,NL,CA,US,CA,US,CA,US,CA,BB,GD,BB,BS,VC,BB,GD,VC,BB,VC,GD,VG,US,HK,NL,US,JP,GB,NL,JP,NL,DE,GB,JP,HK,GB,US,NL,US,CA,US,CA,GB,US,CA,US,CA,US,IN,JP,CN,JP,CN,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,VI,US,IN,US,JP,US,DE,US,CA,IT,KR,US,HK,CO,NL,GB,US,AU,US,MX,IN,US,AR,US,JP,US,KR,US,GB,US,IL,IN,US,DE,NL,US,CO,AR,IT,US,IN,JP,US,JP,US,MX,US,AR,US,IN,US,SG,US,HK,US,SG,US,JP,US,MX,US,DE,ES,US,TR,FR,CA,US,GB,US,JP,AU,PL,US,IT,US,IT,US,ES,US,AU,DE,US,SG,US,HK,US,CA,US,AU,US,NL,US,NL,US,CA,US,PR,US,CA,US,NL,US,GT,PR,US,SX,US,JM,GT,US,GT,JM,BS,JM,US,JM,US,JM,US,JM,US,PK,US,HK,US,CA,US,CA,US,CA,US,TR,US,BM,KY,US,IT,US,CA,US,MM,US,CA,US,CA,US,CA,US,CA,US,PL,US,JP,US,CA,US,_,US,_,US,_,US,GB,US,NL,US,SG,US,HK,US,HK,US,NL,US,CA,US,BR,US,CA,US,PR,US,PL,US,GB,US,IL,US,IL,FR,US,CA,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,MF,US,CA,US,CA,US,CA,US,CA,US,JP,US,VG,US,GB,US,CA,US,_,US,GB,US,IN,US,CA,US,ID,HK,ID,US,CA,US,CA,US,DK,US,CA,US,CA,US,HK,CA,US,_,US,CA,US,BM,US,_,US,CA,PR,CA,GB,CA,US,CA,US,DE,US,PL,NL,JP,US,JM,US,GP,MF,US,CA,US,_,US,CA,US,CA,US,DO,US,CA,US,ES,US,GD,US,CA,US,KY,US,CA,US,CA,US,CA,US,AF,US,CA,US,NL,US,NL,US,NL,US,JP,US,_,US,CA,US,CA,US,PR,US,CA,US,DE,US,CA,US,CA,US,CA,DE,HK,US,NL,US,CA,US,PR,US,CA,US,CA,US,_,US,SG,US,CA,US,CA,US,CA,US,CA,US,JP,US,HK,CA,US,CA,US,_,US,CA,US,GD,US,CA,US,AU,US,CA,US,CA,US,CA,US,IT,US,CA,US,CA,US,PR,US,CA,US,CA,US,_,US,JP,US,TW,US,FI,BE,US,BE,FI,US,FI,US,IE,US,FI,US,JP,US,JP,US,BE,US,SG,US,JP,US,CA,US,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,US,FR,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,BR,US,CA,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,DE,US,JP,US,HK,US,CA,US,CA,US,CA,US,IE,US,GB,US,DE,US,KY,US,IN,JP,KR,US,IE,NL,US,NO,US,SE,CH,US,CH,AE,US,PL,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,MX,US,NL,JP,US,JP,US,JO,US,SE,US,MX,US,MX,US,MX,US,GB,US,GB,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,BM,US,CA,US,GB,US,GB,US,UA,US,CA,US,CA,US,CA,US,CA,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,CA,US,PR,SG,US,CA,US,IE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JM,US,CA,US,AG,VG,KN,VG,AI,KN,AG,AI,AL,AG,LC,AG,PR,US,JP,CA,US,CA,US,HK,US,CA,US,FR,US,GB,US,IE,IN,IT,US,IE,FR,US,GB,DE,IN,JP,BR,FR,US,IN,KR,FR,IE,IN,US,GB,IE,FR,IN,US,DE,NO,DE,MT,ES,MK,SA,IT,FR,CH,PL,DK,RU,RO,SG,US,RO,US,DK,CH,ES,RO,US,NL,RO,US,DE,US,RO,ES,RO,US,DE,US,FR,GB,IE,GB,US,SG,US,IR,DE,IT,DE,CH,DE,BE,DE,IT,DE,CY,GB,FR,BR,IN,SG,LT,FR,NL,LT,US,GB,DE,SG,DE,BR,LT,DE,SG,DE,ID,NL,IL,DE,FR,US,GB,DE,SG,FR,BR,RU,SI,LV,RU,IT,RU,NO,RU,FI,LB,IT,RU,GB,SY,PL,RU,PL,RS,DE,UA,TR,UA,TR,UA,GB,UA,BZ,US,UA,GB,DE,UA,US,UA,GB,UA,US,CZ,SK,CZ,SK,CZ,GR,RU,UA,SE,PT,PL,BE,PL,BE,DE,FR,GB,ES,IT,PL,BE,PL,BE,PL,BE,DE,FR,SG,GB,ES,IT,PL,BE,PL,BE,PL,BE,PL,CH,NL,SA,DE,PL,DK,RU,US,GB,FR,US,IE,GB,DE,NL,DE,BE,IT,CH,DE,CH,DE,BE,GB,DE,US,NL,GB,IE,GB,CA,GB,NL,DE,FR,NL,ZA,DE,GB,IE,DE,IE,FR,BE,GB,US,IE,GB,DE,NL,DE,IE,GB,NL,GB,DE,IT,FR,DE,CA,DE,FR,PL,BE,PL,DE,TW,NL,GB,US,DE,NL,BE,DE,GB,US,GB,NL,IE,FR,CZ,GB,US,DE,CA,DE,IT,US,DE,SE,DE,NL,FR,US,TR,GB,DK,GR,BH,BG,LU,GA,US,SS,LU,CF,US,BE,FR,BE,LU,NO,ZM,CF,SS,FR,TD,LU,FR,NL,US,LU,NO,CH,FR,US,FR,US,LU,US,BE,GB,BE,GB,US,BE,GB,BE,GB,BE,GB,BE,GB,BE,GB,BE,GB,NO,FR,BG,MT,GB,DE,NL,DE,BG,DE,IT,FR,DK,FI,CH,IE,IR,US,NL,US,EE,RU,IT,FR,SE,ES,NL,RU,DE,RU,NL,AT,CH,NL,CH,NL,CH,TR,IT,GB,ES,DE,SE,BE,LU,RU,GB,PL,FR,RU,LV,IS,US,GB,PL,ES,RU,IT,LV,RU,LV,GB,ES,RU,BE,SI,DE,CH,CY,CH,GB,CY,GB,RU,PL,KZ,AT,NL,DE,AT,KZ,RU,GB,ES,GB,BE,NG,GB,NG,GB,SA,AE,KW,ES,IE,TR,NL,RU,CH,DE,CH,DE,CH,RU,IT,RU,BY,GE,NL,CH,KZ,RU,CH,BE,CH,GB,AT,GB,NL,SE,DE,IT,US,NO,CH,FI,CH,RU,GB,NO,HU,FR,NO,BA,DE,BA,US,ES,IN,NL,DE,FR,RS,RU,AT,TR,LT,NL,US,IT,GB,FR,CZ,DK,LB,IE,GB,CH,GB,RU,NL,GB,UA,RU,DK,RU,ES,GB,US,RS,NL,US,GB,PA,CY,DE,NO,TR,SA,DE,IE,IT,FR,US,CZ,TR,GB,IE,DE,BG,GB,BG,GB,BG,DE,BG,IR,BG,GB,BG,GB,BG,GB,BG,GB,IT,NL,GB,US,GB,IT,CY,US,GB,KR,GB,FR,GB,ES,BA,BG,CZ,FR,IT,CZ,JP,CZ,BG,DE,BA,LT,TR,RU,PL,AT,SE,NL,DE,RO,FR,RO,RU,SE,RO,IR,RO,FR,GB,DE,AZ,RO,DE,RO,DE,IM,IR,CA,IR,US,IR,GB,US,RO,UA,GB,HK,MD,RO,NL,RO,GB,IT,DE,ES,NL,RO,GB,IR,US,CZ,IE,RO,TR,MX,IT,IR,HR,RO,IT,ES,IQ,KZ,RO,NL,RO,TR,SE,RO,GB,IR,IT,NL,AZ,RU,GB,RU,US,GB,UA,IT,UA,BG,GB,DE,GB,ES,EE,DE,GB,TR,NL,ES,PL,US,NL,TH,RO,DE,RU,NL,OM,IT,IN,ES,PL,RU,DK,RU,BE,RU,BH,RU,BY,ES,PL,NL,US,GB,DE,AT,IT,DE,RU,RS,ES,PL,US,DE,NL,ES,RU,US,DE,US,NL,RU,US,NL,DE,ES,NL,UA,GB,UA,IT,US,PL,SE,EE,US,TR,UA,FR,IT,NL,JP,IE,IT,FR,DE,US,NL,US,PL,CZ,FI,CY,BR,US,FR,BG,GB,FI,SE,FI,SE,FI,SE,FI,PL,LT,SA,IE,UA,DE,NL,RU,PL,RU,RO,RU,FR,RU,UA,SE,TR,UA,RU,PL,US,UA,CH,PL,UA,NL,RU,GB,DE,UA,RU,PL,DE,CZ,DE,RU,FI,RU,DE,RU,BY,RU,US,RU,FI,RU,NO,PL,UA,PL,UA,IT,PL,GB,MD,DE,LT,DE,TR,DE,TR,DE,IN,US,DE,TR,DE,SE,NL,DE,GB,US,DE,BE,SE,MD,US,ES,DE,ID,BG,DE,US,SG,FI,TH,DE,US,NL,DE,SG,GB,NL,BG,GB,SA,PL,RU,FI,RU,AM,FI,IL,FI,IL,HU,DE,IL,KZ,PL,DE,FI,DE,RU,SE,IL,LY,NL,DE,UY,LK,VN,GB,RU,BG,GB,PL,FI,RU,AM,NL,CU,AM,BG,ZA,DE,RU,NL,FI,RU,US,NL,PS,RU,PT,FI,SE,RU,DE,FR,GB,TR,PL,GB,TR,SA,BH,CZ,GE,LV,UA,BE,NL,BE,NL,RU,GB,RO,CZ,IT,RU,KZ,LT,LB,CF,SS,LB,LT,RU,BY,LT,GB,LT,IT,RU,SI,RU,BE,GB,FR,NO,NL,TJ,RU,FI,RU,NL,GB,CZ,PL,KG,FR,NO,GB,RU,NL,SE,GB,AU,CH,RU,IT,FI,ES,IE,IT,GB,AM,CZ,RU,IT,SA,IR,SA,NL,BG,PL,FI,NL,GB,FR,IR,GB,CZ,RS,US,RS,US,RS,FI,RU,NL,RU,DE,RU,DE,US,NL,DE,RU,FR,FI,RU,SE,RU,NO,RU,SE,GB,IE,IT,RU,GB,RU,UA,BE,NL,BE,NL,BE,NL,BE,CH,FI,SE,SA,HU,NO,SI,BG,HU,GB,US,NL,FR,GB,CH,GB,DK,NL,SG,US,NL,SE,DE,NL,GB,TR,US,AT,UA,RU,BG,UA,RU,UA,RU,UA,RU,IL,FR,IL,FR,IL,FR,NL,DE,FR,ES,DK,SE,HR,SE,LV,SE,NA,KE,RU,IT,AT,SA,AT,RU,CA,GB,FR,CA,BG,ES,KG,RU,KZ,RU,NL,RU,DE,BA,HU,LT,SA,RU,NL,EE,BE,SE,FI,TH,NL,DE,HK,SG,FR,NL,DE,FI,GB,RU,DK,ME,RU,NL,RU,UA,NO,PL,AT,IT,DE,FI,RU,TR,NO,US,PL,US,CZ,SA,ES,RU,SE,SA,RU,AE,SE,RU,GB,SA,RU,US,RO,GB,RO,NL,RO,GB,RO,GB,DE,RU,US,EE,FR,GB,RU,DK,RU,DE,CZ,US,GB,US,DE,US,CZ,NO,CH,HU,FI,SI,DK,RU,SK,KG,NL,GB,NL,AT,MD,LB,DE,RU,SE,PL,RU,DE,FR,BE,DE,SA,BG,CZ,RU,PL,AT,IR,HR,CZ,IR,CH,DE,LT,DE,PL,RU,LT,DE,GB,DE,IT,SE,BG,RU,IR,RU,GB,IL,IE,GB,IE,GB,IE,GB,BA,NL,BA,CH,BA,GB,DE,GB,US,GB,IT,UA,RU,GB,FI,KZ,GB,SE,SA,CZ,ES,SA,RU,CZ,FR,SE,IT,EE,LV,LT,IT,RU,ES,SE,LV,NL,CH,GB,BE,NO,ES,DK,RU,LV,ES,GB,LT,IT,NL,RU,AL,IT,GE,AT,CZ,RU,NL,IT,HU,US,HU,DE,GB,US,CH,IT,GB,US,GB,US,NL,SM,PL,AE,RU,RS,BE,DK,MT,KZ,RU,US,ES,DE,US,GB,US,RU,DK,SE,NL,GB,NL,DE,GB,DE,GB,RO,GB,NL,GB,BE,ES,HU,NL,RU,SE,RU,UA,CH,RU,IT,DE,AZ,GB,TJ,RU,IT,BG,RU,SE,AT,JO,CH,DE,PH,NL,PH,NL,FR,GB,NL,KZ,RU,FR,TR,RU,CH,RU,IR,PL,IT,GB,ZW,ZA,BW,CD,ZW,MZ,ZM,LB,FR,NL,DE,CH,RU,IN,RU,GB,ES,FI,BG,US,JP,BG,ID,GB,PA,BG,RU,PL,BE,MD,DE,US,NL,NO,KZ,RU,NL,FR,DE,IT,GB,CZ,DE,US,GB,AE,GB,SE,BE,ES,FR,UA,SA,DK,DE,AL,DE,RS,FR,EE,NL,EE,GB,ES,GB,US,RU,NO,RU,NL,RU,BE,DE,RO,AL,FI,HU,TJ,IT,RS,RU,UA,SK,RU,RS,NL,PL,HR,IT,PL,US,IE,BE,RU,CZ,IE,RU,FR,RU,US,EE,BE,US,RU,HU,UA,GR,UA,KW,DE,UA,RU,IT,GB,RU,CZ,RU,RS,GB,BE,IN,US,BE,US,FR,ES,NO,RU,PL,BE,RU,HU,EE,RU,PL,DK,TR,US,RO,AT,IM,RU,CZ,FR,UA,NL,UA,RU,GB,NO,IT,UA,NL,FI,UA,PL,EE,BA,LV,RU,PT,BE,ES,PL,RS,UA,RU,LU,RU,CZ,DK,FR,NL,RO,DE,RU,NO,PL,RU,GB,NL,PL,RO,PL,RU,PL,_,ES,PL,DE,RU,UA,RU,LT,SE,DE,IE,US,DK,NO,GB,PL,RU,AU,IE,PL,RU,LT,IR,HU,RU,US,DK,GB,DE,RU,IR,MK,FR,ES,GB,RU,GB,SE,FR,GB,NL,FR,RU,FR,DE,GB,BE,GE,KZ,NL,IT,FR,SE,RU,FR,IT,BG,CA,BG,MY,GB,IT,LB,RU,NL,IT,AE,IT,AT,PL,RU,TR,GB,IS,GG,CZ,PL,RU,GB,NO,DE,FR,LB,BE,NL,ES,RU,DE,RU,DE,RU,AT,NO,FR,GB,KW,NL,GB,RU,GB,AT,GB,FR,SK,RU,GB,FR,IT,CH,CA,FR,BE,RU,NL,GB,DE,GB,FR,SE,FR,DE,CZ,DE,LT,SE,CZ,RU,SE,BG,LV,RU,GB,GR,PL,KW,BG,NO,HU,SA,DE,SA,RO,SK,QA,CZ,NL,AT,GB,RU,SE,HU,GR,SE,RU,CZ,IE,DE,NL,US,DE,IE,DE,NL,DE,NL,CZ,LB,CZ,BZ,CZ,RU,PT,PL,CY,NL,US,NL,DE,FR,BG,NL,UA,RU,AZ,DE,DK,DE,DK,AM,FR,RS,RU,KZ,GB,IR,DK,IQ,FR,SA,MT,EE,RU,BH,SE,SY,IR,CH,RU,GB,IT,BE,CZ,GB,DE,RU,IR,UA,OM,AZ,DE,RU,NL,US,CA,RU,DE,TR,DE,LU,ZA,BR,US,TR,US,DE,BR,SA,TR,CZ,FR,LU,RU,DK,UA,DE,UA,DE,UA,GG,UA,IT,RU,FR,BG,BE,BG,CZ,BE,GB,IT,GB,PT,BG,HU,PL,AT,RU,MT,PL,IT,HR,CY,TR,IE,GB,ES,CZ,RU,UA,RU,BG,DE,BG,GB,UA,YE,DE,RU,GB,IE,PT,US,LT,RO,IT,NL,CA,ES,NZ,HK,AU,CA,IT,AT,US,UA,IT,AU,US,IT,NL,US,CA,IT,RU,FR,US,FR,CA,IL,FR,IL,DE,FI,CA,DE,FR,DE,FR,DE,FR,RU,SA,HU,RU,GE,RU,DE,NL,RU,KZ,RU,KZ,RU,BY,GB,SK,LU,GB,NL,GB,US,BG,US,BG,NL,BG,AT,BG,AT,DE,AT,NL,IT,DE,HU,TR,ES,DE,US,RU,PL,JP,RU,KZ,RU,IT,CO,BR,US,TH,ES,JP,PL,CZ,GB,DK,IE,GB,CH,GB,NL,US,GB,US,GB,BR,US,DE,GB,PL,NL,AT,IT,FR,UA,IE,RU,SI,DE,HU,RU,AT,RU,UA,FI,GB,RU,DE,RU,UA,RU,DK,IE,FR,BG,IR,PL,GB,LV,UA,KW,CH,ME,SY,PL,FR,RU,IE,NO,CZ,HK,AU,GB,DK,CZ,TR,SE,DK,RU,MK,IR,LT,DK,CZ,PL,CZ,GB,RU,LT,GB,US,IE,CY,IR,RU,NO,FR,UA,PL,DE,BG,AL,FR,BG,US,IT,FR,BG,SE,BG,US,BG,KW,IT,RU,TR,FR,IT,FR,IT,BR,IT,GB,US,GB,SE,GB,US,GB,US,GB,FR,PL,IE,IT,RU,FR,LT,GB,IT,BY,FR,DE,ES,CZ,GB,RU,FR,BG,AL,AE,TR,RU,PL,CZ,GB,NL,MX,US,IL,ES,RU,CH,DK,RU,ES,DE,GB,IE,GB,UA,GB,TR,SG,RU,SE,IT,RU,US,FR,GB,RU,MK,GB,DE,GB,GE,DE,RU,IT,BE,NL,DE,GB,NL,FR,SE,TR,NL,GB,BE,ES,RU,SE,NL,CH,NL,RU,GE,BG,RS,SE,GR,RU,AL,GR,ES,PL,UA,CZ,US,BG,TR,NL,US,KR,FR,NL,GB,NL,RU,DE,UA,BG,UA,RS,GB,US,AE,SE,NL,US,RU,PL,UA,DE,UA,US,GB,RU,PH,US,SA,US,TR,CH,NL,FR,US,AR,RU,RO,ES,RO,RU,HU,GB,HU,RU,GB,TR,BG,GB,BG,NL,BG,UA,BG,GB,BG,VU,BG,PL,UA,IE,MK,RU,MK,IR,CZ,GB,FR,US,GB,US,CA,US,NL,CZ,US,CH,BR,CL,DE,IE,SG,CO,FR,DE,US,GR,US,BE,HK,DE,NL,IT,MX,SG,US,CA,US,SG,GB,US,GB,DE,GB,US,GB,CA,GB,IT,GB,US,GB,US,GB,GR,BG,FR,LV,RU,NL,DE,NL,DE,ES,DE,NL,DE,NL,DE,CH,DE,FR,LT,IR,IQ,IR,BE,AX,DE,AT,DE,NL,DE,RU,IT,RU,UA,US,ZA,RU,FR,US,PL,IL,US,LU,NL,RU,GB,DE,RU,CZ,NL,RU,KZ,PL,LT,RU,KZ,BG,RU,FI,JO,BG,RU,IS,CH,IS,CH,GN,CH,FR,NO,IT,RU,GB,CH,NO,CH,MT,DE,GB,LV,PL,UA,RU,SE,RU,FR,PL,FR,GB,FR,PL,FR,RU,NL,RU,KZ,RU,KZ,RU,NL,RU,DE,NL,FI,DE,RU,FI,RU,SE,GB,DE,FR,GB,DE,FR,GB,DE,FR,GB,DE,GB,PL,SA,PL,US,HU,US,PL,FR,PL,SA,US,PL,GB,SA,PL,ES,RU,UA,RU,DE,RU,IT,SK,GR,IT,RU,DE,IE,ME,MD,DE,GB,IE,KZ,RU,FR,LU,DE,IQ,DE,IQ,DE,GB,RU,CH,NO,MK,GB,FI,US,NL,CA,HK,GB,US,SE,IT,FR,RU,SY,CZ,BA,RU,DE,KZ,NL,CH,BG,NL,SE,CH,RU,KZ,RU,LT,CH,CZ,RU,NL,BE,BA,ES,DE,UA,SE,DK,SE,RU,NL,DE,KZ,RU,UA,US,TR,US,JP,US,RU,GB,IR,GB,ES,ME,IT,NL,US,NL,US,ES,NL,US,NL,US,JP,GB,BA,DE,FR,DE,FR,IE,NL,RU,FR,ES,NO,PL,RU,GR,PT,SA,ES,SE,RU,IM,GB,SA,BE,FR,BE,ES,US,GB,NO,NL,BY,RS,SA,DK,RU,FR,ES,RU,TR,GB,TJ,GB,AM,AT,FR,MD,FR,IE,CZ,PL,RU,TR,ES,IT,ES,IT,GB,ES,AL,DE,NO,IE,NO,DE,IS,ES,RU,UA,HU,DK,GB,IT,RU,DE,CZ,NL,DE,RU,ES,FR,US,ES,FI,BH,SE,RU,SA,HU,PL,RU,GB,JO,DE,DK,US,RU,NO,HK,US,AL,GB,RU,AT,BE,DE,FR,DE,FR,DE,FR,DE,DK,IR,GB,NO,RU,FR,RU,RS,US,RS,DE,RS,IR,PL,IL,PL,DE,GB,FR,JO,FR,JO,FR,RE,FR,JO,FR,JO,FR,US,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,GH,NG,GN,AE,SG,BF,BE,ES,FR,GB,FR,CD,MA,CI,SN,ML,CM,JO,EG,MQ,RE,FR,BE,IT,ES,GB,PL,ES,PL,NL,ES,NL,DK,FI,RU,CR,AQ,RU,CZ,RU,ES,GB,HU,UA,RU,IT,AT,LU,RU,DE,NO,MT,IT,GB,DE,FR,NL,ES,RU,DE,NO,SE,NO,SE,NO,SE,BA,NL,BE,IT,BA,CZ,SE,US,IL,PL,SE,GB,FR,IM,DE,AT,RU,FI,RU,GB,RU,NL,RU,MD,RU,GB,PL,NL,DE,RU,DE,NL,RU,DE,ES,BE,AT,IN,US,BE,US,BE,RU,FI,IR,DE,US,NL,DE,HK,GB,DE,IT,LI,CH,LI,EE,SE,NO,SE,DE,FR,DE,FR,DE,FR,DE,BZ,NO,RU,ES,RU,FR,IN,IT,US,IT,FR,US,FR,US,FR,US,FR,US,FR,CH,FR,US,IT,FR,ES,IT,MU,CH,FR,BE,FR,BE,SE,DK,SE,RU,DE,RU,GB,RU,GB,SE,ES,DE,UA,PL,UA,US,HU,GB,SI,SE,ES,RU,LU,DE,CH,DE,IT,GB,PL,RU,GB,US,GB,DE,AZ,NL,DE,GB,RU,FI,SE,FI,RU,DE,FR,SE,IT,DK,LV,FR,GB,UA,RU,IT,SY,IL,SE,DE,US,FR,BE,RU,RS,GB,CA,MT,DK,MT,IR,DK,US,PL,BY,US,IR,US,DE,US,ES,RU,DE,UA,US,RU,FI,RU,US,IT,US,NL,US,NL,US,IT,US,IT,US,IT,RU,SE,RU,US,UA,US,RU,PL,LI,BG,KE,RU,DE,DK,IT,KG,PL,RU,KZ,RU,BY,RU,DE,UA,RU,DE,SE,RU,DE,US,NL,US,DE,NL,ES,RU,SE,RU,FK,GB,IT,TJ,FR,US,BR,US,PL,NL,GB,CZ,DE,FR,SA,IL,CH,RS,IT,FI,GB,IR,DE,IT,AT,GB,RU,FI,CH,RU,FR,EG,CH,DK,GB,DE,BG,FR,IR,DE,IR,NL,DE,GB,DE,LT,NL,RU,AT,CH,ES,IT,DE,NL,CN,RU,DE,US,TR,RS,IQ,NL,US,GB,RU,GB,RU,IT,RU,GB,RU,SE,QA,RU,GB,RU,EG,HK,GB,US,EG,GB,EG,GB,HK,GB,DE,EE,DE,UA,GE,NO,DK,SE,DK,GB,US,GB,RU,US,SE,HU,FO,MK,RU,LB,MT,DE,FR,GB,FR,BV,SE,UA,AL,DE,RU,ES,DE,US,DE,CZ,GB,CZ,DE,RU,SE,BG,RU,CZ,NL,DE,DK,AL,SA,IE,CZ,NL,GB,RU,GB,NL,EE,GB,LB,SE,RU,NL,GB,DE,RU,DK,BA,HR,SE,NL,ES,AD,ES,HN,AD,RU,BG,RS,GB,RU,UZ,CH,IT,AT,DE,LV,HK,GB,HK,GB,ES,GB,HK,GB,HK,GB,DE,HK,GB,HK,GB,HK,GB,HK,GB,HK,GB,HK,ES,US,LB,FI,DE,RU,SK,SL,SK,DE,IT,PL,RU,NL,RU,DK,GB,CZ,RU,CZ,DE,BE,DE,FR,GB,FI,LB,CH,CZ,NL,FR,SE,ES,US,DE,GE,GB,IT,NL,BE,NL,RU,SE,RU,DE,CH,BE,CH,BE,SG,US,CH,SE,GB,IT,RU,ES,AE,BG,ES,US,AE,FR,AE,ES,FR,GB,SE,NL,DE,FR,NL,BG,GB,DE,GB,UA,DE,NL,DE,CY,GR,CY,NL,HU,GB,MT,SE,NL,RU,NL,RU,DE,GB,PL,RU,FI,DE,NL,RU,DE,CA,US,GB,IT,SE,DE,FR,DE,FR,RO,NO,IT,DE,AT,NL,DE,NL,DE,CH,NO,AM,SK,GB,PL,SE,GH,RU,DE,GB,RU,DE,CZ,RU,NL,RU,SK,FR,BA,ZA,UG,ZM,KE,_,NG,AO,NG,ZA,DZ,DE,BE,RU,DE,US,IT,SE,DK,IT,FI,GB,ES,IT,BH,TW,HK,VN,DE,AU,RU,BG,ES,DK,NO,DE,LV,GB,AT,FR,BE,FR,BE,FR,BE,NL,BE,FR,NL,BE,RU,SE,LB,RU,CH,NL,CY,DE,LU,RU,AL,DE,RU,CZ,DE,JO,RU,NL,KZ,RU,GB,BE,NL,BE,UA,RU,DK,RU,NO,IT,CA,ES,CA,ES,CA,US,ES,CA,ES,US,CA,ES,BE,ES,CA,ES,TR,DE,AL,DK,BE,UA,RU,IR,KZ,MD,TH,AT,CY,UA,FR,TR,DE,NL,FR,US,GB,DE,SE,BE,RU,DE,FJ,CY,US,CY,LU,RU,AT,SE,GB,SE,GB,RU,GE,KZ,NL,DE,US,NL,RU,UA,CZ,IE,GB,CH,IE,AT,RU,IT,FR,RU,UA,IT,MT,GB,RU,GB,TR,BR,GR,LU,TR,GB,CO,TR,FR,NL,BR,TR,US,KR,US,RS,ES,PL,GB,SK,NL,US,NL,US,DE,RU,PL,NZ,BR,NL,GB,MC,IT,DE,CH,BY,FR,GB,SE,BY,MD,ZA,BG,RU,GB,HU,CZ,FI,DE,NL,GB,BH,SI,CZ,RO,IT,RO,JP,US,RO,ES,RO,BE,CH,CA,RO,AU,DE,HK,US,RO,MD,RO,BG,RO,HU,NL,ES,IT,GR,AT,IE,NL,RU,NL,IT,FR,AT,FR,NL,DE,IT,DE,ES,DE,US,CA,US,DE,DK,GB,SE,GB,SE,GB,IE,GB,BE,GB,AT,GB,IT,IE,AT,ES,BE,ES,GB,IE,GB,AT,GB,IT,BE,GB,IT,GB,IT,GB,IE,GB,SE,IT,GB,ES,GB,BE,GB,IE,GB,IE,GB,ES,IT,IE,GB,CH,IT,IE,GB,CH,GB,ES,GB,NL,IE,SE,DE,PT,ES,GB,IL,IT,KW,FR,FI,DE,CZ,GB,DE,US,DE,IR,GB,DK,BE,NO,US,IT,DK,CH,JP,DE,GB,TR,GB,LT,DE,FI,IT,US,GB,DE,DK,GB,DE,LT,US,DE,PL,NL,GB,ES,IR,DK,IT,IR,IT,CZ,IT,PL,IT,NO,FR,SE,CH,FI,ES,GB,DE,AE,DE,GB,IL,ES,GB,TR,LY,FR,DK,GB,DE,ES,GB,DE,PL,GB,FR,GB,NL,GB,BE,GB,DE,GB,ES,GB,FR,DE,GB,FR,ES,GB,FR,RO,FR,GB,FR,GB,FR,NL,GB,FR,NO,ES,GB,DE,FR,GB,FR,GB,FR,CA,GB,ES,FR,PL,DE,ES,DE,GB,ES,GB,ES,GB,CA,GB,IT,FR,NL,FR,GB,ES,PT,ES,DE,ES,FR,DE,PL,ES,GB,FR,DE,SG,GB,DE,ES,DZ,DE,KM,FR,PT,GB,FR,GB,TR,NL,ES,RO,KE,TR,SA,CZ,GB,FR,RU,GB,AM,GB,FR,GB,FR,GB,NO,LV,IE,LV,RU,GB,BE,EE,GB,FR,BE,RU,DE,FR,DE,GB,PL,SA,SG,HK,SG,HK,SA,SG,NO,BE,CA,BE,CA,BE,DE,SE,DE,NL,DE,JP,BE,SE,FR,DE,GB,RU,FI,DE,SE,AT,BE,SE,DE,SE,US,FR,SE,DE,SE,BE,CA,BE,SE,DE,SE,RU,BE,SE,BE,DE,PL,FR,DE,FR,DE,PL,AE,GB,SE,DE,FR,GB,FR,SE,DE,SE,BE,SE,DE,SE,NL,PL,SE,BE,SE,DE,SE,NL,LT,DE,RU,SA,GB,US,GB,HK,LU,FR,RU,DE,RU,GB,NL,DE,CY,FR,US,RU,DE,SE,LU,FR,AU,BR,DK,ES,NL,RS,FR,KE,RU,AT,RU,KZ,BE,FR,BE,AT,BE,AT,BE,AT,BE,AT,BE,AT,BE,KZ,GB,DE,GB,FR,GB,DE,NO,CH,LI,PL,IT,BH,US,GE,DE,IT,GE,IR,FI,SK,RU,NL,RU,NL,RU,DE,HK,RU,BA,DE,CH,KZ,NL,RU,BE,DE,RU,PT,CZ,DK,GB,DK,US,RU,UA,AT,GB,DE,CH,DE,BG,AU,CA,RS,CZ,MQ,RU,FR,ES,DE,NL,RU,IT,IR,UA,CH,PT,NL,US,CY,RU,ES,SE,HU,IT,PL,IL,GB,SE,DE,GB,NL,DE,IT,RU,DE,ES,FR,CA,FR,CA,FR,CA,FR,CA,FR,GB,FR,CA,FR,US,CA,FR,DE,MD,RS,DK,DE,RU,DE,GR,PL,AT,MT,SE,RU,DZ,RU,AL,DE,NL,LV,DE,FR,DE,FR,DE,RU,LU,DE,IL,FI,NL,RU,SI,PA,IN,BR,PA,GB,VN,PA,DE,US,DE,RU,FR,GB,RU,GB,IT,GB,RU,GB,LU,GB,US,LU,AF,KE,NG,KE,GB,TZ,LU,GB,US,ID,NG,DE,LU,GB,TZ,NG,NL,RU,NL,FR,FI,_,IS,NL,RU,TG,RU,FI,SE,RU,FI,GB,CH,LI,FR,SE,FI,AU,GB,IT,GB,DZ,BY,GB,IR,AZ,DE,AT,IT,GB,RU,PL,RU,NL,HR,FR,RU,KZ,RU,KZ,HU,RU,NL,GB,UA,IE,CZ,MA,LV,RU,GB,EE,DE,IL,RU,IR,RU,SK,GB,TR,RU,ES,DE,FR,BE,RU,NL,RU,PT,ES,IT,DE,PT,ES,GB,PT,ES,IT,ES,DK,SE,DK,SE,DK,US,RU,CZ,PL,RU,AT,HU,GB,NL,DE,GB,RU,SE,IT,SE,IT,UA,RU,IT,BG,ES,CH,SE,GB,FR,GB,DE,GB,NL,GB,IR,HR,YE,FR,DE,RU,TR,RS,NL,US,UA,RU,NO,RU,CH,MT,RU,DE,US,CH,IT,LV,ES,SE,US,IN,US,SE,DE,RU,US,GB,US,CG,DE,GB,DE,GB,US,GB,DE,GB,US,GB,US,GB,UA,RU,CH,ES,RU,LU,RU,GB,ES,NL,ES,HU,NO,CZ,HK,GB,DE,GB,CZ,HK,GB,HK,GB,CZ,FR,GB,RU,GB,DE,CA,GR,ES,IT,GB,CA,IL,BE,NL,CA,US,GB,ES,CA,DE,CA,DE,GR,CZ,DE,GB,RU,AT,_,NL,CY,RU,IL,RU,GB,MX,GB,AT,CH,TR,PL,GB,DE,LT,DK,DE,CH,TR,SE,RU,ES,EG,AT,DE,BE,IR,RO,RU,CH,FR,DE,IS,PL,AM,DE,AT,NL,AT,DE,FI,RU,AT,IR,GB,AE,GB,US,GB,RU,AT,SE,GB,DE,HK,GB,IE,GB,HU,RU,ES,GB,IT,LT,GE,RU,CH,NL,GB,AZ,DE,NL,IT,IN,GE,DE,UA,RU,KZ,HU,FI,DE,SI,HR,RS,MK,ME,BA,IE,NL,CH,KZ,RS,RO,DE,RU,NL,FR,PL,FO,NL,CZ,FR,CZ,GB,RU,AT,FR,AT,GB,AT,DE,GB,ES,GB,AT,ES,SE,GB,FI,RU,GB,RU,DE,GB,HK,FR,CK,FI,CA,DE,RU,AT,ES,GB,FR,US,FR,GB,NL,FR,DE,NL,GB,NL,GB,DK,NL,GB,SE,FR,GB,KG,GB,NL,AT,NL,GB,AT,US,GB,DE,LU,ES,DE,RU,DE,EE,RU,JE,RU,FR,FI,SE,FI,SE,DE,FI,SE,PT,JO,US,JO,US,DE,NL,SA,TR,GB,CA,CY,DE,IT,CY,SA,GB,AZ,EG,AT,IT,NL,US,TR,NL,PL,SE,ES,AU,BR,EE,RU,BH,IQ,IT,JP,DE,NL,ES,RU,UA,RU,CI,TR,SA,NL,SG,NL,FR,US,ES,IN,RO,IN,ES,RO,FI,HU,RU,NL,RU,IE,RU,FR,IT,HU,ES,CZ,FI,RU,UA,FR,GB,CH,IT,RU,DK,RU,JP,NL,HR,ID,BR,IT,BR,SG,IN,NL,DE,RO,DE,NL,DE,RU,NL,RU,SA,ES,RU,GB,UA,IT,RS,IE,RU,CZ,ES,RU,EE,RU,CZ,IT,RU,SE,IT,ES,DE,LU,DE,LB,EG,DE,IQ,SE,DE,FO,FR,GE,FR,AT,GB,IT,GB,DE,AT,GB,AT,UA,EE,PL,NO,_,ZA,RU,GB,RU,UA,RU,DE,RU,IT,AL,NL,SE,FR,NO,RU,GB,IM,DE,IT,RU,DE,IT,CZ,DK,DE,RU,GB,DE,IL,IT,US,KR,US,NL,CZ,IR,DE,NL,FR,JO,AT,US,RU,FR,RU,DE,ES,RU,ME,DE,FR,GB,IT,NL,LT,NO,GB,EG,RU,US,CH,IT,PL,US,NL,FR,DE,PL,NL,LT,BG,HU,US,KZ,QA,IT,GB,IT,GB,IT,IR,IT,NL,RU,NL,BY,_,RU,PL,DE,UA,RU,CZ,US,GB,US,TR,GB,SK,GB,FR,CZ,AE,HK,US,DE,CZ,FI,GB,DK,GB,TR,IT,IR,US,ES,NL,JP,DE,GB,DE,FR,HK,GB,DE,US,GB,NL,IR,US,IR,US,IR,DE,NL,RU,IR,DE,ES,FR,JO,FR,SV,FR,US,FR,HK,FR,GP,FR,JO,FR,IT,NL,ES,CH,FR,CN,IT,DE,IT,GB,FR,IT,BE,PT,NL,US,GB,UA,GB,NL,IT,NL,US,NL,SE,NL,US,NL,GB,NL,LY,NL,LB,NL,LB,NL,GB,SE,DE,IT,NO,RU,FR,BE,FR,BE,FR,RU,SK,KZ,IM,CH,KG,RU,IT,RO,ES,SK,RU,DE,RU,GB,SE,DE,RU,DE,AM,DE,GB,RU,IQ,DE,PT,FI,SE,FI,GB,ES,EE,GB,IR,CZ,CH,RU,CH,SG,JP,US,DE,RU,UA,CZ,SE,BE,SE,BE,SE,DE,YE,RU,FR,CZ,GB,DE,TR,IR,DE,NL,KZ,RU,BY,GB,CZ,BJ,GB,CH,US,GB,DE,IT,GR,SE,FR,CH,FR,BE,FR,BE,FR,BE,FR,ES,CZ,DE,NL,GB,SE,GB,HR,GB,SE,LU,AT,US,SK,FR,IT,NL,BA,NO,DE,SE,NO,AT,GB,FR,AT,FR,AT,IT,GB,AT,FR,AT,GB,HU,GB,AT,GB,AT,ES,AT,GB,DE,AT,GB,AT,GB,FR,BA,RU,AT,SE,CH,BE,CH,BE,CH,RU,SE,HU,GB,GI,GB,MT,GB,MT,LV,HU,DE,RU,GB,ES,LU,CZ,BE,RU,NL,GE,UA,PL,RU,UZ,DK,GB,IT,GB,DE,HU,US,DE,RO,GB,RO,RU,SE,GB,LI,FR,RO,SK,PL,CN,CZ,OM,DK,RU,PL,RU,AT,RU,DK,PL,RU,GB,IQ,NL,GB,BG,IT,TR,US,NL,GB,BG,RU,UZ,UA,SK,UA,TR,CZ,PL,UA,IR,PL,RU,LV,RU,UA,RU,UA,RU,DE,CH,PL,UA,RU,BE,NO,GB,US,GB,MX,GB,ID,FR,GB,US,GB,US,GB,NL,GB,PL,BE,DE,GB,SE,NO,SE,NL,DE,NL,DE,GB,US,SE,US,MX,US,NL,ES,SE,IS,NL,GB,US,CA,JP,HK,NL,US,NL,DE,IT,KR,NL,GB,US,NL,SG,US,FR,AU,NL,US,NL,DE,NL,GB,ES,NL,DE,NL,IL,IE,GB,NL,DE,RU,GB,NL,FR,GB,NL,IT,ES,NO,NL,AT,CH,AT,CH,NL,IT,ES,DE,GB,NL,DE,IT,GB,NO,NL,FI,RU,GB,RO,MD,SG,MD,RO,MD,RO,AU,RO,CZ,RO,US,FR,US,AT,US,JP,GB,US,CH,US,PL,RO,GB,RO,PL,US,GB,FR,NL,SE,RO,MD,RO,HU,ES,FR,GR,PL,SE,GB,BE,AT,PL,NO,MA,PT,FR,RU,RO,FI,LV,NG,IL,GB,KE,NG,CD,NG,GB,IL,GB,UG,GB,IL,US,DE,AU,IN,IT,US,GB,US,IL,GB,IL,GB,IL,DE,GB,IL,CD,UG,GB,TD,IL,UG,IL,GB,IL,GB,MM,CO,IL,GB,IL,GB,IL,CD,IL,UG,IL,GB,US,GB,IL,GB,IL,GB,IL,GB,IL,GB,IL,CM,GB,IL,GB,NG,GB,IL,GB,IL,GB,IL,GB,IL,GB,IL,RU,FR,CZ,GB,RU,DE,RU,IT,RU,PL,RU,KZ,SE,FR,DE,RU,IT,RU,IT,RU,DE,CZ,RU,BE,DE,US,HK,BE,DE,FI,GB,DE,GB,DE,NL,GB,DE,IT,GB,DE,GB,FR,CH,SE,DE,RU,ES,NL,IT,VA,IT,GB,SA,FI,DE,NL,DE,NL,DE,IE,NL,DE,CZ,DK,DE,NL,DE,NL,DE,NL,DE,PL,DE,RU,KZ,TR,SE,DK,SE,FI,SE,AT,IL,PL,FR,CH,RU,AT,SE,BE,MQ,FR,GP,FR,GP,FR,MF,FR,GP,FR,GF,FR,GF,FR,GF,GP,FR,GP,FR,GP,FR,GP,FR,GP,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,JO,FR,JO,FR,GB,IE,GB,IT,FR,GB,NL,RO,IL,DE,IT,ES,VE,ES,GB,IT,NL,SE,NO,SE,DE,FR,RU,FR,IT,FR,DE,US,RU,US,RU,GB,RU,LU,FR,AR,US,RU,SY,IT,RU,NL,RU,FR,DE,ES,DE,GB,FR,DE,CA,DE,NL,FR,DE,FR,NL,DE,FR,NL,GB,NL,GB,NL,GB,SE,NO,SE,CZ,IR,CZ,SE,SY,PH,DE,FR,BG,NG,NL,SE,PT,SE,PT,GB,DE,ES,FR,BE,DK,IT,NO,BG,CH,SG,IT,NO,JP,GB,US,CY,IL,PS,AT,BG,DK,DE,DK,FI,IT,GB,RU,IS,PL,GB,FR,AT,GB,DE,GB,DE,FR,GB,AT,GB,AT,GB,JE,LB,GB,BG,RU,IT,GB,MC,CZ,TR,CZ,GB,DE,GB,IT,GB,RU,CY,RS,RU,AR,RU,YE,CZ,RU,US,TW,US,NL,US,BZ,DE,KZ,PL,DE,SE,IT,SE,IN,CH,BG,FR,SI,IL,PL,BE,US,FI,RU,GR,NL,GB,RU,NO,DE,EE,US,FR,CA,EE,MY,US,FR,MY,US,EE,FR,EE,FR,EE,ES,CY,FI,LI,NO,RU,FI,LT,VN,CO,AU,SE,US,TR,MY,CA,VN,CA,JP,CA,SE,CZ,RU,RS,DE,AU,KR,DE,LU,UA,PL,BA,UA,LU,NL,UA,GB,UA,US,RO,BA,UA,PL,SE,SG,US,GB,SE,CZ,JP,DE,GB,NL,GB,US,GB,RU,CH,RU,CH,RU,CH,SA,FI,BG,MT,BG,BR,BG,AT,BG,DE,IT,BG,SK,RU,DE,IT,SK,CZ,FR,GF,FR,_,FI,ES,DE,DK,ES,CA,ES,CA,GB,TR,IQ,TR,CA,ES,DE,TR,US,DE,GB,ES,DE,GB,US,CA,GB,US,GB,EG,IQ,EG,FI,CH,ES,EE,HU,HR,GB,FI,SE,FI,SE,FI,SE,FI,DK,FI,DE,FI,SE,FI,SE,FI,NO,DK,IT,DE,LT,GB,CH,SE,NL,RO,BG,RU,SY,RU,FR,US,FR,US,CA,FR,CA,FR,CA,US,FR,CA,US,CA,FR,TR,FR,TR,FI,BR,US,PT,US,GB,IR,FI,PT,ES,GB,ES,GB,FI,BE,ES,FI,DK,GB,FI,BE,FI,BE,FI,GB,CH,FI,GB,DK,ES,FI,CH,FI,GB,PL,NL,PL,DE,RU,US,LT,US,LT,US,LT,US,LT,DE,PT,LT,RU,DE,FI,HU,IE,FR,CZ,RU,GB,IT,BE,PL,DK,ES,DE,RU,ES,CZ,HU,UA,GB,DE,GB,PL,IT,SE,IT,DE,GB,NL,GB,NL,TR,BG,JP,BG,RU,NO,BE,GB,LB,CH,PL,GB,NO,RU,BG,EE,SA,DK,UZ,RU,GB,IS,QA,NO,NL,GB,SI,IT,DE,OM,PR,LK,TT,UY,MT,MC,MN,ME,DE,AT,RU,DE,RU,DE,AT,DE,SK,DE,SK,DE,BE,ES,BE,IE,HU,AT,BE,ES,BE,FR,BE,FR,BE,FR,HU,TR,GB,US,HK,JP,SG,JP,GB,US,HK,SG,BE,GB,NL,CZ,AT,DE,FR,NL,MR,RU,TR,NL,RU,GB,VN,GB,US,GB,MX,BE,MX,GB,HK,GB,US,GB,US,GB,NL,GB,US,GB,DE,US,GB,IT,MX,RO,MX,GB,TR,GB,TR,GB,NL,MX,GB,MX,GB,US,TW,GB,MX,GB,DE,GB,US,GB,FR,MX,GB,PT,CN,ES,PL,NL,RU,GB,IT,FR,NL,US,GB,IL,GB,CA,GB,NL,US,GB,NL,ES,US,TR,NL,GB,DK,GB,DK,IL,NL,GB,IL,US,IL,GB,DK,GB,UA,US,GB,NL,DE,IE,FR,SE,PL,ES,BE,CZ,GB,FR,GB,DE,GB,TR,NL,GB,US,IL,US,IL,GB,NO,DE,ES,GB,DE,ES,DE,ES,DE,GB,DE,ES,DE,FR,GB,DE,GB,DE,GB,DE,IT,FR,DE,FR,ES,GB,ES,DE,FR,DE,GB,PL,DE,FR,ES,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,GB,DE,FR,GB,DE,FR,IT,ES,GB,DE,ES,DE,ES,DE,FR,GB,ES,GB,IL,SA,NL,BE,NL,BE,NL,PL,OM,RU,DK,IT,DE,US,BR,US,IN,NO,BE,ES,CH,NL,PL,SG,BR,GB,NL,BR,US,IN,US,DE,OM,IR,FI,SE,IT,AT,GR,AT,SI,NL,GB,DE,GB,IT,DK,DE,CH,IT,LV,UA,RU,SE,HR,DE,AZ,BH,ES,DE,AT,RU,NO,RU,NL,DE,GB,IE,GB,FI,CH,NL,FR,DZ,FR,GB,BE,GB,BE,GB,BE,RU,SE,RU,SE,NO,GB,FI,SA,GB,DE,GB,MA,MM,NP,NG,US,MQ,NL,DE,GB,DE,FR,DE,CH,NL,SE,LT,LB,IQ,RU,LT,IQ,LT,LB,SE,LB,LT,SS,LT,LB,LT,GR,DE,ES,IE,RU,DE,GB,NO,ES,NL,RU,GB,DE,GB,DE,CH,DE,CH,DE,CH,DE,CH,DK,DE,CH,GB,CH,DE,ES,GB,DE,CH,AX,AM,IQ,FI,RU,KZ,NL,EG,CZ,RU,CH,RU,GB,FI,NL,RU,PS,DE,AF,DE,SA,DE,AF,DE,SA,DE,AE,KR,DE,MT,DE,IQ,AE,KW,AE,DE,AF,LY,AE,DE,LY,AE,DE,AF,AE,DE,AF,AE,DE,AE,US,AE,SA,LT,DE,SG,US,LT,NL,CH,DE,US,GB,US,GB,ES,US,GB,KE,CD,GB,BI,US,GB,NG,GB,CD,GB,NO,NG,GB,ZA,AE,GB,DE,FR,GB,US,SG,GB,SN,MX,DE,GB,CI,GB,FR,VG,GB,US,GB,NO,GB,GH,GB,US,SG,GB,US,GB,TZ,GB,UA,DE,CZ,HK,DE,CZ,RU,RO,RS,CZ,RU,SE,BY,FR,BE,NL,RO,DE,AT,DE,IT,DE,IT,DE,IN,DE,GB,GE,DK,DE,JO,BE,DE,PS,IT,ES,SE,SI,HR,SI,BA,RS,MK,RS,HR,BA,MK,HR,SI,MK,RS,PL,DE,GB,DE,NL,GB,DE,UZ,DE,NL,UZ,FR,UZ,IT,UZ,IT,FI,FR,NL,AT,GB,CH,IS,GB,NL,SE,IS,TR,ES,FR,ES,PT,ES,FR,PL,ES,AT,TR,GB,NL,RU,PL,FR,AT,US,AT,KW,CH,SE,RU,CZ,RU,UZ,RU,IE,DK,CH,NL,DK,KW,NL,RU,NL,GB,RO,GB,RO,DE,BG,GB,GR,GB,DE,FR,BG,IR,RU,FR,UA,KZ,NL,ES,CH,GB,DE,GB,AE,RU,VN,MY,DE,GE,PL,CH,ES,GB,IT,GB,NL,CH,NL,LU,LV,FI,GB,IE,SG,SA,FI,RU,IT,RO,GB,NO,AE,FR,DE,TH,NO,FR,NL,GB,DE,GB,NL,CZ,NL,DE,IR,DE,IE,DE,NL,DE,NL,ES,IT,DE,NL,DE,NL,GB,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,US,IL,HR,PT,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,BE,DE,GB,SA,NL,RU,AT,IE,US,GB,BH,GB,DE,DK,DE,IT,RU,GB,DE,LV,TR,FR,PL,FR,IE,ES,JP,GB,US,JP,ES,NL,CZ,FR,BE,US,FR,SG,US,KZ,IT,RU,FR,PL,RU,NL,RU,GB,SE,NL,CH,DE,AT,RU,IT,DE,CH,UA,DE,IT,AT,DK,GB,NL,FR,BE,HU,JP,HU,US,IT,DE,GB,DE,NL,MV,GB,RU,GB,IT,BE,FR,JE,NL,IE,GB,ES,US,UA,US,AU,CH,NL,IN,AT,BE,DE,FR,RU,DE,NL,GB,BE,DE,GB,ES,AM,HR,RU,IT,SE,DE,AT,NL,DE,GB,DE,SK,DE,ES,DE,IE,FR,BE,FR,SE,RU,BG,GB,PL,LV,GB,PL,GB,FI,DE,CH,NO,UA,PL,DE,PL,FR,PL,RU,PL,IT,FI,GR,NO,PL,GB,PL,UA,GB,UA,GB,ES,MT,DE,NG,FR,BW,RU,PL,RU,FI,RU,MD,CH,NL,NO,FI,PL,US,ES,NL,TH,BG,NL,DK,PL,BG,RU,PL,ES,BG,NL,RU,DE,FI,GB,UA,DE,GB,DE,US,BG,FR,PL,PT,CH,SE,FI,SE,FR,PL,FI,GB,RU,FI,US,NZ,IE,HK,CO,CH,GB,TR,US,ES,BR,GB,US,NL,US,GB,HK,ES,IT,IE,IR,SC,KZ,IN,US,SC,IR,US,SC,US,SC,US,PL,LV,US,CZ,BG,GB,FI,RU,TJ,RU,NL,IT,RU,CH,FI,SE,IR,PL,SY,UA,BE,TR,US,FR,US,HK,RU,NL,PL,VG,US,FR,GB,RU,DE,PL,DE,FR,LU,FR,BE,FR,BE,FR,GB,DE,LU,FR,DE,CH,GB,US,GB,FR,GB,US,FR,GB,DK,GB,US,NL,GB,FR,IT,FR,NL,AT,ES,SE,EE,GB,DE,GB,RU,CH,GB,RO,US,RO,US,RO,US,RO,RU,FR,RU,FR,GB,NL,CZ,CY,PL,PA,JP,PA,PL,SK,SE,FR,DE,FR,DE,FR,DE,RU,DE,GB,BR,NO,GB,UA,LT,RU,DE,LB,IT,FR,HN,BR,IQ,FR,RU,LU,ES,DE,US,RU,DE,SE,NL,DE,RU,NL,CH,DE,HK,US,UA,RU,UA,SE,NL,FR,NL,FR,NL,FR,NL,FR,NL,BE,FR,NL,FR,NL,FR,CH,IS,FR,ES,CH,PT,SE,NL,IT,GR,IE,RU,IT,AT,PL,ES,EE,SE,LT,SE,LV,SE,LT,EE,SE,LV,SE,LV,SE,KZ,SE,LV,SE,HR,SE,LT,EE,SE,EE,SE,LT,SE,LT,SE,LV,SE,LT,EE,SE,EE,SE,EE,LT,SE,EE,SE,LT,SE,LT,SE,LT,SE,LT,SE,LT,SE,EE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,MQ,FR,CZ,SE,IE,IT,GR,ES,FR,AT,FI,AT,GB,IT,GB,SE,GB,IT,AT,DE,AT,DE,RU,TR,RU,DE,RU,BE,GB,BE,GB,IT,RU,AT,GB,NL,BG,GB,AT,GB,HU,GB,ES,AT,GB,FR,GB,AT,ES,AT,IM,DE,SE,PL,GB,AT,MD,UA,RU,GB,NL,JM,GB,BG,IT,DE,CH,RU,AT,SE,RU,IT,RU,PL,DE,RU,IE,RU,DE,IT,DK,UZ,RU,DE,RU,UZ,RU,LU,RU,CH,BG,RU,GB,SE,NL,HK,NL,DE,GB,FR,GB,FR,GB,LV,PT,DE,TW,DE,TW,US,GB,US,NO,PT,IT,SE,BG,CH,CA,IL,US,JP,US,IT,CA,IT,CA,RU,KZ,RS,US,IL,FR,GB,IL,NL,IL,RU,GB,CA,FR,CA,IL,US,ES,NL,US,CA,ES,US,HK,US,GB,IL,CA,IT,TR,IL,AT,SA,CA,US,GB,IL,GB,BR,IL,NL,DE,US,CA,AT,IT,IL,US,IL,GB,AU,NG,AT,CA,GB,US,NL,CA,US,CA,SG,HK,RU,PL,ES,FR,AT,GB,AT,FR,GB,AT,HK,GB,DE,AT,GB,AT,GB,US,GB,AT,GB,CA,GB,FR,GB,US,AT,GB,BG,GB,US,GB,DE,NL,DE,GB,FR,GB,AT,GB,AT,GB,AT,US,FR,GB,DE,GB,AT,GB,AT,ES,FR,GB,AT,DE,GB,NL,SE,RU,GR,DE,RU,PL,RU,CZ,PT,LV,SE,NO,DE,PL,RU,PL,RU,DE,LU,FR,SE,PL,DE,RU,DE,LV,GB,PL,DE,AT,NO,AT,FR,NO,PS,GB,IE,GB,BE,GB,FI,DE,RU,NL,ES,SE,HU,BG,HU,RO,HU,RO,HU,RO,HU,RO,HU,RO,HU,BG,HU,RO,HU,RO,HU,RO,HU,BG,HU,FR,GB,ZA,GB,PL,DE,KE,DE,AE,DE,KE,DE,KE,DE,KE,DE,GB,FR,IE,IT,ES,IT,FR,ES,CH,IE,FR,GB,FR,GB,FR,GB,FR,NL,IT,FR,AT,FR,IT,GB,FR,DE,FR,IT,ES,FR,DE,FR,GB,FR,GB,FR,AT,CH,FR,LT,EE,LT,LV,LT,LV,LT,LV,LT,ES,US,ES,DE,ES,SK,CH,CZ,RU,DK,CH,DK,ES,IE,DE,GB,DE,CH,AT,BE,GB,DK,NO,DE,RU,CZ,JP,US,SE,HK,SG,US,FR,US,NL,DE,GB,CH,PL,HK,IT,FR,CZ,ES,US,TR,DE,BE,DE,SE,RU,ES,JO,RU,IT,GB,DE,GB,CZ,GB,SE,DE,GB,ES,CH,AL,NO,FI,SE,FI,AT,GB,IE,GB,SI,HU,DE,RU,CZ,GB,UA,RU,IE,AU,DE,ID,BG,US,IT,HU,DE,GB,US,GB,BG,RU,BG,RS,FR,CH,AO,FR,NL,RU,JP,RU,GB,RU,SA,GB,RU,DE,SA,SE,PL,PT,DE,NL,LT,US,LT,DE,CZ,NL,US,LT,US,TR,LT,DE,IN,LT,TR,DE,FR,US,BR,LT,US,LT,US,GB,US,DE,US,DE,US,DE,US,TW,TR,DE,US,HK,AU,US,TR,LT,US,DE,US,LT,US,NL,LT,US,SG,US,LT,HR,US,LT,DE,LT,US,LT,US,LT,BE,US,LT,US,LT,US,LT,US,LT,US,LT,US,CZ,PA,LT,NL,LT,DE,EE,US,LT,US,DE,US,IE,US,JP,US,TR,US,TR,US,AE,US,LT,US,LT,US,IT,JP,US,AU,SG,IT,US,IT,FI,NL,EG,FR,RU,HK,NO,PL,GB,IT,DE,PL,AT,LV,NL,LV,NO,PL,RU,DE,PL,NL,SI,TR,ES,BG,HU,GE,GB,FR,BE,BG,IT,ES,IQ,GB,AT,NL,FR,DE,CH,GB,NL,RU,US,BE,US,ES,CH,ES,DE,CA,DE,GB,BE,DE,ES,FR,PL,ES,US,SY,PL,US,NL,SI,US,IE,RU,GB,DE,GB,DE,GB,BG,PL,SI,BA,SI,RO,SI,MK,BA,BG,SI,NL,RU,CZ,GB,BG,TR,DE,GB,NL,GB,DE,GB,DE,LT,SG,LT,GB,DE,LT,PT,LT,DE,LT,GB,LT,GB,LT,US,SE,US,DE,SK,RU,RO,RU,PL,RU,RO,RU,UA,CH,RU,DE,RU,EG,RU,IR,NO,US,NO,EE,TR,RU,GB,RU,IE,EE,RU,SI,NO,NL,ES,BR,ES,FR,BE,US,FR,DE,FR,DE,FR,GB,FR,AT,FR,AT,FR,DK,FR,NL,US,IT,FR,IT,NL,US,FR,DE,RU,CH,RU,US,KG,TR,US,RU,FR,PL,DE,ES,RU,FR,CA,RO,MX,DE,RU,NL,RU,NL,RU,DE,GR,NL,RU,BE,RU,FR,US,NZ,FR,UZ,BG,RU,LT,SE,FR,CH,DE,GB,CH,ES,NL,ES,PT,GB,IL,FR,NL,IL,AT,NL,AT,NL,BE,DE,BE,RO,BE,CH,BE,CH,BE,CZ,BE,AT,BE,HU,BE,RO,DE,ES,DE,BE,DE,US,DE,RU,BG,PL,BG,RU,NO,IE,RU,PL,NO,BE,EG,FR,PL,GR,HU,FR,DE,FR,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,SE,NO,GB,IE,NL,GB,IE,GB,NO,SE,IT,GB,HU,CH,IL,FI,ES,RO,EG,DE,FR,GB,DE,GB,SE,GB,FR,NL,DE,FR,GB,DE,IT,FR,CZ,GB,FR,IT,GB,DK,HU,GB,CH,GB,FR,BE,GB,ES,CH,GB,DE,GB,US,SK,DE,ES,NL,GB,NL,GB,BG,NL,GB,IT,NL,GB,DE,BE,FR,ES,DE,CH,GB,TZ,PL,FR,GB,PL,GB,CZ,GB,FR,DE,ES,IT,GB,IT,FR,BE,DE,GB,FR,IT,ES,US,FR,IT,US,GB,IT,NL,DE,FR,IT,BE,GB,CH,IT,PL,US,PL,MD,FI,DK,RO,IT,RU,UA,PL,NO,SA,BH,SA,GB,NL,IL,GB,SE,FR,AE,HU,ES,RU,LV,DK,BG,RO,US,RO,US,RO,US,RO,US,FR,RO,US,RO,US,RO,US,RO,US,RO,US,UA,US,RO,US,GB,US,RO,US,RO,IT,RO,AU,RO,US,FR,CH,FR,FI,LT,FI,IT,KZ,IR,CH,NL,RU,AT,DE,OM,PS,CZ,BG,RU,SE,RO,NO,NL,RU,CZ,NL,SE,NL,SE,IT,SE,SK,DE,LV,NL,DE,KW,NL,AU,IN,US,UA,NL,UA,SE,HR,FR,RU,UA,GB,UA,FI,US,GB,IN,DE,SE,GB,IT,GB,CZ,GB,IM,GB,IM,ES,FR,CH,DK,DE,FR,GG,US,CA,NL,IT,GB,DK,ES,GB,RO,PL,NL,FR,PL,RO,GB,RO,GB,NL,RO,IE,SG,NO,FR,IE,RO,TR,RO,DE,PL,AT,FR,NO,RO,US,CA,RO,CA,US,RO,CA,RO,BO,EC,GT,NP,PE,UY,KR,DE,CA,US,DE,BE,US,GB,NL,US,RO,US,RO,DE,IT,FI,BG,RU,PL,RU,DK,TR,ES,CH,ES,PT,MO,BD,GB,IL,HK,AE,GB,HR,JO,NL,IE,MT,MX,US,AE,SK,DE,NL,RU,KZ,RU,GB,CH,RU,IT,FI,GR,DE,CH,DE,AO,FR,UZ,FR,IT,BE,CA,FR,BR,IT,BF,GB,FR,BJ,FR,PL,IT,SG,IT,BW,GH,CF,CG,ER,ZW,IT,ET,GA,GM,GN,GQ,GW,CI,LR,LS,SG,IT,LU,MG,MW,MZ,FR,NA,NG,GB,RW,SO,FR,MA,CG,IT,RU,MT,DK,BH,SI,CH,SE,DE,FR,TJ,US,NL,DE,ES,CH,US,IL,IT,DE,RU,CH,US,IT,SE,ES,HK,RU,FR,IT,NL,GB,RO,IR,TJ,GB,SI,HR,BE,LU,NL,DE,SE,PL,BG,GB,BG,GB,BG,US,BG,SE,US,NL,US,NL,US,NL,US,NL,US,GB,FR,RU,AT,CZ,DE,GB,BG,PL,FR,DE,IR,RU,LV,DE,NL,IT,NO,IT,RU,DE,FI,DK,SE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,BE,RU,BE,DK,RU,AU,NZ,DE,MY,JP,TH,BE,PL,RU,TR,FI,KZ,EE,SE,MK,SE,RU,AT,FR,RU,IQ,CZ,NL,MD,NL,US,UA,US,ES,BR,GB,LV,FR,RU,TR,CH,RU,ES,GB,FR,LI,IT,FR,DE,RU,DE,FR,US,BR,US,FR,PL,IT,ES,US,ES,IL,HU,FR,CZ,GR,FI,DK,ES,DE,BE,NO,NL,PT,GB,PT,ES,PT,RU,IT,GB,NO,EE,SE,RU,IT,PL,NO,DK,CH,GB,FR,GB,FR,NL,RU,AT,HU,US,JP,LU,GB,RO,CZ,UA,JP,UA,SG,AM,NL,UA,LU,NL,JP,FR,ES,NL,UA,GB,DE,GB,IE,GB,NL,GB,ES,RU,RS,RU,RS,RU,CH,RU,RS,RO,BG,BE,RU,GB,RU,CZ,GB,CZ,NL,BE,NL,DE,RU,HK,RU,EE,KZ,MX,NL,GB,BA,DE,RU,DE,BE,DE,FR,DE,CZ,RU,CZ,LU,NO,RU,HR,ME,BA,AD,IT,LU,GB,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,RU,FR,TR,NL,TR,NL,TR,NL,TR,NL,TR,ES,NL,US,ES,TR,ES,RU,LB,RU,NO,SE,FR,DE,KG,RU,PL,GB,JP,HK,NO,GB,US,GB,TW,US,GB,IQ,BR,PS,RU,NO,RU,GB,DE,NO,GB,DE,NO,GB,DE,NO,NL,RU,HR,RU,US,PS,US,GB,NL,GB,NL,DE,RU,UA,GE,DE,US,NL,GB,PL,ZA,SE,GB,IT,US,GB,ES,NO,AE,IL,GB,SG,GB,US,DE,NL,DE,US,FR,BE,CH,FI,AE,LV,GI,RU,ES,IT,UA,US,EE,US,PL,DE,ES,RU,GB,FR,IS,RU,IT,GB,DE,IT,PL,GE,RU,KZ,FR,SE,GB,DK,RU,TR,NL,GB,US,DE,ES,DE,GB,FR,BG,GE,CZ,RU,IT,IE,AU,ZA,GB,DE,GB,RU,AT,BG,SE,BE,CH,RU,GB,ES,DE,BE,DE,CH,HU,NL,GB,NL,GB,TR,IT,NL,HK,NL,ZA,DE,GB,TR,RU,GB,CZ,GB,NL,GB,MT,SE,NO,NL,NO,RU,FR,DE,FR,IT,BE,ES,DE,BE,GB,CH,NL,BE,NL,BE,NL,GB,RO,DK,RO,US,RO,US,ES,AU,CH,RO,DE,RO,AU,CH,RO,IT,BE,RO,BE,IT,RS,CH,AU,CA,RO,RS,RO,HU,RO,NL,SE,FR,ES,RO,AU,RS,IT,CH,US,IE,RO,HK,SG,HK,SG,PL,RO,BE,CH,RO,CA,RO,CA,RS,RO,BE,ES,SE,US,FR,US,SG,DE,US,NL,CH,JP,US,RO,US,GB,NL,US,CA,FR,DE,RO,AT,PL,SG,BE,PL,BE,PL,DK,SA,BG,IL,FI,DE,JP,AZ,CZ,DE,CY,GB,CY,GB,IR,US,IR,DE,IR,DE,IR,DE,IR,US,IR,US,TR,IR,US,IR,FI,IE,CZ,SK,ES,PT,RU,KZ,RU,KZ,RU,BY,RU,BY,RU,KZ,RU,KG,MN,KG,KZ,KG,KZ,RU,UZ,RU,BY,RU,KR,KZ,ES,KZ,ES,KZ,ES,KZ,ES,RU,KZ,ES,KZ,ES,KZ,GE,KZ,UZ,GE,UZ,GE,UZ,KG,KZ,BY,KG,KZ,RU,KR,KG,RU,KZ,RU,BY,RU,NL,DE,ES,EE,TR,US,TR,EE,TR,US,EE,US,EE,US,EE,US,TR,US,TR,EE,US,EE,TR,US,TR,US,EE,US,EE,US,EE,US,EE,US,EE,US,EE,US,EE,TR,OM,ES,FI,DE,FR,CH,FR,BE,CH,NL,CH,BA,GB,RU,PL,US,HK,PL,GB,LV,NO,RU,TR,BE,NL,FR,BH,NL,DE,NL,GB,NL,GB,AZ,NL,SC,DE,SC,GB,NL,ES,DE,AT,DE,RU,UZ,DE,NL,BE,BR,BE,RO,IT,RO,IT,RO,AT,CH,IT,RU,IT,NL,UA,DE,IE,KZ,RU,HU,GB,TR,GB,NL,SK,GB,AM,NL,US,RU,US,IT,AT,GI,GB,IT,GB,IL,GB,IT,GB,IT,ES,GB,JO,RU,DE,RU,LV,IE,DE,RU,NL,DE,GB,CZ,DE,CZ,DE,CZ,DE,CZ,DE,CZ,DE,CZ,DE,CZ,DE,CZ,NO,FR,RU,DE,GB,NL,IE,CZ,SE,BE,CZ,PS,FR,MT,SE,BE,GB,SE,MT,US,MT,DK,GB,IM,ES,NL,SA,PS,CH,DE,CH,IR,RO,BG,GR,BG,ES,BG,US,BG,GB,BG,DE,BG,FI,SE,GB,DE,FR,NL,FR,GB,BE,DE,GB,BE,DE,FR,NL,DE,US,AU,DE,US,DE,US,DE,AU,DE,GB,DE,BR,US,DE,US,DE,US,DE,BE,DE,US,CL,CY,DE,IT,FR,DK,EE,PL,FR,DE,PL,US,PL,DK,RU,NL,RU,NL,RU,DE,ES,RU,FR,CZ,RU,GB,RO,GB,TR,RU,PL,RU,PL,KZ,AT,GB,AT,PL,SE,SA,SE,FI,IQ,EE,FI,DK,FI,PL,IQ,DE,DK,SE,DE,SA,CH,SA,NO,BG,EE,DE,GB,DE,NL,DE,SE,IS,IR,US,IR,RU,KZ,RU,UA,PL,AT,DE,GB,AR,GB,AR,GB,NO,BE,RU,DK,PL,DK,BZ,FI,DE,RU,ES,CZ,RU,DE,LB,PL,RS,RU,PL,DE,NL,DE,RU,BE,PL,NL,US,RU,KZ,GB,DE,FI,TR,CH,FR,PL,RU,NL,TH,NL,PL,NL,DE,PL,NL,ES,HR,SG,NL,SG,NL,PL,NL,MX,NL,GB,NZ,GB,NL,PL,LV,NL,SE,CH,GB,DK,US,NL,FR,DK,RO,ES,AE,RO,FR,RO,FR,PL,US,IR,RO,GB,DE,AU,RO,IT,RO,GB,RO,DE,RO,GR,RO,FR,GG,FR,RO,LT,RO,IR,US,UZ,IR,DE,RO,IR,RO,NL,RO,IT,RO,NL,RO,IT,DK,RO,US,RO,NL,IR,DK,RO,GG,DK,RO,ES,GG,RO,ES,IT,FR,ES,US,RO,ES,IT,MD,RO,GG,RO,DK,US,PL,RO,ES,IR,RO,RU,RO,GB,FR,GB,RO,DE,RO,GB,IT,FR,RO,IT,DE,GB,DE,GB,IT,DE,IT,DE,EG,DE,GB,IT,DE,IT,DE,IT,DE,IT,DE,IT,DE,IT,DE,IT,DE,IT,DE,GB,IE,DE,GB,DE,LT,CZ,FI,LU,GB,ES,DE,RO,GB,IE,JP,BR,SE,US,GB,HK,SA,HK,GI,RU,TR,FR,CH,BE,DE,NL,US,IT,SE,RU,NO,FI,US,BE,US,BE,ES,NL,HK,GB,TR,DE,US,JP,US,JP,GB,DE,US,GB,DE,NL,MD,GB,BG,TH,ES,FR,MK,RS,KE,NG,US,NL,SE,AT,SI,DE,FR,NL,ES,FR,GB,IT,LB,RU,JP,FR,RU,LT,IQ,IT,DE,IT,DE,IR,FI,RU,GB,RU,HR,GB,BY,GB,US,AT,DE,CZ,BE,PL,CN,UA,DE,BG,DE,PL,RU,IL,RU,ES,GB,GE,US,NL,ES,BA,FI,RU,NL,IT,DK,FR,KR,BE,FR,CZ,FR,IE,BG,DE,AE,EG,GB,NL,RU,BY,UA,US,BR,US,HK,CH,DE,GB,DE,TR,FI,US,FR,GB,DE,US,ES,DE,BG,US,GB,DE,US,GB,RU,IT,IL,NL,BR,US,DE,US,FR,US,DE,US,BR,LU,GR,PL,BE,IL,AL,JP,US,HK,US,GB,US,IT,US,DE,SK,FI,US,ES,BG,ES,BG,ES,GB,ES,BG,ES,CH,BG,AT,BG,AT,BG,CA,BG,GB,SG,US,BG,CH,GB,CH,DK,DE,DK,DE,DK,ES,PL,IS,DE,NO,PL,DE,GB,DE,FR,DE,FR,DE,RS,HR,RS,HR,RS,NL,FR,DE,NL,UA,SE,DE,GB,AT,RU,LT,SE,MT,PL,DE,RU,AT,RU,GB,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,DK,RU,GB,RU,NL,RU,GB,LV,BE,NL,FI,EE,NL,PL,SE,RU,DE,ES,CH,GB,RU,BA,CH,HU,BE,GB,IT,RU,DK,RU,DE,DK,US,DK,GB,MT,GB,FR,RU,DE,US,DE,AT,RU,DE,US,DE,US,DE,GB,AU,NZ,DE,FR,ES,ZA,FR,SA,PL,US,PL,FR,US,PL,JP,TW,PL,US,NL,US,PL,US,PL,NL,PL,TR,SK,ES,GE,HU,UA,US,DE,SG,US,DE,AT,SE,DE,KW,SG,KW,US,KW,RU,MD,RU,US,ES,RU,NO,CY,RU,US,ES,US,BG,US,GB,CZ,DE,ES,BG,US,BG,IT,IR,CZ,US,HK,US,HK,US,HK,US,CZ,PT,SK,RU,IL,ES,NO,EE,LV,US,LV,FR,LV,US,AU,JP,SG,TW,LV,CA,LV,US,LV,US,LV,PL,LV,US,LV,CA,LV,US,LV,US,DE,US,LV,LT,LV,CA,GB,US,GB,US,LV,US,AT,LV,US,LV,AT,LV,CA,US,LV,LT,LV,LT,LV,LT,LV,US,LV,GB,US,LV,FR,GB,DE,NL,EG,IS,IE,FR,KE,GB,DE,FR,NL,NO,LT,LV,DE,FR,CZ,ES,LT,FR,ES,BG,AT,BG,CA,RU,BE,NL,GB,PL,GB,HR,RO,QA,LT,GB,LT,IM,SE,LT,DE,LT,RO,LT,GB,LT,US,LT,US,DE,LT,HK,LT,SG,LT,GB,LT,US,LT,DE,LT,GB,LT,DE,US,GB,LT,US,LT,DE,GB,SE,FR,US,CW,LT,US,BR,US,LT,US,LT,US,GB,LT,US,LT,US,SE,FR,US,GB,LT,PL,US,LT,ZA,IN,LT,GB,DE,GB,LT,DE,LT,MX,US,IN,LT,US,DE,BE,IE,DE,FR,DE,SE,AT,AU,US,SG,JP,CA,US,DK,US,DE,DK,NL,DK,NL,IT,FR,IE,NL,GB,PL,DE,GB,FR,NL,ES,DE,US,SG,CZ,FI,SA,DK,GB,IR,DE,AT,IR,BY,SI,DK,NL,DK,NL,DK,AT,HU,SA,FI,SI,HR,SI,CZ,UZ,RU,DE,RU,ES,DK,GB,US,GB,AT,BG,ES,UA,RU,BG,US,RU,HU,GB,FR,RU,NO,QA,GB,PL,US,LV,CZ,FR,NL,AE,LT,HU,RU,DE,CA,JP,RO,GB,IT,RO,CA,RO,GB,GG,RO,TR,BG,RO,MD,FR,NL,ES,GB,ES,IR,SE,GG,RO,GR,CA,DE,IR,ES,GR,RO,GB,US,RO,IE,IT,RO,SE,US,GB,ES,RO,FR,RO,ES,PS,MD,RO,MD,SE,GB,DE,PL,RO,JP,RO,US,GB,RO,US,GB,IT,RO,IR,FR,CH,GB,FR,RO,GB,IT,US,GB,US,DE,GB,IT,RO,GG,GB,IT,RO,NL,RO,NO,NL,RO,ES,RO,IR,DE,MD,RO,MD,FR,US,DE,RO,SE,RO,IR,IQ,NL,ES,IE,RO,ES,NL,RO,FR,RO,MD,GB,IT,GB,IT,RO,US,HK,GB,ES,PL,GR,RO,TR,RO,GB,TR,RO,ES,GR,RO,BE,MD,FR,RO,PL,RO,IQ,NL,DE,RO,GB,RO,RU,RO,US,RO,NL,RO,ES,GB,IT,DE,GB,NL,GR,NL,RO,FR,ES,RO,GB,IT,ES,NL,TR,PL,NL,IN,SE,AE,RO,US,RO,GB,RO,ES,RO,HU,IT,KR,RO,TR,RO,US,ES,GB,CA,PL,FR,BG,GB,DK,JP,RO,RU,SE,NL,GB,FR,GB,RO,US,CA,GB,AT,DE,US,TR,RO,DE,RO,GB,RO,US,IR,US,MD,CA,RO,GB,CH,RO,SE,RO,GB,GR,US,TR,RO,NL,AT,ES,IT,IR,RO,MD,IR,PS,RO,AT,RO,IT,RO,IT,ES,GB,RO,KZ,RO,SE,NZ,TR,RO,DE,IT,US,ES,RO,US,RO,MD,RO,US,RO,IR,IT,DE,RO,PH,SE,HK,RO,ES,FR,IT,RO,PL,FR,BE,KZ,IR,MD,US,RO,GB,IR,RO,IT,RO,NL,TR,FR,DE,RO,GB,ES,NL,KZ,NL,IR,RO,GB,DE,RO,FR,JO,TR,US,DE,US,NL,SG,NL,AT,IR,HU,ES,IT,ES,RU,DE,RU,EE,DE,AT,DE,RU,IT,RU,CA,RU,LV,RU,SK,RU,AT,NO,AT,BR,AT,ES,UA,PL,CH,IQ,DE,GB,BE,US,BE,US,GB,US,BE,US,SA,PL,NL,FI,CZ,GB,DK,GB,PL,US,UA,DE,PL,DE,US,FI,CH,BR,CH,MX,CH,SG,CH,RO,ES,GB,FR,ES,FR,IT,IE,DK,CY,DK,CH,DK,BE,IL,DK,GB,RU,NL,KZ,SA,UA,DE,GB,SG,GB,FR,FI,PL,SE,HU,BG,BE,EE,BE,EE,BE,EE,BE,EE,BE,CA,EE,GB,FR,PL,FR,DE,GB,FR,GB,PL,LV,PL,NL,FR,FI,NL,PL,CA,PL,GB,NL,ES,CA,US,IT,US,JP,HU,SA,GB,CH,PT,RU,DK,PL,DE,FR,GB,DE,FR,GB,FR,DE,FR,ES,DE,ES,DE,GB,ES,FR,DE,ES,DE,GB,DE,ES,DE,IR,FI,SE,FI,SE,FI,SE,FI,SE,FI,SE,DE,FI,SE,FI,DE,DK,FI,DE,FI,SE,FI,SE,FI,DK,FI,SE,FI,SE,FI,DE,FI,SE,DE,SE,FI,DK,SE,FI,SE,FI,SE,FI,DK,FI,SE,FI,DE,FI,SE,FI,SE,FI,DK,FI,SE,FI,SE,DE,FI,SE,FI,SE,FI,SE,FI,SA,LV,LT,LV,ES,GB,DK,BG,RS,PL,RU,GB,CH,GB,ES,GB,CH,RU,GB,NO,DE,BG,RU,AE,TR,SG,ID,SG,PK,VN,SG,BG,GB,BG,GB,BG,GB,DK,GB,BE,NL,GB,BG,DE,BG,GB,BG,DE,CH,GB,BG,SI,EE,DE,FR,DE,FR,RU,BG,GB,BG,IL,BG,CZ,FR,NL,SE,GB,BG,TR,BG,TH,BG,IT,IE,DE,US,BG,US,IT,BG,GR,BG,CY,GB,DE,BG,IT,DE,US,IT,IQ,TH,BG,DE,LK,RO,DE,IT,BG,AL,BG,CO,BG,LK,BG,AT,IT,BG,BR,BG,DE,BG,NL,AT,AR,BG,NL,SA,BG,IT,BG,DE,BG,LT,BG,LK,BG,RU,IT,JP,LK,BG,DE,LK,BG,IT,LK,BG,LK,BG,IT,BG,IT,BG,IT,BG,IT,DE,IE,BG,US,IE,US,BG,NL,BG,NL,BG,IT,BG,IS,BG,DE,BG,AU,BG,IT,US,BG,GB,DE,SG,LK,BG,US,BG,DE,BG,NL,IT,IN,US,LT,BG,IT,NL,BG,AU,BG,DE,BG,US,AU,BR,BG,AU,BG,LV,PE,BG,US,BG,TR,BG,RO,IT,PH,BG,TR,VN,IL,BG,FR,BG,US,IT,BG,RU,BG,OM,SA,DE,FR,HR,LV,PH,US,NL,US,BG,DE,SA,AU,IE,DE,TH,ES,BG,GB,DE,IE,DE,GB,NL,PT,SK,US,SK,IE,PL,AE,GR,PL,NL,ES,GB,RU,DE,LV,RU,SE,BG,RU,CY,HU,RU,FR,DE,FR,DE,FR,DE,FR,DE,SA,FR,IE,GB,IE,NL,DE,ES,NL,RU,ES,BE,FR,PL,DE,IR,RU,BH,GB,FR,RU,SE,NL,DE,AT,KW,GB,BH,BR,NO,CZ,MD,GB,IQ,KZ,UA,FI,IT,TR,ES,NL,GB,US,IR,GB,FI,GB,NL,BE,ES,RU,CZ,CH,GB,IR,NL,IR,ES,FI,JO,ES,GB,NL,BE,GB,NL,IS,GB,IS,RU,GB,DE,GB,JP,SG,FR,ES,US,DE,NL,RO,RU,DE,JE,RU,GB,SE,DE,GB,NL,DE,JP,CH,DE,US,FR,US,FR,BH,RS,SE,DE,US,HK,DE,SA,UZ,DE,IT,NO,GB,IE,GB,IE,ES,RU,FR,US,FR,DE,JO,AT,ES,DE,CH,AT,DE,FR,UA,BE,NL,FR,DE,GB,RS,GB,BE,RU,ES,US,ES,DK,RU,NL,GB,RU,PL,BE,US,GB,ES,SK,DK,PL,LT,PL,NL,RU,LT,FI,DE,RU,BG,KZ,PL,NL,CH,NL,DE,PL,CH,PL,CH,GR,PL,DE,GB,ES,IL,RU,FR,RU,LU,IT,SE,AM,RU,HU,RU,GB,RO,KZ,BG,GR,BG,AT,GB,RU,JE,GG,JE,UA,SK,DE,CH,RU,GB,PL,GB,CH,UA,GB,RU,GB,LT,GB,PL,NL,GB,FI,GB,RU,GB,RU,BG,GB,SG,BG,GB,BG,IQ,BG,GB,LV,PL,KZ,LT,ES,RU,BA,RU,DE,RU,FR,UA,RU,KH,IR,AT,FR,IT,GB,BG,NO,IT,PL,IE,GB,IE,GB,IE,CH,IE,CH,IR,AE,IR,US,NL,IR,GB,IR,IN,GB,IR,GB,IR,GB,IR,AZ,IR,TR,GB,IR,MD,SE,IT,NL,GB,ES,IT,GB,IT,GB,IT,TR,FR,TR,RU,PL,RU,GB,NG,GH,GB,NG,GH,GB,NL,JP,CL,AR,CZ,DE,AT,US,CZ,US,IE,US,TR,CZ,SE,RU,RS,IT,BA,NL,US,NL,US,RU,DE,FI,RU,NL,US,NL,US,LU,RS,PM,MK,AL,HR,FI,SE,NL,RU,PL,RU,NL,RU,NL,DE,RU,US,RU,DE,RU,IR,RU,SE,PL,FR,GB,NO,BH,IT,PS,GB,DE,BH,HR,BG,IE,GB,IE,GB,IE,BY,RU,GE,SE,IT,NL,DE,RU,ES,FR,DE,GB,US,GB,US,GB,US,GB,US,GB,DE,NO,IM,LU,RU,BG,FI,MC,RU,NL,MD,DE,KE,ZA,DE,ZA,KE,FR,SE,KZ,RU,NL,RU,ES,IT,DE,ES,DE,SE,RU,IT,BG,US,BG,AU,DK,GR,US,LT,RO,BG,IT,BG,SE,GB,FR,DE,FR,DE,FR,DE,FR,DE,FR,SK,SA,RU,CZ,IE,GG,IT,RU,UA,GB,BE,RU,LI,GB,RU,ES,DE,GL,SE,DK,GB,SE,CZ,RU,CZ,SK,CZ,CH,NO,ES,PT,ES,SA,GB,DE,GB,DE,US,FR,US,DE,FR,NL,DE,NL,NO,RU,SE,CH,FO,NL,MK,FI,RU,SA,SY,AU,BE,FR,DE,SE,GB,IT,JP,NL,NO,PL,RU,CZ,FI,IT,RU,FR,BG,NO,SE,NO,SE,NO,SE,NO,SE,NO,RU,IT,ES,IE,ES,HU,NO,GB,ES,GB,DE,CZ,DE,CZ,DE,CZ,DE,CZ,US,FI,AT,LT,NL,LT,US,LT,FR,DE,SE,DE,SE,NO,SE,HU,DE,AT,DE,RU,LT,IR,RU,ES,IR,DE,IS,NO,_,ES,RU,DE,UA,LV,PL,UA,FR,BE,FR,GB,CZ,IT,RU,ES,FI,IS,IT,DE,GB,FR,UA,FR,TR,UA,TR,FR,UA,ES,IE,NL,GB,IS,HU,SG,HU,TR,US,DE,AT,IE,RU,HU,RU,US,UA,RU,US,BE,RU,UA,RU,NL,GB,PL,CH,GB,NO,SE,KZ,RU,UA,AZ,DE,UA,RU,FR,NL,RU,ES,GB,US,DE,FR,BE,RU,DE,UA,PL,PT,RO,NL,FR,FI,EE,GR,BE,DE,FI,DE,PL,SI,RU,BH,RU,FR,IT,FR,CM,KE,UG,ZA,CG,FR,CI,FR,CM,IT,FR,GH,FR,IT,FR,PT,CG,FR,SO,FR,IT,CM,GB,IT,AT,BE,BF,IT,CD,FR,GR,BJ,NG,GB,IT,ZA,CF,IT,KE,GR,FR,UG,DE,ER,ES,ET,FR,DE,GR,IT,CH,GA,ES,BW,CD,IT,CI,CD,NG,GB,FR,PT,IT,ES,IE,CD,AL,EG,QA,IT,GB,ZM,IT,GM,IT,US,ES,US,IT,GB,NL,GB,NL,GB,IL,GB,IL,NL,IL,GB,FR,GB,MT,BG,RU,GB,DE,BG,RU,KZ,DE,GB,DE,LU,DE,RU,SE,HK,SE,HR,LU,NL,US,NL,GB,NL,HK,NL,BE,NL,CZ,DE,GB,DE,MC,SA,BE,HU,BE,US,HU,US,BE,GB,AU,US,BE,HR,KH,HU,BE,HU,US,KR,HU,GB,HU,IN,HU,BR,US,HU,US,DE,US,HU,KR,HU,TR,HU,LU,HU,US,RU,NL,RU,NL,RU,NL,RU,US,NL,RU,PT,GB,ES,GB,IE,GB,IE,GB,DE,IT,GB,DE,GB,IT,DE,IT,GR,DE,IE,GB,IT,ES,GB,ES,GB,ES,IT,DE,ES,DE,GB,UG,ZA,GB,TR,GB,GE,GB,NL,SK,DK,GB,FR,GB,ES,GB,ES,GB,RU,SA,CH,BG,US,BG,US,FR,FI,CH,UA,DE,AL,JP,NL,GB,SC,GB,NL,RU,GB,TR,IT,US,GB,US,DE,US,DE,UA,PT,GB,US,GB,US,GB,FR,US,GB,US,GB,RU,GB,RU,GB,US,GB,US,GB,DE,RU,DE,US,LT,US,IN,US,PL,US,LT,US,DE,US,IT,ES,US,HU,US,TR,US,LT,SG,BE,US,AU,DE,US,CW,LT,US,IT,US,CA,US,JP,US,LT,US,LT,US,LT,MY,US,DE,GB,US,GB,NL,US,LT,IT,DE,US,ES,US,KR,US,DE,PL,DE,NL,US,GB,US,DE,RO,NL,ES,FR,IR,NL,IR,SE,CH,NL,UA,FR,US,IE,SG,IE,KR,JP,US,NL,US,DE,PL,AT,RU,UA,RU,US,BY,LA,DE,GB,US,NL,GE,ZA,FR,IT,NL,DE,AT,IL,DE,LU,DE,NL,DE,IL,NL,RO,BE,TR,NL,RS,LB,NL,GB,NL,ES,DE,LT,US,AR,NL,US,DK,UA,MD,CZ,FI,CA,UA,HK,FR,SG,OM,PT,JP,NL,PL,NO,DE,RU,IL,IT,IL,DE,FR,CY,AU,BG,RU,NL,RU,KZ,RU,PL,FR,PL,BR,FR,DE,NL,FR,SE,RU,SE,RU,NL,FR,SE,IT,US,SE,GB,ES,FR,BE,US,GB,IT,DE,PT,NL,ES,GB,DE,FR,US,GB,BE,SE,FR,GB,FR,NL,AT,FR,SE,RU,SE,IT,DK,FR,BE,FR,DE,IT,FR,GB,ES,DE,SE,FR,US,RU,GB,DE,NL,FR,ES,FR,US,FR,US,GB,DE,GB,FR,IT,GB,FR,DE,FR,ES,DE,PL,FR,BG,DE,ES,DE,FR,DE,BE,DE,FR,IT,FR,ES,ZA,FR,NL,LT,TR,DE,FR,SA,ES,NO,DE,MQ,MF,MQ,RU,IE,RU,DE,GB,AT,GB,DE,GB,DE,FR,GB,HR,RU,FI,LB,IS,IT,ES,PL,RO,HR,IE,SE,RU,NL,LV,FI,TR,DE,US,NL,FR,BR,DE,CA,GB,IT,GB,DE,PA,DK,US,NL,IE,UA,RU,PL,NL,RU,DE,RU,KZ,GB,US,RU,NL,RU,NL,GB,NO,GB,DE,CH,GB,CH,NL,ES,UA,FR,UA,DE,RU,US,IT,GB,PL,ES,RU,PL,UA,CZ,RO,LV,IE,RU,CZ,DE,RU,GB,UA,PL,RU,NL,RU,NL,TR,RU,RS,AT,RS,US,IN,RS,US,DK,US,DE,NL,RS,US,RS,RU,NL,RU,NL,DE,NL,DE,RU,NL,RU,NL,RU,SE,AZ,CZ,IR,FR,RU,DK,CZ,BG,PL,AT,PT,ES,PT,FI,DE,MD,KZ,DE,FR,CH,RU,GB,DE,GB,RU,UA,FI,JO,PL,GB,ID,GB,DE,RU,CZ,ES,FR,BE,GB,FR,BE,FR,GB,BE,FR,BE,FR,BE,US,BE,FR,GB,NL,FR,JP,HK,BE,GB,TR,BE,AU,BE,US,BE,US,BE,SG,GB,FR,SG,FR,HK,FR,AE,DE,FR,BE,FR,BE,FR,BE,FR,ES,FR,IT,FR,BE,FR,NL,FR,NL,BE,NL,BE,NL,BE,NL,GB,ES,NL,DE,CZ,RU,RO,GB,RU,CZ,IT,NL,PL,IT,RU,NL,RU,AE,RS,CZ,AT,GB,JP,NL,AT,DE,AT,DE,FR,MK,CZ,IE,GR,RU,BH,IT,GB,PL,MX,SE,RU,PT,GB,DE,CY,US,SE,IR,SE,DE,RO,FR,US,RO,GB,MD,ES,SE,ES,GB,IR,ES,GB,TR,GB,US,GB,TR,AU,US,DE,MD,GB,IT,RO,IT,ES,IT,GB,NL,MD,ES,GB,IT,NL,ES,IT,NO,ES,IR,RO,US,TR,ES,DE,US,TR,RO,GG,GR,RO,MD,NL,IR,MD,FR,IE,NL,FR,RO,GB,RO,DE,RO,NL,GG,DE,NL,IR,RO,IL,NL,RO,ES,KZ,ES,RO,GB,RO,SY,GB,NL,IQ,GB,RO,GB,US,NL,RO,IR,GB,RO,ES,KZ,GB,PT,SE,RO,IR,RO,IT,GB,MD,SE,FR,RO,ES,GB,NL,RO,PL,RO,ES,US,RO,FR,IE,RO,CA,RO,IR,GB,KZ,SY,IT,RO,IR,RO,IR,RO,PL,RO,GB,ES,RO,GB,ES,HR,RS,NL,ES,RO,IT,AU,RO,US,NL,IR,NO,RO,ES,IR,MD,RO,US,ES,NL,US,RO,IR,RO,IR,GB,RO,GB,US,GB,DE,RO,GB,RO,DE,MD,ES,DE,AU,IR,RO,IT,SY,GB,IR,NL,US,IN,RO,TR,IR,RO,ES,RO,SE,MD,IR,TR,IT,MD,RO,ES,NL,TR,EG,RO,GB,US,AE,SG,US,SG,US,MD,IT,NL,IT,SE,IR,RO,DE,RO,MD,NL,ES,GB,RO,GB,BG,RO,NL,RO,NO,RO,CH,MD,GB,NL,RO,TR,RO,GB,RO,NL,GB,IR,PL,ES,AE,IR,NL,TR,RO,NL,RO,CH,RO,GG,MD,NL,GB,US,NL,US,FR,RO,ES,RO,IE,TR,IR,KZ,BD,NL,RO,AM,EG,GB,IR,ES,FR,ES,PL,ES,TR,GB,MX,IR,RO,SG,RO,NL,GB,IT,RO,DE,IR,LT,FR,IR,RO,AE,IR,GB,MD,RO,ES,IT,FR,RO,CH,ES,FR,RO,ES,RO,NL,PL,RO,SA,RO,RS,RO,NL,HK,RO,KZ,ES,RO,IR,RO,GE,NL,GB,DE,GB,RO,GB,ES,IR,GB,RO,NL,BE,DE,RO,CA,RO,ES,RO,US,RO,NL,IR,GB,RO,US,RO,GB,RU,GB,IE,RO,IT,MD,PL,LV,AE,US,KZ,ES,IE,SG,RO,ES,IR,RO,IR,RO,IL,RO,CA,KZ,IT,FR,DE,GB,RO,FI,IR,IT,RO,GB,FR,IT,FR,RO,IR,RO,GB,IR,AZ,KZ,DE,RO,IR,AZ,NL,RO,IR,MD,RO,GB,GG,US,NL,GB,IT,ES,BE,US,GB,ES,GB,RO,GB,NL,US,DE,IR,MD,NL,GB,FR,RO,GB,CA,GB,RO,NL,ES,IE,DE,GB,RO,IR,RO,IR,GB,CH,GB,SE,RO,DE,NZ,RO,TR,NL,ID,RO,IR,LU,IR,RO,US,IR,KZ,ES,FR,RO,GB,RO,IL,IR,RO,ES,IR,GB,RO,IL,MD,DE,GB,NL,ES,DE,ES,AU,FR,ES,DK,ES,RO,TR,RO,GB,MD,GB,NL,TR,RO,MD,IR,NL,RO,TH,IR,RO,GR,US,RO,DE,GB,DE,ES,FR,NL,US,DE,US,RO,GB,FR,RO,DE,RO,NL,KZ,RO,ES,IR,ES,RO,IR,ES,RS,SG,ES,US,RO,US,SE,RO,FR,US,RO,IR,RO,IR,RO,ES,RO,US,RO,MD,RO,MD,RO,FR,IT,RO,UZ,MD,NL,PL,RO,MD,RO,ID,DK,ES,US,RO,DE,GB,RS,GB,NL,RO,GB,TR,ES,BR,NL,IT,IE,GB,ES,PL,DE,RO,ES,US,IR,RO,SA,IT,US,RO,ES,IR,RO,US,GB,RO,GB,ES,IT,PL,GB,US,RO,GB,RO,NL,RO,IT,US,LT,RO,PL,RO,AR,RO,SA,RO,LB,SA,RO,US,CO,GB,PK,RO,GB,RO,FR,GB,RO,KZ,GG,RO,IL,RO,TR,RO,US,RO,ES,RO,MX,RO,IR,ES,US,RO,ES,RO,PK,GB,RO,IR,US,IR,FR,DE,GB,DE,IR,RO,TR,RO,DE,RO,ES,PL,GB,IT,PL,RO,IR,NL,MD,RO,DE,BR,RO,DK,NL,IL,AM,IT,FR,RO,IT,FR,RO,KZ,RO,ES,RO,US,GB,FR,NL,GB,PL,RO,DE,US,RO,FR,RO,SG,IT,MD,RO,IT,US,ES,RO,IR,AZ,IR,GB,RO,US,GB,CA,TR,RO,IR,DE,RO,IR,BE,FI,GB,BE,RO,IR,GB,AU,RO,MD,AT,RO,SY,RO,SE,NL,IT,LU,RO,IR,IL,GB,IR,US,IR,LU,IT,US,RO,GB,RO,RS,RO,AU,SE,IL,IT,RO,GB,RO,GB,IR,TR,RO,GB,RO,FI,IR,US,RO,CA,BE,IR,GB,RO,KZ,MD,IR,ES,MD,RO,US,RO,DE,RO,US,RO,GB,RO,US,IR,MD,RO,ES,GB,GG,RO,ES,MD,RO,IT,RO,IR,SE,NL,RO,GB,RO,IR,CA,GB,RO,PL,ES,NL,AE,NL,GB,PL,GG,RO,SG,GG,MD,IR,RO,IR,RO,KZ,IR,NL,DE,RO,FR,RO,MD,IR,IT,RO,US,RO,ES,PL,RO,IR,RO,KZ,RO,TR,SG,DE,IT,IR,IT,TR,NL,US,RO,US,RO,IL,GG,RO,DE,IT,RO,GR,GB,RO,NZ,RO,TR,US,IR,ES,NL,ES,TR,RO,ES,IR,US,PL,BR,DE,JP,US,JP,MD,NL,CH,DE,MD,HU,RO,US,RO,GB,US,IR,FR,RO,KZ,MD,GG,RO,IR,GR,IR,RO,IT,RO,PL,ES,JP,RO,GB,IR,TR,GB,IR,SE,RO,SE,DE,FR,AU,RO,KZ,ES,IL,ES,GB,RO,ES,GR,RO,GB,RO,MD,ES,RO,MD,GR,US,CA,GB,RO,TR,IM,RO,FR,IR,IE,AU,IT,IR,RO,NL,ES,IR,RO,ES,IR,IT,ES,MD,GR,RO,BE,LU,IR,ES,PL,IT,IR,SG,KZ,DE,FR,US,BG,DE,PL,RO,GB,IR,RO,HK,IT,PH,RO,US,FI,GB,RO,GR,RO,IT,RO,IR,GB,AU,RO,AE,SE,MD,US,HK,DK,NL,TR,RO,FR,RO,IT,RO,EC,ES,MD,RO,IR,RO,BG,IR,US,RO,IR,GB,RO,CH,RO,IR,US,RO,US,RO,TR,IT,RO,IR,GR,RO,IR,SY,RO,IR,RO,DE,RO,NO,RO,GB,RO,ES,RO,IT,ES,US,RO,SE,DE,IT,IR,SE,ES,RO,US,DE,RO,GB,RO,US,VG,GB,IT,SE,RO,ES,KZ,ES,RO,ES,NL,DE,GB,IR,GB,US,RO,IR,US,GB,IT,DE,SE,DE,SE,AE,SE,AE,ES,NL,RO,IR,US,FR,US,FR,RO,IT,US,RO,US,ES,CH,RO,DE,AT,NL,AT,DE,RS,RO,IT,ES,PL,DE,RO,MD,RO,NL,US,IR,IT,IQ,RO,IR,RO,GB,NL,IT,RO,MD,HU,RO,ES,GB,GR,RO,NL,DE,IT,ES,NL,IT,DK,RO,GB,RO,SG,ES,IT,US,TR,DE,US,CA,RS,RO,GB,GR,CH,AE,RO,DE,GB,DE,RO,GB,DE,IR,SY,RO,NL,ES,RO,FR,ES,RO,US,RO,TR,AE,US,RO,US,AE,US,RO,TW,RO,GB,US,JP,RO,IR,LT,PL,LT,NL,RO,NL,IT,SE,RO,IR,RO,CA,GB,ES,RO,GB,IM,GB,RO,AE,IM,RO,DE,AT,DE,AT,DE,PL,FR,IT,NL,IE,CZ,AT,GB,RU,UZ,RU,NL,RU,NL,RU,TJ,GB,RU,NL,RU,IS,NL,DK,GB,NO,IT,GB,RU,AT,NL,DE,NL,US,NL,UA,TR,FI,DE,BG,GB,IE,GB,DE,NL,RU,GB,DE,RU,NL,CH,FI,GB,PL,US,DE,NL,AT,DE,GB,KZ,BE,RU,IM,GB,US,DE,RU,PT,TR,UA,GB,DE,NL,RU,GB,ES,GB,DE,GB,RU,IT,KZ,IT,RU,CZ,UA,RU,SK,PL,DE,FR,ES,DE,RU,SE,TR,GB,ES,HU,SA,RU,LB,PL,RU,PT,RU,NL,DE,RS,LV,LT,LV,LT,LV,CZ,RU,BA,RU,PT,SG,PT,US,LT,US,LT,CA,LT,IN,LT,DE,IN,FR,NL,GB,LT,US,LT,GB,US,NL,GB,US,CA,US,SE,CA,US,TR,US,GB,US,BR,DE,LT,GB,US,JP,GB,LT,GB,DE,GB,US,MX,US,GB,DE,GB,US,GB,US,GB,FR,MX,US,FR,BR,LT,FR,IN,LT,AU,GB,FR,US,LT,SG,GB,MX,IN,LU,IN,DE,IN,NL,ID,BE,US,LT,US,FR,GB,US,AE,LT,NL,US,LT,US,LT,GB,LT,GB,FR,HU,MX,US,DE,US,LT,US,LT,US,LT,US,LT,SG,US,CA,SI,BR,US,LT,US,PT,US,DE,US,LT,US,LT,US,FI,LT,US,BR,US,IE,US,MX,BR,NL,GB,SG,LT,US,LT,US,LT,NO,US,BE,LT,US,MX,LT,US,DE,US,DE,FR,US,PT,BR,US,LT,US,CA,LT,US,NL,BR,LT,IN,US,LT,US,LT,BR,US,DE,GB,US,LT,US,AR,TW,GB,US,GB,LT,FR,US,JP,US,ZA,US,LT,FR,US,MX,DE,LT,US,CA,US,CA,LT,US,FR,US,LT,GB,LT,DE,FR,MX,FR,MX,LT,US,CA,TR,US,LT,FR,LT,BE,US,LT,US,DE,LT,US,LT,MX,US,GR,US,LT,IN,US,MX,US,EE,LT,US,FR,LT,US,MX,LT,IN,US,MX,US,LT,US,LT,US,LT,MX,US,GB,LT,AL,LT,US,MX,GB,US,LT,US,RS,US,LT,US,IN,LT,US,LT,US,LT,IT,RO,IE,ES,HU,RO,IL,ES,SI,HR,SI,DE,SA,IR,AT,DE,GB,FR,GB,FR,GB,FR,GB,RU,DE,CH,GB,FR,TR,GB,NL,UZ,BA,DE,NL,DE,SA,US,NL,SA,HU,RS,HU,DE,FR,IS,HU,AU,HU,OM,AZ,BH,HU,IT,RU,RO,US,CA,US,RO,CH,GB,NL,CA,US,RO,DE,CH,GB,FR,SG,US,GB,US,RO,CA,US,RO,CA,RO,US,AU,MD,DE,GB,DE,ES,US,DE,US,IE,GB,US,GB,SE,US,DE,FR,US,GB,ES,DE,ES,DE,NL,GE,AD,GB,IT,PL,IT,BG,IT,BG,IT,PL,GB,IT,CZ,CH,IT,NL,DK,SG,PL,GB,RU,NO,PT,FR,SE,IS,PL,NO,UA,RU,DE,HR,IR,RO,FI,DE,GB,BE,NL,DE,ES,FR,GB,IE,GB,IE,GB,IE,GB,IE,GB,IE,GB,IE,GB,PT,GB,US,GB,IE,GB,IE,GB,IE,GB,IE,GB,ES,GB,IT,FR,DE,GB,RU,DE,RU,GB,RU,IL,RU,FR,PL,HR,SK,PL,RU,CZ,RU,PT,DE,RU,KZ,PL,SE,MY,DE,GB,IE,UA,IT,DK,NL,AU,RU,FR,UA,ES,PL,UA,NO,HK,FR,RU,IT,US,RU,GB,DE,JP,RU,AT,IE,GB,IE,GB,IE,GB,IE,GB,IE,FR,MK,CZ,PL,SM,IT,HU,DE,DK,CH,BG,CH,DE,RU,UA,FR,JP,UA,US,UA,JP,UA,US,UA,TW,UA,JP,MY,JP,GB,MD,GB,BG,GB,US,GB,CZ,JP,SG,US,CH,GB,AT,DE,US,NL,US,CZ,DE,LB,PL,NL,ME,AT,DK,RU,IT,RU,PL,RU,IT,YE,RU,SE,SA,FI,CZ,PL,CZ,PL,CZ,LT,CZ,GB,DE,NL,CH,LT,ES,US,IT,BG,RU,NO,IE,DE,AT,DE,LV,PL,GB,RU,PL,RU,PL,RU,DE,RU,US,RU,GB,IR,GB,IR,NL,GB,PL,DE,RU,ES,FI,NL,PL,TR,CH,PL,UA,DE,RO,IT,RO,UA,LV,HR,DE,US,DE,GB,DE,FR,NL,IT,AT,GB,BE,NL,SK,CH,CZ,GB,DK,ES,DE,US,GB,AT,SE,DE,FR,AT,ES,IT,US,GB,IT,AE,HU,IT,IE,IT,DE,GB,DE,GB,CH,GB,BE,FR,IT,GB,FR,ES,FR,IT,SE,DE,BE,DE,GB,NL,GB,DE,BE,DE,GB,DE,BE,GB,DE,GB,IT,GB,DE,GB,IT,GB,NL,GB,IT,GB,IT,GB,FR,GB,IT,GB,DE,KW,CZ,RU,DE,IE,MK,NL,PL,CH,GB,PT,GB,CH,TR,NL,SG,NL,RU,GB,IE,RU,IT,RU,IT,NO,GE,NL,GE,NL,GE,AT,NL,GB,AT,LT,UA,DE,BE,AE,NO,FR,RU,GR,GB,DK,US,PL,IE,FR,GB,DE,BE,LU,BE,ME,DE,GB,RU,CH,US,CH,LV,DE,IL,RU,US,IL,RU,DE,NL,RU,KZ,RU,IL,RU,NL,RU,NL,RU,US,RU,US,UA,GR,QA,SI,HK,GB,BR,PA,GB,RO,BR,HK,HU,GB,PA,MX,EE,GB,EE,CA,EE,SI,US,GB,FR,GB,HK,RO,GB,US,ID,FR,GB,DE,KR,FR,MX,FR,US,FR,BR,IN,FR,UA,HU,IN,NO,FR,HK,NL,SG,IN,DE,GB,FR,PE,ID,UA,BR,FR,US,GB,PE,FR,GB,FR,GB,MX,US,DE,FR,SG,TH,AU,HK,US,IN,US,DE,US,FR,DE,FR,PA,FR,GB,DE,GB,AU,PA,DE,HK,PA,GB,PA,EE,GB,PA,EE,DE,GB,PT,BG,RS,CH,KZ,NL,BE,KZ,AZ,IR,EE,BE,AZ,EE,BE,EE,BE,EE,BE,AZ,NL,BE,AZ,EE,AZ,IR,NL,DE,RU,IT,GR,DE,US,IT,GR,US,IT,GB,IT,DE,US,RU,EE,IR,NO,LV,IT,DK,NL,RU,NL,AT,RU,KE,RU,CZ,IS,IL,RU,SE,NO,SE,NO,SE,GB,RU,DE,RU,KZ,RU,KZ,UZ,KZ,RU,KZ,RU,US,RU,US,RU,GB,RU,LV,RU,MX,US,AE,PL,US,PL,IT,HK,RU,KZ,RU,HU,FR,PL,GE,RU,NL,LV,RU,UZ,RU,DK,DE,NO,JP,SG,NL,DE,JP,DE,SI,CZ,SE,GB,IE,FR,PL,CZ,IR,RU,EE,SE,FI,CH,UZ,RU,IL,SA,KG,PL,DE,GB,NL,ES,GB,NL,CZ,GB,RO,DE,RO,SK,RO,CZ,PS,TR,PS,US,PL,RU,DK,GB,DE,NO,GB,CH,GB,UA,NL,GB,HR,DE,RU,UA,CY,FR,LV,ES,RU,NL,LI,CH,NL,RU,FR,RU,CZ,DK,RU,CH,RU,NL,RU,IT,RU,CO,UZ,DE,GB,DE,GB,LT,HR,RU,IT,AT,US,AM,US,PA,US,AM,US,LB,RU,GB,FI,NL,KZ,CZ,NO,FR,NO,DE,RU,NL,PL,RU,CZ,PL,GB,TR,CA,SA,HK,GB,MX,TR,UA,MX,TR,US,PL,US,TR,HK,US,UA,LV,UA,HU,FR,RU,KW,RU,GB,DE,RU,IT,GB,NO,GB,ES,CH,UA,RU,TR,BG,RU,SE,BG,RU,NO,LV,RU,NL,RU,GB,NO,NL,US,AU,NL,US,SE,NL,US,DE,ES,NL,FR,GP,FR,GP,FR,GP,FR,GP,FR,GP,FR,GP,FR,MF,FR,MF,FR,GP,FR,SK,FR,ES,FR,ES,FR,ES,FR,ES,FR,US,FR,JO,LU,HK,FR,HK,FR,BE,HK,FR,DE,ES,IT,RO,PL,FR,RO,FR,RO,FR,NL,FR,ES,FR,ES,RO,FR,ES,FR,LV,SE,LT,SE,EE,SE,EE,SE,LV,SE,LV,EE,SE,LT,LV,SE,LT,SE,LT,SE,LT,SE,LV,LT,SE,PE,SE,LV,SE,LV,SE,LT,SE,LT,SE,LT,SE,EE,SE,LT,LV,SE,LV,LT,SE,LV,CA,LV,SE,LT,SE,LT,SE,LT,SE,LT,SE,PE,SE,NL,BE,AT,IT,SA,JP,RU,GB,NL,GB,AT,DE,SY,RU,BG,GB,RU,PL,RU,UZ,RU,UZ,RU,PL,RU,KZ,PL,RU,KZ,RU,SI,TR,ES,SK,CZ,DE,CZ,DK,DE,RU,EE,GB,SE,GB,DE,FR,AE,RU,IT,HU,RS,HU,GB,CH,GB,US,GB,BE,FR,DE,ES,UA,SE,RU,NO,FI,PL,NO,PL,DE,PL,FR,NO,PL,GL,GB,LI,BE,IM,GB,PA,GB,IL,DE,PL,ES,BE,IL,PL,CH,DE,IL,PT,GB,PL,NL,CH,NL,US,UA,RU,MD,KZ,RU,UZ,RU,BY,LV,FR,GR,BG,UA,IT,GB,DE,BG,US,FR,US,NO,US,IT,JP,BG,IE,IT,BG,US,RO,ES,US,BG,GB,BG,GB,BG,ES,BG,US,BG,IR,BG,NL,IR,LB,DE,BG,IR,BG,IR,BG,US,BG,CH,BG,IR,CH,IR,MY,GB,BG,IR,BG,IR,SA,US,IR,BG,US,DE,BG,CH,IR,US,BG,IR,DE,BG,CH,IR,BG,IR,DE,IR,NL,TR,PL,SE,DE,IR,FI,DK,US,DK,GB,DE,SA,NO,KW,LU,KW,GB,IL,GB,IT,GB,RU,IE,DK,CZ,AT,BE,CZ,IE,LU,NL,PL,SK,PL,AE,IT,DE,KW,RU,TR,IN,GB,TR,RS,UA,KE,MZ,IS,UA,GB,CH,RU,NL,RU,RS,KW,ES,FR,IE,DE,SG,US,DE,NL,GB,NL,GB,AM,GB,DE,FR,IN,JP,FR,US,JP,ES,AM,CH,RU,NL,US,NL,GB,PL,MT,LT,KZ,LT,UA,DE,US,FR,GB,AZ,PL,TR,RU,NL,RU,GB,PL,ES,NL,CZ,GB,RU,GB,RU,FR,DE,AM,NL,RU,LT,HU,LV,RU,FI,RU,LV,UA,NL,GB,RU,DE,FI,DE,ES,PL,IQ,TR,IQ,IR,JO,RU,DE,SE,RU,CY,CH,CY,TR,US,NL,RU,CZ,RU,NL,RU,NL,RU,DE,RU,NL,US,SG,AZ,RU,TR,ID,AG,RU,NL,RU,IN,GB,NL,SG,FR,GB,IN,FR,ID,LT,BR,IR,GB,RU,SE,SC,EE,PL,SC,CH,CZ,DE,AM,TR,IE,GB,NL,DE,US,DE,US,AU,DE,KR,AU,JP,HK,FR,AU,FR,AU,FR,FI,GB,DE,SE,AU,GB,FR,GB,FR,DE,CZ,GB,IT,RU,ES,IR,GB,FR,RU,MX,VE,MX,ES,IT,FR,IT,RU,TR,CY,AF,RU,GB,DE,GB,AT,ES,AT,HU,FR,RU,GB,MY,AU,RU,NO,LV,RU,BE,CH,BE,FR,FI,UA,PL,SE,DE,SE,PL,IE,NL,US,UA,US,UA,GB,FR,US,HK,US,PA,HK,US,ES,US,PA,HK,UA,PA,UA,US,ID,US,PA,UA,FI,PA,UA,PL,UA,US,PA,SI,UA,PA,UA,GB,PA,UA,FR,UA,GB,PA,UA,HK,ID,HK,US,HK,ID,HK,PA,US,DE,PA,US,UA,US,PA,US,DE,CZ,US,PA,US,UA,RS,US,PA,US,PA,US,CH,HR,UA,ID,DE,PA,GB,NO,ES,SK,SE,EE,SE,EE,SE,EE,SE,EE,SE,US,RO,ES,CH,GB,GR,RU,ES,GB,DK,NL,FR,AE,TR,NL,RO,SE,HK,US,AU,BG,OM,GB,SI,BA,DE,IS,US,GB,US,DE,DK,AE,SI,GB,RU,JO,ES,RU,FR,PL,ES,US,JP,MD,RO,GB,GR,CH,US,SE,AT,GR,DE,UA,DE,US,AE,SE,AL,SE,CH,US,MD,AZ,NL,FI,US,FI,DE,RU,CZ,SI,MD,RU,DE,RO,NL,ES,US,RU,CZ,CH,NL,ES,US,FR,RU,DK,AT,IR,FR,GB,FR,GB,FR,DE,FR,DE,FR,GB,FR,GB,FR,DE,FR,GB,DE,FR,GB,FR,GB,LV,NO,CH,NL,CH,HK,CH,LV,IL,HU,NO,RU,AT,FR,KZ,RU,GB,AZ,GB,DE,HU,CH,GR,CZ,BG,GR,KW,AT,NL,LV,AT,GB,DE,IQ,DE,LB,DE,AE,DE,IT,RU,IE,SE,GB,RU,TR,NL,PL,GB,RU,DK,PL,RU,HR,PL,RU,TR,IT,RU,UA,DE,PL,ES,IE,NL,RU,GB,DE,AT,DK,RU,GB,IT,RS,IL,DE,SY,HU,RU,DK,SE,FI,PL,UA,RU,EE,ES,GB,CZ,HU,PL,RU,IR,KZ,JP,PA,KZ,US,KZ,SA,HU,RS,HU,SK,RS,BA,BG,US,CO,CY,BG,NL,GB,NL,GB,NL,DE,US,NL,NO,SE,NO,RU,BY,GB,NL,CH,PL,AU,PL,GB,PL,FR,FI,PL,DE,NO,CH,PL,DE,PL,FI,AU,US,ES,PL,FI,RS,PL,DK,GB,AT,DE,RU,FR,TR,IT,TR,ES,FR,GE,DE,GB,DE,AE,DE,SA,RU,GB,LB,GB,FI,FR,BE,DK,DE,NL,IR,GE,NO,DE,CY,UA,PL,DE,PL,RU,DE,RU,DE,RU,DE,KZ,RU,RS,IR,GB,PL,SI,RU,GB,DE,NO,RU,AT,GB,AT,GB,AT,GB,AT,GB,AT,GB,DE,IT,GB,AT,DE,GB,US,GB,IR,TR,RU,JP,SC,US,SC,US,FI,GB,CA,HK,MF,JO,ES,CZ,AD,RS,LT,IT,PL,IT,LV,FR,PL,UZ,RU,TR,RU,US,AU,LB,RU,TR,RU,RO,RU,NO,US,RU,CY,DE,US,BG,LT,FR,PL,AE,CH,AE,PL,SE,RU,PL,IE,PL,RU,GB,NL,FR,RU,NO,UA,PL,GB,UA,RU,NO,US,JP,US,BH,DE,DK,NL,IT,PL,NL,RU,PL,CH,LV,GB,RU,IR,FR,GB,NL,FR,NL,HK,BE,FR,GB,DE,NL,GB,RU,CZ,DE,CZ,DE,CZ,SE,DE,KZ,UA,GB,NO,RU,MT,ES,UZ,GG,FR,RU,US,GB,SE,US,GB,PL,IT,DK,FI,DE,BE,LU,IE,LU,DE,RU,DE,BA,SK,SE,FR,TR,DE,RU,CH,RU,CZ,AD,RU,UZ,RU,AZ,US,GB,US,BG,US,BG,RU,PL,IQ,GE,TR,DE,GB,RU,IT,SE,CZ,NL,DE,UA,AT,DK,PL,RU,KG,RU,PL,RU,SG,NL,RU,DE,ES,GB,FR,PL,RU,CH,UA,GB,ES,SE,NL,PL,IT,UA,RO,PL,RU,UA,RU,UA,PL,RU,LB,UA,RU,GB,PL,UA,DE,PL,GB,US,UA,NO,PL,NL,MK,PL,GB,BG,US,RU,PL,SE,NO,CH,IT,CA,JP,GB,PL,GB,PL,US,CH,RO,JP,TJ,FR,NL,ES,UA,RU,PL,FR,RU,IT,IL,CH,RO,IT,NL,GB,GR,LV,UA,DE,PL,EE,RU,UA,PL,RU,CH,FR,ES,PL,KR,GB,FR,GB,RU,NL,US,GB,NL,GB,PL,UA,CZ,DK,RU,PL,RU,ES,BG,PL,UA,RU,UA,RU,PL,IE,UA,PL,BG,UA,PL,RU,US,UA,FR,US,RU,GB,PL,EE,GB,SE,PT,NL,RU,ES,IR,GE,NL,RU,CA,RU,NL,RU,PL,FI,SE,GB,SE,FI,RO,US,UA,DK,SE,UA,GB,RO,GB,CH,UA,TR,UA,RU,FR,ES,RU,SE,GB,UA,GB,UA,RS,DE,BE,UA,DE,RO,DK,FR,KW,GB,PL,DE,NL,CH,RU,IL,GB,DE,RU,PL,DE,GB,KW,DE,UA,NL,PL,CH,PL,IT,PL,CH,AT,RU,GB,DK,PL,GB,JP,IS,RU,PL,UA,PT,RU,LV,PL,FR,DE,PT,RU,SE,PL,RU,UA,HU,UA,CH,PL,NL,US,BE,SG,MY,RU,FR,PL,RU,FI,RS,NL,GB,DE,NL,RU,PL,DE,RO,CW,JP,UA,FI,HR,RU,AT,UA,RU,DE,NL,UA,RO,NO,UA,PL,RO,RU,LU,RU,FR,BG,PL,RO,RU,SE,ES,TR,DE,RS,AT,PL,RO,PL,DE,UA,DE,PL,DK,RU,RO,NL,UA,GB,ES,UA,SE,DE,NL,GB,RO,UA,SA,UA,PL,AT,UA,RO,RU,ES,DE,CZ,PL,NL,GB,RU,AT,NL,UA,GB,RU,PL,RU,TR,DE,CH,RO,SI,RU,DE,GR,SE,UA,PL,NL,IL,FR,GB,RU,UA,DE,RS,RU,RO,GB,UA,GB,CH,PL,GB,RO,AT,NL,CZ,RU,FR,DE,RU,SE,UA,AT,RO,DE,SE,KZ,DE,UA,PL,NL,CH,DE,UA,EE,UA,PL,EE,AM,UA,RU,GB,NO,PL,IT,AT,NL,GB,RU,AM,CZ,RO,PL,UA,PL,RU,IT,SK,US,DE,US,RU,UZ,UA,RU,UA,NL,PL,HU,GB,UA,BG,ES,UA,RU,DE,UA,RO,DE,UA,LV,UA,NL,DK,UA,FR,GB,DK,DE,GB,UA,SK,DE,ES,PL,NL,US,GB,BG,UA,DK,RU,DK,RU,SE,RU,LV,UA,FR,UA,RU,PL,UA,RU,UA,DE,GB,US,SE,CY,LB,UA,RU,DE,UA,RU,UA,IL,RU,UA,NL,RU,UA,FI,PL,GB,RU,IL,RU,BE,CZ,ES,RU,UA,FR,GB,UA,PL,RU,FR,UA,RU,UA,RU,IT,US,PL,RU,FI,RU,UA,PL,GB,IE,RU,ES,RO,DK,IN,SI,UA,DE,GB,UA,IL,CH,HU,CH,GB,UA,CH,GB,RU,PL,LV,GB,DE,PL,DE,GB,FR,IE,AT,BE,NL,PL,GB,FR,UA,DE,RU,UA,DE,UA,ES,RU,GB,ES,DK,DE,FR,AT,RU,PT,ES,TR,UA,US,SI,DE,RU,PL,CY,CH,MK,DE,TR,SA,KZ,TR,ES,TR,DE,RU,IL,RU,CH,PL,RU,PL,NL,DE,CH,PL,GB,DE,UA,IT,RU,DE,NL,FR,PL,PT,LV,SE,AT,PL,_,SI,PL,RU,GB,PL,KZ,_,NL,RU,FR,NL,GB,AM,PL,SI,DE,LT,UA,GB,PL,BG,FI,PL,FR,NL,TR,FR,BE,RU,AT,IL,RU,HU,BG,UA,KW,SE,DE,DK,DE,UA,IT,AT,UA,DK,PL,IT,AT,RU,PL,NL,DE,UA,CH,RU,LV,DE,IT,FR,RO,PL,RO,DE,SE,GB,PL,IT,DK,NL,DE,CH,NL,RU,NO,PL,NL,PL,GB,BG,PT,GR,RU,DE,PL,DE,AT,SI,FR,DE,SE,PL,AT,DE,HU,FR,NL,NO,SE,BE,DK,IL,EE,FR,RU,PL,RU,SI,RU,HR,PL,RU,BA,RU,PL,SE,DE,RU,PL,DK,DE,CH,US,RU,PL,UA,NL,UA,MD,DK,DE,PT,AT,GB,DE,BE,IE,PL,UA,PL,UA,DE,SA,DK,DE,UA,GB,FR,GB,BG,US,RU,AT,_,GR,DE,IR,RU,FR,PL,UA,DE,BE,RU,RS,IR,GB,KZ,DE,PL,SI,GB,PL,RU,IR,UA,IL,IR,SK,DE,UA,RU,UA,IT,RU,AM,LB,NL,CY,GB,NL,DE,UA,RU,ES,RO,PL,HU,IL,PL,LT,MT,PL,NL,DE,SI,RU,NO,SE,DE,CH,RU,SE,IL,AT,GB,HU,TR,IE,DE,CH,HR,GB,HR,RU,DE,US,IM,HK,CH,LV,SG,DE,PL,ES,UA,IL,PL,GR,PL,CH,IL,PL,ES,_,RO,PL,UA,SA,ES,MC,GB,TR,KG,DK,RU,PT,PL,DE,IL,ES,DK,US,ES,SI,GB,CH,PL,BG,GB,SI,PL,MD,IS,NL,GB,CZ,UA,PL,SI,RU,UA,AT,PL,CZ,FI,RU,BG,GB,FR,RU,CZ,HU,RU,GB,DE,GB,CZ,SI,DE,GB,CZ,DE,LT,NL,DE,IT,RU,LT,IT,RU,AT,PL,NL,RU,FR,DE,GB,US,GB,NL,CH,SA,UA,KZ,DK,TR,DE,NO,UA,NO,RU,CH,RU,AT,SI,VG,PL,_,RU,NL,CZ,DK,JP,RO,IT,GB,IE,DE,_,RO,DK,CH,NL,RO,FR,UA,IT,RU,DE,AM,NL,CH,RU,ES,MK,RU,FR,SI,NL,BG,SE,DE,PL,DE,FR,RO,RU,UA,PL,DE,IT,GB,PL,RU,GB,MX,FR,UA,NL,GR,PL,RU,PL,UA,RU,NL,UA,PL,UA,GB,RU,LV,PL,UA,US,PL,UA,RU,PL,RU,GB,PL,RO,DE,PL,DE,UA,ES,RO,UA,IT,RO,FR,DK,UA,ES,CH,US,RU,GB,KZ,GB,RU,KZ,SE,UA,RU,ES,PL,SI,FR,US,IT,UA,PL,US,DE,MT,UA,FR,IT,CA,TJ,US,KR,TR,RU,UA,PL,JP,DE,JP,ES,UA,LT,RU,AE,RU,KZ,RU,LV,PL,CZ,RU,NL,RU,SK,CZ,UA,RU,PL,RU,CH,SE,IT,UA,RU,RO,RU,US,PL,CZ,GE,DE,IT,GB,FR,MD,RU,NL,RU,PL,NL,DE,ES,RS,GB,UA,CH,PL,UA,GB,NL,UA,DK,NL,AT,BG,RU,UA,RU,UA,RO,NL,ES,GB,NL,AZ,NO,NL,RU,DE,KZ,RO,UA,RU,UA,RU,UA,RU,UA,NL,UA,RU,GB,BE,RU,DE,RU,DE,CZ,UA,LT,SI,RU,UA,RU,NO,RU,RO,RU,PL,UA,FI,AT,CH,PL,UA,GB,RU,UA,RU,PL,SE,UA,RU,IL,PL,RU,ES,PL,RU,ES,PH,RU,NL,BR,NL,AE,UA,RU,GB,PL,TM,RU,GB,UA,RU,SA,RU,UA,RU,UA,PL,KZ,UA,SI,EE,US,CH,FR,RU,SE,RU,UA,PL,GB,UA,RU,LV,GB,NL,RU,UA,FR,NO,DE,PL,RU,DE,UA,DE,UA,NO,IL,RU,DE,IN,UA,NL,RU,PL,SE,UA,RU,UZ,RU,FR,RU,DE,RU,DE,PL,IT,PL,RU,KZ,DE,NL,DE,RU,PL,RU,SE,DE,UA,RU,CH,DE,UA,GB,DE,JP,RS,RU,UA,LV,RU,LT,US,AU,DE,CZ,UA,PL,UA,RU,UA,FR,UA,ES,RU,UA,RU,PL,RU,PL,BG,PL,RU,DE,GB,RU,CA,CO,RU,AM,AT,UA,RU,PL,GB,UA,AT,BG,SG,KR,RU,UZ,RU,GB,IT,RU,ES,RU,DE,UA,PL,RU,DE,NL,DE,CZ,TR,IQ,FR,RU,KG,RU,DE,SE,UA,BA,PL,DE,IT,RU,PL,CZ,NL,US,FR,GB,PT,FR,RU,DE,GB,ES,SE,RU,AM,RU,CH,IL,FR,RU,UA,NO,RU,UA,RU,DE,RU,NO,RU,NL,CZ,AM,RU,UA,RU,NL,UA,ES,IN,PL,US,RU,GB,IQ,PT,NO,US,RU,PL,GB,RU,GB,US,UA,PL,AT,FR,CH,RU,LU,RU,CH,PL,GB,DE,UA,NO,RO,PL,RO,DE,NL,FR,CH,RU,GB,DE,RU,NL,RU,AE,IT,LT,RU,IT,DE,RO,NL,RO,GB,PL,RU,PL,CZ,RU,NL,IT,PL,DE,RU,AT,CH,LT,PL,UA,HU,AT,PL,RU,GB,RU,DE,RO,UA,RU,IT,RU,LT,SA,NL,BG,IE,DE,GB,RU,US,DE,PL,FR,RO,NL,LU,DK,RU,UA,AR,US,_,PL,SE,FR,IR,PL,GB,DE,UA,DE,GR,AT,ES,RU,FR,UA,AT,RO,JP,US,PL,UA,DE,RU,UA,RU,AT,UA,GB,FR,DK,IT,DE,GB,AT,RU,PL,NL,RU,BE,UA,RU,US,DK,RU,KZ,RU,PL,US,PL,DE,IR,US,FR,HR,RU,KG,RU,DK,IL,GB,RU,UA,PL,GB,PL,UA,GB,BE,RU,PL,US,RS,PL,UA,PL,US,DE,RU,FI,SE,RU,UA,IL,DE,RU,NO,AT,RO,UA,RU,GB,SE,RU,GE,NO,DE,RO,UA,RO,PL,DE,LI,RU,AT,RU,IR,RU,LT,RU,PL,IT,GB,LT,PL,NO,RO,DE,CH,PL,RU,DE,SG,JP,US,FR,CH,GE,NL,RU,PL,CZ,BG,GB,UA,NO,US,PL,BE,NL,GB,CH,FR,UA,GB,DK,RO,RU,GB,NO,RU,NO,DK,CZ,NL,CZ,GR,RU,IL,PL,UA,RU,GB,UA,DE,RU,FR,US,GB,SE,GB,SA,DE,AT,NO,FR,PL,GB,BE,DE,IT,EE,US,DE,IE,RU,IE,IS,RU,NO,UA,EE,SI,GB,RU,CH,DE,TR,RU,DE,RU,HU,BE,DE,RU,FR,SK,RU,PL,DE,NL,PL,AU,NL,GB,NO,PL,AT,GR,DE,NL,NZ,NL,BG,DE,UA,GB,NL,DE,KR,TR,DK,PL,IE,DE,RO,AM,NL,PL,CH,AT,SE,CH,DE,RU,FR,IL,NL,SI,RS,RO,AT,GB,PL,UA,GB,LB,UA,AT,GB,HR,SI,FR,SE,HK,GB,PL,DE,US,NL,GB,CZ,HR,GB,UA,GB,IL,RU,RS,RU,GB,RO,GB,SI,RU,NL,HR,IL,CH,RU,PL,RU,PL,RU,HR,UA,IL,GB,RO,DK,GE,UA,GB,IL,NO,RU,PL,HR,IT,UA,DE,SA,DK,DE,RU,MD,IR,NL,IR,RU,NL,SI,AT,GB,RU,FR,CH,SE,NL,PL,RO,CH,FR,PL,RU,MD,RU,PL,RU,SE,PL,DE,UA,IT,NL,MD,UA,TR,SI,AT,DE,KW,TR,RU,MD,FR,NZ,FR,RU,BE,DE,FR,RO,RU,AT,IL,GB,BE,SE,FR,RO,FR,SI,FR,CH,US,NL,NZ,UA,RU,NZ,RO,HK,FR,RU,GB,HK,NL,GB,DE,HK,PL,RU,PL,NL,GB,RU,BA,SE,SI,AT,CH,HR,RO,US,NL,BG,RU,IE,UA,US,NL,FR,PT,RU,SI,FR,PL,NL,RO,UA,FR,DE,PL,CH,FI,NO,HR,AT,GB,FR,UA,GB,AM,DK,PL,CH,DE,_,FR,RO,DE,GR,PL,SI,PL,UA,DE,CH,UA,PL,FR,PL,RU,GB,RO,PL,UA,RU,MD,RU,GB,RU,FR,RU,UA,IE,AT,RU,CZ,FR,NL,RU,DE,GB,FR,CH,RU,GB,DE,NO,AT,GB,RU,DE,PL,RU,PL,IR,IT,CH,GB,CZ,RO,FR,GB,PL,IE,FR,ES,RO,NL,CH,AT,IL,HU,PL,FR,UA,RU,DE,RU,RO,RU,GB,UA,RU,GE,SI,BE,DE,_,HR,NL,UA,RU,PL,GB,IT,GB,SI,BG,RU,PL,SI,PL,FR,PL,DK,UA,CH,DE,IR,GB,ES,NL,UA,DK,HR,NL,CH,RO,KW,GR,FR,TR,UA,PL,GB,IR,PL,SI,HK,IR,DE,IR,GB,SI,RO,DK,FR,NL,UA,IT,RO,GB,_,RO,PL,GB,UA,CH,SK,UA,SI,RU,SK,UA,DE,GB,NL,UA,SK,HR,GB,RU,AT,GB,PL,GB,SK,AZ,NL,FR,US,FR,ES,SE,RU,ES,UA,BE,SI,_,UA,SE,RO,IR,ES,GB,FR,GB,SK,PS,UA,DE,SI,GB,SA,DE,RO,RU,UA,PL,CZ,UA,RU,UA,AM,RU,PL,RU,DK,SE,GB,MX,CA,CH,MX,DE,PL,US,RU,BG,RU,UA,GB,RU,UA,RU,UA,RU,SE,NL,ES,NL,PL,RU,AL,AT,US,UA,RU,DE,SE,RO,RU,US,BG,US,RU,KZ,UA,SK,RU,BG,RU,GR,IT,RU,AT,DE,RU,IE,PL,UA,RU,GB,CH,RU,GB,RU,DE,UA,RU,GR,RU,AT,RU,DE,RU,MD,RU,FR,UA,NL,RU,AE,GB,GE,RO,PL,UA,PL,RU,IE,PL,RU,BG,IT,RU,NO,NL,UA,RU,UA,LV,RU,GB,IT,NL,FR,SE,UA,RU,UA,RU,BG,RU,AT,MD,UA,RU,GR,RU,PL,RU,BG,RU,AT,LT,NL,PL,JO,LB,PL,DE,BA,PL,DE,RU,_,PL,SE,FR,GB,BG,FR,RS,IR,BG,GB,FR,BR,FR,UA,RO,SI,PL,FR,BR,DK,CH,PL,HR,KZ,FR,UA,RO,DK,BG,NZ,RO,DE,NL,CH,HR,NL,AT,RU,DK,RU,IT,AE,DE,UA,RU,FR,_,RU,RO,LV,RU,RO,SA,RU,RS,RO,AM,IT,RO,CH,IL,CH,FR,_,UA,RU,NL,DE,PL,DE,PL,DE,RU,UZ,GB,CH,NO,GB,DE,AL,RU,FR,HR,US,RO,PS,RU,NL,GB,DE,KG,GB,CH,RO,SK,DE,IL,GB,FR,CH,RU,FR,US,DE,PL,US,UZ,RU,TR,PL,FR,DK,DE,GB,IN,KZ,SI,PL,AT,RU,GB,NL,DE,PL,RO,DE,CY,RU,FR,RO,PL,RU,CH,DE,UA,PL,DE,FR,RU,DE,IT,RO,DE,SA,PL,RU,IT,PL,BE,PL,RU,AT,UA,ES,NL,UA,TR,RU,UZ,DE,GB,NL,BE,DE,AT,SE,IL,RO,DE,UA,ES,CH,RU,UA,SI,CH,UA,FR,UA,_,FR,DE,SE,SI,SE,NL,FR,GB,GE,UA,NL,IN,RU,IT,UA,DE,GB,PL,DK,GE,UA,RO,SE,NL,IT,RO,_,BG,CH,BG,FR,NL,FR,RU,RO,IT,PL,DE,EE,DE,RO,HR,RU,IT,HU,SI,IR,UA,RO,SE,TR,CH,GB,CH,RU,AT,IT,UA,HU,CZ,RO,BG,NL,RU,FR,RO,JP,SA,CH,DE,RU,CH,FR,DE,GB,UA,ES,UZ,CH,UA,RO,RU,DE,NL,PL,RU,HU,FR,GB,EE,RU,GB,ES,NO,DE,KZ,RU,GR,NL,AT,RO,DE,RO,PL,UA,DE,UA,GB,PL,PT,NO,RU,DE,NL,DK,PL,NL,_,ES,RO,AT,NL,FR,SI,GB,FR,IR,HR,IT,RO,RU,PL,SI,FR,DE,UA,NL,PL,FI,DE,UZ,CH,RO,FR,DE,RU,LV,PL,RU,GB,NL,RU,NL,DE,ES,_,UA,ES,CZ,PL,RU,BE,NO,CH,IT,RU,SI,AT,CH,NL,RO,CH,PL,RU,GB,RU,CZ,RU,FR,SI,FR,UA,HU,IR,CH,IT,UA,RU,PL,IR,RU,CH,CZ,FI,PL,RU,GB,NL,RU,IR,RU,PL,CH,IR,US,BE,UA,RU,DE,NL,SE,FR,MD,UA,GB,RU,FR,DE,UA,RO,BE,NL,IQ,FR,PL,CH,NL,RU,IT,DE,GB,HK,GB,AT,NO,AT,SA,PL,DE,GB,UA,IT,_,DE,_,US,GB,NL,GB,DE,AT,FR,NO,GB,PL,CH,GR,FR,CZ,UA,DE,KG,AT,DE,FR,_,PL,RU,SI,FR,RU,TR,SE,KZ,IL,RU,SE,GB,DE,TR,PL,GB,DE,RO,UA,DK,PL,UA,PL,RU,KZ,LU,NL,RU,PL,RU,IT,DE,FR,NL,RU,IT,RU,UA,RU,UA,SE,DE,RU,IL,HR,NL,HU,FR,RU,GR,UA,PL,DE,UA,RU,NL,KW,CZ,UA,FI,CH,RU,IE,KZ,RU,UA,RU,US,CZ,RU,US,RU,UA,RU,US,RU,GB,UA,PL,RU,UA,DE,PL,NL,UA,CZ,RU,UA,RU,PL,RU,PL,ES,UA,ES,UA,DE,RU,PL,RU,GB,BZ,RU,SE,KZ,DE,PL,RU,DE,RU,UA,RU,FI,KZ,RU,UA,NL,BG,NL,DK,GB,RU,BY,GB,RU,BG,RU,PL,RU,PL,AT,RU,SE,LV,RU,IR,PL,IE,SE,AT,GB,BE,FR,ES,DE,DK,FR,PL,IT,GB,FR,BE,MD,UA,DE,SE,PL,FR,RO,RU,_,PL,ES,SE,DE,NL,DE,CH,UZ,IT,FR,CH,BE,GB,FR,DE,RU,MD,RU,PL,RO,RU,SI,GB,IE,BG,FR,RU,HU,UA,SE,ES,PL,SE,RU,FR,RU,HU,BG,RU,ES,SI,RO,GR,ES,RO,FI,RO,RU,GB,FR,EE,SI,GB,DE,TR,AT,GB,UA,BG,RU,MD,DE,PL,ES,DK,KZ,DK,TR,GB,UA,FR,DE,SI,FR,SE,_,NL,RU,PL,GB,PT,DK,TR,FR,RU,ES,RU,TR,PL,RU,IT,DE,RU,NL,UA,AZ,UA,FI,GB,NL,FR,NL,GB,RO,BE,SK,RU,TR,PL,HU,RO,GB,_,RO,DE,GB,PL,UA,NL,LT,RU,UA,MD,RU,CZ,US,TR,IR,SI,UA,BG,RU,GE,RO,KZ,CZ,GR,GB,DK,GB,NL,US,NL,RU,KW,KZ,US,PL,GB,PL,FR,UA,DE,RU,RO,NL,TR,PL,FR,PL,RU,GR,UA,RU,FR,ES,RU,PL,JP,DE,_,ES,GB,FR,IL,TR,PL,RO,DK,RO,FR,CH,AT,UA,RO,FR,DE,IE,UA,BE,PL,UA,IE,AT,DE,UA,DE,GB,AT,DE,AT,US,UA,IL,BG,ES,IS,PL,RU,UA,US,RU,UA,RS,RU,PL,RU,ES,DE,PL,DE,RO,NL,SK,RU,DE,AT,PL,RU,FR,RU,PL,EE,IL,CZ,AT,NL,UA,RU,IR,UA,RU,AU,RU,FI,RU,UA,RU,RO,NL,DE,IE,US,PL,SI,FR,CZ,PL,RU,PL,US,RU,UA,FR,FI,FR,TR,US,SI,ES,MC,SI,CH,RU,RO,DE,PL,DK,DE,US,RU,ME,US,FR,DE,PL,RU,UA,DE,NL,TR,BG,_,PL,CH,PL,LV,FR,GR,RU,AM,PL,RU,US,PL,BE,RU,FR,DE,UA,BE,FR,HU,CH,PL,FR,AT,DE,IR,RU,UA,RU,SE,PL,UA,RU,IQ,SE,RO,DE,SE,RU,GB,DE,TR,RU,IT,RU,UA,PL,DE,NL,DK,RU,RO,PL,BG,DE,RO,PL,SE,NL,SA,FR,DE,_,GB,PL,FR,RU,PL,SI,PL,AT,RO,RU,PL,AT,DE,GB,DE,RU,FR,NL,PL,GB,TR,PL,EE,IR,PL,GR,RU,GB,CY,CH,FI,DE,GB,DE,FI,NL,UA,SI,RO,AM,RU,UA,NL,TR,GR,DE,RU,UA,IE,CH,GB,RU,UA,US,LV,AZ,ES,GB,TR,PL,DE,PL,UA,PL,IT,NZ,BG,RU,UA,RU,UA,RU,UA,RU,US,NL,RU,KZ,RU,NL,PS,IT,PL,TJ,PL,TJ,RS,FR,LK,AM,SE,GB,NO,CZ,UA,PL,SE,PL,UA,PL,RU,IT,RU,CZ,US,PL,RU,US,PL,RU,DE,RU,US,GB,ES,TR,RU,SK,UA,SK,DE,RU,GB,CZ,RU,UA,RU,UA,NL,RU,AT,RU,NL,UA,HU,RU,SA,RU,PL,NL,PL,ES,PL,RU,PL,SK,RU,UA,RU,DK,RU,UA,FI,RU,PL,RU,PL,US,HK,US,NO,SE,UA,RU,UA,HU,CZ,RU,UA,PL,RU,AT,UA,IT,RU,NL,DK,GB,ES,DE,RU,RO,IT,RU,PL,SE,LT,NL,IL,CH,GB,RO,FR,NL,HU,NL,RU,PL,RU,DE,NL,DE,NL,RU,PL,CH,_,GB,LV,PL,IE,RU,SE,RO,DE,TR,FR,GB,NL,PL,SI,DE,RU,SE,LT,UA,CH,RO,CH,TR,ES,DE,BE,RU,ES,NL,RO,PL,DE,RO,RU,CH,SI,IR,RU,NL,IT,GE,FR,RO,RU,NL,AT,AZ,UA,RU,MD,MK,RO,DE,SE,CH,NL,BE,PL,UA,PL,UA,SI,GR,RU,IS,BE,RU,IR,LT,GB,FR,SE,GB,SI,RU,RO,CZ,NL,UA,DE,AM,GB,CH,DE,PL,GR,GB,RU,DE,RU,BE,RU,IS,MT,UA,GB,IT,NO,MD,RU,NL,DE,RO,SE,UA,RU,NL,BE,RU,SI,RU,ES,DE,GB,UA,CH,RU,PL,NO,RU,RO,IT,RU,GR,HU,EE,UA,GB,GR,PL,GB,AT,GB,RU,TR,RO,GR,DE,RU,ME,RU,BG,PT,BE,SE,IL,SI,JO,NO,FR,SA,GB,FR,CZ,US,UA,PL,RU,MD,GR,LT,AT,RU,GB,SI,GB,RU,AZ,NO,RU,SI,PL,UA,IE,PL,UA,SE,DE,RU,UA,NL,RO,RU,GB,UA,GR,SK,PL,AT,SI,FI,TR,IR,DE,FR,HU,FR,BE,BY,HU,UA,SE,UA,RU,CZ,SK,RU,DE,MT,DE,UA,RU,LV,SA,RU,PL,RU,IT,RU,CL,RU,CH,RU,PL,CZ,RU,DK,UA,GB,RU,DE,AM,LV,UA,FI,RU,NL,RU,CZ,UA,ES,RO,PL,CH,UA,ES,PL,RU,FR,PL,NL,RU,NL,AT,RU,DE,FR,RU,SK,PL,DE,US,CH,DE,PL,UA,PL,KW,NO,RU,RS,RU,AT,RU,DK,PL,FR,CZ,NL,GB,UA,RU,PL,NL,RU,UA,GB,SI,PL,RU,UA,RU,DE,SA,EE,RU,UA,CH,RU,DK,RU,SA,DE,DK,GB,UA,CZ,PL,RS,UA,KW,_,FR,DE,AM,NL,ID,US,UA,IT,FI,IR,RU,FR,RU,DE,RU,FR,UA,RS,GB,UA,BG,PL,RU,UA,PL,UA,JP,DE,UA,CZ,PL,UA,PL,UA,CH,KZ,AT,DE,PL,SK,PL,UA,PL,RU,PL,RU,AU,UA,PL,UA,RU,PL,RU,UA,US,DE,UA,PL,FI,PL,IR,SA,IR,RU,PL,RU,US,PL,RU,DE,RU,UA,TR,RU,DE,PL,FR,PL,ES,TR,IE,GB,IL,IT,PL,RU,GB,CH,RU,UA,DE,BE,FR,PL,HR,RU,SI,FI,RU,HR,UA,PL,RU,PL,_,FR,NO,RU,AT,SI,FR,DE,GR,SI,RU,RO,GB,SE,UA,SI,RO,SE,PL,UA,IL,PL,NL,PL,GB,UA,IL,_,FR,RU,PL,HR,BG,GB,PL,SK,RU,FR,PL,FR,CZ,RU,FR,UA,PL,CH,SI,PL,NL,PL,FR,DK,UA,IE,UA,RU,AT,SE,RU,UA,AE,DE,UA,RU,DE,GB,AT,DE,FR,GR,RU,IL,FI,RU,US,GB,RU,SI,DE,SI,IR,RO,RU,NL,RU,CH,UA,NL,FR,DE,UA,RU,DE,PL,FR,CH,US,PL,UA,RU,FR,NL,DE,PL,ES,RU,DE,_,AT,RO,UA,FR,DE,UA,RU,CH,IT,RO,TR,US,FR,PL,SE,RS,IT,CY,LV,SI,PL,SE,RU,PL,NL,SK,SI,PL,RU,UA,RU,CH,UA,RU,SI,DE,PL,RO,CH,IR,RU,SI,RO,US,DK,SI,UA,BE,PL,SI,DE,RU,RO,AT,JO,GB,DE,UA,ES,FR,CY,SK,SA,DE,PL,NO,UA,LB,UA,RU,GB,SE,NL,PL,HU,UA,RU,PL,RU,UA,DE,SI,SE,NL,UA,DK,GB,HR,SI,RU,FR,PL,RU,EE,RU,GE,RU,DE,AT,HR,PL,RU,FR,RU,GB,RS,CY,FI,FR,UA,LV,RU,UA,RU,IR,UA,GB,PL,UA,RU,SE,PL,ES,FR,SK,UA,PL,CZ,RO,RU,NL,PL,DE,PL,RU,CZ,AT,UA,AT,IT,UA,RU,CY,RU,UA,CY,FI,CZ,LT,CH,UA,RU,CZ,RU,PL,RU,GB,IR,UA,IE,PL,NL,RU,PL,RU,LT,RU,UA,PL,FR,ES,GB,RU,UA,RU,FI,FR,AT,DE,RU,UA,TR,UA,SI,DK,IR,UA,PL,RU,PL,DE,EE,GB,PL,RU,PL,UA,RU,DK,FR,RO,PL,RU,PL,UA,PL,DE,FI,FR,RU,PL,SI,ES,NL,SE,NL,RS,UA,RU,AT,FR,LU,DE,UA,PL,DE,IN,DE,GB,RU,KZ,RU,PL,US,UA,RU,UA,RU,UA,IR,UA,NO,PL,FI,RU,UA,CZ,RU,UA,SI,RU,LT,UA,RU,UA,RU,IL,GB,CZ,PL,UA,RU,PL,UA,PL,IT,PL,RU,UA,SA,RU,NO,IL,RU,UA,TR,US,UA,RU,PL,IT,US,IE,RU,RO,PL,RO,UA,PL,HR,RU,AM,RU,PL,FR,MK,PL,GB,PL,FR,RU,NL,UA,SE,PL,SE,UA,DE,RU,PL,RO,IN,KR,RU,TR,RU,PL,IL,RU,IT,IL,SI,PL,HU,RU,GB,DE,RU,PL,ES,FR,SI,PL,RU,IT,PL,SK,RU,PL,SE,RU,NL,RU,DK,PL,IT,RU,AT,PL,RU,DE,RU,KZ,HR,RU,ES,RU,GE,SE,GB,BE,PL,RU,UA,RU,UA,FR,PL,RU,UA,CH,RU,GB,UA,RU,UA,FR,CZ,AL,SE,RU,IR,DE,NL,PL,RU,AM,PL,RS,HR,IL,IR,BY,DE,RU,PL,UA,PL,TR,CZ,RU,UZ,RU,DE,PL,SA,RU,SA,GB,IR,RU,DE,RU,FR,DE,UA,SI,RU,CH,SE,RU,AT,PL,US,PL,RU,UA,IL,PL,DE,NL,PL,BG,GB,RU,PL,IR,PL,RO,RU,CZ,DE,PT,LV,PL,GR,IT,SI,RU,US,PL,MD,PL,GB,AT,RO,DK,CZ,RU,TH,HU,RU,NL,RU,UA,RU,PL,RU,IL,RO,PL,GB,RU,DK,RU,PL,DK,GB,NL,UA,IT,MD,US,DE,RU,NL,DE,FR,RU,PL,RU,PL,AT,UA,SE,BE,RU,PL,GB,SK,RU,NL,AT,CZ,AT,RU,GB,IR,NO,CH,DE,UA,GE,GB,PL,GB,PL,GB,TR,GB,RS,IR,IE,RU,PL,RO,RU,PL,RO,BG,KZ,RU,PL,CZ,RU,DE,RU,NL,RU,UA,CH,RU,CZ,GB,RU,GB,PL,LT,RU,PL,SE,ES,PL,RU,CZ,DE,RU,DE,MD,PL,DK,GB,RU,US,RU,UA,RU,PL,IL,SA,IR,NL,DE,PL,DE,FR,UA,RU,NL,CH,NL,DE,PL,NL,RU,IL,SK,NL,TR,DE,QA,RU,PL,TR,CZ,FR,IR,DE,KZ,SE,PL,EE,RU,ES,PL,RU,NL,SI,RU,HU,NO,EE,ES,UA,RU,FR,RU,UA,RU,FR,GB,DE,UA,PL,RU,ES,GB,DE,SK,RU,IL,RO,RU,FR,RS,TR,RO,RU,DE,GB,BR,US,RO,RU,RO,GB,NL,FR,NO,PL,NL,CZ,FR,PL,SK,RO,DK,SA,TR,SK,PL,TR,IR,RU,NL,RU,SA,PL,AT,ES,RU,NL,AE,UA,PL,SI,GB,RU,UA,CH,PL,RU,GB,HU,NL,FR,RU,UA,CH,US,PL,RU,PL,UA,US,UA,RU,NL,RU,UA,GB,RU,FR,HK,PA,FR,FI,CH,SE,NO,NL,RU,FR,KZ,NL,RU,TR,US,NL,UZ,GB,UA,DE,FR,GB,RU,DE,US,NL,PL,RO,TR,PL,IT,GB,IT,RU,IE,PL,DE,RU,_,RU,UA,RU,PL,RU,JO,PL,IR,UA,SA,RU,GB,KG,SK,UA,FR,DE,FR,NL,RU,DK,RU,PL,MD,UA,US,DE,PS,DE,PL,CZ,FR,AT,FI,BG,PL,RU,LT,GB,PL,RU,DE,RU,PL,UA,RU,DE,UA,IR,NL,PL,RU,US,AE,PL,SK,NL,DE,IL,NL,RU,NL,RU,ES,PL,RU,BE,RU,FR,DK,RU,US,PL,SE,IL,GB,TR,AT,DE,RU,TR,PL,SI,RU,UA,CZ,IT,GB,PL,RU,IT,ES,LV,RU,SE,RS,DE,PL,US,PL,RO,SA,SE,RU,AT,RU,CH,AT,CZ,IT,RU,AT,PL,TR,RU,PL,RU,PL,DE,PL,FR,BE,DE,BE,PL,GB,RU,UA,RU,FR,GB,RU,BG,RU,UA,PL,RO,RU,GB,KW,MD,RU,LV,IT,RU,MK,UA,PL,RU,GB,RU,BG,RO,PL,RO,FR,IL,NL,SI,DK,RO,AT,GB,NL,GB,GR,RO,CH,ES,RU,AL,RO,UA,PL,FR,NL,RO,RU,PL,MT,AE,PL,RU,PL,IT,PL,CZ,PL,GB,PL,UA,PL,GB,FR,SA,_,UA,UZ,PL,IT,SE,RU,KZ,LV,UA,PL,LT,PL,UA,RS,FR,GB,PL,RU,DE,UA,PL,BE,PL,RU,PL,FR,UA,RU,RO,FR,PL,RU,US,GB,RU,DK,UA,PL,SE,DE,US,PL,RS,UA,RU,IT,PL,UA,CZ,IT,FR,RU,PL,IT,RU,UA,RO,NL,UA,GB,KZ,GB,RU,UA,GB,IL,RU,AM,CH,PL,UA,RO,_,RU,PT,RU,DE,PL,_,GB,DE,NO,RO,FR,UA,PL,CH,RU,UA,PL,RU,PL,TJ,UA,PL,RU,ID,RU,RO,FR,SE,RO,UA,DE,NL,GE,PL,UA,NO,RU,ES,GB,CH,PL,RU,FR,PL,DE,RO,PL,SE,PL,IR,RU,ES,IR,ES,RU,ES,CZ,NO,CZ,LU,PL,RU,DE,RO,FR,LB,PL,US,GB,NL,RS,RU,PL,RU,NL,RU,GB,RU,PL,UA,GB,NL,RU,FR,PL,RU,GB,RO,GB,FI,UA,PL,RU,AT,PL,RU,TR,PL,UA,IT,GB,US,PL,US,RO,FR,RU,PL,RU,GB,UA,RS,RU,GB,BG,RO,CZ,RU,SK,FR,RU,FR,RO,LI,RU,AT,SI,GB,RS,UA,SI,UA,FR,RU,CZ,FI,PL,RU,US,RO,RU,GB,NL,AT,DE,AT,NO,GE,GB,JP,PL,UZ,HU,NL,RS,PL,DE,RU,RO,GB,PL,DE,HR,DE,RU,UA,SE,FR,NL,US,RU,IR,PL,IE,RU,DK,RU,FR,NL,FR,PL,TR,GB,RU,GB,DE,RU,US,UA,RU,UA,_,NL,RO,PL,UA,PL,FI,BE,FR,RO,KE,FR,UA,GB,FI,CH,UA,GB,RO,RU,PL,UA,FI,DK,RU,PL,GB,PL,SI,RU,UA,SA,RU,LT,IT,CH,UA,PL,RU,RO,AT,US,RO,ES,PH,NL,PL,DE,RO,PL,BE,CZ,RU,LV,RU,NL,RU,AT,PL,RU,PL,RU,SK,DE,PL,IT,UA,PL,FR,PL,RU,PL,RU,NL,GB,PL,BG,DE,GB,UA,DE,UA,DE,UA,_,UA,PL,HR,DE,RU,PL,NL,IR,PL,RU,DE,RU,PL,RU,UA,RU,GR,UA,BG,RU,NL,PL,FR,RU,PL,RU,SE,FR,PL,RS,UA,PL,BE,PL,RU,NL,DK,US,GB,RU,US,CH,ES,CZ,RU,RO,RU,DE,RU,PL,RU,AT,RU,GB,PL,RU,CH,RS,JP,NL,FR,IS,NL,LT,IL,RO,BE,FI,NL,PL,KZ,UA,RO,DE,GB,SM,DE,PL,UZ,GB,RO,RU,UA,GE,AT,BE,PL,EE,GB,AZ,FR,IT,FR,DE,SE,RO,DE,PL,CZ,PL,GB,RU,PL,GB,RO,IS,RU,DE,RU,PL,RU,DE,TJ,ES,RU,RO,GB,DE,UA,DE,ES,SK,GB,NO,TR,GB,RU,UA,RU,IE,FR,RU,SI,NL,RU,IE,DK,RU,UA,RU,TR,RU,GB,ES,RU,BR,DE,RO,IE,GB,AT,IT,RO,GB,PL,RU,UA,GB,NL,FR,DK,GB,FR,UA,RU,PL,IL,PL,RU,CO,AE,PL,BG,RO,NL,RU,GB,DE,GB,NL,RU,KZ,RU,ES,CZ,RU,PL,UA,RU,CZ,PL,RU,DE,HK,DE,RO,DE,CH,RU,GB,FI,PL,RU,PL,UA,PL,DK,RU,EE,RU,DE,NL,PL,DE,RU,SI,GE,RU,BG,PL,SI,RU,PL,RU,PL,RU,DK,GB,NL,PL,RU,FR,GB,DK,RU,PL,UA,HR,EE,CZ,EE,CH,RO,RU,PL,GB,PL,RO,ES,RU,GB,SK,PL,GR,PL,US,CH,RU,SK,NL,PL,US,RU,UA,RU,PL,DE,RU,UA,RU,SE,GB,US,RU,DE,DK,RU,PL,UA,PL,RU,PL,UA,RU,BG,RU,GB,FR,UA,AT,FR,AE,PL,RU,IR,RO,UA,PL,RU,BE,RU,UA,DK,GB,LV,NL,GB,NL,MD,RU,EE,NL,RU,GB,SE,DK,SE,RU,NL,GB,CH,UA,EE,RO,UA,RO,PL,US,NL,PL,RU,LB,US,RU,FR,GB,BE,RU,UA,RU,FR,RU,UA,IT,PL,RU,SA,UA,SA,RU,SI,NO,UA,RU,FR,UA,LV,FR,US,RO,PS,CZ,PL,RU,BG,PL,UA,AT,SE,PL,GB,RU,PL,NL,PL,RU,PL,ES,DE,SE,RO,FR,RO,RU,SE,AT,RU,LV,DE,BG,BD,IN,SE,UA,RU,UA,RU,PL,UA,DE,PL,US,UA,GB,UA,NL,RO,SI,PL,GB,UA,US,RU,PL,AM,FI,UA,NL,PL,KZ,RU,SK,PL,AU,GB,NL,RU,UA,RU,FR,GB,RU,PL,SE,RU,RO,US,PL,GB,NL,RU,FR,RU,GB,FR,RU,DE,FR,TR,LU,PL,RU,PL,RU,GB,UA,CZ,UA,RO,RU,UA,IL,RU,IR,FR,GE,DE,UA,RS,GB,UA,RU,MD,UA,FR,AT,ES,GB,UA,RU,BE,US,RU,PL,RO,FR,IT,DE,RU,RO,SE,PL,RS,RO,FR,RU,BY,HK,FR,UA,PL,RU,DE,IT,PL,RU,NL,MD,RU,UA,BG,PL,RU,US,SA,HK,RU,IT,RU,GB,PL,ES,RU,GB,FR,UA,RU,PL,RU,NL,PL,CH,PL,UA,US,FR,PL,NL,RU,GB,PL,RU,PL,NL,PL,DE,FR,RU,RO,RU,_,GB,BG,RU,HK,BG,DK,HK,GB,RU,DK,US,GB,PL,DE,RO,BE,FR,GB,RU,AT,BE,RU,PL,DE,NL,GB,ES,PL,RU,PL,RU,IT,BG,RU,PL,BG,US,RU,AL,MD,RO,BG,IR,AT,RU,DE,ES,NL,DE,NO,RU,PL,NL,DE,PL,AT,DK,RU,DE,RU,GB,BG,UA,CH,NL,FR,GB,FR,GB,ZA,US,RU,PL,GB,RU,IT,UA,PL,RU,GB,UA,CH,UA,DE,AM,DE,GB,RU,PL,GB,DE,RU,UA,SI,RU,DK,KZ,RU,UA,IR,RU,PL,BG,FI,AT,IQ,HR,RU,DK,RO,GB,RU,RO,PL,DE,RU,UA,RU,PL,RS,_,GB,PL,DE,UA,RS,PL,GB,DE,RU,UA,RO,PL,RU,RO,NL,RU,DE,US,RO,PL,RU,PL,NL,US,_,RU,_,SI,RO,CY,PL,CZ,TR,PL,GE,FR,ES,IR,DE,GE,IE,IR,RU,_,NO,BE,CZ,US,RO,DE,RU,GB,AT,UA,CZ,NL,RU,AL,UA,TR,AU,PL,NO,PL,BE,GB,RO,GB,RO,RS,KZ,UZ,RU,GB,CH,NL,DE,LT,GB,RU,TR,GE,PL,FR,KH,DE,CZ,RU,TR,RU,RS,PL,RU,CZ,GB,UA,SI,ES,IR,FR,DE,SE,PL,_,PL,US,FR,AE,RU,PL,DE,FR,LB,RU,DK,DE,UA,DE,PL,RO,_,UA,PL,RU,CH,PL,TR,FR,RU,IR,AT,RU,UZ,DE,PL,UA,RU,UA,US,PS,RO,PL,RO,RU,US,DE,RU,DE,AL,IT,RU,ES,GB,UA,GB,CY,GB,RU,IR,RO,DK,RO,DK,RU,GB,PL,SE,NO,PL,NL,GB,RU,NO,RU,IT,SI,DE,RU,GB,RU,PL,GB,RU,GB,NG,GB,IT,TR,DE,IL,RO,PL,NL,FR,RU,MD,UA,KG,LV,PL,SE,NL,BG,GB,PL,PT,RU,PL,NL,CZ,RU,IT,RU,IR,RU,CZ,PL,LU,NL,BE,PL,FR,RU,DE,RU,TR,HR,RU,US,GB,FR,RU,PL,LV,RU,GB,UA,DE,IT,GB,BE,UA,RU,IT,RU,IR,DE,GR,UA,RU,HU,CZ,UA,RU,AZ,RU,IR,RO,UA,PL,US,MD,US,MD,US,MD,US,MD,US,MD,US,MD,US,MD,US,MD,GB,FR,ES,NL,RU,FR,SK,RU,GB,DE,PL,RU,UA,NO,RU,DE,RU,US,AU,RO,GB,PL,SE,PL,NL,FR,TH,NL,HU,US,NL,IT,PL,US,DE,IT,GB,US,RS,NL,UA,EE,UA,ES,RO,BE,UA,AT,NL,DE,IT,NZ,US,NL,RU,UA,PL,UA,PL,RU,PL,NL,PL,BE,RU,GE,RU,BE,FR,RU,NL,PL,RU,NO,DE,KZ,US,DE,FR,AT,RU,SG,RU,LU,RU,MD,US,RU,IR,PL,TR,FR,IT,IE,RU,SK,RS,RU,IR,ES,IR,US,ES,NZ,PA,UA,IT,RU,IT,RU,US,UA,RU,LV,RU,NL,UA,PL,RU,KZ,RU,TR,GB,UA,IR,UA,DE,FI,UA,RU,DE,GB,PL,RU,PL,GB,LT,DE,SG,FR,NL,PL,NL,PL,TR,NL,GB,PL,RU,GB,FR,GB,RU,GB,ES,RO,PL,RU,CZ,RU,UA,PL,FR,CH,DE,UA,RU,CH,US,IT,BG,SI,LV,GR,KZ,ES,RO,PL,RU,GB,UA,RS,NL,DE,DK,PL,NL,_,CY,UA,CH,GB,RU,IR,RO,IT,US,PL,GB,PT,BG,NL,IE,LB,US,SG,CA,HK,RU,UA,GB,BG,PL,KW,PL,RU,GB,RO,IR,US,GB,UA,NZ,US,SE,US,NL,DE,UA,IR,BG,NL,CH,UA,IR,US,RU,ES,UA,SE,UA,US,PL,ES,UA,US,PL,KZ,PL,RU,UA,RU,PL,RO,US,RO,US,GB,DE,RO,ES,RO,DE,FR,RO,PL,RO,GB,IL,RU,UA,SI,RU,BG,SC,UA,LT,SA,KG,GE,IR,RU,LV,GB,NO,FR,UA,RU,US,RU,UA,RU,DE,PL,RU,DE,UA,RU,TR,UA,TR,UA,IR,US,UA,IR,ES,CH,IR,DE,RO,BG,GB,UA,NL,LT,UA,DE,TR,UA,RU,US,RU,UA,RU,UA,NO,RU,RO,RU,PL,CH,RU,DE,UA,DE,FR,DE,FR,DE,FR,DE,ES,SE,IR,PT,ES,DE,PL,GB,MD,RO,GR,IE,RO,FR,RO,IR,IT,GB,SE,FI,SE,RU,BA,SI,RU,UZ,CZ,UZ,RU,UA,UZ,KZ,RU,UA,MD,RU,US,UZ,KG,UA,RU,KZ,UZ,BY,RU,DE,RU,UA,FR,RU,MD,RU,US,KR,RU,NL,SG,TR,LU,US,LU,US,BR,RU,NL,RU,LU,RU,US,KR,LU,KR,US,ES,LU,US,IT,US,JP,US,TR,SG,NL,US,NL,RU,US,RU,NL,RU,SE,DE,SE,CH,DE,CH,RU,AZ,RU,BR,GB,BR,GB,ES,GB,RU,IT,AT,IE,IM,RU,FR,GB,RO,NL,DE,CH,TR,NL,AM,FI,RU,AT,ES,RU,TR,RU,DE,IR,GB,NO,SE,IT,RU,FI,SE,AT,BG,IT,NL,RU,QA,FR,PL,GB,RU,AT,DE,AT,GB,SE,RU,GB,LU,CH,DE,RU,FR,DE,NL,GB,CH,RS,RU,NL,GE,SE,GB,CZ,SE,GB,NO,BE,NO,DE,GB,DE,GB,CZ,GB,DK,LV,GB,DK,AT,DE,PL,DK,FR,AM,PL,RU,IR,NL,RU,SA,DK,RU,IS,HU,GG,CH,ES,DK,IT,FR,TR,KZ,SA,GB,BE,NL,LV,MQ,RU,KZ,IN,US,DE,RU,GB,RU,US,PL,RU,US,NL,AE,MD,GE,FR,DE,FR,DE,NL,DE,IE,SK,GB,UA,HU,US,HU,MK,RU,SI,GB,US,GB,BE,GB,US,ES,RU,SE,GB,NL,ES,RU,GB,GE,RU,MK,RO,KZ,PL,ES,AT,AL,ES,PT,DE,NL,JP,GB,SK,IT,TR,IT,NL,CW,IT,RU,GB,PL,DK,ES,UA,IE,DE,RS,DE,GB,DE,GB,TR,RU,LT,AT,NZ,DE,RU,NL,DE,FR,CZ,GB,PT,DE,GB,US,IT,PT,US,PT,IT,US,FR,PL,HU,FR,SE,FR,IR,IE,AT,IL,AU,IL,GB,IL,US,GB,AT,NO,RU,KG,IT,EE,RU,DE,AM,IN,EC,GL,CZ,LT,RU,LB,CH,DK,GB,PA,GB,PA,GB,PA,CZ,BG,TR,SI,PL,CZ,RU,LV,RU,ES,GB,AT,NL,RU,TH,RU,UA,RU,BE,UA,RU,UZ,AT,IT,HU,NL,DE,BE,DE,NL,DE,NL,GB,NL,DE,GB,DE,GB,DE,NL,DE,RO,FR,AE,RU,FR,CH,NL,UA,NL,TR,RO,ES,AU,ES,KZ,GB,IR,DE,RO,TR,GB,ES,RO,SG,US,GB,IR,RO,ES,DE,IM,ES,US,IR,GB,US,RO,ES,NL,DE,RO,IT,RO,NO,RO,TR,NL,RO,FR,RO,FR,RO,MD,DE,NL,FI,DE,US,RU,JP,GB,US,LB,CH,DE,HU,GB,IE,NL,US,RO,GB,US,JP,GB,US,GB,HK,BG,RU,PK,GR,MA,SI,RU,UA,ES,RU,US,CA,RU,FR,ES,PL,US,PT,NL,GB,US,RU,KZ,RU,DE,UA,DE,RU,UA,RU,HK,LV,CZ,PL,US,BG,RO,US,FR,GB,PL,RU,NL,LV,RU,ES,HU,ES,PA,PR,UY,MA,SG,HK,DE,HK,DE,RU,US,PL,JP,DE,PL,BE,AT,LV,UA,US,IN,US,IN,VN,CH,FR,ES,DE,LT,US,ES,US,NL,TR,DE,US,DE,CH,IE,RU,NL,PL,FR,US,IT,FR,NL,IR,AZ,TR,IQ,CZ,IR,ES,TR,US,DE,AT,ES,BE,LU,DE,ES,NL,CZ,HU,FR,DZ,CA,ID,RU,IT,GB,ES,GB,US,GB,US,JP,NL,US,NL,RU,NL,RU,US,GB,MX,GB,US,SG,NL,FR,PL,US,GB,CZ,FR,RU,RO,PL,RU,BG,US,GB,AT,US,CH,DE,GB,US,SG,GB,RU,UA,IT,RU,US,RU,UA,FR,AL,UA,DE,UZ,GB,IN,DE,RO,NL,SG,NL,US,NL,AE,US,RO,DE,FR,IT,FR,ES,CZ,FR,GB,FR,ES,NL,SE,IT,DK,DE,DK,FR,CO,GB,FR,NL,IT,DE,US,NL,FR,DE,LV,BE,US,FR,GB,BE,FR,US,IT,FR,DE,FR,IT,GB,DE,FR,GB,FR,CO,FR,IE,FR,DE,US,DE,IT,JP,GN,SC,FR,DE,FR,BE,GB,FR,GB,FR,BR,BE,FR,NL,FR,GB,DE,FR,BE,FR,IT,FR,ES,FR,ES,FR,DE,IT,FR,BR,NL,DE,FR,SG,DE,SE,GB,CH,GB,ES,AT,FR,IT,BE,ES,FR,US,DE,NL,FR,DE,FR,NL,FR,RO,AR,GR,FR,US,FR,IT,RO,DE,IT,DE,FR,IT,ES,GB,CL,DE,IT,FR,GB,FR,GB,DE,SE,FR,GB,BE,BR,FR,BE,DE,FR,AE,FR,NL,FR,ZA,DE,IT,FR,ES,GB,FR,PL,FR,GB,US,SE,IT,FR,DE,FR,GB,DE,FR,DE,FR,GB,DE,RU,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,RE,FR,GF,FR,GF,FR,GF,YT,FR,YT,FR,YT,FR,YT,FR,YT,FR,YT,FR,YT,FR,YT,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,MQ,FR,ES,FR,ES,FR,RO,FR,SK,MD,FR,ES,FR,ES,DE,US,JP,FR,DE,FR,DE,FR,DE,FR,DE,US,DE,US,DE,US,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,GB,DE,NO,FR,DE,FR,PL,GB,FR,DE,FR,DE,FR,PL,FR,GB,FR,DE,FR,GB,KR,AM,DE,RU,LU,RU,BR,US,RU,KR,SG,NL,LU,SG,US,NL,RU,UZ,RU,US,RU,LU,RU,UZ,US,JP,EG,AU,RU,LU,HK,KZ,LU,FR,US,GB,RU,KR,AZ,JP,RU,US,RU,US,RU,KR,CZ,HK,LU,AU,IT,RU,BR,US,LU,SG,RU,LU,HK,RU,PL,IT,US,SG,LU,KZ,LU,US,RU,LU,RU,US,RU,LU,RU,SG,US,HK,RU,DE,NL,IT,DE,GB,IE,HU,NL,BE,NL,GB,BA,LV,CH,RU,NL,NZ,PL,NZ,PL,FI,CZ,RU,IT,JP,RU,IT,JP,IT,RU,JP,AE,JP,US,RU,SK,RU,JO,GE,RU,BA,RU,DK,SE,DK,RU,US,RU,UA,RU,UA,GB,RU,GB,RU,LB,IT,BG,PL,NL,DE,US,LT,US,IR,HR,FR,AT,CA,HR,RU,MD,IT,TR,AT,IT,GB,ID,GB,NL,PT,US,AT,US,TR,IT,GB,AT,IT,AT,DE,IT,RU,IT,RU,CZ,DK,SE,PL,SI,UA,RS,GB,SE,RU,SK,RU,HU,KG,FR,IT,SK,GB,DK,IT,ES,US,GB,RU,ES,DE,NL,IT,NL,BR,AM,NL,DE,SE,US,DE,FI,DE,IR,RU,IR,RU,GB,BG,AT,RU,IE,BE,NL,ES,RU,NL,PL,RU,JP,AT,NL,US,TR,US,IN,EG,US,JP,NL,FR,US,NL,BG,US,IT,RS,IR,DE,UA,HU,PT,LU,FR,LU,DE,LU,FR,LU,FR,LU,GB,LU,FR,LU,IT,DE,LU,DE,LU,DE,FR,IE,GB,DE,IE,DE,GB,LU,DE,LU,DE,LU,MT,IE,DE,RU,JO,MD,UZ,RU,MD,UZ,RU,UA,RU,KZ,UA,RU,CZ,SY,RU,UA,RU,UA,RU,NL,SE,GB,RU,US,RU,GB,RU,CY,RU,GB,RU,CY,RU,GB,CY,RU,US,RU,FI,RU,FR,IT,US,RU,US,RU,AT,BY,RS,RU,DE,ES,NL,ES,IT,UA,IR,NL,RU,AZ,IT,RU,NL,RU,HU,CH,RU,DE,CH,DE,TR,NO,IT,TR,GB,CZ,NO,GB,CZ,HU,RU,PL,GB,NL,GB,FI,BE,GB,US,GB,US,ES,US,ES,NL,TR,IE,DK,ES,RU,FI,NL,CH,TW,DE,NL,ES,RU,DK,DE,SE,CZ,DE,NL,DE,CH,DE,RU,GB,CZ,TR,US,NO,FI,SE,NO,RU,IT,CZ,RU,FI,IQ,PL,RU,CZ,SE,IE,BG,US,BE,JP,BE,NL,RU,DE,NL,UA,BZ,DE,BS,CZ,HU,RU,IT,RU,NL,FR,CA,RU,DE,GB,DE,RU,FR,DE,FR,IT,US,IT,AT,ES,RU,IT,RU,GB,RU,ES,IT,RS,DE,GR,BG,CA,GR,BG,IT,TR,CZ,FR,LU,HU,LU,HU,LU,US,LT,ES,NO,GB,RU,US,DE,BE,ES,NL,GB,RU,JO,FR,IT,AL,RU,ES,FR,RS,ES,DE,AE,IR,IL,DE,RU,GB,HK,JP,GB,JP,DE,JP,DE,NO,PL,IT,IL,GB,TR,IE,IL,IQ,PT,CH,GB,DE,IT,ES,BE,IE,GB,DE,BG,RU,FR,SE,RU,PL,TR,NL,SE,AM,NL,RU,CH,TR,NL,GB,ES,US,IS,TR,LT,AT,ME,ES,FR,CZ,RU,BE,FR,MK,BG,IS,IE,PL,RU,GB,HK,VN,DE,NL,GB,US,AZ,PL,GB,DE,RU,NL,RU,TR,UA,RU,JO,ES,GB,ES,NL,DE,IT,IS,FR,KZ,NL,GB,SA,CZ,SK,CZ,RU,IT,PT,SI,DE,PL,FI,IE,PT,CY,IR,AT,SA,RO,ES,RO,GB,RO,GB,RO,US,NL,FR,ES,IT,US,SE,IT,RO,ES,JM,RO,TR,MD,NL,MD,TR,IT,RO,MD,TR,PL,RO,NL,PL,ES,US,AT,RO,TR,SG,GB,MD,GR,ZA,RO,GB,RO,AM,US,NO,BE,RO,ES,IT,RO,NL,MD,ES,SY,RO,NL,RO,GB,RO,JP,RO,US,PL,RO,FR,RO,GB,US,RO,FR,DE,RO,NL,RO,GR,IE,ES,RO,IR,RO,MD,RO,RS,RO,FR,RO,ID,US,DO,JO,KH,IR,RO,GB,RO,US,NL,RO,GB,PA,TR,BE,RO,NL,RO,PL,RO,GB,ES,GB,RO,CA,RO,NL,RO,IR,RO,NL,GB,AZ,IT,FR,GB,NL,US,RO,TR,RU,RO,ES,RO,IL,GB,IT,NL,RO,FR,NL,DE,TR,GB,RO,US,IM,RO,NL,ES,RO,BR,GR,ES,SY,RO,ES,RO,GB,DE,ES,IT,NL,ES,RO,ES,TR,RO,ES,SI,RO,US,RS,RO,GB,LU,TR,LT,US,KZ,RO,NL,DE,NL,SE,LT,RO,DE,RO,AU,DE,ES,BG,PL,RO,IT,RO,GB,BZ,IT,RO,US,TR,RO,DE,RO,FR,RO,US,CN,VA,ME,MX,RS,MX,RO,FR,RO,IR,ES,MD,IR,ES,RO,IT,FR,ES,SE,BE,IT,RO,GB,ES,US,GB,ES,RU,ES,RO,IT,CH,ES,IR,AM,US,ES,RO,GB,RO,IQ,CH,ES,NL,MD,IR,MD,TR,ES,RO,MD,ES,IR,MD,ES,GB,RO,MD,IT,RO,MD,IT,ES,RO,IR,NL,DE,FR,KR,IT,US,RO,JP,TR,RO,SY,ES,RO,IR,MD,IR,MD,RO,NL,ES,IT,IE,ES,IR,MD,RO,GB,MD,RO,GB,RO,NL,GB,RO,MD,RO,MD,RO,MY,NL,ES,MD,RO,US,RO,US,RO,FR,RO,FR,IT,RO,MD,IR,RO,MD,DE,US,BE,RO,CA,US,IT,RO,GB,RO,DK,RO,DE,US,SG,US,IN,DE,RO,ES,RO,AU,RO,GB,US,RO,GB,US,RO,GB,US,ES,GB,RO,GB,NL,GB,RO,SG,US,CA,US,RU,GB,GP,GF,GP,GF,GP,MQ,GP,GF,GP,GF,GP,MQ,GP,GF,GP,MQ,GP,MQ,GP,GF,GP,MQ,GP,MQ,DE,RO,BG,GB,BG,CH,BG,NL,BG,US,BG,LV,HR,BG,LV,BG,IT,NL,BG,HK,BG,US,CH,US,GB,IT,BG,DE,GB,BG,IT,BG,US,FR,BG,NL,BG,RU,NO,BY,NL,BY,NL,IR,UA,LB,UA,DE,PA,FR,DE,IN,SG,IN,DE,PA,MA,GH,NL,AE,PA,DE,LT,SG,BR,NL,IN,SG,DE,IN,DE,SG,DE,TR,DE,HR,IT,GB,BG,US,BG,US,KR,US,JP,KR,BG,US,KR,US,TR,SG,KR,BG,SG,BG,CZ,SK,CZ,RU,NL,PL,TR,BG,ES,NL,RU,US,CH,RU,DE,RU,UZ,RU,PL,IL,PL,UA,RU,US,ES,BR,UA,RU,PT,PL,RU,CZ,NL,RU,PL,RU,KZ,AT,IT,RU,US,TR,BA,DE,RU,DE,RU,GB,KG,RU,FR,GB,FR,SE,RU,FI,RU,US,RU,US,DE,RU,BY,RU,NL,RU,PL,NL,RU,PL,HR,DE,PL,AL,GB,ES,RU,KZ,RU,KZ,RU,IL,RU,DE,DK,SA,UA,RU,UA,RU,UZ,RU,KG,RU,UZ,RU,UA,MD,UA,UZ,RU,UA,RU,BY,RU,BY,UA,KZ,UA,RU,UA,BA,UA,KZ,RU,UA,RU,UA,RU,CZ,UA,RU,UA,MD,RU,MD,RU,UA,RU,UA,RU,UA,MD,UA,RU,MD,BY,UA,UZ,UA,RU,UA,MD,KG,RU,BY,UA,RU,UA,RU,GR,MD,RU,UZ,KZ,UA,RU,UA,UZ,MD,RU,BY,HR,NL,RU,MD,BY,UA,RU,MD,KZ,RU,UA,BY,RU,MD,GB,RU,MD,RU,KZ,RU,KG,UA,RU,MD,BY,UA,RU,KG,MD,RU,UZ,UA,KZ,UA,KZ,BY,MD,UA,RU,MD,UA,RU,TM,BY,UA,RU,MD,RU,UA,MD,RU,UZ,RU,HK,RU,LV,RU,UA,UZ,UA,RU,UA,KG,RU,TM,UA,UZ,RU,UA,UZ,RU,UZ,RU,UA,RU,UA,IL,ES,GB,CH,PL,FR,LU,RU,IT,RU,GB,NL,GB,US,FR,NL,ES,IT,GB,NL,RU,GR,RU,GB,FR,GB,RO,IE,SK,CH,FI,NL,GB,DE,GB,RU,GB,BG,US,GB,RU,GB,US,SG,GB,US,SG,US,GB,RU,IL,PL,BE,NL,PL,NL,UA,ES,BG,IT,DK,MQ,DK,ES,PL,RU,DE,FR,HK,DE,GB,FR,HK,RU,SE,FR,IT,FR,PL,US,DE,OM,TR,BY,NL,KZ,PL,US,ES,US,GB,ES,BY,AE,RU,GB,GE,LV,SA,RU,DK,UA,NO,SE,RU,GB,RU,DE,KZ,RU,US,RU,US,RU,HK,IT,PL,RU,NL,DE,DK,CH,BA,HU,KZ,HU,TR,RU,BA,DE,FR,DE,FR,DE,PL,US,DE,IQ,US,DE,CZ,PL,RU,TR,SE,FR,SG,FI,SG,RU,KZ,NL,RU,KZ,US,RU,US,NL,BG,UA,PS,CH,FR,DE,SK,RS,NL,NO,DE,TR,RU,DE,DK,NL,BE,US,BE,US,GB,AZ,GB,CZ,RU,AM,CZ,KZ,LB,CZ,IT,AT,US,JP,NL,JP,DE,SE,RU,BE,ID,NL,RU,MD,NL,DE,MY,MX,RU,UA,LB,EE,DE,GB,RU,RS,MY,RS,IT,RU,TR,IT,US,DE,TR,SG,IT,GR,IT,GB,DE,NL,DE,GE,RU,IT,GG,NL,GB,FR,GB,DE,FR,IT,IQ,FR,NL,DE,BG,LB,TR,FR,AT,DK,DE,IE,RU,NO,IT,RU,CZ,AL,NL,DE,RU,HK,ES,US,GG,RU,AM,GB,US,GB,SA,RU,CH,TR,CH,US,NL,GB,FR,GB,FR,DE,FR,DE,RS,DE,SE,GE,RU,DE,UA,RU,ES,DE,NL,CH,UZ,NO,IT,DE,IT,RU,TH,MY,FR,ES,DE,IT,NL,ES,FR,RU,BG,RU,US,FR,GB,RU,BH,RU,KZ,RU,RO,IT,NO,DE,NL,GB,RU,AT,ES,MX,RU,DE,NL,DE,NL,DE,RU,CH,RU,ES,SA,GB,HU,ES,RO,NL,IT,RU,DE,GG,DE,ES,IT,SA,RU,IT,RU,BY,CH,SE,RU,HU,TR,RU,IR,FR,PL,UA,CZ,DE,CH,NO,DE,FI,RU,GB,ES,NL,RO,RU,NL,RU,CH,DK,CZ,NL,RO,ES,RS,GB,RU,NL,SE,RU,FR,TR,RU,DE,KZ,SG,US,VN,NL,DE,NL,RU,GB,FR,DE,RU,KW,RU,FR,CH,BY,SA,IQ,ES,FI,NL,ES,IE,DK,DE,US,BE,LV,NL,BE,GB,BE,JO,FR,GI,IE,GI,IE,BE,GI,JE,DE,BE,IE,BE,KZ,SE,IT,CH,DE,GB,DE,AT,US,CL,DE,CZ,DE,AT,RS,DE,US,AT,DE,AT,US,DK,AE,FR,BE,ES,AT,DE,US,DE,NO,US,RU,IN,DE,JP,DE,US,AT,CH,MT,DK,RU,AZ,HU,FI,FR,PL,FR,GB,FR,GB,DE,FR,IR,CA,PL,RO,FR,ES,DE,BE,ES,RO,AT,NL,RO,PL,IR,ES,GB,RO,ES,RU,BG,GB,BG,US,BG,US,BG,US,BG,US,BG,FR,BG,US,BG,US,BG,US,BG,KR,US,BG,GI,BG,GI,BG,GI,BG,GI,BG,GI,BG,GI,DE,PS,RU,YE,RU,UA,HU,RU,KW,GB,LV,NL,GB,NL,GB,NL,GB,NL,GB,FR,GB,NL,GB,US,GB,DE,RU,IT,US,PL,RU,PL,GE,HU,RU,UA,HK,RU,DE,TR,SE,PT,ES,PT,TR,SE,DE,GB,US,GB,PT,SE,PT,SE,NL,GB,FR,NL,PT,GB,CH,GB,CY,CH,BY,GB,CY,NL,GB,CY,SE,GB,SE,PT,SE,SY,SA,RU,US,RU,RO,TR,AE,PT,GR,RU,BE,DE,BG,DE,BG,LB,BG,US,DE,US,PL,US,ZA,NG,GB,US,BR,DE,GB,PS,ES,IT,TR,RU,IT,MX,SG,HK,TH,HK,IR,US,IR,TR,IR,NL,IR,US,IR,US,TR,US,TR,IR,US,IR,US,IR,US,IR,US,IR,US,IR,US,IR,US,IR,US,CZ,RU,PL,RU,NL,BH,UA,ES,GB,RU,SA,CH,TR,PL,RU,TR,DE,BH,IT,SA,LV,US,DE,NL,US,NL,US,NL,DE,SG,US,NL,IT,RS,DE,RU,MK,NL,DE,CH,FR,RU,UA,GE,DE,FI,SE,FI,PL,DE,IT,RU,TR,RU,NO,GB,FR,GB,NL,RU,ES,NL,IT,UA,RU,AE,DE,US,CH,BE,NL,DE,ES,IR,GB,IR,BG,BE,DK,LV,IR,TR,RU,NO,NL,TR,SY,RU,TR,SY,AT,RU,IT,GB,BE,TM,IE,DE,ME,GB,MD,HK,US,NL,RU,GB,NL,UA,NL,TR,LV,SI,NL,RU,NL,CH,IT,ES,FR,NL,FI,US,FR,NL,DE,US,DE,SI,RU,US,IL,NL,DE,US,PH,US,SE,LU,RU,GB,ES,PL,NL,FR,PL,BE,CZ,DE,GB,DE,GB,NL,GB,TR,PL,ES,IT,CA,IT,CZ,IT,NL,IT,CY,TR,NO,ES,PL,IE,NL,AU,FR,NL,CR,DE,CZ,IT,NL,RU,AT,BE,DE,US,NL,FR,NL,SK,MQ,RE,YT,GP,GF,RE,YT,US,UA,RU,NL,RU,CZ,RU,DE,MQ,RU,FR,RU,CZ,RU,GB,DE,GB,RU,MT,IM,MT,FR,MT,DE,IT,RU,ES,KZ,ES,PH,SG,FR,AL,UA,GB,ES,CL,ES,CY,DE,FR,PT,FR,HU,RU,GB,LU,DE,CZ,QA,IT,RU,HU,DK,IT,CH,UA,NL,IE,FR,NL,DE,GB,BE,IT,NL,DE,SE,US,RU,AT,DE,AT,GB,FR,GB,BE,NL,BE,NL,IT,PT,RU,FI,PT,DK,LU,DK,IT,GB,RU,KZ,RU,GB,SE,GB,ES,CH,RS,FR,DE,SI,SE,IT,DK,NO,RU,BE,IT,RU,GB,PL,GB,NO,CZ,RU,ES,RU,ES,RU,JO,RU,DE,IT,RU,KW,DE,ES,KZ,CH,UA,GR,UA,GR,FR,PT,NL,CH,LT,EE,US,GB,GR,US,PL,CZ,SE,CH,FI,US,UA,SK,LV,NL,TR,DE,NL,RU,IL,SE,NL,ES,FR,RO,DE,RU,GB,TR,US,GR,UA,US,UA,BG,UA,US,UA,US,UA,PT,DE,AT,GB,SE,AT,HR,AT,SK,DE,GB,DE,RU,GB,RU,US,HK,US,AT,RU,CH,RU,GE,US,CR,KR,SE,DK,AL,DE,GE,RU,IT,DK,CZ,RU,IT,TR,MT,DE,BE,FR,BE,AU,ES,US,BE,NO,RU,MD,IR,BG,BR,RU,KZ,RU,AE,US,CA,FR,US,CY,US,NO,US,SE,CZ,US,IT,SE,SI,LV,RS,LV,SE,RU,BE,RU,IT,RU,UZ,NZ,TR,BG,TR,AM,NL,RU,PL,DE,RU,SY,KZ,RU,KZ,RU,JO,GB,ES,PE,ES,PE,ES,PE,RU,ES,PL,TR,NL,FI,RU,IT,IS,AT,GB,IT,DE,GB,US,HK,GB,US,GB,IT,ES,NL,DE,SE,CZ,NL,RU,LV,RU,SE,DE,NL,TR,PL,CH,DK,FR,ES,RU,NO,ES,FR,CH,IT,GB,NL,GB,FR,IT,FR,SY,SE,RU,ES,RU,IT,RU,CZ,GR,BE,KG,ES,NL,FR,IS,FR,UA,DK,FR,DK,US,DE,CZ,RU,GB,DK,PL,US,PL,UA,DE,ES,FR,DE,NL,CH,UZ,RU,CH,FI,FR,PL,UA,GB,TR,GB,UA,GB,TR,UA,DE,PL,RU,PL,RS,ES,RU,US,NL,US,PL,CZ,FR,TR,DE,RO,IL,UZ,DE,US,NL,GR,DE,NL,EE,DE,AL,GB,US,PK,IN,US,NL,CH,US,GE,NL,US,IT,US,AM,US,GB,RU,FI,RU,UA,BG,NL,BG,US,BG,IT,BG,IT,IE,IT,NL,BG,IT,DE,US,BG,US,BG,PL,BG,IT,BG,US,NL,BG,AL,BG,FR,BG,DE,BG,ZA,BG,IT,GB,BG,PL,BG,IT,NL,BG,IT,US,BG,US,BG,US,BG,US,BG,US,BG,US,BG,US,DE,IE,US,BG,US,IT,RS,BG,IT,BG,IT,BG,ES,US,BG,US,IT,BG,GB,IT,BG,IT,BG,CH,IE,BG,US,BG,IE,BG,IT,FI,US,BG,IT,BG,GB,IT,US,BG,CA,BG,NL,DE,NL,RU,LV,GB,LT,US,BG,CH,UA,UZ,SA,UA,RU,PL,UA,RU,UA,FR,IT,RU,AZ,RU,DK,RU,BE,RU,KZ,LV,RU,KZ,PL,DE,US,MD,US,BE,ES,RU,IL,IT,NL,PL,GB,US,RO,IE,RO,IR,OM,IR,IQ,FR,RO,IT,US,MD,US,GB,IT,BE,DE,RO,SG,ES,RO,US,GB,DE,IT,RO,GB,RO,IT,GB,RO,ES,RO,ES,DE,RO,DE,IT,RO,FR,RO,AU,RO,DE,ES,RO,DE,FR,IT,RO,LT,CH,ES,UA,RO,GB,NL,IT,RO,US,AU,RO,SE,LT,DE,ES,GB,US,AT,RO,NL,RO,GB,RO,DE,IT,SK,IT,GB,ES,EE,RO,DE,FR,RO,IT,RO,AU,LV,RO,NL,FR,IE,NL,TR,FR,RO,US,IT,IR,RO,LU,RO,DE,CH,ES,NL,PL,RO,NO,GB,IT,AT,US,TR,RO,LI,RU,RO,GB,IT,NL,PL,GB,JP,PL,DE,GB,RO,GB,CH,FR,ES,RO,ES,AE,IT,ES,IT,DE,FR,DE,GB,PL,UA,RU,IR,OM,FR,IT,SE,DE,IT,GB,EE,SE,LV,DE,US,DE,LB,FR,KW,RU,IL,US,IL,US,IL,US,IL,HK,SG,JP,IL,DK,RS,RU,BG,US,BG,CA,GG,US,GI,FR,GI,MY,FR,TW,CA,BG,KR,GI,NL,HK,GB,DE,BG,CN,SE,DK,SE,DK,GB,RU,RS,RU,NL,RU,DE,AT,US,SG,ES,IS,RU,BE,DE,BE,DE,SE,IT,GB,ES,IT,RU,CZ,IE,RU,AT,FR,NL,BE,GB,DZ,GB,MQ,GP,MQ,GB,RU,FR,IT,RU,KZ,UA,BY,CZ,BE,RU,CZ,BE,CH,IR,GB,NL,CH,RU,FR,NL,CO,IT,TJ,GB,TR,CZ,HU,FI,RU,IT,DE,CZ,US,TR,RU,FI,FR,GB,NL,GB,IR,GB,FR,UA,AT,HU,GB,CZ,TR,DE,RU,IE,GB,FR,DE,FR,NL,AE,NL,DE,BE,ES,AM,GB,CH,GB,SK,DE,RU,PL,RU,NL,CH,RU,NL,FR,SE,RU,DE,AT,RU,FR,RU,NL,RS,RU,US,NO,NL,US,NL,US,NL,RU,SK,NL,GB,CZ,PL,CZ,RU,RS,GB,DE,GB,DE,ES,PL,RU,PL,RU,DE,IT,IL,IE,RU,CZ,RU,RS,UA,CH,UZ,RU,PL,RU,UA,FR,UA,FR,PL,UA,CH,DK,RU,UA,TR,LB,GR,AT,IT,US,IQ,AE,PL,ES,FR,IT,DE,FR,IT,PT,RU,IE,FR,US,UA,RU,PL,NL,RU,UZ,RU,MD,RU,PL,NL,PL,NL,RU,UA,GR,RU,FR,GB,RU,SM,LT,RU,PL,NL,IR,UA,RU,DE,RU,UA,PL,LT,RU,EE,NL,AE,NL,RU,SE,TR,GB,BG,FI,SG,NL,FI,DE,FI,NL,GB,SG,DE,FI,NL,FI,GB,NL,FI,RU,FR,PL,IT,PL,RU,UA,GE,RU,CZ,RU,SC,US,KZ,RU,SC,BR,NL,US,IR,RU,NL,SG,RU,SC,RU,BZ,RU,CZ,RU,DE,NL,LU,NL,HK,LU,NL,SG,RU,MD,RU,UA,LT,SG,CH,SE,GB,CH,GB,AT,FR,GB,FR,GB,FR,AT,SE,GB,IE,GB,IE,GB,NL,GB,IE,RU,AT,NO,SE,FI,SE,NO,SE,PL,EE,NL,IT,RU,FR,CZ,DE,CH,DE,IE,RU,KZ,NL,GB,HU,GB,RU,DE,RU,KZ,NL,RU,US,GB,RU,ES,GB,DE,AT,GB,FR,SE,FR,IT,NL,RS,RU,CH,UA,FR,RU,UA,ES,HU,RS,HU,RS,HU,JO,DE,BA,HR,DE,JP,DE,US,DE,SG,DE,US,SG,DE,US,DE,AU,DE,GB,IT,IS,GB,ES,IS,RU,PL,LU,SY,RU,HR,SE,PL,RU,SE,TR,ES,RU,DE,NO,IL,NL,RU,IR,ES,US,BG,IE,UA,RU,UA,RU,UZ,UA,RU,US,UA,RU,BY,UA,CZ,RU,GR,RU,KG,BY,UZ,MD,UZ,UA,RU,UZ,RU,UZ,UA,RU,KZ,UA,RU,UA,RU,UA,RU,MD,KZ,UA,RU,UA,KG,RU,KG,UA,TJ,UA,RU,MD,RU,MD,RU,UA,BY,HR,MD,UA,MD,KZ,MD,KZ,RU,MD,UA,RU,KZ,UA,BY,RU,MD,RU,UA,RU,UA,UZ,MD,UA,RU,UZ,UA,UZ,MD,UZ,MD,UA,MD,NL,MD,RU,MD,RU,UA,RU,UZ,KG,RU,MD,UA,MD,HR,UA,MD,UA,KG,RU,UA,EE,RU,MD,RU,MD,KZ,RU,KZ,UA,RU,UA,RU,MD,KG,RU,EE,UZ,RU,MD,RU,MD,RU,UA,RU,UA,MD,PL,RU,KZ,ES,IR,RU,MD,TR,KW,RU,UA,RU,LV,RU,PT,UA,RU,TR,RU,IT,RO,RU,SE,RU,IR,CZ,SK,CZ,DE,AT,IR,FR,RU,AU,US,HK,AU,GB,AU,KZ,CZ,RU,IE,GB,IE,GB,IE,RU,BH,RU,NL,US,LU,JP,DE,RO,GB,IN,UA,HK,SG,GB,TR,BR,SG,US,RU,GB,RU,ES,FR,JP,BR,LU,JP,LU,TM,RS,CZ,MK,SA,RS,AL,MK,RS,AL,MK,IL,AZ,RU,BG,KG,GB,SG,GB,PH,IT,SI,BG,DE,PT,NL,IN,ZA,BR,FR,SE,FR,CL,FR,RU,CH,DE,FR,CO,AR,NL,DE,NL,FR,NL,IE,GB,PT,FR,GB,ES,SE,ZA,BR,IT,PL,ES,IT,ES,FR,DE,IT,SE,BR,CZ,FR,PT,FR,DK,BR,NL,DE,SE,FR,US,NL,AE,FR,GB,BE,US,SE,NL,FR,AR,FR,FI,DE,FR,DE,FR,IL,BR,JP,NL,ZA,RO,IT,CH,IT,FR,GB,FR,IT,FR,GB,FR,GB,IT,BR,NO,DE,SE,TR,ES,IT,NL,IT,AT,AR,BR,IT,DE,GB,BR,GB,FR,CH,IT,FR,US,BE,FR,BR,DE,AE,FR,DE,NL,FR,GB,DE,IT,FR,NL,AT,BE,FR,NL,BR,GB,CL,BR,SE,ZA,BR,FR,ES,FR,DE,ES,FR,IT,FR,US,NL,RU,DE,IT,BR,GB,FR,SE,FR,DE,FR,US,ES,FR,SE,GB,SE,DE,IT,US,ZA,SE,BR,FR,SE,DE,IT,FR,DE,IT,DK,DE,NL,US,NL,IT,FR,DE,FR,DE,FR,GB,SK,GE,RU,SK,RU,AL,PL,RU,FI,RU,FI,RU,SE,UA,RU,IT,BG,GB,NO,SG,SE,US,AU,DE,ES,NL,GB,DE,DK,CH,FR,GB,TR,BY,FR,CH,NL,BE,NO,SE,LU,US,LU,US,GB,RU,FR,NL,IT,IR,BE,CH,NL,IR,RU,RO,GB,RO,RU,MK,TR,NL,IR,UA,IR,CH,DE,GB,RU,HR,RU,DE,SA,GB,NL,GB,IL,MT,GB,GR,DE,RU,GB,RU,NL,RU,CZ,GB,ES,NL,RU,ES,RU,GB,EE,AT,DE,ES,PL,RU,CZ,ES,DE,PL,FR,DE,FI,LV,BE,ES,IR,SE,GB,BY,PS,GB,DE,BE,DE,AT,RU,IT,GB,FR,DE,TR,RU,BE,LU,BE,GB,CN,DE,GB,DK,NO,RU,IR,RU,UZ,UA,RU,KG,NL,IR,DE,RU,FR,RU,PL,IT,HU,IT,GB,RU,GB,RU,DE,GB,DE,NL,GB,LV,DE,SK,FR,RU,GB,ES,RU,GI,AT,_,RU,GB,RU,MT,FR,GB,UA,PT,FR,RU,GE,MQ,GB,HU,GB,DK,RU,FR,RU,HU,GB,FR,SE,NL,RU,FI,RU,SY,RS,IT,RU,NL,RU,PL,NL,SA,SE,AM,BG,ES,SE,IT,NL,IT,DE,FR,CZ,RU,GB,IT,LB,NO,FR,KZ,GB,RU,JO,RU,ES,SE,DE,PL,GB,UA,RU,LT,TR,GB,DE,US,KZ,BG,DE,HU,ES,DE,ES,PT,ES,DE,NL,US,NL,US,NL,IL,US,IL,NL,IL,NL,US,NL,RU,NL,RU,NL,DE,TJ,NL,BE,NL,US,FR,SG,US,ZA,SG,US,ZA,SG,DE,BR,CA,SG,US,TR,GB,FR,IT,RU,IT,IR,PL,RU,US,CH,FR,AT,IT,RU,CZ,SI,DE,RU,SE,RU,AT,PL,GB,RU,CH,NL,GB,EE,MD,RU,DK,RU,GB,GR,GB,ME,PL,NL,SE,MK,RU,BA,DE,US,DE,US,DE,ES,DE,GB,DE,US,DE,AE,DE,IR,DE,IR,US,DE,PL,IR,GB,CH,IR,DE,IT,NL,IT,FR,UA,PL,BG,MK,BG,RU,SY,IQ,RU,SI,PL,RU,NL,IN,RU,NL,RU,NL,RU,NL,RU,KZ,RU,KZ,RU,KZ,RU,IR,RU,KZ,RU,US,RU,DE,RU,US,RU,PL,AT,NL,BR,FR,NL,EE,AT,DK,TR,UA,DE,NL,GB,KZ,UA,BG,MD,HU,US,PT,SE,TR,PL,AT,GB,NO,NL,UA,IE,FR,IT,DE,UA,SE,UA,GI,UA,NL,IL,BE,UA,DE,GB,US,PL,UA,US,UA,NO,DK,NL,GB,DE,GI,LV,UA,US,AT,FI,KZ,IS,TR,DE,EE,PL,ME,GI,ME,GR,US,MX,US,UA,US,UA,GI,GR,US,GR,US,ES,US,ES,US,ME,BG,ME,US,RU,GB,DK,RU,FR,HU,HR,DE,NL,GB,DE,GB,DE,GB,CZ,BG,US,NO,IT,RU,DE,NL,BG,MK,BG,NL,BG,IT,BG,ES,FR,NL,RU,IQ,SK,RU,IT,HU,PL,FR,BE,PL,RU,CH,RU,CH,RU,CH,RU,CH,RU,CH,RU,GB,RU,US,DE,GB,DE,GB,NL,US,DE,GB,NL,US,NL,DE,GB,RU,PT,JO,GB,TR,LT,SK,CZ,DE,RU,TR,GB,CZ,GB,CZ,GB,CZ,TR,IT,PL,IT,DK,NO,NL,AE,US,FR,DE,RU,DE,FR,RU,CH,PL,IL,JP,FI,GB,FR,GB,RU,FR,SI,GB,SA,PL,US,SA,ES,PL,SA,FR,PL,NL,FR,ES,PL,HR,RU,NL,DE,NL,GB,FR,GB,DE,RS,MK,RU,DE,RU,DE,RU,US,RU,KZ,US,RU,KZ,RU,US,RU,US,FR,RU,MA,MC,QA,SA,GE,VE,BS,LK,RU,KZ,PL,RU,MD,RU,UA,RU,ES,KZ,RU,BE,GB,US,GB,US,IL,US,RU,CH,RU,TR,SA,RU,SE,DE,SE,DK,SE,DK,FR,IT,GN,GQ,GW,IE,IT,DE,AT,CH,TZ,IT,FR,IT,SE,NO,DK,FI,IL,FI,IS,NL,IT,ZA,US,NL,FR,IT,ES,IT,CH,LR,ES,BG,HR,GR,HU,LY,MA,RO,ES,LS,LU,NG,MG,MW,MZ,NA,SS,PT,RW,CD,ES,TZ,AT,BE,CH,CZ,PT,DE,LU,NL,SK,AT,BE,CH,CZ,DE,GB,IE,LU,NL,FR,PL,SK,IT,ES,PT,PE,FR,IT,CI,IT,ES,FR,IT,FR,BG,FR,CI,IT,FR,IT,HU,SN,TG,ZM,LY,MA,IT,RO,HR,GR,LY,NG,ZA,TZ,UG,IT,GB,IT,FR,IT,FR,IT,FR,GB,IT,FR,IT,NL,SY,RU,ES,PL,FI,DE,UA,BE,NL,BE,JP,NL,VG,NL,BE,FR,ES,RO,UA,FR,NL,PL,RU,FI,BG,US,DE,TR,DE,NO,NL,HK,DE,SE,BG,SE,US,IT,BG,TR,NO,BG,ES,KY,DO,EC,SV,RU,HU,IT,DE,RO,US,BE,ES,CH,CA,BR,DE,HK,DE,SE,TW,FR,US,TR,KR,DE,TR,AT,US,GB,JP,DE,FR,DE,RS,UZ,LB,PL,BE,US,DE,GB,UA,DE,ES,NL,VN,IT,RU,UA,NL,GB,FR,GB,RU,SE,PL,DE,US,UA,SE,UA,PL,IE,RU,CH,IR,CH,PL,RU,NL,PL,CZ,RU,GB,UA,RU,PS,RU,ES,RU,PS,EE,RU,LT,US,RU,UA,IR,RU,SE,DE,IR,GB,RU,NL,PL,FR,NL,RU,DE,UA,RO,UA,GB,RU,PL,FR,GB,RU,KG,RU,FI,SA,RU,DE,IT,AU,PE,DK,NG,CL,IN,NZ,US,SG,US,SG,US,SG,CL,SG,PH,CL,US,CA,US,GB,US,NO,US,IN,US,TH,US,SG,US,JP,US,GB,US,NZ,IN,US,NL,CA,ES,IT,CH,US,IN,HK,CA,BR,US,PE,BR,US,CO,US,PH,US,JP,US,JP,US,SG,US,ID,US,CA,US,HK,US,AU,US,SE,US,ID,US,CA,NZ,US,JP,BR,US,JP,CA,US,BR,US,FR,US,JP,US,JP,US,JP,TW,US,KH,CA,OM,MY,AU,HK,SG,JP,AU,TH,US,SG,US,CA,US,HK,US,FR,US,AU,US,JP,AU,US,AU,US,CA,NL,SE,NL,PL,US,FR,US,BR,FR,US,GB,ES,US,DE,US,KR,TH,HK,GB,US,SG,AU,US,FR,US,TH,US,AU,US,AU,US,SE,HK,US,AU,US,AU,US,JP,IN,SG,US,SG,BR,US,HK,US,AU,US,AU,US,FR,NL,US,TW,FI,US,CL,US,HK,AU,SG,US,AU,US,AU,US,SG,US,FR,US,AU,US,AU,US,IN,US,AU,US,AR,US,IN,US,IT,US,GB,SG,AU,IN,US,AU,HK,FR,IN,US,JP,US,FR,US,AU,US,TH,US,CA,US,TH,CA,US,JM,US,CA,US,CA,US,CA,US,SG,DE,GB,FR,CA,AU,US,CA,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,CA,DE,US,CA,US,CA,US,CA,US,BE,US,BE,US,CA,US,NL,US,CA,US,MX,US,JP,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,NL,FR,DE,US,DE,US,IN,US,IE,NL,US,GB,US,ES,US,MX,US,BB,BL,GP,MF,MQ,VI,BS,CA,US,GU,PR,VI,BB,NG,US,CA,US,ZM,MW,US,CA,US,PE,BR,CO,US,CL,AR,BR,MX,BR,CO,AR,CL,US,BR,US,MY,TH,US,VN,PH,JP,MY,HK,MY,AU,KR,US,BR,US,JP,US,VN,KR,TW,JP,SG,TW,ID,SG,IT,TR,NL,RU,US,GB,FR,GB,IT,TR,GB,TR,DE,PL,DE,PL,DE,US,RS,ES,BG,SE,CH,ES,ID,US,NG,HR,CZ,PT,US,KE,US,TR,HK,NG,US,GB,NL,ZA,FR,GB,TR,GB,DE,RU,DE,FR,US,SA,US,JP,SG,ID,NG,US,AE,SA,AE,SA,AE,IL,SA,AE,QA,AE,SA,US,CA,US,AU,US,CN,HK,AE,US,CA,US,CA,US,SE,US,BE,US,BE,US,BE,US,DE,US,BE,US,BE,US,DE,US,BE,FR,US,BE,US,DE,US,DE,US,DE,US,IN,US,VI,US,PA,US,ID,US,JP,KR,CN,EE,NL,DE,BE,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,SG,HK,VG,US,CA,US,GB,US,NL,GB,US,SI,US,JP,DE,NL,US,BA,BE,US,KY,US,TH,US,CA,US,VG,US,CA,US,JP,US,CA,US,BE,US,CA,US,SE,US,AE,ES,JP,US,IE,GB,FR,DE,SE,IT,JP,KR,HK,SG,AU,IN,US,BH,ZA,BR,CA,US,IE,GB,FR,DE,IT,JP,SG,US,IL,US,CA,BR,ZA,BH,ID,IN,AU,SG,HK,KR,JP,IT,SE,DE,FR,GB,IE,US,ZA,DE,AU,IE,US,KR,US,JP,AU,US,BH,US,ID,CA,IE,JP,US,BH,US,IN,FR,IE,DE,BR,US,KR,GB,JP,US,SG,CA,US,AU,US,IN,AU,JP,US,HK,US,DE,JP,US,SG,DE,SG,US,AU,US,GB,BR,US,JP,US,DE,US,JP,DE,US,DE,IN,US,IN,CA,FR,US,FR,US,GB,IE,US,AU,KR,IT,MY,US,JP,KR,AU,JP,US,AT,GB,SG,IN,IE,US,DE,KR,AU,GB,JP,US,SE,FR,IT,HK,JP,ZA,IN,AE,US,ES,AU,CH,IE,US,SG,BR,US,CA,IN,KR,IL,MY,CA,US,DE,US,NL,BR,US,CA,US,CA,US,MX,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,RU,RS,RU,RS,RU,RS,RU,RS,US,RS,CA,US,_,US,CN,ID,PH,GB,PH,JP,TH,PH,HK,JP,IN,AU,TW,CN,HK,TH,HK,KR,_,HK,_,KR,JP,IN,JP,BD,AU,CN,LK,AU,TW,CN,TW,CN,HK,IN,JP,SG,HK,TH,IN,SG,IN,ID,BR,DE,VN,IN,JP,PH,US,BR,SG,BR,SG,NL,VN,HK,SG,JP,KR,IN,KR,SG,HK,CN,GB,US,PH,VN,JP,HK,KR,US,HK,CN,CL,HK,TR,HK,TH,HK,SA,EG,TH,SG,MX,HK,NL,KR,VN,TR,SG,HK,EG,HK,TR,ZA,SA,IE,US,SG,HK,IE,SA,EG,PH,SG,ZA,IE,SA,ID,BR,CL,SG,SA,EG,PH,SG,DE,GB,PH,SG,HK,SA,PH,HK,SG,HK,SG,HK,SG,HK,SG,HK,SG,CN,ID,JP,CN,ID,JP,CN,JP,PK,JP,TH,CN,VN,KR,JP,CN,JP,IN,US,NZ,PK,CN,KR,JP,CN,JP,IT,GB,IT,CN,JP,LA,MY,CN,SG,HK,KR,CN,VN,CN,JP,VN,CN,JP,AU,JP,SG,JP,NZ,VN,MY,CN,GU,NZ,SG,NC,CN,VN,KR,VN,CN,TW,CN,KR,JP,CN,JP,CN,TW,CN,JP,AU,CN,TH,JP,CN,NZ,CN,JP,AU,CN,SG,CN,AU,CN,ID,JP,CN,TW,JP,CN,AU,HK,SG,GB,HK,SG,GB,AU,CN,KR,JP,US,JP,CN,ID,CN,JP,CN,IN,CN,SG,JP,SG,CN,AU,CN,AU,SG,NZ,AU,KR,CN,KR,CN,NP,CN,ID,KE,EG,MG,GH,ZA,MU,ZA,MU,CI,SL,KE,ZA,RW,ZA,KE,NG,LR,SS,ZA,BF,MU,SS,TD,ZA,NG,MU,GH,CD,ZM,MU,SZ,KE,SL,ZA,NG,ZA,TZ,LY,ZA,TN,ZA,UG,RE,ZA,MU,NG,SN,ZA,CD,MW,MZ,SN,NG,ZA,NG,US,NG,BF,CD,ZA,NG,CD,SZ,ZA,GH,MR,FR,MU,ZA,MU,ZA,SS,UG,AO,NG,MU,ZA,LS,MU,ZA,LY,ZA,SO,MU,NG,ZA,BJ,GH,NG,CL,NG,PE,NG,DZ,AD,NG,CN,CO,NG,CR,CY,HR,GT,EC,LI,BD,MT,MC,NP,US,NL,LV,GR,NL,RU,EE,GR,FI,ZA,EG,MA,EG,SS,MA,NG,GH,ZA,NG,ZA,EG,SS,AO,TZ,SS,CD,MU,ZA,KE,MU,ZW,ET,DJ,MZ,BF,ZA,CM,NG,ZA,GH,ZA,CG,US,SS,TG,ZA,NG,ZA,CD,ZA,BF,ZA,SZ,MA,KE,ZA,ZM,ZA,NG,BF,ZA,MZ,CI,ZA,MA,ZA,SO,KE,EG,MU,ZA,BF,ZA,SZ,MU,CD,TZ,ZA,NG,TZ,ZA,KE,ZA,GH,NG,KE,ZA,NG,ZA,BF,NG,ZA,UG,BF,NG,MU,LY,ZM,MU,KE,ZA,SO,CD,ZA,NG,UG,ML,ZA,MU,BF,MG,LY,ZA,NG,MU,EG,CV,BF,ZA,GM,ZM,GM,TZ,ZA,CD,ZA,NA,ZA,GH,KE,ZA,KE,NG,ZA,GH,ZA,MW,MA,UG,NG,US,NG,MA,US,MA,TN,MU,SD,TN,MU,IL,MU,ZW,ZA,SO,ZA,US,DE,IL,US,ZA,EG,ZA,MU,NG,MU,GA,MU,ZA,GB,FR,GB,CG,ZA,US,CA,US,GB,US,TH,US,CH,NG,US,GB,DE,GB,CA,US,ZA,CA,US,NL,IT,ZA,ID,US,BR,US,DE,US,ZA,KR,US,ZA,SG,ZA,US,HK,US,HK,US,ZA,US,GB,IT,HK,US,ID,PK,US,ZA,US,ID,SG,US,GB,TH,US,GB,US,NL,US,ZA,NL,ZA,US,NG,MU,ZA,RW,ZA,NG,ZA,NG,MU,AO,ZA,MU,ZM,MW,KE,NG,ZA,AO,CI,ML,ZA,SD,MU,GH,MU,ZA,MU,ZA,EG,NG,MU,TD,ZA,NG,ZA,CM,ZA,MU,KE,FR,ZA,US,NG,CD,ZA,US,ZA,GA,GM,MU,RW,ZA,MZ,ZA,MU,MG,KE,TZ,MA,CD,BF,ZA,NG,KE,ZA,GA,ZA,MU,ZA,BW,ZA,BI,NG,ZA,KE,GH,ZA,MU,UG,ZA,BW,ZA,SC,GH,NG,ZA,KE,SC,KE,ZA,GA,KE,CD,CI,GH,CM,ZA,CI,NG,RE,YT,RE,YT,RE,ZA,CI,KE,ZA,GH,ZA,NG,ZA,NG,MU,ZA,MU,GM,ZA,MU,KE,TZ,KE,CG,ZA,BW,ZA,SO,ZA,TN,ZA,NG,MU,ZA,MU,ZA,NG,ZA,SC,ZA,GA,SL,SD,ZM,TN,MU,ZA,MU,ZA,NG,MU,NG,HK,KE,HK,KE,ZA,LY,ZA,TN,EG,ZA,UG,ZA,EG,GH,GA,SN,ZA,TG,ZA,TD,GB,GQ,GB,DE,NG,MY,US,DE,ZA,DE,IT,PK,NL,US,GB,US,ZA,GB,US,NG,US,BR,ZA,US,GB,US,FR,US,ZA,CA,ZA,ID,BR,ZA,US,DE,HK,DE,GB,HK,KH,ZA,NG,ZA,ML,ZW,ZA,NG,BW,ZA,NG,ZA,MA,MU,TZ,ZA,KE,TN,GH,US,BE,MU,GN,BF,KE,NG,ZA,KE,MU,ZA,NG,MZ,MW,ZA,TG,GH,ZA,ZW,MU,TZ,MU,GH,MU,ZA,DE,ZA,CI,AE,ZA,GB,ZA,IT,DE,ZA,SE,ZA,GB,CH,EC,DE,NL,TH,NL,US,NL,SA,CA,NL,ZA,SA,ZA,ZW,MU,BF,SD,MU,ZA,MU,EG,MU,GH,UG,LY,ZA,UG,TZ,KE,ZA,GH,TZ,MU,AO,KE,ZA,CV,SN,RW,LY,SZ,KE,ZA,BF,NG,ZA,NA,UG,GN,SN,CD,CI,MU,ZA,MU,EG,UG,ZA,NA,MZ,LY,ZA,AO,ZA,KE,CI,ZA,KE,GH,ZA,KE,TZ,ZA,SL,ZA,TZ,KE,NG,ZA,CM,MZ,LR,CI,TZ,KE,MA,ZM,KE,ZM,KE,UG,ZW,CM,AO,KE,ZA,TN,ZA,KE,ZA,BW,UG,ZM,CD,NG,AO,CD,ZA,KE,AO,TZ,EG,ZA,NG,SL,NG,ZA,TZ,ZA,CI,KE,ZA,MA,NG,KE,ZA,AO,ZA,SD,NG,SO,ZA,KE,KI,KE,ZA,BW,CD,EG,MU,LY,CV,GM,ZA,MW,GH,MW,GH,ZA,TZ,ZA,NG,ZA,GH,CM,AO,ZA,UG,KE,TZ,RW,ZA,NG,ZA,TZ,ZA,NG,MG,MU,ET,KE,TD,MZ,KE,GH,ZA,TZ,BF,NG,ZA,AO,ZA,KE,BW,KE,LY,AO,NG,ZA,KE,NG,UG,LY,ZA,SS,TZ,ZA,GN,AO,ZA,FR,TN,KE,ZA,AO,NG,ZA,GM,TZ,ZA,KE,ZA,TN,ET,KE,CD,ZA,KE,ZA,NG,ZA,GH,ZA,EG,IT,ET,ML,KE,NG,CV,TZ,ZA,FR,TG,ZA,NG,TZ,ZA,KE,LY,ZA,KE,ZA,BF,ZA,NG,ZA,NG,CV,GH,ZM,ZA,CI,ZA,SZ,NG,MA,NG,CD,AO,ZW,ZA,SZ,NG,KE,ZW,NG,KE,NG,KE,TD,NG,ZA,RE,AO,TZ,NG,ZA,MW,AO,TZ,ZW,LY,KE,GQ,AO,TZ,DZ,NE,ZA,ET,ZA,NG,ZA,NG,KE,AO,CI,ZA,CD,ZA,ML,ZA,GH,ZA,KE,ZA,ZW,ZA,SG,ZA,CI,KE,MW,ZA,KE,LY,NA,LY,UG,CD,ZA,CV,KE,RW,GH,KE,GM,MU,LY,CG,ZA,AO,KE,NG,NE,KE,ZA,AO,NE,ZA,SS,NG,MU,KE,ZA,GH,TZ,AO,BF,TZ,GH,NG,BF,GH,KE,ZA,KE,GH,ZA,DJ,NG,ZA,KE,MU,LY,ZA,LS,ZA,AO,NG,BW,AO,MR,NA,LR,KE,TZ,BJ,ZA,UG,ZA,KE,SZ,LY,SO,ZA,EG,ZA,CV,ZA,UG,SN,ZA,MR,NA,ZA,RW,ZA,EG,ZA,AO,NG,ZA,MU,BJ,NG,KE,BW,KE,RW,KE,SS,ZA,SZ,TZ,KE,ZA,KE,UG,ZA,DE,LR,NG,GM,SN,AO,ZA,KE,MU,NE,BJ,ZA,BJ,UG,MR,MU,ZA,SZ,ZA,NA,UG,ZA,KE,BJ,ZA,BJ,ZA,MU,TZ,ZA,MU,TZ,UG,AO,MU,NG,AO,KE,ZA,LY,ZA,NG,ZA,MU,TN,FR,NG,ZA,BW,ZA,GQ,ZA,CI,ZA,NG,MA,ZA,NG,ZA,MG,ZA,TZ,AO,MR,ZA,NG,ZA,CM,GH,ZA,AO,TZ,KE,ZA,BW,KE,MU,ZA,NG,CI,ZA,SS,ZA,KE,MA,KE,BF,ZA,NG,TZ,ZA,CV,ZA,NG,LY,AO,UG,NG,KE,ZA,BJ,AO,TZ,ZA,NG,ZA,NG,ZA,NG,CI,AO,GH,ZM,MR,ZA,MR,ZA,NG,SL,CD,TZ,GM,AO,NG,KE,NG,TG,CD,ZA,ML,ZA,ZW,UG,KE,UG,MU,KE,EG,SA,TZ,ZA,TZ,ZA,MU,NE,KE,ZA,EG,AO,KE,RW,UG,KE,ZA,CD,KE,GH,ZA,KE,ZA,KE,DJ,ZA,KE,TN,KE,ZA,NG,ZA,AO,ZA,NG,UG,TN,TZ,NG,ZA,CL,AR,CO,KW,ZA,KE,ZA,EG,NG,ET,MU,ZA,SO,ZW,ZA,EG,ZA,TZ,KE,UG,ZA,ET,ZA,SO,ZA,SD,TZ,NG,AO,UG,AO,MU,SO,SD,NG,US,CZ,ZA,UG,TD,NG,ZA,KE,MU,GN,MU,MA,ZA,GN,ZA,TZ,AO,ZA,MW,CM,MU,LY,RW,AO,ZA,DZ,ZA,LY,NG,ZA,KE,ZA,GH,ZA,KE,GN,ZA,TZ,MU,CM,BF,MU,ZA,MU,KE,ZA,TZ,ZA,AO,ZA,GH,MU,ZA,CM,ZA,NG,ZA,CM,UG,ZA,BW,ZA,AO,GH,NG,TZ,ZA,CV,ZA,BF,ZA,GH,NG,UG,MU,ZA,TN,ZA,TZ,AO,NG,MU,EG,ZA,KE,EG,ZA,NG,ZA,TN,ZA,TZ,RW,GW,FR,TN,FR,TN,ZA,MW,AO,NG,KE,NG,ZA,TZ,BW,MR,KE,MU,TZ,NG,ZA,AO,LY,ZA,TN,FR,TN,ZA,MU,KE,ZA,MU,ZA,KE,CM,CI,CG,CM,KE,UG,KE,NE,DZ,ZA,MU,KE,SO,NG,ZA,CD,ZA,TZ,ZA,UG,NG,ZA,TD,ZA,GH,ZA,KE,FR,KE,ZA,MA,MU,ZA,TZ,NG,ZA,MU,LY,MU,ZA,SD,UG,ZM,NG,CV,KE,NG,KE,MU,KE,ZA,MU,TZ,NG,AO,TD,UG,NG,ZA,US,ZA,NG,KE,CM,GH,ZA,KE,ZA,KE,MU,CG,ZA,SL,MW,KE,ZA,NG,ZA,LY,ZA,NG,TZ,ZA,GH,KE,ZA,NG,ZA,AO,LY,ZA,GM,EG,ZA,KE,ZA,NG,ZA,NG,ZA,CD,KE,ZA,MU,AO,ZA,NG,EG,TZ,ZA,KE,TN,ML,NG,ZA,EG,MU,CI,MU,ZA,NG,ZA,AO,ZA,MU,NG,BR,NA,NG,CD,KE,ZA,LY,GH,ZA,NG,ZM,ZA,KE,BW,ZA,AO,ZA,MU,TZ,ZA,MU,SS,ZA,KE,BW,MU,BF,RW,SS,ZA,SS,ZA,UG,NG,ZA,UG,ZA,RU,ZA,CI,TZ,MZ,AO,NG,ZA,MU,ZA,NG,BF,ZA,SZ,ZA,CV,KE,ZA,UG,ZA,GH,BW,GH,MA,ZA,GH,ML,ZA,MA,BJ,KE,MU,CD,UG,ZA,MU,ZA,MU,ZA,LY,MU,ZA,TZ,MU,ZA,AO,ZA,CM,TZ,ZA,TZ,GH,GQ,CI,KE,NG,ZA,TD,NG,TD,NG,ZA,MU,ZA,ML,MU,US,ZA,KE,UG,NG,DE,ZA,KE,UG,GH,EG,MW,ZA,GH,NG,MU,ZA,MU,ZA,GH,MU,ZA,SC,KM,ZA,CD,ZA,MU,ZA,EG,ZA,MU,SL,LY,MU,ZA,SL,MU,GH,BF,CD,US,ZA,GB,SO,TD,ZA,KE,MU,CD,ZA,UG,CG,ZA,EG,MU,UG,CI,EG,ZA,CI,GH,NG,MU,TN,CM,ZA,AU,SG,IN,AU,CN,HK,CN,LA,HK,_,IN,ID,AU,US,SG,AU,SG,HK,MY,CN,AU,IN,SG,CN,NP,MP,IN,MY,AU,IN,PH,JP,IN,MY,SG,JP,MY,HK,NL,ID,HK,JP,TH,CN,SG,LK,FJ,AU,BR,AR,BR,VN,AU,VN,AU,TW,HK,AU,LA,VN,AU,JP,KR,MY,KR,SB,KR,JP,SG,CN,TH,AU,NZ,JP,IN,JP,NL,ID,LK,CN,JP,CN,AU,SG,NC,CN,IN,AU,CN,TW,VN,IN,AU,JP,HK,JP,MY,HK,JP,IN,KR,IN,ID,JP,ID,SG,TH,ID,MY,ID,PH,CN,AU,CN,AU,SG,MY,US,SG,PG,SG,MY,TH,JP,TW,AU,GB,AU,GB,SG,IN,ID,AU,ID,EE,IN,ID,IN,AU,US,GU,VN,ID,MY,JP,AU,HK,US,HK,TW,JP,SG,JP,MY,KR,ID,AU,CN,AU,BD,JP,PF,ID,SG,ID,AU,MY,PK,SG,ID,PK,HK,PH,TW,SG,HK,SG,BD,AU,NZ,AU,SG,VN,AU,ID,NZ,MY,BD,KR,NZ,TH,AU,ID,CN,AU,ID,KR,CN,BN,US,SG,JP,IN,_,ID,IN,AU,TH,IN,CN,TH,SG,IN,AU,ID,HK,US,IN,PH,SG,HK,IN,JP,TH,NZ,AU,VN,TW,CN,JP,TW,ID,CN,US,CN,PH,JP,HK,AU,IN,NZ,AU,IN,HK,NZ,IN,AU,TW,IN,MY,AU,ID,NZ,IN,TH,MM,TH,KH,KR,IN,PK,JP,KR,ID,NP,SG,CN,NZ,JP,AU,CN,AF,JP,MY,IN,CN,_,SG,IN,VN,AU,ID,BD,MO,HK,NZ,NP,KH,BD,MY,SG,IN,HK,CN,ID,IN,AU,HK,KH,AU,JP,TH,AU,IN,NZ,IN,ID,AU,ID,JP,HK,ID,JP,SG,JP,KR,CN,KR,HK,IN,PH,IN,JP,PH,KR,PH,AU,SG,CN,JP,AU,ID,MY,IN,BD,TW,HK,IN,HK,NZ,SG,HK,IN,_,TH,MY,IN,TH,ID,IN,SG,US,KR,HK,ID,PH,HK,IN,AU,HK,MY,ID,AU,NZ,ID,AU,CN,JP,CN,AE,VN,MY,PH,MY,VN,BD,AU,ID,AU,IN,BD,VN,SG,ID,TH,JP,KH,HK,KR,VN,_,AU,ID,HK,TH,PK,IN,HK,TW,AU,PK,IN,ID,AU,JP,NZ,AU,GU,ID,IN,BD,JP,BD,SG,IN,JP,SG,AU,CN,KH,IN,PH,AU,IN,JP,MY,HK,IN,HK,AU,NZ,VN,ID,VN,ID,VN,ID,IN,ID,AU,KR,BD,ID,VN,VU,JP,SG,GB,JP,CN,PH,ID,AU,JP,HK,KR,BD,BT,CN,ID,VN,PK,NZ,KH,MY,GB,AU,SG,CN,IN,JP,CN,ID,MN,AU,IN,ID,CN,NZ,ID,AU,NZ,PH,JP,SG,ID,KR,TW,CN,PK,IN,SG,BD,ID,IN,TH,AU,NZ,MY,IN,SG,CN,MY,IN,AU,JP,NL,JP,GB,JP,ID,IN,AU,HK,ID,JP,CN,TH,SG,PK,HK,IN,CN,ID,AU,KR,PK,NZ,AU,ID,US,HK,JP,PH,ID,IN,NZ,VN,CN,IN,AU,ID,PK,CN,JP,KR,ID,NZ,ID,AU,SB,MY,AU,IN,VN,MN,JP,PL,SG,BD,NZ,ID,CN,BD,TW,JP,ID,KR,BD,SG,BD,ID,_,ID,MY,CN,VN,AU,JP,AU,JP,_,JP,BD,PK,ID,BD,KH,HK,VN,NZ,BD,IN,BD,IN,PG,ID,WS,JP,WS,IN,AU,HK,CN,TW,AU,IN,_,AU,HK,CN,MN,IN,NP,AU,JP,HK,JP,MY,VN,AU,BD,ID,MY,ID,VN,ID,AU,IN,MY,ID,AU,_,CN,VN,KR,ID,SG,ID,AU,IN,ID,JP,IN,ID,US,AU,US,ID,IN,ID,CN,ID,PH,MY,JP,IN,ID,HK,PH,IN,ID,IN,ID,BD,HK,PH,TW,IN,VN,KR,SG,IN,ID,IN,TH,AU,NZ,IN,JP,HK,JP,IN,US,GB,IN,ID,_,PK,JP,TH,AU,TH,CN,IN,ID,KR,ID,SG,ID,LK,_,PH,KR,SG,AU,KR,PK,US,HK,ID,AU,IN,HK,ID,HK,ID,HK,PH,IN,JP,NZ,KR,ID,BD,SG,AU,SG,AU,ID,SG,IN,JP,PG,SG,JP,AU,IN,CN,VN,ID,NZ,ID,CN,AU,ID,SG,MN,BD,VN,SG,AU,JP,AU,KH,PK,JP,ID,IN,HK,IN,JP,HK,JP,NZ,IN,KR,ID,JP,IN,SG,AU,ID,JP,ID,AU,ID,IN,ID,CN,AU,PK,BD,HK,US,PH,_,PK,AU,HK,MY,HK,SG,BD,VN,PK,ID,BD,ID,IN,AU,PH,HK,CN,AU,CN,AU,VN,AU,ID,IN,PK,IN,AU,IN,CN,MY,HK,MY,IN,JP,AU,KH,ID,AU,BD,ID,IN,BD,PK,SG,CN,AU,IN,PK,AU,BD,ID,BN,SG,IN,US,HK,ID,BD,CN,BD,ID,AU,ID,IN,BD,KR,IN,PK,IN,ID,NZ,CN,PH,JP,TH,MM,ID,NZ,IN,JP,HK,KR,AU,JP,AF,AU,_,MY,VN,AU,LA,JP,IN,AU,IN,NZ,MY,CN,SG,BD,PH,IN,ID,JP,SG,CN,SG,CN,BD,JP,BD,KR,ID,AU,JP,SG,HK,IN,ID,PH,IN,PH,AU,GB,BD,NP,CN,ID,SG,GB,NL,DE,TH,AU,IN,KR,BD,TH,ID,BD,HK,IN,HK,CN,JP,IN,TR,ID,NZ,AU,TH,JP,ID,_,TH,AU,MX,BR,MY,CN,MN,NZ,ID,IN,AU,VN,IN,AU,IN,PH,AU,NZ,BD,ID,SG,HK,SG,JP,CN,PG,_,AU,IN,CN,HK,RO,ID,BD,ID,HK,GB,JP,GB,IN,BD,CN,NZ,BD,VN,IN,_,IN,VN,CN,IN,TH,BD,TW,AU,PH,TH,PH,IN,MY,SG,AU,IN,ID,BD,PH,ID,IN,BD,_,BD,QA,SG,NZ,HK,VN,AU,ID,AU,ID,IN,SG,CN,SG,KH,AU,JP,CN,ID,CN,HK,SG,HK,TH,JP,PH,ID,AF,JP,BD,_,VN,MV,IN,JP,AU,IN,NZ,PH,JP,PH,IN,HK,VN,JP,VN,CN,SG,HK,JP,PG,PH,HK,IN,US,NZ,AU,HK,MY,BD,ID,TH,AU,NZ,_,US,IN,ID,AU,BD,AU,GB,ID,IN,AU,IN,HK,JP,HK,CN,AU,BD,ID,HK,VN,BD,ID,SG,IN,SG,_,AF,ID,BD,IN,ID,IN,VN,_,IN,JP,IN,VU,SG,NZ,BD,HK,IN,JP,MY,IN,ID,IN,AU,CN,IN,KH,AU,IN,BD,IN,ID,CN,AU,IN,SG,IN,CN,ID,BN,CN,AU,ID,AU,ID,IN,AU,BD,PG,VN,_,IN,PH,NZ,IN,NZ,MY,HK,ID,AU,IN,ID,IN,TH,NP,AU,VN,JP,ID,IN,ID,VN,BD,HK,ID,JP,TW,BD,SG,HK,QA,HK,IN,TW,IN,AU,IN,MY,PH,BN,HK,ID,BD,CN,NC,IN,ID,AU,ID,AU,AF,CN,BD,HK,ID,MY,ID,IN,VN,HK,SG,KR,TW,AU,IN,MN,IN,GU,HK,CN,MY,JP,TH,IN,AU,CN,VN,ID,SG,PH,BD,AU,IN,CN,ID,AF,MY,ID,BD,ID,BD,ID,JP,ID,IN,JP,VN,SG,JP,PK,CN,MY,KH,AU,CN,AU,VN,TW,ID,TH,AU,MY,VN,PK,ID,PK,JP,ID,AU,ID,AU,NZ,AU,NZ,JP,PH,IN,ID,BD,AU,SG,MY,ID,JP,IN,AU,ID,PK,ID,NZ,IN,AU,TW,ID,NZ,IN,ID,AU,_,ID,AU,BR,AR,AF,IN,BN,VN,BD,ID,HK,ID,CN,ID,AU,ID,CN,AU,NZ,BD,HK,CN,IN,ID,CN,PH,ID,AU,ID,AU,IN,PK,MY,IN,AU,JP,NZ,SG,NZ,CN,PH,IN,SG,HK,VN,PH,BD,ID,HK,_,CN,PK,JP,IN,ID,AU,CN,ID,SG,US,IN,AU,VN,NZ,TH,ID,AU,JP,IN,BD,KR,IN,BD,IN,AU,IN,ID,JP,VN,IN,AU,ID,HK,AU,NZ,IN,AU,ID,IN,JP,AU,IN,AU,MY,VN,MV,ID,CN,HK,JP,GB,IN,PK,JP,CN,ID,AU,ID,AU,BN,IN,CN,JP,TW,CN,AU,ID,BD,AU,IN,_,SG,HK,IN,CN,JP,PG,KH,ID,BD,ID,SG,VN,TW,AU,US,VN,IN,ID,BD,CN,KR,TH,US,SG,NR,IN,CN,PK,NZ,BD,VN,MN,JP,KH,JP,CN,IN,HK,ID,SG,FR,TW,BD,ID,SG,ID,HK,ID,JP,AU,TH,AU,IN,AU,SG,IN,ID,HK,MY,BD,IN,VU,SG,HK,MY,BD,IN,AU,CN,AU,NZ,AU,IN,HK,US,HK,PH,IN,AU,IN,AU,TH,HK,SG,MY,JP,BD,MY,AU,US,IN,AU,IN,TW,ID,IN,BD,IN,SG,IN,ID,MY,ID,VN,CN,VN,CN,PH,AU,CN,VN,IN,AU,HK,NL,ID,US,CN,AU,VN,MY,AU,IN,LK,PH,NZ,CN,MY,IN,KR,HK,NZ,ID,TW,KR,SG,ID,CN,ID,CA,BD,ID,SB,IN,DE,CN,US,SB,MY,CN,BD,ID,CN,SG,ID,IN,AU,MY,JP,PH,MY,ID,JP,SG,IN,_,TH,AU,CN,PE,US,LU,HU,AU,SG,JP,HK,ID,_,AU,TW,ID,VN,KR,AU,JP,CN,ID,NZ,IN,ID,NZ,ID,CN,AU,JP,CN,JP,NZ,ID,IN,ID,IN,ID,BD,ID,AF,BD,HK,MY,MN,NC,CN,ES,EC,AU,JP,AU,NZ,PH,JP,PH,SG,KR,VN,IN,PH,BD,ID,AU,TW,AU,ID,IN,TH,QA,TH,PH,KH,IN,ID,NZ,VN,_,IN,ID,AU,VN,CN,JP,KR,JP,_,AU,ID,CN,ID,AU,HK,ID,BD,SG,NZ,KH,IN,MY,AU,JP,ID,CN,ID,IN,ID,AU,US,_,JP,PK,BD,HK,SG,KR,ID,AU,HK,BD,KH,IN,CN,NZ,KH,IN,NZ,SG,IN,AU,ID,TW,JP,TW,ID,IN,AU,BD,PK,ID,SG,_,IN,BD,VN,HK,MY,HK,PK,TW,ID,IN,NC,CN,US,IN,CN,AU,MY,IN,NZ,CN,ID,HK,SG,JP,PH,SG,JP,IN,CN,IN,CN,IN,_,JP,ID,IN,JP,AU,ID,PH,HK,CN,ID,CN,US,ES,AU,VN,HK,CN,IN,HK,_,MM,KR,CN,IN,CN,SG,AU,ID,AU,HK,SG,HK,CN,HK,MM,BD,US,SE,US,JP,KH,TH,JP,HK,ID,AU,NZ,BD,IN,HK,IN,PK,PG,US,CN,IN,CN,AU,IN,ID,IN,PH,HK,PH,AU,ID,NZ,ID,PH,SG,IN,ID,AU,CN,PH,AU,ID,IN,VU,US,IN,TW,MM,NZ,BD,HK,CN,ID,IN,ID,NZ,TH,JP,BD,ID,MM,JP,PH,SG,MY,IN,AU,CN,AU,IN,MY,CN,PK,AU,HK,TL,IN,ID,LA,IN,BD,ID,HK,IT,ID,CN,BD,CA,HK,GB,MY,JP,CN,JP,IN,MY,AU,ID,TH,PK,ID,MN,MY,ES,IN,NZ,IN,ID,IN,SG,IN,CN,IN,AU,PK,CN,BD,MY,VN,HK,AU,IN,ID,CN,IN,CN,IN,PK,CN,AU,ID,NZ,AU,JP,SG,IN,NZ,CN,VN,HK,MY,US,HK,JP,IN,NZ,AU,CN,TH,MY,HK,MY,SG,MM,IN,NZ,PH,HK,KR,JP,IN,PS,KR,AU,JP,AU,SG,AU,IN,AU,HK,JP,AU,ID,AU,TH,MY,ID,CN,HK,NZ,JP,AU,NZ,SG,IN,VN,CN,JP,ID,JP,MY,KH,CN,ID,TW,AU,ID,JP,VN,AU,HK,AU,ID,HK,SG,ID,KR,US,NL,AU,JP,ID,HK,ID,NP,HK,MY,AU,ID,JP,TH,ID,IN,ID,BD,TH,AU,AF,VN,IN,HK,ID,PK,IN,AU,ID,MY,ID,JP,HK,JP,VN,ID,IN,CN,ID,AU,TW,PH,CN,SG,CN,AU,ID,JP,TH,KH,IN,JP,IN,VN,ID,BD,ID,HK,CN,PH,CN,VN,IN,CN,NZ,IN,AU,_,AU,IN,JP,AU,MY,SG,MY,BD,IN,AU,JP,HK,AU,IN,AU,MM,HK,IN,AU,BD,SG,AU,JP,NP,AU,IN,ID,BD,CN,HK,MN,ID,NC,IN,AU,PK,ID,AU,ID,AU,JP,BD,PK,ID,TH,AU,ID,IN,MY,MN,AU,IN,ID,AU,IN,BT,ID,IN,CN,BD,MY,NZ,AU,IN,PH,ID,HK,PH,VN,US,CN,IN,_,BD,SG,VN,HK,TW,HK,PH,HK,PH,TH,ID,BD,IN,HK,US,IN,HK,IN,ID,CN,HK,CN,KR,TL,IN,AU,SG,ID,TH,_,AF,IN,ID,CN,IN,_,KR,JP,AU,BD,ID,IN,ID,AU,BD,ID,SG,KH,CN,HK,CN,KR,SG,IT,AU,ID,MY,AU,SG,AU,ID,IN,CN,US,HK,CN,JP,ID,PW,HK,CN,US,IN,BD,JP,HK,SG,AU,MY,AU,ID,MY,ID,IN,ID,CN,HK,JP,PK,MV,AU,PK,HK,PK,BD,ID,AU,US,ID,VN,KH,ID,HK,IN,CN,BD,ID,CN,ID,CN,SG,BD,KR,SG,HK,IN,JP,TW,CN,ID,BD,IN,JP,IN,MM,ID,SG,ID,CN,ID,CN,JP,ID,PH,JP,PH,BD,CN,IN,GB,JP,VN,IN,HK,US,HK,AU,HK,NZ,IN,SG,AU,TH,IN,CN,BD,AU,IN,CN,IN,HK,IN,US,AU,IN,MY,ID,IN,MY,HK,ID,BD,UA,IN,ID,BD,HK,BD,CY,SG,HK,US,IN,_,TW,SG,PK,ID,IN,ID,CN,AU,IN,ID,IN,SG,HK,AU,ID,AU,ID,PH,HK,TW,IN,CN,ID,CN,ID,IN,ID,US,CN,ID,AU,ID,IN,CN,IN,BD,HK,SG,CN,BD,IN,AU,HK,TW,IN,NZ,AU,CN,JP,VU,AU,IN,_,AU,IN,CN,AU,ID,IN,JP,BD,KR,TW,HK,AU,JP,CN,IN,CN,VN,TW,HK,CN,PH,CN,VN,AU,JP,AU,CN,IN,PS,JP,AU,JP,IN,CN,JP,AU,ID,SG,BD,AU,JP,CN,ID,CN,DK,BD,NP,CN,HK,SG,IN,_,NZ,CN,ID,AU,ID,HK,KH,JP,ID,CN,IN,MM,AU,IN,BD,HK,ID,KR,HK,CN,IN,CN,IN,BD,CN,MY,HK,IN,SG,CN,HK,CN,IN,HK,CN,ID,_,CN,AU,IN,CN,VN,CN,HK,_,TW,_,IN,PH,SG,HK,JP,HK,NZ,HK,PH,IN,VN,IN,SG,PH,IN,MY,NP,IN,BD,JP,PH,ID,IN,NZ,SG,IN,CN,VN,IN,VN,NP,TH,CN,HK,SG,IN,MY,SG,IN,ID,KR,NZ,HK,IN,TW,KR,GB,SG,NZ,ID,AU,IN,AU,HK,AU,CN,ID,HK,PK,AU,CN,VN,CN,HK,AU,JP,NZ,IN,_,MY,VN,IN,AU,IN,MY,IN,PH,HK,IN,CN,JP,BD,ID,CN,IN,AU,IN,AU,IN,FM,ID,PH,HK,SG,CN,IN,_,ID,IN,ID,AU,IN,HK,IN,NZ,BD,AU,CN,ID,JP,HK,JP,ID,AU,HK,TH,ID,JP,TH,HK,BD,CN,HK,PH,_,IN,HK,CN,HK,TH,CN,IN,HK,CN,JP,CN,AU,HK,BD,CN,HK,_,IN,SG,HK,IN,US,JP,HK,CN,IN,TH,JP,HK,US,IN,ID,HK,TH,IN,MN,BD,IN,HK,AU,ID,BD,MN,BD,CN,ID,CN,SG,HK,SG,HK,JP,CN,IN,CN,AU,CN,NZ,ID,IN,ID,NP,DE,IN,AU,HK,ID,IN,ID,BD,IN,AU,CN,IN,JP,BD,ID,JP,AF,BD,NZ,CN,IN,BD,IN,HK,AU,CN,JP,DE,HK,CN,HK,ID,JP,AU,_,BD,VN,KR,AU,CN,IN,CN,JP,IN,PH,HK,CN,AU,PH,IN,MM,ID,IN,JP,AU,PH,HK,AU,TW,BD,IN,JP,IN,HK,DE,KR,IN,AU,NZ,HK,IN,HK,IN,US,IN,BD,TH,ID,MY,BN,HK,MM,IN,BD,AU,BD,GB,CN,NZ,AU,NL,ID,IN,ID,IN,HK,_,HK,ID,HK,IN,AU,IT,ID,TW,BD,ID,KR,IN,ID,KR,AU,LA,IN,SG,HK,TW,AU,BD,_,CN,MO,IN,SG,IN,AU,MN,DE,AU,KR,CN,ID,CN,TH,AU,JP,PG,BD,US,NC,HK,ID,_,NP,US,HK,AU,CN,HK,CN,IN,NF,NZ,CN,PH,HK,CN,IN,TH,BD,IN,IT,HK,CN,HK,IN,AU,IN,SG,ID,IN,JP,IN,ID,_,AU,ID,HK,AU,ID,AU,TH,NZ,AU,IN,CN,HK,SG,JP,AU,US,PR,BD,CN,JP,KR,ID,IN,ID,AU,JP,HK,IN,MY,HK,NZ,SG,IN,CN,JP,HK,IN,CN,AU,ID,BD,ID,IN,HK,NZ,CN,IN,CN,JP,US,TH,SG,IN,NZ,US,CN,AU,SG,HK,PH,CN,HK,CN,VN,NZ,IL,ES,SE,NL,CN,PH,AU,CN,ID,CN,BD,KR,HK,MY,TW,BD,CN,HK,ID,TW,IN,ID,IN,JP,AF,AU,PF,AU,KR,AU,NZ,IN,CN,AU,JP,NZ,CN,ID,IN,CN,HK,TW,HK,SG,IN,CN,SG,IN,CN,US,NL,DE,US,ID,HK,US,IN,PS,IN,SG,IN,CN,TH,HK,IN,CN,SG,BD,IN,CN,HK,CN,IN,MY,ID,CN,PK,AU,HK,IN,MY,SG,IT,IN,HK,PK,BD,MM,JP,AU,_,VN,IN,SG,US,SG,CN,IN,HK,SG,ID,PH,SG,AU,IN,SG,AU,HK,MY,PK,IN,HK,NZ,TH,ID,_,BD,AU,IN,PK,HK,ID,HK,_,PH,JP,US,CA,JP,IN,HK,IN,CN,IN,VN,NP,AU,IN,CN,IN,MN,KH,NZ,BD,JP,IN,ID,KR,JP,HK,IN,CN,BD,JP,HK,SG,IN,MN,VN,IN,AU,CN,TH,AU,IN,AU,CN,JP,AU,JP,AU,HK,CN,AU,CN,MY,ID,SG,PH,ID,AU,KH,HK,AU,KH,KR,IN,ID,IN,HK,TH,ID,PK,_,CN,GB,US,JP,HK,CN,BD,IN,ID,AU,CN,IN,BD,IN,_,HK,AU,HK,US,TW,HK,PK,JP,AU,PH,IN,TH,ID,AU,ES,US,HK,IN,BD,NZ,NR,CN,ID,CN,BD,IN,NZ,IN,PG,PS,HK,JP,ID,IN,ID,IN,ID,IN,HK,IN,JP,SG,IN,HK,AU,SG,HK,IN,ID,IN,GB,AR,AU,CN,KR,CN,IN,JP,KR,JP,KR,US,HK,AU,MV,CN,ID,CN,IN,AU,IN,PK,IN,MY,BD,CN,MN,IN,ID,IN,CN,HK,US,IN,BD,JP,IN,TH,HK,NP,IN,US,JP,AU,MY,AU,MY,ID,MY,BD,IN,MN,AU,_,TH,AU,IN,ES,JP,BD,NZ,TW,IN,VN,ID,NZ,US,ID,VN,ID,HK,AU,IN,VN,ID,JP,KH,_,AU,ID,IN,TW,HK,IN,NZ,ID,AU,SG,DE,CH,AT,KR,JP,KR,ID,IN,JP,IN,PK,AU,IN,TH,DE,IN,KR,IN,AU,ID,_,ID,IN,MM,ID,JP,NP,IN,PK,IN,CN,ID,IN,MY,ID,PH,BD,ID,CN,FJ,VN,CN,SG,TH,ID,VN,ID,AU,ID,IN,JP,ID,BD,IN,BD,ID,JP,HK,NZ,CN,AU,ID,CN,IN,CN,HK,SG,HK,MY,AU,US,CN,KR,NZ,IN,ID,HK,US,HK,IN,MM,JP,IN,ID,PS,HK,IN,AF,ID,IN,NZ,AF,ID,IN,MY,IN,HK,IN,PK,AU,HK,IN,PH,IN,CN,IN,ID,JP,PL,BD,IN,VN,CN,JP,CN,IN,KR,AU,JP,CN,NZ,US,PH,TH,VN,BD,PK,IN,VN,SG,PG,CN,ID,MY,AU,ID,AU,SG,HK,AU,CN,AU,PH,HK,VN,IN,CN,IN,CN,VN,ID,HK,CN,IN,BD,KR,CN,HK,MY,HK,US,CA,KR,IN,AU,KR,IN,TO,ID,PH,TR,ID,IN,_,MY,AU,KH,HK,AU,ID,IN,PH,US,IN,BD,SG,JP,CN,ID,IN,JP,IN,HK,IN,_,JP,CN,ID,IN,NZ,ID,JP,IN,AU,IN,AU,CN,IN,VN,MM,TH,MM,HK,IN,HK,AU,MY,SG,JP,AU,IN,ID,HK,ID,AU,ID,AU,KR,ID,IN,AU,TL,AU,HK,TH,ID,AU,TH,IN,PK,IN,AU,CN,IN,AU,IN,NL,IN,HK,AU,CN,SG,HK,AU,PK,AU,PK,SG,ID,TH,BD,AU,CN,JP,_,ID,MV,AU,IN,CN,AU,WS,NZ,IN,KR,JP,HK,CN,AU,IN,ID,AU,HK,AU,ID,CN,CH,CN,JP,BD,IN,ID,BD,PH,CN,AU,HK,CN,HK,IN,AU,CN,IN,HK,JP,HK,AU,HK,JP,CN,IN,ID,AU,CN,ID,SG,IN,CA,IN,ID,CN,JP,CN,JP,HK,IN,_,JP,ID,CN,ID,AU,CN,VN,NL,IN,KH,IN,CN,ID,HK,IN,CN,ID,BD,IN,JP,HK,JP,IN,ID,IN,AU,JP,ID,CN,IN,BD,HK,JP,AU,ID,NL,JP,CN,KR,IN,AU,IN,SE,CN,IN,AU,HK,AU,MN,IN,NP,JP,VN,PS,VN,IN,BD,IN,VN,IN,CN,IN,JP,_,IN,BD,PK,SG,IN,AU,PK,IN,MY,ID,CN,KR,NP,VN,IN,VN,PK,IN,PH,HK,MP,IN,HK,AU,CO,AE,IN,FR,IN,MY,FJ,CN,IN,AU,ID,AU,IN,_,IN,_,IN,JP,BD,IN,BD,IN,ID,BD,SG,ID,SG,_,IN,AU,IN,NP,ID,TH,IN,ID,IN,_,BD,HK,IN,AU,ID,IN,AU,NZ,AU,JP,NZ,AU,NZ,AU,IN,_,BD,US,CY,ID,HK,TW,HK,LA,IN,CN,IN,JP,HK,ID,IN,CN,HK,IN,TW,CN,IN,JP,IN,HK,CN,IN,KR,ID,MM,CN,VN,_,BD,IN,AU,IN,PK,MY,TW,IN,BD,ID,IN,BD,HK,ID,SG,US,VN,AU,IN,AU,MY,IN,CN,JP,IN,CN,IN,KR,SG,HK,IN,ID,AU,ID,AU,ID,AU,NZ,IN,AU,HK,IN,KR,IN,AU,IN,KR,HK,AU,IN,BD,CN,PH,BD,IN,ID,PH,TH,IN,BD,HK,KR,IN,AU,BD,VN,IN,AU,SG,IN,HK,JP,CN,ID,CN,VN,IN,HK,JP,PH,HK,ID,MM,IN,ID,BD,HK,US,_,HK,IN,HK,AU,ID,AU,VN,IN,CN,IN,AU,ID,IN,JP,AU,IN,CN,IN,ID,VN,MY,AU,IN,TW,CN,HK,IN,JP,CN,IN,HK,CN,IN,IT,CN,SG,IN,PH,IN,ID,AU,IN,ID,HK,BD,IN,JP,ID,IN,JP,SG,VN,IN,CN,AU,PH,AU,IN,AU,SG,AU,HK,US,HK,SG,JP,AU,CN,HK,CN,HK,IN,CN,IN,CN,IN,BD,IN,BD,IN,PH,HK,CN,ID,IN,AU,ID,CN,KR,PK,IN,SG,JP,IN,HK,IN,ID,WS,US,CN,NZ,ID,AU,ID,PH,AU,VN,IN,HK,CN,IN,US,IN,CN,AU,CN,LA,AU,KH,ID,CN,VN,TH,JP,_,JP,AU,IN,ID,BD,HK,CN,SG,HK,MY,ID,AU,SG,TW,CN,IN,JP,_,CN,AU,CN,IN,AU,IN,SG,HK,MY,NL,MY,HK,JP,CN,ID,HK,CN,PH,BD,ID,AU,IN,JP,BD,VN,BD,AU,VU,ID,CN,MY,KR,PH,MY,IN,NP,IN,CN,JP,ID,AU,PH,CN,BD,US,AU,VN,ID,NZ,BD,MM,NZ,PK,IN,AU,NZ,AU,IN,BD,AU,US,CN,ID,AU,ID,AU,CN,ID,IN,AU,IN,ID,HK,IN,ID,US,ID,IN,ID,IN,PH,CN,IN,HK,IN,CN,IN,NZ,TH,AU,IN,BD,PH,IN,PK,MY,VN,IN,BD,AU,JP,IN,BD,US,SG,CN,SG,_,KR,ID,CN,IN,HK,AU,IN,PH,IN,BD,IN,LA,CN,IN,AU,BD,ID,MV,IN,JP,US,IN,MY,ID,_,ID,MM,HK,PK,AU,KR,KH,BD,AU,ID,AU,TW,VN,MM,ID,IN,ID,IN,NZ,IN,CN,IN,AU,BD,TW,VN,AU,PH,PK,AU,SG,CN,NL,ID,AU,IN,VN,SG,IN,CN,VN,US,TW,JP,CN,ID,IN,ID,JP,HK,PH,IN,AU,IN,ID,IN,AU,HK,ID,BD,IN,JP,IN,KH,IN,NZ,HK,VN,IN,CN,AU,SG,IN,KR,CN,BD,AU,SG,MN,NZ,IN,BD,NZ,AU,SG,IN,CN,SG,IL,PL,SG,ID,TW,SG,IN,JP,KR,PH,AU,US,AU,HK,IN,AU,HK,IN,AU,HK,IN,NZ,ID,IN,SG,AU,IN,AU,ID,IN,AU,JP,MM,NZ,ID,MM,_,VN,AU,DO,PK,IN,CN,IN,AU,IN,TW,IN,TW,PK,BD,SG,ID,CN,SG,KH,US,AU,ID,BD,SG,VN,TW,VN,IN,TW,BD,VN,IN,AU,ID,PH,_,PK,IN,CN,US,NP,HK,SG,HK,IN,BD,HK,US,BD,IN,AU,IN,MY,ID,IN,HK,VN,IN,ID,AU,PH,IN,TW,GB,MY,SG,IN,GB,NZ,ID,NZ,AU,IN,MY,AU,PH,ID,HK,TH,CN,VN,CN,ID,CA,NZ,VN,IN,US,IN,AU,TW,AU,IN,HK,IN,ID,AU,ID,IN,AU,HK,TW,IN,ID,IN,PK,NZ,IN,ID,IN,HK,VN,HK,ID,IN,GB,US,NZ,IN,BD,IN,CN,IN,VN,BD,AU,IN,VN,HK,_,US,IN,AU,IN,HK,MM,CN,BD,AU,CN,JP,TH,IN,MM,PK,CN,KR,TH,ID,HK,VN,IN,HK,ID,US,AU,HK,JP,BT,ID,BD,CN,IN,NL,MV,MY,AF,US,IN,CN,IN,CN,JP,VN,IN,MN,BD,VN,IN,VN,IN,JP,IN,CN,SG,_,TW,CN,HK,JP,ID,IN,NL,MY,VN,ID,IN,ID,IN,CN,FJ,IN,AU,_,KH,IN,ID,HK,CN,HK,ID,NP,_,MM,HK,JP,ID,PK,JP,IN,CN,VN,PH,BD,PK,VN,IN,US,PK,AU,ID,VU,MY,VN,IN,JP,IN,AU,BD,ID,CN,BD,PK,IN,CN,US,TH,MY,HK,IN,HK,TW,MY,HK,IN,CN,IN,CN,AU,PH,SG,IN,BD,IN,AU,IN,NZ,AU,BD,IN,CN,IN,US,BD,AU,BD,CN,US,BD,AU,PH,AU,ID,AU,HK,PH,ID,KI,AU,VN,HK,IN,HK,PK,BD,AU,CN,AU,ID,AU,IN,CN,IN,US,ID,HK,KH,CN,FR,CN,IN,BD,GB,IN,ID,SG,HK,US,BD,AU,CN,IN,BD,SG,IN,BD,NZ,SG,PK,ID,MM,CN,HK,US,CN,GB,HK,KR,TW,KR,IN,ID,IN,BD,ID,NP,IN,PK,CN,HK,IN,CN,IN,AU,IN,RS,VN,CN,BD,IN,VN,IN,VN,CN,HK,NL,IN,AU,ID,IN,CN,JP,ID,AU,IN,ID,AU,HK,US,IN,AU,HK,IN,AU,CN,NZ,ID,IN,AU,IN,NZ,AU,IN,BD,CN,IN,AU,IN,HK,SG,HK,TH,HK,AU,NZ,HK,VU,PH,AU,ID,IN,NL,IN,HK,NP,ID,IN,ID,JP,VN,HK,IN,HK,ID,CN,ID,CN,MY,HK,JP,AU,CN,IN,CN,AU,ID,BD,IN,CN,_,ID,SG,CN,IN,ID,IN,SG,VN,MY,IN,DE,_,AU,ID,JP,SG,NL,IN,BE,ID,SG,ID,BD,HK,PK,IN,JP,IN,MV,GB,IN,ID,PK,SG,ID,HK,SG,AU,BD,_,ID,AU,RU,IN,CN,IN,HK,JP,MY,AU,ID,CN,DE,IN,ID,PK,HK,CZ,IN,ID,IN,ID,AU,US,ID,NL,JP,ID,IN,NZ,ID,IN,BD,AU,FJ,AU,PH,IN,NZ,AU,SA,ID,AU,ID,MM,TH,MM,US,IN,BD,TH,ID,NZ,IN,CN,IN,AU,BD,AU,IN,AU,NZ,IN,US,IN,NZ,IN,AU,PK,NZ,AU,IN,_,BD,HK,PG,IN,CN,FR,IN,ID,CN,BD,LK,AU,CN,ID,IN,TH,KR,CN,IN,BD,ID,IN,SG,AU,IN,AU,BD,IN,AU,IN,AU,PH,SG,CN,IN,SG,AU,CN,IN,ID,VN,BD,KH,AU,VN,_,ID,IN,BD,HK,IN,AU,SG,MM,IN,ID,VN,HK,NP,VN,MM,BD,CN,AU,FJ,ID,IN,AU,IN,VN,ID,BD,IN,PH,VN,ID,IN,ID,SG,TH,MY,ID,HK,ID,IN,MY,AU,ID,BD,CN,ID,VN,ID,VN,ID,TH,ID,IN,AU,ID,BT,ID,BT,JP,US,IN,US,CN,KH,KR,PK,AU,IN,ID,IN,AU,IN,JP,ID,IN,US,IN,CN,IN,AU,IN,JP,ID,AU,ID,CN,IN,ID,AU,IN,PH,BD,CN,ID,IN,ID,AU,MY,HK,IN,BD,SG,IN,AU,IN,JP,PK,AU,IN,AU,NZ,CN,IN,CN,IN,ID,CN,AU,IN,AU,US,CN,AU,ID,HK,SG,HK,ID,IN,ID,IN,AU,PH,IN,BD,US,IN,HK,AU,ID,KR,CN,VN,SG,ID,MN,IN,AU,IN,AU,JP,BD,AU,BD,HK,CN,BD,IN,BD,CN,NZ,AU,IN,ID,CN,ID,IN,BD,JP,AU,IN,HK,AU,IN,HK,CN,IN,MM,AU,CN,TH,IN,_,IN,SG,BD,CN,NZ,ID,BD,ID,US,ES,ID,TH,AU,JP,BT,IN,AU,HK,AU,TH,IN,SG,KR,HK,AU,PH,HK,IN,AU,ID,IN,AU,IN,CN,ID,CN,IN,CN,JP,NZ,AU,MN,ID,TH,JP,IN,ID,CN,ID,AU,IN,AU,HK,AU,IN,CN,IN,CN,IN,BD,_,IN,AU,CN,AU,BD,IN,ID,BD,JP,AU,IN,VN,IN,CN,ID,AU,IN,BD,IN,ID,IN,MM,IN,CN,AU,TW,SG,TW,HK,ID,NP,IN,ID,IN,JP,AE,SE,JP,CN,IN,MY,SG,CN,HK,SG,HK,BD,JP,TH,IN,HK,JP,KR,JP,IN,ID,BD,CN,BD,IN,AU,ID,AU,ID,NZ,SG,IN,US,CN,IN,AU,ID,HK,ID,IN,ID,GB,HK,ID,BD,ID,HK,VN,IN,PH,ES,CN,LA,CN,AU,IN,CN,IN,CN,JP,ID,BD,IN,RU,CN,AU,JP,PH,PK,AU,IN,ID,GB,VN,AU,MY,IN,AU,HK,IN,ID,TH,ID,HK,BD,IN,ID,IN,VN,BD,VN,IN,HK,MY,IN,CN,MY,MM,ID,US,CN,ID,PG,US,PK,ID,IN,ID,IN,AU,BD,HK,MY,PK,JP,IN,PK,PG,MM,US,PH,CN,ID,CN,AU,IN,CN,IN,CN,IN,BD,ID,AU,IN,US,PK,US,PK,ID,AU,SG,IN,CN,ID,CN,SG,AU,IN,BD,IN,ID,IN,SG,IN,KH,BD,MY,ID,CN,IN,MM,US,VE,IN,HK,BD,PG,ID,IN,TH,BD,AU,IN,PH,NP,AU,HK,BD,ID,PH,BD,IN,CN,ID,CN,HK,BD,AU,HK,CN,PK,BD,IN,CN,IN,CN,VN,IN,HK,IN,AF,AU,MM,VN,IN,TW,TH,HK,EG,AU,SG,ID,SA,JP,IN,MV,BD,MV,AU,HK,ID,PK,HK,SG,JP,BD,LK,IN,JP,HK,CN,BD,PH,IN,AU,IN,ID,IN,ID,IN,CN,ID,IN,SG,HK,AU,ID,IN,BD,AU,ID,IN,BD,NZ,ID,IN,ID,IN,HK,NZ,ES,AU,IN,US,CN,ID,_,HK,IN,KR,CN,IN,ID,IN,MM,MY,BD,ID,IN,ID,IN,PK,AE,ES,PK,IN,PH,DE,CN,IN,CN,ID,PK,IN,NZ,BD,CN,IN,BD,MN,CN,HK,BD,DK,ES,CA,ES,IN,HK,SG,AU,BD,ID,CN,US,BD,IN,VN,AU,HK,IN,PK,HK,TW,IN,ID,IN,AU,CN,PK,IN,KR,TH,PK,NP,AU,CN,HK,IN,HK,US,HK,CN,KR,PK,IN,AU,ID,IN,AU,JP,SG,ID,AU,ID,IN,BD,AU,ID,NL,JP,PH,MY,AF,ID,MY,PK,AU,IN,ID,IN,AU,IN,MY,IN,PH,AU,BD,CN,HK,LK,ID,CN,IN,CN,BD,ID,AU,IN,ID,IN,ID,MN,ID,CN,ID,AF,IN,AU,IN,CN,IN,US,BD,KR,IN,NZ,IN,LK,IN,CN,BD,IN,JP,ID,IN,ID,HK,ID,PK,AU,IN,JP,CN,ID,MV,SG,PK,ID,IN,ID,AU,IN,AU,BD,AU,TH,AU,VN,CN,ID,US,BD,_,HK,BD,US,AU,MN,IN,CN,BD,IN,CN,IN,PH,SG,JP,MM,IN,CN,PH,CN,IN,AU,PG,IN,ID,AU,ID,HK,CN,IN,NZ,VN,IN,BD,IN,AU,BD,AU,ID,AU,KH,IN,KH,AU,CN,ID,SG,MO,AU,IN,AU,HK,AF,ID,CN,IN,ID,NZ,BR,MX,BR,IN,ID,IN,AU,US,_,NZ,SG,TW,BD,CN,ID,SB,IN,AU,IN,MM,IN,HK,JP,HK,AU,IN,ID,AU,VN,CN,VN,ID,HK,GB,IN,HK,ID,SG,HK,CN,AF,ID,NP,ID,IN,CN,MM,CN,IN,PH,BD,ID,BD,ID,IN,ID,IN,BD,AU,IN,PK,ID,TW,NZ,ID,JP,AU,ID,JP,IN,TH,IN,AU,HK,CN,HK,AU,ID,AU,ID,IN,HK,ID,NZ,IN,HK,NP,AU,CN,IN,CN,JP,AU,NP,KH,CN,IN,US,JP,CN,HK,CN,NZ,CN,IN,NZ,IN,CN,ID,IN,PH,HK,IN,AU,KR,ID,IN,BD,AU,VN,IN,KR,ID,JP,HK,ID,IN,ID,CN,ID,IN,BD,_,ID,JP,US,NL,US,IN,MY,IN,ID,IN,BD,US,CN,PG,US,GB,IN,SG,HK,IN,BD,IN,ID,CN,PH,JP,SC,ID,HK,CN,HK,IN,AU,IN,VN,NZ,CN,IN,JP,AU,IN,TH,AU,MY,_,NZ,CN,TH,CN,AU,HK,IN,US,IN,BD,CN,MY,IN,CN,SG,AU,MY,IN,PK,VN,ID,IN,CN,BD,HK,AU,CN,AU,SG,IN,ID,TH,IN,CN,IN,CN,_,HK,VG,AU,CN,HK,AU,PH,US,PH,MY,BD,CN,BD,IN,CN,SG,IN,BD,ID,US,BD,AU,ID,JP,ID,BD,IN,CN,IN,PK,IN,BD,IN,NP,AU,CN,BD,IN,HK,IN,ID,JP,ID,AU,HK,JP,AU,IN,CN,IN,BD,AU,VN,ID,IN,PK,IN,AU,IN,BD,ID,_,HK,ID,IN,SG,AU,BD,CN,NZ,AU,CN,AU,ID,TH,SG,AU,IN,CN,ID,IN,CN,PK,IN,ID,IN,_,PK,PH,ID,AU,ID,AU,IN,ID,IN,SG,AF,SG,ID,CN,VN,CN,AF,AU,IN,CN,AU,MM,IN,AU,IN,MM,CN,HK,IN,CN,NZ,ID,IN,PK,JP,IN,CN,ID,BD,ID,BD,IN,MM,HK,JP,HK,AU,HK,NP,CN,ID,AU,IN,ID,IN,VN,TL,HK,US,PK,IN,ID,IN,MY,CN,IN,AU,ID,HK,AU,BD,_,SG,JP,IN,BD,IN,ID,IN,PK,ID,BD,ID,NP,AU,MM,ID,IN,NP,ID,LA,JP,MY,IN,MY,BD,AU,ID,TW,IN,ID,IN,CN,HK,NZ,HK,CN,AU,SG,AU,IN,CN,BD,IN,ID,HK,JP,BD,AU,IL,NL,IL,IN,ES,CN,SG,CN,PH,CN,VN,ID,JP,IN,VN,IN,HK,JP,IN,AU,VN,IN,AU,_,JP,US,BD,PH,AU,SG,CN,TH,PH,IN,CN,JP,AU,CN,IN,AU,IN,NP,BD,IN,ID,AU,MO,JP,BD,HK,_,KH,HK,JP,AU,NZ,AU,BD,IN,BD,SG,US,NZ,ID,JP,ID,NZ,ID,TW,CN,HK,AU,IN,PG,CN,HK,AU,IN,ID,HK,CN,IN,CN,LK,IN,JP,MM,AF,BD,IN,MY,NP,MY,AU,IN,JP,HK,ID,CN,HK,CN,BD,IN,TW,JP,NZ,SG,AU,CN,ID,VN,MY,HK,US,IN,BT,NL,ES,LT,IN,ID,IN,MM,ID,CN,BD,VN,HK,VN,IN,ID,MY,CN,MY,ID,PK,AU,TW,BD,IN,PK,AU,_,HK,IN,CN,IN,ID,HK,ID,IN,BD,ES,JP,IN,AU,ID,IN,CN,AU,ID,JP,IN,AU,ID,AU,CN,IN,HK,NL,_,HK,US,TW,JP,HK,IN,_,CN,ID,IN,CN,PG,IN,SG,CN,IN,ID,IN,BD,MN,TW,HK,IN,CN,_,IN,AU,CN,ID,BD,IN,HK,SG,HK,ID,CN,NP,SG,BD,CN,VN,IN,VN,CN,US,ID,CN,AU,IN,CN,BD,IN,US,CA,CN,AU,MY,AU,ID,CN,VN,SG,IN,TH,IN,AU,ID,HK,ID,TL,ID,MM,US,GB,NZ,IN,CN,IN,FJ,AU,IN,SG,CN,NL,CN,HK,CN,AU,IN,HK,CN,JP,ID,KR,VN,TW,IN,SG,LK,AU,IN,MN,CN,IN,ID,AU,US,CN,JP,BD,PK,ID,TW,IN,CN,IN,PH,ID,JP,IN,PG,BD,US,BD,IN,AU,IN,KR,SG,AU,ID,IN,CN,AU,VN,CN,AU,VN,BD,VN,CN,IN,VU,AU,IN,AU,NZ,ID,AU,CN,SG,AU,CN,AU,MY,CN,HK,CN,JP,IN,ID,NZ,CN,BD,ID,PH,NZ,PK,NZ,IN,AU,PH,HK,CN,AU,_,ID,PH,HK,TH,CN,AU,IN,MY,JP,HK,VN,TW,IN,ID,HK,IN,ID,NZ,PK,JP,IN,ID,AU,ID,AU,MY,IN,PK,MY,HK,IN,AU,VN,BD,CN,BD,IN,ID,CN,HK,AU,HK,CN,MM,ID,IN,HK,US,_,VN,NP,ID,NZ,IN,PH,MY,ID,BD,IN,CN,_,IN,ID,IN,JP,VN,KH,BD,GB,MY,VN,UZ,IN,AU,ID,BD,IN,ID,IN,CN,JP,CN,AU,IN,AU,IN,AU,ID,CN,KH,US,ID,KH,VN,ID,AU,IN,AU,IN,US,CN,KR,VU,ID,BD,US,HK,KH,IN,AU,HK,ID,JP,ID,PK,IN,AU,NP,SG,ID,FJ,MY,HK,BD,NP,BD,MY,ID,IN,JP,US,AU,ID,IN,VN,AU,IN,ID,BD,IN,HK,NP,PK,_,PK,BD,HK,SG,HK,ID,NZ,AU,ID,IN,ID,IN,CN,IN,AU,IN,GB,AU,US,NZ,ID,IN,AU,IN,PH,VN,BD,ID,IN,ID,IN,ID,PK,US,JP,US,AU,US,ID,CN,ID,AU,CN,BD,CN,BD,AF,AU,FR,AU,IN,SG,BD,MY,IN,AU,BD,ID,IN,PS,PH,AU,IN,ID,_,IN,CN,ID,IN,ID,BD,CN,NZ,PK,NZ,US,IN,SG,AU,PH,HK,MV,TH,CN,AU,TW,SE,BD,IN,NZ,BD,AU,PK,IN,AU,ID,VN,IN,BD,TW,IN,ID,AU,IN,ID,AU,SG,MY,IN,JP,IN,MM,IN,ID,CN,ID,PG,AU,CN,ID,MM,_,IN,CN,IN,AU,IN,ID,NZ,IN,CN,IN,AU,BD,US,HK,CN,ID,HK,ID,PH,IN,JP,VN,NP,AU,ID,CN,IN,ID,IN,JP,KH,CN,IN,MY,IN,AU,PK,KR,PK,JP,IN,PK,SG,ID,PH,HK,US,IT,IN,VN,IN,DE,ID,US,ID,BD,ID,AF,TW,CN,AU,PK,AU,SG,US,DE,HK,KR,ID,HK,TH,IN,BD,CN,PK,SG,NP,HK,AU,IN,ID,IN,PK,BD,HK,IN,KH,SG,AU,IN,NP,AU,BD,TW,HK,NL,US,NL,CN,ID,IN,CN,NZ,IN,CN,ID,IN,GB,US,GB,ID,CN,ID,IN,TH,BD,ID,BD,PH,ID,IN,ID,IN,ID,IN,AU,NZ,ID,CN,IN,BD,IN,ID,TH,ID,TW,JP,IN,MY,AU,NZ,ID,SG,AU,IN,KR,SG,JP,US,AU,MM,IN,CN,IN,ID,NC,ID,AU,ID,CN,PK,PH,ID,_,AU,CN,IN,ID,JP,MD,NL,KZ,PG,MY,TH,ID,AU,MY,IN,AU,IN,BD,CN,JP,TW,BD,GB,US,CN,NZ,US,IN,CN,ID,MY,ID,_,IN,PK,AU,NZ,CN,IN,VN,IN,AU,NZ,ID,SG,BD,CN,JP,CN,IN,KR,AU,ID,NP,IN,ID,SG,BD,AU,ID,IN,AF,IN,AU,HK,IN,CN,IN,BD,CN,KH,HK,CN,ID,VN,JP,MY,TW,AU,IN,BD,HK,MY,CN,ID,HK,IN,HK,AU,NL,ID,IN,CN,IN,BD,AU,BD,SG,AU,CN,NP,SG,IN,SG,IN,ID,TH,ID,CN,BD,PH,ID,MY,HK,IN,ID,HK,CN,IN,ID,GB,ID,BD,IN,AU,BD,ID,IN,ID,AU,IN,ID,PG,PH,BD,CN,IN,ID,AU,VN,BD,AU,ID,CN,AU,SG,VN,ID,AU,CN,AU,BD,PH,HK,BD,PK,ID,AU,ID,IN,HK,IN,HK,ID,IN,ID,HK,IN,JP,IN,TH,AU,IN,CN,IN,BD,JP,HK,AU,IN,ID,BD,IN,ID,AU,ID,BD,AU,NZ,AU,US,IN,VN,MM,_,BD,AU,IN,ID,IN,AU,ID,VN,BD,ID,HK,IN,BD,IN,ID,CN,NZ,AU,HK,ID,US,NZ,_,BD,HK,CN,AU,ID,US,HK,ID,CN,ID,AU,IN,CN,KH,IN,_,AU,CN,AU,JP,AU,JP,ID,CN,HK,MM,SG,AU,ID,HK,IN,MM,BD,IN,AU,CN,ID,VN,IN,CN,BD,TH,KR,_,IN,US,IN,AU,IN,GB,US,IN,CN,BD,HK,BD,CN,IN,AU,LA,ID,PK,NZ,AU,ID,SG,AU,IN,AU,IN,SG,IN,ID,IN,ID,IN,PH,VN,ID,AU,ID,IN,BD,IN,NP,AU,BD,JP,BE,NZ,ID,CN,PH,IN,ID,BD,IN,ID,IN,JP,AU,PG,VN,ID,IN,MV,ID,IN,ID,PH,IN,AU,PK,AF,BD,MY,HK,BD,MY,IN,ID,PH,ID,BD,HK,AU,IN,VN,ID,CN,BD,ID,IN,FR,US,IN,AU,MV,BD,CN,ID,BD,IN,VN,PG,AU,CN,IN,AU,US,IN,CN,BD,IN,AU,IN,MM,ID,IN,CN,BD,AU,IN,MM,IN,CN,GB,BD,SG,IN,ID,BD,KH,IN,PH,CH,IN,BD,IN,BD,AU,IN,AU,ID,US,BD,IN,PK,IN,ID,SG,US,KZ,US,CN,MN,IN,MY,NZ,AU,US,ID,PK,ID,AU,BD,ID,IN,BD,ID,BD,HK,ID,BD,AU,IN,ID,IN,PK,ID,AU,BD,AU,CN,AU,IN,HK,AU,ID,NZ,ID,BD,IN,VN,ID,CN,DE,US,SG,DE,IN,ID,IN,CN,IN,TL,IN,BD,ID,IN,TW,BD,PL,MM,BD,AU,HK,SG,CN,AU,HK,SG,ID,IN,CN,TH,HK,US,HK,AU,PG,AU,IN,KH,CN,HK,ID,IN,ID,VN,BD,VN,ID,CN,ID,IN,BD,PK,BD,IN,ID,AF,US,RO,SG,HK,SG,AU,AF,JP,HK,AU,ID,LA,ID,AU,BD,VN,IN,TH,ID,IN,ID,IN,ID,IN,ID,BD,KH,ID,IN,AU,IN,ID,CN,MY,BD,_,TH,ID,IN,ID,IN,ID,IN,NZ,TH,ID,JP,HK,IN,RU,LT,US,DE,ID,VN,MM,VN,HK,IN,PK,IN,BD,IN,ID,IN,CN,BD,IN,BD,HK,IN,SG,HK,ID,JP,AU,ID,BD,TH,_,PH,SG,IN,BD,NZ,BD,ID,IN,ID,KH,IN,CN,BD,IN,CN,HK,TW,AU,JP,_,ID,AU,IN,CN,PH,AU,BD,AU,IN,AU,ID,_,BD,NP,CN,IN,AU,ID,BD,SC,HK,ID,BD,AU,US,IN,BD,KR,IN,GB,VN,AT,CN,SG,ID,KH,BD,CN,VN,ID,KR,AF,AU,HK,TW,HK,TW,ID,AU,LA,CN,IN,CN,US,ID,BD,IN,BD,AU,ID,BD,US,JP,IN,US,HK,ID,AU,PH,TH,IN,AU,NZ,IN,CN,IN,US,IN,JP,CN,ID,IN,BD,IN,JP,MM,AU,US,AU,AF,CN,IN,ID,IN,AU,MM,BD,ID,PH,SG,ID,HK,CN,SG,HK,CN,BD,SG,SB,BD,JP,NP,AU,CN,GB,IN,SG,ID,BD,IN,HK,ID,IN,SG,TW,IN,AU,BD,CN,IN,TH,AU,KR,HK,MO,HK,IN,CN,IN,BD,AU,ID,AU,VN,NP,MY,KH,ID,SA,IN,NZ,ID,MY,GB,AU,GU,IN,PK,IN,US,IN,AU,IN,AU,MM,JP,MY,AU,ID,IN,AU,NZ,IN,ID,BD,SG,CN,BD,AU,JP,VN,IN,MM,ID,TW,US,IN,US,IN,AF,IN,VN,CN,MY,HK,MY,NP,ID,TH,VN,MM,IN,CN,TW,HK,US,CN,IN,ID,IN,PG,BD,CN,TW,VN,ID,_,ID,BD,CN,SG,CN,KR,AU,ID,IN,CN,IN,CN,JP,FJ,IN,MM,IN,BD,ID,IN,AU,ID,IN,BD,CN,NZ,MM,AU,IN,ID,CN,AU,ID,AU,_,ID,CN,IN,ID,IN,AU,DE,HK,DE,PK,ID,KR,TW,ID,IN,ID,BD,IN,CN,MY,JP,IN,HK,AU,IN,ID,IN,TW,IN,SG,ID,IN,AU,IN,CN,HK,BT,MY,ID,_,CN,NP,AU,ID,AU,HK,JP,AU,TW,AU,BD,TW,HK,IN,PH,HK,IN,SG,TW,CN,PH,MY,BD,HK,TH,IN,ID,IN,PK,MY,AU,AS,IN,AU,ID,IN,CN,BD,VN,IN,ID,IN,CN,TW,BD,IN,VN,ID,SG,IN,SG,BD,IN,ID,IN,AM,PH,AU,IN,BD,MY,TW,VN,AU,IN,HK,KH,HK,IN,NZ,CN,BD,SG,ID,IN,BD,CN,JP,ID,IN,AU,ID,AU,JP,ID,IN,TW,IN,BD,JP,MY,IN,AU,IN,CN,ID,SG,ID,IN,ID,IN,TW,HK,TW,HK,TW,HK,TW,ID,HK,JP,ID,JP,BD,AF,CN,AU,MY,IN,ID,HK,ID,IN,ID,BD,DE,IN,MV,IN,KH,IN,VN,JP,MN,PH,BD,KH,BD,HK,KR,CZ,AU,AZ,SG,IN,ID,CN,ID,IN,_,PK,BT,JP,HK,CN,PH,HK,ID,SG,KH,CN,IN,NZ,IN,HK,BD,IN,CN,IN,CN,ID,IN,TW,IN,AU,IN,CN,ID,MY,ID,IN,US,IN,US,IN,AU,IN,PH,BD,AU,US,PH,US,JP,AU,NZ,HK,IN,BD,ID,IN,AU,BD,US,AU,IN,CN,IN,ID,PH,PK,CN,ID,AU,VN,HK,JP,CN,IN,CN,IN,HK,BD,IN,TH,PK,KH,ID,IN,NZ,KH,MY,AU,ID,CN,BD,TW,IN,ID,VN,BD,ID,IN,JP,IN,BD,CN,BD,US,SG,ID,IN,HK,AU,ID,AU,BD,CN,HK,MY,ID,IN,SG,IN,VN,ID,SG,TH,SG,IN,PK,BD,ID,PK,IN,PK,TH,ID,NZ,BD,PK,JP,DE,AT,ID,CN,AU,IN,ID,AU,BD,PH,IN,BD,PH,ID,VN,CN,ID,BD,ID,IN,PK,ID,AU,ID,BD,ID,IN,MM,ID,CN,ID,NP,IN,BD,PK,ID,BD,ID,KH,IN,BD,ID,IN,_,AU,JP,ID,BD,MM,AU,IN,ID,IN,ID,AU,CN,ID,CN,ID,AU,ID,IN,ID,IN,TW,IN,BD,ID,IN,NZ,BD,TH,BD,CN,SG,IN,AU,ID,IN,ID,PG,BD,ID,IN,_,IN,VN,IN,AU,BD,HK,ID,BD,AU,ID,TH,TW,HK,AU,ID,BD,AU,TW,IN,BD,VN,BD,KR,IN,TW,ID,IN,PK,VN,MY,PG,AU,IN,JP,HK,JP,DE,PH,IN,_,KR,TW,CN,TW,IN,ID,IN,BD,TW,ID,AU,TW,VN,PK,TW,IN,TW,CN,HK,TH,HK,BD,TW,CN,BD,PG,ID,AU,IN,PH,TH,HK,BD,IN,ID,PH,IN,CN,NP,ID,IN,PK,IN,ID,US,ID,IN,CN,ID,HK,ID,NZ,_,IN,PK,CN,ID,TW,US,TW,JP,TW,PH,ID,IN,ID,NZ,HK,NZ,BD,IN,ID,CN,JP,TW,CN,TW,US,IN,ID,NC,IN,ID,SG,MY,TW,ID,TW,JP,ID,IN,JP,ID,IN,CN,IN,BD,AU,IN,TW,ID,CN,BD,VN,CN,ID,TW,IN,ID,VN,NP,KR,US,IN,BD,ID,IN,AU,HK,JP,SG,NZ,ID,IN,ID,TW,IN,HK,IN,_,ID,IN,TW,BD,MM,GB,TO,ID,US,ID,JP,IN,CN,ID,BD,ID,BD,IN,ID,BD,TW,ID,CN,BD,NP,BD,SG,ID,CN,ID,IN,_,ID,PK,IN,TW,PK,IN,TH,SG,MY,ID,TH,BD,ID,KR,IN,HK,ID,BD,JP,IN,CN,BD,PK,AU,JP,IN,PH,AU,IN,NZ,PH,IN,CN,VN,ID,PK,ID,MY,ID,AF,AU,VN,CN,IN,ID,AU,ID,JP,SG,AU,JP,NZ,AU,ID,TW,HK,JP,CN,PK,AU,CN,JP,CN,BD,CN,AF,IN,ID,BD,CN,BD,HK,AU,ID,AU,ID,IN,BD,HK,IN,CN,BD,AU,ID,BD,IN,KR,IN,BD,AU,SG,ID,TW,HK,BD,CN,MN,BD,ID,AU,NZ,CN,AU,SG,IN,SG,AU,BD,VN,TW,AU,IN,AU,ID,JP,TW,BD,AU,_,AU,ID,IN,ID,IN,AU,HK,CN,HK,BD,NZ,AU,ID,HK,IN,ID,KR,BD,ID,IN,_,HK,SG,NP,TH,TW,BD,ID,AU,PH,IN,HK,IN,PK,AU,ES,NP,MY,ID,BD,IN,NP,ID,BD,IN,AU,RU,IN,HK,BD,TH,PG,IN,BD,ID,IN,ID,IN,_,IN,AU,KR,HK,ID,IN,ID,IN,ID,IN,TW,SG,ID,IN,US,IN,AU,IN,ID,IN,ID,PG,BD,JP,BD,IN,VN,ID,KR,TW,ID,BD,IN,TW,AU,HK,IN,US,BT,IN,_,IN,ID,IN,_,ID,BD,ID,JP,BD,ID,BD,GB,ID,CN,ID,IN,BT,IN,ID,IN,MM,VN,ID,IN,ID,IN,BD,SG,US,PF,PH,VN,NZ,NP,TW,PK,TW,ID,BD,AU,IN,_,TW,ID,TW,KR,VN,IN,MY,BD,IN,ID,IN,BD,ID,AU,IN,ID,IN,BD,TW,BD,ID,HK,TW,ID,AU,IN,BD,MY,ID,TW,VN,ID,IN,NZ,IN,BD,NZ,ID,TW,IN,TW,IN,AU,BD,ID,BD,TW,ID,CN,ID,KH,IR,TR,IR,TR,MY,CN,MY,AU,PK,CN,ID,BD,TH,PH,NL,US,TH,ID,NP,VN,ID,BD,ID,HK,IN,SG,IN,ID,NP,VN,ID,CN,JP,TW,IT,FR,ID,AU,TW,ID,PK,AU,ID,CN,IN,ID,MY,SG,HK,TH,CN,AU,HK,IN,ID,NZ,VN,BD,IN,ID,WS,US,SG,TH,US,VN,BD,AU,VN,MM,BD,IN,ID,PH,ID,BD,ID,NZ,ID,TW,ID,JP,TW,IN,HK,JP,MY,BD,CN,MY,BD,JP,CN,BD,AU,SG,KR,CN,TW,HK,DE,BD,IN,SG,TW,SG,PH,NZ,JP,IN,AU,TH,HK,AU,PK,ID,AU,PH,BD,AU,CN,AU,ID,SG,ID,CN,ID,IN,TW,IN,ES,KH,ID,IN,ID,BD,CN,IN,KR,ID,BD,_,HK,ID,IN,CN,SG,BD,NZ,AF,IN,MM,CN,ID,PH,AU,IN,_,SG,ID,IN,BD,TW,PH,ID,IN,BD,IN,BD,CN,SG,IN,ID,AU,IN,CN,BD,IN,ID,NZ,IN,HK,ID,IN,BD,AU,IN,AU,ID,BD,IN,CN,ID,IN,AU,ID,IN,BD,ID,IN,AU,CN,TW,IN,AU,ID,IN,ID,IN,ID,HK,AF,BD,PH,AF,FR,NZ,AU,HK,AU,VN,IN,ID,IN,NZ,IN,CN,MY,BD,CN,PH,SG,BD,ID,TW,IN,ID,AU,IN,BD,IN,BD,HK,IN,AU,IN,BD,AU,HK,MY,IN,BD,AU,BD,IN,BT,IN,ID,VN,IN,CN,BD,AU,KR,MM,IN,BD,IN,BD,PK,IN,CN,PH,AU,ID,AU,BD,JP,BD,IN,ID,AU,ID,BD,AU,ID,BD,NP,ID,US,HK,ID,TW,BD,ID,HK,ID,BD,KH,IN,ID,IN,TO,AU,TW,BD,IN,US,HK,AU,HK,SG,IN,BD,KH,IN,AU,ID,BD,CN,BD,MM,BD,ID,NP,ID,AU,BD,ID,CN,JP,PK,BD,ID,IN,BD,ID,IN,AU,ID,TW,ID,VN,HK,IN,MM,IN,SG,PK,IN,ID,IN,JP,SG,HK,IN,ID,IN,AU,ID,BD,CN,AU,BD,IN,ID,IN,ID,AU,HK,AU,IN,SG,JP,HK,TH,KH,TW,IN,CN,MY,IN,BD,HK,CN,ID,CN,IN,BD,CN,ID,CN,AU,IN,CN,IN,KH,BD,ID,MM,ID,IN,AU,BD,CN,JP,MY,AU,HK,BD,ID,AU,MY,ID,KH,ID,SG,IN,NL,RU,IN,TH,SG,NZ,ID,TW,BD,IN,GB,IN,US,IN,ID,IN,_,AU,IN,BD,AU,BD,PH,_,VN,HK,KH,AU,SG,CN,MM,IN,JP,AU,HK,JP,BD,ID,PH,TH,PH,ID,IN,KH,PH,ID,US,HK,IN,AU,HK,JP,BD,IN,TW,_,AU,IN,ID,SG,TW,PG,VN,BD,CN,BD,IN,ID,IN,ID,BD,TH,SG,TW,HK,TH,MN,AU,BD,IN,VN,BD,ID,NP,IN,AU,IN,TH,IN,PK,TW,PK,IN,ID,IN,ID,BD,HK,ID,IN,BD,IN,BD,AU,_,CN,IN,TW,ID,BD,PK,BD,CN,HK,CN,BD,ID,IN,_,IN,LA,IN,MY,NZ,IN,MY,JP,BD,ID,IN,ID,AU,MY,ID,AU,FJ,NZ,CN,IN,ID,BD,ID,IN,_,HK,IN,VN,BD,PH,IN,ID,IN,ID,HK,PH,CN,VN,ID,TH,IN,BD,IN,NP,PH,SG,PH,JP,TH,IN,PH,IN,BD,JP,CN,JP,IN,NZ,TW,IN,AU,NZ,ID,IN,CN,IN,_,IN,ID,PK,CN,ID,AU,IN,AU,BD,IN,BD,HK,IN,AU,ID,IN,ID,PK,KH,ID,IN,ID,MY,ID,HK,ID,SG,IN,KR,KH,AU,VN,TW,AU,PH,IN,ID,IN,JP,IN,TW,VN,ID,SG,BD,IN,ID,AU,NZ,IN,CN,IN,TH,LA,ID,BD,HK,SG,BD,NZ,IN,BD,CN,BD,NP,PK,BD,ID,BD,TH,LK,SG,BD,NZ,IN,PH,IN,BD,KH,TW,IN,AU,BD,ID,CN,AU,IN,BD,ID,CN,PK,AU,KH,BD,KR,ID,AU,IN,NZ,AU,CN,SG,CN,BD,MM,BD,CN,IN,BD,ID,VN,KH,BD,KH,CN,ID,AU,ID,IN,ID,AU,SG,VN,ID,AU,NL,US,AU,BD,IN,PK,AU,IN,HK,IN,ID,AU,PH,IN,ID,KR,SG,IN,HK,IN,CN,ID,AU,ID,MM,VN,AU,JP,NZ,TH,BN,JP,ID,CN,SG,IN,KR,ID,PK,AU,PK,ID,IN,AU,SG,BD,CN,ID,PK,HK,IN,BD,MN,BD,NP,AU,VN,IN,VN,ID,BD,ID,IN,CN,ID,PK,BD,IN,ID,MY,NZ,ID,IN,ID,IN,ID,MM,IN,BD,HK,IN,VN,CN,MM,ID,MM,LK,IN,CN,KR,AU,IN,AU,IN,BD,IN,JP,TW,IN,ID,IN,PH,AU,JP,AU,BD,NP,IN,CA,VN,MY,US,HK,MN,KR,CN,IN,ID,IN,BD,IN,US,PK,AU,ID,IN,VN,JP,KR,IN,JP,IN,NP,ID,MY,AU,NZ,MY,BD,ID,HK,GB,CN,IN,ID,BD,IN,AU,BD,ID,AU,BD,ID,_,BD,VN,AU,ID,IN,ID,IN,JP,PK,BD,JP,CA,_,PK,IN,HK,IN,ID,NP,AU,IN,JP,MY,CN,IN,NZ,_,SG,AU,HK,CN,HK,IN,HK,BD,IN,NZ,AU,IN,US,BD,IN,PH,HK,AU,IN,BD,SB,BD,IN,ID,IN,SG,JP,ID,IN,CN,LK,NZ,AU,ID,JP,AU,BD,ID,KR,BD,AU,PK,AU,IN,KR,AU,ID,HK,CN,IN,TW,BD,KH,HK,JP,_,IN,LA,VN,IN,AU,IN,HK,BD,PK,GB,BD,CN,BD,AU,HK,KR,ID,IN,GB,TH,AU,PH,KH,US,IN,JP,_,ID,IN,PK,NZ,ID,JP,IN,CN,BD,ID,BD,HK,BD,HK,ID,BD,IN,TW,MY,IN,JP,MV,IN,PH,NZ,ID,BD,ID,IN,AU,IN,HK,TH,PH,BD,MY,IN,CN,HK,BD,IN,BD,VN,JP,ID,AU,ID,PK,ID,KH,IN,ID,MY,KR,US,BD,VN,AU,ID,JP,NZ,HK,CN,ID,KR,IN,ID,IN,AU,BD,PH,BD,_,IN,BD,AU,IN,US,IN,HK,ID,HK,VN,NZ,IN,ID,PK,ID,TH,AU,ID,IN,HK,ID,IN,CN,ID,IN,AU,MN,IN,ID,BD,AU,ID,KH,JP,HK,IN,JP,ID,IN,ID,VN,CN,IN,AU,ID,BD,HK,AU,MM,AU,TW,_,HK,BD,LK,AU,IN,MY,ID,CN,ID,IN,MY,BD,IN,AU,MN,IN,VN,BD,CN,HK,US,ID,CN,SB,HK,CN,ID,IN,NZ,ID,IN,PH,IN,CN,JP,PK,JP,CN,HK,JP,IN,VN,SG,JP,BD,MM,HK,NZ,IN,_,CN,AU,NZ,IN,AU,_,BD,CN,IN,TW,ID,CN,ID,BD,CN,AU,CN,BD,ID,_,IN,ID,US,ID,KH,ID,AF,ID,PH,VN,CN,SG,AU,ID,IN,AU,SG,CN,SG,SC,CN,SG,CN,ID,MN,HK,PH,ID,SG,ID,BD,ID,IN,ID,IN,US,HK,CN,ID,AU,ID,SG,HK,US,CN,KR,BD,IN,MN,BD,AU,IN,BD,SG,IN,ID,TW,ID,AU,ID,JP,CN,DE,GB,KR,HK,JP,HK,IN,AU,IM,BD,SG,BD,MO,AU,ID,IN,ID,AU,ID,BD,KR,JP,CN,BD,ID,CN,JP,BD,VN,IN,BD,WS,BD,ID,IN,AU,HK,NZ,IN,TL,IN,ID,AU,IN,CN,KR,SG,IN,BD,IN,AU,IN,ID,_,VN,AF,VN,AU,NP,IN,AU,ID,MY,ID,_,CN,HK,ID,BD,HK,SG,IN,BD,ID,MM,HK,AU,MV,_,BD,PH,HK,ID,PH,MM,PK,ID,AU,IN,HK,KR,TW,IN,ID,HK,BD,TH,ID,BD,MY,IN,CN,ID,IN,_,LK,MY,IN,CN,MY,BD,CN,ID,AU,VN,US,BD,ID,IN,AU,HK,AU,ID,BD,NP,CN,IN,SG,IN,JP,AU,NZ,ID,SG,ID,CN,ID,MY,HK,JP,ID,CN,AU,VN,PH,CN,BD,HK,BD,ID,IN,ID,CA,ID,MY,ID,IN,ID,IN,ID,NP,HK,BD,HK,TH,MY,SG,ID,IN,HK,ID,MM,ID,IN,BD,AF,US,HK,CN,_,HK,JP,ID,VN,IN,_,NL,ID,IN,_,IN,RU,HK,TW,AU,PG,ID,BD,ID,IN,CN,BD,ID,LA,PG,IN,ID,IN,BD,SG,HK,VN,BD,ID,BD,HK,BD,VN,CN,ID,HK,CN,HK,IN,HK,BR,CN,ID,CN,IN,ID,BD,HK,KR,CN,ID,IN,BD,TW,SG,AU,BD,MM,_,ID,BD,KH,BD,ID,HK,ID,_,MY,AU,PK,PH,ID,BD,IN,ID,AU,PK,MM,PH,CN,NZ,ID,BD,PH,BD,ID,KR,MY,ID,IN,_,BD,MN,AU,ID,BD,VN,IN,VN,IN,BD,IN,AU,_,HK,BD,_,HK,BD,VN,IN,AU,ID,IN,ID,BD,ID,AU,IN,BD,KH,IN,AU,MM,HK,BD,ID,PH,ID,JP,MM,BD,ID,CN,ID,PH,BD,JP,HK,TW,SG,HK,BD,IN,AU,_,US,CN,BD,PH,RU,AU,IN,HK,KH,IN,AF,ID,AU,IN,AU,JP,IN,NZ,IN,VN,US,CN,ID,IN,ID,BD,ID,PK,CN,HK,ID,AF,ID,NP,BD,AU,IN,HK,TH,AU,TW,VN,IN,ID,IN,HK,KR,ID,NZ,AU,ID,AF,ID,PG,ID,_,PH,JP,TW,AU,IN,NP,BD,IN,MY,IN,CN,IN,CN,IN,ID,AU,IN,TW,CN,IN,ID,IN,ID,CN,JP,HK,TW,HK,BD,IN,BD,ID,IN,ID,VN,IN,BD,PK,AU,HK,ID,AU,ID,BD,_,IN,AU,NP,ID,IN,AU,ID,US,ID,PK,IN,ID,IN,VN,ID,DE,BD,SG,BD,IN,ID,IN,VN,CN,VN,IN,TW,IN,ID,IN,ID,IN,ID,IN,ID,IN,BD,ID,BD,NL,MY,HK,IN,AU,IN,BD,VN,BD,IN,FJ,HK,CN,IN,HK,IN,ID,IN,ID,AU,HK,TW,NP,ID,BD,ID,AF,HK,ID,IN,NZ,ID,BD,JP,ID,IN,ID,HK,ID,AU,IN,ID,KI,IN,BD,AU,ID,IN,NP,ID,BD,ID,JP,IN,AU,HK,IN,BD,IN,ID,BD,FJ,VN,HK,PH,AU,IN,TW,AF,HK,TW,BD,ID,BD,ID,NZ,ID,PK,BD,IN,BD,ID,BD,MM,MY,PH,BD,IN,ID,BD,HK,US,IN,SG,HK,AU,SG,PK,ID,NZ,IN,SG,JP,TW,IN,HK,TW,BD,HK,IN,PK,IN,VN,IN,PK,GB,IN,BD,CN,BD,IN,TL,HK,ID,HK,IN,ID,BD,HK,AU,IN,AU,PH,HK,KH,IN,HK,ID,AU,ID,US,TW,SG,AU,NZ,ID,HK,PH,IN,BD,AU,ID,VN,BD,IN,JP,CN,PK,IN,SG,VN,ID,IN,CN,ID,IN,ID,SG,ID,HK,VN,JP,PK,ID,PH,IN,AF,HK,ID,AU,CN,SG,ID,PH,MM,IN,ID,BD,IN,BD,HK,JP,TW,IN,ID,BD,IN,ID,HK,SG,VN,AU,HK,IN,VN,PH,HK,IN,BD,AU,CN,IN,ID,AU,ID,IN,HK,BD,HK,VN,ID,BD,US,BD,IN,HK,TW,HK,IN,ID,CN,IN,_,ID,IN,ID,BD,VN,IN,ID,CN,HK,AU,BD,KR,ID,SG,IN,HK,AU,ID,NP,AU,ID,CN,ID,CN,PK,AU,ID,CN,TH,ID,AU,ID,IN,AU,ID,PK,CN,HK,VN,JP,ID,BD,JP,PK,CN,ID,BD,ID,AU,CN,BD,HK,AU,IN,SG,ID,TW,BD,AU,BD,PK,ID,SG,BD,IN,US,BD,MM,AU,ID,KR,BD,CN,BD,IN,AU,CN,LA,SB,AU,MM,ID,PK,ID,PH,IN,ID,HK,PK,_,ID,HK,ID,CN,VN,CN,TH,AU,IN,ID,IN,SG,IN,AU,CN,ID,IN,PK,MY,ID,KR,SG,KR,CN,BD,ID,NZ,AU,CN,US,ID,AU,ID,HK,ID,HK,IN,MY,ID,AU,HK,CN,PH,KR,PK,CN,HK,AU,US,CN,ID,PH,IN,ID,JP,ID,NZ,TW,SG,AU,BD,VN,PK,VN,PK,CN,AU,HK,AU,ID,BD,MY,HK,MY,MM,BD,MY,ID,IN,ID,AU,PK,PH,BD,ID,IN,AU,JP,PK,CN,PK,NZ,AU,TH,VN,BD,MY,ID,AU,GU,SG,TH,IN,ID,BD,LA,AU,US,IN,AU,JP,AU,AF,ID,IN,ID,IN,ID,SG,US,BD,IN,ID,PK,IN,SG,KH,BD,VN,SG,CA,IN,ID,BD,_,HK,IN,KR,JP,ID,CN,AU,ID,HK,CN,IN,JP,ID,IN,CN,HK,ID,IN,BD,HK,KR,AU,TW,ID,CN,NZ,BD,IN,NZ,IN,ID,SG,AU,ID,BD,IN,HK,_,MY,HK,IN,HK,ID,BD,ID,CN,ID,AU,ID,KR,IN,BT,IN,PK,VN,ID,BD,AU,HK,TH,IN,AU,BD,AU,PH,ID,IN,ID,PG,PH,BD,MY,AE,SG,US,BD,AU,ID,IN,ID,CN,BD,CN,NC,AU,HK,ID,IN,PK,IN,ID,VN,ID,TH,IN,AU,CN,_,PH,IN,ID,AU,JP,IN,ID,AU,CN,IN,ID,HK,ID,PH,ID,KH,BH,PK,BD,ID,IN,ID,US,IN,SG,PK,ID,CN,NZ,_,AQ,AU,JP,CN,IN,SG,JP,ID,BD,NP,ID,BD,ID,TW,CN,BD,IN,VN,MY,CN,IN,MV,QA,NZ,JP,IN,AE,IN,CN,NZ,CN,HK,AU,NZ,IN,CN,TW,AU,SG,NZ,CN,HK,BD,PH,BD,HK,AU,CN,HK,JP,BD,JP,ID,BD,ID,AU,CN,AU,CN,TW,PK,IN,AU,ID,CN,FR,AU,IN,MM,PK,HK,AU,IN,ID,US,JP,BD,AU,ID,IN,ID,CN,PK,ID,KR,MY,AU,BD,AU,BD,AU,SG,AU,IN,AU,ID,VN,BD,SG,VN,AF,IN,ID,MY,IN,AU,IN,ID,_,CN,NZ,IN,BD,PG,AU,BD,SG,CN,PK,TH,AU,NZ,CN,HK,ID,CN,BD,ID,CN,ID,CN,IN,MN,IN,NZ,CN,ID,IN,AU,BD,IN,DE,PG,CN,HK,AU,SG,IN,ID,BD,MY,BD,TW,IN,US,ID,BD,ID,AU,NP,BD,TW,MM,AU,JP,IN,BD,VN,IN,ID,BD,NP,PH,AU,BD,AU,ID,SG,ID,IN,VN,IN,JP,IN,MY,NP,MY,BD,CN,KH,IN,ID,IN,AU,CN,_,IN,CN,JP,ID,PH,NP,BD,AU,IN,ID,IN,PH,VN,PK,CN,NZ,TH,ID,IN,ID,TH,TO,BD,IN,VN,HK,IN,PK,ID,_,ID,AU,BD,CN,VN,CN,ID,VN,ID,VN,HK,IN,VN,BD,IN,_,WS,PK,US,AU,_,IN,ID,MY,IN,BD,IN,_,SA,HK,VN,IN,AU,PH,IN,PK,AU,HK,MM,IN,HK,CN,SG,QA,PK,NP,ID,BD,ID,IN,CN,AU,IN,BD,SG,ID,JP,ID,CN,SG,HK,BD,IN,AU,IN,_,PK,ID,TH,IN,NP,BD,IN,CN,VN,IN,HK,PH,HK,MY,IN,AU,BD,HK,US,HK,ID,IN,CN,PG,ID,IN,ID,BD,CN,SG,HK,_,ID,SG,HK,IN,MY,IN,AU,IN,DE,HK,ID,PK,IN,HK,BD,ID,HK,ID,VN,ID,IN,BD,MY,BD,MY,AU,NP,BD,ID,IN,ID,IN,ID,TW,IN,NP,IN,CN,VN,BD,IN,ID,IN,ID,IN,VN,JP,IN,NZ,HK,SG,ID,CN,ID,BD,VN,ID,IN,KR,_,NP,CN,VN,PH,AU,VN,IN,BD,SG,BD,ID,VN,IN,BD,CN,ID,HK,CN,AU,MY,ID,VN,IN,ID,NP,IN,CN,IN,BD,ID,TH,ID,TW,ID,IN,BD,ID,AU,ID,IN,AU,PK,IN,ID,IN,ID,BD,TH,PK,MM,AU,CN,ID,AU,ID,BD,IN,CN,BD,HK,BD,IN,TW,CN,IN,BD,AF,NZ,AU,NZ,BD,AU,IN,ID,IN,BD,ID,IN,ID,BD,ID,CN,NZ,ID,IN,BD,ID,TW,PK,ID,SG,ID,MM,IN,ID,IN,AU,VN,IN,ID,HK,CN,ID,NP,BD,IN,BD,PK,TW,NP,ID,IN,ID,AU,ID,PK,AU,IN,BD,IN,ID,AU,AF,TW,PK,NP,BD,ID,NZ,IN,AU,_,ID,AU,IN,AU,HK,TW,IN,ID,IN,SG,IN,BD,AU,CR,IN,AU,JP,ID,IN,PK,JP,KR,IN,_,KH,CN,IN,MN,IN,ID,IN,SG,MY,SG,PK,BD,VN,IN,KR,PK,CN,PK,VN,IN,CN,SG,BD,IN,JP,AU,US,BD,PK,_,NZ,BD,CN,BD,AU,CN,BD,PK,ID,SG,CN,IN,AU,ID,HK,IN,SV,BG,AU,PK,HK,BD,IN,AU,IN,ID,AU,BD,AU,IN,ID,MY,TW,_,HK,AU,BD,IN,PH,IN,ID,IN,NZ,NP,IN,_,HK,_,IN,ID,AU,BD,ID,IN,BD,NZ,PK,IN,ID,IN,HK,NZ,ID,IN,BD,HK,ID,MY,ID,IN,NZ,IN,TW,ID,HK,ID,NP,CN,HK,SG,IN,BD,ID,BD,IN,NL,DE,CN,IN,TW,IN,AU,ID,PK,IN,AU,IN,BD,ID,IN,BD,TH,BD,PH,MY,IN,ID,VN,PK,PH,PW,IN,BD,IN,VN,ID,SG,IN,SG,BD,PK,IN,ID,PK,CN,JP,AU,BD,IN,NZ,TW,IN,ID,IN,ID,BD,ID,TW,CN,BD,MY,CN,IN,HK,JP,CN,IN,ID,IN,JP,KR,IN,AF,IN,BD,_,IN,TW,IN,BD,HK,IN,ID,IN,ID,TW,IN,_,IN,ID,IN,BD,ID,IN,ID,AU,IN,PH,BD,VN,BD,ID,_,ID,BD,ID,BD,ID,NP,IN,CN,IN,ID,US,JP,ID,HK,IN,JP,IN,HK,MM,ID,SG,IN,AU,ID,IN,SG,ID,IN,VN,ID,NP,VN,TW,VN,BD,ID,_,IN,JP,AU,IN,SG,IN,AU,CN,AU,ID,IN,ID,IN,AU,IN,ID,BD,ID,TH,IN,MM,ID,IN,ID,IN,BD,NZ,ID,AU,IN,ID,IN,MY,IN,ID,TW,ID,IN,ID,IN,ID,HK,ID,IN,ID,IN,ID,TW,IN,US,TW,IN,TW,VN,IN,CN,ID,VN,TW,BD,CN,PH,ID,BD,IN,KR,TW,BD,IN,CN,VN,NP,VN,AU,IN,HK,VN,IN,ID,BD,PK,IN,AU,IN,PH,ID,IN,BD,ID,IN,ID,SG,TW,ID,IN,ID,_,JP,TW,IN,VN,IN,CN,BD,ID,VN,ID,VN,ID,MY,ID,NZ,CN,ID,IN,ID,IN,ID,BD,NZ,IN,HK,ID,MY,BD,VN,BD,ID,IN,ID,AU,IN,ID,IN,ID,CN,VN,BD,IN,CN,AU,IN,HK,BD,AU,ID,AU,IN,AF,ID,PH,MN,IN,AU,SG,BT,PH,AU,ID,CN,ID,NP,IN,NP,HK,IN,CN,NP,VN,ID,VN,MY,VN,CN,ID,HK,_,TH,ID,IN,NZ,BD,KR,ID,BD,ID,IN,ID,IN,ID,IN,BN,MM,TW,_,ID,PK,VN,AU,VN,ID,AU,NZ,ID,TH,BD,ID,CN,IN,NZ,IN,ID,IN,AF,PH,IN,ID,IN,AU,PK,HK,IN,ID,SG,ID,PK,ID,AU,IN,ID,IN,HK,MY,NZ,IN,KR,IN,ID,BD,IN,_,IN,HK,AU,ID,IN,BD,IN,ID,IN,US,BD,ID,NP,ID,NP,BD,IN,AU,SG,ID,SG,JP,AU,MY,AU,ID,IN,ID,IN,MY,ID,VN,CN,BD,CN,AU,ID,IN,CN,PK,BD,SG,SC,IN,NP,BD,CN,IN,SG,NZ,ID,IN,AU,IN,BD,IN,ID,IN,ID,IN,ID,BD,VN,PH,VN,IN,ID,IN,HK,ID,NP,ID,PH,IN,JP,HK,IN,MM,ID,KH,SG,IN,BD,NZ,ID,IN,CN,NP,ID,US,GB,IN,NZ,HK,BD,VN,JP,SG,MY,IN,TH,ID,IN,BD,PK,ID,IN,BD,IN,JP,HK,PK,IN,AU,IN,CN,AU,PK,ID,IN,ID,IN,AU,CN,VN,BD,CN,IN,ID,IN,PK,BD,KH,VG,SG,ID,HK,CN,MY,IN,ID,IN,JP,CN,KR,ID,HK,AU,ID,TH,BD,LA,BD,IN,JP,ID,VN,AU,TW,ID,VN,IN,AU,MM,PH,ID,VN,IN,NP,MY,BD,IN,BD,VN,JP,ID,IN,CN,ID,IN,HK,IN,ID,IN,ID,IN,MY,IN,ID,HK,VN,ID,BD,MY,ID,JP,BD,IN,VN,IN,ID,BD,ID,IN,HK,AU,IN,ID,CN,MN,AU,BD,CN,KH,TH,ID,IN,JP,ID,IN,HK,CN,HK,ID,IN,VN,IN,BD,IN,AU,IN,CN,HK,IN,TH,ID,VN,ID,BD,IN,BD,MY,IN,PK,_,NZ,AU,IN,AU,NP,BD,JP,AF,JP,ID,NP,ID,_,AU,ID,IN,AU,NP,CN,BD,ID,PH,ID,BD,BT,ID,BD,ID,CN,AU,BD,AU,IN,ID,IN,PF,IN,BD,VN,ID,SG,TW,_,CN,HK,BD,ID,KH,IN,HK,SB,NP,PK,ID,IN,AU,SG,MY,IN,_,ID,HK,AU,ID,AU,ID,CN,VN,SG,AU,ID,AU,PK,BD,PH,ID,AU,BD,PH,BD,NP,HK,VN,ID,TH,IN,VN,BD,IN,ID,BD,ID,SG,IN,MY,FM,ID,VN,LK,IN,KR,ID,AU,ID,SG,NL,BD,SG,ID,IN,AU,JP,SG,ID,CN,IN,_,PH,BD,ID,CN,ID,PK,ID,_,IN,AU,ID,BD,ID,BD,ID,SG,AU,IN,ID,IN,ID,CN,IN,BD,JP,PG,IN,TW,IN,HK,NZ,BD,HK,VN,HK,PH,AU,ID,IN,NP,IN,AU,SG,VN,IN,CN,IN,ID,IN,PH,MY,BD,IN,AU,IN,ID,HK,ID,AU,SG,ID,SG,IN,IE,VN,ID,IN,PK,PH,PK,_,ID,IN,AU,MY,IN,NP,KH,BD,TH,IN,VN,IN,JP,BD,IN,ID,JP,MY,IN,ID,IN,LV,LT,_,NP,PH,NP,AL,ID,CH,AT,IN,AU,TW,PH,PK,PL,LK,IN,MY,BD,PH,IN,AU,PH,IN,ID,IN,ID,IN,VN,LK,MN,VN,PH,PK,AU,ID,AU,ID,IN,VN,MN,IN,VN,IE,MY,IN,US,BD,SG,IN,AU,IN,_,SG,BD,SG,IN,CN,VN,IN,BD,ID,PH,BD,_,AU,ID,PH,ID,JP,TW,ID,IN,_,ID,IN,ID,IN,ID,CN,US,IN,TH,IN,US,MN,IN,ID,AF,IN,BD,JP,IN,AU,IN,MM,IN,BD,IN,HK,IN,ID,IN,ID,IN,ID,AU,ID,VN,NZ,ID,TW,ID,CN,IN,CN,PK,SG,TH,PH,ID,IN,MY,AU,BD,HK,PK,BD,IN,BD,TW,CN,ID,HK,ID,AU,ID,JP,VN,ID,HK,IN,BD,CN,IN,VN,IN,VN,IN,AU,BD,VN,JP,ID,AU,ID,IN,ID,CN,ID,IN,BD,ID,TW,IN,JP,AU,ID,JP,ID,IN,ID,IN,ID,VN,IN,HK,IN,ID,IN,AU,IN,CN,IN,TW,IN,MN,PH,IN,ID,HK,AU,ID,IN,CZ,AT,ID,VN,IN,PH,IN,US,HK,NP,AU,BD,IN,ID,PL,IN,ID,IN,HK,ID,AF,ID,AU,ID,IN,ID,IN,VN,JP,PH,IN,PH,TH,IN,CN,BD,AU,IN,GB,US,IN,BN,MY,BD,IN,PK,IN,BD,ID,AU,IN,ID,AU,IN,BD,MY,BD,JP,CN,IN,_,IN,NP,IN,BD,JP,ID,AU,IN,VN,IN,VN,IN,MM,IN,JP,ID,PH,ID,IN,SG,BD,ID,CN,HK,BD,IN,MY,IN,BD,_,IN,ID,IN,ID,IN,PH,VN,IN,VN,MY,IN,JP,VN,IN,HK,IN,US,PK,IN,AU,BD,HK,ID,CN,IN,_,JP,HK,AU,ID,IN,ID,IN,AU,IN,_,IN,MM,CN,VN,_,IN,AU,_,BD,ID,IN,PH,ID,NP,ID,IN,PH,BD,JP,ID,IN,BD,PG,ID,PK,BD,ID,MV,CN,ID,BD,HK,ID,BD,IN,TH,AU,HK,IN,VN,ID,IN,MY,AU,VN,HK,IN,ID,IN,AU,IN,SG,AU,ID,SG,BD,SG,ID,TH,_,TW,HK,TW,IN,AU,HK,NZ,AU,BD,PK,AU,ID,IN,CN,JP,BD,PK,IN,ID,IN,AU,ID,IN,MM,SG,_,ID,BD,CN,IN,ID,IN,ID,IN,NP,BD,_,IN,NZ,VN,ID,KH,IN,AU,BD,PH,PK,JP,IN,BD,HK,IN,HK,_,BD,PG,NZ,BD,NP,IN,BD,ID,HK,AU,NC,BD,PK,IN,VN,IN,AU,ID,MV,IN,BD,US,IN,BD,IN,TW,IN,ID,BD,CN,JP,BD,IN,PH,IN,MY,IN,US,ID,IN,ID,IN,ID,IN,HK,IN,AU,PA,BD,VN,_,ID,IN,BD,AU,IN,JP,CN,PK,KH,PH,IN,JP,IN,PK,IN,ID,IN,HK,VN,ID,AU,JP,IN,_,AU,IN,NZ,IN,VN,BD,NZ,AU,PK,AU,LA,IN,PH,ID,BD,IN,BD,ID,IN,ID,IN,BD,AU,BD,IN,AU,JP,ID,NP,IN,VN,IN,ID,IN,AU,NP,IN,SG,ID,IN,CN,US,BD,PK,BD,IN,ID,IN,ID,TW,IN,_,MY,BD,IN,JP,IN,MY,IN,BD,_,NZ,IN,NP,AU,ID,IN,BD,TH,BD,PK,JP,IN,AU,VN,AU,PK,ID,IN,_,VN,BD,VN,ID,BD,IN,AU,BD,ID,PK,IN,_,SG,IN,HK,MY,BD,HK,BD,IN,ID,SG,JP,IN,AU,JP,IN,ID,SB,ID,MY,IN,BD,IN,VN,IN,SG,KR,ID,JP,ID,IN,NP,IN,US,IN,JP,ID,CN,IN,CN,AU,PK,BD,TH,_,BD,HK,BD,IN,VN,TL,PG,MY,_,ID,IN,_,TW,IN,ID,IN,ID,IN,NP,TW,HK,VN,KR,ID,BD,AU,GB,ID,BD,IN,VN,IN,TW,HK,BD,PK,IN,TL,IN,ID,IN,BD,VN,ID,IN,TW,CN,AU,PH,IN,SG,AU,IN,ID,IN,MY,IN,ID,BD,PK,IN,BD,HK,VN,ID,VN,PH,IN,AU,ID,HK,IN,ID,VN,TH,GB,MN,IN,VN,IN,VN,IN,BD,IN,ID,VN,ID,IN,JP,ID,PH,PK,PH,IN,TL,AU,CN,MM,_,PH,ID,NP,IN,BD,IN,CN,PK,BD,VN,ID,IN,ID,IN,ID,IN,_,BD,ID,IN,CN,IN,TW,VN,BD,VN,IN,HK,SG,BD,TW,NP,BD,ID,IN,ID,IN,JP,IN,NP,CN,BD,_,SG,IN,US,IN,AU,MM,AU,IN,ID,VN,IN,FR,JP,BD,IN,BD,_,IN,MY,HK,JP,BD,ID,BD,ID,VN,IN,BD,ID,IN,AU,CN,VN,BD,VN,IN,ID,IN,BD,ID,IN,AU,IN,GB,IN,ID,BD,IN,AF,PH,KH,ID,_,ID,BD,HK,IN,GB,CH,IN,PK,BD,JP,BD,HK,IN,ID,IN,ID,SG,BD,ID,_,ID,KH,ID,IN,BD,PH,VN,LU,BD,KR,TW,ID,SG,ID,IN,PK,NZ,_,CN,IN,BD,_,BD,IN,PK,KR,BD,ID,TW,BD,PK,IN,_,PH,VN,IN,NZ,PK,IN,ID,IN,ID,IN,ID,IN,JP,LT,IN,ID,IN,BD,IN,ID,FJ,ID,IN,ID,IN,VN,PK,ID,TH,BD,ID,VN,NL,BD,CN,BD,IN,PK,ID,IN,_,IN,ID,BD,IN,BD,ID,TW,ID,AU,IN,SG,JP,IN,BD,ID,BD,ID,MY,ID,CN,PH,ID,SG,ID,IN,US,ID,JP,PL,JP,MY,IN,GB,IN,BD,_,IN,SG,ID,VN,LT,IN,PL,IN,BD,MY,AU,BD,ID,BD,US,GB,PH,IN,JP,BD,HK,BD,JP,IN,_,IN,VN,ID,BD,ID,VN,IN,BD,AU,BT,BD,IN,ID,IN,ES,IN,VN,IN,BD,PK,HK,BD,PK,ID,IN,_,MM,_,TW,HK,_,HK,MY,IN,_,IN,NZ,PH,IN,BD,ID,IN,_,IN,_,IN,_,IN,_,IN,_,IN,ID,VN,_,BD,IN,HK,JP,LV,BD,AU,IN,ID,IN,ID,JP,VN,SG,ID,IN,ID,PL,IN,ES,CZ,LK,JP,AT,TR,IN,_,IN,AU,ID,AU,SG,ID,PH,BD,NZ,BD,AU,IN,EE,PL,JP,GB,IN,CN,IN,_,IN,FR,GB,NP,PK,BD,ID,IN,ID,_,IN,HK,JP,IN,CZ,IN,HK,IN,NZ,IN,BD,MM,BD,IN,BD,AU,BD,SG,MY,IN,CH,PL,IN,BD,ID,IN,ID,JP,TR,ES,ID,IN,BD,US,IN,BD,_,IN,GB,IN,LV,PL,IN,_,BD,AU,IN,_,ID,AU,PK,HK,ID,IN,ID,IN,IT,GB,IN,BD,HK,IN,_,GB,JP,IN,BD,ID,_,IN,ID,_,EE,PL,IN,_,IN,_,IN,_,IN,_,IN,AU,NP,HK,IN,CN,IN,AU,ID,_,IN,PK,VN,_,AU,IN,ID,IN,_,IN,_,BD,IN,ID,AU,IN,ID,IN,_,IN,_,US,ID,_,IN,_,IN,MM,IN,JP,KR,IN,KR,IN,ID,IN,BD,AU,IN,AU,BD,MV,AU,NP,IN,ID,DE,ID,IN,ID,IN,BD,IN,BD,IN,ID,TW,ID,BD,ID,KR,ID,HK,ID,BD,ID,IN,CN,IN,BD,_,AU,IN,_,IN,ID,BD,KH,CN,BD,IN,ID,JP,TW,IN,ID,PH,IN,ID,IN,BD,VN,AU,VN,BD,VN,CN,TW,NZ,IN,BD,NZ,VN,TW,IN,ID,PH,MM,IN,TW,IN,JP,ID,HK,AU,VN,IN,_,PH,AU,ID,PK,AU,IN,JP,IN,ID,IN,BD,ID,AU,IN,CN,ID,PK,CN,ID,IN,_,IN,_,IN,_,IN,PK,BD,VN,ID,_,SG,IN,_,VN,_,IN,ID,VN,IN,ID,HK,IN,_,BD,IN,NP,IN,_,IN,_,IN,_,IN,ID,IN,BD,AU,IN,ID,IN,_,IN,_,IN,_,IN,_,IN,_,IN,AU,_,IN,_,BD,NZ,BD,IN,ID,TW,_,SG,ID,_,IN,_,CN,ID,IN,_,IN,US,IN,ID,_,IN,_,TH,_,HK,IN,_,IN,BD,IN,_,VN,_,IN,ID,IN,_,IN,_,IN,PH,IN,MM,BD,HK,KH,AF,VN,IN,HK,BD,ID,CN,NP,ID,AU,IN,BD,PK,VN,ID,AU,ID,IN,BD,IN,ID,BD,ID,VN,IN,SG,PK,AU,ID,US,NZ,HK,ID,VN,BD,MM,PH,CN,MY,IN,HK,SG,PK,MY,TW,IN,MM,IN,_,IN,PK,CN,PH,ID,TW,PH,VN,IN,VN,AU,PH,CN,MY,HK,ID,KR,IN,ID,VN,IN,TW,IN,TH,ID,NP,IN,ID,SG,PH,ID,HK,BD,IN,BD,CN,IN,PH,IN,BD,MM,AU,_,IN,SG,IN,BD,IN,VN,NZ,NP,ID,SG,BD,_,IN,BD,MY,PH,BD,NZ,KR,IN,BD,AU,_,IN,_,IN,BD,ID,HK,SG,IN,_,IN,ID,VN,EE,BD,IN,BD,IN,AU,MM,ID,AU,KR,IN,ID,AU,ID,AU,IN,BD,JP,IN,BD,IN,AU,PH,IN,_,ID,_,ID,IN,ID,IN,VN,IN,_,IN,_,IN,ID,IN,AU,IN,_,IN,ID,IN,ID,IN,ID,IN,AU,GR,AM,BD,PH,IN,_,ID,_,IN,VN,AU,_,ID,PH,BD,IN,ID,_,IN,VN,HK,VN,PH,MY,KR,MM,IN,PK,IN,_,IN,_,ID,TW,ID,_,IN,_,AU,BD,_,IN,VN,ID,IN,HK,AU,_,IN,_,IN,_,IN,_,AU,IT,BD,HK,IN,_,VN,IN,ID,VN,ID,PK,IN,BD,AU,BD,_,IN,_,IN,ID,_,IN,ID,BD,PK,VN,IN,VN,IN,LT,VN,IN,CN,ID,IN,ID,BD,TW,ID,BD,ID,IN,PK,HK,IN,TW,IN,TH,ID,HK,IN,BD,IN,CN,BD,NP,BD,ID,IN,_,BD,IN,AU,IN,JP,KH,JP,IT,NZ,_,IN,ID,VN,ID,VN,AU,IN,AU,IN,BD,IN,ID,IN,BD,IN,ID,IN,ID,PK,SG,ID,BD,CH,AU,BD,IN,ID,BD,ID,SG,ID,IN,TH,IN,BD,AU,CN,PK,IN,ID,BD,VN,NP,BD,ID,IN,JP,ID,AU,IN,BD,IN,CN,BD,ID,VN,BD,NZ,AU,IN,ID,IN,CH,SG,CN,VN,ID,JP,ID,CN,HK,CN,VN,CN,HK,SG,IN,AU,BD,ID,BD,PH,_,IN,_,IN,_,TW,ID,_,SG,_,IN,_,IN,_,IN,BD,VN,BD,AU,_,IN,ID,SG,ID,BD,ID,IN,HK,_,IN,_,IN,_,IN,_,ID,PK,IN,TW,IN,_,AU,NZ,ID,IN,_,SG,ID,IN,ID,IN,TH,AU,ID,MY,MV,_,BD,IN,ID,IN,_,BD,IN,CN,IN,AU,PH,ID,PH,IN,ID,PK,IN,PK,ID,NP,IN,ID,AU,VN,ID,IN,ID,BD,NP,BD,IN,ID,NP,ID,IN,ID,IN,BD,ID,BD,IN,TW,IN,_,IN,_,ID,IN,ID,IN,_,IN,_,ID,_,IN,_,BD,CN,_,ID,_,ID,CN,IN,HK,MO,CN,IN,JP,IN,NP,AU,ID,AU,CN,IN,JP,PH,CN,JP,NZ,BD,DE,CN,IN,AU,ID,AU,HK,SG,HK,JP,PH,CN,AU,US,IN,HK,IN,IL,IN,CN,IN,HK,JP,_,VN,NZ,IN,CN,IN,SG,NZ,BD,JP,ID,NZ,AU,PK,ID,IN,HK,IN,NZ,CN,IN,HK,US,BD,IN,AU,IN,AU,IN,AU,IN,ID,CN,HK,SG,HK,JP,HK,PS,NZ,US,NZ,CN,SG,ID,HK,IN,CN,MM,PH,ID,BD,HK,ID,_,HK,TW,HK,CN,IN,KH,AU,CN,_,HK,US,HK,IN,AU,IN,CN,IN,HK,JP,HK,IN,ID,AU,IN,AU,IN,JP,SG,MY,_,IN,PK,IN,HK,KR,DE,OM,UA,AU,KE,VE,BR,IN,AU,IN,AU,IN,ID,IN,HK,IN,JP,IN,NL,IN,ID,MN,IN,HK,VN,IN,HK,MY,IN,AU,SG,IN,HK,IN,HK,IN,KR,BD,HK,NZ,AU,IN,AU,ID,MY,IN,ID,SG,IN,HK,AU,BD,ID,AU,ID,AU,IN,ID,IN,US,CN,HK,CN,US,HK,IN,US,AU,HK,SG,IN,BD,ID,MY,JP,CN,HK,CN,ID,CN,ID,AU,IN,HK,SG,HK,IN,BD,AU,IN,VN,IN,US,TH,ID,VN,US,NZ,SG,IN,US,HK,ID,DE,HK,FR,NL,IN,PH,HK,CN,AU,CN,IN,NZ,AU,ID,HK,CN,HK,PH,NZ,IN,AU,SG,ID,IN,ID,PS,HK,PH,IN,PH,SG,VN,ID,AU,ID,IN,TH,PK,US,CN,TW,PH,SG,ID,US,IN,AU,MY,IN,CN,IN,BD,VN,NL,VN,SG,CN,HK,DE,JP,US,IN,MY,HK,SG,IN,PK,BD,IN,NZ,MY,NZ,AU,HK,IN,PH,AU,ID,VN,ID,AU,IN,NP,IN,AU,MD,BD,MM,TW,AU,MV,HK,TW,BT,CN,VN,AU,ID,HK,US,HK,MM,PH,BD,JP,AU,HK,US,IN,CN,AU,KH,TH,BD,AU,SG,AU,ID,BD,_,NP,IN,JP,MY,HK,CN,AU,MY,IN,AU,IN,JP,AU,US,HK,MY,AU,HK,CN,MY,CN,SG,ES,HK,IN,MY,PH,AU,ID,BD,IN,NZ,AU,JP,AU,ID,CN,IN,ID,AU,ID,BD,SG,MM,TW,PK,CN,JP,IN,BD,IN,TL,CN,NZ,IN,HK,US,HK,CN,HK,SA,EG,HK,JP,VN,JP,CN,TH,CN,DE,CN,HK,BD,NZ,ID,VN,AU,NZ,AU,BD,QA,IN,AU,IN,KR,HK,BD,IN,ID,AU,IN,JP,IN,PK,IN,HK,BD,IN,CN,BD,TH,IN,PS,IN,FR,GE,IN,CN,IN,MY,JP,IN,CN,SA,ID,IN,US,HK,CN,TW,SG,HK,ID,AU,ID,VN,JP,PH,BD,IN,CN,IN,VN,CN,CA,IN,BD,SG,JP,IN,NL,IN,US,HK,ID,VN,HK,ID,MM,CN,PK,HK,ID,SG,IN,SG,CN,HK,CN,US,HK,CN,IN,JP,IN,CN,HK,GB,NL,CN,MH,CN,AU,CN,JP,PH,HK,BD,PH,ID,CN,ES,CN,IN,US,PK,TW,HK,PH,CN,IN,ID,IN,ID,IN,PL,PK,ID,BD,CN,MM,IN,CN,IN,_,SG,JP,ID,AU,CN,IN,BD,AT,HK,NZ,ID,AU,CN,AU,CN,ID,IN,CN,HK,SG,JP,HK,IN,ID,AU,BD,NZ,HK,AU,HK,IN,AU,ID,IN,NZ,MY,PH,SG,AU,ID,MM,IN,CN,AU,BD,PK,IN,PK,BD,IN,ID,IN,JP,_,JP,BD,IN,CN,HK,BD,CN,IN,PH,MM,AU,US,HK,US,CN,ID,AU,ID,IN,GB,US,IN,CN,IN,JP,SG,JP,IN,MM,HK,IN,CN,BD,DE,BD,CN,IN,AU,ES,NP,AU,NZ,AU,JP,IN,CN,AU,BD,NZ,HK,CN,HK,JP,HK,IN,LA,HK,GB,AU,_,BD,NZ,IN,CN,JP,CN,ID,HK,SG,VN,ID,IN,BD,JP,SG,AU,SG,ID,IN,US,JP,IN,VN,CN,IN,CN,SG,CN,IN,BD,CN,IN,TW,CN,HK,TH,CN,IN,HK,JP,IN,PK,BD,JP,ID,SG,CN,AU,MY,IN,ID,IN,AU,BD,CN,HK,IN,AU,CN,IN,BD,IN,HK,MY,TH,IN,AU,IN,SG,NZ,PS,HK,CN,IN,KH,ID,KR,JP,PH,US,JP,HK,IN,HK,IN,PS,IN,NL,IN,TW,SG,HK,IN,CN,MN,HK,PH,_,IN,ID,IN,MM,IN,BD,ID,AU,HK,MN,_,KH,TH,IN,VN,IN,BD,GB,AU,ID,IN,ID,IN,NZ,IN,_,MY,JP,HK,AU,VN,DE,NL,SE,US,CN,IN,MY,IN,HK,SG,MY,NZ,NP,PK,IN,AU,HK,_,ID,IN,AU,ID,CN,SG,JP,ES,US,HK,IN,GB,AU,SG,HK,PH,HK,US,HK,IN,CN,JP,CN,IN,CN,ID,IN,TW,HK,AU,SG,AU,HK,CN,IN,AU,ID,TH,CN,HK,KR,HK,TL,CN,IN,KH,PH,MY,PH,IN,IT,IN,LI,NZ,PH,IN,US,ID,JP,ID,IN,BD,ID,TH,NZ,IN,AU,IN,ID,AU,US,AU,IN,SG,BD,AU,HK,TW,IN,AU,IN,ID,IN,TH,AU,JP,IN,US,IN,SG,AU,ID,BD,AU,IN,BD,AU,IN,HK,VN,IN,BD,AU,TH,PK,PG,AU,PH,VN,IN,JP,TW,PK,GB,AT,BD,PK,IN,BD,IN,ID,IN,ID,IN,JP,HK,_,BD,IN,CN,JP,SG,AU,PK,HK,ID,IN,CN,IN,JP,AU,IN,MY,AU,SG,IN,BD,IN,ID,VN,SG,AU,NZ,SG,NZ,BD,CN,PS,CN,MN,IN,CN,IN,NZ,TR,SC,US,HK,JP,IN,AU,ID,HK,IN,AU,IL,IN,ID,PK,PH,AU,US,NP,LA,KH,BD,CN,AU,IN,ID,IN,ID,SG,BD,IN,ID,IN,AU,IN,JP,IN,CN,IN,ID,IN,JP,IN,PH,ID,AU,IN,LK,AU,IN,AU,IN,AU,TH,AU,CN,HK,CN,AU,ID,IN,NZ,ID,KH,NZ,SG,CN,HK,ID,PH,AU,PK,SG,ID,HK,GB,HK,JP,HK,AU,ID,AU,IN,US,ID,AU,IN,NZ,ID,BD,HK,IN,CN,AU,ID,IN,_,HK,JP,IN,ID,IN,HK,VN,PH,HK,CN,HK,IN,ID,IN,JP,SG,NZ,HK,IN,AU,ID,US,NP,IN,CN,ID,IN,CN,IN,AU,HK,PH,IN,US,IN,ID,KR,ID,KR,ID,IN,HK,AU,VN,IN,VN,AU,VN,IN,CN,MY,SG,HK,ID,HK,AU,MY,AU,HK,CN,US,AU,CN,IN,GU,IN,JP,TH,PG,MY,AU,ID,CN,NZ,SG,_,NP,AU,MY,HK,JP,FR,IN,NL,SG,CN,IN,HK,CN,_,CN,US,AU,MN,IN,AU,NZ,KR,IN,PH,KE,IN,CN,IN,AF,MN,CN,GB,IE,SG,IN,MY,ID,TH,IN,BD,HK,JP,NZ,AU,CN,IN,ID,IN,AU,KR,AU,HK,ID,IN,ID,AU,KR,CN,IN,US,IN,VN,PG,VN,IN,BD,MM,NP,IN,BD,CN,AU,AF,PK,ID,AU,VN,NP,ID,CN,IN,CN,AU,IN,TH,IN,VN,BD,IN,BD,CN,MM,AU,ID,CN,ID,BD,JP,HK,SG,JP,AU,NP,IN,NL,VN,PH,HK,AU,HK,SG,KR,AU,HK,TH,PK,HK,AU,GB,CN,ID,HK,IN,HK,NL,GB,JP,HK,BD,CN,KR,US,IN,AU,ID,NZ,AU,NZ,US,AU,US,ID,IN,ID,IN,HK,KH,JP,BD,IN,HK,JP,IN,HK,ID,IN,BD,DE,ID,IN,IE,MY,BD,NZ,AU,CN,BD,AU,IN,FR,ID,IN,ID,CN,IM,ID,SG,US,HK,PS,_,AU,ID,MN,AU,ID,AU,ID,CN,HK,CN,IN,JP,ID,AU,ID,US,HK,JP,AU,PG,VN,IN,CN,IN,CN,PK,BD,IN,CN,HK,AU,IN,MY,CN,KR,IN,ID,IN,AU,IN,JP,ID,TH,IN,BD,ID,HK,MM,IN,AF,HK,IN,NL,TR,UA,IR,IN,ID,SG,TH,IN,JP,US,CN,KH,IN,BD,IR,CN,IN,VN,IN,SG,IN,ID,IN,TH,IN,ID,KR,HK,ID,CN,VN,NZ,AU,PK,CN,IN,CN,TH,AF,IN,SG,IN,PS,ID,NZ,AU,SG,HK,AU,GB,AU,IN,KR,IN,HK,AU,SG,CN,IN,CN,IN,ID,IN,MM,MY,IN,AU,ID,IN,GE,JP,GE,SG,IN,MY,NZ,BD,AU,US,AU,IN,BD,IN,JP,IN,ID,IN,MM,MY,AU,ID,TW,AU,CN,ID,AU,PK,CN,ID,SG,ID,IN,ID,IN,ID,IN,AU,IN,BD,US,AU,HK,CN,BD,CN,PH,IN,ID,IN,BD,VN,IN,BD,MY,IN,KR,BD,ID,IN,KR,IN,KH,CN,IN,ID,IN,BD,CN,_,MY,BD,IN,HK,IN,ID,AU,IN,US,GB,CN,IN,US,IN,AU,CN,PH,ID,US,CA,JP,US,CN,HK,MM,ID,NZ,BD,MY,AU,KR,IN,MN,IN,AU,MM,BD,IN,NL,MM,BD,IN,GB,CO,US,DE,SG,HK,CN,VN,CN,PH,HK,US,HK,US,TH,ID,IN,AU,IN,US,BD,ID,IN,BD,SG,MY,IN,AU,IN,ID,IN,ID,TM,MY,HK,IN,ID,IN,ID,AU,ID,CN,VN,HK,IN,VN,IN,CN,ID,CN,IN,CN,BD,IN,ID,TW,EE,IN,AU,IN,CN,BD,US,MY,PH,BD,IN,AU,VN,AU,CN,IN,VN,GB,IN,GB,JP,_,IN,SG,IN,AU,PK,IN,BD,CN,BD,CN,MY,SG,ID,CN,TW,IN,ID,VN,IN,CN,HK,CN,AU,CN,AU,CN,IN,JP,PK,ID,HK,IN,HK,AE,IN,KH,IN,CN,IN,AU,IN,AU,IN,BD,HK,CN,ID,SG,ID,IN,AU,ID,SG,ID,HK,AU,TW,MY,PH,BN,ID,AU,IN,NP,NZ,IN,AU,SG,AU,SG,AU,SG,ID,AU,AF,NZ,TW,ID,AU,JP,IN,AU,NZ,_,AU,SG,VN,HK,JP,IN,ID,IN,AU,IN,TW,MY,TW,AU,MY,IN,CN,IN,HK,JP,TW,NZ,HK,IN,ID,CN,ID,HK,TH,HK,IN,PH,IN,ID,IN,PK,JP,IN,SG,GB,ID,AU,GB,IN,ID,QA,IN,JP,KH,JP,HK,JP,DE,US,ID,BD,AU,ID,IN,AU,IN,KH,JP,IN,SL,TN,CR,HR,IN,PH,AU,JP,ID,JP,AU,TH,ID,IN,ID,IN,AR,ID,IN,JP,HK,IN,ID,NZ,HK,AU,BD,PK,IN,AU,VN,AU,ID,IN,NP,IN,HK,IN,JP,HK,IN,AU,IN,PH,CN,IN,VU,PH,MM,IN,NZ,AU,CN,JP,ID,IN,AU,JP,ID,CN,_,NZ,AU,KR,CN,IN,HK,KR,TW,AU,VN,NZ,CN,ID,SG,BD,AU,HK,MY,HK,AU,CN,ID,IN,HK,CN,AU,IN,SG,ID,IN,AU,CN,IN,ES,CN,IN,TW,PK,ID,AU,IN,ID,IN,AU,SG,AU,VN,NZ,ID,IN,PH,ID,PK,ID,JP,SG,ID,NZ,AF,AU,ID,MM,AU,TW,IN,JP,PH,CN,IN,AU,IN,AU,IN,CN,SC,BG,JP,SG,IN,CN,IN,ID,AU,VN,IN,CN,IN,HK,CN,MY,ID,IN,JP,SG,AU,NZ,KH,SG,AU,ID,JP,HK,CN,AU,CN,IN,CN,VN,ID,TW,CN,AU,PH,AU,IN,ID,LK,ID,BD,ES,TH,ID,IN,BD,CN,AU,ID,IN,VN,ID,HK,IN,VN,BD,IN,SG,BD,IN,MY,JP,HK,SG,IN,VN,IN,ID,HK,IN,US,CN,HK,US,KR,SG,LA,PH,IN,AU,US,HK,_,ID,BD,IN,VN,ES,US,AU,BD,CN,IN,DE,IN,DE,IN,PK,CN,AU,HK,IN,CN,HK,IN,AU,IN,SG,JP,BD,CN,AU,TW,IN,US,CN,ID,IN,LA,IN,AU,IN,AU,IN,AU,SG,ID,TW,IN,CN,IN,HK,VN,KR,MY,FR,VN,BD,AU,TW,IN,VN,HK,MY,HK,CN,HK,ID,IN,IQ,NL,BD,PH,IN,_,SG,NZ,TW,PH,_,MY,HK,AE,NL,SG,MN,HK,SG,IN,NZ,ID,TW,CN,HK,CN,AU,KR,ID,ES,CN,MN,HK,ID,SG,AU,PH,PK,VN,MY,ID,SG,CN,HK,CN,MY,US,MY,CN,HK,NZ,IN,PK,BD,CN,US,PH,JP,PH,JP,BD,IN,JP,CN,HK,IN,HK,IN,BD,HK,CN,ID,SG,HK,MY,BD,BN,SG,US,NL,SG,AU,NZ,AU,ID,MY,ID,IN,KR,SG,BD,CN,ID,IN,BD,MY,CN,KR,PH,TH,MY,CN,MM,TH,HK,IT,GB,MY,GB,HK,IN,AU,HK,IN,JP,AU,IN,LK,IN,BD,AU,ID,HK,CN,BD,CN,HK,IN,HK,SG,CN,HK,BD,ID,IN,HK,SG,AF,IN,HK,CN,IN,SG,JP,HK,IN,BD,PH,IN,TW,SG,HK,IN,KH,CN,JP,IN,ID,HK,AU,NZ,MM,SG,JP,IN,PS,ID,IN,ID,TL,IN,KR,IN,PH,BD,IR,NL,HK,CN,_,VN,HK,NZ,AU,BD,_,AU,ID,HK,TW,BD,CN,SG,JP,ID,AU,IN,SG,IN,MY,BD,IN,ID,BD,PH,CN,VN,SG,MY,HK,CN,IN,JP,BE,HK,JP,ID,JP,IN,MY,ID,AU,ID,HK,TH,NL,MY,VN,ID,HK,JP,AU,LA,HK,AU,BD,NZ,IN,AU,VN,IN,AU,TW,AU,PK,CN,HK,NP,NZ,AU,CN,AU,FR,IN,NZ,IN,CN,KH,AU,JP,NZ,US,AU,HK,JP,AU,MY,HK,IN,PK,NZ,NP,IN,ID,IN,ID,IN,AU,MY,CN,HK,DE,AU,NZ,IN,AU,PH,JP,CN,VN,CN,NP,NZ,IN,TW,AU,IN,AU,IN,SG,IN,ID,IN,HK,ID,IN,ID,CN,ID,IN,BD,IN,CN,NZ,CN,IN,ID,AU,ID,MY,CN,HK,IN,DE,SG,BD,HK,MY,NP,AF,HK,MO,TH,JP,TH,MM,AU,JP,IN,NZ,AU,CN,HK,AU,SG,AU,IN,HK,CN,KR,HK,BD,AU,BD,ID,CN,BD,ID,VN,ID,VN,TW,JP,PG,HK,CN,AU,IN,HK,TW,SG,VN,AU,IN,ID,HK,MY,SG,AU,IN,BD,ID,BT,CN,NZ,IN,HK,_,SG,IN,VN,JP,VN,IN,VN,IN,AU,BD,SG,CN,JP,CN,IN,VN,SG,BD,AU,ID,JP,BD,TW,ID,IN,ID,HK,TW,DE,IN,CN,AU,ID,IN,HK,IN,JP,HK,AU,ID,AU,IN,KR,MY,ID,AU,JP,HK,CN,AU,CN,IN,ID,IN,ID,PK,CN,TW,IN,NZ,AU,CN,IN,AU,ID,WF,JP,AU,IN,JP,CN,ID,AU,_,IN,HK,BD,IN,HK,AF,JP,ID,CN,AU,CN,NP,CN,AU,IN,VN,HK,CN,HK,TW,ID,BD,IN,CN,AU,SG,CN,IN,TL,ID,PK,HK,ID,JP,ID,IN,ID,AU,IN,ID,VN,PH,JP,CN,ID,IN,MN,SG,IN,ID,AU,IN,ID,HK,CN,HK,TW,MY,CN,IN,CN,AU,KR,CN,ID,BD,NZ,UA,TW,AU,KH,US,IN,VN,CN,HK,BD,SG,AU,_,US,IN,PH,VN,CN,HK,SG,VN,MO,HK,MO,US,AU,IN,JP,KR,JP,MO,HK,SG,ID,IN,AU,ID,SG,VN,CN,IN,AU,NZ,SG,IN,AU,IN,CN,IN,CN,NZ,IN,AU,BD,IN,MM,VN,NZ,JP,CN,IN,BD,TL,AU,MY,IN,JP,HK,CN,ID,CN,SG,MY,FR,CN,BD,AS,IN,CN,IN,NZ,AU,CN,ID,CN,VN,BD,ID,IN,HK,IN,ID,VN,JP,IN,JP,KR,CN,BD,NZ,IN,BD,JP,ID,AU,_,VN,IN,ID,BD,CN,AU,IN,AU,KH,MN,TW,IN,VN,CN,TH,HK,AU,IN,AU,VN,BD,IN,JP,PS,HK,NZ,MM,AU,JP,KR,VN,IN,ID,MY,AU,IN,HK,PH,CN,TO,AU,ID,AU,IN,BD,IN,HK,CN,ID,CN,PH,CN,AU,IN,ID,JP,SG,CN,NZ,IN,KR,CN,MY,BD,ID,BD,VN,IN,JP,CN,JP,IN,KR,IN,CN,AU,CN,BD,KR,NZ,MO,IN,TH,HK,ID,CN,IN,HK,CN,AU,IN,HK,IN,ID,KH,JP,PH,CN,SG,AU,NZ,AU,IN,HK,IN,HK,NZ,ZA,IN,HK,IN,CN,MY,PL,NZ,CN,IN,HK,US,IN,CN,IN,PK,US,AU,IN,LA,CN,BD,IN,BD,JP,AU,ID,AU,IN,CN,HK,IN,ID,IN,_,LK,TH,NZ,AU,VN,IN,DE,PK,TH,NZ,SG,GB,IT,ES,TW,HK,KR,IN,NZ,AU,NZ,CN,KH,JP,SG,KZ,IN,TW,KR,NZ,JP,HK,AE,IN,AU,IN,MY,JP,AF,CN,HK,IN,CN,ID,_,ID,IN,CN,ID,IN,BD,IN,_,VN,AU,ID,JP,US,AU,CN,IN,HK,IN,AU,IN,VN,AU,HK,JP,BD,ID,HK,KH,HK,KH,MY,BD,NZ,JP,AU,NZ,JP,KH,MN,NZ,AU,AF,VN,KH,PS,CN,NZ,HK,SG,ID,IN,ID,IN,SG,AU,MM,VN,BD,ID,HK,JP,IN,ID,TO,CN,IN,HK,TH,HK,ID,IN,CN,PG,CN,ID,AU,_,IN,US,IN,CN,ID,_,CN,BD,CN,IN,NZ,IN,ID,AU,IN,CN,NZ,AU,JP,HK,IN,HK,ID,SG,AU,ID,KR,HK,IN,ID,IN,HK,AU,IN,_,IN,BD,AU,IN,NZ,AU,SG,NZ,NP,NZ,VN,ID,AU,_,IN,JP,US,HK,IN,CN,BD,IN,AU,JP,MY,NZ,HK,VN,NZ,SG,AU,ID,TH,HK,IN,SG,MY,JP,KR,NZ,JP,MY,VN,SG,IN,PH,BD,IN,BD,AU,JP,BD,ID,TW,CN,HK,IN,SG,BD,CN,IN,ID,IN,CN,PH,IN,ID,KR,JP,IN,BD,NZ,ID,HK,AU,DE,CN,HK,PK,IN,ID,SG,ID,KR,SG,HK,KR,IN,AU,ES,AE,VN,BD,RO,DE,AF,HK,MY,US,IN,HK,ID,BD,HK,CN,IN,PK,NZ,BD,MM,IN,MY,PH,_,AU,ID,JP,NZ,AU,ID,TH,PH,IN,HK,GB,FJ,CN,ES,IN,ID,SG,BD,KH,CN,IN,JP,IN,ID,IN,CN,HK,CN,ID,HK,IN,ID,JP,IN,CN,ID,CN,IN,ID,IN,AU,KH,CN,AU,MY,SG,BD,IN,BD,TH,EE,MY,ID,CN,PK,ID,BD,IN,_,AU,IN,VN,AU,PH,AU,ID,TO,LA,TH,LA,ID,IN,NZ,SG,ID,IN,HK,PK,IN,BD,MY,AU,NZ,AU,BR,AE,IN,ID,AU,JP,TH,JP,TH,VN,BT,VN,SG,ID,SG,AU,CN,TH,PH,TH,AU,SG,HK,AU,IN,TH,AU,NZ,KR,IN,NP,JP,ID,IN,ID,BE,ID,JP,IN,MY,SG,AU,VN,_,IN,ID,PK,HK,ID,CN,AU,ID,AU,CN,AU,SG,NL,SG,JP,CN,HK,JP,ID,IN,KR,HK,AU,ID,AU,IN,TH,IN,SG,MY,TW,IN,GB,MY,TW,VN,IN,KH,JP,AU,KR,IN,HK,RO,AU,US,PH,JP,AU,IN,ID,NL,ID,HK,SG,ID,US,PH,ID,BD,LK,IN,NZ,TH,AU,_,PK,IN,TH,PH,TH,NZ,AU,IN,ID,JP,HK,IN,ID,IN,SG,TW,AU,_,AU,ID,PK,ID,AU,SG,HK,NL,HK,AU,IN,AU,IN,NZ,HK,CN,SG,JP,ID,AU,_,CN,NZ,ID,AF,SG,CN,SG,IN,ID,CN,ID,KR,AU,ID,PH,KR,AU,BD,ID,IN,ID,IN,NZ,AU,PH,HK,AU,ID,US,BD,AU,HK,PL,ID,AU,IN,PS,KH,AU,US,AU,IN,ID,IN,DE,IN,CN,JP,IN,HK,IN,HK,IN,AU,SG,CN,KR,US,KR,MY,MV,IN,CN,AU,SG,TW,SG,HK,PK,HK,PH,SG,ID,AU,JP,PH,CN,IN,VN,CN,IN,NZ,HK,IT,AU,CN,ID,NZ,SG,IN,BD,IN,CN,ID,SG,ID,AU,PK,CN,SG,VN,IN,BD,IN,PS,ID,NL,IN,JP,HK,BD,IN,CN,US,IN,ID,VN,IN,KR,HK,IN,GU,AU,CN,BD,AU,ID,NZ,AU,ID,AU,KH,US,GB,HK,IN,MY,IN,MY,IN,VN,HK,IN,PK,VN,IN,AU,CN,IN,CN,AU,CN,AU,NZ,US,SG,PK,VN,SG,TW,CN,IN,AU,PH,KH,PH,CN,US,IN,PH,VN,AU,PH,IN,MY,ID,_,JP,_,AU,_,ID,PK,IN,CN,IN,CN,KI,JP,AU,HK,JP,AU,SG,ID,IN,AU,VN,PK,IN,CN,IN,AU,HK,BD,IN,NZ,HK,SG,AU,PH,AU,SG,BD,JP,MM,PH,VN,US,MX,US,IN,NZ,JP,IN,JP,AU,ID,CN,IN,NZ,IN,KH,CN,ID,NP,IN,SG,IN,JP,HK,CN,IN,CN,PH,NZ,ID,JP,AU,CA,ZA,NZ,ID,AU,CN,MM,PK,CN,NZ,CN,NZ,IN,CN,MY,AU,ID,MM,AU,ID,AU,IN,ES,SG,IN,CN,HK,ID,AU,IN,ID,_,AU,IN,AU,IN,ID,IN,JP,IN,CN,HK,IN,CN,IN,KR,SG,US,AU,HK,JP,BD,CN,PW,AU,IN,AU,IN,ID,JP,CN,NL,NZ,IN,AU,_,ID,IN,CN,SG,HK,MY,CN,IN,BD,HK,US,HK,CN,BD,IN,PK,VN,IN,AU,ID,AU,HK,ID,IN,CN,PH,CN,AZ,EE,HK,IN,BD,ID,SG,ID,IN,AU,IN,CN,TW,VN,HK,PK,BT,ID,DE,VN,CN,ID,AU,CN,EE,IN,MY,LT,SG,HK,BD,VN,_,TW,HK,VN,HK,IN,AU,IN,HK,ID,IN,HK,ID,IN,CN,PH,IN,ID,AU,IN,AU,TW,SG,CN,IN,NL,BD,KR,CN,IN,TW,IN,AU,NZ,CN,VN,ID,CN,HK,MY,VN,PK,VN,SG,IN,US,IN,BD,HK,BD,NZ,IN,KR,CN,AU,ID,IN,TH,JP,ID,VN,AU,CA,MY,BD,IN,MY,ID,MY,ID,NZ,TH,AU,HK,ID,IN,AU,ID,IN,TH,NZ,ES,SG,IN,PK,BD,ID,IN,BD,IN,KH,PH,JP,NZ,AU,NZ,_,IN,CN,IN,ID,JP,CN,TH,ID,CN,HK,KR,ID,BD,HK,KH,JP,NZ,AU,CN,VN,CN,AU,ID,BD,IN,PH,VN,SG,ID,AU,ID,IN,JP,CN,HK,SG,JP,HK,CN,IN,BD,AU,IN,AU,BD,ID,IN,ID,HK,CN,HK,MN,ID,IN,NZ,AU,JP,HK,SG,NZ,IN,ID,AU,AF,BD,ID,IN,CN,NP,CN,IN,NZ,CN,ID,US,IN,HK,TW,PH,TH,VN,HK,PF,NZ,IN,AU,PF,IN,KR,SG,IN,PK,IN,ID,TH,ID,AU,JP,NZ,IN,ID,BD,AU,SG,IN,TW,HK,AU,ID,AU,HK,BR,IN,PK,CN,IN,AU,IN,VN,CN,IN,ID,IN,ID,IN,KH,ID,NP,HK,PK,ID,IN,CN,IN,PK,PH,ID,IN,VN,ID,IN,MY,MM,HK,IN,CN,IN,SG,AU,US,TH,IN,CN,AF,TW,CN,TW,CN,IN,CN,IN,VN,ID,JP,AU,SG,AU,HK,US,DE,AT,DE,US,DE,US,DE,NL,DE,NL,DE,US,DE,AT,DE,US,DE,US,DE,AT,DE,US,DE,US,DE,US,DE,US,BR,DE,IN,JP,NL,US,IN,US,GB,US,IN,JP,US,BR,US,IN,US,NG,US,BR,US,IN,JP,US,IN,JP,US,JP,US,JP,US,JP,US,BR,US,IN,JP,US,IN,JP,US,DE,US,DE,US,IN,SG,US,GB,IN,SG,US,DE,US,IN,US,JP,US,MX,US,AU,NZ,PH,KR,MY,LK,IN,KZ,KH,DZ,ID,BR,EC,BR,AR,BR,GT,BR,AO,FR,IT,US,CL,US,GB,ID,US,FR,US,GB,TW,IN,HK,US,BR,JP,AT,PL,US,IL,PH,KH,EC,AE,US,DE,US,QA,SA,KW,SA,US,FR,IN,CA,DE,IN,US,ZA,US,DE,US,DE,AT,DE,NL,DE,US,DE,CA,US,DE,AT,DE,US,DE,US,DE,AT,DE,US,DE,AT,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PR,US,IE,AU,GR,AR,US,CA,US,DK,NO,US,TW,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,BR,IE,US,JP,IE,US,SG,US,DE,IN,US,JP,US,FI,US,CA,IT,US,GB,AO,ZA,US,HK,US,AU,US,NL,US,SG,US,JP,IN,US,HK,US,SG,US,HK,US,IT,US,HK,US,JP,AU,US,NL,IE,US,IE,US,HK,AU,NL,IE,US,AU,US,JP,US,FI,AT,IE,NL,FI,AT,DE,NL,AT,IE,DE,IE,FI,AT,NL,IE,AT,NL,ZA,GB,CH,JP,FR,HK,SG,NL,IE,KR,IE,US,PL,US,KR,US,IL,US,ES,US,CA,US,AU,US,CA,QA,US,SG,AE,GB,US,JP,US,IN,US,KR,SE,US,AU,US,SG,HK,SG,MY,HK,SG,KR,SG,NL,US,IN,US,IE,US,AU,US,AU,US,NL,US,AU,US,AU,US,AU,US,CZ,US,AU,US,AU,US,CZ,US,KW,US,ZA,US,IN,TH,SG,TH,SG,TH,SG,TH,SG,TH,SG,TH,US,SG,US,TR,NL,US,NL,US,SE,US,VN,US,PH,US,AU,ID,BE,US,CA,US,SG,US,SG,US,JP,US,SE,US,JP,US,DE,US,JP,AU,JP,IN,FR,US,KR,US,DE,US,HK,US,IN,US,IN,JP,US,JP,US,ZA,BR,HK,US,PL,US,HK,US,HK,US,IN,SG,IN,SG,US,AU,US,JP,US,JP,US,IT,US,CA,US,AU,GB,US,MX,US,GB,US,SE,US,GB,US,GB,US,IN,SE,AE,US,IE,US,DE,US,NL,US,HK,US,AU,US,TW,US,NZ,ID,NZ,US,AU,KR,US,KR,US,KR,DE,KR,US,KR,US,LK,US,DE,US,JP,CO,US,ZA,FR,US,SE,KR,US,KR,SE,DK,US,HK,US,IL,JP,US,JP,US,TH,US,TH,US,DE,US,IT,US,NL,US,GB,US,RO,US,GB,US,MY,US,JP,CA,CH,US,MO,US,PH,US,SG,US,KR,US,KR,US,TW,US,TW,US,CA,BR,MX,US,MX,US,GB,US,GB,US,AU,US,AU,BR,AU,JP,US,JP,IN,AU,NZ,US,IT,US,IT,US,CO,US,IL,US,AU,US,DK,US,GB,US,JP,US,JP,US,GB,JP,US,JP,US,JP,US,JP,US,JP,CH,DE,US,DE,GB,US,JP,IL,US,BR,IL,BR,FR,US,DE,US,IN,US,GB,US,NL,SE,NL,AU,DE,IN,US,PL,US,DE,US,PL,US,SG,US,NL,US,SG,PL,US,PL,US,MX,US,AU,US,ID,US,GB,US,DE,GB,US,GB,AT,US,ES,US,ES,US,ES,IT,US,IT,US,ES,SG,US,AU,US,AU,NZ,US,DE,PL,GB,US,DE,US,HK,US,SE,US,NL,US,NL,IT,RO,FR,US,FR,US,IN,SG,IN,SG,IN,SG,IN,SG,IN,US,AU,US,IT,PL,DE,US,DE,US,JP,HK,GB,DE,JP,US,GB,US,DE,US,CA,GB,US,IN,US,NL,US,BR,AR,US,JP,US,PL,JP,US,DE,US,SG,US,IN,US,CA,JP,FI,US,BR,US,ID,US,GB,HK,US,HK,US,IN,FR,SG,US,HK,PT,US,IN,BR,US,BR,US,BR,IN,HK,IN,US,BE,US,GB,US,TH,IN,SG,ES,FR,US,IT,IN,US,PL,US,GB,IN,US,IN,HK,GB,HK,US,CO,US,IN,US,JP,US,JP,ZA,US,TW,AT,US,JP,US,HK,FR,US,IN,US,CA,US,AU,US,AU,US,AU,US,AU,US,ID,US,DK,ID,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,CA,US,FR,US,AU,US,AU,US,AU,US,AU,US,AU,US,IN,DK,US,PL,US,AU,US,AU,US,AU,US,ZA,PL,US,IN,US,DK,US,AU,AR,US,AU,US,AU,US,AU,US,KR,US,AU,US,AU,US,AU,US,AU,US,IN,US,NZ,US,DK,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,DK,AT,IN,US,AU,US,AT,US,AT,US,NZ,IN,GB,JP,AU,SG,AU,SG,US,GB,US,IN,US,SG,US,BR,GB,DK,US,NL,IN,US,IN,US,QA,US,IN,US,AU,DE,US,NL,AU,US,JP,US,GB,US,AU,US,GB,AU,US,IN,US,IN,US,NL,US,AU,US,AU,US,AU,US,AU,US,AU,US,CA,AU,US,GB,AU,US,DE,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,ID,AU,US,AU,NL,US,KR,US,HK,US,NL,US,IN,US,BR,US,PH,MY,US,JP,US,HK,US,DE,JP,US,IT,DE,US,AU,SG,US,CA,US,FI,US,AT,US,CA,US,SG,US,GB,DE,US,GB,US,GB,US,GR,AR,GB,US,AR,IT,US,IT,US,IN,US,BR,US,IN,US,BR,US,ES,PE,ES,PE,ES,PE,US,PH,US,AU,SG,AU,US,SG,AU,IT,US,PE,IT,US,ID,US,TW,US,FR,US,JP,US,ES,PE,US,ES,GR,DE,US,FR,US,AU,US,AU,US,AU,IT,US,AU,US,AU,US,SE,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,JP,US,AU,US,DE,US,IN,US,AU,US,AU,US,IN,US,AU,US,GB,US,NZ,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,RU,JP,US,AU,US,NL,US,AU,US,AU,US,AU,US,AU,US,AU,US,SG,US,KR,US,NL,CH,AE,US,NO,AU,US,AU,HK,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,NL,US,AU,US,AU,US,AU,US,NL,US,GB,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,HK,US,JP,US,IN,BR,US,LK,US,NZ,IN,US,NZ,IN,IT,US,PL,US,JP,US,IN,US,IN,US,IN,US,MY,SA,US,SA,GB,US,GB,HK,IN,US,IN,SG,IN,SG,IN,IL,AU,DE,FR,US,FR,US,JP,TW,US,TW,US,TW,FR,US,AU,US,IN,SG,IN,AU,FR,US,AU,US,AU,US,AU,US,TW,US,AE,US,GB,US,SG,GT,SG,RO,BE,US,GB,US,AU,US,GB,US,JP,US,IN,US,GB,CO,US,NL,US,JP,US,JP,US,ID,US,ID,US,NL,US,SE,US,NL,FR,BR,US,BR,AR,CO,US,AU,SG,DE,US,AU,US,AU,US,GB,US,JP,US,JP,US,FR,US,IN,FR,IN,IT,US,IN,US,SG,GB,IN,US,FR,IN,AU,US,FR,US,UA,US,DE,US,DE,US,IN,US,DK,IN,US,DE,US,DE,US,JO,US,IN,US,IN,QA,US,GR,IN,GR,IN,US,IN,US,FR,US,NL,US,FR,JP,KR,US,AU,SE,FR,US,CA,SE,US,IN,GB,IE,NL,US,IN,US,CA,US,IN,US,IN,TW,US,MX,US,CA,DE,US,IN,US,FR,US,GB,US,FR,US,IN,US,JP,US,PL,US,IN,US,IN,US,DE,US,NL,US,GB,US,ZA,US,_,US,_,CA,US,CA,US,CA,US,GB,US,CA,US,CA,US,CA,US,_,US,CA,US,HK,US,BE,PL,US,CA,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,SG,DE,US,PL,US,IE,FR,PH,US,DE,BR,US,DE,US,IN,IE,US,DE,CH,GB,PT,SE,GB,US,PL,KR,HK,US,AU,IL,US,KE,DE,NL,US,TW,PL,US,GB,US,MY,LT,NL,US,IL,US,DE,US,PH,AR,IN,US,ID,DE,CA,PH,US,GB,BR,GB,PH,US,IN,CA,MX,DE,US,PT,US,AU,AR,US,DE,US,DE,CH,US,CA,KR,US,PL,US,DE,US,JP,US,MY,GB,FR,US,BR,US,HK,SG,US,IN,PH,MY,US,BE,AU,TH,IT,US,ES,US,NO,AT,IT,US,JP,US,ID,TW,GB,KR,GB,US,JP,US,CA,CO,US,PL,US,TR,IE,GB,US,CH,AU,US,FI,NL,KR,IN,US,AR,CA,CL,FR,HU,PL,IN,US,TW,NL,IN,CL,US,ES,JP,US,CL,CZ,US,GH,US,DK,RO,US,TW,US,FI,PH,US,SK,US,PH,US,IE,CH,US,IN,US,IT,DE,US,CH,TW,US,AU,DE,US,IT,US,IN,US,ID,IN,US,DE,JP,NZ,PT,US,BE,US,IN,US,IE,CA,US,TW,US,TW,US,AU,US,ID,PT,IN,IL,US,PT,NG,EG,CA,US,PH,US,HK,PT,US,NL,DK,US,PT,US,IL,US,BR,FR,US,JP,DE,US,MY,PL,IL,US,PL,DE,US,DE,US,ES,CL,DE,KR,US,DK,US,GB,ID,US,CH,IL,US,IN,ID,US,KR,GB,US,GB,CA,US,CA,AU,TW,US,RO,US,CH,IN,PH,IN,JP,DE,US,ZA,US,PT,IN,JP,FR,IE,JP,US,CH,US,CA,US,BR,IN,US,QA,IN,CH,CA,IN,QA,US,CL,CH,DE,US,DE,US,IN,AU,US,IL,US,JP,AE,US,NL,QA,AU,CA,DE,US,IN,US,PL,CH,PL,US,IT,US,QA,SG,IT,IE,US,MX,JP,US,BR,US,IL,US,IE,IT,US,PL,US,DE,US,TW,MY,HK,IN,US,IT,US,FR,US,ZA,US,FR,US,BR,ES,US,GB,US,DE,SG,PT,PE,NL,US,TW,US,IN,US,NL,DE,US,IN,US,TW,US,CH,US,DE,US,CH,US,NL,US,GB,US,DK,SG,DE,FR,US,FI,IE,US,BR,US,IE,US,NL,US,GB,NL,US,DE,US,DE,JP,US,CA,US,GB,NL,US,BE,US,BE,US,DE,US,CA,US,BR,US,IN,US,CA,US,AU,US,CH,US,NL,US,JP,US,GB,US,IL,US,ZA,US,BR,US,CL,US,ZA,US,JP,US,CH,US,CA,US,GB,US,DE,US,FR,US,SE,US,IT,US,ES,JP,US,CA,US,_,HK,US,GB,US,_,GB,US,CH,US,GB,ES,DE,US,CA,US,IE,US,NL,US,NL,US,IE,US,SG,NL,US,BR,IE,US,HK,US,IE,US,NL,US,IE,US,NL,US,IE,US,BR,US,ES,US,JP,US,DE,CA,US,CA,US,BG,DE,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,JM,US,CA,US,CA,US,CA,US,DE,US,BB,CA,US,IT,US,CA,US,CA,US,DM,_,US,BE,US,TW,US,CA,US,NO,US,IT,CO,US,IT,FR,IN,US,NL,CA,US,AU,US,_,US,AU,US,JP,US,CA,US,GB,CA,US,GB,US,SE,DK,US,SC,SE,US,CA,US,JP,US,GB,US,CA,US,CA,US,CA,US,CA,US,AU,JP,AU,IN,US,CA,US,IT,US,IT,US,IT,US,DE,US,IT,US,IT,US,NL,US,NL,UA,HK,US,UA,US,PL,US,NL,US,IT,US,KG,US,UA,US,PL,US,KG,US,NL,US,NL,US,NL,US,IT,US,NL,US,NL,US,PL,US,NL,US,AU,US,NL,US,GB,US,NL,US,NL,US,GB,US,FR,US,UA,US,PL,UA,US,AU,PL,US,UA,US,KG,US,ES,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,IT,US,UA,US,UA,US,UA,US,UA,US,IT,UA,US,UA,US,UA,US,UA,US,NL,US,UA,US,UA,US,UA,US,UA,US,UA,US,IT,US,UA,US,UA,US,UA,NL,US,UA,US,IT,US,UA,US,UA,US,UA,US,BS,US,_,US,CA,US,FR,AE,FR,DE,FR,EG,DE,NG,RU,DE,TR,NL,GB,ES,IE,IT,JP,AE,TR,RU,TR,RU,DE,RU,FR,RU,NL,TR,RU,US,NL,US,CA,US,GB,US,DE,US,CA,US,CA,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,CA,US,CA,US,_,US,CA,US,AI,US,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,VI,US,CA,US,CA,US,NL,US,CA,BD,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AI,US,CA,US,CA,US,CA,US,GB,US,DE,US,CA,US,JP,US,JP,US,BE,US,BE,US,TW,US,TW,CA,US,CA,BB,JP,US,CA,US,CA,US,CA,US,CA,US,GB,CA,US,CA,US,CA,US,NL,US,DE,_,DE,_,US,DE,US,HK,US,AU,US,AU,US,IN,US,QA,US,QA,US,DE,SG,US,JP,HK,NL,JP,US,SG,US,GB,US,CA,US,CA,US,_,US,CA,US,CA,US,CA,US,SG,US,GB,VN,US,BM,KN,US,JP,US,BE,US,JP,US,AT,US,LC,US,CA,US,PR,US,CA,US,VC,PR,US,CA,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,_,US,IN,US,IN,SE,US,NL,US,_,US,NL,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,US,PL,US,CA,US,NL,US,AU,US,NL,US,ZA,US,CA,US,CA,US,SG,US,CA,US,CA,US,CA,US,NL,US,CA,US,KZ,US,CA,US,CA,US,MX,US,CA,US,MX,US,DE,US,DE,CA,US,DE,US,SA,US,JP,US,NL,US,CA,CL,US,GB,US,JP,HK,GB,US,CA,US,IN,US,DE,US,CA,AU,NL,US,GB,SG,US,FR,US,DE,KR,US,BR,DE,BR,US,CA,US,IN,SE,US,CA,US,MX,ID,CA,AU,ES,MX,US,CA,MA,US,PL,BR,US,BR,US,CA,IN,US,JP,CA,ZA,US,JP,US,CL,IN,US,CA,US,IL,GB,CA,IL,CA,US,CA,US,CA,US,JP,US,CA,JP,CA,US,CA,US,SG,US,IN,ID,HK,US,IN,SG,IN,US,IN,US,RS,AU,IN,BR,US,HK,SG,US,NL,US,HK,US,CA,US,BR,US,IN,CA,US,CA,US,CA,US,CA,BR,US,CA,US,VG,CA,US,BR,US,GB,DE,US,_,US,DE,PL,US,AR,NL,US,AU,US,AU,US,CZ,MX,US,MX,US,JP,US,DE,JP,US,DE,GB,DE,US,GB,FR,PR,US,PR,US,PR,US,CA,US,_,US,HU,RS,US,DE,US,CA,US,IT,US,CL,US,CA,CL,US,NO,US,GB,US,AR,US,DE,US,NL,US,AU,CZ,US,CL,US,IT,US,CA,AU,NL,US,TR,US,TR,US,GB,US,DE,US,DE,US,FR,DE,US,FR,US,DE,US,DE,US,DE,FR,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,CA,US,CA,US,CA,US,IN,US,NL,US,CA,US,IN,GR,US,MX,US,MT,US,HK,SG,DE,NL,CA,US,PT,US,CA,LU,US,GB,US,GB,US,PR,US,CA,US,CA,US,CA,US,JM,US,CA,US,CA,US,JP,US,HK,GD,US,CA,US,GB,GD,NL,US,MQ,US,CA,US,CA,US,CA,DM,GD,DM,US,GB,US,CA,_,US,CA,_,US,CA,US,PR,US,CA,US,BE,US,CA,US,SE,US,CZ,US,CA,US,DE,US,DE,US,TR,US,CA,US,DE,US,NL,SG,DE,CA,US,DE,SG,GB,US,NL,US,DE,US,FR,NL,FR,US,GB,PL,US,GB,FR,GB,US,ES,US,CA,US,CA,US,MQ,CA,MF,GP,MF,HT,US,HK,SG,HK,CA,US,HK,US,AU,US,CA,US,PH,TR,GR,GB,IE,GB,AT,GB,DE,IT,LU,US,CL,AZ,NO,BE,US,GE,PR,US,GB,SK,US,GB,US,UA,NO,ES,US,CA,US,PL,US,SG,US,SE,PL,CA,US,JP,US,TW,US,JP,US,NL,US,CH,US,UA,US,ES,IT,US,ES,US,UA,US,DE,US,PL,US,ES,US,ES,US,LT,US,ES,UA,US,UA,US,UA,US,UA,US,ES,US,UA,US,UA,US,UA,US,UA,US,UA,US,ES,UA,US,LT,US,UA,US,UA,US,LT,US,UA,US,IT,UA,US,UA,US,ES,US,ES,US,CA,US,ES,UA,US,UA,US,UA,US,FR,US,UA,US,UA,US,ES,US,LT,US,LT,US,LT,US,LT,US,ES,UA,US,CA,US,NL,US,UA,US,CA,US,UA,US,UA,ES,US,FR,US,CA,US,UA,US,CA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,GB,US,LV,US,LV,UA,US,ES,US,ES,US,UA,US,UA,LV,US,FR,US,ES,FR,US,UA,US,UA,US,UA,US,IT,US,NL,UA,US,NL,UA,ES,US,FR,US,UA,US,ES,US,UA,US,IT,US,UA,US,IN,US,DE,US,LV,AU,US,AU,UA,NL,US,IN,US,UA,US,UA,US,UA,US,LV,US,LV,US,CA,US,CA,US,CA,US,CZ,CA,VG,US,VG,US,IL,US,CA,US,PR,US,CA,US,HK,GR,US,CA,US,BR,US,CA,US,CA,US,CA,US,PH,US,CA,US,CA,IE,JP,BR,US,NL,US,GI,US,CA,US,MS,AG,PR,US,CA,US,DE,IN,US,VC,US,LC,ZA,MU,KE,DJ,TZ,MZ,ZA,FR,GB,MU,KE,DJ,TZ,MZ,ZA,FR,GB,MU,NL,SE,DE,MU,KE,DJ,TZ,MZ,ZA,GB,MU,ZA,MU,NL,SE,DE,MU,KE,UG,RW,DJ,TZ,KE,MZ,ZA,FR,GB,MU,ZA,MU,ZA,MU,TZ,MU,ZA,MU,KE,ZA,MU,ZA,MU,ZA,MU,IN,NL,SE,DE,MU,AE,GB,KE,UG,MU,DJ,MU,ZA,MU,KE,ZA,MU,ZA,MU,ZA,KE,ZA,MU,ZA,MU,ZA,MU,ZA,KE,UG,RW,DJ,TZ,MZ,ZA,FR,GB,MU,ZA,MU,ZA,MU,ZA,KE,MU,ZA,MU,US,ZA,MU,ZA,MU,IN,NL,SE,DE,MU,AE,ZA,MU,ZA,MU,ZA,MU,EG,KE,MA,EG,DZ,NG,MA,KE,AO,LR,ZA,RW,MU,RW,MU,EG,ZA,MA,EG,ZA,KE,NA,ZA,MW,CI,DZ,MU,ZA,BF,NG,SS,MZ,GQ,HK,BW,ZA,SD,ZA,CN,AU,CN,IN,CN,SG,ID,BD,IN,BD,US,CN,TH,TW,CN,HK,CN,KR,SG,CN,IN,CN,TW,IN,AU,JP,CN,IN,CN,KR,TW,CN,JP,HK,JP,HK,JP,IN,CN,KR,US,CA,US,CA,GB,CA,US,CA,US,CA,AR,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,HK,US,CA,SC,GB,US,EE,TR,US,SG,US,BR,US,DE,HK,KR,US,TR,US,NL,US,DE,US,TR,IL,US,CA,US,BR,US,DE,US,AE,US,IT,US,VN,US,AU,US,DE,JP,US,HK,US,HK,US,DE,JP,US,CA,US,GB,US,JP,US,BE,US,BE,US,JP,CA,US,DE,GB,US,FR,SE,BE,PL,ES,JP,US,HK,AU,NZ,AT,IT,US,AU,HK,US,CA,US,BE,US,MY,AR,PE,ZA,US,BR,US,KE,US,IL,US,IL,MX,US,BE,BR,IL,DE,HK,IN,ES,US,JP,US,GB,US,BE,US,QA,KR,KE,TH,US,IL,TW,US,DE,US,IN,US,CA,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,HK,MX,US,BE,US,MX,US,BE,MX,US,BE,US,MX,US,BE,MX,US,IL,VN,IL,BE,CA,US,MX,JP,PH,MX,US,MX,US,JP,US,MX,US,BE,US,BE,US,CL,US,BE,US,BE,US,BE,US,BE,CA,US,BE,US,FR,US,HU,US,DE,US,VN,US,PH,RU,JP,SG,US,JP,DE,FR,AU,ES,AE,ID,NL,SG,HK,MY,TH,KR,JP,TW,IN,MX,ID,KR,ZA,US,KR,TH,IN,US,IN,US,DE,US,RU,VN,US,TW,US,AE,HK,VN,IN,US,SG,US,SG,CA,US,SG,US,CA,US,AU,ES,US,HK,DE,US,FR,US,GB,US,SE,US,AE,US,TR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,ES,US,AE,US,NL,US,NL,US,ES,US,IT,US,ES,US,JP,US,NL,US,AE,US,ES,US,NL,ES,US,AE,US,ES,US,NL,US,NL,US,UA,US,NL,US,NL,US,ES,US,NL,US,NL,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,FR,US,ES,US,FR,IT,FR,US,AE,UA,US,ES,US,FR,US,FR,US,UA,US,FR,US,FR,US,AE,US,AE,US,CY,US,CY,US,CY,US,CY,US,NZ,US,NZ,US,NZ,US,IT,US,IT,US,IT,US,IT,US,IT,US,IT,US,IT,US,IT,US,IT,US,IT,US,TW,US,IT,US,TW,US,NZ,US,FR,US,JP,US,FR,US,TW,US,CM,US,UA,US,TW,US,CA,_,US,CA,US,NL,US,CN,US,SG,US,CA,US,CA,GB,US,_,US,CA,US,CA,US,GB,US,GB,BE,US,GB,US,GB,US,GB,US,GB,US,CA,US,NL,US,CA,US,_,US,NL,US,_,US,LU,ES,US,ES,US,MY,US,ES,US,ES,US,TH,UA,ES,US,IT,US,IT,US,IT,US,CA,US,CA,US,CA,US,CA,US,CA,US,ES,US,ES,US,UA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,UA,US,FR,US,MY,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,HK,US,IT,US,ES,US,CA,US,IT,US,LU,DE,LU,NL,LU,US,CA,US,_,US,FR,US,JP,US,AU,US,JP,FR,US,IE,US,GP,US,CA,US,CA,GB,US,CA,US,BS,US,AU,ES,NL,US,IT,NL,US,FR,US,DE,US,GB,NL,US,CA,FR,US,JP,US,JP,NL,AU,DE,GB,FR,DE,JP,AU,JP,NL,DE,US,GB,NL,JP,US,FR,DE,AU,US,GB,US,JP,US,DE,US,AU,US,GB,US,CA,US,FR,US,JP,US,JP,AU,US,NL,US,CA,US,IE,ID,DE,PL,US,ID,US,IT,GB,US,AE,BR,US,BR,US,IT,DE,IT,DE,IT,DE,IT,BE,IT,DE,IT,DE,IT,DE,IT,BR,NL,US,IT,FI,GB,NL,US,DE,SG,US,ES,US,IT,SE,US,FR,US,FR,US,FR,US,FR,US,AU,US,IN,US,PE,BR,US,PH,IN,FR,IN,FR,IN,FR,US,IN,US,FR,IN,FR,US,IN,FR,IN,FR,IN,FR,US,IN,US,FR,US,FR,IN,US,IN,FR,US,IN,FR,US,DE,CA,US,BR,ES,US,IN,AU,US,CO,US,HU,US,FR,ID,US,DK,IN,US,AE,BR,DE,FI,US,IN,US,KR,US,CA,US,CA,US,BB,US,JP,US,CA,US,CA,US,CA,US,CA,US,HK,US,CA,US,AT,US,SG,FR,US,CA,US,AU,US,CA,US,ID,PH,SG,US,HK,US,DE,HK,US,KR,US,FR,US,PA,US,MY,US,TR,TH,NL,TR,NL,TR,IN,ES,BG,JP,US,IN,US,GB,TH,KR,US,BR,MY,US,JP,NL,VN,US,PH,KR,DE,ID,US,GB,SG,JP,ID,US,MY,TW,SG,US,PA,US,TH,VN,FR,BR,JP,US,KR,TW,US,PH,GB,US,IN,US,LT,TW,DE,MY,US,MY,US,MY,US,ES,US,BR,US,GB,US,VN,US,AT,US,PH,US,MY,SG,MY,US,ES,CA,MY,US,CA,US,PA,US,FR,US,IT,US,MY,US,DE,FR,DE,US,DE,US,DE,US,FR,DE,US,DE,US,DE,FR,US,CA,US,CA,US,JP,US,JP,US,CA,US,DE,US,FR,DE,FR,DE,US,CA,US,CA,US,CA,US,CA,US,FR,US,CA,US,CA,US,CA,US,CA,US,JP,US,CA,US,DE,US,CA,US,JP,SG,KR,US,NL,RU,IN,US,AU,GB,BR,ES,JP,US,ZA,ES,NL,US,BR,US,SG,US,GB,US,IN,US,FR,NL,DE,PT,IT,DK,HR,RU,HU,IQ,HU,LU,HU,US,LU,CH,LU,HU,DE,FR,IT,JP,NL,DK,US,CZ,ES,DE,CZ,US,PT,GB,HU,CH,HU,LU,RU,MQ,MF,MQ,RU,BH,RU,IL,GB,RU,IT,GB,UA,DE,KE,ZA,GB,NO,GB,US,GB,IE,RU,ES,NO,DE,AT,RU,AM,FI,RU,GR,IT,BE,RU,NO,RU,JE,GB,RU,DE,TJ,GB,FI,AL,ES,RU,FI,MK,ES,VG,GB,DE,RU,GB,PL,DE,GB,FR,GB,HU,FI,IT,FR,IT,CH,AL,AT,KZ,FR,IT,CZ,BE,NL,GB,LU,AT,NL,FR,RU,ES,IM,GB,IM,GB,DK,GB,NL,LK,GB,IT,NO,GB,DE,US,AT,UA,NL,UA,CH,IT,ES,CO,GB,DE,GB,DE,GB,CH,FI,FR,FI,RU,DE,IT,IE,DE,GB,ES,GB,IR,AT,DE,IT,RU,NL,RU,DE,KZ,PT,NL,DK,SK,DE,GB,UA,GB,BE,GB,US,CH,NL,DE,GB,FR,GB,BE,NL,LU,GB,RU,NL,RU,CZ,DE,KG,IT,NL,RU,NL,RU,NL,RU,TR,DE,FI,CZ,GB,NL,RS,RU,NL,ME,US,DE,US,UA,US,NL,UA,DE,NL,RU,IN,KZ,RU,NL,UA,BE,NO,NL,IR,GB,RU,DE,RU,DE,GB,IT,LV,GB,RO,DE,FR,DE,AT,GB,IN,GB,FR,GB,IT,RU,CZ,US,PS,SE,BE,GB,SE,US,YE,HU,TJ,FR,PL,RU,SK,RU,NO,GB,RU,AE,IR,GB,CZ,DE,AM,TJ,LB,DE,IT,RU,CZ,GB,DE,RU,DE,FI,SE,FI,RU,IE,CZ,SA,DE,UA,BE,DE,RS,RU,FR,RU,RS,BA,RS,BG,RS,GB,NL,DE,UA,IR,NL,DE,UZ,US,UZ,RU,GB,EE,RU,DE,US,GB,UA,RS,PL,RO,RU,PL,UA,RU,CZ,NL,IT,IR,RU,PL,RU,PL,RU,DE,IL,PL,RU,PL,GB,RU,PL,RU,PL,CH,RU,RO,SE,DE,GB,AL,SI,GT,US,NL,LU,BR,AL,UA,BG,IT,HU,CZ,RU,SE,DK,SE,DK,SE,DK,SE,DK,CA,SE,DK,GB,DK,SE,RU,LU,AM,RU,MY,HK,US,IN,JP,BA,ES,US,BA,BE,US,CY,GE,GB,DE,PL,FI,BE,CH,RU,FR,IT,CH,FR,IE,RU,NL,RU,RS,NL,US,SG,PL,GB,BG,ES,EE,FI,SE,IR,MY,CH,TR,AT,UA,JP,IT,GR,JP,UA,DE,MD,UA,ES,DE,NZ,IT,NL,GB,IQ,DE,NL,CZ,RO,RU,NL,RU,NL,RU,US,FI,NL,RU,DE,FI,MD,NL,RU,FI,RU,CZ,JO,FI,RU,UA,CZ,GB,IR,NO,UA,DE,IR,NO,NL,GB,RU,DE,RU,GB,LV,RU,UA,LB,HU,IR,JP,IR,GB,FR,GB,IN,NO,CA,KR,CA,IN,HK,GB,BR,CA,GB,BH,GB,CA,DO,LU,CY,RU,SG,US,SG,US,SG,US,SG,AU,US,AU,RU,AD,RU,GB,RS,IT,RU,LU,FR,GB,LU,DE,SG,RU,SG,RU,DE,GB,FI,RU,BG,US,IE,RS,LU,US,RS,US,RS,ZA,RS,SK,RS,AT,BG,GB,BG,MK,BG,MK,BG,UA,US,NL,US,TR,US,NO,UA,RS,FR,RE,FR,IR,US,IR,TR,FR,IR,IN,IR,BE,IR,BE,IR,BE,IR,NL,IR,AU,IR,NL,RU,IR,US,IR,RU,IR,GB,BE,IR,GB,SI,GB,FR,GB,DE,GB,NL,GB,RU,CZ,NL,CZ,AU,JP,DE,HK,BE,SG,HK,DE,HK,DE,RU,SE,RU,IE,DE,IR,PL,RU,AT,BY,RU,AZ,IQ,RU,SI,BE,GB,BG,IE,BG,IL,RU,BH,UA,IR,NO,BA,KZ,NO,FI,RU,RO,NL,RO,DE,RU,FI,CZ,CH,RU,BA,SA,RO,JP,US,KZ,SA,RO,ES,RU,IT,RU,GB,JP,GB,AE,GB,AT,GB,NO,DE,RU,GB,RU,SA,RU,MC,AL,RU,TR,BG,BR,LB,DE,RU,NL,DE,RU,MN,DE,NL,RU,DE,RU,DE,NL,RU,US,RU,NL,US,NL,DE,RU,TR,RU,DE,LV,AZ,NL,GE,RU,PL,RU,GB,BA,GB,NL,GB,HK,GB,JP,GB,JP,GB,BA,JP,GB,BE,RO,GB,BE,GB,AT,GB,IQ,JP,AE,GR,NO,GB,SI,CZ,RU,MD,IL,RU,NO,FR,RU,DE,RU,PL,RU,PL,RU,PL,RU,KG,TJ,FI,LV,AZ,ID,HR,EE,PL,RU,PL,ES,RU,GB,RU,GB,UA,RU,PL,SE,RU,PL,RU,PL,RU,RO,RU,PL,FR,RU,SE,RU,PL,DE,UA,PL,FR,PL,RU,LV,UA,RU,RO,FR,RU,RS,TR,RU,DK,RU,PL,HU,PL,DE,BG,DE,NO,BG,GB,MT,DK,PL,RU,YE,NL,SE,NL,IT,NL,US,AU,NL,JP,UA,IR,KZ,RU,NL,KG,RU,UA,RU,CZ,NL,GI,IM,IE,FR,IE,GI,SI,DK,RU,CH,GB,NO,CH,FR,LU,GB,IR,US,GB,US,CA,HK,US,AT,US,RU,FR,MQ,GB,FI,FR,DE,NO,US,DE,SG,IT,AE,BA,GE,PL,RU,UA,ES,US,NL,FR,CZ,RU,RO,UA,IT,IQ,LV,ES,RU,GB,AZ,CH,DE,US,PH,US,SC,US,DE,FR,MD,NL,FR,NL,DE,NL,CH,AZ,DE,NL,RU,GB,NL,MD,SE,GB,LT,CZ,RU,SK,ES,CZ,FR,ES,RU,KZ,UA,SA,RS,RU,NL,PL,NL,FR,CH,AU,NL,IT,US,IS,SA,AU,FI,HK,NL,IR,RU,GB,RS,PL,AT,PL,NL,IL,RU,PL,UA,DE,NL,DE,RO,IT,NZ,SG,GB,RO,PL,RU,NL,RU,UA,RO,RU,UZ,FR,IQ,CZ,GB,TR,DE,GB,RU,SE,IR,RU,IL,RU,DE,RU,HR,UA,ES,RU,GB,ME,SE,TR,UA,RU,KZ,LV,RU,SK,IR,DE,IQ,RU,IR,ES,DE,TR,DE,SE,IR,DE,GB,IR,US,GB,AT,DE,IT,DE,US,GB,ES,GB,DE,GB,IR,ES,IR,DE,SG,IR,US,DE,IR,AU,ES,IR,DE,PL,CA,CZ,GB,IR,NL,ES,PL,IT,NL,IT,GB,ES,DK,FI,IE,FR,RU,ES,DE,IT,CZ,GB,BG,PS,NL,DE,GB,ZA,RU,FR,HU,ES,TR,NL,FR,PL,RU,NO,GB,LB,BE,NL,US,GB,NO,NL,NO,CZ,SM,PL,IT,BE,KZ,GB,IT,DE,NL,CZ,RU,CH,BE,CH,US,RS,MD,RU,KZ,RU,IT,RU,DE,FR,RU,IL,RU,NL,CZ,IT,ES,TR,FR,US,NL,GB,CH,IQ,GR,ES,IE,DE,GE,DE,RU,IT,AT,RU,FR,GB,DE,GB,ES,DE,US,GB,AL,FI,DE,CZ,UA,ES,RU,NL,DE,NL,DE,LT,NL,FR,RU,NL,DE,NO,SM,NO,GB,ES,DE,GB,US,GB,IT,RU,SE,CZ,RU,AZ,GB,SE,US,DE,US,RU,DE,EE,TR,JP,IT,AL,TR,UA,RU,US,BE,RU,NL,RU,SK,BE,US,DE,GB,IT,DK,ES,GB,US,FR,US,JP,GB,US,ES,US,HK,FR,US,GB,FR,RU,GB,NL,GB,BA,CH,NL,UA,RU,UA,RU,AZ,DE,RU,IT,DE,JO,NL,RU,FR,IT,CZ,DK,GB,RU,KZ,RU,IT,SE,SY,KR,US,IR,MY,NG,HK,FR,DE,JP,NL,SK,NO,BG,AR,LU,DK,CZ,GE,RU,IR,AZ,KZ,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,CZ,GB,FR,RU,NL,RU,SE,NL,US,RU,NL,RU,DE,FR,DE,SI,DE,RU,NO,IT,FI,PL,GR,PL,CN,RS,ME,RS,GB,US,NO,RU,KZ,UZ,RU,PH,JP,KZ,RU,NL,CZ,RU,MD,RU,UZ,RU,KZ,RU,SE,LV,NL,KZ,RU,KZ,RU,KZ,RU,KZ,RU,KZ,GB,RU,MD,UZ,RU,KZ,GB,RU,KZ,RU,UA,RU,CZ,RU,UA,RU,GB,DE,UA,RU,IL,RU,UA,RU,IE,JP,HK,JP,MY,JP,KR,JP,PH,IN,AU,ID,WS,AU,JP,KR,CN,KR,CN,AU,TW,AU,NP,PK,CN,NZ,AU,KR,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,KR,VN,ID,FJ,KR,PK,CN,US,IN,AU,US,CA,IN,CN,NZ,JP,AU,KR,JP,IN,US,AU,NP,JP,CN,_,ID,JP,VN,KR,CN,TH,JP,AU,JP,IN,JP,ID,JP,TW,JP,PH,JP,CN,JP,PH,CN,JP,KR,CN,JP,MY,KH,JP,CN,KR,BD,CN,AU,KR,ID,TH,CN,IN,AU,JP,CN,HK,CN,TH,LA,TH,HK,CN,JP,NZ,KR,PH,HK,PH,JP,HK,CN,ID,HK,JP,SG,KR,JP,ES,ID,AU,KR,CN,PH,JP,KR,PK,CN,JP,ID,AU,CN,JP,MY,JP,TH,HK,TH,KR,CN,KR,JP,CN,TH,JP,IN,_,JP,IN,JP,_,KR,IN,CN,HK,CN,AU,NZ,IN,CN,AU,JP,AU,CN,IN,CN,JP,CN,ID,KR,_,AU,JP,AU,NZ,AU,JP,HK,US,HK,PH,IN,AU,PK,JP,AU,IN,JP,SG,US,DE,JP,US,SG,US,DE,JP,SG,HK,US,DE,KR,FR,US,FR,JP,FR,JP,SG,US,DE,JP,SG,US,DE,SG,US,JP,HK,PH,IN,KH,IN,KH,CN,AU,YE,CL,ZA,MX,TH,SG,BR,SG,TH,SG,TH,AU,US,AU,US,ID,SG,AU,CA,AU,SG,CA,GB,AU,CN,US,CN,US,CN,JP,SG,KR,JP,NZ,VN,CN,AU,MY,TW,ID,KH,JP,CN,KR,HK,JP,ID,PH,CN,US,CN,NL,CN,US,CN,US,CN,US,CN,PK,ID,JP,NZ,AU,NZ,TW,CN,TW,TH,CN,JP,PK,JP,MY,BG,HK,MY,JP,IN,KH,PH,SG,KR,CN,IN,VN,HK,JP,IN,PK,ID,AU,GU,TH,US,HK,KR,SG,_,HK,JP,CN,IN,ID,SG,ID,JP,CN,KR,KH,AU,IN,AU,CN,AU,IN,AU,IN,JP,AU,IN,JP,HK,JP,NP,CN,PK,SG,CN,JP,PH,TW,IN,JP,AF,AU,IN,CN,JP,CN,KR,JP,CN,TW,CN,JP,CN,JP,KR,AU,BD,SG,CN,HK,KR,ID,SG,MY,AU,HK,JP,HK,SG,HK,SG,CN,IN,CN,IN,TH,SG,LK,JP,AU,CN,KR,CN,ID,CN,JP,IN,JP,PH,CN,AU,MY,SG,AU,IN,HK,CN,TW,JP,TW,CN,US,CN,US,CN,JP,MN,KR,VN,KR,CN,HK,CN,KR,VN,TW,ID,PH,TW,ID,TW,JP,ID,SG,ID,JP,SG,IN,CN,TW,KR,JP,ID,SG,JP,KR,NZ,AU,NZ,AU,NZ,VN,IN,CN,IN,CN,HK,KR,TW,IN,TW,TH,LA,TH,HK,KR,CN,KR,IN,LK,JP,KR,BD,MY,GB,HK,SG,HK,PH,HK,JP,CN,JP,VN,JP,MY,KR,JP,KR,NL,JP,NL,JP,NL,JP,GB,NL,GB,NL,GB,KR,ID,JP,AU,SG,IN,KR,AU,TH,KR,CN,IN,KR,PH,VN,PH,SG,PH,KR,AU,NZ,TW,HK,VN,HK,AU,KR,ID,SG,ID,KR,CN,KR,SG,HK,BD,ID,SG,ID,AU,MY,CN,IN,AU,MY,VU,SG,CN,PH,AU,IN,HK,AU,ID,NC,US,NC,US,FJ,VN,AU,_,ID,PH,TW,JP,GB,US,GB,JP,KR,AU,JP,IN,TW,NC,SG,TW,HK,NZ,BD,CN,TH,SG,JP,VN,MY,CN,HK,US,JP,US,JP,US,JP,US,JP,US,JP,AU,US,HK,US,KR,US,SG,US,SG,SI,SG,SI,SG,SI,SG,SI,SG,US,HK,US,HK,US,JP,SG,US,HK,US,SG,US,SG,AU,SG,US,SG,US,JP,US,JP,US,KR,AU,JP,SG,HK,SG,KR,SG,AU,KH,HK,KR,IN,ES,IT,US,SG,US,IN,DE,IN,NL,DE,US,IN,US,IN,DE,AU,SG,MY,US,CN,JP,CN,AU,JP,VN,MO,HK,MO,AU,HK,KR,AU,MY,AU,SG,JP,CN,KR,JP,CN,_,JP,TH,CN,KR,LK,CN,JP,ID,JP,GB,HK,JP,HK,JP,GB,JP,GB,KR,PH,AU,KR,VN,JP,TW,CN,JP,KR,CN,NZ,KH,KR,CN,JP,VN,HK,VN,ID,IN,VN,SG,ID,VN,JP,TW,ID,CN,BD,SG,PK,ID,MY,IN,ID,CN,ID,US,HK,KR,JP,IN,CN,TW,AU,JP,SG,JP,PK,JP,AU,PF,PH,KR,NZ,CN,ID,HK,AU,MY,AU,JP,KR,NP,CN,IR,ES,PK,US,PK,US,PK,JP,PK,CA,PK,CN,JP,ID,PH,IL,PH,HK,PH,AF,HK,US,HK,BD,HK,PH,SG,CN,MY,CN,PS,ID,AU,PH,TW,IN,JP,AU,CN,JP,BD,ID,JP,SG,ID,SG,ID,AU,PH,CN,HK,CN,JP,CN,KR,CN,HK,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,SG,ID,JP,NZ,TW,HK,TW,CN,KR,_,SG,IN,HK,TW,IN,HK,KR,TW,KR,AU,IN,ID,AU,KR,BD,KR,CN,AU,JP,AU,JP,KR,IN,AU,US,AU,NZ,AU,US,NZ,JP,IN,ID,IN,TW,JP,KR,CN,US,CN,DE,CN,JP,NC,IN,KR,SG,KR,AU,ID,CN,IN,CN,KR,PH,TH,CN,ID,KR,NZ,US,NZ,ID,JP,CN,KR,CN,KR,US,KR,JP,AU,CN,KR,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,JP,CN,SG,CN,ID,TH,JP,BD,ID,LA,SG,JP,KR,AU,KR,BD,TH,CN,MY,NZ,IN,JP,ID,HK,ID,HK,GB,HK,BD,JP,NZ,HK,KH,JP,CN,TW,CN,TW,KR,JP,KR,ID,CN,US,HK,NL,SG,US,CN,ID,AU,PF,JP,CN,AU,NZ,AU,SG,PH,KR,JP,CN,HK,AU,IN,ID,JP,GU,IN,JP,CN,AU,PH,TW,JP,SA,KW,EG,KW,EG,ID,CN,KR,HK,TW,HK,SG,TW,HK,TW,HK,ID,KR,CN,KR,CN,JP,TR,TW,JP,CN,JP,AU,KR,TH,JP,SG,CN,JP,KR,AU,IN,ES,CA,IN,ES,CN,HK,PK,TW,JP,TW,PH,SG,TW,CN,AU,JP,SG,TH,KR,AU,CN,IN,KR,IN,NZ,JP,BD,ID,JP,IN,AU,KR,VN,TW,CN,LA,MV,KR,BD,IN,ID,VN,JP,CN,PH,ID,JP,MY,AU,US,AE,US,HK,US,JP,TW,KR,CN,KR,TH,KR,IN,CN,IN,JP,IN,SG,IN,SG,IN,CN,AU,CN,AU,ES,IN,JP,ID,IN,JP,HK,NZ,JP,NC,KR,BD,JP,AU,MY,KR,JP,AU,MY,SG,VN,PH,CN,KR,HK,IN,KR,JP,MY,JP,VN,AU,KR,JP,TW,AU,CN,ID,SG,ID,PS,IN,JP,US,ES,PK,US,GB,US,GB,CA,GB,SG,CA,FR,PK,GB,US,PK,CA,GB,SG,US,PK,SE,PK,US,JP,CN,JP,TW,AU,JP,AU,HK,SG,AU,KH,HK,AU,KR,ID,TH,HK,TH,KR,IN,AU,JP,ID,JP,CN,IN,PK,AU,CN,IN,BD,KR,MY,ID,IN,PH,ID,IN,JP,KR,MN,JP,NZ,AU,NZ,CN,IN,SG,IN,ID,CN,AU,CN,PK,SG,AU,SG,HK,TW,SG,HK,JP,SG,AU,KR,SA,KR,SG,HK,SG,IN,SG,AU,HK,JP,SG,HK,SG,MY,JP,CN,JP,BD,ID,SG,NZ,LK,SG,CN,SG,CN,KR,HK,CN,DE,ID,TW,JP,AU,HK,AU,IN,SG,JP,NZ,JP,IN,PH,SG,CN,PK,CN,JP,ID,BD,CN,TH,TW,CN,JP,CN,US,IN,US,GB,NL,US,PH,HK,PH,IN,AU,JP,NL,SG,KR,HK,IN,NP,ID,HK,AU,_,NZ,PH,KR,JP,GU,KR,IN,VN,CN,TH,ID,SG,ID,CN,GB,BD,NP,JP,ID,KR,IN,ID,CN,_,CN,JP,PK,IN,CN,JP,KR,CN,SG,TW,CN,KR,JP,NZ,CN,PH,HK,TH,AU,HK,AU,NZ,CN,PK,NZ,JP,ID,CN,JP,ID,KR,NP,IN,JP,HK,JP,HK,JP,HK,JP,HK,JP,US,AU,HK,JP,HK,JP,HK,JP,CN,PH,HK,PH,NZ,JP,KR,JP,CN,VN,CN,VN,TW,JP,AU,IN,SG,IN,KR,CN,SG,MO,CN,VN,KR,US,KR,JP,IN,TH,KR,MY,HK,US,HK,ID,CN,AU,ID,AU,BD,JP,CN,MY,ID,JP,AU,IN,PK,CN,JP,HK,IN,HK,AU,HK,IN,HK,AU,SG,CN,KR,IN,JP,ID,CK,AU,IN,AU,IN,NZ,CY,AU,JP,KR,DE,CN,ID,CN,NZ,BD,AU,BD,HK,AF,PK,KR,IN,HK,TH,US,IN,US,AT,MY,IN,HK,LK,CN,BD,IN,BD,HK,US,AF,HK,ID,ES,CN,HK,ID,KH,LK,SG,ID,BD,MX,AR,SG,NO,HK,BD,PK,JP,TW,SG,AU,TH,HK,MN,PK,BD,JP,US,HK,IN,HK,PH,TH,HK,JP,TH,AU,BD,MM,PK,IN,US,IN,US,IN,NZ,PK,SE,NZ,HK,LK,AU,AF,MM,ID,IN,SG,HK,ID,AU,IN,PH,AU,ID,LK,MY,BD,CN,KR,VN,AU,ID,TW,ID,BD,HK,KH,CN,IN,BD,_,US,AU,JP,CN,JP,ID,PK,HK,CN,ID,CN,TW,JP,KH,CN,JP,SG,JP,SG,AU,PH,AU,CN,CA,SG,HK,SG,IN,SG,CN,JP,CN,AU,TW,CN,AU,CN,NZ,HK,SG,MY,SG,HK,US,HK,TW,PH,VU,HK,US,TW,PH,HK,CN,JP,ID,CN,ID,CN,AU,KR,CN,VN,CN,KR,HK,ID,JP,SG,HK,AU,JP,HK,SG,HK,SE,HK,AU,NL,HK,US,HK,JP,HK,MM,HK,JP,US,HK,US,HK,GB,PK,FR,TW,AU,PK,WF,SG,ID,AU,JP,KR,JP,KH,GU,SG,KR,CN,JP,TH,CN,BE,US,BE,US,BE,US,BE,US,BE,US,CN,KR,JP,PK,ID,CN,KR,AU,ID,MY,NZ,AU,CN,KR,ID,JP,KR,AF,NL,SE,NL,JP,TH,HK,JP,AU,IN,MM,_,TW,CN,KR,JP,SG,PH,JP,BD,AU,CN,JP,CN,AU,ID,CN,IN,CN,PK,ID,AU,ID,JP,ID,CN,ID,CN,ID,CN,BD,MH,TW,_,ID,_,SG,HK,IN,CN,HK,JP,ID,JP,US,JP,VN,JP,AU,CN,NZ,BD,JP,HK,IN,TW,ID,AF,IN,PH,SG,CN,JP,KR,CN,SG,AU,IN,AU,JP,HK,IN,SG,KH,NZ,AU,JP,IN,HK,CN,ID,TH,NP,MY,SG,AU,NZ,FR,US,SG,AU,JP,VN,CN,KR,CN,HK,CN,IN,JP,CN,HK,CN,GB,BR,US,SG,CN,SG,CN,HK,US,HK,CN,HK,_,CN,JP,TH,SG,TH,SG,VN,JP,CN,KR,CN,AU,JP,CN,KR,NZ,KH,BD,GB,VN,CN,ID,AU,JP,NZ,JP,CN,JP,IN,PH,UZ,AU,CN,NZ,KR,ID,KR,NP,IN,JP,ID,IN,CN,NZ,IN,ID,SG,ID,SG,ID,SG,ID,SG,ID,HK,ID,TW,MY,VN,HK,CN,JP,AU,IN,JP,BT,HK,IN,CN,SG,JP,SG,AU,JP,KR,PK,HK,BN,JP,HK,SG,HK,KR,JP,KR,JP,KR,JP,KR,VN,PK,AU,JP,KR,US,KR,HK,TW,PS,AU,HK,AU,MY,HK,SG,MY,SG,MY,HK,JP,CN,AU,CN,AU,KR,CN,ID,AU,SG,KR,HK,TW,HK,PH,HK,PH,HK,SG,PH,HK,SG,HK,CN,NZ,TW,JP,IN,ID,AU,ID,JP,TW,TH,KR,JP,CN,BD,NC,CN,US,CN,US,CN,US,CN,US,CN,IN,CN,US,CN,SG,CN,HK,CN,RU,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,CN,JP,SG,JP,SG,JP,SG,JP,HK,JP,HK,CN,TH,DE,JP,TW,GB,US,KR,TH,PH,US,VN,HK,JP,SG,JP,SG,JP,SG,JP,HK,CN,HK,CN,JP,SG,JP,PH,CN,KR,TH,TW,CN,SG,CN,AU,CN,KR,TH,AU,TH,SG,PH,AU,SG,AU,SG,AU,SG,AU,SG,AU,IN,SG,AU,SG,AU,SG,KR,SG,AU,SG,AU,SG,IN,AU,SG,AU,SG,AU,SG,AU,SG,IN,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,HK,SG,HK,SG,KR,NZ,HK,IN,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,TW,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,PH,SG,US,PH,SG,PH,SG,NZ,MY,SG,AU,SG,AU,TH,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,IN,SG,IN,SG,AU,SG,AU,SG,AU,SG,JP,CN,KR,CN,TW,KR,JP,CN,JP,CN,JP,CN,PH,ID,AU,ID,BT,CN,MX,HK,AR,BR,HK,BR,CL,SG,PE,IE,BR,HK,TH,BR,ZA,TH,AR,BR,HK,AU,HK,AU,HK,AU,HK,AU,HK,AU,HK,AU,HK,AU,HK,AU,HK,CN,AU,_,JP,BD,ID,JP,AU,ID,AU,PL,IT,US,AU,UZ,AU,SI,AU,MY,HK,US,AU,ES,AU,TH,SG,AU,KH,ZA,GB,DE,HK,SG,HK,AU,KH,SG,AU,PK,US,IN,AU,SG,TW,NZ,JP,AU,NZ,AU,_,AU,KH,AU,JP,ID,CN,JP,_,BD,_,VN,TW,CN,KR,AU,KR,AU,VN,AU,IN,HK,IN,KR,VN,BD,ID,SG,JP,VN,CN,JP,CN,JP,AU,JP,US,JP,CN,HK,SG,HK,SG,HK,KR,HK,KR,IN,HK,SG,HK,NZ,JP,TW,BD,CN,PK,KR,JP,TH,JP,IN,SG,US,TH,US,HK,JP,SG,AU,IN,US,PH,HK,US,TW,CN,AU,SG,KR,CN,HK,CN,HK,CN,BD,MN,AU,MY,CN,AU,SG,ID,GB,MY,AU,IN,HK,TH,CN,HK,IN,KR,SG,CN,IN,CN,TH,JP,HK,ID,JP,AU,NZ,AU,NZ,AU,NZ,JP,CN,SG,KR,CN,KR,JP,HK,AF,JP,TH,CN,PH,_,JP,CN,TH,HK,JP,PK,JP,AU,KR,JP,PK,SG,KR,SG,CN,JP,TW,TH,AU,KR,TW,CN,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,HK,SG,US,SG,US,HK,SG,US,SG,HK,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,HK,SG,HK,SG,US,SG,AU,JP,KR,IN,VN,AU,JP,CN,ID,KH,JP,CN,PH,CN,JP,CN,MY,ID,JP,MY,ID,MY,TH,PH,CN,BD,IN,BD,AU,BD,JP,KR,CN,JP,KR,JP,IN,SG,IN,US,IN,CN,PK,BN,IN,CN,_,TH,_,TH,_,TH,_,NZ,HK,AE,ES,TW,KR,AU,IN,SG,JP,CN,JP,CN,KR,NZ,HK,NZ,AU,JP,AU,IN,JP,CN,SG,LK,ID,NZ,HK,IN,FJ,JP,TM,CN,KR,ID,JP,KR,ID,HK,JP,HK,CN,AU,JP,AU,CN,ID,US,FM,ID,HK,IN,ID,AU,IN,PG,CN,HK,CN,HK,CN,AU,CN,PH,AU,PH,KR,JP,ID,JP,HK,AU,SG,JP,GU,HK,SG,JP,IN,SG,HK,JP,IN,AU,IN,AU,TH,SG,ID,IN,AU,CN,BD,SG,MY,KR,JP,BD,VN,JP,CN,IN,CN,JP,PH,CN,JP,VN,IN,VN,CN,KR,JP,CN,AU,CN,JP,IN,JP,AU,IN,HK,PH,BD,HK,IN,NZ,ID,NP,JP,CN,JP,CN,TW,CN,NZ,JP,CN,KH,HK,NZ,AU,NZ,KR,CN,JP,CN,JP,IN,NZ,AU,IN,AU,CA,AU,VN,MY,IN,JP,IN,SG,IN,SG,IN,SG,IN,SG,IN,SG,IN,SG,IN,SG,IN,SG,IN,SG,IN,HK,IN,SG,IN,SG,IN,SG,IN,SG,MY,KR,JP,CN,KR,AU,ID,CN,HK,CN,AU,CN,JP,_,KR,PH,KR,JP,CN,SG,CN,AU,CN,PK,IN,BD,MM,_,CN,HK,IN,HK,AU,US,CN,IN,PH,IN,CN,KR,ID,JP,KR,ID,TW,JP,_,VN,TW,AU,SG,KR,CN,ID,PK,CN,AU,SG,CN,KR,PH,AU,HK,MM,HK,CN,GB,SG,HK,KR,CN,KR,GU,CN,JP,CN,IN,JP,ID,PH,CN,KZ,CN,HK,SG,HK,SG,HK,SG,HK,JP,HK,CN,KR,CN,NZ,CN,KR,AU,CN,NZ,JP,KR,CN,NZ,US,AU,PK,US,GB,HK,AU,CN,AU,HK,AU,ZA,AU,HK,CN,AU,TH,US,JP,PH,NZ,ID,SG,ID,SG,ID,JP,ID,SG,AF,JP,KR,CN,JP,ID,AU,SG,IN,SG,IN,SG,IN,SG,AU,HK,MN,ID,KR,CN,KR,JP,MY,AU,MY,KR,PH,AF,SE,AF,AU,BG,AF,US,MX,US,DK,SE,AU,US,KR,AU,HK,KR,CN,AU,IN,BD,KR,JP,CN,JP,AU,_,AU,SG,CN,HK,CN,AU,CN,IN,CN,KR,TW,KR,CN,TH,KR,MY,KR,CN,JP,PH,HK,PH,CN,HK,CN,HK,CN,HK,CN,HK,CN,HK,US,CN,US,DE,US,DE,US,DE,US,DE,HK,CN,HK,CN,HK,US,ZA,TH,RU,MX,CN,HK,CN,PH,CN,MY,VN,TH,IN,VN,IN,JP,HK,CN,_,CN,IN,CN,HK,VN,IN,TW,ID,CN,TH,HK,IN,MM,BD,IN,PK,ID,BD,IN,CN,SG,CN,HK,CN,IN,JP,KR,CN,KR,AU,JP,AU,PH,ID,JP,PK,ID,_,JP,IN,CN,PH,SG,PH,NZ,CN,IN,TW,AU,BD,JP,AU,IN,KR,AU,JP,_,TW,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,KR,CN,AU,IN,BD,ID,SG,ID,JP,CN,AU,NZ,AU,VN,IQ,_,JP,AU,CN,HK,CN,HK,CN,TW,CN,TW,JP,ID,KR,TW,AU,JP,HK,CN,HK,JP,CN,KR,VN,PK,ID,MY,AU,JP,ID,KR,AU,JP,KR,JP,CN,ID,BD,IN,TH,TW,PH,CN,JP,TW,AU,GB,AU,JP,BD,JP,KR,JP,HK,JP,AU,PH,JP,SG,JP,HK,AU,SG,JP,SG,JP,AU,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,CN,KR,TH,CN,IN,CN,JP,CN,_,CN,AU,KR,ID,IN,AU,JP,CN,ID,AU,CN,JP,HK,JP,ID,TW,AU,NZ,JP,VN,MN,AE,HK,AU,HK,AU,HK,CN,AU,TW,AU,JP,KR,AU,JP,KR,CN,JP,CN,BD,HK,CN,ID,CN,JP,MM,SG,JP,HK,JP,HK,JP,AU,JP,AU,JP,AU,IN,JP,SG,TW,KR,JP,NZ,PH,JP,IN,SG,HK,IN,TW,JP,IN,SG,JP,AU,SG,AU,SG,AU,SG,AU,SG,KR,SG,PH,US,PH,SG,JP,SG,PH,SG,IN,SG,IN,AU,NZ,TW,KH,NZ,KR,IN,JP,TW,MN,US,HK,MN,US,MN,KR,LK,CN,IN,JP,TW,MY,JP,KR,BD,TW,JP,CN,TW,JP,HK,AU,CN,VN,KR,JP,BD,SG,CN,JP,TW,PF,AU,CN,JP,AU,TW,CN,RU,ID,JP,TW,VN,KR,HK,IN,TW,GB,HK,CN,IN,CN,AU,JP,KR,JP,TW,KR,CN,AU,NZ,AU,KR,JP,MY,SG,ID,GB,AU,US,AU,GB,SG,CN,AU,CN,JP,AU,JP,HK,JP,KR,TW,KR,ID,KR,IN,ID,AU,JP,AU,SG,HK,IN,JP,CN,BD,PK,ID,AU,HK,PH,CN,NZ,JP,KR,JP,IN,CN,IN,JP,BD,KH,HK,KH,KR,TW,KR,CN,HK,IN,BD,AU,SG,PH,CN,MY,IN,CN,KR,CN,MV,IN,JP,BD,CN,PH,WS,CN,HK,JP,AU,ID,JP,CN,TW,CN,JP,KR,CN,BD,JP,KR,AU,MN,AU,MN,IN,HK,TW,CN,AU,KR,JP,KR,JP,LK,ID,SG,ID,SG,ID,CN,IN,TW,CN,TH,CN,TH,JP,HK,JP,IN,AU,CN,KR,CN,_,KR,TW,IN,BD,ID,IN,JP,MM,HK,ID,MY,BD,AU,HK,PH,_,NZ,TH,BD,_,MY,ID,SG,AU,US,PK,BD,HK,US,NL,JP,HK,_,IN,ID,BD,PH,TW,NZ,IN,BD,AU,JP,IN,JP,IN,JP,HK,KR,NZ,_,IN,AU,BD,MO,IN,NZ,US,BD,JP,BD,HK,MM,ID,IN,CN,ID,JP,KR,CN,HK,AU,KR,NZ,HK,JP,ID,AU,PH,JP,IN,KR,IN,KR,TW,HK,KR,TW,HK,GB,FR,DE,NL,US,SG,MY,JP,AU,SG,CN,PH,NZ,BD,LK,IN,TW,MY,CN,JP,AU,PH,CN,JP,KR,CN,TW,PK,IN,CN,JP,CN,TH,CN,IN,ID,JP,NP,CN,LK,JP,KR,CN,JP,AU,JP,KR,CN,SG,ID,IN,KR,JP,KR,JP,CN,HK,CN,KR,BR,IE,BR,SG,TH,TR,SA,MY,PH,JP,CN,JP,PH,AU,KH,CN,IN,JP,US,FJ,JP,CN,KH,JP,SG,HK,SG,HK,SG,TW,HK,TW,AU,TW,JP,TH,TW,FM,KH,ID,TH,PK,AU,CN,BD,JP,TW,JP,KR,CN,TH,IN,CN,KR,JP,KR,JP,CN,AU,TW,IN,CN,AU,MY,JP,NZ,JP,CN,ID,IN,KR,JP,TW,SG,NZ,IN,HK,SG,JP,TH,VN,NZ,AU,NZ,TH,VN,AU,US,IN,PH,MN,ID,SG,ID,HK,MY,JP,CN,AU,CN,KR,HK,CN,US,JP,AU,CN,KR,ID,MY,JP,KR,MV,KR,CN,NZ,SG,KR,MY,KR,NZ,KR,TW,KH,KR,CN,JP,KR,PH,HK,KR,MY,TW,JP,CN,PG,JP,CN,KR,SG,CN,HK,JP,AU,SG,JP,IN,CN,NZ,JP,KH,HK,CN,GB,IN,CN,AU,KR,JP,PH,JP,AU,KR,JP,IN,TH,JP,HK,MO,HK,MO,HK,MO,HK,MO,JP,KR,CN,JP,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,HK,AU,SG,US,SG,AU,SG,AU,SG,JP,SG,AU,SG,JP,AU,SG,JP,SG,JP,SG,US,IN,SG,AU,SG,AU,SG,AU,SG,AU,SG,AU,KR,VN,JP,CN,HK,KR,_,PH,KR,CN,GB,HK,GB,AU,VN,US,AU,IN,PK,ID,IN,KR,TW,JP,AU,JP,AU,IN,AU,CN,IN,JP,CN,KR,ID,AU,NZ,AU,CN,JP,CN,JP,KR,JP,CN,HK,CN,HK,CN,KR,ID,KR,PK,AU,KR,CN,PH,VN,CN,ID,SG,ID,AU,AF,TH,VN,AU,CN,JP,LK,HK,CN,JP,HK,CN,TW,VN,NZ,KR,PH,JP,PH,TW,PH,JP,MY,TW,JP,TW,PH,AU,JP,AU,TW,MY,JP,SG,JP,HK,JP,AU,SG,TW,JP,HK,JP,HK,JP,SG,JP,SG,JP,HK,JP,SG,AU,SG,AU,SG,NZ,SG,HK,SG,MY,SG,MY,SG,TH,SG,AU,SG,AU,SG,AU,US,SG,AU,VN,HK,AF,HK,AF,HK,AU,TH,JP,AU,CN,AU,JP,PH,JP,_,NL,RO,AT,HU,DK,NO,RU,NL,CH,RO,DE,RO,PL,NL,ES,CY,RO,IQ,RO,ES,RO,PL,RO,US,DE,RU,NL,GL,DE,DK,RU,DE,NL,_,RU,CY,SG,AU,US,DE,IT,RU,DE,BE,RU,UA,CZ,DE,CY,US,TH,US,SG,US,VN,US,JP,US,JP,US,SG,HK,TW,SG,DE,TH,KR,VN,SG,TH,SG,US,DE,RU,TH,VN,RU,US,JP,VN,RU,MY,BR,ID,RU,ZA,PH,AE,VN,SG,HK,DE,TW,JP,HK,ID,PH,PK,HK,TW,SG,US,KR,FR,DE,TH,US,JP,US,SG,US,IN,SG,US,HK,US,SG,US,MY,TW,SG,IN,TW,TH,US,JP,US,VN,US,JP,IN,HK,MM,KR,VN,US,AR,CL,HK,US,FR,TW,US,HK,US,SG,US,TW,HK,US,HK,ID,ZA,TW,HK,JP,US,HK,MY,US,PE,US,MY,HK,US,ID,US,ID,US,SG,US,VN,US,MX,BR,US,NL,US,PH,VN,US,MY,JP,US,BR,US,TW,US,AE,TW,PH,ID,BR,US,SG,DE,BR,TH,US,BR,US,BR,US,SG,US,SG,US,FR,AE,US,DE,US,VN,US,HK,US,HK,US,HK,US,VN,US,HK,US,ID,US,BR,US,MX,TR,US,CO,HK,MX,SG,US,ID,BR,US,PK,US,ID,US,AE,GB,US,BR,US,BR,US,DE,US,TW,US,RU,US,TW,US,BR,US,BR,US,GB,US,JP,US,GB,US,JP,US,NO,GB,AF,US,CA,US,IT,US,JP,US,BY,DE,GB,BA,IT,AT,RU,DE,ES,IR,CA,JP,US,IR,CH,IT,DE,PT,IT,RU,DK,AT,BG,HR,CZ,EG,DE,GR,HU,KW,LI,MD,NG,RO,SA,SK,SI,TR,UA,UZ,MY,PH,SG,VN,BD,IN,PK,AU,NZ,US,JP,CA,US,FI,NO,ES,NL,BR,US,CO,US,HK,GB,FR,CL,TW,JP,AU,CH,IT,US,ID,PL,SG,SA,KR,PT,CA,EG,DE,GR,RO,ZA,UA,SG,US,IN,AU,NZ,US,GB,FI,US,BR,JP,NL,FR,CL,US,JP,KR,HK,ID,CA,US,DK,FR,US,GB,SE,US,CH,AT,US,CA,US,DE,US,FR,NO,US,DZ,US,LI,DE,TR,US,FR,US,BR,CA,AU,ZA,AU,KR,US,CL,AE,NL,US,FR,ZA,SG,IN,GB,DE,US,IT,DE,US,SG,US,GB,US,CA,US,SG,US,CN,US,IT,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,UA,US,IT,DE,PL,FR,GB,NL,DE,CH,IT,DE,AE,PL,KZ,SE,NL,LU,NL,RO,FR,RU,GB,ZA,DE,NL,ZA,NL,ES,TR,DE,BE,SE,SA,US,CA,US,CA,AT,US,KR,US,IL,DE,FR,GR,RU,BG,RU,ES,DE,NL,RO,IS,BY,CH,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,DE,US,CA,US,CH,US,AU,IN,US,CA,US,IN,NL,SG,US,BR,US,BR,AR,BR,AR,BR,GF,BR,AR,DO,CL,BR,AR,BR,CR,BR,EC,BR,AR,BR,CL,BR,AR,BR,US,GB,RU,AT,RU,NL,FR,PL,FR,SA,US,FI,US,CA,US,CA,US,GB,CA,SA,US,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GB,US,DE,US,AU,GB,US,CA,US,CA,US,CA,US,FR,AR,US,CA,US,MX,US,AU,GB,AU,CA,US,CA,US,CM,US,GB,DE,US,SE,US,NG,US,FR,US,DE,AT,CN,US,GB,US,DE,US,AU,US,DE,US,FR,US,DE,US,DE,US,DE,US,DE,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,CA,US,BR,US,BR,US,CA,US,NL,DE,US,SG,JP,IN,US,NZ,US,DZ,BF,US,NG,US,JP,US,GB,US,DE,US,AU,US,CA,US,FR,US,VE,CL,US,AU,US,AU,US,AU,CA,US,CA,US,FR,DE,AU,DE,FR,US,GH,FR,RE,AO,US,NL,SG,AU,CA,CH,US,CH,US,SG,US,ES,US,FR,US,IT,US,GB,US,CR,GH,US,RS,ID,AU,US,CA,US,AL,US,ID,PG,US,DE,UZ,PH,US,AR,US,LU,US,LT,US,AR,US,JP,US,GB,JP,US,MW,US,DK,DE,US,AU,US,BR,US,IN,US,IN,US,KR,US,KR,US,KR,CL,US,AU,US,IN,SG,US,SG,US,GB,AE,US,AE,US,AE,US,BR,US,BR,US,GB,US,GB,US,CL,US,CL,US,AE,US,ZA,US,SE,US,FR,US,IT,US,IT,US,IL,US,SG,US,BR,IN,US,GB,CL,AE,ZA,SE,FR,IT,US,CA,US,BR,US,IN,KR,US,KR,IN,US,CA,US,DE,IN,DE,US,BR,US,IL,US,DE,IN,DE,US,GB,US,CA,US,FR,US,NO,SE,US,AU,FR,NL,FR,DE,FR,US,DE,US,DE,SG,US,SG,US,CH,US,FR,US,CN,UG,ZA,GB,ZA,_,NG,ZA,BW,DE,US,SA,US,CN,US,DE,GB,US,DE,US,BL,GD,JM,LC,HT,US,BL,LC,US,CA,US,CA,US,CA,US,CA,US,CA,MZ,KE,RW,CA,US,CL,PE,EC,CL,PE,CA,US,CA,US,CA,US,BS,US,TZ,SZ,BJ,US,CA,US,CA,US,SG,HK,IN,HK,SG,HK,SG,HK,SG,HK,KR,IN,ID,TW,JP,HK,TW,HK,SG,PH,IN,PH,IN,PH,IN,JP,PH,BR,HK,PH,IN,JP,ID,IN,JP,IN,SG,IN,PK,HK,PK,HK,TH,JP,MY,IN,TH,IN,JP,HK,IN,US,ID,US,GB,US,GB,US,AO,EG,US,GB,US,GB,US,LS,ZA,DE,GB,US,NO,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AT,US,JP,US,JP,US,JP,US,JP,US,JP,US,ID,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SG,US,DE,US,KR,US,GB,AZ,DE,AL,UA,AT,DE,GB,FR,DE,FR,IT,FR,SE,NO,IT,RU,GB,UA,SY,US,_,US,CA,US,GB,US,GB,US,IT,IN,US,SE,US,GB,US,JP,US,GB,US,DE,US,NL,US,IN,AU,VN,SG,FI,SE,CA,AR,VE,BO,US,JO,GR,SK,RO,EG,MD,DE,UA,PT,SI,IT,KE,DE,LI,BG,IL,HR,JO,UA,SA,NL,SK,GR,EG,US,MX,US,PK,IN,AU,CA,US,CA,AR,BR,PA,MX,GR,RO,EG,DE,PT,KE,LI,BG,PL,EG,PT,KE,US,DE,PH,VN,SG,BR,RU,US,CL,AR,BO,PE,AR,FI,NL,BR,DE,IT,DE,US,IN,AU,CA,IT,KE,AD,ES,PT,US,FR,PK,EC,IE,CO,SN,FR,US,DE,KE,SK,SI,US,IN,ES,DE,CZ,ES,TH,BR,AU,FR,US,ES,ID,CZ,DE,PL,DE,US,PH,IT,US,MX,US,MX,LI,BG,UA,JO,IT,PK,SG,AU,SE,GB,NL,BR,US,CA,US,AU,DE,KE,DE,IN,US,DE,NL,US,AU,US,BR,VN,LT,US,SG,IN,CA,GB,DE,US,MY,AU,CL,US,ES,US,AU,US,DE,NL,US,IT,GB,NL,FR,US,AU,US,EG,DE,US,IN,US,GR,GB,HU,US,CA,US,CA,US,_,US,_,US,CA,US,CA,US,CA,US,LV,US,JP,US,AU,US,CH,DE,US,DE,US,DE,US,DE,JP,CA,US,FR,NO,US,JP,US,DE,US,DE,US,NL,FR,US,CH,DE,FR,US,JP,GB,NL,US,CH,FR,HU,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,FR,US,SE,DE,SE,US,AU,US,BE,PH,US,NL,CA,US,NL,AU,US,DE,FR,CA,DE,US,CA,US,CA,US,CA,US,CA,US,CA,FR,US,NL,US,FR,CA,US,CA,NL,CA,US,NL,US,GB,CA,US,CA,US,ES,US,ES,US,CA,US,CA,US,CA,US,CA,US,CA,FR,CA,US,CA,FR,GB,US,DE,GB,CA,US,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,PT,LR,CA,DE,CA,GB,CA,DE,FR,DE,SE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,CH,US,CA,IT,CA,IT,US,FR,US,DE,NL,US,FR,US,NZ,US,CH,US,AU,GB,US,DE,US,IT,US,HK,US,FR,US,JP,US,NL,GB,DE,US,JP,US,GB,US,GB,US,AU,US,JP,GB,US,NL,US,DE,US,DE,US,KR,GB,AU,US,DE,US,SA,US,CA,US,CA,US,DE,US,DE,US,DE,IL,BH,JP,US,GB,MY,US,GB,US,AT,KR,US,IN,US,IN,US,IN,HK,US,AR,US,KR,DE,FR,US,HU,BR,KE,NZ,AT,GR,BR,US,DE,US,HR,US,IN,MX,US,SG,IN,US,DE,IT,IE,US,HK,US,GB,US,GB,US,GB,FR,US,IT,AU,US,IT,DE,DK,US,DE,CA,NL,US,KR,US,ID,CA,FI,CA,US,JP,US,ES,CZ,TH,ZA,MY,US,TH,SE,NZ,US,FR,US,IL,AU,US,JP,BR,DE,US,BR,IN,US,ZA,US,ES,FR,US,NO,FR,US,FR,JP,US,FR,JP,US,FR,DE,IE,US,DE,IE,US,DE,US,DE,US,JP,DE,US,IT,GB,DE,FR,US,GB,FR,US,DE,US,FR,JP,US,IE,US,CA,DE,SY,PL,GB,FR,US,DE,US,DE,GB,IR,PT,ES,IL,DE,GB,US,TR,DE,DK,GB,SE,FI,SE,GB,FR,MX,CZ,US,FR,BG,GR,BG,BR,US,BG,GB,BG,GB,BG,US,BG,IT,US,IT,US,FI,US,FR,US,FR,US,IT,GB,IT,GB,US,NL,KZ,DE,CZ,FR,RU,FR,RU,AZ,US,RS,IR,GB,UA,GB,DE,ES,GB,ES,GB,DE,AM,IQ,AU,NZ,DE,GB,NZ,RO,NZ,NL,BE,SG,NZ,DE,NZ,RO,NZ,AU,RO,NZ,RO,NZ,RO,NZ,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,BG,US,ES,US,IS,GB,US,BE,US,TW,US,GB,DE,US,DE,AE,DE,US,DE,US,CA,DE,US,DE,US,DE,CA,DE,US,DE,AE,DE,US,SA,DE,SA,DE,US,DE,CA,DE,US,DE,AE,RU,US,NZ,US,AU,US,CH,US,DK,SE,FI,SE,LV,SE,LV,SE,VE,SE,VE,SE,HR,SE,US,SE,US,GB,US,CA,US,BR,US,IE,NL,ES,CH,US,BE,RO,DK,US,ZA,GB,IT,BG,RO,DE,RO,IT,AM,PL,CH,FR,IE,SG,IN,HK,AU,KR,JP,IN,US,CA,US,GB,US,GB,US,CA,US,CA,US,CA,US,CA,US,CY,US,CO,US,IT,US,GB,US,CA,SG,CA,FR,CA,ES,US,IT,ES,FR,US,IT,ES,US,DE,US,IT,ES,US,IT,ES,US,GB,US,ES,US,IT,ES,FR,US,IQ,RU,GB,RU,US,DE,RU,IQ,IT,DE,IT,DE,UA,IT,PL,SE,PL,UA,RU,NL,UA,TR,US,UA,SA,DE,IR,BO,BR,CL,BR,US,BR,AR,CL,BR,AR,CO,BR,CW,CO,CL,BR,BO,BR,UY,BR,AR,MX,BR,IT,BG,NL,DE,AT,NL,IT,US,AR,BR,PY,AR,BR,AR,TT,BR,CW,BR,AR,CO,BR,AR,BR,VE,BR,AR,HN,MX,BR,PA,MX,CL,AR,BR,US,SE,US,DE,MX,CO,US,MX,BR,_,BR,TT,BR,CO,BR,AR,BR,AR,BR,AR,BR,AR,BR,SV,BR,TT,BR,AR,PY,BR,US,CH,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,AR,PA,BR,US,PA,BR,CR,AR,BR,AR,BR,AR,BR,AR,BR,CO,BR,PY,BR,CL,BR,HN,DO,BR,US,GB,JP,IT,SE,CH,AZ,DE,YE,GB,SE,GB,CZ,FR,CZ,RU,IQ,US,CA,US,IL,DE,IL,CA,IL,US,JP,AT,US,CA,US,JP,US,CH,US,RS,US,SG,US,DE,US,SG,US,_,US,IT,NL,US,DE,SE,BR,HN,MX,BR,HN,SX,AR,BR,PE,BR,BZ,AR,BR,AR,BR,CO,CL,BR,EC,BR,AR,BR,MX,BR,PY,CA,GB,DK,LU,DE,LU,HK,SG,LU,HK,LU,SG,LU,DE,LU,US,DE,AU,US,AU,DE,NL,IT,NL,US,NL,US,BE,US,NL,US,DE,US,DE,US,DE,US,DE,US,DE,US,IT,US,DE,US,IT,US,GB,US,FR,US,NL,US,IT,US,IT,FR,IT,FR,US,NL,US,IT,US,IT,US,IT,US,ES,NL,DE,US,NL,US,NL,US,IT,US,IT,FR,US,ES,US,DE,US,BE,US,DE,US,NL,US,NL,US,BE,US,IT,DE,FI,MX,US,NL,AU,US,AU,US,KR,JP,US,JP,US,DE,US,DE,US,DE,US,DE,GB,US,CA,AR,BR,EC,BR,SV,GT,PA,NI,AR,BR,US,BR,EC,BR,AR,BR,AR,BR,EC,BR,US,BR,CL,AR,BR,AR,PY,BR,CO,BR,MX,US,DE,US,CA,NZ,US,SE,JP,FI,US,NL,US,JP,US,AU,US,DE,AR,DO,HN,BR,AR,BR,PA,TT,CL,BR,CO,BR,AR,BR,VE,BR,CW,BR,MX,BR,CL,BR,US,NL,US,CA,US,ZA,BR,US,CA,PH,SG,PH,US,GB,FI,IN,FR,IN,FI,GB,IN,GB,IN,DE,IN,FR,IN,US,IN,US,IN,FI,IN,CN,IN,HK,IN,SG,IN,FI,NL,IN,US,NL,DE,NL,FI,NL,US,NL,DE,NL,SG,IN,KR,NL,US,GB,CA,US,DE,CA,AU,NL,US,AU,US,AU,DE,US,JP,US,GB,US,GB,US,QA,US,QA,US,CA,US,QA,US,DE,US,HK,US,AU,US,DE,US,AU,US,NL,US,NL,US,BR,US,NL,FR,BR,AR,BR,AR,NI,CO,BR,BZ,BR,AR,BR,VE,BR,_,BR,PE,BR,AR,BR,PE,BR,AR,BR,AR,BR,US,IL,US,GB,KR,CA,JP,US,DE,GB,US,SG,US,SG,US,VI,CA,US,FR,NO,US,GB,IN,FI,CA,PE,US,GB,FR,US,FI,US,DE,NL,DE,NL,GB,US,IT,DE,CA,US,DE,US,JP,DE,NZ,JP,US,PE,GB,DE,US,JP,US,PE,US,DE,GB,US,DE,US,CA,GB,CA,JP,US,CA,JP,KR,US,GB,US,BR,KR,IN,DE,GB,CH,KR,BR,FR,US,NL,DE,CN,US,AU,US,MY,US,GB,US,GB,SG,GB,US,IE,SG,US,HK,US,HK,US,JP,US,SG,BR,US,SG,US,AU,US,SG,US,IE,NL,IE,US,IE,NL,SE,US,CA,MX,US,PE,BO,DE,US,MX,PE,AR,BR,CO,BR,CL,BR,AR,BR,MX,BR,US,BR,PY,BR,AR,BR,SV,BR,AR,BR,CL,BR,JP,IT,ES,GB,DE,AL,GB,US,GB,NL,RU,DE,OM,SG,OM,DE,US,AU,US,BY,AU,DE,RU,SK,RU,GB,IT,NL,GB,TR,AZ,GE,US,CH,US,JP,US,CA,US,NL,US,DE,US,CA,US,HK,US,GB,SG,US,AU,US,SE,US,NL,DE,US,DE,US,GB,DE,YE,GB,FI,US,CA,US,HK,SG,AU,JP,GB,US,SG,AU,JP,HK,US,NO,US,BE,US,BE,FR,DE,US,BR,US,BR,US,GB,SG,GB,US,SE,US,DK,US,CA,US,BR,US,DE,US,GB,US,CA,IN,JP,BR,CH,AU,KR,SA,NL,AU,JP,CA,IN,US,SG,KR,GB,BR,AE,CL,SE,ZA,FR,IT,IL,ES,FR,MX,US,MX,US,KR,DE,US,DE,US,GB,US,CA,US,GE,BA,FR,NO,NL,NO,US,DK,NO,RU,GB,RU,CH,IT,DE,US,GB,US,AU,US,CA,US,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,US,CA,NL,DE,GB,US,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,US,GB,US,GB,US,DE,US,SG,US,GB,US,GB,NL,AU,PK,AU,SG,PK,AU,NL,DE,NL,DE,NL,DE,NL,DE,NL,US,NL,US,NL,US,NL,US,AE,US,GB,US,NL,US,NL,US,NL,US,GB,US,DE,US,NO,US,SK,US,TR,US,DE,AU,GB,US,GB,US,CA,US,DE,US,FR,AU,HK,US,HK,US,AU,US,AU,IN,HK,AU,US,AU,HK,AU,US,GB,US,SG,AU,US,AU,JP,US,AU,IN,AU,HK,AU,US,GB,AU,GB,AU,NZ,JP,TW,HK,AU,TW,AU,GB,HK,JP,AU,HK,TW,HK,TW,NZ,HK,TW,AU,HK,AU,TW,AU,HK,AU,JP,HK,VN,HK,AU,HK,JP,AU,HK,AU,HK,JP,HK,AU,NZ,AU,TW,JP,NZ,AU,NZ,HK,AU,IN,AU,TW,JP,SG,AU,HK,AU,HK,NZ,US,NZ,KR,AU,HK,VN,HK,VN,SG,AE,HK,AU,US,KR,AU,JP,US,BR,US,CL,US,DE,US,NL,US,NL,US,IE,NL,US,SG,US,IE,US,HK,US,HK,US,NL,US,HK,BR,US,IE,US,DE,JP,US,CN,DE,US,AU,US,JP,US,GB,BE,US,NL,US,CA,GB,IL,GB,IL,GB,IL,GB,IL,GB,US,CA,US,CA,US,CA,US,GB,US,CA,US,CA,US,CA,US,_,US,_,US,CA,CH,US,CA,US,PR,US,CA,US,TH,US,CA,US,DE,US,AU,PR,US,PR,US,AU,PR,US,NL,US,IN,US,TH,US,GB,US,SG,US,FR,US,TW,US,GB,US,NL,SG,US,NL,US,IN,US,GB,NL,US,DE,US,AU,FR,GB,FR,US,IE,DE,US,ES,GB,US,CH,DE,CH,US,IN,RU,US,GB,NL,US,GB,IE,FR,US,TH,JP,TW,HK,JP,IN,BD,PK,IN,TH,VN,ID,MY,KH,PH,SG,MM,NZ,AU,PG,AU,FI,BY,RU,NO,RU,SE,LT,BE,GB,FR,KW,JO,AD,GR,ES,SK,RO,HU,EG,ZA,MD,AE,DE,TR,ZA,UA,NG,PT,SI,LU,ES,IT,KE,MC,DE,CZ,SA,LI,BG,UZ,IL,AT,PL,HR,CH,NL,BE,DK,NL,CH,CA,PY,CO,BR,AR,VE,PE,BR,BO,CL,BR,US,MX,PA,CR,US,CA,US,CO,PA,SG,DE,US,EG,DE,KE,LI,JO,UA,BG,UZ,SG,MM,AU,BR,AR,BR,US,IN,AU,IN,AU,IN,JP,CA,US,AU,CA,IN,DE,ES,EG,IN,PT,US,SA,US,DE,FR,DE,US,UA,US,HU,RU,IT,ES,DE,IR,AU,TR,IR,DE,CY,SG,DE,US,ES,DE,US,DE,US,ES,IT,GB,DE,IR,DE,IR,ES,US,DE,CA,US,GB,US,GB,US,CA,GB,US,JP,US,SG,US,GB,CA,US,CA,US,SG,US,DE,US,CA,US,NL,US,CA,US,CA,US,_,US,CA,US,JP,US,CA,US,CA,US,_,US,_,MO,IN,GB,US,DE,US,DE,US,DE,US,GB,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,GB,US,GB,US,GB,US,GB,US,FR,DE,FR,GB,FR,DE,BA,DE,US,SG,US,VI,MQ,LC,HT,DM,BB,VI,LC,RE,YT,BB,US,RW,SZ,US,ES,US,GB,US,SG,US,DE,US,DE,US,DE,US,GB,US,FI,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,HK,US,IN,GB,US,CA,US,GB,CA,JP,CA,US,PT,SE,US,FR,US,GB,US,UA,US,NL,US,FR,US,DE,UA,US,FR,US,PL,US,UA,US,PT,US,CN,US,CN,US,PT,US,EE,US,EE,US,EE,US,EE,US,EE,US,LV,US,LV,US,LV,IT,US,UA,US,LV,US,UA,US,UA,US,DE,BR,JP,US,SG,AU,US,CA,US,SG,US,IN,US,CH,US,DE,US,JP,US,DE,US,GB,DE,US,CA,US,GB,US,CA,US,JP,US,NL,US,CA,US,NL,US,VI,US,CA,HK,AU,US,SG,CA,SG,US,CH,NL,PL,ES,FR,NL,RU,SG,US,SG,US,CH,NL,MX,US,SA,DE,US,JP,US,AU,US,FR,GB,DE,IT,IE,US,NL,PR,US,GB,US,AU,SE,GB,IT,US,PH,CA,US,SE,NO,US,LV,RU,US,DE,LU,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,BR,US,CA,US,_,US,GB,US,FR,US,AR,US,_,US,IN,AU,JP,US,JP,DE,US,IE,US,IE,US,IE,GB,MX,US,BR,US,CA,US,MX,US,CA,US,BR,US,NL,DE,CH,DE,GB,DE,CH,DE,NL,IT,GB,CH,NL,AT,US,ES,ZA,US,SG,IN,US,HK,IN,SG,JP,TW,IN,AU,NZ,IN,US,NL,GB,DE,US,AU,FR,JP,US,SG,US,HK,US,MX,IL,IT,BR,KR,CA,AU,NL,DE,JP,AU,US,KH,US,KH,MM,US,CA,US,FI,US,DE,SE,IE,CH,ES,BR,BG,US,SG,US,AE,IT,PL,NL,TR,ZA,GB,CO,CA,US,TW,IN,GB,DE,AR,US,AU,NL,SG,CA,JP,GB,US,CA,US,DE,NL,IN,US,CH,HK,CH,US,PH,US,DE,US,GB,DE,NL,FR,US,RO,US,CA,US,NL,US,GB,US,FI,CH,_,US,JP,US,IE,GB,US,NO,US,GB,US,NL,US,SE,IN,GR,NP,ID,KR,HK,VN,BD,IN,ES,CN,US,CA,IN,AU,IN,ID,HK,IN,CN,IN,HK,VN,MY,TH,_,VN,AF,ID,IN,PK,HK,BD,IN,ID,IN,AU,IN,BD,SG,AU,PK,AU,IN,HK,PK,JP,_,IN,AU,JP,AU,SE,CH,SC,CA,SC,CA,SC,UG,MW,US,KR,US,GB,PL,FR,DE,FR,DE,FR,GB,FR,DE,FR,DE,FR,US,_,US,CA,HK,US,KG,US,CA,US,CA,US,CA,US,CA,US,GP,US,CA,US,CA,US,GP,US,ES,BE,IT,CA,BR,GB,CA,AU,FR,DE,CH,US,PL,IN,US,KR,RU,JP,SG,AU,HK,DE,US,AE,US,DE,GB,JP,BR,ZA,DE,FR,US,MX,US,CH,JP,GB,SE,US,NZ,AU,DE,SG,TW,DE,US,CA,IE,GB,DE,US,IE,GB,DE,CA,IE,JP,IE,JP,US,DE,US,BY,IN,FR,GB,FR,HK,CH,RO,DE,GB,US,SG,US,GB,FR,IE,US,AU,NO,CA,US,FI,IN,CZ,US,ES,US,GB,US,GB,AU,US,AU,US,MW,US,SG,HK,US,NL,IE,US,NL,US,NL,FR,CA,US,FR,US,SG,BR,IT,FI,DE,SE,NO,PL,NO,CZ,NO,PL,NO,CA,NO,DE,CH,NO,US,HK,US,SG,US,HK,US,IE,US,CH,US,AU,US,CA,US,JP,AU,US,CH,AU,ZA,US,GB,FI,US,AU,US,DE,FR,US,_,AU,US,NL,DE,US,DE,NL,GB,NL,US,GB,NL,FR,US,FR,NL,ES,DE,NL,DE,CH,RO,TR,US,PT,GB,ES,IT,DE,ES,SE,BG,PL,NL,US,CA,US,SG,US,CA,US,SG,US,CA,US,HK,US,IE,US,DE,FR,GB,MY,GB,MW,US,TW,US,JP,CN,US,SG,IN,JP,US,IT,DE,US,IT,GB,US,CA,AT,US,GB,ZA,US,NO,GB,AU,US,CA,US,JP,US,CA,US,GB,JP,HK,JP,GB,NO,DE,FR,NL,GB,IE,NL,US,DE,US,CA,US,CA,US,DE,US,DE,US,GB,US,BJ,BR,AR,CL,BR,CO,AR,BR,AR,BR,CO,BR,AR,BR,CO,CL,BR,AR,BR,AR,BR,HN,BR,US,EE,US,BR,DE,US,GB,US,DE,US,DE,US,GB,US,DE,US,JP,SG,KR,DE,US,BR,US,GB,US,GB,JP,GB,DE,ES,US,SE,AU,US,CA,US,SE,US,HK,US,FR,AT,US,AU,US,_,US,NO,US,NO,US,CA,US,BR,AR,BR,DO,BR,AR,BR,CO,BR,BO,BR,US,AR,BR,US,BR,PE,AR,MX,BR,AR,BR,AR,BR,CL,GB,US,GB,IT,US,ZA,IN,SK,HU,US,DE,SK,HK,DE,HK,US,JP,TR,US,NO,US,KY,US,HK,US,CA,KY,US,CA,AU,US,BE,US,CA,US,AR,CA,US,VE,UY,CR,BR,TT,BR,PE,BR,EC,BR,VE,BR,CR,BR,AR,BR,PY,AR,HN,BR,US,BR,PY,BR,AR,BR,US,NO,FR,JP,US,IT,US,DE,GB,NL,DE,GB,US,NL,US,_,US,CA,US,SG,US,AU,US,_,AU,CH,CA,US,CL,DO,TT,PE,CO,BR,MX,PA,GF,CO,HN,EC,MX,GF,CL,GT,MX,HN,PH,US,PH,US,IT,US,CA,US,JP,SG,IE,US,CO,BR,AR,BR,CR,BR,HN,BR,MX,GT,BR,US,BR,TT,SV,GY,GT,US,FR,BR,CO,BR,CO,BR,SV,BR,BZ,NI,BR,MX,BR,AR,BR,AR,BR,AR,BR,DO,BR,US,SV,AR,BR,HN,CA,HN,BR,UY,BR,PY,BR,BZ,BR,AR,BR,PA,BR,US,BR,PA,BR,MX,BR,AR,PE,SV,AR,BR,CL,BR,CW,HK,AR,CL,BR,DO,BR,ES,JP,FR,SE,GB,SG,GB,SE,JP,US,SG,US,HK,US,CA,TR,MY,US,CA,US,CA,US,CA,US,CA,JP,CA,JP,US,CA,US,CA,PH,CA,IN,AE,CA,IN,CA,IN,CA,US,CA,KR,CA,RU,CA,IN,US,CA,ES,CA,IN,US,CA,PH,CA,PH,CA,PH,CA,KR,CA,TH,CA,BR,TH,CA,IN,PH,US,CA,TH,CA,TR,US,BR,NI,AR,BR,CO,BR,AR,BR,CL,BR,AR,BR,CO,BR,HN,BR,CO,AR,BR,AR,BR,CO,GT,BR,CL,BR,AR,PE,BR,CO,BR,AR,BR,GT,BR,MX,BR,AR,BR,AR,BR,CR,BR,GT,BR,AR,US,BR,PA,BR,AR,BR,CR,BR,VE,BR,AR,BR,CA,US,BR,CO,BR,CO,BR,AR,BR,CL,AR,CL,AR,BR,AR,BR,CR,BR,CO,AR,BR,CL,BR,CL,BR,CO,BR,AR,BR,AR,BR,VE,BR,CR,BR,MX,BR,EC,BR,AR,BR,MX,BR,AR,PY,BR,MX,AR,US,BR,CO,BR,MX,AR,BR,CR,BR,MX,US,UA,RO,SE,FR,DK,DE,MD,CZ,IT,CH,ES,AT,HK,TR,FI,KZ,GR,IL,SK,PL,HU,BR,RS,LT,NO,NL,GB,US,EE,NL,GB,CA,BG,PT,EE,LV,UA,RO,SE,FR,DK,DE,MD,CZ,IT,CH,ES,AT,HK,TR,FI,KZ,GR,NO,IL,SK,PL,HU,RS,GB,PH,DE,CH,IQ,GB,CH,DE,DK,LV,US,RU,US,RU,US,SE,NL,AT,BG,GB,NO,CH,IL,SK,HU,RS,LT,US,GB,US,AT,ES,DE,ES,US,GB,US,GB,AU,US,IN,US,NL,US,AE,US,GB,AU,US,AU,CH,IT,US,IL,US,MX,BR,PE,BR,NI,BR,VE,BR,BZ,AR,BR,NI,BR,AR,PE,BR,EC,AR,BR,AR,BQ,BR,MX,BR,CR,BR,VE,CL,PA,BR,CO,BR,MX,BR,PY,MX,BR,PE,BR,PA,BR,MX,BR,CL,BR,US,MX,CO,PA,PE,BR,AR,BR,AR,BR,VE,BR,CO,BR,MX,BR,SR,CA,SR,AR,BR,AR,SV,AR,CH,US,AU,FR,US,CA,DE,US,DE,US,CH,CZ,US,BR,CH,NL,US,FR,PL,DE,CH,JP,SG,FR,GB,US,AU,SK,US,DE,JP,US,IT,SG,FR,CA,GB,US,GB,US,RO,IT,SE,CZ,CA,BR,PL,SG,HK,GB,DE,NL,DE,OM,US,DE,US,BE,AR,BR,PE,BR,BO,BR,AR,BR,PA,BR,AR,BR,_,BR,HN,BR,MX,BR,AR,BR,CL,BR,CO,BR,AR,BE,CH,AU,CH,HK,CH,AU,CH,US,NZ,JP,GB,CA,SE,FI,AU,CA,AR,PY,SV,AR,BR,MX,AR,BR,CL,AR,BR,US,ZA,US,BR,AR,BR,US,CA,BR,CW,BR,SV,AR,BR,US,BR,AR,BR,CL,AR,BR,AR,BR,US,CH,DE,CH,US,SE,CH,US,CA,US,CA,IN,US,CA,US,FR,AT,SE,US,NZ,US,SG,US,JP,DE,US,GB,CH,JP,GB,FI,GB,_,GB,US,BR,MX,BR,AR,BR,AR,BR,CO,CL,US,PE,CL,BR,MX,BR,SV,BR,AR,BR,DO,AW,CW,AW,ID,DE,IN,US,IN,_,IN,ID,IN,AU,CN,IN,NP,AU,CN,CA,US,CN,IN,US,HK,TW,HK,AU,PK,NZ,AU,CN,BD,GU,IN,TH,ID,LA,CN,NZ,JP,AU,MY,HK,US,HK,BN,IN,CN,IN,HK,TW,HK,CN,_,CN,MN,IN,KR,IN,CN,IN,DE,SG,DE,CN,NL,DE,SG,DE,US,DE,IN,DE,RE,DE,AM,US,ES,BE,RO,RS,TR,ES,BE,CH,JP,PL,KG,TR,UA,PL,UZ,CH,RU,ES,DE,NL,FR,US,ES,IT,FR,ES,US,CH,GB,TR,GB,NL,CZ,GB,NO,HK,NL,US,GB,NL,HU,BE,GB,DE,BE,IT,DE,IT,US,BE,US,IT,GB,DE,HK,US,RU,FI,ES,BE,HU,NL,SE,GB,NL,US,NL,CA,FR,FI,RU,NL,ES,NL,ES,US,EE,SE,CH,DE,FR,LV,DE,US,_,DK,IE,FR,US,DE,IE,US,SG,GB,AU,US,SG,MX,IE,US,CA,IN,US,JP,IE,IN,GB,IE,GB,NL,GB,LV,GB,KZ,GE,AM,RU,GE,AM,RU,US,ES,DE,CA,US,DE,US,ZA,FR,US,CA,SE,IN,SG,DE,GB,SG,GB,DE,SG,US,CA,US,CA,US,CA,US,PR,US,IN,IE,US,CA,US,NL,SA,US,CA,US,NL,FR,US,BR,CA,US,CA,US,ES,US,CA,US,DE,US,IN,US,IN,US,IN,US,FI,US,SG,CN,FI,DE,US,NZ,US,AE,US,DO,LA,MY,PH,US,IE,US,SE,JM,US,CO,JP,ID,JP,PE,CZ,FI,AU,NL,US,BR,US,HK,CL,BO,AR,US,VN,LK,VN,JP,EC,KH,US,BR,PT,US,IN,AU,IN,ZA,US,AU,US,BE,GR,NL,IL,NL,TR,NL,PL,NL,DE,NL,DE,IL,NL,SE,NL,IE,GB,IL,NL,FR,NL,IL,NL,DE,NL,AT,NL,IT,NL,GB,FR,GB,NL,IL,DK,NL,US,HK,US,HK,US,HK,US,HK,US,HK,US,FI,NO,SG,CA,SG,CA,SG,AU,CA,AU,FR,JP,US,CA,US,SG,HK,US,AE,US,NO,SE,NO,US,SE,BR,SE,FI,FR,US,IT,CN,AU,US,AU,GB,AU,US,PK,PH,US,AU,US,NL,US,AU,US,NL,GB,US,CY,US,GB,US,HU,CZ,US,AU,US,ES,US,RS,US,GB,US,KW,CA,GB,IN,US,DE,US,AU,CA,SG,US,GB,DE,US,DE,US,GB,US,NO,US,CN,GB,KR,US,JP,GB,JP,CN,NL,FI,FR,CN,DE,CN,FR,US,SG,JP,DE,GB,AU,NO,BE,GB,IN,AU,US,CN,US,CA,DE,TW,CN,US,CA,US,MX,US,PH,US,TR,US,GP,US,BR,MY,US,DE,SG,CA,US,CH,US,NL,JP,US,AT,US,TW,KR,US,JP,US,TR,JP,CA,BR,US,IN,AU,IN,US,CA,US,NZ,SG,AU,SG,JP,SG,US,IE,GB,CA,DE,US,IN,US,IL,US,IL,US,IL,US,CN,GB,US,AE,US,CN,US,GB,CN,US,GB,US,GB,US,ES,PK,CA,PK,ES,BE,US,CA,US,PK,US,CA,US,PS,BE,GB,PK,US,PK,US,PK,US,BE,ID,CN,AU,CN,AU,CN,GB,TW,CN,US,CN,ID,US,AU,US,ID,US,CN,US,FR,AT,AU,CA,JP,US,DE,US,FR,NL,US,MY,TW,TH,AU,AE,VN,PH,ID,IN,SG,NZ,KR,AU,JP,US,AU,JP,AU,NL,JP,AU,JP,AU,US,MX,US,FR,CH,US,FR,NL,FR,NL,FR,US,DE,GB,CA,IN,JP,BR,CH,AU,KR,SA,NL,AU,JP,CA,IN,US,SG,KR,GB,BR,AE,CL,SE,ZA,FR,IT,IL,ES,FR,MX,US,MX,US,DE,US,CA,US,CA,US,TW,FR,US,DE,US,TW,GB,US,AU,IT,US,HK,IT,US,IT,US,IT,US,IT,DE,FR,US,DE,HK,US,DE,NL,HK,SG,HK,SG,NL,HK,DE,TR,ID,BE,ZA,BE,GB,NL,ZA,GB,BE,GB,BE,GB,TH,BE,DE,GB,JP,BR,BE,SE,GB,SE,US,DE,US,GB,SE,DO,BE,GB,SE,GB,FR,GB,SG,US,SE,ZA,US,ZA,FR,ZA,BR,ZA,US,ZA,US,CN,US,ES,FR,US,FR,US,FR,IN,FR,SE,FR,MX,US,HK,US,IN,US,SE,CA,HK,DE,HK,US,CA,AU,CA,JP,US,CA,AU,CA,US,CA,US,CA,US,SG,US,PL,AU,US,SG,US,DE,US,HK,US,IT,CA,US,CA,US,TW,JP,TW,SG,TW,US,CN,US,MX,TH,SE,GB,SE,US,GB,US,SE,FI,US,SG,US,AU,US,CA,US,IT,US,SE,CA,AU,NZ,US,DE,US,VE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,RU,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,PR,US,CN,US,DE,US,CA,US,AR,US,CA,US,IE,CA,US,CA,US,JP,US,JP,US,BR,US,DE,US,AU,US,JP,US,SA,US,NL,US,NL,US,NL,US,AU,US,CA,US,CA,US,SG,US,BR,US,NL,CL,US,SE,US,ZA,US,IT,US,CN,US,CN,US,ID,US,CN,US,JP,US,CA,US,CH,CA,TR,US,GB,US,PR,US,CA,US,NL,US,NL,US,NL,US,NL,DE,US,_,US,CN,KR,JP,GB,CA,IN,CH,BR,AU,CH,IN,BR,IN,US,CN,US,SG,US,HK,US,HK,US,CA,US,GB,US,NL,US,PL,US,SG,US,GB,SG,IN,AU,JP,CN,US,DE,SG,IN,US,NL,US,IN,US,CN,US,CN,US,RU,US,DE,US,GB,US,BE,PT,US,DK,US,AU,CA,JP,US,DE,US,FR,US,BR,JP,CA,US,CN,US,AU,US,CN,JO,SG,US,IS,NL,DE,FR,DE,FR,NL,GB,NO,GB,NL,RU,FR,NL,FR,GB,NO,DE,MT,RU,FI,RU,FI,RU,FI,DE,RU,US,RU,BY,RU,US,RU,AL,GE,GB,VG,DE,GB,DE,GB,DE,NL,FR,US,DE,GB,CH,GB,FR,BE,JP,US,MY,US,FR,NL,HK,FR,DE,US,FR,BG,IT,BE,TH,US,IT,NL,IT,FR,BE,IR,FR,GB,NL,BE,GB,BE,GB,FR,CH,US,IN,BR,HK,FR,SG,RU,BR,TW,US,FR,BE,GB,FR,PL,NL,DE,US,NL,FR,BD,FR,US,NL,US,BR,US,TR,DE,FR,NL,US,HK,AU,US,BR,CH,HK,CA,US,JP,BR,CH,HK,US,AE,DE,SG,TH,US,GB,DE,BR,TR,CH,CZ,GB,NL,CH,NL,FR,DE,NL,US,FR,US,KR,NL,GB,HU,US,DE,US,GB,TR,BR,GB,NL,DE,US,NL,US,HK,US,ID,US,LB,CY,KR,NL,FR,NL,US,MY,GB,DE,SI,TZ,SI,TZ,SI,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,GB,DE,SE,DE,RO,US,DE,GB,NL,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,BE,GB,IT,BG,NL,US,NL,TR,LT,NL,LT,DK,TH,NL,GB,RU,NL,ES,US,DE,US,TR,ES,LT,IT,GB,JO,US,SE,GB,US,HK,ES,BE,NL,PA,CA,US,CN,NL,GB,DE,GB,NL,GB,NL,GB,DE,RS,UA,TR,FR,IT,ID,JP,GB,RU,DE,AL,DE,UA,US,GB,US,EE,MD,BE,US,FI,US,NL,FR,AT,AL,BA,BE,CH,LV,US,FI,JP,IT,TR,NL,ES,GB,CZ,HK,KR,AT,PH,US,IE,US,FR,AT,NL,GB,BE,HK,US,SE,CZ,FI,NL,PS,HU,GB,BE,DK,SE,DE,UA,DE,FR,CH,NL,FR,GB,US,NL,US,KR,JP,US,JP,CZ,FR,GB,CL,US,AT,US,CO,HK,US,SK,NL,LV,GE,NL,RU,NL,RS,NL,NO,NL,LU,NL,RU,NL,GR,NL,SK,NL,MD,AE,NL,RU,NL,RU,US,_,US,NL,PL,RU,JO,RU,FR,LB,ES,IE,NL,UA,NL,IT,AE,DE,OM,GB,US,IT,CA,US,DE,SG,US,SG,DE,US,FR,US,CA,AU,US,CH,US,CA,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,FI,US,DE,US,AU,US,BE,LV,MK,NL,LT,GB,LT,GB,LT,GB,LT,US,SG,SK,VE,GT,HN,ES,VE,AM,DE,PL,DE,PL,FR,DE,IE,DE,FR,DE,RU,NL,HR,SE,HR,BE,IT,FR,UA,GB,NL,FR,PL,NL,LB,NL,SE,GB,SE,GB,SE,NL,GB,US,SG,US,GB,NL,GB,DK,NL,DE,NO,DE,NO,FR,NO,US,DE,GB,SA,JP,SE,US,CH,US,IN,NL,US,NZ,US,ES,US,ES,US,FI,US,GB,JP,SG,JP,AU,JP,US,JP,KR,JP,IN,JP,US,KR,US,BR,GB,US,DE,US,CA,IN,US,DE,BR,US,LA,US,SA,US,AU,DE,GB,CZ,BA,ES,FR,UA,CH,FI,US,FR,NL,US,JP,SA,US,GB,US,HK,US,FI,NO,FI,CA,US,CA,US,CA,US,_,US,MY,PR,US,ES,TJ,US,JP,US,BS,US,NL,US,PL,US,SG,DE,US,_,US,CA,US,BR,HK,US,CA,US,CA,US,CA,US,_,US,CA,US,FR,US,NO,GB,NL,CH,US,CA,US,GB,TR,US,GB,US,KW,US,KZ,US,SG,US,NL,US,DE,AT,US,AT,US,FI,US,KR,US,NL,US,IL,GB,IL,US,GB,US,DE,AU,US,GB,DE,TW,IL,US,IN,GB,IL,US,TH,US,IL,BG,US,IL,US,IL,US,IL,NL,SG,US,HK,IL,DE,IL,BE,IL,US,FR,IL,US,DE,IN,FR,SG,US,FR,GB,JP,GB,JP,GB,IN,GB,SG,_,US,GR,US,GB,US,AU,AT,GB,US,CH,IT,US,NL,BE,US,GR,FR,CH,AT,NL,SE,BE,SI,US,CA,US,BR,NL,CA,US,CA,US,JM,CA,US,IN,US,IN,US,CA,US,CA,US,CA,US,NL,FR,US,CA,US,VG,US,CA,US,BM,US,TC,US,CA,US,CA,US,CA,CN,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IN,CA,CN,CA,US,CA,US,NL,US,GB,US,NL,US,CA,US,GB,US,DE,US,NL,CA,DE,US,IN,NL,US,CA,US,CA,US,UA,US,UA,US,RO,US,RO,US,RO,US,RO,US,CA,US,FR,US,UA,US,CA,US,CA,US,FR,US,CA,US,CA,US,CA,DE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,VI,US,CA,US,CA,SA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,_,US,CA,US,CA,US,_,CA,US,GP,US,CA,US,CA,US,PM,US,CA,US,CA,US,CA,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,BR,US,CA,US,CA,GB,CA,US,CN,US,BG,US,BR,US,CA,NL,US,GB,US,NL,US,GB,NL,US,NL,US,GB,US,GB,US,GB,US,GB,CA,NL,GB,US,BR,US,GB,US,NL,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,NL,US,GB,NL,US,GB,US,GB,US,GB,US,NL,US,GB,US,GB,US,CA,GB,US,CA,US,NL,US,CA,SA,_,US,JP,DE,US,HK,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,JP,US,MY,US,CA,US,FR,US,PL,US,IT,US,FR,US,PH,US,FR,US,NL,US,CA,US,BR,BQ,BR,AR,BR,AR,BR,CO,VE,AR,BO,CO,SV,CO,BR,CR,BR,AR,TT,BR,HN,BR,AR,PE,BR,US,DE,US,DE,US,DE,US,CN,US,SG,US,SG,US,SG,US,DE,US,NL,US,CA,DE,AU,DE,SG,JP,GB,US,DE,US,GB,US,PH,US,IE,DE,IE,ES,IE,US,IE,NL,IE,GB,US,AT,FI,GB,BR,US,DE,GB,NL,DE,US,DE,GB,US,DE,US,CN,US,GB,US,HK,JP,US,AU,HK,KH,HK,JP,HK,SG,TH,SG,SA,DE,JP,US,NZ,NO,US,CH,DE,CH,US,CA,US,CA,US,BR,US,NO,US,GB,IN,US,CA,US,IN,US,CA,US,GB,SE,AU,US,NL,US,JP,FR,US,ZA,BE,AT,US,ES,US,_,BR,AR,NI,BR,DO,BR,CO,BR,MX,BO,BR,PE,CR,BR,HN,US,BR,TT,BR,BO,BR,AR,BR,US,GB,ZA,AT,US,AT,US,DE,US,GB,US,BE,US,_,US,AU,US,NL,CH,US,GB,US,GB,US,AU,JP,US,MY,SG,US,FR,US,CA,US,SG,US,SG,US,GB,US,NL,US,JP,BR,CL,AR,BR,AR,BR,MX,BR,AR,BR,AR,BR,AR,CL,AR,BR,PA,MX,CR,BR,AR,HN,AR,MX,PY,BR,NI,US,CA,IT,CO,US,NO,CO,US,GB,JP,DE,AE,JP,US,GB,DE,FR,DK,IN,AT,US,BR,HN,BR,AR,BR,AR,CL,GT,BR,CO,BR,PE,BR,DO,CR,BR,GT,BR,GB,US,AU,SE,_,US,_,US,CA,US,AT,IT,GB,US,GR,GB,US,SE,AU,IE,US,GB,US,CZ,SG,US,GB,JP,NL,CA,US,UA,US,RO,FR,CZ,US,AU,US,IE,DE,US,IN,US,NL,US,DE,US,NL,US,AT,US,KR,US,GB,_,US,BR,CL,CR,HN,AR,MX,BR,MX,US,BR,VE,BR,CL,BR,AR,PY,BR,AR,PA,BR,CL,BR,EC,BR,CN,JP,US,IE,CH,GB,NL,US,GB,AU,GB,SG,GB,US,GB,US,ES,NL,US,NL,US,IE,ES,NL,US,FI,US,TH,GB,US,AU,CN,US,CN,US,JP,US,SG,US,NL,US,NL,US,NL,US,NL,US,IN,US,ES,US,NL,GB,US,BR,CL,BR,CR,US,KR,IN,DE,FR,SA,GB,CH,US,SE,US,GB,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,HK,IN,US,IN,US,IN,US,IN,US,DE,US,NL,BE,US,PK,JP,HK,SG,JP,ID,AU,VN,PH,HK,AU,KR,IN,HK,GB,CN,HK,IN,JP,GB,DE,HK,BD,CN,KR,US,KR,US,BD,PK,HK,PK,KH,IE,MY,BD,AU,CN,BD,AU,IN,AU,IN,CN,HK,IT,_,PH,CN,HK,CN,IN,KH,AU,PS,HK,AU,_,IN,HK,CN,US,SG,GB,DE,JP,DE,CA,US,IL,US,DE,US,CN,AU,NL,AU,FR,SE,US,SE,US,SE,PT,AT,NZ,US,DE,US,SG,US,GB,US,_,US,GB,US,NO,CH,SA,US,CA,US,_,US,CA,US,CA,US,IQ,US,GB,US,SG,US,HK,DE,HK,DE,HK,DE,HK,DE,JP,US,NL,US,NL,GB,US,HK,NL,US,AU,GB,US,AU,US,NL,FJ,US,TR,CN,GB,US,HK,US,HK,US,GB,US,GB,SG,DE,US,IN,NO,US,AU,US,AU,US,DE,US,NO,FR,US,CA,US,JP,US,IT,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,CA,GB,US,NL,NO,US,GB,NL,US,IN,US,AU,US,GB,US,GB,IN,GB,IL,US,GB,JP,SG,NL,GB,CH,BE,NL,GB,CH,GB,NL,ES,NL,BE,NL,BE,GB,CH,GB,NO,US,GB,US,NO,CA,US,MY,CH,US,CA,US,CA,US,CA,US,CA,US,CA,US,FR,AU,RU,US,AT,US,CA,US,CA,US,CA,US,CA,_,US,AT,TR,US,TR,TH,AT,DE,VN,JP,AT,BR,AR,AU,MY,ID,IT,AT,SK,IT,US,PE,IN,KR,US,IN,AU,PT,IE,AT,HU,US,AT,NL,RU,BE,NL,US,HK,US,GB,US,JP,HK,US,CA,AU,US,HK,FR,US,KR,US,GB,IT,SE,DE,BR,GB,AU,IE,DE,US,DE,US,DE,US,IN,US,HK,US,DE,US,IN,DE,IT,IE,US,HK,US,GB,US,GB,US,IE,US,AU,US,FR,US,DE,GB,US,DE,US,IE,US,KR,IN,US,FR,CA,IE,CA,US,JP,US,IE,FR,GB,US,FR,SE,AU,US,FR,US,JP,US,FR,ZA,US,FR,IE,US,IE,US,CA,US,CA,US,MX,US,BR,US,BE,US,DE,US,NL,CN,NL,ES,NL,SI,EE,SI,NL,GB,DE,NL,FR,IT,SE,RU,TR,CZ,BY,GB,SE,OM,FR,DE,CR,US,MT,BR,US,DE,US,NL,GB,NL,IT,DE,CH,DE,PL,AT,NL,US,NL,US,NL,US,NL,SG,NL,US,NL,CL,NL,AU,NL,GB,NL,CA,US,SG,JP,GB,NL,SE,AT,US,NL,US,SG,NL,SG,US,KR,US,KR,DE,NL,US,SE,US,CA,AU,GB,SG,BR,HK,GB,CH,NL,GB,NL,DE,NL,US,DE,US,SG,DE,NL,US,NL,BE,NL,DK,NL,BE,DK,BE,NL,GB,DE,GB,DE,GB,NL,SA,NL,CA,NL,BE,NL,US,DE,NL,GB,IE,DE,FR,DE,NL,US,BE,PL,IT,IS,HR,GB,GG,SK,UA,ZM,DE,NL,AT,BE,PL,GR,SE,IT,EG,CH,HU,BG,SK,DK,MD,PT,SE,SK,CH,NL,IT,EE,EG,BG,UA,ES,PT,IT,ES,US,IL,US,DE,BR,DE,FR,GB,DE,GB,DE,GB,DE,FR,CH,GB,CH,SE,HU,RO,HU,BG,HU,BG,HU,PL,FR,DE,GB,FR,PL,FR,GB,FR,PL,FR,GB,FR,DE,FR,DE,FR,PL,DE,FR,DE,FR,DE,FR,GB,FR,GB,DE,FR,DE,FR,DE,FR,DE,PL,FR,DE,FR,GB,DE,GB,FR,GB,FR,AT,FR,DE,AT,CH,GB,US,GB,IN,HK,GB,JP,AU,GB,US,GB,FI,FR,GB,FR,GB,FR,SY,DE,NL,LV,RO,US,FR,US,RU,GB,KZ,CH,SE,CH,DE,RU,DE,DK,OM,NL,RU,SK,KZ,BG,DE,RU,GB,RU,DE,AL,FR,DE,IE,GB,IE,GB,IE,GB,LU,KZ,FR,NL,UA,FR,DE,LU,KZ,IT,LU,DE,US,NO,LU,CH,US,AU,US,AU,PA,US,SE,US,UA,DE,GB,DE,CA,FR,BE,TR,RU,SG,FR,NL,GR,FR,JP,US,DE,PL,FR,RU,US,SG,US,FR,PL,SI,US,ZA,US,RU,US,UA,DE,GB,RU,UA,NZ,FR,GB,US,ID,AT,US,UA,US,TR,RU,NO,CZ,DE,CZ,NL,NZ,US,CZ,TH,ES,SA,PL,RU,US,RO,PL,DE,RU,UA,BG,DE,US,GB,NL,ES,US,RU,BG,TR,US,RU,US,RO,BR,PL,NL,RU,DK,SG,DE,CH,NL,IR,NL,CA,PL,FR,PL,US,PL,JP,RU,GB,RU,US,ES,DE,NL,PL,US,DE,FR,RU,GB,PL,GB,LV,GB,DE,US,RO,CH,HK,PL,KZ,GB,CH,GB,TR,US,EE,NL,AU,DE,RO,IT,US,GR,US,ID,NZ,US,CA,RS,DE,NZ,UA,NL,DE,NL,JP,PL,NL,DE,US,FR,DE,PL,GB,NL,SC,HK,DE,SA,NL,RU,DE,RU,US,TJ,US,HR,UA,JP,NL,BR,NL,DE,NL,FR,CA,DE,SG,US,UA,TR,FI,TR,SK,US,UA,US,ZA,DE,US,RU,NO,RU,IR,US,NL,FR,IR,RU,IT,KG,US,IT,GB,NL,US,UA,BR,MD,US,GB,NL,US,DE,RU,DE,US,PA,JO,IL,UA,RU,BE,RU,US,RO,DE,NL,US,NL,AE,US,RU,NL,CZ,US,SE,US,CA,BR,NG,AO,KZ,PH,US,AE,US,AU,US,BR,US,JP,AU,US,SG,US,SG,US,SG,AU,SG,JP,AU,SG,JP,SG,GB,NL,US,KZ,US,KZ,US,TH,ID,US,IT,US,NL,JP,DE,US,JP,KR,IN,JP,KR,JP,KR,CN,US,HK,US,_,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,PL,FR,GB,FR,DE,US,_,US,ZA,US,GB,RU,KZ,FI,GB,IR,ES,FR,LU,AT,SE,LU,RU,GB,US,DE,RO,GB,RO,US,DE,SE,ES,CH,US,HK,US,RO,HR,HK,CR,CL,PK,US,ID,MY,SE,NO,FR,AE,DE,SE,ES,GB,US,CH,CA,AT,SG,GB,JP,FR,DE,US,NL,DE,AE,AR,FR,US,DK,GB,US,GB,IE,US,RU,BG,RS,BE,RO,US,PT,RO,GB,DE,US,NG,RO,SG,FR,GB,CH,US,IT,ES,CA,JP,RO,AU,HK,DK,AT,DE,GB,RO,PL,NL,US,FR,DK,IE,US,DK,US,IE,GB,RO,BR,CH,US,DE,AE,NO,GB,FR,NL,DE,NL,IT,RO,RS,CA,HK,AT,US,AT,DE,GB,HU,GB,SE,BE,RO,FR,CH,US,ES,CZ,IE,AE,GB,CH,CO,CA,JP,DE,NL,AU,IN,US,PL,SE,AT,US,SG,RO,GB,PL,US,AE,RO,FR,US,DE,PL,SE,BR,US,SA,US,NL,NO,US,NL,BE,US,DE,GB,ES,GB,IT,US,FR,US,BG,IE,BE,AE,SG,RS,FR,US,HU,DK,CA,SG,AU,JP,US,HU,GB,JP,SE,NL,AU,US,RO,BR,US,RO,US,NO,FR,RS,CZ,JP,HK,IT,CH,IE,US,DE,SG,SE,AE,GB,US,AE,SE,DE,RO,US,CA,US,CA,NL,US,NO,US,SE,IT,US,SE,US,SE,US,SE,US,SE,US,AU,US,SE,US,SE,US,SE,US,SE,US,SE,US,SE,US,SE,NL,US,SE,GB,RU,US,SE,US,SE,BE,US,SE,FR,SE,US,GB,SE,US,SE,US,SE,BR,SE,US,SE,US,SE,US,KE,US,SE,US,SE,US,SE,US,SE,US,SE,US,GB,US,GB,FI,US,DK,US,DK,US,DE,US,DK,US,CL,US,GB,US,AU,NL,AU,IN,AU,US,TH,MM,TH,SG,TH,PH,KR,PH,US,AU,US,AU,US,AU,NZ,US,MO,MY,MO,IN,US,_,MY,KH,US,FR,US,GB,US,GB,US,JP,IT,US,GB,US,GB,CZ,NL,US,NL,US,HK,US,BE,NL,GB,FR,GB,NL,DE,AT,CH,ES,CH,HU,US,JP,ES,US,FR,US,DK,IN,JP,AE,US,ZA,SG,PL,US,SE,US,SE,US,IE,FR,CZ,US,BR,US,CA,AU,US,JP,US,IT,US,NL,US,BR,SG,CA,DE,HK,US,GB,AU,US,CA,US,BR,MX,US,DE,GB,NL,IE,DK,SE,FR,CZ,PL,RO,ES,IT,ZA,AE,IL,JP,SG,HK,JP,IN,AU,FR,US,GB,IN,JP,US,FR,CZ,IE,AE,AU,BR,IN,DK,IT,US,BR,US,JP,CA,AU,SG,BR,HK,US,GB,US,DE,US,NL,US,IE,US,DE,US,AE,SE,IN,DK,FR,PL,FR,IE,US,CA,BR,AU,IN,GB,CA,IT,CZ,NL,US,DE,HK,US,GB,US,AU,CA,ZA,JP,AE,AU,BR,IN,DK,IE,IT,US,PL,CZ,SG,US,IT,US,CZ,RO,FR,IE,AE,AU,BR,IN,DK,CA,SG,US,CA,JP,NL,US,ZA,US,AU,US,HK,GB,DE,US,AU,JP,AU,FI,RU,BA,UA,BY,UZ,RU,MD,UA,MD,BY,MD,UA,RU,KZ,RU,UA,RU,UA,RU,UA,UZ,RU,UA,RU,KZ,BY,KZ,RU,UA,RU,UA,KZ,RU,UA,KZ,MD,RU,UA,RU,UA,BY,RU,UA,KZ,RU,KG,RU,KG,PL,RU,UA,RU,UA,RU,UA,GR,UA,RU,KG,UZ,MD,RU,UZ,UA,RU,UA,KG,RU,UA,RU,US,GR,US,CA,US,IT,DE,IT,DE,IT,BR,US,CH,US,DE,ZA,US,AU,US,BE,US,BE,US,CL,US,RU,UZ,KZ,UZ,UA,UZ,RU,UA,RU,KZ,UZ,FR,UA,RU,FR,KZ,MD,RU,MD,UZ,RU,ES,CH,JP,FI,GB,US,BR,US,GB,US,GB,US,NZ,NO,SE,US,GB,US,BE,GB,AU,GB,US,ZA,FR,US,CH,DE,CH,DE,CH,FI,GB,LB,FR,BE,NL,BE,IL,CH,DE,NL,RU,US,EE,SE,RU,AU,RU,DE,NL,RU,IL,AU,RU,AU,RU,AM,LU,AU,GB,UA,NL,UA,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,US,GB,US,GB,US,SG,IN,US,NL,US,SG,US,DE,US,CA,SG,US,SG,DE,US,NL,CA,GB,NO,PT,GB,AU,IN,ID,IN,BD,HK,CN,IN,VN,CN,HK,CN,ID,AU,ID,CN,IN,CN,GM,US,GB,US,GB,US,IN,US,AT,FI,SI,NO,US,CH,US,ES,LU,FR,LU,HR,LU,AU,US,HK,US,NO,US,VI,GB,CH,US,ZA,US,DE,US,SG,BR,US,CL,US,IT,US,SG,US,RU,CH,IT,SI,RU,IE,BG,NL,IM,US,IM,IT,NL,SE,FR,DE,PA,DE,PA,DE,PA,SE,NO,SE,US,NL,US,SE,NO,SE,IE,FR,US,SA,US,DE,US,DE,US,GB,US,GB,US,CA,US,DE,US,SE,US,ES,AU,US,GB,US,CA,SE,BE,SE,GB,ES,NL,ES,NL,CZ,DE,NL,AT,MK,ES,GB,DE,IE,US,DE,BA,IT,FR,EE,SE,RU,US,BR,NL,US,_,IL,RU,GE,US,SG,US,KR,HU,HK,US,AU,US,NL,NO,BE,DE,GB,SE,US,GR,EE,IS,GB,DE,GB,IE,ZA,GB,DE,SE,GB,US,FR,US,ES,US,GB,US,SG,US,FI,AU,JP,SE,CA,SG,ES,SG,US,DE,US,AU,US,JP,CA,US,GB,NL,IN,US,IT,KR,US,IE,MX,GB,DE,US,DK,KZ,US,CZ,DE,CZ,DE,CZ,US,AU,US,KR,FI,RU,DE,AT,FR,NL,CH,NL,RU,BZ,RU,JP,NL,IT,RU,EE,RU,DE,FR,NL,DE,AT,SE,US,RU,UZ,GB,BY,RU,NL,RU,NL,RU,BR,RU,US,RU,NL,RU,NL,RU,NL,RU,DE,SE,US,NL,RU,KR,US,TH,US,GR,US,CA,US,FR,US,GB,US,DE,IT,DE,US,CH,SG,CH,SG,CH,US,BR,AU,LU,GB,AU,US,NL,US,HK,US,SG,US,AU,US,NL,US,JP,US,NL,US,JP,CO,US,BG,HR,CY,EE,MT,ZA,JP,TW,MY,SG,TH,KW,MX,NZ,AU,TT,GB,US,CA,US,NL,US,IL,US,IL,US,KR,NL,IN,US,BR,ZA,DE,GB,US,CA,IL,US,CA,US,CA,US,AU,GB,AE,MX,IL,UA,GB,RU,NL,GB,US,DE,US,ES,DK,AT,FR,LB,BE,US,GB,SK,GB,RU,GB,DK,BG,FI,ES,DE,IT,ID,DE,US,BE,DE,LT,UA,ES,DE,US,DE,EG,KE,AE,KE,CH,BG,FR,HR,TH,SE,RS,AL,RS,FR,SK,FR,DE,RU,ES,EE,US,IT,RU,CH,NL,PT,US,PH,CH,IT,SI,BA,SI,JP,US,GB,SE,PL,NL,JP,AT,IT,US,NL,US,NL,US,NL,US,NL,US,SG,US,SA,ES,US,CH,GB,US,RS,US,HK,US,CA,PR,US,JP,BE,FR,GR,ES,US,FR,US,GR,US,JP,SG,JP,SG,JP,SG,US,AE,US,SA,FR,SA,GB,US,GB,US,AU,ZA,NO,US,GB,US,GB,US,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,ZA,NL,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,IT,NL,US,CA,US,PH,US,TR,US,AT,US,FR,US,CA,US,AU,US,CA,US,FR,DE,FR,GB,FR,DE,FR,DE,FR,DE,FR,GB,FR,PL,FR,DE,GB,FR,PL,FR,GB,FR,DE,FR,DE,FR,US,GB,IN,GB,IN,GB,IN,GB,IN,US,SG,US,ES,US,IN,ID,US,DE,GB,US,SG,US,GB,US,DE,US,DE,US,DE,US,DE,US,GB,US,ES,JP,MY,US,CA,US,_,US,CA,US,IN,US,CA,US,_,US,JP,US,IL,GB,US,IL,NO,DE,CZ,HK,ES,BR,AT,NL,DE,GB,NO,BE,SE,FR,DK,CH,AE,ZA,DE,GB,DE,NL,AE,DE,FR,FI,SE,ES,JP,CH,SG,CH,AU,CH,AU,NZ,AU,CH,GB,DE,FR,DE,GB,DE,NL,CH,IT,CH,PL,DE,CH,DE,IT,US,CH,US,FR,DE,FR,US,SK,JP,US,SE,NL,US,CA,US,GB,US,CA,US,SE,US,IT,US,PH,US,IL,US,CA,US,DE,US,DE,US,CA,US,JP,US,CA,US,CA,US,DE,US,CA,GB,US,CA,US,CA,US,GB,SE,US,GB,DE,US,AU,DE,GB,FR,GB,DE,US,CA,US,GB,US,IL,US,GB,US,CH,KR,US,DE,PS,IS,NO,IS,DE,IT,CA,GB,CH,GB,US,JP,GB,CA,US,BE,GB,US,AU,GB,US,DE,US,AU,FR,AU,SK,GB,FR,US,SE,US,CZ,SK,IL,GB,IL,US,SE,MX,JP,US,AU,PL,US,GB,KR,GB,AU,US,JP,US,AU,US,RU,SG,JP,FI,SG,IN,SG,US,HK,US,KR,GB,TH,IE,US,JP,US,HK,CA,GB,ZA,AT,NL,GB,US,NL,FR,DE,BR,KR,CA,JP,US,GB,US,SG,US,GB,IN,US,GB,US,GB,US,BR,SG,US,JP,GB,IT,GB,IT,DE,GB,RO,GB,UA,GB,ES,GB,JP,GB,DE,GB,CZ,IT,US,QA,GB,TW,JP,GB,US,BR,SG,GB,US,SG,AU,NL,BR,US,TW,BR,HK,US,BR,GB,AU,BR,IT,SE,US,BR,US,ZA,BR,IN,RO,US,GB,US,AR,US,AU,GB,US,CA,US,BR,AU,SG,US,BR,US,IN,US,QA,CA,GB,US,FR,GB,FI,JP,CA,KR,BR,SG,US,MX,US,NL,AT,NO,JP,US,JP,SG,US,AU,VN,AR,CL,BR,US,GB,US,NL,BR,US,JP,GB,JP,DE,US,BR,US,IN,ZA,US,SG,GB,US,CA,US,SG,US,SG,US,FR,CZ,IE,CA,US,DO,US,SE,ES,US,IE,GB,US,DE,US,SG,US,AU,IN,JP,US,BR,US,HU,SG,US,CA,US,GB,US,GB,IN,US,HU,US,GB,DE,US,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,BR,US,CA,US,CZ,AU,US,IE,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,FR,US,FR,DE,US,FR,US,BE,US,DE,FR,US,BE,DE,US,DE,US,BE,US,BE,US,DE,US,BE,US,BE,US,BE,US,DE,US,DE,US,BE,DE,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,BE,US,DE,BE,US,BE,US,BE,US,BE,US,BE,FR,US,BE,US,BE,US,BE,FR,US,BE,US,DE,US,BE,US,BE,FR,BE,US,BE,PT,HK,IN,AU,SG,IN,US,IN,GB,IT,CH,IN,DK,IE,US,SA,US,FR,US,CA,IT,GB,BE,GB,US,GB,MF,US,CA,US,HK,US,CA,HK,TW,HK,TW,PF,SG,US,CA,US,CA,SG,PT,CN,PT,US,SG,US,SG,US,SG,US,SG,US,SE,GB,US,FI,DE,RS,CA,US,GB,US,PL,NO,US,GB,US,DO,PE,HT,DO,US,HK,US,SG,US,AU,US,AU,US,GB,US,GB,US,GB,US,GB,US,GB,US,SG,GB,CH,GB,US,SG,US,GB,CH,US,SG,GB,US,SG,US,SG,US,SG,GB,US,GB,US,SG,US,HK,US,GB,US,CH,US,CH,US,CH,US,JP,LU,SA,US,IN,CA,US,CA,NO,US,JP,US,SE,US,SE,US,NO,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,FR,CL,FR,US,AU,US,SE,US,DE,US,OM,US,DE,SG,ID,US,NL,DE,US,DE,HK,US,NL,US,DE,US,VN,US,DE,US,DE,US,DE,US,DE,US,SG,US,ID,US,DE,US,DE,US,HK,US,IN,SG,US,IN,US,SG,US,SG,US,VN,IN,US,SG,US,BR,SG,BR,VN,HK,DE,US,DE,HK,US,HK,US,HK,US,DE,US,DE,SG,US,SG,US,SE,JP,US,_,HR,US,BR,US,CA,US,SG,US,FR,US,CA,US,GB,US,GB,AU,US,GB,US,CH,US,DE,US,SG,US,AU,CH,GB,AT,US,NL,MX,AU,MX,US,MX,SG,MX,PY,AR,MX,AR,MX,CO,PE,CO,US,GB,CH,MX,JP,MX,DE,GB,IE,GB,NO,GB,AR,GB,LU,US,LU,AU,LU,US,LU,MY,SG,TH,KR,ES,US,JP,SG,PH,BR,TH,CL,US,PH,TH,HK,PH,TH,US,FR,GB,KR,TH,PE,AR,IN,SG,TW,FR,PH,US,PH,TW,SG,DE,GB,FR,US,SA,HK,TH,ID,US,DO,TR,US,GE,GB,IT,LB,FR,AT,NL,IT,SC,TR,SA,IT,DE,GR,IT,MD,KZ,US,CA,NL,US,NL,US,CA,NL,US,BE,IE,CA,US,CA,US,IE,US,CA,GB,US,CA,US,CA,US,CA,US,CA,US,GB,CA,GB,US,GB,CA,GB,US,CA,GB,US,GB,US,GB,CA,GB,US,GB,CA,US,GB,CA,GB,CA,GB,US,GB,CA,US,CA,US,GB,CA,US,CA,US,CA,US,CA,US,CA,RO,US,PL,CA,US,CA,HR,CA,HR,SI,ES,US,CA,US,CA,US,CA,SE,EE,HR,CA,CH,CA,US,CH,US,FR,CA,FR,CA,FR,CA,FI,CA,US,CA,US,NL,GB,IE,CA,GB,CA,US,ES,US,IT,CZ,SK,US,PL,US,HR,US,ES,CA,US,CA,US,ES,CA,DE,FR,US,CA,US,RO,SI,US,CH,FR,US,FI,US,NL,US,BG,US,CA,LU,BG,PL,FR,CA,PL,US,UA,US,CA,US,CA,IT,CA,FR,CA,GB,US,CA,US,CA,GB,CA,US,BE,CA,ES,US,CA,US,NL,US,BG,CA,FR,NO,CA,FR,GB,US,GB,US,GB,CA,GB,NL,ES,CA,BE,DK,DE,PT,GB,ES,IT,FR,US,CA,DE,US,FR,SE,US,FR,CA,AT,CH,FR,ES,CA,HU,CA,GB,EE,CA,UA,ES,CA,US,ES,US,CA,US,CA,US,CA,US,CA,FR,CA,US,CA,US,CA,US,CA,GB,CA,DE,US,IQ,DE,CA,DE,US,CA,GB,US,NL,GB,US,GB,CA,GB,US,GB,CA,US,GB,US,GB,US,GB,CA,ES,CA,US,CA,US,CA,US,CA,ES,HR,US,CA,US,CA,FR,US,FR,US,FR,DE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,NO,US,CA,US,CA,US,CA,US,AT,CA,IT,US,ES,SK,GB,SK,CA,US,CA,US,CZ,CA,CZ,KZ,CZ,CA,CZ,US,IT,US,FR,US,CA,GB,CA,PL,US,CA,US,FR,CA,US,CA,US,ES,DE,GB,US,FR,CA,GB,CA,DE,CA,IE,NL,US,CA,GB,CA,GB,NL,CA,FR,CA,UA,US,FR,US,CA,US,CA,NL,US,CA,GB,GR,US,CA,SE,CA,NL,CA,SE,CA,DE,US,CA,CH,ES,US,GB,US,CA,US,GB,CA,NL,US,CA,US,CA,NL,SE,CA,FR,CA,GR,FR,CA,FI,CA,GB,US,CA,US,CA,US,CA,NL,US,CA,DE,CA,GB,CA,US,RO,CA,US,CA,US,CA,US,CA,US,GB,DE,US,SE,US,GB,CA,US,BE,GB,FR,US,CA,DE,US,CA,GB,CA,US,ES,CA,US,CA,US,NL,FR,CA,DE,CA,UA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,FR,CA,US,GB,CA,US,CA,US,CA,GB,US,CH,CA,US,CA,US,CA,DK,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,ES,US,CA,US,CA,GB,CA,US,CA,HU,CA,HU,CA,US,CA,IT,CA,IT,US,IT,CA,IT,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,GB,US,CA,US,CA,US,GB,CA,US,GB,US,GB,US,GB,US,CA,FR,CA,US,ES,CA,US,CA,FR,US,FR,US,FR,CA,ES,PT,CA,US,CA,US,NL,US,CA,US,CA,BG,CA,BG,US,ES,US,ES,US,LU,US,LU,CA,US,CA,US,CA,US,CA,US,CA,DE,US,DE,US,DE,NL,DE,AT,CA,US,DE,CA,LB,DE,PL,GB,CA,US,CA,US,CA,US,CA,FR,US,NL,FR,US,CA,US,CA,US,IT,FR,CA,FR,CA,US,CA,GB,CA,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,ES,US,CA,GB,CA,LT,CA,FR,CA,US,CA,GB,CA,GB,US,CA,US,CA,US,CA,US,CA,NL,CA,GB,CA,US,CA,DE,US,CA,TR,FR,CA,CH,CA,US,CA,US,LU,CA,UA,CA,DE,US,CA,NL,CA,LV,US,GB,CA,GB,NL,CA,US,CA,DE,US,CA,NL,GB,CA,PL,US,CA,ES,DE,PT,US,CA,US,CA,GB,US,CA,US,CA,US,FR,US,CA,IT,US,CA,US,NL,GB,IE,US,CA,FR,DE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,GB,US,CA,US,CA,DE,CH,US,CA,US,GB,US,GB,FR,CA,PL,CA,US,CA,RS,CA,ES,RO,CA,GB,CA,US,CA,US,BR,CA,US,CR,US,AU,PA,AU,GB,US,BR,MY,CR,US,SC,US,NL,TH,CA,NL,US,BR,ES,US,NL,US,SG,US,IN,NL,BE,US,GB,ES,US,AU,FR,TR,DE,US,BR,US,NL,VN,RO,GB,US,DE,GB,US,BR,US,DE,US,NL,BR,NL,US,NL,DE,GB,US,CA,US,NZ,US,JP,IN,IT,US,KR,US,JP,IL,US,EG,US,CA,AT,US,DE,SG,US,NZ,US,CA,US,GB,US,PE,BR,AR,CO,BR,MX,BR,DO,GB,US,BR,US,GB,AU,US,MX,CL,US,BR,PE,US,GB,DE,ES,IM,GB,US,NL,US,GB,US,IN,US,CZ,US,CA,US,KZ,US,JP,US,SG,AU,US,NL,US,DE,US,UA,US,IT,US,HK,US,PH,US,ES,CA,IT,NO,ES,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,TR,DE,US,IE,NL,FR,DE,US,CA,US,DE,SG,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,US,NO,US,GB,LT,GB,US,DE,US,DE,US,GB,DE,GB,US,CA,DE,NL,DE,CA,US,CA,FI,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,FR,US,CA,US,CA,US,CA,US,CA,ES,US,CA,US,CA,US,CA,ES,CA,ES,US,CA,US,BE,US,AT,US,IE,US,IT,US,GB,US,BR,ES,GB,US,AT,US,HK,US,NL,US,CZ,US,GB,US,HK,US,GB,US,GB,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,GB,DE,PK,DE,CN,US,IL,GB,DE,AU,US,JP,HK,DE,NL,DE,GB,US,JP,DE,HK,AU,HK,JP,US,DE,NL,GB,EE,AU,HK,US,PL,AR,GB,DE,EC,TR,GB,JP,SG,US,SG,CH,IT,SE,DK,CA,DE,FR,DE,CA,US,TR,NL,US,NL,US,GB,US,NL,US,DE,US,AF,JP,US,CA,US,NL,US,CZ,US,BR,TR,DE,US,NL,CR,US,CA,US,TR,DE,US,AT,US,NL,DE,AU,US,NL,DE,BR,US,JP,BR,US,NI,US,NL,US,BE,US,GB,DE,US,NL,US,NL,US,RU,IT,US,DE,BR,US,DE,CA,US,JP,HK,RU,DE,SI,IT,CZ,FR,RU,ES,IT,BG,GB,US,GB,PK,ES,IT,US,ES,US,FR,US,ES,GB,HK,GB,IE,US,ES,US,SE,GB,IT,GB,IT,GB,US,IT,DE,US,ES,US,BR,US,AR,BR,AR,US,CA,US,AR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,BR,CL,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,GB,US,DE,US,GB,DE,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,US,DE,GB,DE,GB,US,DE,US,GB,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,US,GB,US,GB,DE,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,US,DE,US,GB,DE,US,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,GB,DE,GB,DE,US,GB,DE,GB,DE,GB,DE,GB,US,DE,US,DE,GB,DE,US,GB,US,GB,DE,GB,US,DE,US,DE,US,GB,DE,GB,DE,US,GB,US,TR,NL,US,FR,GB,IT,PL,IT,US,GB,AR,GB,ES,KR,DE,EE,VN,PH,TH,ID,IN,AE,JP,MO,VN,IN,KR,QA,SA,US,ID,PH,US,IN,AO,EG,AO,EG,US,VN,MY,AU,ID,PH,TH,IN,FR,US,KR,AU,AE,GB,SA,US,TH,US,VN,DE,FR,KR,ES,GB,JP,US,EE,NL,DE,AU,HK,GB,HK,SG,GB,ES,CA,US,DE,PT,US,MX,SG,IL,US,IL,CH,FR,US,SG,GB,CA,GB,HK,GB,IE,CA,SG,US,AU,DE,JP,CL,US,SG,US,DK,UA,CO,GB,DE,HK,DE,KR,FR,KR,IN,SG,KR,AE,TW,AE,PH,AU,TW,ES,JP,ZA,ES,JP,TW,HK,MO,LA,MM,KH,FR,JP,GB,KR,JP,US,GB,KR,IN,US,GB,KR,DE,FR,GP,FR,US,PT,US,BG,FR,ES,US,ES,US,FR,NL,US,FR,ES,GB,US,ES,US,GB,US,ES,US,ES,US,ES,US,ES,US,DE,US,NL,US,NL,US,GB,US,NL,GB,US,CA,NL,CA,US,GB,US,NL,US,GB,US,GB,US,GB,US,GB,US,GB,US,NL,US,GB,US,CA,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,NL,US,GB,US,CA,ES,US,ES,US,ES,US,ES,US,FR,NL,FR,BR,FR,IN,US,FR,BR,NL,LT,IT,US,GB,BR,MO,ES,DE,GB,HK,DE,GB,HK,DE,HK,DE,HK,DE,HK,DE,GB,HK,DE,GB,DE,HK,GB,HK,GB,US,TR,DE,SG,SK,BR,CZ,ES,IT,CH,RO,UA,BG,US,PL,FR,GR,HR,ZA,US,SG,BR,US,HK,US,SG,US,HK,TW,HK,JP,HK,JP,TR,TH,TR,SA,BR,CO,CL,BR,PH,FR,VN,ID,TR,MX,ZA,MX,CL,RU,HK,KW,QA,AR,DE,AE,SA,AR,CO,PH,NP,PH,TH,PH,MY,TH,ID,TW,QA,RU,VN,ZA,VN,BR,RU,US,HK,UZ,US,KZ,US,KZ,US,KZ,US,FR,US,IT,US,AU,FI,US,EE,US,IL,GB,US,IL,GB,GR,GB,US,ID,SA,ID,US,IN,US,IE,IN,US,_,CA,US,KY,BL,US,CA,US,CA,US,CA,US,KN,US,FR,US,_,MF,US,CA,US,CA,US,_,US,_,US,CA,US,CA,_,CA,US,_,CH,_,CA,_,CH,_,US,_,CA,_,ID,US,CA,US,CA,US,GB,US,HK,JP,SA,AR,CL,US,CA,US,CA,US,CA,US,GB,IL,NL,US,FR,US,IN,US,CA,GB,CA,US,CH,DE,CH,ES,GB,JP,SA,RU,HU,ES,CH,BE,DE,BE,US,BE,US,BE,IS,US,HK,RU,GB,AZ,SI,ES,RU,FI,DE,RU,US,RU,US,RU,US,RU,US,RU,US,PL,US,RU,US,RU,US,RU,DE,RU,US,RU,US,SG,HK,SG,US,KR,US,SG,TW,SG,HK,IN,ID,US,BR,US,CO,US,CL,US,IT,CH,BE,US,BE,HK,BE,AU,US,NL,DE,GB,US,CA,US,GB,DE,US,IT,TR,US,NL,US,GB,US,HR,LV,US,GB,US,GR,IM,PT,IS,US,AU,US,NL,KW,AT,US,IE,US,RU,DE,FR,IT,AT,RU,FI,RU,DE,AT,IT,US,DE,GB,SG,GB,ES,IT,ES,KZ,BE,GB,PL,IE,US,AU,US,GB,AU,DE,US,GB,AU,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,FI,GB,US,IN,US,IE,US,SG,US,HU,JO,DE,FR,DE,FR,PL,FR,GB,FR,GB,FR,GB,FR,DE,GB,DE,NO,GR,NL,DE,DK,DE,CH,DE,GB,DE,SG,DE,BR,DE,SA,MX,DE,NL,DE,NL,DE,ES,DE,NL,DE,NL,DE,NL,DE,US,DE,BE,SG,JP,HK,IN,SG,JP,AU,JP,IN,US,BR,US,BR,US,GB,DE,GB,DE,GB,DE,US,SG,DE,GB,DE,US,CA,US,GB,CA,US,CA,US,CA,DE,FR,US,GB,RU,US,NL,US,GB,CH,GB,CZ,GB,RU,GB,UA,RU,FR,AZ,RU,GB,LI,GB,IQ,TR,IQ,CN,JP,US,JP,HK,JP,DE,JP,VN,TH,JP,TH,SG,TH,VN,JP,AU,US,CA,NO,HK,KH,IN,TH,IN,TH,NZ,AU,IN,HK,BD,TW,KR,AU,MY,KR,IN,ID,NP,ID,IN,CA,LU,NG,IL,SG,ID,IN,ID,SG,MY,NZ,IN,SG,NZ,IN,MV,JP,GB,FR,NP,IN,TH,TR,US,IN,ID,IN,US,SG,KR,HK,KR,IN,SG,HK,KR,SG,IN,TH,JP,HK,TH,JP,KR,US,FR,US,FR,US,CA,US,FR,US,CA,US,CA,FR,US,CA,US,FR,US,FR,GB,FR,US,FR,GB,FR,GB,FR,US,FR,US,FR,GB,FR,US,CN,TW,US,CN,US,ES,IN,PK,NL,AU,BD,SG,ID,IN,KH,IN,HK,TW,HK,IN,ID,IN,MY,TW,HK,AU,IN,US,TW,IN,CN,MN,IN,HK,IN,ID,IN,MY,ID,CN,IN,HK,IN,HK,BD,KR,TW,IN,CN,US,SG,PL,GB,IL,HK,AU,US,BR,US,AU,US,DE,US,SE,US,CN,GR,US,GB,US,IT,JP,US,KR,AU,US,CN,US,BR,US,BR,US,GB,US,AU,US,FR,US,IT,US,KR,US,VE,US,AU,US,CA,US,CA,AR,US,CA,US,JP,SG,MA,AE,SA,JP,US,KR,US,AU,GB,CH,NZ,AU,US,CH,ES,US,IT,US,BR,US,SG,DE,BR,BH,IN,BR,DE,IE,BR,IE,SG,US,IE,DE,BR,GB,US,DE,GB,JP,US,KR,SE,CA,IE,GB,HK,IT,JP,ES,AU,CA,US,CN,GB,US,GB,US,BR,US,AU,US,JP,SG,US,IE,AU,IN,IE,DE,US,CN,JP,ZA,IE,US,IE,US,DE,JP,US,IE,SG,CA,US,AU,IN,HK,IN,KR,SE,AU,DE,IE,DE,IN,US,DE,US,JP,GB,HK,US,JP,AU,US,IE,SE,IE,US,GB,ZA,US,IN,US,DE,US,GB,US,IN,US,SG,IN,US,BR,IT,DE,US,IN,US,GB,IE,US,CN,US,SE,US,AU,JP,AU,US,NL,CA,US,SA,JP,BR,JP,GB,IN,DE,US,JP,BR,IN,SA,KR,US,IN,GB,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,ES,CN,IN,CN,AU,HK,NZ,CN,IN,CN,IN,US,HK,US,CN,TW,BD,TL,CN,HK,NZ,KR,AU,IN,KR,IN,CN,IN,ID,MY,CN,IN,HK,CN,HK,CN,HK,US,CN,HK,CN,IN,US,ES,US,JP,US,CN,JP,US,HK,SG,FR,US,BR,NL,BE,US,IT,US,CA,BR,US,PS,US,PL,CN,RU,UA,RU,HU,IT,GB,IT,FR,DE,FR,IT,SG,IT,FI,IT,US,KE,SG,US,DE,GB,US,AU,US,NL,US,GB,US,AU,SE,US,BR,US,BR,AU,US,AU,US,FR,CA,US,ES,CA,US,IN,US,NZ,ZA,IT,US,ID,SG,ID,US,CA,AR,CL,ZA,US,NZ,NO,IT,US,FI,US,DK,BR,US,FI,FR,DE,US,SG,GB,US,GB,US,PL,FR,US,CH,US,GB,DE,AU,SG,US,FR,GB,PL,FR,US,GB,AU,US,GB,US,TR,DE,US,CA,US,CA,US,CA,US,JP,US,GB,US,HK,BR,HK,US,NL,US,DE,FR,DE,US,BR,US,KR,US,JP,US,BR,US,CA,JP,IL,US,SG,US,GB,US,DE,BR,US,IE,DE,US,JP,SG,AU,KR,GB,US,SG,US,SE,NO,_,US,DE,US,DE,US,GB,US,_,SA,US,BE,DE,SE,AU,US,GB,US,ES,CH,SG,CH,NL,US,JP,IN,JP,US,IN,GB,US,DE,IL,KR,US,DE,US,IL,KR,US,JP,IN,SG,AU,DE,GB,US,IL,ID,US,JP,IN,SG,AU,DE,GB,US,IL,US,ID,US,AU,US,BE,US,ZA,US,AU,BR,US,IN,BE,HK,US,HK,US,BR,US,BR,NO,US,DE,US,SG,US,GB,US,GB,JP,GB,IN,AU,US,GB,JP,SG,KR,IL,IN,NL,IE,FR,DE,PL,CH,US,BR,US,AU,GB,SE,US,GB,FR,DE,NL,SG,JP,AU,GB,US,NZ,GB,US,FR,_,DE,_,GB,IR,AT,NL,DE,US,DE,IT,GB,HK,FR,US,ES,IS,PL,CH,NL,GR,AT,GB,RU,NL,BE,IQ,KZ,SE,GB,SK,MK,BG,GB,BG,GB,BG,IT,BG,ES,BG,ES,BG,GB,BG,ES,BG,KZ,NL,RU,SE,GB,CH,SE,US,ES,SE,ES,CZ,GB,RU,DE,IR,SE,IT,NL,ES,US,PL,BE,PL,RO,JP,RO,US,ES,RO,KW,RU,CH,GB,PL,TH,HK,ES,ID,UA,CZ,NO,BY,TR,BG,GB,NO,ES,SE,CH,DE,RU,PS,RU,ES,GB,DE,GB,SE,BG,HR,DE,HR,AE,SA,DO,US,PH,HK,PH,HK,KR,NG,JP,US,ID,IN,GB,IN,VN,TW,HK,RU,ID,AE,US,KR,HK,BR,GB,BR,JP,US,HK,SG,VN,HK,RU,TW,US,HK,PH,KR,TH,VN,HK,VN,US,AF,SA,US,GB,US,ES,US,NL,CA,NL,US,SG,US,IN,AT,SI,AT,DE,AT,DE,LU,AT,CL,AT,DE,AT,UA,AT,US,AT,FI,AT,CO,AT,US,AT,IL,AT,US,IN,US,CA,US,NO,US,NZ,ZA,CO,MX,AE,IL,IN,JP,HU,IN,BR,CH,AU,GB,IN,KR,US,AU,JP,SG,KR,US,DE,US,KR,DE,NL,IN,JP,KR,JP,US,DE,US,BR,AU,KR,GB,US,DK,CL,US,AU,FR,GB,US,FR,US,AU,BR,US,CH,DE,NL,GB,IR,SK,LV,GB,US,ES,TR,PS,IR,GB,PL,ES,UA,GB,IT,CZ,GB,CH,NL,IT,DE,FR,ES,DE,RU,FR,GR,ES,US,GB,RU,ES,FR,ES,FR,NL,PS,RS,RO,CH,DE,ES,IT,GB,FR,DE,ES,NO,FR,US,NL,FR,RU,GB,US,GB,US,GB,US,GB,NL,GB,RU,AT,US,SI,DE,ES,DE,US,NL,US,DE,NO,AU,BR,NO,DK,CH,US,AU,KR,US,HK,SG,TW,HK,SG,HK,JP,HK,TW,HK,SG,TW,HK,DE,HK,TW,HK,TW,HK,SG,HK,SG,HK,SG,HK,DE,HK,SG,HK,SG,HK,JP,HK,ZA,HK,TW,HK,TW,HK,JP,HK,SG,HK,SG,HK,SG,JP,HK,PH,HK,CN,GB,ZA,US,GB,DK,US,JP,ID,US,DE,US,CN,US,GB,CL,US,DE,US,AU,US,KR,GB,US,BE,NZ,US,UY,US,PL,DE,US,FR,US,CA,US,DE,US,GB,US,CZ,US,GB,HU,SK,US,BG,GB,FR,NL,GB,US,GB,IT,GB,US,CH,US,CH,ES,US,ES,GB,US,NO,US,GB,FR,GB,FR,US,GR,GB,US,PT,US,PT,GB,IT,US,GB,US,GB,US,AT,FR,GB,US,GB,US,GB,US,ES,GB,US,UA,US,IT,US,GB,US,GB,US,GB,IT,DE,FR,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,FR,US,GB,US,GB,US,HK,SG,HK,US,SG,US,GB,US,GB,US,HK,US,SG,US,SG,US,NZ,US,JP,DO,AR,CL,US,CO,US,BE,US,GB,US,HK,US,GB,HK,US,NL,US,ES,US,BE,US,GB,HK,US,HK,GB,US,GB,US,HK,US,GB,US,DE,NL,DE,FR,US,JP,US,JP,HK,NZ,US,GB,US,JP,US,NL,US,AE,MX,US,MX,US,IN,US,ZA,BE,US,CO,US,BE,US,BE,US,GB,HK,CO,US,HK,US,SG,US,IN,US,BR,IN,US,BR,US,MX,US,HK,US,BR,US,AU,US,AU,US,AT,SE,ID,US,BE,PL,US,GB,AU,US,GB,US,HK,US,HK,US,BR,US,BR,CO,US,BE,US,BE,US,SG,US,JP,US,ES,HK,US,IT,BE,US,FR,US,GB,US,BE,US,GB,AU,US,NL,US,AU,US,CA,SG,SE,US,BR,US,BE,US,CO,CU,US,SG,US,FR,CH,FR,DE,FR,US,CL,HN,AR,CO,NI,AR,CL,CR,BR,CN,FI,US,CN,HK,CN,US,SI,US,NO,US,DE,US,PL,SG,US,CN,US,HK,US,AU,US,JP,US,SG,US,NO,US,SG,US,CH,US,SG,US,CH,US,DE,US,DE,US,SE,BE,US,LT,US,SG,GB,ID,PL,ES,DE,CA,DE,ES,GB,DE,LU,DE,GB,SE,BE,FR,CH,IT,ES,DE,FR,AT,ES,DE,SE,IS,DE,NL,AT,GB,DK,FI,CZ,IE,PL,PT,IL,GR,NO,LU,DE,GB,IT,GR,LT,DE,LT,DE,GB,US,NL,FR,DE,LU,DE,GI,SA,DE,US,DE,BE,DE,BE,CN,DE,CN,US,AU,CH,NO,NZ,SE,AU,SE,BR,SE,BE,SE,US,SE,US,JP,SE,NO,SE,US,CN,JP,AU,JP,HK,JP,TH,JP,HK,JP,ZA,BW,CI,GA,MU,UG,CI,TZ,ZA,GA,NA,US,HK,US,DE,US,DE,MX,DE,NL,US,NL,US,CA,US,CA,US,CA,US,GB,US,GB,US,FR,CA,US,CA,FR,US,NL,US,NL,US,GB,US,FR,DE,ES,US,CA,US,CA,GB,US,GE,US,KW,BE,KR,ZA,SE,ES,US,JP,IN,FR,TR,RO,US,GB,DE,GB,DE,GB,DE,GB,US,DE,GB,DE,GB,US,RO,ES,NL,US,CA,US,CA,US,CA,TR,US,TR,NL,US,TR,US,RO,US,RO,TR,NL,TR,US,CZ,US,BE,US,GB,US,GB,US,GE,US,NL,DE,US,CA,US,ID,BR,US,HK,AU,VN,LT,US,JP,TH,PH,US,DE,NL,US,DE,US,AU,US,NL,US,NL,US,FR,US,DE,US,CA,RO,US,PL,US,CA,FI,FR,BR,DE,IL,US,GB,JP,HK,CN,US,CA,FR,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,GB,US,NL,US,KR,CA,US,DE,ES,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,DE,GB,US,GB,DE,US,HK,US,CA,US,FR,US,CA,US,NL,CA,NL,HK,NL,HK,JP,US,FR,MX,US,HK,US,DE,US,CA,US,GB,US,NL,CA,US,CA,FR,US,FR,MX,US,FR,US,CA,US,FR,US,CA,GB,US,PL,US,NL,US,DE,US,FR,US,NL,US,CA,FR,US,PL,IN,US,BR,US,GB,ES,GB,ES,IT,GB,NL,GB,US,GB,FR,GB,DE,FR,GB,DE,GB,DE,GB,DE,GB,DE,NL,GB,DE,GB,DE,GB,DE,CH,DE,CH,DE,CH,DE,ES,IT,US,ES,BE,ES,GB,DE,FR,US,ES,CH,GB,DE,FR,GB,DE,GB,DE,FR,GB,DE,FR,DE,GB,NL,FR,NL,FR,DE,GB,AT,GB,BE,IT,ES,GB,FR,ES,PL,BE,NL,CH,IT,BE,PT,NL,IT,NL,FI,ES,NL,IT,NL,BE,NL,BE,GB,LU,BE,LU,GB,BE,GB,DE,GB,FR,GB,US,CH,NL,GB,IT,GB,CH,GB,DE,GB,ES,GB,US,GB,DE,GB,CH,GB,CH,GB,KE,US,DE,ZA,DE,US,DE,GB,DE,NL,HK,BR,NL,US,NL,US,NL,SG,DE,HK,DE,ZA,DE,ZA,NL,US,DE,ZA,US,ZA,NL,DE,US,DE,ZA,DE,MX,DE,NL,DE,ZA,SG,ZA,DE,US,DE,JP,DE,ZA,US,JP,KR,BR,DE,US,ZA,LU,DE,ZA,JP,DE,US,DE,US,DE,GB,DE,ZA,DE,US,DE,AU,DE,BR,ZA,DE,AU,DE,ZA,DO,DE,ZA,DE,ZA,NL,DE,US,ZA,NL,US,ZA,US,CA,US,BR,DE,US,GB,US,TW,US,FR,DE,US,GB,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,CA,US,BR,CA,US,NL,US,HK,US,DE,US,DE,US,CA,US,FR,DE,NL,US,DE,US,DE,US,DE,US,BR,FR,US,PK,US,DE,US,TH,US,DO,US,NL,US,KR,US,DE,US,JP,US,TH,US,CA,US,MX,US,CH,US,PL,FR,JP,CA,US,CN,US,JP,FR,US,PL,FR,US,FR,IL,LU,US,BR,FR,JP,ES,US,FR,US,DE,US,ES,US,CA,US,FR,JP,SG,HK,US,ES,SG,KR,US,TW,US,JP,US,SG,HK,US,SG,US,JP,GB,JP,GU,CA,JP,CA,US,AU,US,NZ,US,HK,PH,US,MO,PH,CN,HK,PH,US,HK,SG,CN,HK,SG,US,SG,US,SG,ID,SG,US,SG,US,HK,PH,HK,US,HK,CN,US,SG,PH,HK,US,CN,HK,CN,US,JP,US,HK,CA,US,ES,GB,US,DE,GB,US,ES,US,FR,NL,CA,US,ES,US,ES,US,CA,US,CA,US,FR,US,GB,US,GB,NL,US,GB,ES,US,ES,US,GB,US,HK,US,GB,US,CA,US,CA,US,HK,US,GB,US,GB,US,FR,US,CA,US,CA,US,GB,US,CA,US,DE,US,GB,US,HK,US,HK,US,HK,US,DE,US,DE,US,SG,US,BR,US,BR,US,ES,US,SG,HK,US,HK,AU,US,HK,US,FR,US,PL,US,FR,IT,DE,US,ES,DE,BE,FR,US,GB,FR,US,JP,ES,GB,FR,BR,US,FR,US,DE,US,GB,ES,US,CA,US,CA,US,DE,US,BR,US,FR,US,FR,GB,US,CA,GB,US,PL,US,CA,GB,US,FR,BE,AE,PL,US,JP,FR,US,PL,US,PL,DE,NL,US,IT,US,ES,US,BR,US,IN,US,IN,US,AU,CA,CH,US,ER,GW,SZ,MR,TJ,MN,KM,TO,FR,US,GB,US,BR,US,IN,US,AR,IN,US,ES,US,GB,US,GB,US,GB,US,GB,US,GB,US,CA,US,CA,US,CA,GB,US,JP,US,DE,HK,DE,HK,GB,US,GB,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,PL,US,BE,DK,FR,DE,CN,US,FR,DE,GB,US,AT,US,GB,US,PL,US,JP,FR,US,SG,FR,US,FR,BR,PL,US,PL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,US,GB,US,GB,NL,GB,NL,US,NL,DE,US,ES,FR,US,CA,US,CA,US,CA,DE,FR,US,CA,US,HK,US,HK,US,CA,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,CA,US,JP,SG,HK,SG,HK,US,HK,US,HK,SG,HK,US,CA,US,JP,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,CA,FR,US,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,CA,US,CA,US,GB,US,GB,HK,GB,SE,BR,US,IN,FR,GB,ID,CA,LT,NL,US,SG,IN,BE,CA,BE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,GB,CA,US,CA,US,CA,US,CA,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,ES,US,CA,US,CA,US,CA,US,CA,US,FR,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,SE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,BG,CA,BG,CA,US,CA,US,CA,US,CA,US,CA,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,US,CA,CH,CA,US,ES,CA,US,CA,US,CA,GB,US,CA,US,CA,US,DE,US,CA,FR,US,CA,ES,US,ES,NL,MK,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,FR,CA,FR,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,US,IE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,FR,US,CA,US,CA,US,CA,US,FR,US,CA,FR,CA,US,GB,CA,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,CA,US,CA,US,ES,CA,ES,HR,CA,US,CA,DE,CA,US,CA,US,CA,US,GB,US,GB,CA,GB,CA,GB,US,GB,CA,US,CA,US,CA,US,CA,GB,CA,NL,CA,US,CA,US,CA,US,IT,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,DE,CA,US,CA,US,CA,CO,CA,AT,JP,NL,US,JP,GB,US,BE,US,HR,ZA,US,NL,CA,FI,US,CA,US,CA,US,CA,US,GB,US,GB,US,GB,CA,GB,CA,ES,CA,US,CA,ES,US,ES,US,CA,US,CA,US,RO,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,ES,US,ES,US,ES,US,ES,US,ES,US,ES,US,ES,US,ES,US,ES,DE,US,DE,US,DE,AU,DE,GB,US,DE,US,DE,HK,DE,US,GB,US,GB,US,GB,US,GB,US,DE,LT,GB,US,DE,US,FR,US,FR,DE,US,DE,FR,US,GP,MQ,GP,FR,US,IN,FR,BR,FR,US,FR,US,FR,US,DE,US,IE,GB,IE,US,IE,GB,US,IE,US,IE,US,NL,US,NL,US,FR,US,FR,US,FR,US,GB,NL,US,GB,US,GB,US,GB,US,GB,US,GB,NL,GB,US,GB,RO,US,NL,US,DE,CA,DE,GB,US,JP,CA,US,DE,FR,DE,JP,FR,SG,CA,US,FR,CA,DE,AU,CA,US,CA,FR,JP,US,FR,BE,NL,BE,US,BE,US,TR,US,TR,US,TR,FR,US,CH,US,HK,US,HK,US,ES,US,ES,US,TR,US,PT,US,LR,PT,US,GB,US,DE,US,GB,US,FI,US,SG,US,GB,US,ES,US,BR,US,NZ,US,GB,US,FR,MK,US,FR,US,JP,HK,RO,MD,US,FR,GB,US,SG,BR,US,BR,IN,FR,US,LT,IT,FR,US,DE,US,DE,US,ES,US,ES,US,IT,US,IT,GB,GR,US,GR,US,GR,US,GR,DE,FR,US,FR,US,CH,US,CH,US,DE,US,NL,US,NL,IL,NL,US,NL,US,NL,IN,NL,IN,NL,US,PK,GB,ES,US,ES,US,DE,US,ES,US,ES,FR,US,TR,US,TR,US,TR,US,TR,US,FR,US,PK,FR,US,NL,US,NL,US,NL,US,GB,US,GB,LB,GB,US,DE,US,ES,US,GB,DE,ES,DE,ES,GB,US,AL,US,IT,US,ES,US,ES,US,ES,US,ES,US,GB,IM,GB,US,GB,NL,US,NL,IN,IT,NL,IN,NL,IN,US,IN,NL,US,NL,US,CH,NL,US,ES,US,ES,US,ES,GH,US,ES,US,GB,US,GB,US,GB,US,GB,US,CA,GB,US,GB,LB,GB,US,RS,US,ES,US,NL,US,ES,US,ES,US,ES,US,ES,US,ES,US,ES,US,FR,US,FR,US,LT,NL,US,SG,LT,ID,US,GB,US,GB,US,GB,US,GB,US,GB,IT,US,IT,US,ES,US,ES,US,ES,US,ES,GB,US,BE,US,ES,US,ES,US,JP,US,PR,US,ZA,NG,MU,ZA,GH,LR,BJ,SN,GB,MU,ZA,MU,ZA,CI,BF,ZA,US,ZA,AO,NG,ZA,AO,MU,ZA,CI,MU,AO,LS,ZA,CI,MW,BJ,ZA,BF,ZA,CI,UG,NE,TZ,MU,KE,ZA,FR,TZ,ZA,DJ,GB,KE,ZA,RE,CI,RW,TD,ZA,NG,ZA,KE,MU,TG,CM,ZA,BW,ZA,AT,MU,SC,ML,MU,US,MA,ZA,MU,CI,AO,CI,ZA,ST,LR,KE,UG,GH,TZ,SO,MU,NG,ZA,KE,ZA,KE,ZA,AE,SO,CD,ZA,TZ,ZA,CI,CM,UG,TN,KE,ZA,NG,MU,ZA,CD,SO,LY,ZA,BW,BI,SO,BF,US,LY,GQ,GW,TZ,GB,ZA,MU,ZW,BW,SS,DZ,ZA,CI,BI,LY,TD,MU,ZA,SO,LY,ZA,MU,ZA,TD,TZ,SN,MU,ZA,CM,ZA,ZM,MU,ZA,HR,US,KE,ZA,TZ,KE,PK,HK,US,NG,HK,US,HK,BE,US,HK,US,HK,ID,TR,GB,PG,US,AU,UA,PL,HK,ZA,US,KY,US,GB,DE,HK,PT,PK,US,HK,JP,SG,HK,US,HK,SG,HK,US,SG,HK,SG,HK,US,SG,HK,SG,HK,SG,HK,PH,SG,MY,IN,ES,US,HK,ES,JP,US,EG,VE,JP,GB,IT,DE,US,JP,US,MY,PL,GB,NL,VN,US,NL,HK,US,HK,JP,GB,MY,JP,MY,JP,MY,GB,JP,US,HK,GB,ES,TH,NL,CN,US,IT,GB,IT,GB,IT,US,ID,TH,HK,SA,TR,US,EC,US,MM,US,PH,US,HK,US,IN,HK,IN,HK,IN,SG,HK,IN,SG,HK,IN,SG,IN,HK,IN,HK,SG,IN,HK,SG,HK,IN,SG,IN,SG,IN,HK,IN,HK,IN,HK,NL,PE,KH,US,JP,US,DJ,AE,US,HK,SG,HK,ES,SA,DE,SG,IN,ID,SA,SG,ID,SG,RU,SA,RU,SG,TH,US,DE,US,KW,US,LU,GB,FR,HK,JP,HK,JP,HK,JP,HK,DE,HK,US,HK,US,HK,SG,HK,JP,US,HK,US,HK,US,SG,KR,HK,US,PH,US,HK,US,PH,US,HK,US,HK,US,HK,PH,AU,ID,HK,VN,TH,BD,HK,ZA,HK,US,HK,US,FR,US,PH,MY,TH,ID,SA,AE,SG,BR,KR,MY,PH,GB,HK,AZ,HK,US,HK,SA,ZA,HK,SG,HK,SG,HK,SG,HK,SG,HK,SG,US,HK,US,HK,IN,IQ,US,HK,MY,GB,US,PK,US,JP,CZ,IT,US,HK,TH,PH,RU,ZA,HK,KR,HK,CY,ID,HK,US,HK,SG,HK,SG,HK,US,HK,ZA,SA,BR,PH,ID,PK,SG,HK,US,HK,DE,HK,GB,NL,RO,NL,HU,CH,HK,SG,US,JP,SG,PH,SG,US,DE,US,JP,US,HK,US,HK,AR,RU,KR,IQ,DE,SG,HK,AE,EG,BD,MX,VN,MX,MM,JP,HK,TH,PH,GB,FR,HK,BR,SA,MX,BH,KW,OM,TW,VN,SG,US,CO,HK,MX,HK,DE,JP,MY,US,ID,US,HK,SG,KR,PH,TW,BR,UA,CA,SG,TW,PH,KR,BR,CA,UA,HK,KR,MY,LU,SG,HK,BR,SG,HK,MY,SG,HK,SG,HK,SG,BR,ID,VN,SA,AE,TH,ID,SG,JP,AR,BR,CL,CO,MX,TR,OM,KW,QA,BG,GR,BD,FR,HK,IQ,PK,EG,BH,KR,TW,MY,ZA,HK,MY,TH,ID,MM,PH,HK,VN,ES,SE,SG,AU,IN,QA,AM,GE,AE,ID,FR,US,ZA,US,GB,US,CH,ES,HK,FR,US,ZA,US,HK,JP,HK,SG,HK,SG,HK,JP,HK,JP,HK,SD,TN,GA,NG,ZA,MU,ZA,SN,MU,ZA,KE,SO,DJ,SO,GA,AO,MU,NG,ZA,BI,NG,ML,AO,TZ,MU,SO,ZA,MU,ZA,BI,ZA,ZW,SZ,CI,ZA,GA,ZA,GH,NG,MG,ZA,KE,UG,RW,CD,ZM,ZW,BW,MZ,TZ,ZM,ZW,DZ,KE,SN,MG,CM,ZA,TZ,BJ,US,ZA,BR,US,ZA,KE,ZA,HK,US,ID,US,LY,NE,MU,ZA,AO,EG,MA,KE,GH,EG,PK,KR,NL,AE,NL,HK,US,FR,PL,SE,SG,VE,JP,US,HK,US,DE,VN,US,MX,DE,HK,KR,VE,GB,US,VN,US,JP,NL,PL,VE,NL,MX,US,GB,DE,US,HK,JP,NL,HK,IN,NL,ZA,MX,TR,DE,HK,MY,DE,US,ES,DE,US,DE,US,DE,HK,GH,PH,TW,BR,HK,RO,HK,DE,GB,HK,SG,HK,SG,HK,VE,HK,US,HK,DO,HK,SG,HK,DE,MY,CO,HK,SG,HK,NL,PG,HK,LA,HK,US,PH,HK,IN,RO,HK,RO,TR,TH,RO,US,VN,TR,JP,DE,HK,CR,US,IN,GB,HK,EG,KH,US,PK,KH,HK,PK,HK,MX,HK,TH,HK,US,HK,PE,US,TH,ID,GB,TH,VN,NZ,CZ,ZA,NL,EC,TH,US,TH,VN,US,VN,PK,GB,MX,PK,TH,ZA,TH,ZA,US,PG,ZA,KE,AE,SG,PH,SG,PK,VN,US,PK,PH,SG,US,CO,US,HK,US,PK,HK,RU,UA,ZA,US,AE,US,ZA,HK,US,HK,US,HK,US,HK,US,HK,NL,VN,MX,CA,US,HK,KH,US,PH,US,HK,US,GB,HK,US,GB,FR,TH,US,BR,ES,TH,US,TH,US,HK,US,HK,US,HK,JP,KR,JP,KR,ZA,HK,MY,HK,MY,HK,MY,HK,MY,HK,MY,HK,US,PH,US,SV,TR,US,MX,JO,US,KW,MX,ES,HK,ES,US,ES,US,FR,US,GB,US,HK,US,PK,US,HK,SG,HK,PL,GB,HK,NL,HK,US,HK,SG,HK,SG,HK,SG,HK,SG,HK,SG,HK,SG,HK,SG,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,MY,US,KR,US,JP,HK,JP,SG,PH,US,HK,US,RU,FR,GB,BG,GR,DE,SA,US,HK,KR,JP,VN,KH,VN,BD,PK,BH,OM,TR,EG,ZA,NP,MX,CL,AR,US,BR,US,HK,US,MM,MY,TR,US,GB,BR,HK,MY,DO,HK,US,IN,GB,IN,GB,ES,GB,ID,GB,FR,IN,GB,US,KR,SG,HK,MX,TR,HK,FR,HK,SG,HK,US,TW,GB,US,HK,JP,HK,JP,HK,UA,HK,US,HK,JP,US,KR,JP,TR,HK,US,HK,US,HK,US,MM,HK,US,HK,US,HK,US,HK,US,HK,US,HK,MX,IQ,US,HK,VN,HK,KR,HK,KR,HK,UA,HK,JP,HK,US,HK,DJ,HK,ZA,HK,MY,HK,MY,HK,US,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,US,HK,PH,US,HK,US,HK,RU,HK,KR,HK,SG,NL,HK,SG,HK,JP,HK,JP,PH,VN,TW,ID,CZ,JP,HK,SG,US,HK,MX,US,HK,SG,HK,PE,HK,SG,HK,SG,HK,DE,HK,US,KH,HK,US,SG,HK,US,ZA,US,ZA,US,ZA,US,ZA,HK,JP,HK,US,TH,HK,SG,HK,ID,HK,IT,CA,AU,FR,PL,CA,ES,FR,IT,CA,AU,FR,PL,CA,ES,AU,ES,FR,PL,AU,PL,ES,IT,FR,CA,ES,PL,AU,IT,ES,FR,AU,PL,ES,FR,PL,IT,AU,ES,FR,PL,AU,PL,FR,IT,PL,CA,AU,PL,FR,CA,IT,PL,ES,AU,FR,IT,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,HK,CH,TW,HK,ZA,JP,RO,PE,CH,HK,CA,ES,FR,IT,CA,ES,AU,CA,PL,IT,ES,CA,FR,AU,ES,PL,AU,ES,AU,FR,PL,AU,ES,AU,CA,PL,FR,IT,AU,FR,PL,AU,FR,ES,IT,FR,PL,ES,CA,FR,PL,IT,CA,ES,AU,FR,AU,ES,IT,PL,AU,ES,CA,FR,IT,ES,CA,US,MY,ID,SG,US,ZA,HK,ZA,HK,DE,HK,DE,HK,DE,HK,DE,HK,CH,TR,BD,LT,LV,CL,TH,SG,HK,SG,HK,SG,HK,DE,US,HK,SG,HK,BR,CY,ME,LU,MA,TW,HK,KR,HK,LA,US,ZA,UA,KR,HK,ZA,PH,HK,ZA,HK,ZA,HK,GB,HK,PH,CO,US,TW,HK,ID,CO,HK,IQ,PH,TW,ID,SG,TW,SG,TW,SA,BR,MX,TR,ID,MY,PH,TH,TR,HK,FR,GB,US,HK,MX,HK,SG,HK,ZA,US,HK,US,HK,GB,ID,BD,RU,IN,UG,CI,EG,DZ,ZM,US,CA,NO,SE,US,CA,_,TZ,EG,_,GH,US,CA,US,NZ,US,SG,US,SG,US,SG,US,AU,US,SG,US,DE,US,GB,US,SG,US,GB,US,GB,US,HK,US,DE,US,BR,US,BR,US,AU,US,IE,US,ES,NO,DE,US,NZ,AU,US,SG,US,CH,US,SG,US,AU,US,AT,US,AO,US,NL,US,SG,US,SG,JP,US,NG,ZA,US,NL,US,CH,US,DE,US,NL,US,NL,US,DE,US,CN,US,CN,US,SG,US,SG,US,CN,US,GB,FR,DE,HK,PL,US,ES,HK,PL,HK,ES,PL,US,MX,JP,GB,US,GB,DE,AT,HK,DE,PL,US,PL,GB,PL,US,RO,PL,DE,JP,HU,PL,CH,DE,US,PL,DE,PL,CH,DE,PL,FR,ES,PT,ES,RU,LT,DE,US,GB,DK,ES,NL,SE,US,PH,HK,US,SA,CA,US,FR,GB,FR,DE,FR,BR,FR,DE,FR,GB,US,AU,GB,US,PL,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,JP,US,IT,US,AU,US,CA,US,IN,US,RO,GB,RO,MX,RO,US,BR,KR,IL,IE,GB,NL,DE,SE,DK,FR,CZ,PL,RO,AE,IT,ZA,ES,FR,JP,HK,SG,JP,IN,AU,NL,FR,DE,ES,GB,US,DE,RO,ZA,MX,US,NL,FR,DE,GB,US,SG,US,JP,BR,AU,BR,AU,IL,KR,US,IN,US,JP,US,IN,JP,US,IN,GB,IT,US,ES,US,DK,SE,US,DE,CA,US,RO,US,RO,ZA,MX,GB,US,RO,US,RO,US,RO,US,RO,ES,JP,ZA,MX,US,NL,US,FR,US,DE,US,GB,US,CZ,CA,US,DK,HK,AU,JP,AU,IT,US,SG,FR,US,RO,ZA,US,ES,IN,BR,CA,JP,SE,JP,IN,US,MX,US,IN,US,RO,US,GB,US,GB,US,CA,US,SD,US,GB,US,GB,US,CA,NL,CA,NL,CA,US,CA,US,CA,US,NL,CA,US,CA,US,CA,NL,CA,US,NL,US,BE,MX,US,NL,GB,US,NL,CA,US,CL,PE,US,BR,CO,BR,US,AU,US,GR,US,FR,US,NO,ES,BR,US,TR,US,NO,CH,US,KR,GB,ZA,US,GB,US,FR,US,ES,US,MX,US,JP,US,CA,IN,GB,DE,GM,US,IT,US,CA,US,GB,NL,GB,NL,GB,MY,GB,US,CA,_,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,DE,US,_,LS,ZA,GH,_,CD,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,GH,ZA,CD,_,HK,JP,CI,ZA,BJ,ZA,_,ZA,KE,GH,ZA,_,ZA,NG,ZA,_,NG,US,NZ,US,ZA,US,FI,CA,US,NZ,SG,NZ,IT,US,AU,PL,FR,US,HK,US,AU,GB,US,CH,US,FR,US,BN,US,CA,ES,US,DE,US,DE,US,_,BW,RW,BW,LY,TG,GH,ZA,US,GB,US,GB,CA,US,GB,US,GB,SE,AU,SE,NO,US,SG,US,JP,US,SG,US,IT,US,CA,AT,HK,SG,HK,IN,JP,TW,KR,TH,VN,ID,PH,MY,BD,HK,BD,PH,JP,VN,ID,HK,MY,HK,ID,PK,VN,HK,ID,PH,ID,PH,HK,IN,BD,KR,HK,PH,VN,PK,HK,AU,SG,HK,PK,HK,ID,MY,PH,ID,TH,SG,KR,IN,JP,ID,BD,HK,AU,SG,AU,TH,IN,SG,PK,IN,KR,IN,PK,JP,SG,PH,SG,HK,SG,ID,VN,IN,ID,IN,ID,JP,MY,PK,SG,SA,US,GB,NZ,US,LT,DE,CH,DE,NL,DE,IT,DE,GB,NL,CH,DE,UA,DE,ES,TR,US,DE,ES,DE,US,PL,DE,PL,DE,NL,GR,PL,DE,NL,US,DE,US,DE,AU,DE,PL,AU,PL,AU,US,PL,SE,ES,SE,IT,DE,AT,SG,DE,GB,US,NZ,US,NL,US,HK,US,CL,US,CH,US,SG,US,SG,US,HK,US,SG,US,HK,US,DE,US,NL,AU,US,NL,CH,NO,US,FR,US,LU,US,JP,US,DE,US,CH,US,CZ,US,CZ,DE,JP,US,SK,IT,US,HK,US,UA,US,TR,US,BG,SG,US,AT,CH,FR,US,KR,IT,NZ,SG,PK,SG,PK,SG,PK,NZ,NL,US,DE,US,ZA,TZ,EG,HK,PH,HK,US,HK,PH,GB,HK,GB,HK,US,NL,US,NL,VN,PL,FR,AU,US,BE,US,BE,US,BE,US,BE,US,BE,US,SG,HK,BD,ID,PH,US,PH,KE,AE,SG,IQ,SG,HK,TH,HK,US,HK,MM,HK,US,HK,DE,HK,DE,HK,DE,HK,KR,HK,DE,HK,SA,TH,HK,SG,NL,SG,HK,US,VE,SG,HK,TW,HK,KR,MY,US,ZA,HK,ZA,JP,HK,JP,HK,US,HK,DE,US,GB,US,HK,US,HK,US,HK,US,AF,HK,KR,CA,US,NL,US,GB,SG,KR,JP,US,HK,SG,HK,DE,HK,ZA,HK,JP,US,HK,US,SG,US,SG,HK,US,HK,JP,HK,US,HK,US,ID,HK,ZA,MX,IN,BR,IN,SG,BR,PE,KR,FR,AU,LK,KR,KE,GE,MY,AM,ES,JP,VN,GE,IQ,IR,PK,TJ,HK,US,HK,US,HK,US,HK,US,JO,MX,US,ES,US,TH,VE,US,HK,US,HK,JP,HK,JP,HK,JP,HK,JP,HK,SG,HK,US,MM,GB,PK,TJ,JP,HK,DE,IN,ZW,AU,ES,EC,BR,ZA,IL,TH,US,NL,US,HK,SG,HK,JP,US,KR,SG,CA,KY,US,PH,HK,US,IN,US,JP,US,IN,US,KR,ZA,HK,US,HK,DE,FR,US,HK,MY,IN,MY,US,BG,LT,NG,US,HK,SG,HK,US,HK,PH,RU,PH,ID,TH,SA,HK,US,VN,TH,US,ZA,US,HK,US,VN,US,RU,US,AU,IT,ES,DE,US,JP,BR,US,BR,KR,GB,DE,FR,HK,US,KW,US,JO,MX,ES,US,MY,JP,GB,US,HK,SG,HK,US,HK,SV,ID,HK,SG,HK,SG,HK,US,SG,JP,HK,ID,GB,IN,US,HK,SG,HK,NL,HK,MY,HK,DE,HK,SG,HK,PK,US,HK,ZA,KE,TW,US,HK,SG,HK,US,HK,US,PH,HK,US,HK,US,HK,US,HK,US,BR,GB,HK,CL,HK,IQ,ID,GB,MD,HK,NL,CA,MY,HK,MY,HK,MY,HK,MY,HK,SG,HK,SG,HK,SG,HK,US,SG,US,UA,HK,US,CA,ES,IT,FR,PL,ES,IT,PL,CA,ES,FR,IT,PL,AU,ES,FR,AU,IT,ES,AU,FR,PL,ES,CA,AU,PL,ES,IT,FR,ES,CA,US,SG,US,ES,US,ES,US,HK,IN,PH,US,HK,US,HK,US,SA,HK,SA,BE,SA,SG,SA,BR,SG,PH,SG,HK,SG,HK,SG,GU,SG,GU,JP,SG,GU,JP,SG,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,HK,US,TW,SG,TW,US,JP,US,HK,US,PH,US,SG,IT,HK,FR,US,HK,US,SG,US,BR,TH,FR,HK,US,HK,BR,HK,US,HK,BE,HK,SG,US,BD,RU,TH,US,ID,BR,VN,ID,JP,IN,VN,PK,US,HK,US,HK,US,HK,US,HK,US,HK,US,IN,US,AE,US,ZA,HK,TH,HK,NL,SG,HK,DE,HK,GB,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,NL,HK,US,FR,HK,US,HK,US,TH,VN,HK,US,HK,CN,JP,US,JP,ID,PK,ID,IN,ID,IN,BD,PK,PH,CN,MN,IN,VN,MY,IN,ID,BD,ID,KH,ID,IN,BD,VN,ID,IN,ID,IN,ID,IN,NP,ID,SG,JP,ID,CN,ID,CN,BT,CN,BD,BT,ID,IN,ID,SG,LK,NZ,IN,VN,BD,ID,VN,ID,VN,IN,ID,PH,AU,JP,SE,ID,AU,IN,CN,ID,MM,PK,ID,AF,ID,BD,IN,BD,CN,IN,SG,ID,JP,ID,AU,MN,IN,VN,IN,VN,BD,IN,ID,HK,MY,TW,IN,BD,VN,ID,PH,ID,MM,JP,NP,BD,ID,KH,TW,ID,CN,ID,IN,ID,VN,IN,CN,ID,IN,CN,HK,VN,ID,BD,ID,BD,ID,JP,IN,BD,AU,ID,PH,MM,ID,IN,ID,IN,ID,AU,ID,IN,AU,ID,TH,MM,SG,IN,ID,BD,_,ID,CN,IN,ID,PH,ID,AU,US,BD,HK,AU,ID,BD,ID,IN,ID,AU,ID,IN,ID,JP,CN,JP,ID,PH,ID,IN,JP,ID,IN,ID,CN,ID,MM,BD,ID,IN,JP,BD,VN,NZ,SG,IN,TW,ID,BD,IN,BD,ID,SG,VN,IN,VN,ID,BD,AU,SG,TW,SG,AU,BD,ID,IN,ID,TW,CN,IN,AU,PH,ID,PK,BD,ID,IN,ID,IN,ID,IN,ID,IN,ID,IN,ID,IN,ID,CN,IN,TW,VN,IN,ID,IN,ID,IN,ID,VN,IN,ID,IN,ID,CN,TW,IN,ID,US,FR,GB,FR,NL,FR,NL,FR,NL,FR,US,GB,HK,US,AU,SG,JP,SG,US,AE,US,FR,FI,PL,CH,IT,US,IT,NL,US,CL,SG,US,GB,IN,CA,US,CA,GB,US,GB,BR,TH,IT,BR,CA,US,IT,ID,US,HK,US,NZ,GH,BR,US,IT,US,JP,GB,US,SE,US,AU,US,DK,US,BR,US,DK,US,BR,US,NL,US,AT,IN,KR,US,ES,IE,US,IN,NZ,US,SG,US,IE,NL,IE,US,NL,US,IE,US,IE,US,IE,US,IE,US,IE,US,IE,US,IE,NL,IE,US,IE,US,IE,US,IE,US,NL,US,NL,US,IE,US,SG,US,IE,US,NL,US,SG,US,DE,US,NL,IE,US,CN,US,JP,ID,_,JP,US,JP,GB,JP,GB,AU,BR,US,ES,US,DE,US,AR,US,FI,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,IS,DE,NL,ES,AT,NL,DE,ES,NL,US,CH,US,DE,NL,DK,US,BE,NZ,US,GB,CY,US,DE,FR,NL,BR,CH,NO,IT,DE,SE,NL,ES,NL,US,FR,EC,JP,_,JP,CN,HK,IN,US,IN,CN,KR,NZ,IN,BD,JP,ID,NZ,JP,_,HK,MM,IN,HK,KH,HK,IN,HK,IN,JP,CN,IN,CN,IN,LA,BD,IR,CN,IN,ID,IN,HK,TH,HK,ID,BD,CN,VN,CN,JP,SG,JP,HK,JP,AU,SG,HK,SG,HK,SG,US,CN,US,FI,GB,US,AU,FI,US,RU,US,CA,DE,SA,AE,SA,AU,DE,NL,JP,DE,US,SG,US,AU,NL,US,JP,US,CN,US,CN,DE,US,BR,US,FR,US,IT,US,GB,US,CH,FR,BE,FI,US,JP,CN,US,AU,CN,IS,PL,FR,US,CH,GA,DE,BE,US,GB,IN,IL,GB,US,GB,BZ,CR,EC,SV,GT,HN,PA,BO,CL,GF,GY,PY,PE,SR,UY,VE,KR,AU,KH,TH,TL,VN,LA,MY,ID,MM,MO,MN,TW,PH,PG,FJ,PF,IS,LT,DK,PL,SE,FR,EE,LV,DE,UA,ZA,IE,JE,PT,CA,AL,AT,BA,BG,HR,CY,CZ,GR,HU,IT,MK,MD,ME,RO,RS,SK,SI,AM,AZ,YE,BH,BD,BR,EG,GE,IQ,JO,KZ,KW,LB,MV,NP,OM,PK,QA,SA,LK,LU,CH,DZ,AO,ET,GH,CI,KE,LR,MT,MU,MC,MA,NG,SM,TN,AD,AI,AW,BS,BB,BM,VG,KY,CW,DO,HT,JM,PR,KN,TT,VI,GL,TR,JP,AE,IN,BR,AR,US,SG,DE,US,BR,IN,BR,GB,AU,IN,IL,IN,IE,US,GB,US,GB,US,IE,GB,DE,US,SG,AU,BR,JP,IN,SE,ES,FR,AE,US,CH,FR,US,SE,GB,BE,GB,US,BH,GB,AT,US,TH,DE,SE,DE,RO,HU,IS,SK,DE,SE,DE,OM,SE,HU,US,FR,CA,US,TR,JP,US,CA,US,CA,US,CA,US,BR,US,CA,JP,RU,US,IE,US,BR,US,JP,BE,US,KR,DE,KR,SG,KR,US,FI,US,GB,US,JP,US,EG,US,GB,US,CA,US,AU,US,IN,GB,US,DE,SG,US,CA,US,DE,US,DE,US,SG,US,SG,GB,US,GB,NO,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,NL,US,SG,JP,SG,DE,US,ES,CO,SG,AU,BG,US,BR,SG,US,SG,IN,CH,US,IN,US,MX,US,DE,US,QA,CZ,JP,US,BR,US,CH,US,FR,US,CZ,US,GB,US,DE,US,IN,US,PG,IN,US,AF,US,IN,US,PG,US,BE,US,IN,US,FR,PE,IN,HK,DK,NL,FR,IT,US,FI,US,ID,JP,DE,HK,PT,US,GB,US,BR,US,GB,BR,DE,US,GB,BR,CA,US,GT,BG,SG,MY,US,TR,IN,US,ES,MX,US,NL,US,DE,US,BH,US,FR,CA,US,DE,GB,SG,NL,US,IN,US,SG,US,SG,US,AT,US,NO,US,JP,US,GB,CO,US,AU,US,HK,US,DO,US,BG,DO,US,IN,US,BR,US,IN,US,IN,US,JP,US,PT,IN,NL,GB,TR,US,SG,US,SG,GB,US,SG,US,LT,SG,US,CN,US,IN,US,CN,US,MX,GB,US,CA,US,AR,US,GB,US,NL,US,GB,US,GB,US,CN,US,SG,US,IN,US,MY,US,NO,AU,SI,US,SI,GB,US,ES,GB,KR,AU,RU,US,SA,FR,PL,BG,PL,SA,ES,GB,US,KR,JP,TH,MY,ID,US,RU,IL,AM,TJ,LT,TH,BG,CH,MY,AU,US,BD,US,GB,MX,GB,EG,GB,US,RU,IT,US,ES,FR,HK,CN,FR,US,FR,US,CA,US,CA,US,RU,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,_,US,IR,RU,IT,DE,NO,GB,IT,FR,IR,BG,US,CN,US,PH,US,GB,ES,US,DE,GB,IT,ES,US,GB,US,LU,DE,LU,DE,LU,DE,LU,DE,LU,DE,LU,US,PL,BE,US,CA,US,PL,US,CN,TH,CN,US,SA,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,AU,FI,US,SE,US,GB,US,MX,US,ES,US,JP,US,JP,DE,NL,SA,IT,US,SE,US,CA,US,CA,US,TH,ES,IT,US,NO,US,DE,US,AE,US,DE,US,NZ,US,NL,US,BR,US,SG,US,SG,US,HK,US,GB,US,DE,US,GB,US,NL,US,GB,US,AU,US,ES,US,GB,SE,FI,NL,FI,ES,FI,NL,BE,NL,FI,CA,LT,US,FI,HK,CH,US,PS,US,PS,SG,ID,AU,NZ,CN,US,GB,IN,US,IE,DE,IE,US,IT,NO,US,GB,US,FR,US,ES,US,RU,BN,PT,CA,US,LU,CL,US,ES,DK,SE,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,FR,GB,US,DE,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,DE,US,DE,US,DE,US,DE,GB,DE,GB,US,GB,DE,US,DE,GB,DE,GB,DE,US,DE,GB,DE,US,GB,DE,GB,US,DE,GB,US,DE,GB,DE,GB,DE,GB,FR,GB,US,DE,US,DE,US,GB,US,GB,US,DE,GB,DE,GB,US,DE,US,DE,GB,DE,GB,DE,US,DE,US,GB,US,DE,GB,DE,GB,US,GB,US,DE,GB,DE,GB,DE,GB,DE,US,GB,DE,US,DE,GB,DE,GB,DE,GB,US,GB,DE,GB,DE,GB,DE,US,GB,DE,US,GB,US,DE,GB,DE,GB,DE,GB,DE,GB,US,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,US,DE,GB,DE,GB,US,DE,GB,DE,GB,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,US,IL,US,AU,NL,DE,US,FR,SE,NL,SG,IL,US,GB,US,AU,IT,US,AU,US,DE,US,GB,US,KR,JP,KR,ZA,US,FR,SE,ES,US,AU,NL,DE,KR,GB,US,GB,ZA,IT,US,KG,AZ,DE,IT,DE,CH,KG,HK,US,SE,US,FR,SK,CZ,SK,CZ,SK,JP,CH,HK,CH,SG,CH,JP,GB,US,AT,CH,CL,ID,RS,VN,LV,LT,JM,DE,HK,NL,CH,NL,CL,NL,HK,GB,DE,HK,DE,GB,DE,GB,DE,GB,DE,HK,DE,HK,DE,US,SC,GB,SC,GB,SC,US,MF,US,CA,US,CA,US,CA,US,GB,US,DE,CH,ES,US,CA,US,GB,US,AU,US,DE,US,DE,US,IN,US,GB,FR,CH,FI,DK,FI,GB,US,CA,US,CO,US,CO,US,CO,US,CO,US,KR,NO,DK,HU,RU,CL,US,RU,GB,SK,CZ,GB,RU,LV,FR,DE,RU,IR,RU,NG,AE,IR,DK,RU,PL,FR,RU,IT,HK,AT,US,DE,FR,SE,GB,ES,IT,SK,SA,US,CA,US,CA,SE,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,FR,NL,FR,NL,FR,NL,FR,NL,FR,NL,FR,NL,FR,GB,NL,US,FR,NL,FR,NL,FR,NL,FR,NL,FR,NL,FR,NL,GB,NL,FR,NL,FR,NL,FR,NL,FR,NL,FR,NL,FR,GB,NL,GB,NL,US,NL,GB,NL,US,NL,GB,NL,GB,NL,GB,NL,GB,NL,US,NL,GB,US,NL,US,GB,NL,US,NL,US,NL,US,NL,US,NL,US,NL,GB,NL,US,GB,US,NL,GB,NL,GB,NL,US,NL,GB,NL,US,NL,US,CH,SG,CH,US,AU,US,SG,AU,US,GB,MX,US,CA,US,DK,FR,BA,MT,GB,TR,IR,TR,ES,US,CA,CH,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,DE,CA,US,CN,US,JP,CH,GB,FR,CA,GB,US,SE,US,NL,US,AT,OM,DE,IT,DE,GB,DE,IT,DE,NL,IT,US,FR,DE,AU,US,MX,US,CA,US,NO,US,IN,US,NL,CA,NL,US,NL,PT,NL,ES,NL,IN,NL,IN,NL,BR,NL,CA,NL,BR,HK,AU,JP,CA,US,BH,US,BH,CA,US,GB,US,HK,US,JP,US,CA,US,SG,GB,US,GB,US,GB,US,DE,SG,IN,US,NL,GB,US,DE,US,SE,AU,US,CN,US,JP,NO,US,FR,US,GB,US,DE,US,DE,CA,US,IN,US,SG,DE,US,GB,US,VE,US,GB,RU,US,FR,US,AU,US,DE,FR,CH,GB,AU,US,GB,US,TR,NL,GB,US,ZA,JP,US,IN,AE,NL,US,DE,NL,TW,HK,GB,US,DE,US,DE,US,CH,GB,US,CH,GB,US,SE,US,DE,US,CL,US,CA,US,MX,US,SG,BR,US,CA,US,BR,US,GB,US,_,NZ,_,PH,US,TW,PH,_,VN,HK,MY,HK,ID,IN,US,NL,_,MY,NL,SG,_,MY,HK,US,DE,US,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,GB,US,DE,US,DE,US,GB,DE,US,DE,US,DE,GB,DE,US,GB,DE,US,IT,DE,US,IT,GB,IT,US,IT,US,IT,GB,IT,DE,US,IT,US,IT,US,DE,GB,IT,US,IT,GB,US,IT,GB,US,IT,GB,IT,GB,US,IT,GB,US,IT,US,GB,IT,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,IN,US,GB,US,NO,US,IE,US,DE,US,BE,US,NL,US,HK,ID,MX,SG,CL,SG,HK,ZA,AE,IN,PK,PH,CO,RU,BR,RU,TH,US,CH,US,TR,UA,ES,LV,FR,LV,US,LV,DE,LV,US,LV,US,LV,FR,LV,US,LV,HK,US,LV,US,LV,US,LV,TR,LV,US,LV,FR,LV,CH,LV,FR,LV,FR,LV,US,LV,US,LV,US,LV,GB,LV,NZ,LV,RO,LV,US,LV,US,LV,US,LV,FR,LV,ZA,LV,US,LV,FR,LV,FR,LV,GB,LV,US,FR,GB,LV,GB,IT,US,FR,US,HK,FR,IN,FR,FI,US,NL,US,FI,US,GB,ES,MY,GB,US,CH,FR,US,CN,US,MX,US,CA,US,CA,US,ES,US,SE,IE,US,GB,US,JP,IN,JP,GB,RO,DE,US,SG,US,AU,US,IN,KR,US,CA,US,DE,US,CH,US,CA,US,UA,US,NO,US,GB,CH,DE,CH,DE,CH,US,GB,NO,US,CA,US,BR,US,AU,US,FR,NL,US,SG,GB,DE,NL,GB,DE,FR,US,CL,US,CA,US,NZ,SG,AU,US,NL,AU,US,SG,US,GB,US,CA,US,CA,US,CH,NL,US,DE,GB,US,GB,PR,US,PR,DE,PR,FR,US,AU,US,SG,US,SE,US,TH,SE,DK,AU,GB,AU,US,DE,US,CA,US,PL,CA,AU,CA,HK,CA,US,IT,JP,US,IT,US,JP,US,NO,FR,US,GB,US,SG,US,GB,US,SG,US,CN,US,AU,US,DE,US,DE,US,NL,DE,SG,US,NL,GB,DE,US,UA,US,CN,US,JP,US,CA,CH,US,ES,US,CH,US,GB,JP,US,GB,US,GB,FR,US,DE,US,GB,NL,US,SG,US,GB,US,GB,US,KR,US,KR,ID,US,NL,NO,EE,SE,GB,SE,TR,GB,TR,DK,IT,SK,DE,MD,IL,NO,GB,NL,GB,RU,GB,CZ,US,GB,IT,GB,SE,IE,GB,CZ,PL,ES,GB,RU,US,CY,PT,RU,IT,ES,FR,AT,HR,GB,ES,CH,IT,IQ,DE,PL,NL,ES,GB,NL,DE,NL,FI,MU,SN,ZA,_,US,SG,GB,IE,US,GB,DE,GB,DE,GB,DE,GB,US,JP,US,ID,PK,US,_,ZA,_,BR,HK,TW,_,ID,_,US,ES,LY,US,_,ZA,_,SL,_,US,_,BR,_,GB,_,ZA,MZ,_,ZA,CL,_,CN,IN,ID,_,ZA,_,BR,IN,_,HK,SG,_,BR,ZA,BR,_,PH,JP,CN,HK,US,BR,AU,_,AR,BR,CL,SE,AT,_,TR,SL,_,DE,NL,PL,BY,BR,EC,BR,MX,BR,CL,BR,US,_,CI,IS,_,CI,VE,_,CI,ID,_,BO,CI,_,DE,US,CA,US,_,BR,_,PA,AR,US,_,US,_,JP,_,JP,_,JP,_,US,CA,US,TW,SG,JP,US,MY,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,GR,US,DE,SG,JP,AU,KR,DE,IN,ZA,DE,AT,CH,DE,CH,DE,CH,US,RU,CH,SG,US,CH,US,DE,CH,US,CH,AU,US,IT,NO,US,DE,FI,US,JP,TR,US,MA,IT,US,SK,US,SA,IT,US,DE,CH,DE,PL,DE,GB,TR,GB,SA,GB,AE,GB,US,IN,SG,US,JP,US,JP,US,AU,US,TR,GB,US,CH,JP,US,MA,US,FR,AU,FR,AU,FR,US,SG,IT,CH,RS,DE,US,FR,GB,MA,CA,US,CG,HU,ZA,IL,ZA,CA,ZA,AU,ZA,AU,ZA,RU,IL,ZA,JP,ZA,US,ZA,US,ZA,US,GB,ZA,BF,DE,BF,ZA,_,GH,MZ,ZA,NG,GN,ZA,BJ,UG,ZA,MZ,GA,ZA,NG,_,ZA,GH,_,ZA,CD,KE,ZA,AO,KE,NG,ZA,CI,ZA,HK,ZA,US,NG,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,CI,TN,MA,IT,_,HK,US,HK,US,HK,US,HK,US,_,GM,_,JP,_,JP,_,JP,DE,JP,IN,SE,US,BE,US,AZ,IT,KH,IN,ID,HK,IN,HK,PH,HK,CN,US,BR,DE,JP,US,SG,AU,BD,CN,IT,KR,US,CN,HK,CN,KR,_,IN,_,CN,JP,US,AU,ES,AU,GB,AU,US,AU,FI,AU,US,GB,AU,GB,DK,AU,US,AU,GB,US,IS,DE,US,DE,ES,DE,ES,DE,NL,ES,JP,CZ,DE,CZ,CH,IT,US,AU,US,CA,US,CA,US,CA,US,CA,CR,US,AO,NG,ZA,CI,GH,ZA,BF,_,ZA,US,FR,US,FR,SG,JP,IN,AU,US,JP,GB,US,_,JP,BD,JP,CI,TH,AU,JP,DE,US,BR,JP,US,JP,BD,_,US,KR,FR,JP,US,ZA,CI,JP,FR,JP,CI,_,US,JP,AR,NL,US,IN,NZ,HK,IN,US,JP,CI,US,BR,IT,EE,LB,UA,BR,BZ,BR,AR,BR,PY,BR,AR,BR,CL,BR,VE,BR,CL,JP,NA,AO,NA,AO,NA,CD,AO,MZ,NA,ZM,ZA,NA,BW,NA,ZA,ZM,NA,UG,TG,JP,_,JP,US,_,HN,GB,HN,NO,HN,NO,HN,NO,HN,NI,AR,US,AR,BQ,CW,TT,UY,HT,TT,CL,AR,CL,HN,TT,US,GB,FR,NO,AT,US,AU,OM,US,AU,TR,CO,US,GB,US,GB,CO,CA,CH,US,AR,VE,ES,PA,CW,BR,GF,BO,GB,BR,CL,US,GB,US,NL,US,IN,US,DE,US,IT,US,CA,US,FR,BR,US,SG,US,AU,JP,US,CA,US,AU,GB,US,GB,US,DE,US,DE,US,JP,GB,AU,US,FR,US,FR,US,FR,US,JP,US,CA,US,CA,US,BR,US,IT,US,NZ,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,NZ,GB,NL,GB,NL,GB,NL,GB,NL,GB,US,JP,US,DE,GB,US,DE,NL,US,NL,GB,US,DE,US,NL,US,DE,GB,US,CA,US,CA,US,CA,US,BR,US,CA,GB,US,CA,US,AU,US,PR,US,FI,DE,AU,US,FR,PH,SG,PH,SG,PH,US,PH,US,AU,US,GB,US,GB,NL,GB,US,NL,US,DE,GB,DE,US,GB,US,DE,SE,HR,BA,HR,SE,US,BO,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,BE,US,JP,US,CH,US,MO,NZ,ES,US,FR,US,CA,BR,GB,DE,SG,IN,JP,US,SE,KR,CA,IT,US,GB,US,GB,US,DE,FR,BR,US,GB,US,JP,AU,US,AU,BR,CO,SA,BR,JP,NL,GB,IE,US,GB,US,GB,BH,SE,IT,IE,IN,FR,US,CH,AE,AU,HK,JP,US,FR,JP,US,KR,BR,SG,US,AE,US,DE,CA,FR,HK,JP,IN,US,SG,US,ZA,AU,US,SA,GB,DE,US,ES,GB,US,GB,US,CH,BR,US,HK,US,TH,NL,US,NL,US,NL,JP,US,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,US,FR,US,CA,US,AT,ES,GB,US,ES,SG,JP,US,CN,US,IN,US,KR,JP,BR,US,BE,US,MY,US,ID,FR,BE,BR,BE,US,UA,NZ,MY,BE,ES,PH,HU,NL,CN,US,CN,FR,US,NL,US,HK,US,MX,IL,US,DE,US,AE,US,ZA,US,ZA,BR,BE,ES,GR,AE,BR,SG,ZM,US,NL,BR,US,NL,AR,EE,US,LA,US,SG,BR,JP,AT,US,SE,NL,AU,US,AL,US,TH,US,NO,GB,US,BR,IS,TH,US,HK,IT,BE,BG,FI,US,SG,IN,SG,US,CA,US,KR,US,HK,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CL,US,CL,PE,US,BO,MY,VE,CA,MY,AU,US,AU,IT,BR,US,AU,US,DE,GB,DE,GB,DE,GB,US,GB,DE,GB,DE,GB,DE,GB,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,GB,US,DE,US,GB,US,DE,GB,US,DE,GB,US,GB,DE,US,DE,US,DE,GB,DE,GB,US,DE,US,DE,GB,DE,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,US,DE,US,DE,GB,DE,GB,DE,GB,DE,GB,NL,US,NL,DE,SG,US,CA,US,CA,US,CN,AR,US,CA,US,NL,IE,US,CA,US,CL,US,VE,US,CA,US,BE,US,KY,US,_,US,CA,US,BS,US,ES,CA,US,CA,US,VG,US,CA,US,TH,US,SG,US,SG,US,SG,HK,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,HK,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,HK,SG,US,SG,US,SG,US,SG,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CN,US,VE,US,CA,US,DE,US,GB,US,SG,PT,US,CA,US,VE,US,CL,US,TH,US,_,US,CA,US,PH,US,SA,KW,US,VE,CA,US,LC,US,CA,US,_,US,CA,US,CA,NZ,NL,US,ES,BE,IE,US,DE,CH,US,GB,ES,US,GB,IT,FR,DE,FR,SA,SE,IL,AT,PL,CH,TH,AU,IN,ZA,IN,AE,HK,IN,KR,SA,ZA,IN,AU,PH,JP,AU,MX,SG,AU,TW,CO,BR,AR,BR,PE,BR,CL,US,GB,HK,GB,US,AR,CH,NL,MX,PK,BD,US,FR,US,PR,US,AU,IN,US,GB,CN,US,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,GB,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,FR,DE,US,CH,US,CH,US,AT,BA,AT,CH,US,CA,US,PL,US,GB,IE,NL,US,CA,NL,US,CA,US,CA,US,CA,US,ES,IT,CA,US,GB,US,FR,US,JP,US,AL,MT,LV,GR,US,SG,US,JP,US,CA,US,DE,IN,US,RU,DE,RU,DE,SG,HK,RU,DE,RU,DE,SG,RU,DE,SG,DE,US,CA,US,CH,US,CH,US,CA,US,CA,US,DE,US,CN,CA,US,HK,US,NZ,US,TJ,US,DE,US,DE,JP,DE,JP,US,JP,US,FR,GB,US,FR,GB,US,FR,GB,FR,GB,US,VE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,SA,US,AU,US,CA,AU,JP,QA,BD,US,GT,KW,FR,KR,RO,FR,MY,IE,OM,ID,OM,IN,GB,BD,GB,IE,SG,KE,US,ID,IN,DZ,US,IN,US,BR,IN,AE,US,KW,BG,US,PR,GB,US,PS,CR,GT,IQ,DE,US,DE,AE,PE,CA,CL,PL,SG,DE,HK,NL,SG,JP,US,CA,BD,IT,DK,AR,PH,US,KR,US,IN,MV,CA,PY,CH,TN,BD,GE,US,SG,US,SG,US,HK,BR,HK,SE,US,SG,IN,MY,BR,KW,AR,IT,US,IN,PK,DE,TH,IQ,RE,BD,BG,US,MM,BR,MM,VN,NO,BR,CL,IN,PH,GE,IE,KE,BE,IN,FI,TW,US,BR,US,UA,TR,AO,BR,IL,EC,US,DE,AT,DE,US,DE,US,DE,US,DE,US,CA,US,CA,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PR,US,CA,US,_,VG,US,VC,VG,LC,VG,CA,US,CA,US,CA,US,CA,US,CA,FR,CA,US,AT,US,CA,US,KY,US,CA,US,CA,US,CA,US,NL,CA,US,CA,TC,BB,AG,VG,US,_,US,CA,US,CA,US,CA,US,PR,US,PS,US,CA,LC,VC,US,CA,US,CA,US,AE,US,ES,US,FR,CZ,US,CA,AU,US,CA,US,CA,US,CA,US,CA,AT,US,DM,US,IE,US,CA,US,CA,US,CA,US,CA,US,IN,US,JM,US,AU,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,IN,US,CA,US,NL,US,ZA,US,CA,PL,US,GE,FI,BG,IL,US,CA,US,CA,US,HK,VN,HK,US,CA,US,CA,US,SG,HK,ID,MM,KH,US,TH,HK,US,CA,US,CA,US,CA,US,_,US,CA,BM,CA,US,CA,US,CA,US,CA,US,CA,US,PR,US,BB,VG,BB,US,CA,US,CA,US,GB,NL,CA,US,BR,US,CA,US,_,US,_,US,AU,US,CA,US,CA,US,PR,US,MY,US,DE,US,CA,US,BM,US,CA,US,JP,US,CA,US,CA,AG,US,PR,US,CA,US,CA,US,CA,US,CA,US,KR,US,VG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,US,CA,US,BE,US,DE,US,DE,FR,US,FR,US,PR,US,CA,US,CA,US,CA,US,CA,US,GB,US,PR,US,CA,US,CA,US,CA,US,CA,US,LC,US,CA,US,CA,US,CA,US,HK,MM,US,CA,US,GD,US,_,US,CA,US,CA,JM,US,CA,US,_,US,CA,US,BB,US,CA,US,CA,US,PR,US,HK,US,CA,VI,US,CA,US,CA,US,CA,US,CA,US,KY,CA,US,CA,US,CA,US,PR,US,NL,US,CA,US,CA,US,CA,US,CA,US,NL,US,CA,US,CA,US,CA,US,CA,US,KY,US,CA,US,CA,US,CA,US,CA,US,GB,US,AU,US,CA,US,CA,US,CA,US,ZA,US,CA,US,NL,US,CA,US,VG,US,PR,US,CA,US,CA,US,MX,US,BR,US,CA,US,CA,US,_,US,_,US,CA,US,CA,US,CA,US,CA,VG,AG,LC,AG,US,CA,US,CA,US,CA,US,CA,US,CA,US,MY,CA,US,CA,US,CA,US,DM,US,CA,US,CA,US,VI,US,CA,US,CA,US,CA,US,RO,US,CA,US,CA,US,_,US,GB,DE,RU,ZA,CA,US,CA,US,VG,CA,GB,US,CA,US,KZ,US,BM,US,CA,US,CA,CN,GB,US,FR,HK,US,FR,GB,FR,US,FR,US,FR,DE,US,FR,US,GB,FR,JP,US,JP,FR,JP,NL,JP,FR,US,FR,US,FR,JP,GB,FR,US,JP,US,FR,JP,US,GB,JP,FR,US,FR,US,FR,US,FR,GB,FR,US,FR,JP,US,FR,US,FR,NL,FR,DE,US,MY,US,FR,ES,US,FR,US,DE,FR,US,FR,US,FR,US,FR,US,FR,US,NL,US,FR,NL,LT,US,NL,US,FR,US,NL,FR,US,NL,FR,IN,FR,US,FR,US,FR,JP,IT,FR,IT,FR,NL,US,NL,FR,US,FR,GB,FR,US,FR,US,FR,US,FR,US,FR,MQ,FR,TR,US,FR,US,JP,GB,FR,BR,FR,US,NZ,AU,FR,AR,US,TW,US,NO,US,JP,VN,TH,VN,TH,VN,JP,CN,SG,KH,AU,JP,AU,NZ,_,JP,_,JP,_,BD,AU,HK,_,AU,US,AU,CA,BD,MY,AU,US,NZ,AU,NZ,AU,NZ,AU,NZ,AU,IN,BD,NP,IN,BD,AF,NZ,AU,KH,SG,VN,PH,TH,US,NZ,MY,AU,MY,AU,NZ,AU,IN,AU,NZ,NC,NZ,NC,AU,JP,_,CN,HK,AU,NP,KH,AU,CN,AU,IN,CN,BD,AU,BD,MY,KR,CN,IN,BD,ID,CN,ID,KH,IN,US,HK,_,MY,AU,IN,CN,MO,HK,MO,AU,IN,JP,SG,JP,_,FR,CA,FR,CA,FR,JP,FR,JP,FR,JP,FR,IE,FR,JP,FR,CA,FR,CA,FR,CA,FR,CA,FR,CA,FR,CA,FR,CA,FR,DE,FR,IE,FR,DE,FR,US,FR,GB,US,GB,FR,US,FR,GB,FR,CA,US,CA,US,FR,CA,US,CA,US,CA,US,CA,US,FR,GB,FR,US,FR,US,GB,US,FR,US,FR,GB,FR,US,FR,BR,FR,BR,FR,BR,FR,AU,IN,US,NL,US,JP,US,IE,US,IE,FR,US,FR,US,CA,US,CA,US,CA,US,BR,US,DE,AE,GB,FR,ZA,GB,AT,AE,SE,ES,IL,CH,IT,DE,FR,CH,FR,GB,DE,ZA,NL,IE,SA,ES,SA,GB,DE,CH,PL,NG,SA,AU,SG,NZ,IN,JP,AU,IN,HK,KR,AU,TH,IN,AU,JP,HK,US,AU,IN,AU,US,IN,US,SG,TW,PH,BR,AR,CO,CL,BR,PE,BR,MX,US,BR,CO,US,BE,DE,FR,ES,CZ,PT,FI,US,ES,US,GB,US,DK,BE,AU,JP,IN,US,NL,US,GB,SG,CA,US,EG,IN,US,NL,US,CA,US,CA,US,DE,US,JP,US,CA,US,CA,_,US,CN,US,AU,_,US,JP,CN,JP,US,KR,US,CA,GB,CH,GB,SE,NL,SI,GB,CH,IT,BE,GB,US,DE,GB,CH,GB,TH,PH,SG,ID,TH,US,AE,US,KR,PH,KR,JP,PH,AU,AE,CA,HK,KR,JP,KR,SG,PH,KR,US,PH,ID,TH,KR,TH,KR,AR,KR,PH,US,PH,TH,KR,TR,KR,DE,GB,FR,DE,KR,GB,KR,NL,KR,RU,BE,GB,NL,GB,KR,TH,KR,RU,PT,CA,DE,KR,FR,KR,NL,GB,FR,ID,KR,ID,US,ID,TH,PH,ID,SG,ES,BR,ZA,KR,AE,OM,EG,KW,PH,TH,MM,ID,US,KR,US,AU,HK,IN,KR,IN,KR,SG,KR,SG,TH,KR,TR,KR,VN,IN,ID,PH,TW,ID,GB,SG,US,KR,PH,KR,PH,KR,HK,KR,HK,KR,HK,PH,FR,NL,FR,NO,NL,US,CN,CR,CN,KR,HK,KR,HK,KR,HK,KR,HK,KR,HK,KR,HK,KR,HK,KR,HK,KR,RU,IN,US,DE,TH,ID,MY,KR,JP,ID,US,ID,US,HK,SG,JP,HK,SG,HK,US,ID,US,ES,IT,US,TH,DE,GB,US,MY,US,LA,US,HK,PH,TH,HK,SG,MY,DE,TH,HK,ID,VN,MY,PK,DE,GB,MY,US,HK,AE,DE,HK,VN,US,BE,CH,SG,JP,DE,HK,GB,JP,HK,EG,TR,DE,HK,SA,VN,US,BR,US,TH,US,AE,US,FR,GB,DE,US,DE,ID,HK,SG,JP,SG,US,SG,HK,SG,MY,ID,AE,PH,JP,DE,US,HK,ID,HK,GB,US,HK,GB,US,CA,US,CA,US,AU,US,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,BR,ZA,JP,US,ZA,BR,US,ZA,AU,ZA,AU,ZA,CA,ZA,NL,ZA,JP,ZA,JP,ZA,AU,ZA,US,ZA,CN,US,JP,KR,JP,_,JP,KR,_,JP,_,JP,_,JP,_,JP,_,JP,_,JP,_,JP,_,JP,_,JP,_,CN,KR,US,AU,US,DE,US,KR,US,MY,US,IE,US,IN,US,CN,US,CL,US,CL,US,KR,KZ,FR,AT,SE,FI,GB,FR,SI,SE,GB,FI,CH,BE,DE,US,CA,US,DE,AU,DE,US,DE,US,CA,MX,DE,BE,GB,SE,GB,AR,GB,AR,GB,AR,GB,AR,GB,AR,NL,GB,KZ,NL,GB,NL,GB,NL,GB,NL,GB,NL,DE,US,SA,US,DE,SK,SE,IT,BG,IT,NL,DE,GB,BA,DE,FR,PL,MK,BR,PR,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SE,US,JP,SG,HK,JP,TW,HK,JP,TW,JP,IN,SG,JP,HK,JP,SG,JP,KR,HK,SG,JP,KR,TW,HK,SG,HK,VN,HK,IN,HK,SG,HK,SG,HK,JP,SG,US,SG,JP,SG,IN,US,IN,US,AU,US,DE,US,DE,CA,DE,BE,DE,US,SG,AU,US,TR,US,TT,US,ID,US,AZ,US,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,US,JP,US,UY,US,AU,US,CL,PE,CL,SG,US,AU,FR,US,BR,US,ZA,US,HK,IN,NL,HK,DE,NL,US,HK,SG,IN,DE,NL,US,SG,HK,SG,NL,IN,DE,HK,US,DE,NL,DE,US,DE,NL,DE,NL,DE,US,FR,GB,US,CL,AU,CL,US,IN,US,CA,US,AU,US,AU,US,TH,US,GB,US,GB,US,KR,PL,CH,FR,IT,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,DE,GB,SE,GB,SE,GB,RU,IR,NL,RU,KZ,IT,FR,NL,GB,RU,CY,RU,BE,IL,IR,DE,ES,BG,GB,IQ,FR,NL,DE,NL,FI,IT,GB,US,SG,US,ZA,US,BR,US,RS,US,CA,US,CA,US,SG,US,BR,US,NL,US,BR,US,GB,AU,US,CA,GB,DE,GB,US,CA,US,CA,US,CA,US,CA,US,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,US,TN,UG,LR,_,CG,ZA,_,CI,ZA,CI,ZA,CD,ZA,_,ZA,EG,RE,FR,YT,ZA,GQ,ZA,_,CI,EG,NA,_,ZA,_,GH,KM,BJ,LY,_,ZA,ET,_,NG,_,RE,GH,JP,BR,PA,BR,AR,BR,EC,BR,AR,BR,HN,BR,CL,BR,CL,BR,AR,DE,US,AR,EC,BR,EC,BR,PE,AR,MX,BR,AR,BR,AR,PE,BR,PA,BR,IN,US,CA,US,FR,GB,DE,RU,NL,BY,US,CY,FI,SA,RU,IR,RU,GB,SC,NL,SC,GB,CZ,IR,US,ZA,US,CL,US,CL,US,CL,US,CL,US,JP,NL,AU,IN,FI,VN,BR,DE,ES,ZA,IT,DE,US,DE,PT,DE,SG,AU,IN,US,BR,FI,NL,IN,SG,AU,JP,BR,US,BH,ZA,KR,FR,US,CO,CR,PA,US,PK,VN,ID,RU,LT,BY,DE,KE,PT,ZA,UZ,BG,DE,KE,LU,ZA,ES,US,MX,US,GB,IE,FR,BR,CL,PY,BR,CO,US,MX,PA,NZ,AU,PG,JP,KR,NL,DK,IN,PK,IN,BY,NO,LT,SE,TW,BR,US,CA,US,SG,US,ZA,HK,ZA,HK,ZA,US,ZA,AU,US,JP,GB,LY,ZA,TZ,ZA,BF,ZA,GB,_,US,SG,US,DE,US,SG,DE,SG,GB,US,NL,IN,CA,SG,US,ZA,JP,ZA,US,AU,US,IN,US,ZA,TN,_,ZM,US,GB,US,AU,US,CZ,ZA,SZ,ZA,_,ZA,NG,ZA,SL,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,JP,US,RO,US,NZ,HK,IN,NL,US,CA,HK,IN,JP,IN,AE,SG,AU,PL,FI,KZ,ES,LV,SN,GB,GH,DE,UA,NL,UG,JO,IT,CA,BR,AR,UY,US,PA,US,ID,CA,FR,IL,FI,BR,JP,US,ES,ZA,KR,BH,SE,KR,GB,AE,SE,US,IE,FR,IN,ZA,KR,IE,FR,BH,SE,IE,US,CA,IE,US,ID,US,ZA,ID,IL,US,ES,AU,IN,AU,US,SG,VN,NL,US,GB,US,JP,DE,UZ,US,FR,US,GH,DE,US,JP,AU,US,SG,JP,US,GB,US,IN,SG,CA,IT,PT,HK,QA,US,IN,US,NL,BR,US,JP,FI,AU,DE,SK,CZ,EG,DE,US,PA,VN,JP,EC,ES,US,GT,US,JP,BE,US,JP,CA,GB,US,AU,IN,CA,DE,CA,US,PH,MX,KR,ES,US,IT,CH,AR,CO,US,FR,ID,CA,AU,ES,US,IL,FR,NL,IT,ES,BR,US,CA,US,NL,US,PL,SG,IT,US,SG,US,FR,AU,US,HK,US,CA,US,CA,BR,US,SG,US,SG,US,HK,US,HK,US,BR,US,GB,US,NZ,US,BR,US,GB,US,GB,US,GB,US,FR,US,KE,UG,KE,UG,KE,ZA,MZ,CV,RE,ZA,ML,ZA,NG,US,JP,US,JP,US,NI,_,JP,_,JP,US,JP,US,NL,CA,US,AU,US,GB,US,SA,US,NL,US,SG,AU,US,NL,US,GB,US,AU,US,IN,US,KR,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,_,US,CA,US,DE,US,NL,US,BS,CA,US,PR,US,CA,US,AT,BE,DK,KZ,US,CA,US,_,CA,US,KR,AU,ZA,US,HK,IN,NG,AE,TW,JP,HK,SG,JP,PH,MY,US,JP,HK,ID,TH,KR,VN,TW,PH,HK,BR,KR,DE,KR,HK,PH,IN,VN,HK,AE,HK,IN,PH,TH,PH,HK,GB,JP,TW,US,VN,DE,GB,RU,US,MY,ID,HK,TW,US,DE,HK,VN,HK,TH,US,GB,NG,US,RU,TH,US,TH,VN,JP,TH,US,VN,SG,TW,VN,DE,SG,IN,US,SG,VN,SG,US,PH,TW,GB,PH,JP,DE,BR,VN,RU,SG,AE,US,JP,VN,ID,HK,TW,ID,VN,KR,JP,TH,PH,NG,US,SG,TW,US,DE,KR,JP,PH,TW,HK,TW,TH,VN,NG,VN,TH,GB,TW,US,SG,US,SG,US,ZA,US,RE,US,GB,US,SG,US,AU,US,JP,US,AU,US,ZA,CA,ZA,US,CL,AR,CR,PE,CL,US,CA,KR,AU,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GB,US,FR,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,IL,US,KR,US,SG,US,HK,US,CA,US,JP,US,SG,US,SG,US,IN,US,NZ,US,_,CM,US,KR,US,PH,ES,GR,ES,MA,GR,GB,MA,ES,FR,IT,GB,DE,ES,MA,GB,DE,ES,IT,US,ES,PT,US,IT,ES,IT,DE,IT,FR,DE,IT,US,GB,IT,GB,IT,GB,GR,US,IT,US,ES,FR,US,FR,MA,US,ES,IT,US,GB,US,SK,CZ,US,CH,US,BE,US,GB,US,FR,DE,NL,US,DK,US,RU,US,SE,US,CH,DE,FR,GB,PL,IT,BE,RU,ES,CH,JP,AU,US,TW,US,IN,US,JP,SG,AU,HK,AU,US,IN,US,SE,DK,GB,AT,IT,FR,PL,CA,BR,US,MX,US,AU,KR,SG,AU,HK,US,NL,US,CA,US,DE,US,GB,US,DE,US,AU,KR,US,SC,SE,SC,GB,SC,GB,SC,US,SC,DE,SC,DE,ZA,SC,DE,FR,DE,NL,FR,DE,ZA,DE,SC,DE,EE,NL,DE,SC,NL,SC,NL,SC,NL,SC,FR,DE,SC,ZA,SC,ZA,EE,SC,ZA,SC,ZA,SC,DE,SE,EE,DE,SE,EE,SE,EE,SE,DE,SE,US,SE,EE,DE,EE,SE,EE,US,SC,US,SC,SE,EE,SC,EE,SC,EE,FI,SC,EE,SC,EE,ZA,EE,SC,EE,SC,EE,SC,EE,SC,ZA,SC,EE,SC,EE,SC,EE,SC,EE,SC,ZA,SC,US,SC,US,SC,ZA,SC,ZA,SC,US,SE,ES,SC,ZA,SC,US,SC,ZA,US,ES,ZA,SC,ZA,SC,US,SC,ZA,US,ZA,IN,EE,IN,US,GB,US,DE,NL,GB,DE,US,SG,IN,US,ZA,KE,ZA,GB,ZA,NG,ZA,US,AU,JP,KR,US,KR,US,JE,US,JP,US,JP,US,JP,US,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,GB,US,JP,US,JP,US,JP,US,NL,JP,US,JP,US,ZA,US,ES,US,ES,BR,KR,ES,LT,ES,HK,US,GB,US,PA,US,HK,US,RO,JP,IT,US,CA,CZ,BR,US,SE,IE,IL,PT,CA,US,BR,SG,US,BR,IE,US,BR,US,HK,US,CA,US,BR,US,IL,US,IN,TR,BR,US,TR,NL,FR,US,BG,US,BR,US,PA,US,BR,US,GB,HK,US,TW,US,BR,US,CA,US,FR,IN,FR,US,FR,ES,DE,US,ES,US,CN,HK,US,NL,US,IN,TW,VN,US,LT,NL,US,HK,HU,US,CL,DE,US,NL,DE,PL,US,NL,US,NL,US,PL,NL,UA,LT,UA,NL,US,UA,BE,NL,US,FR,UA,NL,UA,US,NL,US,NL,GB,US,HU,US,JP,CA,IN,DE,ES,PL,GB,RO,US,UA,FR,UA,NL,UA,US,IT,PL,IT,US,GB,US,GB,US,GB,US,GB,IN,RU,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,DE,US,DE,US,DE,US,DE,US,MY,DE,US,DE,US,DE,US,DE,US,RU,US,EG,RU,DE,RU,US,PL,DO,DE,US,GR,AD,MD,JO,US,GB,JP,US,AU,US,IN,US,JP,US,FR,US,BR,US,CH,GB,CH,US,CA,US,CH,IT,ES,NL,BE,DE,GB,DE,ES,IT,GB,IT,FR,ES,DE,FR,DE,IE,CZ,SE,NL,DE,IE,NL,GB,DE,DK,HU,SE,GB,SE,IE,ES,GB,DE,GB,SE,IT,ES,GB,CZ,GB,ES,SE,FR,BE,SE,DE,SE,BE,CH,IE,GB,NL,IT,DE,GB,SE,DE,FR,DE,GB,DE,SE,NL,DE,ES,FR,DE,ES,DE,ES,PL,NO,ES,DE,NO,NL,GB,DE,NL,FI,ES,IT,GB,DE,GB,US,SG,US,SG,US,SG,US,CA,US,DE,US,GB,US,AU,NZ,US,BR,US,JP,US,BR,US,BR,US,BR,US,CA,US,CA,US,CL,US,DE,US,DE,US,DE,US,DE,FR,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,FR,US,DE,US,DE,US,DE,US,BE,US,DE,US,DE,US,DE,US,BE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,FR,US,DE,BE,US,DE,US,KR,US,HK,US,GB,HK,SG,MY,IN,US,GB,HK,SG,MY,IN,US,HK,GB,US,HK,GB,HK,IN,HK,IN,SG,US,SG,HK,SG,HK,US,NZ,US,ZA,US,SA,US,PL,US,PL,US,PL,NL,US,MY,US,PL,US,PL,MY,US,PL,HK,US,PL,US,PL,US,PL,US,HK,US,PL,US,PL,US,PL,US,PL,US,PL,US,PL,US,FR,PL,US,DE,US,GB,PL,US,KR,US,PL,HK,US,GB,US,GB,US,UA,US,TH,US,ES,US,TH,US,JP,US,KR,US,_,US,FR,US,SG,US,CL,CN,US,BO,US,JP,AU,SG,AU,SG,US,KR,US,CO,US,IN,US,MY,PH,JP,US,PH,US,BR,US,CA,US,CA,US,CL,US,AU,US,CA,UY,US,NL,US,DE,NL,US,GB,US,SG,IN,US,CA,US,NL,US,FR,US,FR,US,IN,US,IN,US,AU,KE,US,JP,US,PE,DE,GB,CA,US,AU,US,AT,US,GB,US,ES,US,ZA,DE,US,PH,MY,FI,US,AE,US,DE,US,IT,IL,DE,US,IL,US,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,SA,DE,US,CA,US,CA,US,_,US,CA,US,GB,US,SG,CA,JP,CA,US,CA,US,IT,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,TH,US,DE,US,KR,DE,BG,CA,US,CA,DE,US,CA,US,PR,US,GB,US,GB,US,NL,US,SG,NL,US,SG,GB,US,DE,US,CA,GB,NL,US,DE,US,CA,DE,US,FR,IT,US,HK,US,SA,US,HK,IN,JP,IN,JP,IN,SG,AU,JP,AU,IN,AU,IN,SG,AU,IN,AU,US,TW,US,UY,US,SA,US,CA,US,UY,US,CA,US,AU,US,CA,US,CA,AU,US,VE,US,CN,US,CA,US,BO,US,IQ,ES,TR,US,NL,NZ,ES,US,DE,US,AE,US,ES,CH,NL,US,ES,US,DE,GB,US,MX,US,_,US,GB,US,CA,US,CA,US,CA,US,AR,US,BR,US,MX,US,CL,US,CR,US,CO,US,GB,US,IE,US,DE,AT,US,IT,US,NO,US,FR,US,NL,SE,US,ES,PT,FI,BE,DK,PL,US,CH,AE,IL,TR,GR,HR,HU,US,RO,RS,CZ,US,CI,KE,NG,US,ZA,US,CN,HK,CN,US,TW,US,ID,MY,PH,SG,TH,US,JP,IN,US,KR,US,NZ,US,AU,US,CH,JP,US,SG,US,NL,GB,SG,DE,US,DE,US,_,US,KH,NZ,IN,KH,US,IN,AU,IN,HK,IN,KH,IN,SG,IN,KH,HK,JP,AU,KH,NZ,US,HK,NZ,KR,NZ,TH,US,GB,US,CN,US,MY,IN,US,IN,US,JP,US,AT,US,NL,US,GB,NL,US,NL,US,SG,GB,US,ID,US,AU,US,GB,US,FR,US,IN,US,GB,IE,GB,US,IL,US,SG,US,IN,US,JP,IN,AU,CN,SG,US,CA,US,GB,US,SG,US,DE,US,CA,US,DE,US,FR,US,BR,DE,US,CA,US,CA,US,CA,US,BR,US,CA,US,BR,PE,BR,SV,BR,CL,VE,BR,CO,AR,BR,AR,BR,MX,BR,AR,BZ,BR,AR,BR,MX,BR,AR,BR,PY,BR,VE,CL,BR,MX,BR,US,PA,AR,CO,BR,CL,BO,BR,AR,BR,EC,BR,CR,CL,HN,BR,PE,AR,HN,US,BR,GT,BR,PY,BR,AR,BR,US,AR,_,US,BR,PE,BR,AR,BR,SX,BR,AR,BR,AR,BR,US,BR,MX,BR,CO,BR,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,NL,US,IE,US,NL,IE,US,SG,US,IE,NL,HK,US,HK,US,SG,HK,SG,US,HK,US,SG,BR,US,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,HK,ZA,PA,KR,_,SC,DE,SC,US,SC,AU,SC,RU,SC,NL,SC,JP,SC,US,SC,IN,SC,SG,SC,ID,SC,JP,AU,HK,JP,SC,US,SC,JP,SC,US,SC,JP,SC,JP,SC,AU,SC,AT,US,AR,US,DE,US,GB,US,IT,US,DE,US,ZA,BR,AR,CO,BR,MX,AR,BR,AR,BR,VE,US,BR,SV,BR,AR,BR,PE,AR,BR,PY,BR,HN,US,EE,HN,BR,CL,BR,MX,BR,BZ,BR,AR,US,CA,US,JP,US,CA,US,JP,US,CA,US,JP,US,CA,US,PL,US,FR,US,NL,US,IT,US,DE,PL,ES,IL,DE,US,AU,US,ES,AU,US,TW,AR,US,NL,US,SG,US,SG,US,GB,US,_,US,CA,US,DE,US,AR,US,HK,US,DE,US,KR,US,DE,US,DE,TH,BR,AR,BR,PE,BR,AR,MX,BR,CL,SR,BR,AR,BR,PA,BR,UY,BR,AR,BR,PE,BR,PE,MX,BR,US,GU,US,KR,US,ZA,US,ZA,US,ZA,US,AU,KR,AU,US,SG,US,AU,US,AU,JP,CA,AU,IN,NL,BR,SG,JP,BR,TR,US,AU,US,ZA,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,IT,US,SA,US,FI,CA,US,JP,US,ES,RO,FI,SG,US,KR,TW,NL,US,JP,IT,US,CA,FR,US,IN,NZ,IN,AE,IN,SG,US,ID,PH,IN,AU,US,CA,US,CA,US,CA,US,CA,US,_,US,_,US,_,CA,_,US,_,US,_,US,IT,CY,HR,_,US,BR,US,_,US,_,US,BR,US,ES,US,_,US,_,ES,US,GB,US,_,AU,IN,DE,NL,SG,US,DE,US,DE,SG,DE,US,DE,US,GB,US,DE,US,GB,DE,US,GB,DE,KR,ZA,US,CN,US,GB,US,GB,US,GB,US,GB,US,ZA,MX,US,BW,IE,US,ZA,US,CO,US,BR,PE,BR,AR,BR,AR,BR,US,BR,AR,MX,BR,AR,MX,BR,HN,BR,CR,BR,AR,BR,AR,BR,AR,BR,US,BR,US,PT,US,AU,KW,KR,JP,KR,US,MX,BR,AR,BR,AR,BR,GT,BR,MX,BR,PE,BR,VE,BR,AR,BR,EC,BR,PE,BR,AR,BR,CL,US,CL,BR,AR,BR,AR,BR,AR,BR,PY,BR,AR,BR,AR,BR,BZ,BR,AR,BR,AR,TT,CR,CL,BR,AR,BR,MX,BR,SR,BR,PY,BR,AR,CL,MX,BR,AR,BR,AR,BR,AR,BR,AR,BR,DO,BR,AR,BR,AR,BR,CL,BR,CL,BR,AR,BR,AR,BR,US,CA,US,AR,BR,AR,BR,MX,AR,BR,CO,BR,CL,BR,CR,HT,BR,SX,BR,MX,BR,CR,BR,AR,BR,HN,BR,GT,PA,BR,AR,BR,BZ,BR,AR,BR,BO,BR,AR,BR,AU,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,NL,FR,TH,BR,IE,FR,NL,ES,IE,FR,NL,ES,IE,FR,NL,ES,IE,FR,NL,ES,IE,FR,NL,ES,IE,FR,NL,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,IE,FR,NL,ES,IE,FR,NL,ES,IE,FR,NL,ES,IE,FR,NL,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,DE,ES,DE,IT,DE,IT,ES,DE,ES,IT,DE,IT,AU,IT,US,IT,US,AR,MX,PA,BR,CR,BR,JP,BR,AR,BO,BR,AR,BR,PE,BR,HN,US,BR,AR,BR,AR,BR,CL,BR,ZA,US,ZA,_,US,AU,US,KR,US,FR,US,IN,US,AR,CO,AR,BR,SV,AR,BR,_,BR,MX,BR,AR,BR,CO,BR,GT,BR,US,PH,US,AR,BR,AR,BR,CO,BR,AR,BR,HN,CA,US,CR,MX,AR,BR,CO,BR,CO,BR,BO,BR,AR,BR,HN,BR,AR,BR,DO,BR,CL,BR,US,CL,BR,CR,CO,SV,BR,SV,BR,GT,BR,AR,BR,AR,EC,AR,DO,BR,AR,GY,BR,CL,HN,BR,AR,BR,US,HK,US,GT,US,GB,US,CA,US,CA,TR,CA,US,CA,US,SV,BZ,GT,SV,US,CA,US,_,US,CA,US,_,US,SG,US,ES,CA,US,CA,US,CA,US,KR,US,AU,LR,ZW,AE,DE,AE,ZW,ZA,DZ,NG,ZA,RE,ZA,NG,ZA,MW,US,MX,ZA,US,CH,US,CH,US,CH,US,CA,US,IN,US,IN,US,CA,IN,US,IN,CA,US,IN,US,CA,US,IN,CA,IN,US,CA,IN,CA,IN,CA,IN,CA,IN,CA,IN,US,IN,CA,IN,CA,IN,CA,IN,CA,IN,US,CH,US,CH,US,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,CA,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,CA,NL,US,CA,US,CA,NL,CA,NL,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,CH,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,US,GB,NL,GB,NL,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,FR,GB,FR,GB,FR,US,FR,US,FR,GB,NL,GB,US,NL,GB,NL,GB,NL,GB,NL,GB,NL,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,FR,GB,FR,GB,FR,GB,FR,NL,GB,NL,GB,US,GB,NL,GB,NL,GB,NL,US,GB,NL,GB,NL,US,NL,IT,GB,IT,GB,IT,DE,IT,GB,IT,GB,IT,DE,IT,GB,US,GB,US,GB,US,GB,US,CH,US,CA,NO,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,KR,HK,KR,US,JP,US,MX,US,MX,US,MX,US,MX,US,MX,US,MX,US,NO,BR,NO,BR,US,BR,NO,US,BR,US,BR,NO,BR,NO,US,BR,NO,US,NO,US,NO,US,BR,NO,US,BR,NO,BR,NO,BR,NO,BR,NO,BR,NO,BR,NO,US,BR,US,NO,BR,NO,BR,NO,US,BR,CA,BR,NO,BR,NO,BR,NO,BR,NO,BR,NO,US,NO,BR,NO,BR,NO,BR,US,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,NL,US,_,US,_,US,_,ZA,JP,HK,ZA,US,SG,DE,HK,NL,HK,RU,HK,BD,HK,SG,HK,SG,HK,SG,HK,IN,NL,DE,RU,SG,BD,SG,US,SG,US,SG,US,KR,US,BR,US,SG,US,SA,NL,IN,US,IN,US,NL,US,IN,BR,US,CA,US,CA,US,CZ,NL,CH,BR,RO,CZ,DE,IL,US,CA,US,DE,SG,SE,DE,FR,GB,AR,TR,US,NL,CA,BR,US,HK,NL,US,JP,IL,CO,US,DE,US,IL,US,BG,ZA,GB,CH,PE,HR,SG,RO,NL,ZA,DE,IL,US,BR,CA,GR,US,DE,US,CA,US,DE,IT,ES,PT,IE,BE,GB,FR,US,CU,GA,NG,ZA,CD,ZA,US,RU,DE,NL,US,GB,RU,US,_,US,PR,US,CA,US,CA,US,CA,GB,CA,_,US,AU,ZA,US,KR,IQ,US,TZ,ZA,CV,NG,ZA,ZW,ZA,AO,EG,CM,ZA,NG,_,US,ZA,CI,ZA,CD,AO,ZA,_,LY,CF,ML,MZ,AO,GQ,LY,TD,ZA,AO,SN,MU,_,GA,ZA,CD,KE,ZA,KE,_,ZA,NG,SL,FR,ZA,FR,ZA,US,ZA,US,ZA,CD,ZA,NG,ZA,SL,GH,_,US,_,ZA,CM,_,KE,_,ZA,CI,ZA,SS,ZA,NG,ZA,TZ,MW,GH,NG,ZA,CD,CG,TN,CG,ZA,BW,CI,AO,_,KE,_,TZ,ZA,CG,NG,ZA,MZ,SS,_,ZA,GA,TD,CI,MU,_,ZA,MA,NG,TZ,CD,ZA,_,CD,NG,_,ZA,_,ZA,NG,ZA,BR,US,CO,MX,SX,BR,PE,AR,BR,AR,BR,SV,BZ,BR,MX,PE,BR,TT,BR,US,AU,NZ,US,DE,SE,DE,US,AU,US,JE,AU,US,CA,US,CA,US,IE,US,NL,US,GB,US,GB,BE,GB,US,HK,US,HK,US,HK,US,JP,US,JP,US,CA,US,CH,CL,US,MX,US,CN,SG,HK,US,SG,DE,HK,MY,HK,MY,SG,HK,SG,HK,SG,HK,US,HK,GB,HK,JP,HK,US,GB,US,SG,HK,SG,HK,ID,SG,US,CA,US,NL,US,MY,US,CA,US,CA,US,CA,VG,US,CA,US,CA,US,GB,US,CA,GB,US,CA,US,_,US,CA,US,AG,CA,US,CA,US,GB,US,CA,US,_,US,CA,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,PY,UY,PY,UY,PY,AR,PY,AR,PY,UY,AR,PY,AR,PY,AR,UY,AR,UY,PY,AR,UY,PY,UY,AR,US,CA,US,DE,US,CH,US,JP,SG,US,CA,US,CA,US,CA,US,JM,US,JM,US,AU,US,AU,US,PH,US,PH,US,PH,US,BR,US,MX,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,BR,CO,AR,BR,CO,BR,AR,BR,AR,BR,AR,CL,BR,AR,BR,AR,BR,AR,CO,BR,MX,AR,BR,AR,BR,MX,BR,AR,BR,_,BR,AR,BR,PE,CL,BR,CO,BR,CL,BR,PA,BR,MX,BR,DO,BR,AR,BR,CL,BR,AR,BR,CO,BR,NI,GT,AR,MX,BR,CL,BR,CR,AR,CO,BR,GT,BR,AR,BR,AR,HN,BR,AR,BR,DO,BR,AR,BR,MX,BR,HT,BR,DO,BR,CO,CL,CR,BR,DE,BR,US,BR,AR,MX,VE,BR,US,HN,BR,AR,BR,AR,BR,PE,BR,CO,US,BR,DO,BR,HN,CO,BR,PE,BR,EC,BR,CL,BR,PY,BR,EC,BR,CL,BR,TT,BR,TT,BR,PE,BR,BO,BR,PA,BR,AR,CR,BR,AR,BR,AR,BR,AR,CO,BR,VE,BR,AR,BR,HN,BR,AR,BR,US,BR,HT,BR,EC,AR,BR,US,PY,BR,TT,BR,AR,BR,US,CR,BR,AR,NI,VE,BR,AR,PY,BR,MX,BR,AR,CL,AR,BR,DE,US,DE,AR,BR,TR,AW,CR,FR,DE,US,BR,US,PL,IT,US,DE,US,NL,DE,CH,US,GB,MX,US,NL,US,GB,US,CA,US,_,US,SA,US,SE,JP,SE,FR,US,JP,US,CH,US,CH,US,BS,US,CA,US,CA,US,TR,US,AE,US,NL,US,DE,SA,US,CA,US,FR,US,DE,US,HK,US,GB,FR,GB,BR,AR,MX,BR,GT,AR,BR,AR,BR,CR,AR,BR,VE,BR,AR,CL,BR,CL,BR,AR,CL,MX,BR,HN,BR,AR,BR,US,CA,US,AR,US,AU,US,HK,US,SG,US,MX,US,CA,US,SG,US,DE,US,CA,US,DE,US,GB,IT,JP,AU,MX,US,IN,US,CN,US,CA,DE,CA,SG,US,JP,SG,IN,AU,IN,US,GB,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,SG,US,SG,US,SG,US,SG,US,CA,US,DE,AU,US,CA,JP,FR,DE,BR,IE,US,GB,US,_,US,DE,GB,DE,US,CA,US,CA,JP,US,SG,US,GF,US,CA,US,CA,US,JP,US,SG,US,JP,US,CA,US,IN,US,AU,DE,US,CH,US,GB,DE,US,SG,GB,US,AR,US,DE,US,CA,US,BR,AR,BR,HN,BR,AR,BR,AR,PE,BR,AR,BR,AR,BR,AR,BR,PE,BR,AR,BR,AR,BR,MX,BR,PA,BR,US,HN,US,BR,US,BR,AR,BR,AR,GF,BR,AR,BR,AR,BR,AR,BR,PE,BR,CL,BR,AR,BR,CL,BR,AR,BR,PY,BR,AR,BR,US,CH,AT,CH,AT,DE,CH,DE,CH,TR,CH,EC,BR,AR,BR,PY,AR,CL,BR,CL,BR,AR,BR,CO,AR,BR,HN,BR,AR,BR,CO,EC,BR,CL,AR,BR,MX,BR,CO,BR,US,BR,CO,AR,BR,MX,BR,HT,BR,AR,BR,AR,BR,GT,BR,CL,BR,CL,AR,BR,PE,BR,BO,BR,AR,BR,MX,CL,CO,BR,DO,AR,BR,AR,BR,CL,BR,EC,CO,EC,CO,BR,SV,BR,AR,BR,US,BR,DO,BR,AR,VE,AR,BR,DO,BR,VE,US,BR,MX,BR,MX,AR,BR,US,BE,US,BR,HN,BR,CR,BR,AR,BR,EC,BR,HN,BR,CW,BR,VE,BO,BR,JP,BR,CL,BR,HN,BR,MX,BR,PY,BR,CO,BR,DO,AR,BR,MX,BR,AR,BR,AR,BR,CR,BR,AR,BR,AR,BR,AR,CA,HN,US,PE,BR,NL,BR,AR,VE,AR,VE,BR,EC,AR,VE,BR,CR,BR,CO,BR,CR,NI,CR,TT,BR,CL,AR,BR,PA,BR,AR,BR,CO,BR,AR,BR,AR,BR,HN,AR,US,CL,AR,BR,AR,BR,MX,CL,AR,BR,PA,BR,BO,CL,UY,US,MX,BR,MX,BR,CL,BR,VE,CL,US,MX,BR,IN,US,IN,US,IN,US,IN,US,CA,US,IN,US,IN,US,IN,US,CA,JP,US,CA,US,JP,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IN,US,IT,US,SG,US,CA,US,ES,US,CA,US,CO,BR,BZ,BR,EC,BR,PA,BR,AR,DO,BR,MX,AR,BR,AR,BR,AR,BR,AR,BR,VE,US,BR,AR,BR,PY,BR,CO,PE,BR,BE,SG,JP,TH,CN,FR,DE,FR,ES,FR,DE,BE,DE,FR,SG,FR,US,TH,FR,US,FR,HU,DK,NL,FR,LT,ES,CH,AU,GB,ES,AU,BA,IR,DE,IT,AT,IN,NL,GB,IE,IT,DE,GB,TR,US,NL,SE,BG,DE,NL,US,GB,PL,ES,PL,IT,SK,AU,BR,FR,DE,GB,US,BE,CZ,PT,KE,PT,CA,RO,LK,RO,LK,PL,US,ES,FR,DE,FR,US,AL,NO,FR,PL,ES,EC,LT,GB,NL,LT,IE,TR,PL,IT,IL,JP,HK,JP,HK,LU,GB,DE,IT,RU,US,DE,GB,JP,IT,RU,FR,FI,RU,VG,EE,FR,PT,IT,AE,MT,NL,NO,DE,JP,DE,CH,SE,NL,US,SG,NL,US,SG,SE,NO,RU,UA,RU,CZ,RU,DE,NL,HU,PL,RU,IT,PL,SE,RU,PL,DE,RU,UA,FR,RU,_,BE,LV,CZ,DE,CZ,GB,KW,DE,PL,DK,BE,PL,RU,UA,RU,BE,CH,NL,GB,HU,SE,CH,FR,NL,CZ,GB,IE,NO,IE,FR,GB,DE,GB,NL,ES,PT,UA,DE,CH,RU,CN,IN,US,GB,US,GB,US,GB,IN,CN,TH,CN,US,IN,US,IN,US,GB,NL,GB,US,GB,NL,US,NL,GB,US,NL,JP,US,SG,US,SG,US,SG,CA,HK,US,SG,US,NL,US,NL,US,NL,US,HK,SG,US,CA,US,CA,SG,US,CA,US,NL,US,JP,NL,US,NL,US,GB,US,NL,US,GB,NL,US,NL,US,NL,US,GB,US,HK,US,NL,US,NL,US,NL,US,NL,GB,US,NL,US,GB,NL,US,NL,US,NL,IN,US,NL,US,JP,US,NL,CA,US,NL,US,GB,NL,GB,US,SG,CN,VN,US,_,US,PR,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,ES,US,AU,US,TH,BR,BO,US,RU,BR,US,BR,AZ,MZ,US,KE,IN,AO,ZA,US,CY,BR,KE,AT,US,IQ,IN,US,QA,GR,AU,BD,BW,HU,US,BR,AZ,US,JM,IN,BR,IQ,US,AU,JP,AU,TW,US,TN,ZW,LK,ES,MN,US,AM,PA,SA,HK,SA,PT,TH,ID,TW,DE,CL,BR,MM,JP,CW,US,JP,AM,EC,AU,IN,DJ,US,CY,SR,ES,PL,ZA,PH,IN,AU,FJ,IN,US,RS,ID,IN,US,BR,BD,MA,IN,RU,US,BD,CA,CY,US,EC,BR,BO,BR,SE,ZA,US,TH,BG,BR,DE,IT,VN,MD,VN,LK,KH,US,NP,US,BR,KZ,AU,CZ,IN,FR,AR,BD,BR,HR,PE,BR,HU,HK,NL,US,EC,BD,TH,UA,TH,SG,DK,RU,HK,PK,NP,MK,BR,DE,DZ,AT,MX,BR,US,RU,BR,NG,AR,PH,SN,HN,LR,PY,MY,BR,US,AR,JO,ZA,PK,US,NP,BR,GB,GR,MN,TZ,NC,US,RU,US,LT,IQ,NL,BR,US,AU,US,JP,US,MO,IN,NP,DO,BD,GB,KH,BR,IN,LB,MY,IN,US,ID,BR,MU,BR,IN,HK,BR,IQ,KZ,BR,SA,CD,CL,IQ,ZA,CH,GR,PK,ZA,US,BR,US,TR,GB,IN,VN,US,IN,SA,EG,US,IL,IN,US,EE,BR,US,BR,GB,IS,ZA,BB,BR,DE,IN,PH,PL,CA,GD,VN,BD,US,MG,AU,LK,MX,SG,CR,US,JP,KE,GB,JO,US,FR,IN,US,KH,TR,NP,PH,CO,FR,LT,PT,BR,US,LV,GB,US,GU,BR,TR,MD,BR,IN,CO,US,NL,CA,US,IQ,IT,CA,BR,CA,BN,BD,BT,LU,TW,US,PK,MY,LA,BH,US,PK,PH,TR,JP,SE,OM,TH,DZ,IN,MX,BR,PK,US,PK,IQ,US,CM,TR,MN,NG,RW,HT,US,NL,BR,JP,TR,BE,US,ES,ID,IN,US,GB,SG,GB,IN,KR,US,BR,IQ,BR,PH,BR,IN,BR,US,TH,GY,US,JP,US,RU,CL,BR,SG,BR,US,RU,BR,MM,SA,IN,SA,BR,GB,US,BY,PE,IN,MX,AM,IN,SG,GH,IN,BR,RU,TH,VN,BR,IQ,JP,IL,PK,HK,SA,US,IN,JP,EC,SK,DO,BR,US,JP,IL,BR,IN,IL,BR,DE,BE,US,BR,UZ,BR,BF,BR,AZ,BW,MY,BR,RU,US,NL,US,SG,IQ,PH,NZ,AU,BE,US,NL,US,KR,JO,IT,FR,US,IQ,AL,TW,US,DE,ID,IN,BR,US,GB,NL,RU,FR,US,IN,TW,US,HK,US,BR,IN,MV,BR,BH,MU,NP,BR,GB,DE,US,IR,CA,US,CA,US,CA,US,SG,HK,US,HK,US,CA,US,CN,US,CA,US,CA,US,_,US,DE,US,_,US,SG,US,CA,US,CA,US,NL,US,CA,US,NL,US,CA,US,_,CA,US,CA,US,IT,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,JP,US,PR,US,CA,IN,BR,GR,CZ,SE,MY,ID,US,SE,VI,US,CA,US,FR,US,PH,US,GB,US,BE,US,PR,CA,US,DE,US,NL,LU,CA,US,CA,FR,CA,US,GB,US,CA,US,CA,JP,US,CA,US,CA,US,PR,GB,CA,PR,US,CA,US,CA,US,CA,US,CA,US,HK,US,CA,US,DE,SG,US,HK,US,SG,JP,US,SE,US,GB,SG,US,GB,CA,US,CH,US,GB,US,DE,NL,US,JP,US,SG,GB,SE,SG,US,CA,US,CA,US,CA,SG,US,TR,CZ,AE,US,FR,US,CH,FR,LU,US,CZ,US,DE,US,CA,US,PL,NO,US,AT,NL,US,GB,CZ,AT,NL,JP,NZ,US,UA,US,AU,US,NL,SG,US,HU,US,LV,US,SG,AU,NL,US,AU,IN,AU,US,AT,US,SK,AE,GE,AE,GB,US,BE,BG,AU,US,AU,US,NL,CA,HK,SG,US,CA,US,CA,US,CA,US,CA,US,GB,US,IN,US,JP,US,JP,US,IE,IN,JP,AU,US,JP,US,AU,US,BR,US,NG,US,PR,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,HK,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,NL,US,CA,GB,US,CA,US,CA,US,JP,US,ES,US,AT,US,JP,PL,IL,US,SA,AT,US,ES,US,GB,US,SG,US,_,US,HK,US,CA,US,DE,BE,US,BE,US,BE,US,DE,US,DE,US,DE,US,DE,US,FR,US,DE,US,CA,US,CA,US,CA,US,PR,NL,FR,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,VG,US,CA,US,_,US,BR,IT,US,FR,US,DE,US,NL,GB,US,PL,US,DE,US,AU,US,BE,VI,CA,US,CA,US,SE,US,CA,US,CA,US,SG,JP,DE,SG,US,DE,US,GB,IN,US,DE,CA,IN,DE,CA,SG,US,DE,GB,US,JP,SG,US,DE,US,AU,JP,DE,IN,AU,US,SG,US,BR,US,RU,US,NL,US,GB,NL,US,SG,US,KR,US,SG,US,GB,US,IN,US,ES,US,KR,US,NL,BR,US,AU,US,ES,US,NL,US,GB,NL,US,KR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,BR,US,_,US,DE,US,GB,US,CA,US,CA,US,NL,US,CA,PR,US,GB,US,CA,GB,US,JP,US,DE,US,AU,US,BE,US,AT,US,BE,US,BE,US,FR,US,FR,BR,US,GB,US,FR,US,NZ,IN,US,AU,US,NG,CZ,RO,NL,NG,CZ,US,CA,US,IT,SG,US,GB,CA,GB,DE,FR,JP,US,GB,US,AR,GB,US,SI,US,GB,SE,CA,AU,CA,IT,AU,US,AU,GB,HK,DE,US,TR,DE,CZ,HK,US,CA,GB,CZ,US,NZ,PT,US,GB,DE,JP,FR,US,HK,US,CZ,NO,US,BR,DE,US,JP,US,SG,GB,AU,US,CH,GB,US,DE,GB,NL,CH,SG,FR,IE,ES,US,GB,US,NL,CA,BE,HK,US,AU,US,HU,CA,RO,US,DE,US,BE,CZ,NL,US,AU,DE,SG,NL,DE,US,PL,US,PL,US,PL,US,PL,US,UA,US,CA,US,SG,US,SG,US,GB,US,PL,US,MY,US,PL,US,PL,US,PL,US,FR,US,FR,IT,FR,US,PL,US,FR,US,PL,US,PL,US,PL,US,FR,US,FR,US,FR,US,FR,US,IT,US,FR,US,FR,US,IT,US,IT,US,FR,US,FR,US,ES,JP,US,GB,SE,CH,AE,GB,US,FR,US,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,US,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,US,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,US,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,BR,QA,US,KR,US,GB,SG,GB,US,BR,GB,QA,GB,BR,GB,US,QA,GB,US,BR,GB,US,BR,GB,US,GB,BR,GB,BR,QA,GB,QA,US,BR,US,GB,BR,US,QA,BR,US,QA,US,GB,US,GB,US,GB,BR,US,BR,GB,US,GB,US,BR,US,GB,US,GB,QA,BR,US,GB,US,GB,QA,BR,GB,US,BR,US,BR,US,QA,US,BR,GB,US,GB,BR,GB,BR,GB,US,BR,US,GB,US,GB,BR,GB,BR,QA,US,GB,QA,US,GB,BR,GB,BR,US,BR,US,BR,US,GB,US,BR,US,BR,GB,US,GB,BR,GB,US,BR,QA,BR,GB,BR,QA,US,BR,US,BR,GB,BR,GB,US,GB,US,GB,BR,QA,BR,QA,GB,BR,US,GB,US,BR,QA,GB,BR,GB,US,BR,US,BR,QA,US,GB,BR,US,BR,GB,QA,US,BR,GB,US,GB,US,GB,US,BR,QA,US,QA,US,GB,US,BR,US,BR,US,QA,GB,BR,QA,AU,US,NL,US,NZ,IE,NL,US,JP,US,ZA,GB,US,NL,US,IT,GB,IT,US,DE,US,DE,US,SG,DE,IN,BR,US,BR,IN,US,NL,TW,CA,US,SG,US,JP,US,JP,US,CA,US,KR,US,BR,US,MX,BR,AR,IN,JP,FR,SG,TW,AU,NZ,AU,IN,US,CZ,RO,PL,DK,SE,FR,US,DE,AT,ES,CH,PT,IT,GB,IE,US,BE,DE,GB,BR,US,BR,US,CL,BR,US,MX,CA,NO,SE,FR,IT,GB,ZA,US,FI,TR,BR,US,JP,US,FR,US,JP,US,KR,NO,NL,ES,CH,AT,DE,GB,HK,GB,FR,US,SE,CL,US,BR,JP,HK,SG,MX,US,BR,US,AU,TW,CA,FR,ES,US,BR,NL,CO,HK,US,IN,JP,DE,MY,NZ,FR,PT,CA,BR,ZA,SE,US,GB,US,FR,MY,KE,GH,US,CA,US,SG,HK,US,TR,GB,US,JP,US,JP,US,FI,US,DE,US,GB,US,MT,US,BL,KN,RU,PL,AZ,PL,TR,US,AL,MK,CA,JP,US,JP,US,JP,RU,US,JP,MN,TW,CN,TW,AU,US,PG,AU,NZ,US,RU,US,FI,KZ,ID,AE,JP,PH,ID,KR,US,BR,IT,CL,US,MX,IT,US,IT,CD,IT,BR,US,CZ,US,BR,US,AU,US,GB,US,LR,TR,EG,IT,JP,RU,US,FM,JP,US,DE,IN,CA,US,ZA,US,IT,US,MX,AU,US,FR,KE,ES,US,RU,US,IS,US,PT,GB,ID,VN,GL,RU,DE,US,IN,GB,SK,TR,DE,FR,BR,US,DE,NL,IE,GB,US,IN,SG,US,BR,NL,DE,BR,RU,AU,PT,US,BR,GB,IN,QA,AR,BR,BE,AL,RU,ES,NL,AU,BR,ES,BR,US,EC,VE,DE,US,ES,PF,NZ,US,BS,US,IS,NL,AU,CA,GB,US,VE,US,IT,CA,US,JP,US,GB,US,FR,US,JP,MN,MV,SG,VN,SG,US,SE,US,JP,US,JP,US,PL,US,PL,US,ZA,US,MX,US,DE,US,KR,US,BR,US,BR,US,DE,US,BR,US,DE,US,DE,US,DE,US,GB,US,ES,US,NO,US,BR,US,MX,US,BR,US,CL,US,BR,US,AT,CH,US,GB,US,JP,US,AU,US,FR,US,SG,US,SE,US,TW,US,CA,US,HK,US,GB,US,JP,US,FR,US,SG,US,JP,US,JP,US,HK,US,SE,US,FR,IN,US,JP,US,JP,IN,SE,US,IT,GB,ID,BR,US,NL,JP,ES,US,FR,US,SG,FR,US,SG,JP,SE,US,FR,US,IN,US,DE,FR,ZA,MY,HK,CO,MX,US,CL,US,JP,US,JP,US,JP,US,NL,JP,US,JP,US,IT,US,JP,US,JP,ID,JP,US,JP,GB,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,NL,US,LU,NL,SG,NL,US,NL,US,NL,US,HK,US,HK,US,HK,US,FR,US,FR,US,FR,US,IT,US,FR,US,FR,US,IT,US,IT,US,MY,US,BA,US,UA,US,FR,US,NL,US,UA,FR,US,UA,US,IT,US,IT,US,MY,US,FR,US,FR,US,UA,FR,AR,PL,US,JP,US,JP,HK,US,CH,JP,CH,JP,US,JP,US,JP,DE,US,DE,GB,AU,US,AU,US,SG,US,BE,US,IN,US,BR,US,BR,JP,HK,JP,US,NL,US,IN,US,DE,US,NL,US,CA,US,NL,US,NL,US,NL,US,LU,US,NL,US,LU,US,CA,US,CW,US,GB,US,JP,US,CA,US,DE,US,CA,US,NL,IN,SG,JP,CN,JP,US,_,US,_,US,_,US,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,FR,CA,US,CA,US,CA,US,JP,US,DE,KR,US,GB,IT,US,JP,IN,AU,BR,IE,US,FR,CA,JP,SG,SE,US,AE,US,CA,US,NL,US,SG,US,DE,US,JP,US,JP,US,JP,US,TW,US,IE,US,FI,US,JP,NL,TW,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,FR,GB,US,JP,US,DE,US,DE,NL,BE,NL,US,GB,US,DE,US,DE,US,DE,US,FR,DE,US,DE,US,DE,US,DE,FR,DE,US,BE,US,DE,US,DE,US,BE,US,BE,US,BE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,NL,US,CY,US,CA,US,GB,US,CA,US,CA,US,HK,US,CA,US,CA,US,PL,US,AU,US,CA,US,PR,US,CA,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,US,TR,US,CA,US,DE,JP,US,CA,US,CA,US,_,US,PR,US,GB,IN,GB,IN,FR,GB,IN,GB,IN,US,IN,US,IN,US,IT,CH,US,NL,CA,US,SG,US,SG,NL,US,MY,BR,US,JP,US,TW,CA,TH,AU,US,BG,MX,GB,US,NO,US,IT,US,JP,US,CL,US,AU,US,IT,US,FR,US,CL,MY,US,IN,US,AU,US,HK,US,CA,US,NL,US,FR,US,AU,US,PH,KR,US,MX,BR,IN,US,BR,US,AU,US,TW,JP,IN,US,KR,NZ,US,IN,US,_,US,_,US,CA,US,CA,US,KY,US,JM,AG,JM,BB,TC,JM,TC,JM,US,PR,US,CA,US,CA,US,SG,GB,US,JP,NL,GB,US,AU,US,NL,GB,US,GB,US,NL,US,NL,US,NL,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,LT,US,SG,US,LT,PR,MX,HR,IN,US,AE,CZ,AD,US,PR,US,CA,US,LT,AG,US,JP,US,CA,US,CA,US,CA,IN,CA,US,CA,US,UA,US,CA,US,SG,US,SG,US,ES,CA,US,PR,NL,US,CA,US,CA,US,CA,US,FR,US,CA,US,CA,US,LT,US,PR,US,BM,US,TW,US,TH,PR,CA,US,TR,PR,AU,AE,US,CA,US,CA,US,KZ,US,DE,US,DE,US,DE,US,DE,US,DE,GB,US,CA,US,GB,US,IT,US,BE,US,BG,US,AU,US,SG,US,JP,US,KR,US,CA,US,CA,FR,US,CA,US,CA,US,CA,US,CA,US,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,US,BR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JE,GG,LU,CA,US,CO,GR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,GB,JP,US,JP,US,DE,US,JP,US,GB,US,JP,US,JP,US,DE,US,DE,US,SG,US,SG,US,CA,US,CA,US,RO,US,MX,US,CA,US,HK,US,CN,US,CN,_,US,CA,US,CA,US,CA,US,CA,US,CA,NL,SG,US,NL,DE,NL,US,CA,US,IN,US,CA,HK,US,CA,US,GB,US,JP,SG,HK,SG,US,SA,US,CA,US,CA,US,CA,US,CN,KH,JP,SG,MY,JP,KR,JP,SG,JP,HK,US,HK,US,HK,BD,US,BD,US,BD,HK,TW,US,JP,TH,HK,PL,BD,US,HK,BD,HK,BD,JP,HK,JP,CN,AU,IN,KR,TW,HK,TW,HK,TW,JP,AU,BD,TW,SG,TW,HK,SG,TW,HK,TW,HK,JP,SG,JP,CN,HK,AU,NZ,AU,NZ,AU,NZ,AU,NZ,AU,JP,AU,KR,JP,KP,AU,ID,KR,CN,TW,KH,IN,HK,US,HK,_,IN,GB,HK,TW,SG,KR,SG,HK,MY,HK,JP,IN,CN,JP,AU,ID,VN,JP,VN,AU,ID,AU,AF,KR,CN,PK,KR,AU,PK,JP,YE,US,CA,PK,MY,CA,PK,ES,PK,ES,NL,SA,PK,KR,TW,JP,ID,JP,ID,IN,ID,NZ,SG,ID,SG,ID,JP,IN,CN,AU,IN,CN,IN,TW,KR,JP,MY,CN,SG,LK,KR,ID,IN,CN,US,HK,AU,JP,NC,PH,HK,CN,PH,KR,TO,HK,CN,ID,JP,SG,CN,_,IN,CN,HK,TH,TW,HK,JP,AU,NZ,TH,GB,AU,GB,AF,AU,HK,AU,HK,JP,CN,JP,TW,JP,CN,AU,ID,TW,ID,IN,CN,KR,DE,UA,DE,GB,ES,IS,SK,DE,IT,ES,GB,RO,GB,BE,CH,SE,NO,BG,IR,ES,IT,RU,GB,GR,GB,CZ,IL,RU,SA,DK,GB,DK,GB,DE,FR,DE,FR,DE,FR,DE,FR,DE,RU,IQ,AZ,ES,JO,TR,FR,DE,FR,DE,FR,GB,FR,UA,IT,RU,DE,ES,IT,JP,US,IE,US,IE,US,IE,RU,PL,RU,AM,HU,SA,GB,DE,NL,DE,RU,ES,DE,ES,TR,JP,IE,GB,UA,TR,SA,EE,SG,US,HU,US,TR,US,TR,US,TR,US,TR,US,TR,US,TR,US,GB,CH,SA,RU,CL,ES,US,TR,DE,FR,RO,GB,US,FR,DE,GB,IE,FR,DE,ES,TR,FR,RU,US,FR,QA,DE,RU,GB,CZ,RU,DE,RU,CH,RU,US,CH,RU,GH,GL,GU,GT,RU,BZ,RU,CZ,RU,TR,RU,TR,RU,EC,CN,FR,DE,NL,RU,GB,ES,IT,IR,GB,NL,CY,CH,NL,CH,GB,NL,GB,NL,UA,FR,NL,DE,NL,SE,JO,FR,LV,VN,ES,CL,ES,FR,US,IN,DE,US,BA,NL,RU,FR,SE,BE,SE,SI,ES,IT,DE,AU,DE,US,DE,US,DE,GB,DE,RS,US,DE,US,DE,SE,ES,RU,NL,RU,PL,RU,IS,FR,GB,ES,PL,NL,RU,PS,IT,GB,NL,FR,GB,NL,RO,FR,GB,GR,RU,BY,IE,NL,SE,BE,SE,PT,HR,AT,SK,HR,IT,RU,GB,BE,IR,IT,BE,RU,NL,DK,GB,RU,CZ,RU,HU,KZ,PS,RU,GB,LU,IT,RU,DE,NL,DE,IR,AT,UA,LV,RU,PS,IR,NL,FR,RS,RO,GB,PL,SK,BE,FR,GB,BE,PS,FR,GB,FR,GB,DK,RS,CZ,BG,RU,CA,SE,FI,GE,GB,AU,GB,US,GB,US,RU,GB,FR,CH,AE,DE,GE,CZ,GB,US,SE,RU,NO,CZ,NL,NO,SI,RU,HU,PT,ES,TR,GR,CY,FI,DE,RU,PL,US,GB,RU,UA,RU,US,RO,US,DE,AU,AT,CH,UA,DE,UA,NL,UA,PL,AT,PL,GB,US,RU,ES,RU,UA,RU,KZ,RU,UA,RU,UZ,RU,UZ,RU,KZ,RU,UZ,RU,UA,CZ,PL,RU,PL,UA,SG,AE,AU,JP,ES,JP,EE,CZ,RO,SE,AE,NL,PL,RU,UA,RU,PL,GB,NL,GB,CY,AT,FR,RU,NG,RU,US,FI,US,UA,US,CZ,ES,UA,HK,NL,FR,UA,US,DE,US,IL,DE,SA,US,IR,US,IR,UA,ES,CZ,PL,UA,SA,KW,TR,GB,RU,US,UA,CZ,PL,RU,DE,RU,KZ,ES,KZ,CZ,RU,SA,MT,PL,RU,UA,RU,UA,DE,RU,BE,RU,CA,US,FR,GE,PH,KZ,RU,DE,US,DE,US,DE,US,DE,PL,DE,ES,DE,ES,DE,NL,DE,UA,PL,ES,RU,ES,RU,UA,ES,IR,HU,BE,CH,NL,VA,LU,NL,AT,RU,ES,PL,RU,PL,CZ,PL,DE,GB,NO,IT,US,SK,UA,RU,UA,RU,UA,CZ,RU,CZ,PL,SK,US,CZ,RU,DE,PL,UA,IR,UA,PL,UA,BG,UA,PL,RU,UA,PL,FI,RO,CY,PL,LV,UA,RU,UA,RS,US,NL,DE,SE,DE,UA,DE,UA,DE,US,IT,UA,ES,UA,RS,PL,RU,UA,PL,UA,RU,AT,UA,PL,SE,SA,IT,UA,US,GB,US,DE,GB,DE,UA,NL,RU,CH,IQ,SI,RO,IR,BE,FR,IT,PL,IT,NL,UA,RU,PL,PS,LV,RU,LV,PL,GB,RS,RU,US,RU,LV,SK,UA,IL,RU,SK,PL,UA,RO,US,RU,UA,RU,PL,CZ,PL,IT,RU,PL,UA,RU,UA,RS,RU,BA,KZ,UA,PL,US,RU,UA,RU,RO,UA,RU,UA,RU,PL,SK,RU,PL,RS,RU,PL,UA,DE,UA,RU,IT,SA,DE,UA,NL,ES,GB,RO,GB,DE,US,IT,DE,NL,NO,GB,KW,RU,KZ,RU,PL,RU,US,RU,RO,GB,RO,RU,PL,UA,BG,UA,US,FR,UA,RU,PT,PL,US,RO,PL,CA,IT,RU,CY,UA,NO,RU,US,PL,FR,UA,DE,FR,UA,RU,UA,RU,PL,US,RO,RU,PL,UA,RU,EE,RU,SK,RU,CA,KZ,SE,GB,GR,IL,RU,JP,HK,US,CA,ES,CA,US,RU,ES,FR,BG,GB,AT,RO,US,ZA,US,RO,IT,KZ,RU,GB,RU,AM,RU,TJ,UA,RO,FR,US,PL,UA,RU,RO,RU,US,RU,US,FR,MC,RU,PL,CZ,PL,RU,PL,RU,UA,RU,IT,US,IT,RU,US,RO,DE,PL,NL,SG,IN,UA,RU,IN,TR,IR,ID,IN,US,FR,KZ,GB,DE,IN,TR,KZ,DE,US,IN,GB,DE,IN,ID,IN,FR,DE,IN,IT,DE,NO,US,RU,UA,SK,GB,DE,NL,ES,GB,AU,FR,RU,BG,NL,UA,PL,NL,RU,UA,PL,RU,RO,DK,RO,US,DE,RO,FR,RU,BE,NL,LT,NL,DE,NL,UA,NL,UA,PL,ES,DE,UA,TR,DE,RU,UA,RU,EE,RU,FR,GB,US,PL,DE,CA,JO,UA,KZ,RU,US,ES,DK,SK,RU,PL,UA,BY,DE,RU,EE,CZ,FR,BH,NL,DE,RO,BG,BE,DE,NL,RO,RU,LT,RU,FR,RU,UA,ES,RU,UA,PL,UA,NL,ES,HU,RU,DE,NL,DE,RU,JP,DE,RU,CZ,PT,HU,NL,IT,RU,ES,FI,DE,IT,DE,SE,IL,ES,LB,GR,NL,CZ,ES,DE,NL,LI,IT,RU,LU,BA,PL,FR,US,KZ,UA,RU,PS,RU,_,RU,UA,DK,AT,CH,LV,RU,KZ,TR,ES,US,RU,UA,PL,FR,AT,ES,RU,UA,PT,UA,PS,UA,RU,CH,RO,RU,MC,AT,RU,ES,UA,PL,US,RO,DE,PL,RU,UA,RU,UA,RU,CZ,RU,KZ,UA,US,GB,CH,IT,PL,RU,RS,IR,PL,GB,RU,MD,CZ,YE,GB,DE,RU,GB,DE,GB,AT,RU,HR,GB,PL,GB,FR,IR,RU,KZ,US,DE,RU,RS,RU,UA,GB,PL,KG,RU,EE,PL,RU,DE,FR,RU,JP,GB,RO,NO,IR,GB,US,IT,KZ,AM,RO,GB,IT,FR,RU,UA,RU,UA,PL,RU,SE,GB,RU,RO,GB,RO,GB,CZ,RU,PL,GB,RU,NL,FI,DE,FR,CN,SE,RU,UA,PL,IE,EE,RU,GB,SE,PT,NL,DE,UA,RU,FR,DZ,ME,MT,AE,NO,DE,UA,NO,US,JP,IT,US,IT,US,IQ,RU,IE,GR,AT,RU,PL,UA,DE,GB,NL,DE,SE,DE,GB,DE,IT,SE,NL,SE,US,DE,ID,DE,IN,PL,BE,US,IN,RU,US,ES,IT,UA,NL,ES,RU,IN,NL,JP,IN,GB,PL,US,IR,UA,RO,UA,NL,NZ,UA,DE,UA,SE,UA,LV,US,KG,US,NL,RO,ES,AE,IT,RO,GB,RO,ES,US,RO,FR,RO,GB,RO,DE,RO,CA,US,GB,NL,RO,GB,PL,RO,CH,FR,RU,DE,IT,QA,AE,IT,RU,TR,RU,SG,AU,US,ID,UZ,NL,PT,DE,FR,IT,GB,IR,RS,SE,NO,PL,GE,BG,RU,ES,HR,US,NL,RU,DE,RU,IQ,ES,SE,DK,SE,FI,NL,FI,NL,KZ,RU,FR,RU,CZ,DK,RU,PT,RO,IL,CY,ES,DE,KZ,IR,IT,RO,KZ,US,GB,US,RO,CH,RO,GB,IT,RO,LT,NL,CA,GB,TR,RO,IT,DE,RO,CH,GB,FR,TR,US,KZ,BA,IT,GB,RO,GB,SA,HU,RU,TR,MZ,PE,CF,FR,GB,PE,IT,FR,GB,ES,PL,CZ,IT,RU,GB,CY,IN,CR,GB,US,UA,CZ,IL,TR,HU,JO,PL,IQ,RU,UA,IL,NL,US,IL,US,FR,UA,DE,BG,SA,RU,NO,PL,FR,IT,GB,BR,ES,BR,CO,BR,HN,AR,BR,MX,BR,PY,BR,CL,BR,AR,BR,AR,BR,AR,BR,AR,BR,NZ,BR,NZ,BR,DO,BR,AR,BR,PE,BR,EC,BR,PE,BR,AR,BR,CO,AR,BR,PE,BR,CO,BR,AR,CO,BR,EC,BR,AR,BR,PE,BR,CR,CO,BR,CW,BR,TM,BR,MX,BR,MX,BR,CO,US,EC,US,BR,PE,AR,BR,CL,BR,US,BR,PE,BR,AR,BR,MX,BR,CA,BR,AR,EC,BR,AR,DO,BR,CL,BR,PE,BR,BO,FR,BO,BR,MX,AR,BR,GB,US,GB,US,BR,EC,BR,MX,PY,CO,DE,IM,LV,LT,DE,NO,UA,PL,FR,ID,IN,US,RU,KZ,RU,FR,FI,IE,SE,GB,RO,GB,FR,CZ,RS,GB,IQ,GB,CZ,HR,RU,NO,MD,RU,GB,PL,FR,DE,US,GB,RU,NL,US,MD,FR,SK,NL,RU,GB,NL,DE,AT,FR,TR,RU,NL,UA,NL,DE,FR,LT,ES,IS,DE,PL,NL,FR,IT,PL,FO,DE,RU,DE,OM,PL,GB,IT,RU,FR,NL,FR,IT,IE,DE,NO,GB,IT,GR,RU,CZ,SA,UA,RS,NL,RU,JO,GB,RS,RU,RS,TR,HK,US,ES,DE,GB,DK,TR,RU,FR,NL,DE,RU,NL,RU,GB,IR,HU,ES,RU,SE,DK,IT,ES,NL,RO,NO,PL,DE,PL,IR,GR,FR,CZ,FI,IT,FR,GB,FR,GB,FR,GB,NL,CH,GB,EE,DK,FR,GB,US,TR,US,GB,US,FI,RU,GB,NL,GE,IT,US,AT,IQ,RU,NL,CH,IR,NL,RU,NO,CH,CZ,IR,FR,GB,FR,GB,KZ,FR,IT,RU,SE,GB,RS,HU,NL,FR,IT,RU,IT,QA,DE,FR,BE,DE,ES,RO,GR,AT,SK,NO,PL,EE,DE,GB,UA,RU,FR,GB,CH,DK,HR,AT,RU,AE,DE,LT,NL,UA,PL,IT,ES,CZ,RU,CZ,DK,IT,DE,SE,FR,GB,FR,PL,FR,PL,FR,DE,FR,PL,FR,DE,FR,GB,FR,RU,UA,RU,UA,RU,PL,CH,SK,PL,RU,HU,RU,BE,SY,KW,UA,FI,PL,RU,GE,DE,RU,ES,RU,SI,GR,ES,KW,GB,NL,DE,RU,SE,DK,SE,NO,RU,AM,CZ,PL,SA,FR,SE,GB,SE,FI,SE,NO,RU,UA,RU,FI,BG,AZ,MD,DE,RU,BA,FR,DE,FR,DE,JO,CZ,RU,GB,AM,SE,RS,SI,GB,IT,GB,IT,DE,IT,GB,NL,IT,SE,TR,AE,IT,AT,IT,SE,IT,AT,GB,DE,FR,DE,GB,SA,CH,NL,SA,KZ,UA,GB,AT,BE,BY,US,SG,GB,SG,US,SG,US,NL,US,GB,US,DE,SG,CA,NL,RU,NL,DE,NL,KE,RU,NL,RU,DE,SG,NL,CA,NL,TR,YE,RU,NL,RU,PS,SA,IR,NL,BE,FR,BH,TR,ES,US,DE,SE,BG,IT,RU,GR,ES,FR,RO,SK,MD,ES,RU,NL,RS,DK,DE,SE,UA,GE,LB,UA,RO,ES,RU,DE,SK,BE,GR,RS,UA,QA,BY,RU,FI,RU,FI,RU,FI,RU,FI,RU,DK,ES,US,IR,IT,AT,TR,FR,BE,FR,BE,US,JP,US,CH,US,RO,DE,GB,DE,CH,DE,NL,RO,AU,JP,DE,AT,IE,NL,AT,RO,US,DE,US,GB,US,GB,RO,US,RO,RU,DK,RU,UA,RU,UA,GB,RU,UA,TR,RU,UA,NL,RU,NL,BY,RU,US,RU,UA,PL,US,RO,US,RO,PL,UA,PL,UA,BY,RU,HR,SG,AM,KW,RU,NL,DE,RU,BY,NO,HU,UA,AT,IT,PT,RU,IE,MD,BY,SY,RU,BG,FR,GB,GL,CY,NL,MT,CZ,NL,IN,NL,GB,NL,GL,NL,TR,GL,RU,DE,RU,TR,RU,GL,RU,GL,RU,KZ,RU,KZ,RU,FI,RU,US,SG,FR,ID,PH,BR,US,CL,CO,UZ,RU,RO,EE,KG,AZ,US,HK,DK,CA,RU,BY,US,LV,TM,MM,MX,PH,RU,FR,JP,TH,TW,KG,US,HR,SA,GB,UA,US,CO,HK,IT,GB,SG,IL,IN,MX,CA,FR,GE,TR,NL,ES,AE,JP,UA,PH,US,SY,SI,BY,RU,UA,IR,HK,JP,SG,HK,US,JP,US,NL,DE,US,TW,CH,SE,RS,MD,GB,DE,CY,JP,IT,RU,PL,RU,AT,CH,DE,RU,FR,BE,FR,BE,NL,RU,NL,RU,NL,RU,NL,DE,RU,GB,DE,NL,DE,GB,GI,RU,BA,CH,CA,UA,RU,CZ,DK,RU,DE,UA,TR,DE,BA,UA,HU,BE,HU,GB,HU,IT,HU,RU,TR,IT,UA,FR,SK,TR,BE,US,ES,PL,UA,PL,NL,PL,UA,NL,TR,NL,IM,IR,BG,CZ,BE,LV,GB,NL,CH,RU,MX,UA,TR,GB,AT,US,RU,GB,CH,KZ,RU,AT,PL,NL,HK,US,RU,PL,GB,IT,UA,ES,DE,FR,DE,US,HR,RU,NL,RU,RS,DE,IL,DE,UA,DE,PL,RU,PH,FR,VN,RU,IN,MX,RU,PL,RU,US,UA,RO,ZA,US,SG,US,RO,RU,PL,NL,ES,BR,BE,FR,NL,IT,GB,RU,UA,RU,LV,CH,DE,UA,RU,CZ,LV,PL,FR,PL,GB,DE,GB,DE,RU,PL,RU,PL,AM,PL,RU,CZ,PL,UA,RO,IT,MX,UA,RU,PL,RU,FI,RU,PL,RU,PS,NL,PL,UA,RU,IR,RU,GB,RU,UA,PL,PS,NL,US,TR,US,DE,RU,US,CZ,BG,NL,UA,LV,PL,UA,PL,SE,PT,SC,BE,SE,SI,RU,CZ,PL,RU,PL,IE,RU,UZ,PL,CZ,RU,UA,RU,_,RU,US,SE,PL,KG,RU,UA,JP,GB,PL,FR,GB,IR,RU,RS,BE,RU,PL,RU,NL,BG,GB,IM,FR,RU,NL,RU,PL,RU,FI,PL,CZ,RU,KG,RU,PL,RU,UA,PL,RU,DE,NL,GR,IT,TR,CZ,PL,RU,UA,RU,DE,IT,NL,IT,SE,RU,HR,SA,IT,PL,ES,NL,UZ,RU,PL,GB,PL,SE,SY,RS,US,RS,US,RS,PL,RU,AM,IT,US,IT,UA,PL,RU,ES,RU,SI,UA,RU,IR,RU,RS,NL,NO,TR,RU,PL,IE,RU,IR,JP,GB,HK,GE,SE,BA,IR,ES,RU,GB,IT,NL,DE,NL,DE,LV,LT,EE,LT,RU,JP,DE,IN,US,HK,DE,US,SG,DE,JP,RU,PL,RU,US,RU,PL,RU,IT,RU,NL,RU,SE,NL,BE,NL,TR,GB,NL,GB,NL,RU,AZ,CH,FR,GB,ES,GB,AU,GB,AU,GB,RU,RS,ES,RU,CH,FR,US,GB,BZ,RU,CZ,IT,KZ,US,NL,RU,GB,CH,JO,IR,HU,DE,PL,NL,IT,NL,GR,FR,GR,IT,SE,CH,SE,DE,GB,BG,PL,IR,GB,CH,GB,NL,GB,NL,GB,IT,GB,FI,MX,GB,NL,GB,TR,NL,FI,ES,BG,ES,TR,RU,CZ,IS,SE,GB,IR,IT,NL,IT,US,IT,CZ,RU,GB,US,DE,BE,IN,KR,PL,DE,RU,IT,NO,GB,IN,NO,GB,EE,IT,NL,BE,NL,IT,FR,HU,FR,DE,SE,RU,DE,CZ,DE,ES,GE,DE,LV,GB,DK,RU,DE,PL,GB,NL,BE,DE,IT,BE,GB,AE,FR,SA,MK,NO,RU,DE,NL,JP,BE,DE,SE,NL,FR,NL,BG,KW,IT,LU,IT,HK,CZ,US,IT,FR,JP,CA,CZ,IT,DE,RU,NL,FR,DE,NL,CH,LT,PL,GB,LI,CH,LI,CH,LI,IT,GB,DE,TR,GB,FR,IE,DE,CH,RS,NL,RU,DE,GB,RU,HU,DE,RU,NL,IT,FR,NO,DE,RU,AE,DK,DE,ES,FR,NL,GB,TR,DE,FI,AT,IT,FR,DE,RU,UA,DE,PL,DE,CH,DE,SE,RU,FI,BE,LU,BE,GB,CZ,NL,FR,IR,RU,DE,GB,SE,FR,PL,RU,IR,RU,SC,RU,US,SC,IR,SC,NL,SC,US,SC,IR,TR,CA,SC,IR,RU,JP,SC,RU,HK,RU,US,SC,SY,SK,RS,DE,RS,US,RS,US,RS,DE,LU,RS,HR,RS,BG,DE,EE,FI,PH,IL,EE,GI,GG,DE,NL,RO,PL,NL,GB,IT,GB,FR,ES,SE,IT,RU,FR,DE,NO,AT,CH,CZ,IT,AT,FR,CZ,UA,IT,NL,VC,GB,NL,FR,IE,NL,TR,US,BG,US,RU,NL,ES,RU,IT,NL,IT,US,RU,AR,CL,AR,CL,CO,AR,_,AR,CO,CL,CR,BR,AR,PY,CO,TT,CO,BO,HN,BR,EC,BR,PE,MX,VE,BR,EC,AR,CO,AR,CL,PE,CO,CL,UY,BR,AR,BR,GT,AR,PA,MX,PA,CR,AR,EC,CO,BR,CR,AR,CO,AU,CO,PE,AR,CO,CL,SV,PE,CL,BR,CO,BR,CO,VE,UY,CO,BR,AR,BR,AR,BR,AR,CO,BO,BR,CO,BR,AR,CO,AR,BZ,CO,BR,_,BR,AR,PE,EC,PE,AR,CO,AR,CH,DO,VE,BR,PE,BR,AR,BR,CR,AR,EC,ES,EC,PE,AR,BR,AR,HN,AR,BR,PE,CO,BR,AR,BR,EC,BR,CL,BR,CO,AR,CL,BR,CO,CR,SV,DO,AR,CO,BR,EC,DO,BR,PE,BR,CL,BR,AR,GY,HT,BR,HN,AR,BR,AR,BR,BZ,DO,BR,CL,BO,AR,CO,EC,CL,AR,BO,BR,EC,BR,MX,BZ,CR,NL,CO,NI,BZ,US,AR,CR,BR,SV,CR,GT,US,AR,US,BE,AR,PE,AR,TT,AR,GT,AR,CO,EC,AR,CL,PE,CO,DO,AW,AR,CL,CO,AU,NL,DE,IT,US,DE,JP,DE,BS,DE,US,DE,US,DE,US,DE,ES,BR,DE,US,NL,DE,NL,US,DE,GB,FR,DE,FR,DE,EG,DE,CA,DE,SG,DE,US,GB,US,GB,US,CA,GB,SG,CL,GB,US,GB,BR,CA,BR,FR,BR,FR,BR,CA,MX,US,NL,DE,US,BR,US,BR,US,AU,DO,PA,US,PA,BR,US,NZ,BR,US,BR,MX,NL,TR,BR,JP,DE,US,DE,BR,AR,BR,PE,PY,BR,EC,BR,AR,VE,BR,AR,BR,AR,BR,AR,BR,VE,BR,EC,BR,AR,BR,CO,PA,AR,BZ,CL,BR,AR,CL,AR,HN,BR,PY,BR,ES,CL,PY,CL,CO,CR,BR,AR,BR,JP,KR,MY,CN,KR,CN,SG,HK,SG,JP,HK,SG,GU,HK,SG,HK,IN,SG,HK,AU,SG,HK,JP,AU,IN,HK,JP,IN,AU,IN,SG,IN,SG,IN,SG,MY,IN,TW,IN,SG,IN,TW,IN,TW,IN,PH,IN,SG,IN,SG,IN,HK,IN,HK,AU,JP,IN,HK,SG,MY,HK,SG,MY,SG,AU,SG,HK,SG,AU,IN,SG,IN,SG,HK,AU,SG,HK,JP,MY,JP,IN,HK,SG,HK,SG,IN,HK,IN,SG,JP,SG,AU,SG,AU,IN,HK,CN,TW,JP,KR,PK,IN,AU,HK,SG,AU,IN,AU,ID,AU,BD,KR,VN,AU,JP,BD,KR,_,JP,ID,IN,AU,IN,BD,ID,BD,NZ,BD,TW,IN,PH,JP,AU,CN,AF,CN,AU,CN,MO,JP,SG,AU,HK,AU,JP,AU,CN,TH,SG,CN,KR,JP,ID,BD,IN,BD,JP,HK,US,LA,JP,HK,JP,KR,CN,JP,VN,_,IN,CN,_,JP,IN,AU,NZ,VN,JP,CN,JP,AU,KR,JP,BD,CN,US,IN,US,HU,DE,HU,AT,AZ,IT,IN,MN,HK,US,DE,MN,CN,JP,AU,FR,JP,AU,JP,PK,IN,AU,JP,NZ,BD,HK,US,HK,IN,AU,HK,AU,HK,CN,KR,ID,IN,ID,IN,PG,IN,CN,TW,IN,HK,AU,JP,SG,HK,US,HK,JP,ID,CN,AU,KH,PK,CA,PK,US,PK,US,PK,JP,PK,CN,IN,TH,US,AU,KR,TH,CN,HK,AU,JP,IN,JP,AU,JP,KR,JP,US,JP,KR,JP,AU,CN,AU,TL,KR,NZ,AU,NZ,JP,PH,JP,AU,JP,MY,AU,IN,AU,JP,CN,TW,CN,KR,BD,KR,SG,NZ,CN,TH,US,CN,KR,IN,PH,IN,JP,IN,JP,ID,IN,BD,CN,JP,AU,NC,IN,_,AU,TW,TH,JP,ID,VN,ID,HK,AU,TW,HK,JP,AU,JP,NZ,JP,US,TW,US,TW,US,SG,HK,SG,IN,JP,TH,NZ,SG,AF,TH,KH,TH,AU,JP,AU,HK,US,SG,PH,SG,VU,IN,ID,KR,_,CN,US,CN,KR,PH,CN,JP,TW,IN,AU,JP,CN,IN,ID,HK,KR,SA,JP,CN,JP,NZ,AU,CN,MM,IN,JP,AU,HK,US,HK,JP,US,JP,ID,SG,IN,HK,AU,TR,AU,JP,KR,ID,SG,HK,SG,HK,SG,US,SG,US,SG,ID,SG,ID,SG,MY,SG,ID,SG,ID,SG,AR,PY,AR,VE,AR,CO,VE,DO,PA,EC,PY,AW,GY,ES,MX,JP,IN,BO,VE,CR,VE,BO,BR,US,NL,US,BR,SE,BR,CA,SE,US,FR,US,TH,US,BR,GB,BR,US,ES,US,AE,BR,US,BR,CA,BR,AR,CL,AR,CO,PE,CO,CL,BR,CO,EC,PY,CO,EC,CL,EC,AR,CO,CL,PE,PY,EC,SV,HN,NI,GT,CR,PA,CL,CO,CL,CO,AR,CO,AR,CO,AR,PY,CO,AR,GT,HN,GT,HN,AR,PY,AR,PY,AR,PY,AR,PY,AR,PY,AR,PY,AR,EC,GT,AR,HN,AR,BO,AR,BO,AR,CL,EE,HN,BO,AR,PY,AR,PY,AR,PY,AR,PY,AR,PY,AR,TT,AR,CO,CL,AR,CO,AR,CO,AR,CO,AR,CO,CL,PE,PY,EC,SV,HN,NI,GT,AR,PA,AR,PA,AR,PY,CO,CL,AR,CL,BR,CL,CO,GT,AR,PY,PA,US,CR,AR,VE,AR,BR,AR,BR,PE,CO,BR,AR,BR,EC,PE,AR,US,BZ,LV,BZ,LV,BZ,LV,BZ,US,LV,BZ,LV,BZ,BO,AR,GY,CL,PE,PA,VE,TT,BO,EC,BR,CO,CL,CO,GT,BR,VE,BR,VE,BR,GT,AR,SV,AR,HN,DO,HN,GT,HN,CL,BR,AR,BR,AR,BR,AR,BO,BR,AR,BR,AR,BR,AR,BR,AR,BR,AR,MX,BR,AR,VE,BR,EC,BR,MX,AR,BR,AR,BR,CO,CR,NI,CR,EC,PA,AR,EC,US,EC,PE,AR,HN,MX,AR,US,GT,AR,GY,CL,CO,VE,AR,GT,HN,EC,CL,BR,NL,US,BE,BR,CA,BR,US,IN,US,JP,BR,BE,IT,AU,BR,BE,BR,US,BR,AU,BR,IN,BR,BE,DO,BR,US,BE,US,BR,GB,BR,CA,BR,US,BR,US,BR,AU,BR,CA,BR,US,BR,JP,SG,AU,BR,NL,US,DE,US,BR,MD,US,JP,BR,IN,BR,US,JP,CA,US,BR,SG,DE,US,DE,BR,GB,US,BR,US,DE,US,NL,US,AU,CO,GB,US,AU,US,AE,US,SG,US,BR,US,DE,US,IL,JP,PA,US,NL,DE,US,CA,US,LT,US,CA,TR,MX,US,PA,US,BR,AU,US,SG,US,SG,BR,DE,AU,US,BR,KH,US,DO,SG,US,PL,GB,SG,JP,US,SG,PA,US,CA,US,IL,US,AU,US,DE,US,NL,US,NL,DE,US,DE,IL,AU,IT,US,BE,BR,US,TR,AZ,US,BR,DE,SG,GB,BR,US,NL,US,BR,US,JP,IL,US,CA,US,IN,US,CH,GB,US,BR,US,BR,DE,BR,US,BR,US,BR,DE,BR,MY,GE,BR,SG,HK,US,BR,SG,BR,US,BR,GB,SG,BR,US,BR,US,GB,SG,BR,DE,BR,DE,IT,US,BR,US,DE,BR,DE,BR,US,BR,US,SG,US,BE,BR,US,ES,NL,AU,US,BE,US,KR,SG,US,BE,US,GB,US,BE,US,KR,US,FR,BR,US,DE,IL,BE,KR,US,KR,US,BE,US,AU,US,AU,US,BE,US,GB,US,BR,US,GB,US,BE,US,TR,US,KR,US,CL,US,BR,GB,US,BR,US,DE,US,BE,JP,US,DO,GB,IT,JP,GB,CR,DO,BE,US,BE,JP,BR,US,BR,US,DO,US,MY,US,GB,JP,BR,US,BR,MX,BR,CO,PE,BR,MX,BR,CL,BR,CR,BR,EC,CO,BR,AR,US,CO,AR,ES,BR,EC,AR,BR,EC,BR,AR,PE,DO,AR,BR,PE,CO,AR,PE,AR,VE,CO,CL,SV,AR,CL,BR,CO,AR,CU,CL,BO,AR,CO,BR,CL,BR,PY,AR,BR,MX,BR,VE,AR,PY,DO,_,AR,BR,AR,BR,EC,BR,AR,BR,PE,BR,PE,BR,AR,BR,EC,BR,CO,AR,GT,BR,EC,BR,VE,BR,MX,PY,BR,DO,BR,BZ,BR,CO,AR,BR,PE,CO,BR,PY,CO,VE,BR,CO,BR,AR,BR,PE,CO,BR,CO,AR,PY,AR,PY,AR,PY,AR,CO,ID,SG,ID,HK,PH,SG,CN,NZ,BD,ID,CN,JP,SG,JP,ID,TH,CN,IN,PH,IN,SG,JP,ID,SG,ID,SG,ID,IN,SG,ID,NZ,CN,AU,CN,JP,AU,JP,PH,US,KR,CN,JP,BD,CN,NZ,ID,IN,CN,_,KR,NP,IN,WS,US,TH,SG,TH,JP,CN,SG,NZ,JP,WS,JP,NO,AU,JP,ID,CN,TH,CN,SG,US,IN,TW,ID,PH,AU,PH,IN,BD,NP,NZ,JP,MY,AU,SG,AU,CH,NZ,ES,IL,GB,US,JP,CN,JP,SG,IN,CN,MY,IN,SG,IN,CN,MO,NP,JP,TH,IN,CN,HK,NZ,TW,IN,CN,JP,HK,ZA,CL,UA,TR,DK,PT,RO,ID,HK,CN,BD,AU,JP,LK,HK,US,HK,_,AU,_,HK,NZ,PS,AU,KR,BD,HK,JP,CN,HK,JP,VN,KR,JP,BD,KR,JP,KR,TW,IN,GE,SG,MY,HK,KR,JP,KR,GU,CN,PK,KR,CN,DE,CN,KR,TH,TW,JP,VN,AU,NZ,CN,HK,AU,IN,VN,CN,KR,IN,KR,CN,PH,MY,HK,AU,CN,JP,KR,BD,IN,BD,IN,BD,KR,ID,SG,ID,SG,ID,SG,ID,CN,ID,TH,HK,ID,MY,HK,SG,HK,PH,PF,PH,SG,HK,SG,HK,_,US,_,US,PH,HK,PK,MM,IN,CN,JP,AU,KR,CN,JP,MY,KR,CN,MY,AU,HK,CN,IN,JP,KR,JP,VN,FJ,AU,ID,MY,HK,MN,CN,JP,CN,KH,SG,MY,TH,ID,PH,VN,TW,HK,SG,IN,CN,JP,KR,HK,SG,IN,TH,SG,KR,VN,TH,JP,HK,CN,HK,JP,VN,HK,ID,JP,CN,NP,CN,VN,KR,CN,KR,CN,MY,CN,JP,HK,JP,HK,JP,AU,TW,AU,TW,HK,SG,JP,SG,AU,HK,TW,MN,PH,AU,IN,JP,HK,JP,CN,JP,BZ,HK,CN,US,IN,ID,LA,HK,LA,JP,CN,US,TH,US,ES,NL,US,NO,US,NZ,US,DE,US,TW,US,AU,CA,US,CA,US,TH,PE,CA,US,IN,US,JP,US,NL,CA,CL,US,CH,IE,US,AU,IT,AU,IN,KR,US,DE,SV,US,CA,KR,US,IN,CA,US,IT,US,CA,US,DE,IN,US,SG,US,KR,US,IN,GB,US,DE,SG,US,JP,US,JP,ID,US,DE,IN,US,SG,US,IT,SG,JP,US,AU,US,JP,US,IN,US,IN,IL,US,HK,US,IN,NL,US,ID,JP,US,SG,US,TW,US,AR,US,CA,US,SG,IN,US,PH,US,HK,IN,TW,JP,US,CA,IN,US,CA,JP,US,JP,US,JP,US,MY,JP,HK,AU,NZ,US,IN,US,IN,US,IN,TH,US,DE,IN,IE,JP,US,IN,US,MX,SG,US,AU,PH,DE,US,IN,US,JP,US,CA,JP,US,IN,US,IN,AU,US,KR,US,HK,US,AU,US,BR,US,NZ,AU,TH,CL,US,AU,US,HK,US,NZ,US,AU,US,JP,US,HK,US,CA,US,SG,JP,HK,CH,BR,US,DE,NZ,US,SG,US,CH,ZA,DE,TR,US,NL,TH,US,SG,ES,NL,GB,MX,US,CH,US,NZ,US,MY,US,AU,US,KR,US,HK,US,PE,US,IN,US,GB,ES,CA,DE,US,JP,US,BR,AR,US,GB,US,CA,US,MX,US,AU,US,HK,US,AU,HK,US,SG,US,AR,SG,AR,US,PE,US,AR,US,AU,ZA,GB,IN,US,IN,US,AU,US,IT,US,IN,AE,ID,HK,US,HK,TW,US,KW,US,QA,US,PH,IN,KR,US,ZA,AR,SG,TH,US,MY,US,AU,US,ZA,US,CA,AU,US,JP,US,JP,US,NL,US,NL,US,ZA,US,DE,US,SG,US,FR,US,TR,US,NL,US,AE,SG,TH,HK,DE,US,JP,US,AU,US,NL,IN,US,IN,US,IN,US,IN,US,DE,CO,AR,US,CA,US,CA,NL,US,CO,DE,US,IE,NL,US,AR,US,IT,ES,US,SE,IE,CA,AU,US,DE,US,CA,FR,CO,US,IN,US,IN,US,IN,US,IN,US,IN,GB,PE,US,KR,US,IN,US,TH,US,ID,US,AU,SG,US,HK,US,HK,US,SG,US,GB,US,MX,NL,TW,SE,ID,SE,US,BR,US,AU,US,AU,US,FR,BR,NL,US,NL,US,SG,US,JP,US,AU,US,IN,US,HK,US,IN,BR,US,DE,US,SE,NL,SG,IN,SG,US,HK,US,FR,US,JP,US,ID,US,MX,US,IN,US,IT,US,DE,US,FI,DE,HK,FR,US,TW,US,CA,AU,US,IN,US,DK,US,AU,US,FI,HK,KW,US,SE,NL,US,CA,US,CA,US,CA,US,TH,US,CA,HK,US,IN,US,CO,AU,US,AU,US,AU,US,IN,US,HK,IN,US,CA,PH,US,TW,IN,HK,US,JP,US,NL,DE,CA,US,AU,IN,DK,US,IN,SE,US,AU,US,CA,US,IN,US,TH,AU,US,BR,GB,US,AU,US,BR,SG,JP,US,TW,HK,BR,FI,US,FR,US,HK,US,AU,SG,HK,US,IN,US,AT,IN,US,TH,US,KR,US,CA,US,SE,US,CA,US,CH,US,HK,US,DE,US,SG,AU,PL,OM,US,HK,US,SG,AU,SE,US,FR,US,IT,US,IN,US,SG,DE,US,OM,US,HK,US,PH,HK,AU,US,JP,US,HK,GB,KR,SG,US,MX,HK,US,PH,US,OM,AU,IT,US,HK,US,PH,US,CA,US,CA,US,GB,PR,US,CA,US,FR,US,CH,US,CH,US,MY,US,JP,US,HK,SG,US,SG,KR,MY,US,MY,HK,US,SE,EE,US,AL,US,KE,US,CA,US,PR,US,CA,US,NL,US,NL,PR,US,PR,US,AU,US,DE,US,NL,US,NL,US,CA,US,PR,US,CA,US,DE,US,CA,US,CA,US,SG,US,CA,US,JM,US,CA,US,CA,US,DE,US,DE,US,CA,US,CA,US,PL,US,CA,US,PR,US,RO,NL,GB,CH,DK,FI,NO,IT,NL,RU,PL,DK,IT,GB,CZ,KZ,UZ,BE,PT,TR,_,GR,DK,CH,LI,DE,FI,GB,NL,UZ,SA,SI,AT,_,RU,PS,FR,PL,AE,PL,NO,RU,_,AE,RU,PL,DE,RU,ES,_,ES,RU,HU,CZ,FR,RS,FR,GR,BG,AT,NL,GB,SK,DE,RO,PL,FR,UA,BG,RU,PL,AT,ME,MD,IT,FR,TR,RU,UA,NL,GB,DE,NO,BG,DK,SA,CH,DE,UA,RU,NO,UA,RU,ES,IE,RS,GB,RU,AL,DE,PL,RU,IR,MD,SE,IT,RU,SE,CZ,UA,FI,HR,SE,FR,ES,PL,LT,CH,NL,TR,UA,IT,IQ,UA,AL,GB,DE,RO,GB,CH,IT,SE,LB,IE,KG,UA,NL,LT,IT,PT,RU,ES,PL,MK,NL,GR,IT,CH,SA,BE,RO,KW,PL,PT,TR,BA,UA,CH,GB,BG,BE,IT,NL,GB,SE,ES,FR,PL,UA,CH,FR,RO,KG,RU,DE,BG,SE,TR,QA,_,RU,FR,PL,RU,DE,GB,FR,DE,GR,DE,NO,DE,DK,FR,IM,RO,DE,FI,FR,ES,DE,IT,DE,SA,DE,NL,OM,ES,UA,GB,UA,DE,UA,PL,IS,DE,_,NL,NO,CH,IT,CY,DE,NO,UA,_,SE,NL,PL,IT,MD,AE,TR,NL,GE,UA,BG,NO,ES,FI,IT,GB,SE,SK,EE,LV,ES,UA,SA,NL,PS,FR,BE,TR,DE,ES,PL,DE,_,UZ,RO,DE,PT,PL,NL,DE,GB,IT,DE,IR,DE,CH,NL,SE,NL,RU,PL,CZ,SK,NL,PK,US,JP,BE,DE,FR,IE,ES,RU,GB,NL,PT,RU,BE,CY,DE,RU,UA,PL,DE,NL,DE,RU,DE,GB,DE,IT,NL,ES,SE,AT,BR,US,GB,NL,TR,AE,AR,AT,DE,RU,MK,GB,CH,GB,BG,UA,GB,IE,KZ,LT,SA,GB,NL,QA,DE,FR,NO,CZ,DK,RU,LB,US,FR,GB,RU,IT,DE,LU,SE,JE,TR,PL,FR,RU,GB,DE,GB,LY,IT,GB,DE,GG,NL,IT,PL,ES,BH,SA,IR,FR,SE,HU,RU,IL,UA,AE,CZ,BE,GB,FR,RU,NL,RU,DE,AM,HR,FR,IR,NL,IR,BE,GR,PL,LT,DE,GB,RU,HU,GB,IT,IR,GB,SE,GB,IR,FR,GB,IR,ES,NO,UA,FR,GB,AD,RU,FR,RU,TR,EE,FR,BG,SY,GR,DE,IN,AE,FR,GB,FR,IR,RU,NL,GB,AT,LU,GB,GR,DK,LU,DK,IT,RU,NL,IT,GB,UZ,GB,IT,ES,NO,GB,KZ,ES,NO,ES,IE,IT,MA,LY,GB,CZ,RU,TR,PL,DK,GB,CA,ID,LU,US,KR,TR,FI,DE,GR,GB,ES,FR,LB,GB,MK,DE,RU,SE,DE,CH,GB,FR,GB,CY,SE,LU,SE,CZ,MT,LT,CH,IT,GB,CZ,RU,GR,DE,ES,GB,IT,PL,DE,UA,FR,IT,BG,NL,ES,FR,NL,RO,GB,SG,NL,RU,GB,MX,GB,RU,SA,IR,RU,DK,DE,GB,US,RO,TR,IT,DE,CH,GB,RU,IT,RU,KZ,IT,FR,PL,PS,CZ,HU,NO,ES,IE,IT,RU,UA,PL,ES,SE,NL,DE,NL,PS,MK,BY,PL,ES,IE,UZ,RU,NL,PL,PS,FR,IL,US,IL,DE,IT,GR,RU,NL,IT,FR,DE,HU,BA,NL,GB,FR,NL,PL,RU,DE,RU,GB,HU,FR,DE,LB,GB,HU,NL,RU,CH,RU,MY,FR,IT,EE,FI,UA,RS,IT,GB,ES,NL,FR,RU,OM,GB,RU,LU,RU,IT,RU,DE,TR,FR,BH,FR,AT,CZ,RU,AT,SE,CH,NL,FR,RU,CZ,RU,HR,DE,NO,FR,DE,FR,NL,GB,NL,TR,RU,GB,RU,NL,GB,FR,PL,FR,IT,RU,PS,AT,LB,NO,RU,GB,RU,CY,FR,GB,PL,RU,TR,RU,IE,GB,NO,DE,RU,BG,DE,IR,CH,RU,UA,BG,VU,NO,US,GB,RU,AU,IN,ES,RS,FR,GB,DE,EE,AM,RU,DE,TR,NO,RU,IT,FR,TR,IT,UA,BE,FR,BE,NL,CZ,LV,FR,MD,HU,FR,SE,DE,GB,FR,BN,LT,GB,IE,DE,IT,RU,TR,GB,DE,ES,FR,IT,RO,RU,CZ,DE,IR,NL,RU,AT,CZ,IE,IT,RU,GB,CH,UZ,RU,DE,KZ,CZ,FR,ES,NO,FR,SE,DK,FI,DE,GB,CH,AT,FR,DK,DE,GB,TR,BE,UA,AL,GB,SC,IT,BR,LV,PL,SE,DE,IQ,RU,NO,GB,FR,MT,BE,ES,DE,SK,CZ,KZ,RU,KZ,PL,DE,AT,_,DK,RU,IT,FR,TR,RU,SE,US,GB,NL,DE,RU,LU,ES,KW,RU,IT,GI,DE,TR,DE,RU,GB,RO,LU,FR,NL,RU,US,IL,US,DK,GB,FR,MD,PL,NO,IT,DE,HR,RU,NL,CH,NL,RU,IL,IS,DE,IR,IT,ES,CZ,GB,DE,FR,GB,HK,AT,SA,IE,PL,HU,RU,SE,RU,RS,GB,DE,RU,NL,GB,ES,RU,FR,RU,IT,DE,FI,GB,RS,NL,DK,JO,DK,CH,NL,CZ,LY,DE,ES,FR,NO,RU,YE,TR,DE,IT,LT,UA,RU,GB,DE,LU,US,LU,US,RU,IT,CH,NL,LV,PL,AT,IE,IR,RU,BY,UA,AT,IR,GB,SE,PL,GB,PL,NO,ES,SA,US,BE,US,PL,RU,DE,ES,US,NL,RU,IT,DE,FR,PT,CH,HU,IR,NO,GB,FR,IT,RU,ES,GB,FI,TR,FR,NL,FR,ES,IT,RU,IT,ES,GB,RU,TR,DE,FR,CH,UA,NL,AZ,PL,IQ,RU,FR,ME,CH,FR,RU,NO,IR,DE,RU,NO,BA,IE,RU,DE,RU,FR,IR,IQ,ES,TR,UA,PT,NL,RU,CH,NL,GB,UA,NL,GB,SE,RU,IE,GB,SA,BA,SA,DE,AT,JP,GB,CZ,GB,US,RU,LU,US,CY,NL,LB,RU,GB,EE,NL,JO,SE,RU,UA,RS,GB,EE,KZ,RU,DE,RU,FR,SE,RU,GB,SI,TR,ES,DE,ES,FR,DE,GB,ES,GB,RU,DE,FR,CZ,LU,NO,SE,FR,GB,RU,NO,GB,FR,RU,GB,PL,DE,LV,DE,RU,IT,PL,RU,FR,PL,GB,IL,AM,ES,GB,DE,FR,MQ,IT,NL,US,IR,PL,MK,BA,GB,UA,IT,FR,RU,IT,DE,RU,TR,ES,NL,RU,ES,RU,US,DE,RU,HK,DE,AT,ES,DE,RU,PL,IT,IR,GB,DE,GR,NO,DE,MQ,KZ,FR,LU,PL,SK,FR,BA,FR,JO,GB,PL,GB,CH,IR,GB,NL,TR,FR,NL,CZ,UA,SA,GR,MK,GB,EE,GB,CZ,FR,CZ,IT,US,BR,US,SE,FR,IQ,CZ,PL,UA,DE,NL,FR,PT,FR,HR,FR,RU,TR,PL,FR,US,NL,RU,BA,DE,DK,ES,PL,RU,DE,RU,ES,GB,CZ,GE,RU,SE,DK,FR,PL,US,BE,FI,FR,CZ,ES,NO,BY,IT,NL,IT,RU,CL,DE,RU,DE,TR,CH,GB,RU,NL,FI,NO,NL,GB,CH,PL,AT,GB,DE,NL,CZ,GB,KW,RU,BA,DK,NL,AE,IQ,UA,PL,GB,NL,GB,FR,AT,RU,DE,RU,GB,JE,GB,DE,AT,GG,AT,DE,CZ,GB,CH,SE,IL,US,IE,US,SE,FI,RU,US,FR,DE,AT,RU,ES,UA,PL,IT,RU,DK,PL,RU,GB,DK,GB,GR,FI,CH,RU,CZ,DE,GB,AT,SE,GI,DK,DE,SE,GB,ES,RU,US,FR,GB,PL,IR,TR,BE,RU,IT,LB,AL,RO,FR,RU,VN,FI,RU,DE,RU,AT,RU,IT,GB,RU,DE,RU,PL,GB,IT,DK,FR,NL,RU,MD,RU,CH,NL,RU,NL,RU,NO,GB,CZ,IT,CH,TR,CZ,DE,UA,RU,TR,RU,DE,GB,RU,IT,PL,GB,RU,GB,CH,GB,NL,RS,DK,DE,GB,RU,DE,CH,CZ,DK,VA,MD,PT,PS,FR,IE,FR,DE,FR,GB,DE,DK,RU,BE,RS,ES,RU,IT,CZ,GB,DE,ES,RU,GB,NL,BG,HR,SK,PL,AM,FI,FR,SE,RU,DE,FR,DE,BE,RU,US,TR,RU,DE,PL,GB,PL,GB,BE,GR,BA,IR,EE,SE,FR,CH,PL,AT,CY,GL,SE,ES,RU,IL,FR,IR,GB,KZ,IE,JP,FR,RO,BG,IT,NL,IT,AZ,ES,KZ,CZ,UA,DE,GB,RU,ES,CH,DE,SK,TN,NO,GB,GR,FR,DE,NL,DE,NO,SE,DK,ES,SK,KW,TR,CH,GB,TR,GE,NL,AE,NL,LA,GB,JO,PL,CH,SY,IT,DK,FR,IT,GB,TR,ES,FR,IT,CH,DE,RU,BE,IT,ES,KZ,DE,GB,IR,RU,TR,RU,IE,GB,ES,DE,PS,FR,JO,DE,NL,DE,FR,UA,SE,DE,GB,CH,NL,FR,TR,DE,FR,SE,FR,PL,IQ,HR,GB,RS,CY,FR,RU,GB,EE,GB,IT,NL,ES,IE,FR,SA,RU,FR,BG,IE,GB,EE,NO,ES,BY,ES,KG,KZ,GB,RU,FI,DK,CH,US,FR,SA,FR,SA,BG,IR,GB,NO,PL,RU,NL,DE,ES,IQ,CH,DK,CH,NL,CH,NL,PT,SE,HR,UA,US,RU,DE,CH,DE,AT,DK,NO,GB,PL,GB,FI,CH,TR,IL,GB,IS,GB,IT,DE,ES,PL,DK,ES,NL,RU,PH,UA,NL,RU,IR,IT,IR,FR,PL,FI,RO,AT,DE,FR,DE,IE,FR,NL,ES,GB,FR,IT,SM,PS,DE,US,DK,FR,GB,SM,GB,NL,ES,IQ,RU,KZ,BE,SE,PL,FR,RU,CZ,DE,NL,IT,UA,AE,QA,SA,KW,NL,FR,CZ,NL,TR,GB,MQ,GP,GB,CZ,DE,GL,DK,AT,NL,DE,IT,US,IN,HK,DE,IT,GB,PL,NL,UA,AT,RU,IR,LB,IT,SG,DE,FR,CH,IS,IT,RU,KZ,DE,DZ,DK,GB,IT,RS,ES,CZ,TR,CH,FR,PL,FR,NO,CZ,FR,FI,PL,DE,RS,DE,RU,IE,SA,AE,RO,GB,FR,GB,IE,RU,SK,RU,TR,NL,FR,ES,RU,GB,SK,FR,DE,GB,SA,GB,TR,AT,RU,CZ,GB,AT,TR,GB,AT,GB,US,DE,PL,RU,PL,LT,PL,NL,IT,RU,ES,FR,PL,GE,GB,IL,GB,RU,ES,TR,SY,DE,SA,FR,RU,IT,GR,FR,GB,UA,NL,DE,AL,TR,SK,ES,SA,IR,FR,NL,NO,PL,IQ,DE,LV,UA,GR,IL,GB,US,DE,US,TR,SY,FR,ES,AE,SA,AT,ES,DE,NL,DK,ES,DE,RU,GB,ME,US,PA,GB,BE,NL,CH,GB,NL,GB,IS,ES,US,CA,AU,AT,GB,FR,CZ,PL,FR,RS,SI,RU,NL,RU,IQ,GB,DE,GB,IL,GB,PL,RU,GB,BY,SK,AT,IT,IN,US,BR,RU,IT,GB,TR,JO,SE,IR,FR,IR,FR,GB,PL,DK,NL,RU,FR,NO,FR,PL,IL,BA,RU,PL,NL,IR,IE,CZ,NL,RU,SE,IR,LT,RU,QA,RU,GR,ES,CH,GB,DE,FR,SE,LT,ES,GB,RU,GB,RU,IT,FI,NL,GB,RU,GB,DE,FI,CZ,DE,TR,GB,ES,HU,JP,PL,ES,UA,PL,AT,IT,DE,IT,DK,GB,PL,RU,US,NL,DE,MT,IR,RU,SE,AE,CZ,GB,CH,ES,FI,IT,ZA,ZM,ZA,DK,PL,GB,CH,NL,IT,GB,SK,IS,LU,BG,LU,ES,SE,GB,BE,AE,DE,RU,IR,DE,RU,ES,FI,RU,NL,DK,IT,TR,RU,DE,LB,DE,FR,GB,DE,RU,FR,NL,RU,RS,RU,LU,NO,LT,ES,IT,TR,GB,LU,DE,LU,NO,RU,RS,BA,US,AZ,AT,RU,IT,DE,RU,BE,US,SG,NL,RU,UA,FR,ES,GB,IR,AT,NL,FR,GB,BE,FR,DE,DK,CH,DE,GB,NL,GB,NO,NL,GB,IS,NL,RU,PL,MT,HU,LI,KZ,IT,CH,DE,FR,BE,RU,DE,OM,US,GB,US,SE,RU,IL,CH,DK,JO,IQ,JO,AT,ES,RS,GB,ES,NL,GB,RU,DE,RU,SE,NL,DE,US,DE,GB,DE,CH,PL,RU,GB,ES,DK,RU,DE,IQ,SA,FR,AU,PH,TH,SE,NL,SE,GB,AF,NL,AF,CD,DE,TR,DE,SI,IE,PL,GB,US,CZ,FR,CA,US,NL,FR,GB,ES,IT,NL,TR,SO,SZ,FR,NL,DE,US,IE,MT,GI,FR,DE,IT,NL,CY,GB,DE,CZ,MD,RU,GB,DE,ES,NL,EE,LV,PL,EE,SK,NO,TR,BE,SE,ES,SK,NL,IL,DE,TR,GB,ES,DE,PL,FR,DE,US,NL,AU,NL,CZ,IE,GB,LU,DE,GB,ES,HK,SG,US,NL,DE,FR,UA,GB,FI,PL,GB,BE,SE,LV,PL,SI,SE,GR,DE,FR,GB,FR,RU,NL,BE,NL,FR,ES,IT,CH,DK,HU,PL,AT,SA,IT,RS,IT,NL,SE,DE,TR,RU,GB,OM,IT,FR,CH,SK,IT,NL,DE,GB,FR,KG,DE,TR,IS,NL,IT,GB,ES,DE,IR,GB,AU,GB,FR,UA,DE,FR,IT,UA,PL,IR,GB,RU,US,GB,FR,DE,LB,RU,IT,FR,BE,NL,IT,US,IR,IT,ES,AZ,FR,RU,DK,RU,IT,RU,SK,PL,FR,SI,ES,AL,SA,SE,DE,CZ,ES,NL,BR,NL,ES,LU,DE,BE,NL,IT,IS,IT,RU,ES,UA,NL,FR,GB,FR,RU,NO,RU,NL,GB,NL,ES,JO,BE,FR,DE,_,GB,IS,GB,AM,GB,FI,DE,GB,ES,PL,AT,RS,CZ,FR,LV,PL,AT,IT,US,SG,BR,DE,IT,FI,KZ,DK,PL,UA,PL,EE,IE,CH,ES,RU,BG,IR,NL,US,RU,FI,SE,NL,FR,GB,PT,RU,GB,NL,DK,CH,DE,PL,AE,RU,SE,NL,RU,LT,CZ,GB,DE,AT,PL,IM,GB,NL,GB,ES,EE,NL,CH,GB,MD,PL,SE,TR,ES,AL,RO,ES,DE,PT,IT,AZ,PL,GB,RU,UA,CZ,RU,ES,FR,PL,GB,US,SG,GB,SG,DE,RU,NO,GB,FR,US,GB,ES,DE,RU,CH,IR,RU,ES,NL,PL,BG,IE,PL,CZ,RU,BE,BA,IL,PL,CZ,RU,PT,US,SE,GB,SE,FR,CH,FR,CH,BY,GR,NL,LU,NL,IS,DE,RU,IE,AD,GB,AT,FR,LU,CH,TR,IR,FR,JO,AL,PL,FR,US,IQ,SI,HU,IT,TR,ES,NL,FI,GB,HU,US,FR,US,GB,DK,US,NL,MD,IT,NL,RU,KW,TR,ES,CZ,UA,CZ,GB,NL,CZ,RU,NL,PS,RU,BH,DE,GB,DE,GB,RU,DE,GB,FR,DE,NL,DE,CH,RU,TR,RU,GB,RU,CH,AT,DE,AE,NO,GB,DK,IQ,RU,NL,PL,FR,IT,NL,DE,BE,DE,GB,PL,LT,GB,RO,SE,ES,GB,RO,KZ,DE,NL,AZ,PL,GB,IT,DE,RS,GB,DE,GB,CH,TR,IE,DE,GB,IE,GB,TR,DK,NL,IT,FR,NL,CH,LI,CH,RU,NL,US,GB,NL,GB,NL,RU,DE,GB,NL,ES,AT,DE,VG,US,MD,IT,GB,DE,NL,UA,BH,GB,PL,RU,IT,GB,JP,RU,UA,DE,KZ,TR,GB,CH,NL,RU,GB,BE,GB,CH,FR,BE,NL,DE,GB,FR,SA,NO,SE,GB,ES,NL,UA,AE,DE,NL,RU,GB,RU,DE,US,ES,DE,GB,AT,BA,RU,BE,RU,BE,BG,AT,NO,ES,RU,PL,SE,NO,FR,DE,NO,DE,RU,EE,KZ,BE,MX,DE,SE,DE,US,GB,CH,ES,BE,GB,FR,AT,DE,IL,BE,GB,NO,GB,AM,NL,DE,NO,IT,UA,NL,UA,RU,FR,BA,IT,GB,LT,GB,BA,BH,AT,FI,RU,PT,ES,GB,RU,GB,DE,NO,US,NO,US,IT,NL,DE,NL,PL,KZ,SE,UA,BG,FI,SE,PL,RU,CZ,BE,PL,RU,KW,LU,DK,NL,SG,HK,UA,AZ,HK,GB,ES,NO,FR,CH,IR,NL,RO,IR,GR,MT,SE,NO,GE,GB,RO,DE,PL,RS,SE,GB,NL,RO,PL,UA,FR,PS,DE,NL,RS,FR,PL,US,FR,IT,RU,IR,RU,NL,CH,GG,IT,DK,IQ,IT,QA,BA,RU,RO,TR,AT,QA,PL,IT,IE,NL,RU,FI,DE,DK,SE,DE,IL,DE,FR,IQ,RU,RS,GB,IT,CY,TR,RU,UA,RU,UA,GB,DE,IT,PT,ES,IT,FR,JP,ES,LB,GB,NL,GB,SK,NL,DE,EE,SG,FI,AT,DE,NL,RU,FR,DK,LB,GB,DE,GB,DE,LV,IE,CH,NO,UA,DE,GB,RU,NL,FR,GB,DE,GB,RS,IT,NL,GB,CZ,GB,DE,NO,HU,ES,GB,IT,PT,BA,GB,NL,RU,LT,AT,DK,HR,SE,NO,DK,ME,CZ,AL,FR,NL,US,RU,UA,US,IQ,UA,PL,GB,NL,NO,US,GB,PL,IT,BA,RU,KZ,BE,FR,AT,DE,RU,NL,RU,DE,IT,UA,US,NL,CH,SA,ES,NL,DE,BE,NL,DE,ES,DE,ES,UA,FR,DE,ES,KG,RU,DE,CH,ES,IT,DE,RU,NL,SE,FI,RU,ES,FR,SE,RU,BE,FR,PL,IE,FR,AT,DE,IR,FI,IT,RU,UA,NO,TR,RU,NL,GR,PT,NO,FR,DE,UA,CH,GB,IT,GB,DE,RU,LT,FI,GB,IT,IR,FI,RU,JO,HU,GB,RU,AZ,ES,RU,DK,UA,AT,NL,LU,IE,BE,TR,RU,CZ,TR,NL,GB,FI,NL,FR,DE,US,TR,FI,NL,PL,DE,IS,GB,RU,DE,HU,GB,FR,ES,RU,IL,AZ,DE,BG,AT,DE,AZ,ES,SE,ME,PS,PL,FI,US,GB,US,LB,IT,CH,IT,FR,PL,GB,NL,DE,RO,EE,IR,DE,NL,IR,FR,GB,DE,NO,UA,GB,FR,IT,NL,RU,GB,NL,LU,IT,GB,UA,DE,NO,PL,IT,CH,PL,SY,IT,PL,ES,RU,DE,RU,PT,RU,NL,PL,CH,NL,BR,NL,SE,FR,GE,RU,IT,RU,SE,SI,FR,RU,GB,LV,RU,AZ,RU,CY,IT,KW,IR,IE,GB,BE,SE,GB,NO,ES,UA,IT,GB,SK,NL,RU,FI,RU,GB,ES,IR,FR,CY,MK,RU,PL,RU,GB,NL,RU,GB,NL,RU,NL,RU,TJ,FR,ES,RU,FR,ES,RU,UA,FR,SE,CH,IQ,RU,NL,GB,RU,GB,CH,PT,GB,RU,NO,TR,FR,RU,PL,FR,GB,IQ,GB,NL,FR,NL,GR,IR,LU,GB,IR,RU,FR,GB,ES,CH,DE,BE,RU,AT,IT,NL,DE,FR,GB,IS,GB,FR,GB,FR,GB,DE,NL,BG,FR,NL,FR,ES,GB,NL,RU,FI,RU,GB,RU,EE,US,GB,US,SK,DE,FI,BE,GB,CZ,PL,DK,RU,LV,JO,AT,IT,BE,DE,CH,GB,JP,PL,IT,DE,HU,DE,ES,GB,AZ,IE,RU,CH,HU,GB,NL,GB,NL,UA,TR,IE,UA,FR,CH,UA,ES,RU,DE,RU,ES,CH,ES,DE,IR,FR,AT,LU,ES,DE,US,GB,RU,LT,GB,CH,FR,CH,US,KZ,FR,NL,NO,IR,DE,IR,BG,GE,BG,RU,BG,NL,DE,NL,FR,GR,DE,LB,LI,NL,GB,NL,RU,NL,PL,DE,IT,SE,CZ,TR,CH,DE,IS,AT,ES,AT,IT,PL,IT,NL,IE,AM,ES,RU,IS,NL,GB,IE,RO,DE,DK,GB,ES,FR,NO,SM,NL,DK,BE,IT,BE,IT,CZ,RU,BG,SM,ES,IS,RU,SE,DE,US,FR,US,GB,RU,IE,DE,NL,DE,NL,SE,CZ,SE,DE,CZ,EE,AE,US,AE,DK,DE,US,AE,GB,ES,GB,FR,NO,FR,DK,IR,NL,US,HU,CZ,DE,GB,BE,IT,SA,PL,GB,FR,AT,CH,DE,PL,DE,FR,BE,FR,IR,CH,RU,EE,IT,NL,HR,DK,TR,RU,FI,RU,TR,CH,MD,NL,TR,NL,DE,IE,IL,CH,RU,UA,CH,PL,RU,IT,PL,IR,GB,DE,US,ES,DE,NO,DE,SI,AL,DE,UA,KW,UA,KZ,RU,NL,BG,FR,BE,PL,DE,NL,PL,BY,GE,NL,DE,UA,NL,RU,GB,PL,GB,NL,CH,IR,UA,NO,FR,NL,US,NL,UA,US,PL,UA,IE,NL,AZ,LV,ES,NL,CH,BE,ES,RU,NO,SE,NO,DE,IR,RU,MK,NL,PL,BE,IE,FI,FR,US,RS,US,IT,NL,GB,IT,NL,MC,FR,NL,DE,ES,NL,IT,DE,IE,AU,BE,BY,RU,LU,HU,LT,RU,NL,KZ,NL,IT,IL,DE,IL,CZ,IQ,HU,RS,SE,NL,RU,RS,ES,GB,CZ,NL,IT,DE,NL,FR,ES,NO,US,EC,US,PR,DE,SK,PL,BE,RU,CZ,TR,PL,IT,RU,HU,FR,MX,RU,JE,AE,NL,RU,IM,SE,ES,DE,US,DE,NL,DE,GB,RU,DE,IE,KZ,PL,FR,KG,IT,CH,KZ,NO,DE,SG,DE,GB,PL,BA,PL,TR,MT,KW,ES,UA,FR,ES,DE,TR,DE,PL,RU,AM,DE,SK,RS,HK,FR,SI,NO,IT,PL,DE,FR,AL,PL,GB,TR,NL,AT,IT,IE,RU,DE,GB,DE,GB,NL,IR,BG,GB,IR,SG,US,IL,IR,RU,GB,SI,NL,GB,NL,TR,SE,DE,NL,PL,CH,ES,BH,GE,ES,GB,AT,DE,AT,BE,ES,BE,CZ,ES,NO,PL,IT,FR,IT,GI,CH,ES,IT,DE,FR,IR,GB,RU,LU,IT,DK,ES,MD,RU,HR,GB,RU,HU,FR,IR,SE,ES,PL,FR,BA,NL,FR,TR,FR,RU,LU,FI,NL,DE,NL,EE,IE,BR,DE,FR,ES,DE,CZ,FR,NL,RU,DE,ES,RU,UA,GB,RU,GB,PL,ES,NL,ES,AL,RS,CH,DK,ES,RU,ES,NL,SK,RU,CH,CZ,AT,CH,GB,FI,UA,FR,SE,US,GB,US,DE,CH,IT,GE,TR,RU,IT,US,TR,CZ,DE,TR,IR,ES,MX,NL,BE,NL,RU,HU,CH,IE,DK,GB,DE,PL,PT,PL,GE,IE,ES,TR,PL,MD,NL,RO,SA,RU,AT,GR,IT,RU,FR,NL,AE,RU,ES,UA,ES,HK,IT,GB,FR,PL,DE,HU,NL,GB,AT,IR,SA,RU,JO,FR,IQ,SE,US,NO,MT,CZ,RU,NL,CZ,AE,GB,NL,IT,NL,ES,AT,GB,RU,FR,GB,NO,FR,BG,NL,US,RU,NL,IT,RU,GE,FR,CY,IE,CZ,IQ,NL,GB,IT,IQ,DE,AT,DE,FR,AZ,RU,US,HR,IM,KG,RU,GB,US,RU,DE,SE,DE,FI,PL,CZ,NL,SE,AT,PL,GB,RU,GB,BG,NL,CZ,GB,NL,TR,SY,NL,IT,DE,GB,IT,CZ,NL,SI,GB,RU,FR,GB,IE,IT,IQ,IE,IT,DE,PL,GB,CZ,DE,NL,AE,GB,TR,SE,IT,BY,UA,FR,FI,RU,EE,NL,GB,PL,AL,TR,AT,NO,IT,PL,NL,PL,FR,IR,PL,IT,PL,DE,NL,SE,DE,GB,DE,AT,FR,NO,IT,RO,DE,IL,US,DE,GB,SE,DE,GB,KG,RU,NL,GB,NL,OM,SA,DE,ES,RU,IT,ES,CH,FR,LT,AE,RU,US,NO,IT,FR,RU,NL,RU,PL,LB,GB,NL,GB,DE,CH,GB,TH,NL,LB,PL,IE,DE,NL,DE,GB,SI,MK,SI,SY,RU,CZ,SA,DE,IT,IQ,CY,CH,BG,IQ,GB,CH,RU,NL,PL,DE,ES,SE,GB,NL,AT,DE,AT,IT,NL,GB,IE,AU,KR,BR,MY,DE,RU,DE,RU,BE,KG,RU,US,SE,HU,GB,NL,AT,GR,FI,AZ,RU,AL,GB,US,GB,RU,GB,PL,DE,NL,DE,GB,IT,FI,IT,BE,FR,NO,NL,DE,NL,GB,NL,US,FR,AL,DE,RS,AT,FR,IT,RU,FI,DE,IQ,GB,DE,DK,IE,BE,IT,CH,DE,IR,BG,DE,AT,DE,FR,ES,GB,IT,GB,IT,IS,UA,GB,CH,NL,PL,GB,FR,NL,DK,NL,GB,IL,ES,SC,CH,US,NL,AE,IR,DK,DE,ES,DE,RU,IT,AT,DE,NL,DE,FR,DE,PT,IT,FR,NL,FR,DK,IT,PL,FR,ES,NO,PL,IQ,SA,GB,FR,PL,SE,IT,RS,SI,RS,NL,DE,NL,TR,HR,FR,PL,MK,MT,DE,FI,DK,FR,SI,RS,IT,DE,RU,GB,MD,AT,FR,NL,US,TR,AM,KZ,GB,LV,GB,RO,SE,NL,DE,GB,NL,IE,SE,IT,IE,JO,FR,BE,IR,SE,NL,SI,FR,GB,GL,IR,SE,ES,AT,FI,AT,GB,US,GB,ES,IR,ES,IT,JE,IE,US,SG,DE,FR,SI,CZ,ES,IT,RU,DE,TR,RU,NO,DE,AT,IT,FR,IQ,IE,BG,GB,DE,FI,DE,CZ,IT,PL,AT,NL,DK,LT,NO,HR,SE,PT,GB,BA,BE,SK,IT,DE,BY,PL,IT,RU,CH,IT,NO,SE,NL,RU,DE,PL,GB,DE,ES,GB,SI,FR,RU,IT,ES,LB,RU,FI,ES,DK,RU,GB,FR,IE,NL,IR,TR,RU,CZ,PL,FR,DE,BE,IT,SI,TR,EE,NL,FR,TR,ES,CH,RU,GB,ES,AM,TR,GB,IT,HR,PL,GB,IT,DE,DK,PL,IR,DK,FI,CZ,GB,DE,IT,RU,CZ,GB,IT,UA,PL,IT,BE,RU,GB,SK,SA,RU,BE,DE,GB,CZ,NO,RU,GB,DE,GB,NL,US,PL,DK,BR,NO,RO,RU,DE,LV,DE,GB,FR,RU,DE,FR,GB,IR,DE,ES,RU,CH,ES,DE,NL,BG,HU,DE,GB,NL,US,RO,PL,IM,GB,IM,FR,DE,HU,CZ,FR,NL,SI,GB,IE,SE,RU,IR,IT,US,FR,RU,NL,DK,NO,NL,FR,IL,NO,FR,CH,PL,IT,DE,FR,DK,DE,RU,IE,DE,IE,FR,GB,TR,PL,MQ,NL,CY,IT,PL,DE,NL,IE,PL,DE,IT,SK,PS,RU,DE,RU,DE,GB,LB,NL,RS,IE,LT,NL,BE,RU,ES,CZ,GB,RU,BE,DE,BY,SE,GB,FR,DE,ES,RU,GB,DE,NL,AU,FR,LV,SE,GB,FR,GB,FR,GB,IT,RU,FR,IT,FR,RU,NL,PS,ES,GB,BR,ES,FR,NL,BR,SE,NO,ES,NL,CZ,FI,SE,CY,RU,NL,RU,_,BE,RO,NL,ES,DE,IT,SM,NL,FR,GB,IT,NL,IS,DE,NL,HR,GB,CH,GB,DE,PL,LV,RU,CH,CZ,RS,GB,IL,DE,US,HK,HU,RS,US,NO,NL,NO,DE,BG,GB,NO,QA,NL,IE,CH,AL,SA,PL,FR,NL,RU,NL,RU,LV,RU,DE,SE,NL,GB,FR,RU,KW,RO,IR,SG,US,NL,IT,DE,IT,SE,AT,RO,DE,IT,FR,NL,CZ,ES,UA,CH,IT,HU,FR,IT,NL,RU,CH,NL,SE,MT,BE,MT,US,MT,GB,NL,IQ,DE,IT,FR,CZ,IT,CZ,PL,GB,IR,CH,NL,IE,TR,DE,IT,GB,IT,RO,GB,IE,CH,NL,SK,IT,NL,IT,FR,AL,PT,IM,RU,FR,RU,PL,DE,NO,DE,RU,GB,UZ,IT,SA,IR,GB,NL,AT,NL,ME,LV,NL,DE,RU,IL,US,GB,IE,BG,OM,PL,NL,GB,CZ,UA,AT,RU,MT,AT,BE,IT,SE,RU,GB,TR,BG,MK,GB,RO,DE,US,FR,US,LT,NL,DE,CH,NL,DE,FR,CH,DE,GB,DE,HK,JP,IM,FR,AT,DE,US,AT,DE,RS,IR,BE,CH,GB,NL,GB,NL,CH,KW,IT,RU,GB,CZ,GB,RU,ES,MD,ES,GB,US,GB,LU,DE,HU,RU,GB,FR,LV,GB,IT,LT,NL,FR,AU,HK,JP,ES,DK,SK,MX,UA,BE,IT,DE,FR,GB,PL,GB,DE,CZ,FR,GB,DE,NL,IT,BA,GB,FR,DK,BA,NL,GB,SE,NL,SE,LT,BY,RU,DE,FR,BE,DK,IL,RU,NO,ES,LV,GB,CH,IT,ES,BH,AE,SE,BE,ES,SE,DE,RU,DE,UZ,GB,DE,NL,IT,SK,FR,SI,AT,GB,DE,UA,FR,IQ,DK,GB,US,RU,AE,GB,IT,RU,GB,ZA,HK,GB,CZ,ES,AT,HU,DE,AT,ES,DE,BY,ES,DE,NL,RU,UA,NL,FI,NL,LU,FR,NL,LU,NL,CH,GB,PL,TR,AL,DE,US,NL,US,NL,AE,SI,FR,CH,CY,GB,DE,GB,NL,ES,DE,GB,DK,CZ,DE,SK,IL,GB,_,RU,DE,IR,FR,DE,BE,DE,NL,KG,NL,UA,NL,PL,IR,NO,IE,DE,ES,TR,DE,NO,US,GB,RU,SE,NL,PL,FR,ES,FI,IS,FR,RU,ES,IR,ES,AT,ES,NO,DE,TR,ES,IN,GB,DK,CZ,SG,US,SG,US,GB,FR,IR,RU,GB,US,RU,AT,RS,IS,GB,CZ,CH,NL,TR,ES,IR,PL,DE,NL,AT,GB,IT,LT,RU,GB,UA,RU,KG,GB,AT,GE,NL,UA,KZ,RU,PL,CZ,CH,AT,LT,DE,LU,ME,CH,FI,US,RS,CH,CZ,HU,DE,US,GB,NL,BG,NL,RU,GB,ES,GB,RU,IL,US,DE,CY,DE,HR,DE,GB,RU,FR,GB,DE,NL,CZ,NO,NL,IT,NL,DE,FI,DE,ES,IT,NL,GB,CH,EE,CZ,TR,FR,GB,CH,DE,US,FR,AT,DE,OM,DE,NL,FR,IQ,ES,GB,PL,LV,BA,NL,FI,CH,SE,SK,LT,IT,LT,GB,NL,GB,CZ,FI,FR,RU,GB,SE,PL,DE,CH,HU,NL,SK,IR,NL,GB,ES,GB,RU,US,RU,CH,FI,GB,SI,UA,NL,AT,BE,SE,US,SE,GE,DE,TM,IT,PL,DE,NL,SA,IE,LU,RU,LU,FR,NL,AT,NL,SG,NL,AT,FR,ES,SK,NL,GB,BY,UA,DE,CZ,IE,GB,PL,CH,BE,NL,CH,GE,GB,IR,NL,CH,BE,GR,LI,TR,GB,ES,TR,AE,RU,UA,MX,IT,DE,SE,RU,GB,ES,TR,DE,IT,ES,JE,GB,IE,RU,GB,ES,FR,PL,NL,MD,GB,PL,IT,DE,NL,CZ,DE,LB,NL,GB,CH,IL,DE,UA,DE,IT,CH,PL,GB,ES,DE,GB,CZ,IT,GB,NL,GB,RU,LU,NL,RU,GB,RU,DE,RS,GB,DE,GB,RU,GB,HU,GB,CH,TR,DE,LV,YE,AT,ES,NL,CH,PS,BR,DE,FR,IR,SE,IE,AT,DE,SI,SE,AL,GB,FR,RU,FR,IR,RU,ES,AE,NO,BR,AT,CY,US,FR,NZ,CZ,HR,PL,IT,DE,AT,ES,FR,US,TR,TW,GE,ES,HU,CH,IR,SI,PL,DK,IT,ES,UA,NL,ES,BG,SI,CH,AT,IT,IR,LV,FR,GB,NO,JO,SI,GB,ES,FI,NL,GB,NL,IE,GB,NL,AT,DK,RU,GR,PT,US,NL,BE,GB,DE,NL,PL,RU,DE,PL,DE,LV,DK,ES,LB,NO,RU,DE,CH,BR,DE,FR,IQ,IR,SI,GB,NO,RU,DE,NO,NL,GB,GR,GB,DE,HK,FR,BG,PL,GB,EE,PL,DK,IR,DE,GB,PL,NL,ES,CZ,IR,NL,IR,NL,CH,NL,UA,BG,TR,EE,IT,GB,HR,GB,LI,CZ,IT,ES,RS,MX,GB,ES,RU,DK,TR,FR,IL,BE,RU,DE,BR,US,NL,US,FR,AZ,IT,PL,FR,BG,CH,US,IT,FR,AT,UZ,FR,DE,CO,TR,HU,GB,CH,FR,CH,IT,FR,US,BE,DK,GB,BR,GB,IM,CZ,DE,CH,GI,GB,GI,NL,GB,DK,ES,PL,RS,SI,RS,GE,FR,RU,UZ,RU,CH,IR,US,FI,GB,DE,SE,IT,ES,SK,FR,CZ,FO,CH,DE,FI,IR,HK,ES,DE,RU,GB,ES,DE,IT,DE,PL,RU,AT,ES,SA,GB,ES,DE,GB,CH,PL,SE,RU,GR,BG,GR,RO,KW,GB,RU,FR,DE,NL,GI,RU,GB,IQ,DE,GB,IT,NL,CZ,GB,FR,FI,MX,PL,CZ,FR,IE,DE,CH,NL,PL,DE,NL,GB,RU,GB,ES,RU,DE,RU,KZ,HU,IR,ES,IR,US,GB,AT,RU,DE,DK,UA,IQ,DE,CZ,LV,GB,AT,GB,NL,RU,NL,FR,PT,SK,SE,NL,ES,UZ,NL,FR,DE,IQ,GB,DE,GB,RO,IT,SE,UA,NL,SE,NL,ES,IT,US,UA,NO,NL,GB,DE,IT,PL,RU,FR,DE,FR,NL,AE,NL,SA,IT,RU,NZ,MX,FR,FI,TR,DE,AT,TR,DE,NL,DE,LB,CH,US,CH,GB,DE,FR,TR,AE,GB,ES,RU,IE,RU,NL,MX,PL,MT,IR,RU,CH,TR,AZ,US,RU,BE,RU,GB,NL,GE,IT,GR,US,KZ,LI,IT,LI,GB,BE,GB,CH,GB,BE,PL,GB,IT,TR,CH,NL,GB,UA,DE,AT,FR,NO,NL,BG,NL,ES,DE,US,SK,RU,GB,ES,IT,SG,ES,GB,ES,FR,ES,NL,AM,NL,BE,JP,IT,RU,NL,BE,FI,US,RU,LV,RU,FI,AZ,FR,AT,ES,GB,CZ,IT,IR,ES,RU,BG,DE,EE,IT,GB,CZ,DE,IT,NO,PL,DE,RU,DE,FR,TR,GB,RU,NL,CZ,HK,RU,CH,CY,PL,UZ,FR,AM,PL,SK,FR,AE,NL,AE,TH,DE,SE,US,JP,DE,BE,DE,CH,GB,NL,RU,DK,NO,ES,GB,GR,RS,NO,RU,KG,MT,RU,SI,AE,NL,DE,AM,ES,NL,TR,BY,ES,DE,ES,PL,ES,MD,DE,BR,IT,GB,IR,DE,RU,CA,DE,CA,BR,NL,AE,NL,GB,NO,CH,HU,IR,RU,GB,NL,RU,BG,DE,ES,PL,RU,BY,MD,PL,DE,FR,ES,FR,NL,DE,IR,NL,US,DE,ES,GB,CH,GB,GR,FR,DE,CH,DE,KZ,DE,PL,FR,PT,SI,CH,RU,PL,LT,SA,AT,CH,BG,ES,NL,GB,FR,TR,JO,RU,ES,CZ,IT,PL,NL,DE,LB,YE,HU,NL,PL,NO,CH,RS,TR,PT,KZ,GB,NL,AT,IT,RU,DE,ME,IR,JO,IL,US,GB,DE,LU,GB,CY,RO,LT,GB,TR,YE,DE,RU,UA,NO,PL,MK,DE,AZ,FR,NO,DE,AT,HR,GB,US,IR,CA,RU,SE,PL,SE,NL,GB,AL,RU,NL,GB,LV,AT,NL,RU,SE,IT,NL,NO,GB,HU,RU,SG,US,TR,DK,IR,FR,LV,FR,PL,RS,RU,DE,HK,US,GB,NL,IE,ES,AZ,FI,GE,IR,NL,IR,DE,NL,FR,PL,SE,GB,NL,DK,BG,GB,ES,US,LV,ES,GB,LB,BR,ES,DE,TR,FR,GB,LT,GB,TR,IL,MX,AT,GB,US,GB,US,GB,GR,FR,AT,BE,US,AT,MT,IN,SC,IE,RU,BE,HR,GB,TR,AT,GB,RU,GB,IT,DE,GB,DE,RU,DE,RU,IR,LB,BG,DE,IE,HK,GI,TW,IL,US,IT,CH,IR,IL,NL,GB,ES,DE,NL,LT,LB,CH,RS,IT,SA,AT,LV,SE,CH,IT,IR,NL,FI,FR,NL,EE,NL,GB,DE,US,SG,IR,IT,RO,RU,IR,NL,RU,NL,CH,NL,CZ,SE,BG,TR,IT,DK,HU,CZ,IE,RU,PL,TR,NO,EE,NL,GB,NO,PT,FR,IR,NL,GE,DE,GB,PL,BE,GB,CZ,CH,GB,GR,IR,GB,IR,SE,FR,GB,ES,CH,IR,FI,GB,AZ,GB,ES,BE,NL,DE,NL,TR,GI,GB,US,ES,NO,GB,IT,GB,IR,FR,NO,IR,US,FI,IR,PT,US,PT,NL,IL,HU,BE,DE,MX,US,PL,IE,FR,RU,DK,RU,NL,TR,PT,MK,NL,DE,IE,GB,AT,GB,FR,GB,DE,BE,SE,RU,NO,RU,LT,SY,SE,DE,HK,US,DK,LT,RO,AM,IQ,NL,CH,DE,IT,GB,IT,SI,LB,RU,FR,ES,DE,GR,IT,GR,ES,DK,PL,NL,BA,UA,CZ,DE,TH,RU,SA,IT,RU,IT,TR,RU,CH,NL,DE,NL,ES,CH,SE,DE,IR,DE,RO,IR,HU,IT,CZ,SY,SE,RU,SE,IE,DE,DK,CH,GB,CH,DK,IT,AT,SK,GB,DK,DE,FI,GB,AT,IR,TR,FR,NL,GB,CZ,GB,FI,GB,SE,TR,CH,NL,GB,SC,RU,CH,NO,DE,IR,NL,CH,SI,AL,SE,RU,CZ,CH,FR,RO,GB,TR,IT,GB,RO,TR,NL,IT,RU,DE,FR,CH,FR,TR,DE,GB,US,GB,CH,IT,GB,ES,UA,TR,ES,GB,ES,TR,BE,GB,CH,ES,IR,IL,IT,HK,SE,GB,FR,PL,UA,SM,RO,DK,ES,UA,TR,IT,FR,RU,CZ,SE,GB,RU,IT,RU,FR,US,RU,SE,LV,TR,DE,LB,TR,FR,DE,FR,IR,ES,GB,FR,GB,DE,AM,FR,IT,IL,ES,EE,ES,GB,IS,DE,CH,NL,CH,DE,MK,RS,TR,ES,FR,DE,BE,JE,SK,AT,DE,TR,IT,GB,AD,RU,NO,GB,HU,CZ,US,ES,FR,IT,DE,IT,DK,ES,FR,ES,FR,NL,FI,CH,NL,TR,BE,ES,DE,PL,CZ,GB,CZ,FR,NL,IL,SE,DE,LB,SA,TR,NL,SA,DE,IE,NL,ES,RU,NL,LV,GB,EE,BE,DE,FR,PL,FR,AT,IT,FI,NL,TR,GB,ES,TR,NL,FR,NO,AM,CZ,PT,GR,IQ,RO,KG,US,MX,NO,GB,IR,ES,GB,DE,NL,FR,CZ,CH,PS,IT,PS,DE,BR,IT,DE,US,AU,CN,FR,GB,SE,CH,BE,RU,RO,TR,SE,NL,DE,NL,IR,RU,NL,US,IT,TR,IR,NL,DE,CA,BG,NL,GB,FR,ES,IT,AT,RU,DE,GB,DE,FO,ES,CH,IT,DE,CZ,IR,NO,NL,RU,NL,BE,DE,IR,TR,DE,FR,IL,FR,GB,DE,IL,IN,IT,AT,FI,DE,ES,PL,CH,FR,IE,US,PL,US,NL,LB,IQ,NO,SE,NO,GR,SA,IQ,RU,UA,PL,US,IR,CZ,GB,BG,FR,NL,MT,GB,CH,AT,NL,AL,AT,FR,NL,PL,IT,PL,CH,PT,DE,CH,US,NL,GB,US,NL,HR,US,GB,IE,US,IT,DE,BE,MT,RO,MK,TR,US,BR,FR,CH,GB,TR,IT,GB,SA,US,SE,ES,GB,CH,AT,GR,GB,DK,PT,FI,NO,GB,DK,IT,KZ,IE,ES,HU,SA,AT,FR,RU,IQ,CH,DK,IT,GB,PS,DE,RS,NL,GB,RU,ES,CH,DE,SK,LB,DE,SE,NO,NL,IT,GB,NL,DE,ES,NO,GB,CH,US,SG,NL,RU,DE,HU,TR,PS,IT,US,SY,UA,IQ,AT,MT,AT,DE,US,NL,US,NL,IQ,GB,DE,US,NL,AT,DE,AT,FR,GB,DE,RU,IT,NO,IT,GB,BR,IT,NL,UA,GB,AT,GB,FR,NL,LB,GB,DE,ES,GB,CZ,GB,RU,KZ,DE,GB,NL,ES,HU,AT,IT,NO,BA,IT,CZ,AT,RU,HU,IT,ES,DE,SK,CZ,AZ,PL,GB,FR,ES,RE,GP,MQ,RE,GB,IT,DE,NL,RU,TR,IR,TR,NL,FR,KR,GB,CA,PL,SY,RU,FR,IR,US,GB,TR,US,PL,NO,GE,NL,CH,NL,GB,NL,DE,ES,AM,DE,AM,SY,ES,PT,AT,IT,ES,FI,HU,DE,PH,GB,HR,CH,AE,BG,RU,NL,DE,PL,DE,AT,DE,NL,US,SI,DE,RU,DE,RO,BE,NL,BE,AT,DE,US,PT,UA,TR,PL,NL,AZ,SI,SE,SI,ES,HR,IT,DK,ES,PL,SG,GB,AE,GB,US,FR,ES,US,GB,NL,EE,AT,GB,BE,NL,MY,GL,NL,GB,US,NL,PL,GB,FR,RU,ES,FI,TR,DE,CZ,HU,TR,PL,NL,ES,DK,_,PL,RO,RS,US,RU,ES,DE,ES,UZ,FR,PL,DE,IT,IE,ES,IS,SE,MY,GB,MD,BO,DE,NL,IT,DE,ES,IT,UA,DE,DK,AE,DE,IT,RU,AT,CH,RO,ES,GB,US,DE,JP,ES,DE,PL,AE,TR,RU,LU,CZ,CH,SE,US,DE,US,IT,DE,RO,RU,US,DE,BE,IE,ES,CZ,FR,SE,IN,PL,US,PL,SE,GI,IT,NL,IT,NL,IR,CH,DE,RU,EE,GB,NL,GB,SE,IT,BE,FR,US,CA,CH,RU,SK,IT,NL,DE,FI,NL,RU,GB,NL,GB,NL,FR,HU,GB,BG,IT,DE,GB,IE,GB,NL,RU,UA,FR,RU,BE,NL,GB,NL,NO,NL,ES,DE,TR,KW,FR,DK,GB,US,UA,DK,NL,US,NL,DE,IT,IE,NL,GB,IT,ES,IR,UA,CH,RU,GB,NL,BE,GB,DE,TR,SE,DE,CN,RU,GB,DE,CZ,FR,ES,DE,IT,AE,SA,IT,SE,IR,BG,US,BG,SE,TR,GB,NL,IR,IQ,GB,DE,PL,US,IQ,AT,DE,CH,PT,IT,PL,RU,US,IL,IT,GB,BG,LB,RU,NL,PL,DE,GB,IT,ES,LV,GR,KZ,BR,CA,CH,NO,GB,NL,GB,PL,DE,GB,JO,NO,CH,HU,IN,MY,PL,RU,DK,GB,IT,AT,FR,SY,TR,IT,PL,AZ,IT,NL,DE,IL,BE,NL,SE,GB,NL,SE,FR,IQ,GB,HK,SE,BG,IT,TR,PT,MD,DK,FR,UA,GB,DE,GB,IT,RS,DE,IT,GB,QA,KW,ES,DE,IR,GB,US,DE,CN,SE,BG,US,TW,US,DE,TR,IT,PL,RU,AU,GB,CZ,GB,SE,EE,NL,LT,LB,SI,KZ,GB,PS,SI,BG,DE,FR,PL,IE,DE,IE,NO,DE,GB,LB,DE,FR,LB,IT,KZ,IR,IT,IL,SE,PS,CH,NL,FR,NL,DE,EE,LT,EE,GB,IT,GB,RU,ES,DE,FR,NO,RU,FR,HU,NL,SE,NO,IT,DE,NL,IT,IE,DE,LU,BE,EE,RU,BA,KZ,IT,HR,AT,ES,FR,IQ,CH,ES,DK,DE,DK,DE,FR,US,SI,GB,DE,NL,DE,TR,FR,AT,CH,IT,KZ,RU,KZ,DE,DK,GB,BE,GB,CY,GB,IR,FR,CH,NL,FR,GR,FR,DE,NL,AR,GB,CH,US,IQ,RO,DE,IT,GB,IT,BE,GB,NL,GB,US,GB,DE,GB,SE,GB,LB,SK,GB,TR,JO,FI,ES,DE,SE,PT,TR,BA,RU,LB,BR,GB,TR,UA,GB,LB,SE,ES,PS,BE,DE,ES,CZ,AT,GB,AT,GB,RO,GE,NL,FR,SY,PL,IE,PL,IE,FR,CZ,DK,KZ,NL,NZ,NL,IE,RU,BY,DE,FR,RU,GB,RU,PL,CZ,US,ES,NL,ES,SE,PL,TR,FR,NL,DE,IR,FR,LB,TR,LB,IT,GB,PT,GB,ES,GB,ES,GB,US,CH,FR,DE,IT,IQ,RU,FR,IT,NL,BN,IR,DE,UZ,NL,RO,NL,GB,KZ,GB,ES,GE,IT,RO,FI,RO,GB,CZ,AT,RU,IT,NL,LU,NL,ES,NL,AT,GB,SA,PL,NL,PL,DE,IT,GR,GB,LB,GB,US,GB,US,IT,ES,FR,GB,NL,CZ,LB,NO,AE,QA,AE,IN,PL,DO,PL,LB,SA,KZ,PL,NL,IT,AT,MK,GB,IT,NO,DE,LI,GB,US,GB,LB,DE,US,RU,FR,NO,DE,UA,IR,NL,GB,LI,DE,SE,NL,FR,AU,PL,GB,IE,DK,DE,US,DE,CA,IL,RO,NL,DE,CH,GB,SE,PL,DE,US,RU,UA,NL,DK,SE,NL,GB,DK,CH,ES,RO,DE,PT,FR,ES,FR,DE,PL,GB,NL,CA,FR,RU,FR,IT,UA,FR,UA,CZ,ES,IR,PL,IQ,IE,DE,IN,IL,NL,RU,AT,SE,CZ,NL,NO,SE,TR,IT,NL,DE,NO,DE,NL,KZ,RS,FR,CH,UA,IT,TR,RO,DE,CZ,SE,DE,NO,BR,US,PL,KZ,RU,RS,KZ,GB,FI,AE,RU,IT,GE,GB,DE,RO,FR,UA,BR,BG,NL,FR,RU,UA,PL,GB,ES,SE,US,RO,NL,DE,ES,DE,AT,FI,RS,DE,GB,DE,LU,TR,GB,ES,LB,NL,LB,RU,HK,CA,DE,US,NL,ES,LV,DE,SE,JP,DE,IT,NL,NO,FR,BE,FR,RU,GB,NL,IT,IR,LB,DE,GB,DE,FI,SE,IE,RU,FI,RU,IT,GB,FR,GB,DK,ES,IR,RU,RS,FR,SK,ES,PL,NL,RU,KZ,NL,KZ,ES,KZ,SE,DE,TR,NL,DE,ES,SE,HR,GB,DE,GB,DE,NL,IR,DE,NL,GR,RU,CH,US,BR,US,CH,TR,IT,NL,US,RO,DE,UA,RO,QA,ES,RO,PL,LB,DE,FR,GB,CH,DE,RU,GB,NL,RU,LU,PL,RU,PL,IT,GB,IT,NL,BE,NL,ES,GB,SE,DE,US,DE,GR,FR,ES,IQ,DE,ES,LU,FR,MC,FR,LT,RO,DE,FR,BE,HU,ES,TR,US,GE,NL,PL,IL,US,GG,DE,CZ,RU,IE,GI,AT,IR,ES,IR,LB,RU,FI,RU,LB,IL,IN,LU,RO,US,PT,ES,GB,ES,AT,ES,FR,GB,ES,DE,BR,PL,US,MD,RU,BE,GB,DE,GB,SE,GB,FR,GB,NL,DE,RO,RU,IT,GB,IE,IR,IT,NL,RU,DE,RU,FI,RU,IR,GB,IT,CH,FR,PL,CH,GE,FR,BE,NL,GB,DE,GB,RU,CY,IL,DK,IR,DE,US,GB,NL,AZ,BE,NL,IT,NL,RU,TJ,ES,IE,IR,IT,SE,NL,US,NL,DE,FR,GR,TR,LU,IQ,IL,GR,RU,ES,AT,NL,RU,NL,CH,BE,GB,DE,NL,DE,IE,DE,TR,AT,RU,US,PL,CY,RU,AT,HU,RU,NL,RO,NL,ES,IL,DE,CH,GB,FR,IR,NL,IR,DE,NL,KZ,FR,DE,PL,RU,HK,SE,DE,AT,PT,DE,RU,IR,CY,TR,NL,FR,GB,NL,IR,BE,DE,BE,DE,BE,NL,US,NL,US,DE,AT,DE,ES,DE,GB,DK,ES,RS,DE,IR,AE,NL,LB,DE,NL,IS,GB,PL,NL,RU,UA,QA,NL,FR,DK,NL,DE,NL,ES,IL,DK,NL,RU,TR,RU,PL,IT,ES,RU,ES,RU,DK,KZ,DK,GB,IT,NL,DE,GB,EE,BG,DK,IT,BE,NL,MK,DE,NL,ES,GB,FR,CZ,NL,HU,DE,RU,IR,UA,RU,DE,GB,RU,PS,CZ,FR,MD,IE,GB,DE,FR,GB,CZ,NL,PL,DE,IL,RU,GB,IR,DK,NL,GB,FR,FI,DK,NL,CZ,TR,FR,CZ,DK,IE,GB,MD,BG,MD,IL,US,IL,MD,OM,RU,IR,GB,DE,GB,MD,DE,BG,RU,AT,US,ES,RU,UA,DE,RU,NL,DE,GB,FR,SA,CH,LU,DK,CH,IE,GB,DK,GR,RU,IT,TR,DE,CH,GB,NL,DE,IT,UA,IT,IR,DK,IT,IR,DK,IR,SE,LA,DK,GB,NL,IS,GB,DE,RU,GB,JO,GB,IR,GB,DE,IL,DE,CY,DE,ES,IE,CH,GB,FR,SA,DE,IT,JO,DE,FR,RU,SY,NL,GB,NL,BR,VN,BR,VN,CA,BE,IR,RO,FR,RO,GB,PL,RU,DE,ES,IT,RO,IR,DE,GG,DE,RU,PL,GB,RU,BG,GB,DE,ES,CH,ES,DK,FR,CH,NL,GE,LT,FR,CH,SY,IL,NL,IT,AT,DE,AT,DE,AU,RU,UA,LT,AT,SK,NO,DE,CH,ES,GE,RU,NL,GB,CH,DE,FR,CH,NL,CZ,RU,ES,IR,CH,ES,IR,SA,IR,TR,IR,GB,IR,ES,LB,IR,FR,GB,PL,NL,EE,US,DE,IS,GB,FR,RU,FR,DE,IR,DE,GB,IT,IR,RU,HU,GB,CZ,RU,KZ,CZ,IE,UA,NL,AT,GB,PL,IR,IE,AT,ES,SE,HK,DE,SG,LB,UA,DE,GB,DE,LT,ES,CA,HR,DE,BE,US,BE,HU,BG,RU,DE,GB,FR,TR,NL,FR,SE,TR,IT,ES,IT,CH,UA,FR,RS,NO,CZ,IR,PL,NL,CH,US,BR,IN,US,IT,GB,DE,SA,NL,TR,RU,ES,MN,AE,FI,RU,IT,GB,AE,RU,OM,NL,SE,PL,RU,DE,AF,IR,CH,SE,RU,IS,IR,DE,HU,GB,CZ,IR,BE,DE,IT,IQ,AZ,IT,YE,IS,DK,GB,DE,GB,RU,FR,IQ,UA,US,GB,MK,SK,RU,GB,DE,GB,DE,NL,IR,SE,JE,GB,CH,GB,CY,PL,KZ,FR,SK,FR,NL,IR,GB,FR,US,GB,UA,RU,UA,GB,NL,GB,SE,AT,IQ,RU,IR,RU,DE,GB,KZ,PL,PT,DE,PT,FR,DE,LV,NL,SE,US,ES,GB,ES,NL,RU,GB,RU,NL,GB,TR,DE,TR,NL,DK,IE,ES,GB,RU,_,EE,IT,FR,DE,IE,DE,IE,TR,NL,NZ,AU,PL,NL,GB,DE,DK,BE,NL,HN,NO,GB,ES,SA,ES,GR,RU,US,SG,BR,IT,ES,LB,PL,GB,FR,SE,IT,RS,IT,IL,DE,NL,GB,DE,FR,DE,RU,DE,TH,US,GB,CY,DE,GB,US,NL,IE,NL,DE,ES,EE,BG,NL,IR,TR,NL,DE,IL,US,FR,DE,TR,DE,GB,US,GB,US,PT,GB,IT,NL,SY,RU,SE,LB,CZ,GE,CZ,MT,NL,MT,FI,HU,DE,RO,NL,UA,TR,PL,DE,ES,HR,GB,FR,GB,CZ,IR,DE,GB,DE,US,MD,RU,LB,DE,GB,PL,GB,US,NL,IT,GE,RU,SK,RU,GB,NL,IR,US,RU,_,PH,IR,DE,CZ,AT,NL,DE,GB,FR,DE,US,DK,TR,IL,BE,RO,IL,GB,ES,DE,US,TR,NO,IT,NO,DK,NL,FR,NL,DE,IR,AT,FI,DE,NL,IR,CZ,GB,IT,RU,IT,FR,IE,NL,DE,NL,BE,CZ,NL,IT,FR,BG,AT,US,FR,DE,FR,IT,FR,GB,BE,CH,CZ,TR,DE,PL,RU,SE,NL,FR,PL,KZ,NL,DK,TR,DE,IR,NL,US,GB,FR,ES,DK,KZ,RU,BG,DE,GB,NL,DE,SA,RU,DE,HK,US,SE,DE,PL,DE,NL,IQ,CH,FR,US,NL,RU,GR,FR,AT,ES,IR,DE,FR,EE,DE,NL,BG,PL,SE,NL,FR,IL,NO,IQ,TR,RU,SE,NL,IT,FI,LT,FI,TR,NL,SA,CY,IR,RU,KG,RU,DE,LI,CH,IQ,ES,PT,DE,IT,BG,NO,GB,IR,NL,DE,IT,FI,US,BE,NL,CH,GR,IE,GR,RU,GB,UA,RU,DE,FR,DE,IQ,IR,FR,DE,LB,GB,IS,SE,DK,IQ,AZ,ES,GB,US,NL,RU,FR,IT,LV,CZ,GE,NL,FR,IQ,DE,ES,DE,PT,SE,SK,SE,FR,SA,DE,GR,RU,GB,IQ,US,IR,TR,DE,AL,IR,ES,EE,RU,RS,DE,TR,DK,IT,ES,TR,DE,RO,GB,DE,PL,LU,LB,FI,IE,FI,GB,BG,AT,DK,IL,RU,IR,DE,PL,DE,GB,FR,NL,DE,CH,US,PH,US,AT,ES,GB,RU,GB,RU,GB,DE,UA,TR,CH,NL,RS,DE,CZ,SE,CH,GB,ES,AT,PL,IS,FI,GB,DE,GB,ZA,US,GB,PL,GB,BE,AT,IR,FR,GB,CH,HU,PL,NL,DE,IR,FR,PL,UA,CZ,IT,IN,NL,US,NL,IT,GB,ES,IR,IT,ES,US,DE,FR,US,GB,US,TR,US,FR,US,DE,US,DE,SI,NO,LB,US,FR,NL,AL,IT,ES,FI,GB,RU,DE,PL,CZ,GB,KZ,IT,ES,UA,CH,GI,NO,SA,AE,FR,GB,NL,GB,IR,IL,GB,UA,IR,IQ,GB,ES,SA,RO,DE,NL,FR,DE,GB,DE,IR,BE,IR,GB,FR,BG,AL,ES,DE,RU,IR,GB,IR,ES,TJ,GB,NL,ES,GB,CY,GB,SE,IT,AT,SE,HR,AT,IR,DK,SK,DE,RU,GB,KZ,RU,GB,NL,DE,IT,ES,UA,NL,UA,NL,TR,IR,FI,AE,FI,GB,FR,GB,IT,BG,NL,BG,IT,NZ,FR,NZ,HK,NZ,FR,DK,NZ,NL,SY,NL,DE,HR,SE,IT,DE,FI,GB,NL,EG,NL,GB,ES,AM,RU,GB,SA,GB,US,DE,IL,TR,GB,NL,IT,RU,KZ,US,ES,TR,CZ,IT,CH,SK,US,PL,GB,SE,CH,IR,DE,PL,LB,PL,FR,PL,FI,SE,NL,SA,GB,IE,PL,GB,LT,GB,PL,NL,FR,US,GB,NL,PL,SA,DE,ES,DK,GB,NO,TR,RU,ES,LV,SG,GB,RO,DE,IT,AL,GB,CH,BG,JE,BE,IQ,TR,DE,IT,RU,KZ,SA,FR,CH,FR,HU,SE,IT,RU,PL,DE,EE,TR,NL,ES,NL,RU,IR,FR,RU,GB,FR,DE,SE,GB,TR,DE,TR,AT,GB,FI,ES,PL,CH,FI,ES,RO,US,OM,US,PL,RU,IE,RU,IT,GB,BY,BG,RU,IS,ES,IR,IT,LU,NL,PL,DE,SE,IT,GB,RO,GB,NL,GB,ES,UA,RU,DE,ES,RO,ES,GB,IT,DE,NO,US,RU,CZ,US,DE,CH,DE,NO,CZ,TR,FI,NO,ES,NL,IN,IR,PL,DE,PT,PL,US,ID,ES,AT,IQ,RU,IR,US,RU,UA,IR,RU,IT,PL,RU,DE,FR,IE,RU,LB,FR,DE,RU,DE,FR,US,IN,PL,DE,LB,RO,IT,DE,PL,NL,IL,RU,IR,CH,ES,TR,DE,NL,KZ,RU,NL,DE,FR,RU,RS,FR,IT,RU,ES,DK,NZ,KZ,DE,GB,RU,GB,RO,GB,UA,NL,BA,PL,CZ,PL,EE,GB,IT,LB,NO,CH,NO,DE,RS,LU,US,GB,IT,CH,NL,GB,AT,CH,RU,DK,DE,US,DE,RU,DE,NL,IS,IR,AT,GB,DE,IQ,FR,NL,DE,NO,IR,LB,TL,BE,DK,NL,IS,NL,FR,GB,US,SG,GB,BR,JP,RU,PT,RU,ES,DE,ES,DK,UA,CH,DE,US,NL,PH,RU,IR,VN,GB,US,IT,LA,HK,GB,SG,CH,DK,GB,US,GB,DE,GB,TR,RU,US,RU,NO,PL,RU,CZ,IR,IT,AT,DE,TR,CH,GB,NL,US,FR,ES,AT,RO,GR,RU,DE,FR,GB,UA,LT,FR,IL,NL,GB,PL,RU,DE,IT,NO,GB,DK,ES,GB,FI,AM,GB,FI,GB,FR,FI,DK,US,DK,NO,NL,CH,DE,PL,LB,ES,IT,NL,GB,ES,RU,GB,ES,DE,IT,NO,CH,GB,LB,NL,LB,GB,IT,DE,CH,DE,IT,RS,IT,RU,SE,IR,IT,FR,RU,GB,NO,SE,US,RU,ES,PT,GB,NL,ES,FI,PL,SG,FR,HU,IT,NL,IQ,IR,US,DE,IR,ES,GB,ES,FR,DE,DK,IT,IR,RU,NL,LV,RO,DK,GE,RU,DE,TR,DE,LB,FR,ES,US,GB,IR,FR,NO,IT,IR,PL,FI,IR,ES,CH,GB,SY,NL,DE,ES,RU,BY,GB,RU,DE,HK,DE,GB,US,DE,HK,SG,DK,HK,UA,HK,UA,FR,RO,HK,AT,HK,GB,SI,HK,FI,HK,FI,HK,AZ,HK,IQ,GB,HR,HK,EE,GB,SE,HK,ES,HK,RO,HK,ES,FR,KZ,HK,CH,RU,DK,SE,NL,HK,GB,HK,GB,HK,PL,HK,IR,HK,DE,HK,IT,HK,AZ,HK,RU,ES,AU,HK,IR,RS,HK,SG,PL,RU,IE,HK,CZ,LA,RU,LV,FI,HK,FI,NO,HK,DE,FR,IR,HK,AT,GB,DE,IR,HK,IR,HK,KZ,IR,RU,GB,HK,IR,GB,IR,DE,ES,DE,SE,DE,KR,DE,IS,HR,DE,ES,DE,GB,US,SE,NL,PL,CH,IR,HR,UA,TR,DE,IT,FR,US,FI,NO,NL,IR,RU,IL,DK,US,TR,NL,GB,DK,GB,RU,NL,PL,RU,FR,UA,RS,LU,MK,LB,CH,ES,BE,ES,GB,DK,SE,NL,HU,PL,DE,RO,SG,AU,DK,TR,HU,ES,PL,GB,ES,DE,HU,BE,RU,ES,SK,NL,RU,US,NL,NO,SE,RU,AT,LU,CH,GB,ES,IT,SE,NL,IR,PL,LB,FR,TR,DE,AE,CZ,RU,DE,NL,RU,DE,SA,FR,IR,SA,IR,US,IR,DE,IR,ES,IR,IL,IR,PL,IR,RU,US,AT,ES,FR,DE,NO,DE,FR,GE,CH,IT,DE,TR,IT,FI,US,RO,PL,GB,DE,PL,CZ,IT,UA,US,GB,CH,RU,DE,RU,DE,GB,DE,US,DE,IT,LU,FR,IT,FR,MY,GB,TW,US,IR,GB,ES,AL,DE,AT,FR,FI,NL,CZ,FR,TR,IR,HK,TR,SE,CH,NL,ES,RS,LB,GB,IL,ME,ES,IT,RO,NL,ES,ZA,BE,ES,RU,AD,KW,DE,IR,SE,DE,IT,FR,NL,RU,GB,PS,NL,RU,ES,DE,EG,US,DE,CH,NL,DE,NL,BR,NL,RU,CH,DE,FR,CZ,SK,RO,SE,BG,GB,US,PT,FR,SA,NL,IT,ES,CZ,DE,NL,DE,FR,ES,TR,IR,AT,IT,FR,HR,ES,PT,ES,PT,NO,CZ,NL,IR,GB,PL,IR,GB,DE,GB,SA,SI,CZ,US,CZ,ES,SE,DE,IT,CH,BE,MM,IT,GB,IQ,SA,IT,DE,CZ,IR,AE,GB,US,CZ,DE,IT,SE,GB,BE,DK,RU,ES,DE,GB,IT,NL,CZ,CH,CZ,NL,IT,BE,LU,HU,DE,FI,SE,IR,FI,GB,DE,GR,CY,RU,NO,DE,SY,ES,DE,IT,IE,RU,IT,FR,CZ,CH,IT,GE,LB,US,TR,SK,FR,CH,RU,NL,SK,NL,IT,GB,BG,RU,KZ,DE,NO,US,AU,NL,DK,PL,CZ,DE,US,BE,BY,BE,AT,CZ,DE,IR,DE,GB,TR,CW,LT,IR,SY,DE,GB,DK,RO,IQ,HK,JP,RU,LV,PL,IT,TR,IT,GB,TR,IT,ES,PL,FR,GB,FR,NO,HK,FR,BE,CZ,RU,AU,AE,NL,DE,FR,GB,RU,FR,RU,SE,FR,CH,NL,BE,PL,IQ,JO,ES,GB,CA,GB,FR,TR,PL,IR,RU,FR,NL,GB,LU,US,NL,RO,KZ,DE,SE,FI,DK,NO,DE,ES,US,FI,FR,IL,IS,IT,NO,PT,TR,US,NL,GB,DE,NL,GB,RU,AT,TR,ES,PL,US,NL,US,DE,IR,GB,CZ,DE,DK,CH,IT,NO,NL,IR,UA,IR,IT,DE,LB,IQ,PL,FR,IR,NL,IR,RU,NL,IR,CZ,SC,TR,AZ,BE,AT,ES,IR,PL,AT,US,NL,IQ,GB,IE,GB,NO,GB,HK,GB,DE,MT,IE,IR,DE,NL,GB,BE,ES,PL,ES,IR,GB,ES,FR,RU,NL,IT,TR,BR,DE,FR,DE,NL,EE,ES,IR,DK,BY,DE,CZ,DE,RO,DE,ES,CZ,PL,ES,DE,GB,IT,PL,RU,MA,ES,AT,FR,DE,CH,RU,US,RU,US,DE,SE,GB,NL,FR,NL,IT,NL,TR,UA,GB,IT,FR,RU,CH,GB,SA,PL,FR,GB,DE,RU,AZ,ES,AT,DE,ES,AT,SE,FR,NO,IT,GR,CZ,FI,DE,NL,GB,SE,CZ,NO,RU,NL,TR,RU,ES,BE,KG,FR,CZ,IE,FR,IQ,AT,RU,PS,DE,DK,FR,GB,RU,GB,NL,NO,IL,IS,BG,RU,KG,CZ,NL,GB,RU,NL,US,IT,CZ,DE,PL,UA,GB,CA,GB,PL,NL,CZ,NL,RU,DE,BR,DE,AL,TR,SI,GB,SA,LB,PL,FR,US,PL,US,PL,IT,DE,US,GB,PL,BE,IT,UA,GE,ES,IR,RU,DE,DK,GB,NO,DE,DK,IT,RU,DE,GE,SA,PL,US,FR,UZ,GB,US,NL,SE,DE,SE,FI,NO,SE,NO,ES,IT,CH,NO,ES,TR,UA,SG,UA,DE,AT,RU,CZ,BE,JO,SK,SE,IL,DE,IL,DK,NO,DE,KR,DE,US,AU,FR,EE,DK,IR,GB,DE,GB,NL,PL,SK,ES,DE,SK,FR,US,SE,JP,NL,IR,ES,FR,NL,PL,GB,US,GB,AT,CH,IE,SE,PL,DE,HU,CZ,SE,PL,TR,FR,RU,FR,AT,GB,RU,IT,NL,RU,NL,IT,AM,GB,HU,RU,US,PS,NL,ES,IQ,FR,DE,ES,NL,SG,US,ES,FR,NL,LT,IR,CZ,IR,CZ,FR,BG,IT,RO,DE,CH,FR,IQ,AE,ES,CH,NL,AE,RO,NL,SE,TR,IR,RU,ES,IR,LV,GB,BG,DE,DK,SE,RU,FI,IT,SE,RU,FI,DE,IR,TR,SE,US,FR,US,DE,RU,FR,IR,PL,GB,DK,DE,SE,NO,LT,DE,GB,IR,IT,GB,RU,IT,US,GB,US,CY,GB,RS,DE,US,GB,BE,IR,TR,ES,RU,IT,RU,ES,IR,NL,GB,NL,DE,ES,GB,PL,GB,IT,DE,US,GB,IE,GB,US,NL,US,LB,ES,SK,FR,PS,ES,RU,IT,SE,NL,SE,GB,IT,IR,RU,NL,US,ES,KW,DE,GB,IT,IR,RU,JP,LT,PT,VG,FR,US,NL,US,NL,CH,IT,IR,PL,IL,IT,DE,FR,ES,NO,ES,PL,CZ,CH,ES,RO,ES,BE,SE,IR,NL,SE,NL,SG,IT,NL,ES,SE,IE,DE,KZ,SA,NL,PL,GB,IQ,US,HU,GR,UA,FI,OM,DE,IR,GB,BG,GB,DE,ES,CH,NL,RU,CZ,PL,RS,BH,KZ,NL,ES,UA,SE,IT,NL,PL,DE,RU,GE,AT,GB,BE,HR,AZ,HU,IR,NO,GB,NO,RU,FR,US,GB,DE,IR,FR,US,FR,US,FR,GB,DK,GB,NL,DE,FR,JP,ES,IQ,DE,NL,FR,RU,FR,CH,LB,FR,DE,ES,NL,RU,IR,US,GB,IT,TR,RO,US,JP,US,DE,SK,DE,PL,UA,US,NL,GB,AU,AL,PL,RU,CH,LT,IT,IE,NO,GB,RU,GB,SE,GB,FR,US,AT,SK,IL,PL,CZ,GB,LV,DE,FR,NL,RU,DE,ES,US,ES,IT,US,GB,NL,GB,ES,DE,GB,PL,TR,FR,AL,EE,IR,NL,AT,NL,IL,FR,DE,BR,DE,ES,US,GB,US,NL,RU,NL,ES,FR,US,IT,GB,SE,NL,IT,UA,CH,ES,LU,RO,ES,AT,GE,RU,NL,AT,GB,DK,RU,HU,CH,GB,DE,GB,CZ,GR,DE,FI,ES,UA,IR,NO,IT,DE,GB,HU,NL,IL,LT,TR,LT,DE,ES,NL,UA,DE,US,SY,DE,HK,LV,IT,DK,FR,IL,NL,IL,KZ,CZ,PL,FI,KZ,US,FR,US,CA,DE,FR,GB,DE,PL,ES,DE,IT,ES,RS,ES,FR,NL,DE,RU,FR,CH,RO,TR,PT,PL,NO,NL,US,AZ,RU,UA,US,IT,SY,SE,BG,CZ,IE,DE,IE,RU,IT,GB,US,GB,RU,SE,GE,IE,NL,US,DE,NO,DE,PH,UA,NL,FR,PL,DE,RO,IS,DE,KW,PL,DE,IT,SI,FR,DE,CH,NL,ES,FI,AZ,ES,UA,KW,FR,SG,NL,IM,RU,IR,CZ,MD,NL,NG,US,ES,LV,UA,FR,PL,DK,DE,RU,IR,GB,ES,UA,IQ,DE,GB,NL,IT,EE,RU,GB,IS,IL,DK,FR,NL,US,IR,IT,DE,IE,IR,BE,GB,CH,US,UA,ME,FR,GB,FR,SE,ES,DE,FR,SE,FR,GB,CZ,PL,FI,GB,IT,US,NO,NL,RU,NL,US,RU,NL,US,NL,ES,UA,BG,PL,DE,SI,FR,RU,TR,GB,AT,DE,IT,RU,NL,IT,PT,BR,IT,FR,CH,US,GB,CH,SE,BG,SA,IT,AT,BG,FR,DE,CZ,NO,NL,DE,IT,SY,GB,RS,IT,RU,CZ,RU,FR,CH,NL,AT,TR,FR,DE,FR,PL,GB,FR,US,NO,RU,NL,DE,IT,NL,UA,SE,RU,DE,NL,DE,SE,FR,RU,US,ES,NL,ES,NL,CH,RU,TR,BG,GB,US,GB,RU,GR,RU,SE,RU,CZ,NL,US,LU,AM,TH,CR,DE,JM,US,UA,NL,BR,LT,DE,RU,DE,GE,LU,GB,SA,CZ,IT,IR,SA,RU,US,UA,PL,CZ,GB,DE,FR,GB,DE,DK,US,GB,RU,DE,TR,CH,GB,IL,NL,GB,TR,NL,CH,AT,RU,RO,NL,GB,NL,CH,DE,ES,LT,PL,DE,CH,NL,GB,NL,GB,NL,IT,NL,DK,ES,DE,FR,BG,DE,ES,SA,IR,SE,LT,FR,CZ,CY,TR,PL,GB,SY,GB,RU,NL,FR,AM,IE,FR,GB,UA,NL,US,BA,DK,GB,ES,NL,CZ,KW,IE,GB,IT,HR,PL,FR,DE,PL,FR,SK,AE,NO,US,NL,RU,AT,IT,GB,IT,ES,KZ,GB,US,FR,DE,IN,DE,NL,DE,FR,PL,FI,SY,UA,DK,IT,NL,DE,UA,ES,BE,PL,RU,IT,RU,HR,GE,DE,CA,US,GB,RU,SY,DE,BG,GB,CH,CZ,ES,DE,FR,US,FR,DK,IL,DE,US,NL,ES,FR,ES,NL,GB,FR,NL,IR,RU,PL,FI,CZ,GB,IE,GB,ES,CH,TR,FR,SK,DK,SG,NO,GB,IT,LT,IT,GB,GR,FR,BE,ES,CZ,US,VA,IE,PL,RU,NL,TR,RU,FR,TR,NL,DE,CZ,DE,ES,SK,IS,PL,TR,SG,NL,US,MY,KZ,SG,RU,BY,IT,DE,IT,CZ,IT,GB,ES,FR,ES,SE,HU,RU,ES,CA,SK,DK,DE,NO,SE,NO,NL,GB,DE,CH,SE,DE,IT,DE,GB,IT,SE,FR,IT,ES,GB,SI,FR,PL,BE,RU,MK,GE,DE,SE,NL,DE,BE,CZ,IT,CZ,LB,DE,RU,FR,GB,CH,IT,FR,ES,UA,IT,NL,GB,UA,ES,DE,EE,ZA,PL,ES,LU,DK,SE,PS,ES,GB,BR,MX,US,CA,PL,GR,IR,GB,CZ,MD,NL,LT,BE,US,IR,SE,HU,TR,ES,TR,FI,DE,IT,IE,GB,RU,FR,TR,DK,ES,US,ES,NL,NO,RU,ES,DE,FR,CH,AT,IT,GB,RU,ES,CZ,IT,DK,RU,IE,US,CH,IT,CH,PL,CH,DE,SE,DE,IS,RU,TR,GB,FR,NL,GB,DE,FR,RO,ES,NL,ES,BE,QA,GB,DK,UA,IR,GE,FR,AE,HR,RU,ES,RU,ES,UA,RO,US,RO,EE,NL,SE,AT,IT,DK,GB,NL,DE,GB,SY,ES,FR,ES,IR,RU,ES,NO,CH,CZ,DK,PL,NL,SK,NL,BR,US,HK,DE,ES,_,NL,DK,SE,UA,FR,EE,VN,NL,US,NL,GB,DE,RU,DE,BE,RU,LV,IT,AT,CZ,DK,GB,FI,SE,DK,NL,GB,DE,TR,DK,IQ,SY,DE,NL,FR,CH,GB,FR,DE,FR,CH,DE,IT,FR,RS,NL,ES,HR,NO,HR,NL,HR,RO,US,AM,HK,IR,AE,GB,BG,EE,RU,TR,CH,AL,GB,IS,FR,DE,PL,CZ,UA,RO,CZ,US,CA,GB,PL,UA,BE,GR,GB,DE,BE,NL,AZ,RU,FR,DE,ES,DK,ES,GB,GR,QA,NO,GB,CZ,DE,BE,DE,IT,GB,AT,IT,RS,DE,NL,GB,BE,AU,NL,FR,CZ,CH,RU,GB,IT,IE,BZ,DE,NL,LB,ES,CH,DE,CH,IT,BH,IT,GB,ES,DE,CH,ES,IR,PL,DK,DE,IT,DE,MT,TR,RS,GB,TR,GB,IT,NO,NL,US,NL,BE,CH,UA,PL,DE,DK,SE,ES,RU,DE,AT,GB,RS,EE,DK,NL,UA,CH,AT,RU,ES,DK,KG,UZ,BE,NL,DE,ES,DE,SE,NL,SE,PL,SE,PL,DE,IQ,ES,RU,FR,CZ,GL,TR,GR,NL,ES,IT,SE,GB,US,IT,GB,PL,CZ,FR,AT,RU,AL,FR,ES,DE,AT,IQ,AT,IT,SY,IT,DE,FR,DE,ES,GB,DK,CZ,US,FI,GB,HR,NL,IT,SY,DE,FR,RU,IT,JE,ES,GB,FR,DE,US,IT,NL,GB,DE,IT,TR,RU,DE,DK,NL,ES,IR,EE,DE,BE,IT,DE,NL,IT,DE,DK,NL,UA,DE,BY,GR,DE,AT,IT,GB,RO,NL,GB,DE,ES,IT,US,GB,FR,SE,CH,GB,CZ,DE,IE,ES,RU,IE,IT,AT,IT,RU,US,NL,IL,GB,NL,RU,US,PL,IT,DE,IT,HR,DE,IT,GB,CZ,FR,ES,FR,DE,IL,LV,RU,ES,TR,DE,NL,RU,CZ,NL,UA,IT,RU,IR,SE,CH,GB,CH,UA,RU,CZ,RU,IR,JO,SE,CA,SE,PL,IR,HU,GB,SE,CA,AT,CH,DE,ES,GB,BE,ES,GB,NL,JP,IL,GB,DE,GB,FI,NL,DE,ES,MY,BE,ES,DE,NL,FR,DE,FR,US,PL,DE,CZ,JP,TR,FR,RU,DE,GR,PL,FR,NL,ES,TR,LU,AE,US,SA,NL,DE,ES,NL,ES,IE,DE,UA,RO,DE,IR,SK,BE,AT,TR,PT,GB,IT,AT,IT,CH,BE,LU,IT,RU,LT,DE,ES,NL,ES,GB,ES,DE,IR,GB,RU,GR,TR,DE,CY,IR,GB,BE,CZ,ES,RU,BE,LB,ES,RS,JO,DE,CH,DE,GB,US,GB,FR,ES,GB,CH,GB,NL,RU,IR,ES,FR,KG,RU,NO,RU,AE,VN,BD,PL,HU,FR,DK,MX,KZ,DE,EE,NL,FR,NL,PL,ES,CH,NL,DE,GB,NL,IL,US,IR,ES,CH,IR,TR,US,NO,DE,GB,NO,NL,DE,KR,BE,JP,HK,DE,PL,NL,TR,GB,FR,SK,DE,RU,ES,GB,CA,BG,US,IT,RU,DE,LT,HU,NL,SE,MD,IT,AZ,DE,CH,LV,CZ,AT,RU,EE,IR,DE,CA,US,IL,NL,HU,CZ,NL,BG,NL,RU,CY,UA,CZ,BE,RU,IT,IR,DE,IT,US,NL,HU,RO,US,DE,US,SK,FR,NL,SC,US,SC,RU,PL,GB,DK,GB,HK,SG,GB,DE,FR,IL,NL,RU,NL,MD,DK,MD,TR,IL,NL,FI,FR,SY,ES,FR,PT,NL,RU,MK,FR,CZ,RU,FR,DE,IR,DE,GB,RU,KZ,NL,GR,US,BE,DE,GB,US,MX,IN,AE,NL,DE,FI,SE,US,SE,AT,UZ,FR,TR,DE,CZ,MD,IT,ES,AT,CH,DE,FI,FR,GB,US,DE,NL,SE,IR,CH,US,GB,ES,RO,DE,SA,FR,TR,AE,TR,ES,FR,BG,AT,IL,FI,RU,SA,ES,SE,ES,IT,RU,CZ,DK,MD,DK,GE,HU,JO,NL,UA,US,FR,SY,FR,ME,FR,ES,UA,RU,BG,NL,ES,MD,AT,FI,DK,IL,SA,BA,AT,ES,GB,MD,DE,SC,DK,NL,SC,GB,US,NL,CZ,IR,LB,MD,DE,ES,IT,DE,ES,LB,DE,AT,ES,US,DE,SG,AU,FR,LT,SY,GB,PL,IT,RU,CH,BE,IT,DE,RU,NL,FR,US,NL,RU,US,IT,GB,CH,IT,SA,IL,GB,SY,AT,NL,FR,IQ,US,IQ,US,GB,ES,DE,FR,SA,BG,JP,SY,IR,ES,DE,SA,DE,TR,BG,IR,FR,SK,IR,NL,GB,TR,US,NL,GB,IT,AT,FR,NL,DK,TR,GB,SE,HK,IE,AU,IE,IT,PT,BG,IR,PT,HU,RU,IR,RU,IT,CH,FI,DE,SK,FR,PL,SC,CZ,BE,SC,NL,RU,ES,RO,IS,RO,SE,BH,GB,RO,AT,GB,US,GB,FR,GB,NL,NO,RU,IR,CH,US,RU,BG,RU,DE,US,HR,NL,DE,ES,CH,DE,FR,RU,DE,IQ,FI,SE,FI,SE,FR,GB,NO,NL,SK,TJ,IR,CY,GB,RU,FI,CH,FR,DK,GB,RU,NL,KW,CH,FR,IR,CZ,IR,CY,DK,RS,GB,HU,NL,IE,DE,PT,US,SE,QA,FR,GB,RU,FR,PL,ES,DE,IT,FI,NL,DE,CH,PL,UA,KZ,DE,SE,ES,UA,GB,HU,SE,GB,US,BG,US,RU,SE,SG,BE,HR,IT,SE,UZ,FR,CH,TW,FR,IT,ES,SA,PL,GB,MK,BE,IT,MD,US,CZ,IR,FR,BG,UA,CH,SE,ES,HU,NL,IR,IT,IL,IT,AU,GB,RU,IR,FR,MD,SA,PL,BG,DE,IL,DE,UA,US,GB,BG,SE,IE,ES,US,IT,CZ,DE,US,AU,IT,IE,SA,NL,CZ,PL,GB,AM,PK,GB,FR,RU,GB,US,CH,AT,IT,FR,US,GB,NL,GB,DE,NL,DE,LT,RS,JP,US,IT,DE,IT,GR,HR,FR,US,NL,US,GB,FR,RU,DK,IL,NO,IT,BE,DE,NL,IT,GB,IT,AT,ES,US,NL,HR,CH,PL,UA,PL,UA,GB,NL,GB,DE,CZ,UA,DE,TR,US,FR,NL,IT,SM,NL,SM,IT,DK,RU,FR,GB,DE,GB,DK,NL,FI,DE,IN,BR,FI,NL,SE,NL,UA,GE,DE,GB,RU,SE,DK,NL,US,AU,GB,DE,GB,ES,IR,LB,AT,DK,NL,IR,IT,GB,SA,IR,SE,IT,SA,TR,DE,CH,TR,EE,SE,NL,TR,DE,NL,GB,NL,CH,FR,CH,DE,PT,DE,PT,RU,FR,AT,FR,NL,US,NL,GB,DE,US,ES,LT,GB,IL,RU,FR,SY,ES,GB,NO,IT,TR,IT,IS,DE,US,IL,DE,FR,DE,RU,GR,IT,US,GB,IT,CH,GB,RS,DE,US,GB,RU,NL,IR,US,NL,RO,FR,CH,FR,DE,DK,PL,IT,US,IN,US,NL,FR,CH,RU,SG,NL,FR,GB,NL,FR,US,NL,PT,US,SE,NL,FR,HU,CH,NL,ES,GB,PL,GB,DE,AE,DE,DK,US,SG,SC,LB,SC,LB,DK,IT,DE,NL,IQ,GB,ES,FR,GB,TR,DE,KR,DE,NL,CY,DE,TR,GB,SE,MD,GB,PL,DE,PL,RU,NL,ES,NL,FR,GB,CH,LI,PL,CZ,CY,IR,CZ,DE,NO,GB,US,TR,JP,FR,ES,RU,MD,FR,TR,DE,NL,IT,NL,DE,NL,IR,GB,RS,BE,US,MD,SY,DE,RU,FR,TR,NL,TR,CY,DE,RU,ES,LB,FR,AE,NL,US,GB,US,DE,US,NL,PS,DE,SK,AL,IT,SA,FR,PL,FR,NL,ES,BE,FO,FI,HR,RO,GB,RU,DK,GB,FR,RU,DE,US,IT,DE,GB,DE,NL,BE,IT,NL,DE,IN,IR,BE,DE,FR,EE,MD,SC,NL,DE,HU,GB,NL,US,NL,FR,DE,ES,US,LT,AE,US,IR,SY,SE,IL,PL,NL,LI,ES,CH,SK,NL,JP,PL,CZ,PL,GB,DE,US,DE,NL,RU,IT,US,DE,NL,ES,AT,FR,LT,NL,US,NL,ES,DK,NL,TR,ES,IT,UA,US,DE,CH,IE,IT,PL,IR,NL,FR,IQ,FR,SY,PL,GB,PL,CZ,RU,SE,GB,NL,RO,BE,RO,NL,DE,US,BA,DE,BE,AU,RU,KW,ES,GB,SI,SG,JO,LB,GB,FR,RU,DE,RU,IT,CH,RU,FR,UA,IR,DE,RU,GB,FR,CH,IR,IT,NL,AT,US,TR,US,CZ,FI,RU,NL,IE,IR,SY,RU,LU,IE,TR,GB,SE,FR,RS,FI,IT,NL,SE,NL,US,CY,MT,DE,NL,IT,DE,US,MD,US,CZ,FR,IT,BE,SE,PL,HU,TR,FI,TR,LI,DE,US,SC,CZ,DE,FR,GR,DE,TR,NG,BE,TR,DE,GB,ES,NO,US,FR,CZ,GE,US,CH,DE,GB,PL,DK,PL,NL,RU,IR,SE,IR,EE,RU,FI,RU,SE,RU,UA,RU,DE,PL,PT,US,GB,EE,RU,CZ,NL,IS,ES,BE,NL,RU,BE,IR,AT,RS,ES,CH,UA,GB,SY,RU,DE,GB,SY,LB,SE,IR,DE,SI,NL,CZ,DE,RU,AT,NL,DE,IL,GB,CY,RU,GB,SY,NO,AT,ES,NO,US,RU,IR,MD,CZ,FR,DE,GB,PT,UA,NO,GB,DE,GB,PL,IL,GB,RU,FR,IT,RU,SK,GB,US,GB,FR,ES,RU,US,SC,IE,RU,LT,BE,PT,SK,LT,DE,NL,PL,BE,GB,DE,AT,BE,CZ,US,JP,KH,DE,US,UA,IR,UA,JO,AL,IE,ES,IE,DE,IT,NL,RU,KZ,SE,IR,NO,BG,JO,US,IR,LV,FR,ES,SK,GB,ES,US,GB,US,GB,TW,US,DE,SE,IE,ES,LV,PL,GB,IE,FR,CH,DE,CZ,NL,LB,FR,DE,AT,DE,GB,DE,FR,GB,FR,ES,SE,ES,DE,MT,IT,GB,LB,NO,BG,LV,CH,DE,FR,CH,GB,NO,SE,GB,DE,TJ,SK,MK,AT,DE,US,DE,US,DE,US,RS,IT,ES,FR,MT,DE,IE,RU,BG,CH,GB,SE,ES,BG,RU,US,DE,US,GB,DE,CY,NL,RU,NL,AM,RU,HK,FR,IT,FR,DK,NL,BE,DE,US,IS,NL,DE,NL,UA,NL,GB,LT,MD,ES,IR,DK,SE,ES,PL,NL,FR,AE,UA,IT,ES,GB,DE,FI,IT,NL,LB,IT,RU,FR,AU,DE,GB,US,IR,IN,MD,DE,PL,UA,IT,DE,DK,AT,BG,IT,ES,DK,DE,FR,US,DE,RU,LV,UA,GB,UZ,FR,DE,CH,IE,US,DE,FR,ES,PL,FR,IT,PL,GB,IR,DE,DK,DE,CH,SE,RU,FR,ES,SE,AF,SY,US,PL,ES,NL,SG,ES,CZ,GR,SE,FR,GB,CH,DE,GB,NL,RU,NL,RU,NL,DE,GB,IR,SI,RO,DE,ES,NL,PL,TR,UA,FR,IT,RU,KZ,FR,CH,GB,TR,RS,CZ,RU,IE,BE,SI,ME,PL,AT,DE,MT,RU,IS,BY,RU,GB,BG,IR,BE,ME,DK,TR,GB,MT,IT,ES,IS,FR,FI,GB,RU,NO,PL,RS,ES,RU,FR,US,DE,RO,RU,DE,IR,RU,IE,BE,UA,NL,DE,ES,RU,FR,RU,VN,RU,ZA,AE,NL,GB,UA,GB,US,IN,IR,RU,ES,FI,IL,NL,ES,DE,NO,ES,US,GB,CZ,GB,NL,AT,US,CZ,US,CH,DE,TR,GB,GR,RU,BE,ES,IT,ES,IR,RU,IQ,NO,BE,HU,BE,JO,AE,HU,FR,NL,IL,NL,RU,NL,BR,PL,GB,IT,RU,IR,AT,BG,CZ,HU,SK,BE,MD,GB,US,NL,FR,GB,RU,DE,GB,IM,GB,IM,NL,GB,BE,GB,RU,IT,GB,RU,KR,JP,KR,HK,NL,US,RU,PL,RU,GB,NL,DE,RU,NO,RU,IE,FR,RU,SE,FR,NL,GB,DE,GB,DE,UA,DK,DE,GR,EC,UA,MD,SE,MD,IQ,US,NO,SA,RS,NL,FR,NO,NL,SE,IT,GB,HK,RO,DE,IQ,DE,US,DE,GB,DE,US,DE,GB,DE,IT,NL,GB,BG,FR,CH,UA,NL,UA,DE,IE,CZ,IR,CZ,DE,GB,RU,RS,CH,TR,NL,SE,DK,DE,MD,NL,ES,RO,RU,GE,GB,HK,DE,OM,BE,RU,DE,CH,GB,DE,FR,DE,US,DE,US,GB,NL,US,JP,PL,ES,GB,IE,IL,DE,NL,DE,SE,GB,LV,PL,UA,RU,TR,GR,FR,RU,LB,IT,AM,ES,BR,TH,BE,JO,IT,GB,GE,ES,TR,DE,RS,PL,RS,DE,FR,IT,AT,ES,IT,TR,NL,IT,GB,DK,IT,HU,KZ,IR,PL,GB,DE,TR,US,PL,IR,FR,IT,CZ,RU,ES,GB,DE,NL,PL,DK,US,RU,BE,DK,SE,FR,IT,CZ,RU,SA,US,DE,GB,FR,DE,UA,NL,RO,NL,SA,GB,CH,IT,ES,AT,UA,FR,NL,FR,NL,BE,BY,DE,US,KZ,BG,IL,SA,FR,SE,RS,SE,DE,RU,TR,RU,DE,GB,OM,GR,CH,RU,NL,DE,FR,GB,FR,ES,PL,FR,SK,PL,UZ,DE,MK,FR,ES,FR,NL,US,NL,CH,IL,AE,TR,SK,IR,IT,GE,AT,EE,UA,FI,IR,RU,LU,BG,FI,US,GB,DE,NL,RU,PL,LB,ES,SE,NL,DE,SY,NL,PL,GB,CH,GB,PL,RU,PL,FR,ES,IT,GB,CR,LT,ES,NZ,AU,SG,GB,US,DE,NL,UA,ES,CH,GB,CZ,GB,PL,FR,DE,IE,AT,NL,IQ,DE,NL,TR,DE,US,RS,NL,GB,DE,JP,DE,US,IM,LU,NL,RU,GB,IT,IL,GB,CZ,AT,RU,FR,NL,IR,RU,DE,US,CH,ES,NL,IT,NL,ES,RU,TR,ES,RU,SY,GB,DE,GB,DE,US,HK,US,GB,SI,ES,DK,RO,RU,GB,TR,FR,RU,US,OM,GB,NL,CZ,IL,RU,BR,RU,GB,GR,GB,NL,FI,IQ,LB,RU,NL,DE,ES,CH,NL,DE,US,FR,NL,CZ,SY,GB,BE,TR,CH,IR,NL,CR,US,UA,LU,SC,RU,US,GB,US,GB,NL,US,IT,PL,CZ,DE,LT,DE,ES,SE,CZ,PL,FI,NO,IR,NL,US,NL,SE,US,SG,IL,US,IT,FR,CH,RS,SE,DK,RS,GR,FR,IT,PL,GB,TR,DE,BG,DE,GB,RO,NO,BG,RU,DE,US,BE,PL,CZ,GB,ES,NL,PS,ES,RU,ES,RU,CZ,ES,OM,BY,BE,PL,DE,FR,RU,DE,IR,NL,CZ,PL,AL,BA,SI,NL,CO,CZ,KZ,PH,NL,NO,FR,IL,IT,IR,PL,GB,CY,GB,IT,RU,DE,ES,HU,IQ,UA,IR,RU,LB,ES,BE,NL,TR,NL,RU,GB,CH,US,NL,LB,GB,HR,MT,HR,CZ,DK,GB,IE,AL,US,GB,US,GB,IT,IL,FR,US,MY,US,IT,KW,SA,EG,SA,ES,TR,RU,SY,RU,CO,US,IQ,FR,US,LU,MC,MD,FR,IT,ES,CH,BR,US,GB,US,SG,HK,US,FR,DE,SG,US,HU,SE,DE,US,JP,US,ES,RU,DE,ES,CH,AT,DK,IT,GB,TR,FI,IR,DE,TR,GB,KZ,GB,PL,CH,DE,AT,HU,DE,ES,KE,BE,DE,PL,DE,US,IT,TR,FR,RU,CZ,IR,DE,IR,PL,DE,NL,TR,DE,AT,US,NL,AZ,BR,LU,PL,ES,CH,FR,PL,FR,GB,FR,RU,FI,RU,CZ,SK,RU,CH,DE,ES,RS,GB,SE,BG,GB,SK,DE,RS,DE,HK,NL,GB,DE,CZ,NL,RU,FR,US,DE,GB,SE,US,TR,US,GB,US,SE,TR,DE,GB,DE,IT,ES,US,FR,UA,FR,GB,IT,AT,SE,LB,CZ,US,CZ,DE,RU,NL,ES,US,SG,ES,DE,FR,HU,CZ,DE,IR,PL,TR,RU,PL,DE,GB,CH,LT,FR,TW,RU,RO,FR,ES,NL,UA,FR,RU,BG,GB,PL,GE,PL,GE,DE,ES,DE,GB,FR,HK,UA,GB,RU,ES,IE,US,TR,US,NL,IR,AX,DE,GE,PL,LB,CY,CH,NO,GB,RS,IR,RU,IT,GB,AT,DE,CH,AT,DE,US,NL,DE,GB,AT,CR,US,SI,NL,FR,CZ,AL,FR,GB,BG,ES,RU,ES,CZ,RU,DE,CH,GB,RS,IT,HK,DE,SE,UA,RS,DE,IT,RU,NO,ES,RU,DE,GB,IE,IT,RO,IT,AT,US,NL,DE,ES,CH,KZ,CZ,BG,US,ES,NL,PT,ES,NL,EE,US,GB,LT,NO,KZ,RU,FR,ES,FR,TJ,RU,IT,ES,CH,SA,IR,UA,GB,ES,FR,IT,NL,IT,AT,DE,AT,UA,US,DE,NL,CA,AT,SA,RU,FR,DE,CZ,US,UA,FR,IE,GB,RS,NL,US,UA,IT,CZ,HU,FI,RU,FR,HK,IL,HK,IL,GB,HK,GB,HK,KZ,RU,DE,HK,GE,HK,GE,DE,LU,DE,US,HK,IS,HK,CH,NL,PL,HK,ES,HK,ES,HK,NL,HK,GI,HK,IR,FI,IE,DE,NL,MA,JP,HK,FI,HK,FI,HK,DE,BE,US,GB,BE,DE,LB,JP,IT,HK,DE,GB,HK,ES,HK,DE,GB,BG,HK,GB,US,DE,PL,NL,RU,IR,HK,ES,RO,HK,BR,HK,NL,FI,NL,IT,HK,DE,HK,DE,NL,FR,IE,HK,IE,GB,HK,LB,GB,HK,DE,CH,DE,HK,DE,GB,ES,HK,ES,BE,HK,BE,NL,HK,NL,CH,HK,RU,HK,FI,HK,DE,BE,ES,US,UA,ES,AT,GB,DK,KW,PL,RU,NL,RU,UA,HU,IT,TR,ES,AM,DE,AU,US,DE,LT,GB,US,DE,ES,RU,IR,US,RO,BG,EE,CA,NL,HK,DE,ES,US,FI,DE,CZ,BE,NL,RU,NO,NL,CZ,ES,FR,PL,DK,IN,SE,BV,CZ,AZ,RU,DE,CY,AE,US,NL,PL,MY,TR,US,GB,ES,JO,CH,NL,IT,AT,RU,ES,RU,IR,AF,NL,HU,CH,DE,GB,DK,MK,ES,NL,CZ,CH,RU,IT,NL,IT,IQ,CZ,DE,PL,NL,AT,ES,GB,PK,TR,US,RU,DE,GB,CZ,ES,EE,SG,DE,AD,ES,DE,CZ,SY,IR,FR,BE,GB,LU,IE,GB,SG,ES,RU,ES,GB,US,CA,FR,SY,FR,SA,DE,US,DE,AT,US,LT,US,DE,FR,LB,FR,NL,FR,GB,TR,DK,DE,FR,US,CH,IT,LU,BE,US,ES,TJ,IT,FR,RO,IT,PL,MY,DE,PL,US,FR,DE,IL,IR,NL,GB,DK,MD,IT,GB,RO,EE,RU,BE,SA,ES,CH,ES,TR,HU,US,AT,HK,AT,US,CH,IR,ES,TR,CZ,DE,CZ,FR,SE,ES,DE,GB,ES,DE,GB,DE,GB,IT,GB,BE,NO,RU,DE,FI,RU,SI,NL,GB,IL,RU,DK,ES,DE,MD,RU,GR,CH,GB,ES,NO,US,CZ,DE,DK,EE,US,CZ,TR,GB,SE,BE,HU,EE,GB,NZ,RU,NL,IE,NL,FR,TR,MY,CA,US,FI,CH,RO,ES,DE,GB,US,DE,FR,RU,ES,SE,ES,NL,IT,GB,ES,DE,CA,FR,ES,SK,_,DK,GB,CH,NO,GB,SG,NL,GB,BG,FI,GB,CH,DE,ES,RU,NL,RU,DE,CH,IL,CH,GB,CH,SY,IR,SE,AT,IT,RU,NL,AT,AL,RU,US,NL,ES,GB,DK,UZ,DE,NL,KE,DE,PL,FI,RU,AT,RU,FR,ES,MK,IT,RU,US,PL,SY,CL,AR,DE,US,GB,RU,BE,DE,AT,ES,GB,ES,IR,RU,NL,UA,NL,FR,ES,SE,LU,FR,IR,NO,NL,TR,NL,DE,IT,DE,DK,IT,CZ,US,RO,FR,UA,BG,FR,NL,DE,DK,DE,JO,DE,AT,IE,TR,FR,NL,US,DE,TR,ES,IL,US,IL,NO,IT,ES,NO,SE,IT,RU,DE,ES,AR,HK,US,FR,PL,SE,IT,DE,ES,TR,PL,FR,DE,US,DE,GB,IE,LT,GB,JP,NL,RU,MD,ES,TR,RO,NL,RO,IT,ES,AT,RU,DE,NL,TR,FR,SE,GB,US,AT,BE,EE,NO,IT,CL,CO,CL,IT,CY,ES,RU,IT,TR,FR,GB,LT,DE,IS,DE,RU,BE,FR,PL,IT,IR,NL,HU,SY,ES,GB,SE,TR,DE,CH,IT,NL,DE,FR,IE,GB,AT,IN,EG,FR,US,NL,AU,GB,US,FR,IT,DE,RU,CY,GB,NL,IT,HU,FR,GB,BG,FR,ES,IT,IN,US,ES,GB,BE,IR,DE,IT,DE,AT,CZ,TR,US,UA,ES,CA,US,DE,US,IT,US,RS,US,GB,DE,SE,DE,RU,GB,TR,HK,AT,TR,GB,DE,RU,GB,SE,RO,CH,BE,FR,NL,DE,GB,FR,DE,IR,TR,IR,GB,US,DE,GB,US,DE,ES,NL,DK,US,JP,SY,LU,PL,HR,DE,BE,NL,CA,US,AE,RU,TR,ES,TR,LT,DE,LT,SY,TR,BG,PL,AE,FR,AE,DE,UA,JP,DE,JP,DE,EE,DK,ES,PL,IE,IT,GB,NL,CZ,UA,SG,GB,NL,RU,SA,NL,OM,JO,NL,DE,RU,FR,IT,RU,BG,RU,FR,RU,GB,US,IT,SE,RU,FI,US,FR,RU,FR,IT,FR,JP,IR,AL,RU,CH,DE,ES,QA,US,RU,FR,US,FR,IL,AL,NO,GB,ES,SG,US,CZ,NL,US,DE,GE,NL,RU,GB,BG,HU,US,IE,US,RU,IR,RU,GR,GB,IT,PL,NL,ES,IT,BG,DE,RU,NO,GB,OM,DK,DE,PL,IT,AT,NO,CH,TR,DE,IT,US,DE,IL,NL,ES,AT,DE,GB,RU,SE,ES,GB,IT,IL,AE,US,GB,KW,SA,NL,SE,GB,TR,CH,GB,DE,TR,DE,US,CA,CZ,SK,IT,US,CH,NL,UA,GR,IT,GB,RU,AT,DK,RU,IE,DE,FR,ES,DE,US,PT,FR,IR,FR,SE,IE,GB,BA,CH,RO,NL,RO,MD,BG,DE,US,KR,TW,JP,SE,ES,RU,US,GB,RU,US,RU,FR,DE,GB,ES,IT,PL,IT,AT,CH,HU,SA,GB,FR,ES,AT,NL,DE,ES,US,SE,DE,IT,ES,AT,DE,NL,ES,SE,RU,PL,US,HK,BE,SA,GB,DE,TW,HK,DE,TR,IT,LU,NL,DK,FR,IT,GB,HR,ES,IT,FR,TR,NL,CN,CH,CZ,DE,IQ,NL,GB,ES,PS,TR,SY,GB,RU,IT,AT,CZ,US,IT,TR,CH,GB,DE,RU,NL,IT,SA,CH,BG,DE,ZA,DE,IT,PL,CH,GB,FR,RU,DE,BY,CZ,IR,ES,TR,IT,FR,GB,NL,CH,GB,DE,US,DE,US,ES,AT,DK,US,ES,AE,DK,UZ,NL,LV,RO,NL,US,GB,PL,RU,FI,RU,GB,SE,US,CZ,RU,UA,NL,AL,NL,FR,GB,LB,NL,BG,NL,MK,ES,DE,UA,TR,GB,SY,IT,SY,GB,US,DE,IT,CY,ES,DE,FR,ES,NL,RU,PT,DK,BY,DE,US,FR,RU,DE,IT,IE,FR,SE,US,GB,RU,FR,DE,FR,BG,TR,FR,ES,IR,DE,ES,TR,FR,PL,TR,IR,IT,FR,ES,FR,GB,PL,IT,PL,TR,NL,DE,ES,DK,FR,FI,ES,IT,DE,TR,NO,SA,GB,FR,GB,IT,UA,SE,NL,ES,LV,RU,US,DE,FR,HU,NL,DE,PL,GE,TR,GR,US,DE,CH,ES,SI,CH,DE,RU,DE,CZ,MM,UA,ES,PL,DE,GB,IT,RS,GB,RO,US,CY,PL,ES,FR,NL,DE,GB,DE,LT,US,DE,NL,GE,IR,GB,US,NL,BY,BG,DE,NZ,PL,CA,SE,IE,BE,RU,NL,US,FR,US,HU,ES,CH,NO,IT,JE,GB,US,NL,CA,FR,ES,GB,KZ,UA,GB,DE,NO,IT,RO,SG,DE,ES,NL,GB,RO,GB,AT,TR,NL,ES,IQ,IT,DE,IR,KW,RU,DE,SE,PL,FR,DK,ES,BE,GB,IQ,US,SA,FR,NL,BG,GB,DE,DK,NL,US,RU,US,IQ,FI,DE,SI,CH,IE,DE,LB,RU,DE,NL,GB,US,DK,NO,GB,US,IR,DE,IR,NL,IR,DE,CH,ES,GB,US,DE,ES,LT,ES,CZ,RU,TR,DE,TH,ID,AU,IQ,BG,HR,DE,ES,NL,RU,GB,RU,SA,LT,GB,LT,US,GB,AR,DK,TR,ES,FR,DE,FR,GB,IR,TR,DE,RU,GB,IR,CH,FR,FI,RU,GB,IN,GB,US,DE,GB,DE,CH,GB,FR,GE,GB,UA,GB,ES,PL,HK,DE,SG,NL,CZ,ES,HK,US,NL,IT,NL,AU,GB,NL,DE,US,NL,RU,CH,DE,NL,ES,NL,FR,CH,DE,BG,NL,CY,NL,DE,US,DE,HK,RU,US,IE,FR,AT,IT,ES,IT,CH,DE,FR,IT,BG,SE,NL,FR,ES,SE,RU,IR,DK,FR,GB,NO,TJ,TR,IT,TR,LV,ES,LI,CH,NL,AT,IT,FR,ES,IR,GB,AM,ME,US,DE,PL,US,DE,IR,UZ,IR,ES,IT,RU,IL,RU,DE,NL,DK,ES,HU,UA,IT,DE,GB,IT,FR,CH,LV,ES,CH,TR,DE,NL,FR,NL,RU,SY,GB,IN,NL,GB,RU,FR,AE,NL,FR,UA,ES,DE,PL,NL,SG,TR,IN,ES,BG,FR,CH,GB,RU,DE,KZ,US,EE,ES,DE,PS,RU,CH,ES,DE,US,DE,LT,FR,DE,NL,GB,DE,RU,NL,IE,UA,AT,US,FR,IR,ES,DE,CH,SE,SY,AT,FR,NL,FR,CH,GB,BE,GB,DE,NO,DE,IT,BG,DE,RU,UA,GB,PL,DE,PL,DE,CH,NO,DE,AT,ES,NL,ES,JP,PL,RO,RU,IT,DE,RU,ES,CH,ES,US,DE,US,SE,DE,UA,ES,TR,CH,DE,GB,FR,IT,GB,NL,PL,NL,DK,MD,DE,UZ,KZ,RU,SG,AT,GB,PT,GB,PL,IT,UA,GB,IT,GB,CZ,US,GB,IT,DK,BA,AG,BA,ES,DE,ES,GB,IR,US,FR,DE,IT,RO,BE,RO,AT,SE,AT,ES,GB,DE,AU,LT,DE,DK,RU,ES,IT,TR,RU,US,HK,DE,BR,JP,AU,CA,ES,IT,DE,GB,FR,PL,US,AU,DE,SK,GB,ES,PL,DE,GB,US,NO,IR,DE,AT,RS,ES,NO,DE,GB,NL,TR,IT,IR,CH,US,DE,KW,CZ,RU,ES,IE,FR,IE,FR,GB,UZ,DE,SE,FR,DE,SK,US,RU,IT,RU,SE,GR,RU,AM,GB,ES,NL,CZ,ES,BG,RO,DK,NL,ES,AT,DE,AE,DE,RU,KG,LU,DE,RU,NL,IE,RU,US,FR,MD,US,CZ,IT,FR,IT,FR,SE,RU,DE,IQ,IE,GB,DE,PL,DE,IR,DE,JP,NL,SG,GB,PL,FR,US,FR,DE,GB,DE,GB,ES,RU,DE,FR,AT,DE,BA,RU,US,ES,RU,CA,MC,PH,ES,VG,PL,ES,MD,US,RU,FI,RU,IT,GB,FR,PL,GB,DK,CH,NL,US,TR,IT,GR,IE,GB,CH,AL,IR,DE,US,ES,US,DK,FR,TR,LB,FR,IE,NL,UA,KZ,UA,GE,NL,LT,IT,IR,NL,US,IT,BE,NO,SE,DE,US,DE,RU,DE,PL,UA,EE,DE,IT,IQ,ES,NO,CH,HK,NL,BE,CA,FR,DE,CA,BR,TW,ID,ES,NL,US,GB,DE,NL,ES,IT,GB,AT,DE,IE,RU,AT,SK,GB,BE,SE,DE,RU,FR,IR,TR,NL,FR,LB,LU,PL,GB,NL,BR,IR,ES,LV,CH,NL,RU,IT,CR,GB,FI,UZ,UA,DE,US,PA,US,GB,DK,NO,IL,IT,NL,FR,IE,NL,SG,ES,NO,NL,HU,PT,IR,RO,CO,IT,GB,FR,RU,GR,LB,NL,PL,US,AU,IT,NL,DK,RU,ES,NL,HR,LV,ES,US,NL,GB,ES,KR,RO,GB,DE,GR,TR,NL,CZ,DE,SG,US,BE,NL,US,DE,ES,GB,US,ES,NL,CH,FI,RU,EE,GB,US,RS,ES,HU,NZ,SI,ES,GB,RU,DE,SK,FR,IT,ES,FR,ES,FR,GB,FR,DE,US,RU,BG,RU,ES,RU,UZ,FR,CH,SE,FR,DE,CZ,FR,DK,BE,DK,ZA,MV,GB,NL,TR,US,AM,DE,RU,FR,LU,PL,DE,ES,ME,DK,NL,DE,ES,IE,CH,SC,ES,IE,US,CH,IR,GB,CA,GB,CA,ES,FR,IT,US,IR,DE,KZ,DE,HK,FR,IT,RU,DE,US,NL,DE,EE,HK,EE,DE,IT,SE,AT,DE,ES,FR,GR,US,DE,US,NL,US,IR,AE,DE,IT,DE,AU,US,DK,NL,SG,US,SG,US,CY,AT,GB,FR,GB,BE,NL,AT,RS,RU,SK,FR,ES,BG,DE,AT,CZ,FR,SA,EE,RU,EE,GB,ES,PL,ES,RU,IT,NL,IQ,BG,NL,US,CO,US,DE,GB,RU,BG,IT,FR,SG,FR,RU,DE,GB,TR,HK,JP,HK,DE,CA,US,NL,ES,SY,AT,GB,GR,NL,GB,FR,SE,DK,NL,SK,ES,PL,DE,PL,IT,ES,RO,GR,RU,SY,DE,US,GB,HK,RU,LT,DE,ES,CZ,DE,IT,US,DE,FR,RU,HK,ES,SE,BE,SA,SG,IR,RU,SA,ES,KZ,IE,US,IT,NL,FR,DE,BG,DE,GB,DE,GB,NO,GB,DE,BE,DE,BE,DE,KZ,IQ,DE,BE,FR,RO,US,SG,IT,HU,IQ,DE,LB,IQ,NL,IL,SA,GB,DE,GB,ES,DE,GB,NL,FR,DE,HK,DE,RU,KZ,ES,UZ,GB,NL,ES,FR,TR,DE,FR,GB,NL,TR,GB,US,RU,US,DE,AU,NL,SY,DE,KZ,LB,KZ,DE,FI,AT,RU,FR,ES,NL,PL,US,ES,SE,IT,CZ,FI,BG,FR,DE,RU,FI,NL,GB,US,RU,PT,GB,ES,GB,TR,FR,US,SE,SK,FR,NL,DK,IT,CH,DE,BG,RU,NL,AT,DK,BG,FI,CZ,ES,GB,BE,GB,US,IT,DK,PL,DE,RU,IE,CH,IE,GB,DE,AU,DE,CZ,AU,AT,IR,UA,TR,DE,GB,FR,US,GB,FR,PL,US,PL,US,ES,NL,DE,FR,RU,MD,US,UA,PL,ES,FI,CH,DE,UA,BE,UA,RU,TR,NL,FR,TR,AU,US,NL,DK,US,ES,CH,TR,FR,ES,IT,RU,FR,NL,ES,FR,CZ,US,ES,NL,US,PL,RU,IT,HU,RU,ES,CZ,GB,BG,GB,UA,NL,DE,IT,DE,GB,BE,DE,GB,DE,GB,IR,IT,ES,BR,IT,BG,PT,TR,ES,SE,US,HK,PL,GB,IS,DE,LV,JP,NL,IL,US,CZ,FR,TR,IT,LB,SE,NL,DE,PL,FR,DE,FR,ES,DE,IT,FR,IT,GB,FR,DE,CH,AT,DE,FR,ES,GB,GR,DE,US,BR,US,HR,US,CZ,RU,ES,IT,TR,GB,PL,SG,US,DE,IT,FR,FI,IT,CH,IT,CH,ES,GB,LV,DE,US,NL,IQ,LV,NL,SK,LB,RS,EE,LB,GB,UA,JP,DE,TR,CH,GB,ES,SY,NL,LT,AZ,RO,HU,DE,RU,LV,DE,NL,IL,NO,NL,DE,CZ,RU,DE,IR,DE,AT,TW,JP,ES,CH,CW,GB,NL,SG,AT,NO,GB,ES,IT,ES,DE,GB,TR,DK,BG,DK,CH,RU,DE,NO,SI,NL,CH,DE,GB,TR,GR,IT,DE,NL,GB,IE,CO,IT,AT,PL,IE,FR,GB,US,NL,US,DK,DE,PL,IR,RU,CZ,ES,LU,US,JP,DE,HU,GB,DE,RU,NL,RU,FI,RU,DE,IT,IS,FR,BE,ES,IR,RU,DE,FR,NL,GB,DE,RU,GB,US,HK,NL,RO,AU,RO,FR,GB,US,HK,IS,FR,DE,BG,IR,IT,GB,DE,CH,DK,NL,AL,AT,PL,PT,CH,GB,IQ,GB,NL,UA,GB,DE,SG,IN,US,NL,US,SA,PH,GB,DE,AT,LB,RU,NL,FR,DE,IT,RS,MT,GB,NO,FR,AZ,BG,NL,RU,NL,GB,CH,IR,OM,AT,RO,CH,RS,DE,NL,FR,ES,RU,ES,TR,BG,ES,GB,US,SE,IR,CA,ES,FR,PT,UA,PT,DE,SK,CH,IR,TJ,DK,JP,KZ,TR,AU,DE,NL,US,BE,US,GB,NL,RU,FR,AT,DE,US,ES,IT,GE,IL,HU,SE,DK,BE,DK,HU,AT,DK,DE,NL,RO,TR,NL,PL,DE,FR,US,RO,AU,ES,DE,GB,GL,FR,US,TR,BR,GB,RO,ES,LU,NL,GB,NL,ES,NO,DE,UA,RU,ES,AM,NL,CH,ES,NL,DE,FR,US,IT,SG,DE,FR,IR,GB,NL,GB,US,MD,GB,ES,FR,GB,KZ,GB,IT,GB,NL,FI,SG,IT,RU,FR,GI,HU,ES,BE,FR,GB,NL,SE,ES,DE,GB,DE,US,_,HU,RU,GB,DK,IE,AT,ES,DE,IT,RU,FR,ES,CH,HU,ES,NL,SE,IT,US,GB,FI,ES,NL,FR,NL,ES,RU,AL,IT,NL,CZ,DE,AT,SY,NL,RO,US,NL,JP,US,DE,GB,BG,PT,NL,FR,IR,CH,ES,GB,ES,GB,IE,AT,IT,GB,RU,TR,CZ,NL,PL,NL,GB,VG,ES,DE,RU,GB,NL,DE,CH,LT,AE,LT,GB,IT,HK,GB,DE,IT,ES,GB,DE,ES,US,RO,SG,GB,US,ES,GB,DE,NL,MK,RU,NL,SY,GB,SE,SA,IT,FR,HU,IT,NL,RO,IR,BG,AT,CH,AT,PL,AU,PL,NL,CH,SE,PS,FI,CA,CH,ES,DE,IT,DE,FR,AT,DE,AT,ES,RU,GB,BE,LT,GB,TR,US,GB,IL,RU,IR,FR,PL,UA,PL,AE,UA,GB,TR,DE,NL,RU,SK,PL,NL,RO,DE,UA,IT,NL,FI,UA,NL,PL,HK,DE,HK,RO,CA,US,IR,ES,PL,GB,US,SG,MK,US,ES,FR,LU,UA,ES,FR,GB,AT,PL,FR,RU,NL,PL,GR,GB,US,JP,NL,US,NL,RO,UA,AL,TR,FR,IR,PL,DE,NO,DO,ES,BE,GB,NL,UA,IR,DE,OM,RU,IR,NL,IR,SG,DE,SE,SG,NO,HK,DE,US,ES,GB,TR,IT,FR,BE,ES,CA,TR,BG,LB,ES,GB,HK,BH,ES,DE,ES,BE,NO,IN,GB,ES,IE,GB,CH,ES,DE,RU,PL,FR,GB,BG,US,ES,DE,FR,CH,SE,IT,PL,NZ,NL,MX,RU,US,FI,BG,GB,CH,GB,IR,FI,NL,SE,NL,DE,RU,AT,ES,BY,ES,DE,GB,NL,DE,IR,IT,NO,ES,LA,LB,US,BG,TR,US,SY,US,DE,US,GB,CH,HK,DE,GB,CH,SK,ES,TR,ES,PL,GB,US,ES,IE,ES,IE,DE,BE,FR,BE,IQ,US,IT,GB,US,OM,DE,SY,DE,US,FR,BG,SE,AT,IT,AT,US,GB,US,RU,ES,UA,PL,IR,GB,UA,ES,DK,BR,SG,MD,DE,UA,NL,FR,UZ,PK,SA,ES,LV,UA,PL,RU,ES,AT,RU,GE,RU,DE,PL,DE,AT,ES,FR,PT,CZ,US,BE,DE,BE,ES,DE,GB,HK,NL,US,NL,HU,IT,PL,US,NL,SK,RO,IT,PL,NZ,NL,SE,FR,RU,IR,DE,ES,RU,IQ,IT,NL,GB,IR,GB,RU,TR,IT,GB,MK,IR,NL,KG,GB,ES,GB,NL,CH,NL,US,PT,MD,NL,RU,CH,MK,GB,NL,KZ,AT,CH,DK,ES,IT,GB,GE,SG,LT,DE,SG,HK,KZ,RU,PL,FI,GR,IR,BG,AT,DK,US,BE,DK,ES,FR,SA,DE,IT,FR,ES,RU,CZ,NL,RU,ES,US,LV,US,HR,IR,RU,DE,NL,ES,GB,DE,NL,IL,NL,NO,RU,IT,NL,US,CA,DE,HU,US,NL,BG,ES,BG,FR,NL,DE,US,TR,EG,RO,SA,CH,SE,PL,SE,DE,NL,US,ES,BR,AD,ES,MK,US,IE,US,LT,HK,GB,DE,NO,FR,IT,DE,UA,IT,FR,KW,ES,DE,BE,IQ,PL,ES,PL,CY,CH,BA,LI,US,MT,ES,CH,US,DE,NO,AT,DE,HK,FR,RU,ES,GB,PL,DE,FR,PL,CZ,FI,NL,GB,IL,US,CH,RU,IT,DE,GB,FI,AZ,PL,UZ,SA,NL,AT,GB,PL,SG,US,ZA,IT,ES,RU,BG,NL,US,BG,GB,DE,CH,DE,FR,PL,NL,ES,NL,SC,IT,BE,SA,SY,RU,CH,RU,NL,FR,GB,DE,KZ,IR,UZ,AT,NL,DE,GB,PL,SE,FI,ES,DE,SE,CH,EE,IR,AZ,ES,FR,DE,RS,DE,GB,FI,PL,RU,MK,IT,FR,NL,SK,IR,ES,PL,IT,ES,NL,ES,FR,FI,IE,IT,DE,GB,NL,CH,IT,RU,PT,DE,NL,CZ,CH,RU,DE,ES,DE,SG,DE,UA,RU,KZ,DE,BE,US,DE,FR,EE,DE,ES,DE,ES,US,NL,IT,UA,US,SG,ES,VG,RU,VG,NL,GB,NL,DE,RU,RO,BE,DE,NL,SE,HU,NL,IT,AT,UA,RS,DE,AE,AT,NL,HU,DE,RU,UA,NL,PL,GB,MK,FR,BG,ES,RU,DK,DE,DK,IR,BG,NL,RO,CZ,GB,LT,RU,BG,ES,IR,ES,NL,AT,FR,GB,US,SG,GB,FR,US,DE,US,RU,NL,DE,FR,RU,FI,RU,LU,RU,IT,GR,NL,RU,KZ,RU,KZ,GB,FR,IR,NL,US,HK,CZ,PL,NL,FR,MD,NL,AZ,UA,FR,DE,DK,NL,UA,IT,GB,AT,CH,PL,ES,DE,FI,RU,IR,NL,RU,GB,FR,DE,GB,AU,SA,ES,UA,AL,AT,IE,FR,IR,CH,FR,UA,DE,HU,DE,AT,RO,DE,RO,UA,PL,DE,OM,NL,IE,AZ,NL,RU,DE,RU,SE,DE,RU,NL,LT,MK,NL,CZ,BE,TR,DE,ES,GB,ES,RU,DE,TR,IT,DK,GB,FR,RU,IT,AE,FR,US,NL,IR,US,CH,US,DE,GB,KZ,CZ,DE,GB,FR,DE,FR,GR,US,GR,KZ,FR,NL,TR,RS,IS,US,FR,NL,PL,GB,NL,FR,SE,PL,NO,NL,FR,IT,GB,IQ,FR,DE,FI,IT,ES,IT,UZ,KZ,US,RU,PT,RO,CZ,DE,FR,AU,ES,NL,ES,NL,IT,GB,DE,NL,GB,IT,UA,HU,ES,HU,IR,CH,DE,PL,US,CH,US,RU,NL,AT,NL,ES,RU,PL,IT,PL,IQ,ES,NL,SK,UA,IS,BG,GB,FR,RU,SG,RU,US,SY,IT,SY,RU,PL,HU,PL,ES,DE,TR,NL,TR,CY,TR,CZ,DK,DE,RU,FR,GB,RU,PL,SG,RU,PL,TR,GB,FR,GB,FR,US,HK,NL,DE,RU,GB,ES,FR,US,MU,HU,SE,US,PL,NL,UA,IR,DE,BE,IR,IT,IQ,US,EE,NL,CH,FR,AT,CH,EE,HK,US,UA,NL,DE,GB,CH,ES,FR,SK,IT,MK,PL,FR,DK,HR,UA,ES,US,GB,US,NO,RU,DE,GB,FR,DE,RU,TR,JE,IR,IL,KZ,PL,CY,FR,NL,DE,SE,DE,ES,NL,BY,RU,US,RU,EE,IR,US,SE,US,GB,IR,UA,AT,DE,IT,RU,BE,FR,GB,RU,AT,NL,HK,US,DE,US,RO,IR,BR,PL,SY,IT,PL,DE,ES,PL,GB,AU,GB,ES,FR,IS,RU,BH,US,GR,FR,IE,BG,AT,DE,BG,RU,CZ,AT,ES,DE,NL,BG,MX,CO,BR,GB,AT,SI,BE,US,CH,AT,DK,LB,RU,GB,UA,LI,CH,LI,FR,US,MO,PT,US,NL,BG,PL,ES,DE,IL,IR,GB,DE,AL,PL,CH,SC,PL,DE,NO,FR,BE,GB,IE,GB,HK,PL,GB,DE,TR,UA,ES,TR,IR,GB,DE,CH,DE,EG,DE,GB,NL,GB,ES,GB,UA,CH,DK,BA,DE,ES,PL,SG,NL,IE,DE,PL,BE,NL,HK,PL,AT,ES,DE,ES,DE,LT,RU,ES,TR,CH,NL,ES,UA,NL,DE,ES,UA,LV,GR,CH,UA,TR,ES,RU,RS,NO,RU,DE,JP,DE,NL,FR,BE,CH,GB,IR,DE,US,TR,BR,US,AT,FR,TR,IR,ES,NL,RO,PL,SA,PL,RU,DE,ES,IT,DE,IT,DE,IR,AT,GB,RU,NL,ES,GB,UA,US,FR,GB,SK,PL,ES,NL,PL,UA,PL,RU,AT,IR,NL,FR,IR,ES,IT,PL,US,PL,IT,DE,ES,NL,IE,NL,IE,AU,HK,BE,HK,AE,SE,CH,DK,RU,PL,RU,US,ES,DE,GB,HK,GB,BR,US,ES,PL,US,DE,RS,US,DE,IR,ES,AL,PL,IQ,DE,PL,UA,IL,GB,ES,PL,AE,IL,RU,IQ,ES,NL,DE,NL,ES,GB,DE,HK,RU,QA,IT,BE,IR,MQ,FR,GB,RU,BG,RU,RO,GB,ES,KZ,PK,PA,PY,PE,UZ,FI,ES,GB,NL,GB,IQ,UA,IT,GB,IT,BR,FI,FR,ES,GB,DE,BR,DE,CZ,SE,NL,ES,PL,DE,PL,ES,NZ,NL,FI,PT,GR,HU,NL,ES,DE,PL,IT,IQ,ES,GB,NL,US,FR,IS,ES,NL,DE,IR,AT,YE,IT,DE,SG,US,AT,ES,US,DE,US,ES,GB,PL,LT,RU,CZ,MT,GB,NL,DE,US,LU,FR,ES,CZ,US,PL,RO,CY,IL,BG,IR,BG,FR,NL,ES,NL,CH,FR,BG,IE,US,IE,BG,DK,GB,NO,SE,EC,SV,CO,US,GB,JP,US,CZ,DE,ES,US,EE,DE,CA,PT,US,RO,US,FR,IL,IE,KZ,TR,IT,DK,IT,IL,ES,DE,GB,HK,GB,DE,NL,TR,RU,JP,BE,BG,NL,JO,SA,IT,RU,ES,DE,TR,NL,CH,ES,IT,FR,TR,PL,NL,UA,DE,RU,FR,IT,ES,AE,SA,ES,IE,TR,FR,IT,US,DE,HK,DE,GB,SE,GB,IT,SE,RU,FR,NL,RU,PL,IT,FR,DE,GB,TH,CN,RS,NL,CY,CH,GB,CZ,GB,PL,IT,CZ,ES,GB,NL,PL,UA,JP,US,CZ,GB,FR,IT,RU,ES,UA,ES,AT,GB,LB,TL,IT,GB,ES,NL,SK,CH,NL,MT,CZ,DE,GR,KZ,NL,FR,BG,FR,ES,LV,US,DE,RU,PL,FR,PL,FR,NL,FR,NO,FI,PL,GB,CZ,TR,NL,BG,ES,TR,AT,IT,FR,IT,LV,US,IS,FR,SK,DE,CH,GB,SE,HR,DE,NO,PL,GB,PL,NL,GB,NL,SE,HK,IE,NO,US,NO,CN,ES,PL,CH,GR,MC,HK,DE,FR,DE,BE,ES,PL,NL,IT,JP,DE,IR,PL,DE,US,FR,DE,GB,CH,DE,IT,AE,US,RU,DE,NL,ES,US,PT,GB,AU,NL,DE,CH,FR,CZ,IQ,DE,ES,US,AT,IT,BR,IT,US,FR,CH,ES,CZ,NO,TR,AT,NL,IT,US,NO,US,DE,IT,LB,US,BG,GR,SE,NO,RU,DK,PL,DE,BG,HK,NL,US,NL,US,BG,PL,SE,RU,IN,GB,IT,IN,FK,FR,RU,NL,RS,BE,DE,BA,DE,PL,GB,IT,NL,US,NL,RU,NL,RU,BY,RU,IR,DE,NL,SG,HK,US,HU,FR,RU,DE,PL,RO,HR,US,IN,PL,EE,TH,US,RO,CH,TR,DE,NL,DE,RO,KZ,PL,ES,NL,PA,UA,BE,TR,RO,NL,RO,IQ,UA,FR,US,NL,RU,DE,UA,RU,IQ,RU,IT,CZ,DE,NL,DE,SY,HK,NO,FR,DE,AT,FR,PL,US,NL,MX,SE,DK,DE,LU,ES,IT,FR,TR,PL,MK,FI,LT,GB,CH,US,NL,PL,ES,PL,ES,DK,HR,DK,FR,NL,DE,RU,FR,DE,AM,ES,RU,FR,PL,DK,ES,RO,DE,AT,BG,NL,IT,GB,DK,AT,US,NL,FR,DE,DK,AU,GB,IT,GB,ES,FR,ES,RU,DE,NL,CH,IT,DE,IS,ES,BR,US,DE,RU,ES,PL,FR,DK,SE,ES,GB,NL,FR,DK,DE,GB,RO,VG,FR,US,BE,DE,IR,IT,ES,FR,AT,FR,NL,RU,IT,NL,GB,DE,GR,FR,GB,ES,SK,RU,ES,TM,SY,NO,FR,RU,IT,FR,ES,CH,NL,ES,DE,HK,RU,DE,RU,SE,BG,GB,NL,AT,CH,CZ,NL,RU,NL,DK,KZ,GR,BG,US,ES,RU,EE,NL,IS,RU,ES,CH,PL,US,CZ,FR,DE,UZ,SA,ES,IE,AU,US,DK,BE,NO,LI,NO,UZ,AR,LT,DE,ES,IL,AM,ES,CH,SE,PL,RU,NL,UA,ES,CZ,FR,IQ,DE,NL,IE,BG,FR,DE,CH,US,RU,US,SE,GB,DE,CH,RU,FR,QA,GE,NO,DK,FR,SE,FR,GB,NL,DE,GB,NO,ES,FR,GB,BE,FI,TR,RU,FI,RU,NL,DE,NL,MD,GR,ES,GB,IQ,ES,IT,RU,IT,RU,CH,GB,UA,IT,AT,SA,RO,IS,KR,US,KR,ES,SE,DE,BE,FR,PL,GB,FR,ES,TR,RU,ES,PL,TW,SE,RU,CH,IR,FR,FI,PT,DE,BE,UZ,FR,CY,SE,TR,IE,GB,NL,IT,ES,SE,JP,GB,SG,NL,TR,ES,RU,GB,TR,FR,NO,IS,ES,UA,RU,CH,ES,US,GB,RO,DE,IT,FR,NO,PL,DE,NL,SE,LU,NL,CH,UA,RS,CZ,AT,TW,HK,DE,CZ,RO,ES,US,FR,GB,US,IL,IT,NL,DE,US,NL,IT,GB,US,CA,GB,US,NL,US,SG,US,NO,IT,FR,ES,FR,GB,NL,FR,FI,ES,GB,UA,US,CH,ES,DE,GB,AT,ES,GB,ES,TR,IT,DE,BG,LB,ES,CZ,DE,GB,AT,US,DE,SG,RS,GB,AE,NL,FR,HU,ES,CY,DE,IT,KW,IQ,UA,US,DE,KZ,GB,ES,FR,CH,US,DE,TR,ES,GB,US,GB,US,LT,HK,TW,IM,SG,DE,PL,ES,US,CH,NL,FI,NO,TR,RU,MC,GB,SK,CZ,LU,UA,NL,NP,TR,KZ,GB,US,GB,TW,DE,RU,NL,RU,NL,CH,RU,IT,FR,CZ,ES,SA,DE,ES,GB,US,GB,CZ,RO,DE,FR,LV,LT,LV,DE,SA,RU,FI,NL,IT,MD,RU,UA,US,EE,IT,NL,IT,DE,CZ,FR,ES,GB,TR,ES,NL,BE,DE,TR,DE,US,FR,CZ,FR,DE,CH,RU,CZ,FR,TR,SK,DE,MK,NL,DE,FR,GB,AT,ES,CZ,IT,AT,LV,DE,US,RU,FR,VN,MY,IT,NL,IT,DE,RO,TR,NL,BY,NL,TR,KR,US,FI,DE,CH,IT,TR,FR,DE,ES,IT,US,IR,ES,PL,RU,ES,AT,DE,ES,BG,FI,US,SE,FI,US,SK,IT,ES,FR,IT,DE,NL,RU,NL,US,NL,FR,LI,NL,PH,DE,GB,DE,PL,BG,LI,ES,NO,PL,AT,ES,RU,GB,SC,US,TR,GB,US,NL,RU,GB,PL,US,ES,NL,ES,IT,BG,UA,IR,DE,AT,TR,ES,FR,IT,ES,RU,GB,DE,AT,NL,GB,IR,GR,CZ,UA,PL,LB,NL,LT,TR,FI,NL,SE,NL,FR,NL,ES,DE,FI,RU,DE,CZ,FR,GB,US,HK,BE,DE,US,ES,IN,US,NL,AE,PL,ES,MK,KZ,GB,NL,FR,CZ,SK,CZ,IR,FR,DE,AT,LT,SK,UA,TR,BR,US,DE,RO,SG,IE,HU,ES,RU,DE,US,DE,FR,CH,NL,RU,JE,BG,NL,RU,MD,PT,BE,RO,NL,KZ,FR,IQ,DE,AT,RU,IL,RU,GB,CL,DE,GB,RU,FR,RU,PL,CZ,NL,FI,IT,FR,RU,GB,FR,NL,AT,SE,LV,IT,PL,US,IL,UA,IL,IQ,IT,DK,GB,FR,NL,NO,GB,ES,RU,SE,US,DE,EE,JO,SA,TR,US,GB,FR,RU,US,GB,US,GB,ES,LT,ES,BG,AM,US,CY,MN,PL,IT,DE,GB,RU,HR,CH,IT,CH,NL,PL,UA,RU,NL,BE,ES,PL,IT,PL,GB,US,RO,DE,PL,FR,IQ,IE,DE,KR,PT,LU,ES,TR,LB,EE,LB,BG,NL,BG,NL,LT,NL,TR,GB,DE,US,RU,US,NL,GB,NL,GB,DE,CH,SE,IQ,GB,TR,DE,FR,DE,SY,DE,RS,CH,IT,SI,EE,CZ,DE,DK,SE,GB,AT,FR,GB,CH,ES,IE,IR,PL,IT,NL,HR,SY,PL,US,RU,UA,NL,IQ,ES,FR,RU,GR,PL,CH,IT,AT,TR,JP,DE,SK,HR,SG,NL,US,TR,MX,US,IN,US,HR,US,PL,BE,ES,NL,FR,IT,RU,CH,DE,SG,JP,AU,PL,IQ,NL,UA,DE,NL,BG,IT,DE,IR,AM,ES,BY,DE,FR,IR,TR,LT,MD,US,GB,DE,ES,GB,FR,US,NL,US,CZ,DE,UA,NG,GB,CH,FR,IN,CH,US,DE,RU,SA,DE,IT,FR,DK,PL,ES,US,NL,DK,GB,FR,GB,TR,RU,LV,GB,IT,DE,GB,US,SG,US,UA,ES,OM,IR,BG,FR,LB,US,PL,ME,GB,UA,CZ,FI,DE,PL,CO,AR,BR,AR,BO,AR,PY,AR,CL,AR,NI,DO,CO,CL,CO,BR,PE,BR,EC,PE,CO,PE,VE,PE,CO,EC,PE,CL,BR,CO,US,CO,PE,CO,HT,AR,CO,VE,BO,HN,AE,BZ,AE,BZ,AE,BZ,AE,BZ,CW,PY,CR,GF,BR,EC,CR,AR,EC,PA,CR,AR,CL,AR,DO,UY,CL,AR,PY,AR,PY,AR,PY,AR,VE,CR,PY,AR,CL,AR,VE,BR,MX,BR,CR,US,CR,VE,BO,CO,CR,NI,CR,SV,HN,CR,HN,SV,AR,DO,EC,AR,CL,AR,CL,EC,CO,EC,TT,EC,UY,AR,BR,AR,GT,CL,PE,CR,EC,AR,CL,AR,BZ,BR,AR,BR,AR,US,CL,EC,CL,EC,PA,NI,CL,CO,VE,MX,VE,PA,VE,CR,CO,MX,AR,AW,TT,AW,BR,HN,CO,AR,EC,CO,CL,AR,CO,DO,CO,AR,BO,AR,UY,AR,UY,AR,PY,AR,PY,AR,PY,AR,PY,AR,PY,AR,CO,CL,AR,DO,PA,AR,CO,AR,VE,PE,AR,CL,CR,AW,CW,AR,BR,AR,DO,GT,SV,GT,CR,GT,CR,GT,AR,CO,US,CO,CL,AR,PY,AR,PY,AR,PY,AR,CO,BQ,CO,PA,AR,CR,PE,VE,CO,CL,CR,AR,EC,US,SA,US,CA,US,CR,CL,CO,PA,SR,CO,AR,PY,AR,PY,AR,PY,AR,PY,AR,PY,AR,CO,VE,PA,AW,AR,CL,AW,GT,AR,HT,AR,US,DE,US,DE,US,CO,AW,CW,CL,CW,CO,AR,UY,AR,BR,MX,BR,CO,BR,AR,BO,TT,BR,MX,BR,CL,EC,BR,EC,BR,US,BR,US,BR,EC,_,BR,US,BR,US,BR,PE,BR,AR,BR,AR,BR,NL,BR,ES,BR,NL,BR,EC,CL,AR,BR,HN,BR,CR,BR,NZ,BR,EC,BR,AR,BR,MX,BR,AR,BR,MX,BR,DO,BR,CO,BR,PE,BR,CL,BR,MX,BR,CL,AR,BR,BO,MX,PE,BR,AR,BR,MX,BR,MX,AR,BR,CL,MX,BR,NZ,BR,MX,BR,MX,BR,MX,BR,MX,CL,MX,CO,PE,MX,BR,RU,PL,RU,EE,CA,UA,PS,KZ,RU,MD,IR,DE,RS,TR,GR,BE,HU,FR,IT,RU,AT,RO,ES,RO,GB,RU,PL,NL,DE,GB,DE,RU,DE,RU,HU,RO,HU,PT,TR,GB,DE,TR,US,NL,RU,LU,NL,RU,SG,NL,RU,NL,RU,NL,IN,LU,RU,SG,NL,US,SG,NL,SG,RU,US,NL,LU,RU,LU,RU,GB,LU,SG,HK,NL,US,LU,RU,SG,RU,NL,SG,NL,LU,NL,GB,RU,MK,RU,BE,RU,HU,AT,DE,PL,SA,TR,CH,FI,AZ,LV,DE,GB,DE,SI,GB,DE,BE,DE,GB,BE,PL,GB,PL,IT,ES,MY,US,RU,IT,RU,NL,GB,RU,GB,HK,JP,RU,DK,RU,BE,RU,HK,GB,DE,IL,AT,RU,FR,GB,BE,FR,DE,IT,RU,CN,ES,OM,GB,PL,RU,GB,RU,AT,BE,AT,IT,ES,GB,RU,GB,FR,RU,FI,DE,SE,UA,DE,AZ,NL,GB,FR,GB,FR,GB,NL,US,NL,DE,RU,BE,NL,RU,GB,EE,BE,NL,GB,DE,NL,DE,RS,RU,DE,SE,LB,FR,SE,GB,OM,FI,ES,IT,MY,RU,DE,FR,DE,NL,GB,JP,RU,GB,RU,PL,LT,KW,IQ,RU,IQ,RU,BG,RU,DE,RU,NL,FR,GL,RU,NL,SE,KZ,GB,KZ,FR,DE,IT,GB,RU,GB,NL,GB,US,UA,IE,RU,GB,RU,GB,IL,NL,LT,NL,RU,NL,IT,DE,NL,KZ,AZ,NL,FR,DE,RU,GR,DE,GB,US,IT,DE,CH,US,IT,US,FR,RO,US,RO,US,AT,RO,US,RO,CA,DE,IT,US,RO,US,RO,GB,US,CA,US,IT,IN,GB,US,FR,RO,US,DE,CH,RU,IR,CZ,RU,ES,PT,ES,NL,_,CZ,LV,RU,GB,FR,RO,FR,GB,SK,AT,DE,CZ,CH,NL,FR,LV,NO,GB,CZ,RU,DE,US,ES,DE,GB,CH,NL,EE,SE,RU,IT,RU,DE,GE,RU,CH,GB,RU,AL,US,MT,HU,BG,AL,SK,IE,FR,DE,FR,DE,FR,RU,ES,GB,FR,RU,NL,ES,BE,GE,NL,GE,BE,RU,RS,CZ,FR,UA,NL,ES,UA,RS,RU,GB,US,SE,TR,ES,DE,US,BE,PL,LU,GB,NO,PT,ES,US,HU,RU,DE,PT,MO,PT,RU,AT,FR,ES,GB,DE,RU,GB,RU,ES,FI,GB,IT,US,RU,DE,GB,DE,IT,GB,HU,IT,KZ,RU,CH,NL,IR,CH,NL,FR,IT,FR,RU,NO,RU,CZ,GB,DE,IT,PL,SE,GB,NL,BE,CZ,ES,DE,FI,LT,NO,SI,DE,RU,IT,GB,HR,IR,GB,NL,RU,UA,CZ,KZ,NL,RU,ES,CZ,GB,NL,IT,BE,ES,SK,IT,SA,NL,RS,RU,GB,EE,ES,SE,DE,NO,ES,DE,PL,SK,LV,RU,NO,RU,UZ,RU,PL,US,IT,US,IT,US,ES,US,ES,GB,FR,DK,RU,UA,SE,LU,MQ,UA,AM,IL,BE,CA,JP,IT,DE,US,CZ,US,KZ,NL,HK,NL,AE,IT,PL,DK,NL,PL,DK,PL,GB,DE,JE,NL,GB,DE,US,DE,US,GB,IT,FR,IT,CZ,RU,BH,FI,SE,FI,SE,FI,SA,PL,GR,AT,MK,AT,MK,GR,AT,MK,GR,AT,GR,AT,GR,DE,BE,IR,DE,AT,TR,RU,CH,ES,UA,NO,DE,GB,DE,CZ,US,GB,NL,ES,TR,NL,US,RU,DE,CZ,PL,RU,GB,RO,GB,DE,GB,PL,GB,CH,RO,DE,RO,GB,US,RO,US,RO,IT,US,IT,US,GB,ES,NO,CH,SA,SK,NL,TR,NL,RU,DK,RS,IL,SE,CZ,RU,PL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,FR,DE,FR,DE,NL,SE,IR,SK,GE,FR,BE,FR,NL,PL,GB,RU,DE,NL,PL,RU,NL,IR,SE,RU,CZ,RU,FI,RU,FR,SK,GE,JO,PL,RU,TR,RU,CZ,DE,BG,RU,NO,PL,BA,UA,KZ,RU,KZ,UA,HR,PL,IE,CH,IE,CH,IE,CH,IE,GB,NL,DE,IT,PL,TR,NZ,PT,PL,BG,FR,BG,FR,RU,SE,FI,SE,DK,SE,NL,ES,DE,NO,SE,PL,KZ,GB,BA,HU,ES,FI,RU,CZ,RU,ES,RU,PL,HR,GE,FR,RU,KZ,RU,CZ,RU,CZ,RU,KZ,RU,UZ,RU,CY,RU,KZ,RU,BY,RU,KZ,RU,UA,MD,GB,ES,RU,ES,RU,CZ,RU,CY,AU,HK,JP,HK,CZ,RU,KZ,RU,KZ,RU,KZ,ES,RU,KZ,RU,ES,RU,MD,CN,SA,TR,SY,RU,CZ,OM,US,DE,IR,DE,PL,BH,FR,DE,FR,DE,FR,MD,SA,SY,PT,OM,IE,FR,NL,HU,RU,DE,PL,SE,IT,CH,HU,IR,SI,SY,PS,RU,UA,GB,ZW,GB,ZA,GB,ZA,GB,IE,GB,ZA,GB,IE,ZA,GB,ZA,TZ,KE,GB,KE,TZ,GB,KE,GB,KE,GB,TZ,GB,KE,GB,KE,GB,IQ,TR,GB,TR,IQ,TR,GB,SY,GB,IQ,LY,IQ,GB,TR,GB,DE,GB,TR,GB,IT,RU,PL,PA,AM,PA,HK,AM,MY,RU,ES,GR,RU,AL,GB,DE,PL,NL,FR,GB,FR,PL,DE,FR,NL,GB,NL,GB,DE,GB,SG,DE,SG,NL,SG,SK,RU,GE,RU,ES,MT,AL,DE,IE,GB,DK,AT,NL,GB,ES,MX,HK,JP,SG,AT,TW,AU,KR,HK,CA,US,BR,ZA,IT,NL,AT,CA,NL,NO,DE,AT,DE,AT,BR,DE,AT,CH,AT,BR,FR,AT,IL,BE,DE,US,PE,AT,RO,AE,RO,DE,CZ,DK,CH,RU,BE,SE,CN,FR,DK,MD,CZ,IT,CH,ES,UA,RU,SK,GB,CH,NL,RU,GB,ES,RU,UA,RU,UA,RU,UA,NL,US,IT,GB,UA,RU,FR,US,PT,US,DE,IN,DE,SE,US,DE,RU,DE,CZ,GB,FR,UA,IL,UA,GB,RU,IR,RU,PL,MD,PL,IL,UA,RU,RO,US,DE,SI,NL,ES,IT,TR,IT,ES,RO,LU,GB,BE,GB,ES,US,GB,IR,MD,ES,RO,PH,BA,MD,DE,US,RO,ES,MD,DE,RO,MD,RO,IL,RO,DE,RO,US,IN,US,PT,IR,MD,NL,FR,IR,MD,IR,PL,ES,CA,GB,CA,IR,NL,IR,IT,RO,ES,IR,GB,CA,GB,US,KR,US,NL,US,BR,US,IR,IN,AU,DE,IR,PS,RO,NL,RO,MD,YE,DE,IR,RO,BE,NL,US,IR,GB,ES,PL,RO,IR,GB,RO,IT,MD,RO,GB,IL,IR,PL,US,KR,RO,ES,RO,IR,GB,RO,GB,NL,IT,BE,NL,IR,RO,ES,RO,CA,RO,ES,SE,IT,GB,FR,US,MD,IE,RO,VN,MD,ES,BE,ES,IR,ES,MD,ES,GB,ES,RO,US,CA,MD,IR,RO,DE,SE,US,RO,NL,BE,GB,PK,GB,NL,RO,DE,GB,RO,PL,US,IR,RO,IT,GB,NZ,RO,NL,TH,IR,RO,IR,RO,GB,RO,CY,RO,ES,GB,RO,AE,RO,ES,IT,RO,DE,RO,DE,ES,FR,DE,RO,TR,DE,MD,IT,RO,MD,FR,IR,ES,GB,NL,IR,CH,RO,GB,FR,IR,IT,IR,RO,NL,US,GB,RO,GB,IR,PL,RO,GB,DE,RO,HK,ES,MD,NL,AT,RO,CZ,MD,ES,FR,RO,NL,MD,US,IT,IR,GB,DE,PL,US,FR,RO,NL,GB,IT,RO,NL,ES,RO,GB,IM,MD,MY,GB,FR,IT,IR,RO,GB,RO,AU,US,GB,IR,FR,RO,TW,DE,SK,GE,GB,RO,ES,IR,EG,RO,PH,RO,GR,LT,MD,ES,RO,US,MD,ES,RO,ES,VN,RO,ES,RO,MA,ZA,PT,IR,PT,ES,SI,RO,IT,RO,MD,NL,RO,ES,RO,IR,ES,RO,DE,MD,SG,US,ES,RO,NL,RO,US,IT,ES,US,GB,CZ,IT,IR,GB,RS,NG,CY,PS,TH,PS,RO,GB,RO,IT,RO,ES,PL,IT,IE,NL,RO,NL,RO,GB,US,RO,IT,NL,FR,LU,ES,PL,DK,DE,IR,GB,RO,IT,US,ES,PS,ES,RO,US,IR,RO,IR,ES,RS,NL,BE,ES,RO,KH,MD,IR,RO,IT,IE,RO,MD,IT,GB,FR,SA,RU,PL,RU,KZ,RU,PL,RU,PS,IL,PS,IL,RU,NL,RU,US,DE,US,RU,NL,RU,DE,NL,RU,ES,GB,GE,US,CH,NL,AZ,HU,PS,GB,EE,DK,IT,IR,SY,UA,SI,FR,UA,RU,KW,MD,FI,SG,UA,ES,CH,NL,ES,DE,NL,UA,RO,CZ,RO,US,RO,LA,RO,NL,DE,FR,TR,RO,SE,RO,NL,FR,CA,US,CA,ES,DE,IT,ES,IT,TR,RO,US,GB,FR,NL,GB,CH,GB,RO,CH,GB,NL,GB,PL,NL,FR,ES,RO,GB,RS,RO,NO,BE,YE,ES,SE,GB,ES,IR,GB,RO,RS,RO,ES,IT,SI,RO,TW,IR,RO,FR,MM,DO,RO,SE,AU,IT,MX,RO,MX,ES,RO,ES,RO,IR,US,RO,IT,RO,GB,RO,GB,RO,GB,US,RO,GG,RO,GB,PL,AD,PL,RO,GB,RO,GB,RO,GB,ES,IN,RO,ES,RO,SE,ES,TR,RO,GB,CN,GB,AD,FR,AE,RO,SI,NL,RO,ES,RO,GB,RO,MX,RO,CH,RO,TR,AT,RO,DE,TR,RO,IT,RO,GB,AU,GB,NL,RO,IT,RO,GB,RO,US,SE,CA,US,IE,US,RO,NZ,RO,IT,DE,RO,IT,DE,NL,RO,SE,US,RO,GB,RO,NL,RO,KZ,RO,IN,VN,RO,GB,RO,MX,RO,NL,US,DE,IT,RO,RU,MD,RU,CZ,DK,ES,US,DE,FR,AE,SI,PL,KZ,TR,CH,UA,US,GB,DE,NL,KG,US,RU,DE,RS,BA,CZ,SK,CZ,PL,RU,GB,RU,KZ,SY,RU,JO,UA,RO,ES,RO,ES,KZ,RO,SA,PT,PL,HR,TW,IR,SG,TW,US,JP,IR,NP,AU,AZ,RU,BG,RU,RS,ME,RS,HR,RS,HR,RS,HR,RS,HR,RS,US,RS,HR,RS,HR,RS,BR,HK,BR,AR,BR,ES,BR,BO,SG,BR,MX,BR,AR,BR,CO,BR,MX,BR,_,PE,BR,_,BR,SV,GT,SV,BR,MX,CO,BR,MX,BR,AR,BR,NZ,BR,NZ,BR,MX,BR,MX,BR,MX,BR,CL,BR,CL,BR,VE,BR,MX,BR,MX,BR,MX,BR,MX,CO,DO,AR,UY,AR,DE,AR,DE,AR,DE,AR,GT,CR,AR,CO,BO,AR,PE,US,PE,US,PE,BR,PE,US,PE,AR,CO,AR,BR,AR,CL,AR,NL,CW,PY,CO,CR,PA,AR,BR,CL,BO,CO,HN,GT,HN,GT,HN,GT,HN,GT,HN,GT,HN,GT,HN,GT,HN,GT,HN,GT,HN,GT,HN,BQ,CL,CR,CL,AR,CW,CL,AR,CL,HN,SV,AR,CO,BR,CR,AR,PA,VE,CU,AR,CL,DO,CO,HN,AR,TT,AR,CO,CL,CO,CR,BR,CR,AR,CL,AR,BR,DO,AR,CL,PE,BR,VE,BR,CO,EC,AR,CO,AR,PA,MX,CL,BR,AR,BR,MX,BR,CR,BR,VE,EC,CO,CR,EC,AR,BO,AR,BR,HN,EC,PE,EC,PE,AR,BR,MX,EC,BR,AR,CL,AR,DO,AW,CO,CL,US,CL,CO,AR,CO,AR,CL,CW,CL,CO,AR,GT,PA,AR,PA,AR,CL,BO,GT,AR,CR,AR,PA,CO,BR,KY,BS,HN,AR,BR,EC,CU,EC,VE,AR,CL,PY,CO,AR,PA,VE,PE,CL,AR,CO,AR,BO,AR,BR,AR,VE,CR,PE,PY,EC,AR,DO,SV,NI,SV,NI,HN,SV,HN,CL,AR,GT,SV,PA,CR,SV,EC,AR,TT,CO,PA,CO,PA,CO,PA,MX,PA,CO,PA,CO,PE,CO,PA,PE,CO,AR,CO,GT,CO,GT,CO,US,CO,MX,SV,CR,HN,SV,EC,CO,CR,CO,HN,EC,GT,PE,CR,AR,CO,CL,CO,GT,CO,PA,CO,HN,NI,PA,CR,PA,CR,GT,CO,GT,CR,SV,HN,NI,PA,CO,AR,CO,AR,CO,AR,CO,AR,CO,AR,CO,SV,EC,UY,CO,VE,GY,DO,PE,CL,BR,HN,BR,GT,EC,BR,PE,BR,AR,BR,AR,CO,MX,BR,EC,BR,PY,HN,GT,BR,CL,TT,CO,SV,CW,BR,PE,VE,GT,BR,DO,CL,EC,BR,EC,BR,AR,BR,AR,BR,CO,PE,CO,AR,CO,CL,CO,CL,HN,AR,CU,US,SG,HK,TT,BR,GY,AR,VE,AR,BR,US,BR,BZ,BR,BZ,US,BZ,AU,US,BZ,BR,BZ,CO,BZ,NL,BZ,GY,TT,CO,CR,PY,BR,PY,DO,AR,CL,US,DO,EC,AR,VE,CL,EC,CL,EC,AR,CO,AR,CO,TT,BQ,AR,CO,PA,CL,HN,CO,VE,SR,PA,NL,BR,AR,BR,NI,BR,CO,AR,CN,AR,HK,AR,US,BR,AR,CL,BR,AR,BR,AR,BR,AR,CL,HN,SV,AR,EC,BZ,US,MX,CL,BO,UY,AR,GT,CR,CO,CL,SX,MX,BR,PA,HT,US,CA,US,CA,US,GB,HK,US,CA,US,CO,PE,CO,CL,AR,VE,BO,AR,CO,EC,CO,PE,CO,AR,BR,AR,US,MX,DO,US,PY,BR,AR,EC,AR,BO,AR,AW,CW,GT,PY,AR,HN,AR,PA,GY,AR,PA,HT,AR,NL,CW,BR,AR,CO,AR,CL,PE,NI,AR,NI,CR,AR,BR,AR,DO,AR,MX,AR,GB,AU,IT,GT,PA,BR,BO,CU,CO,BO,EC,BR,AR,HN,BR,AR,CL,PE,AR,BR,NI,AR,CL,EC,AR,BQ,UY,AR,EC,CR,CO,PE,BR,CL,AR,GY,AR,CR,AR,CO,AR,CO,AR,BR,AR,BR,EC,AR,CO,HN,BO,MX,DO,EC,CO,PE,CL,AR,CL,AR,EC,AR,PY,CR,AR,GT,NI,AR,EC,BR,AR,VE,AR,BR,AR,BR,BO,BR,US,BR,AR,BO,BR,AR,US,AR,CL,UY,AR,BR,AR,BR,MX,BR,PY,BR,AR,US,AR,US,AR,US,BR,PY,AR,CR,CW,CL,AR,DO,BR,AR,MX,AR,BR,AR,VE,DO,CR,GT,PY,CR,AR,PE,AR,BR,CL,CR,PA,VE,UY,PA,BO,AR,PA,PE,CR,PA,CL,AR,PY,AR,VE,PE,CL,GT,BZ,AE,BZ,AE,NL,AE,BZ,AE,BZ,AR,BR,AR,HT,BR,CR,AR,BR,CO,PE,SV,BR,AR,EC,AR,CO,AR,CL,AR,HT,BR,CO,PE,CL,CO,BR,CR,AR,VE,CL,CO,PY,AR,GT,GB,CW,NL,AE,FR,BE,GB,NL,DE,VE,GB,NL,GB,NL,GB,NL,CW,NL,AR,DO,AR,PA,CH,PA,SV,AR,GT,PA,AR,VE,AR,ES,BR,MX,BR,MX,CR,BR,US,SX,BQ,NL,CW,HN,EC,MX,PA,EC,BR,VE,BR,DO,AR,MX,CR,AR,VE,BR,US,PA,AR,HN,CL,VE,NI,CO,US,CL,BR,AR,DO,CO,AR,HN,AR,BR,AR,SX,GY,AR,BR,CR,BR,CO,PY,BO,HN,CO,EC,CO,CW,CO,UY,AR,UY,AR,PA,VE,CO,GT,NI,CO,GT,CR,GT,CR,GT,CR,GT,SV,CL,GT,MX,PE,AR,BR,CA,US,AR,CO,AR,SV,CO,EC,VE,CL,EC,CO,CL,CO,DO,VE,CR,CL,MX,BR,CO,EC,BR,DO,BR,CR,CL,BO,AR,BO,BR,IE,BR,AR,BR,CL,BO,AR,NI,HN,CO,AR,NI,CO,AR,CR,CO,AR,BR,AR,CW,SX,BR,AR,CA,US,HN,AR,BO,PE,CO,AR,CL,HT,CL,AR,BR,AR,BZ,AR,VE,CL,AR,CL,AR,CR,AR,HN,CO,NL,BZ,US,PR,AR,CL,US,CL,DO,AR,BO,PY,AR,CL,CH,NI,TT,EC,CL,AR,EC,PE,CO,CL,CO,PE,CO,EC,VE,CO,CL,CO,AR,CO,AR,CO,PA,CR,TT,CR,PA,CR,PA,CL,PA,AR,PY,AR,PY,AR,PY,AR,PY,AR,PE,AR,PE,CO,CR,CO,CR,CO,PA,CO,PA,CO,PA,CO,HN,GT,PA,CO,BZ,CO,GT,CO,GT,CO,PA,CO,CR,CO,GT,CO,DO,CO,EC,CO,SV,CO,DO,CR,CO,PA,DO,CO,PA,GT,SV,CO,SV,CR,CO,SV,CO,PE,CO,GT,CO,AR,CO,BR,US,BR,AR,BR,CL,BR,JP,BR,AR,PE,BR,MX,BR,CO,AR,BR,CO,DE,NL,BR,AE,BR,AE,BE,BR,IT,BR,US,BR,US,DE,US,BR,AU,BR,US,BR,US,BR,US,BR,DE,US,BR,DE,US,CA,US,BE,JP,GB,US,GB,US,GB,NL,US,NL,US,SG,US,BE,DE,US,NL,US,BE,US,BE,BR,NL,BR,US,BR,US,BR,US,BR,BE,GB,BE,TR,US,TH,DE,BR,NL,GB,BR,US,GB,US,GB,DE,GB,IN,US,DE,TH,US,GB,DE,TR,AE,GB,US,NL,SE,IL,US,SE,US,JP,DE,US,BR,GB,BR,GB,DE,BR,US,MX,BR,DE,US,GB,US,BR,US,BR,NL,BR,IN,CL,DO,US,GB,NL,BR,US,BE,IT,BE,US,BR,US,FR,BR,US,DE,CL,US,AU,GB,MX,US,DE,US,CL,US,GB,PA,GB,US,SE,US,GB,IT,US,AU,CA,PA,BR,US,BR,US,SE,IL,US,VE,US,CA,US,HK,US,NL,US,BR,DE,BR,DE,SE,US,CO,VE,PE,AR,PE,EC,AR,BZ,DO,AR,PE,BR,DO,AR,PY,AR,CO,PE,GT,PA,CL,DO,AR,NI,BR,NI,EC,US,LT,SG,US,KR,US,DE,BR,SG,US,GB,ID,SE,GB,US,FR,US,GB,US,ES,AU,DO,DE,PA,US,CL,US,DE,BR,NL,CL,DO,GB,IT,US,BR,DO,KR,DE,KR,DE,BR,DE,BR,US,GB,DE,IQ,DE,BE,DE,PA,DE,US,DE,US,DE,US,DE,US,DE,FR,US,BR,US,GB,BR,DE,BR,FR,AU,FR,BR,SE,BR,US,DE,US,FR,US,DE,FR,US,AU,SE,DE,GB,US,DE,US,FR,DE,US,SE,JP,US,IT,SG,ZA,GB,US,ES,US,BR,SG,US,DE,FR,DE,US,GB,CL,US,FR,GB,AU,TH,GB,FR,US,DE,US,SG,IN,US,FR,US,SG,NL,US,BR,US,IL,US,DE,SG,FR,US,IE,SG,CL,US,CO,AR,CL,CR,AR,NI,CR,CO,US,CA,US,CO,DO,AR,HN,AR,NI,CO,CL,BR,CL,BR,CO,BR,JP,BR,NL,BR,US,BR,US,HK,BR,HK,US,BR,US,BR,US,BR,IE,BR,IE,BR,IE,US,IE,BR,IE,BR,IE,BR,NL,JP,BR,HK,BR,JP,BR,US,SG,AU,JP,BR,US,BR,JP,BR,IE,BR,US,BR,US,AU,JP,BR,AU,BR,NL,BR,IE,US,BR,BO,BR,AR,BR,_,US,KY,US,CA,US,GB,FR,GB,US,GB,US,SE,US,SE,US,FR,US,FR,US,KR,US,CA,IT,US,FR,US,CA,DE,US,AT,US,CA,US,JP,US,GB,_,US,GB,US,GB,US,AU,US,FI,US,MY,AU,HK,MY,SG,US,JP,IN,US,IN,US,IN,US,IN,US,IN,SG,IN,US,AU,US,CA,GB,US,CA,US,IT,US,NL,US,CA,US,GB,US,AU,IT,US,DE,US,FR,US,CA,GB,US,IN,CI,AO,BR,BF,MA,CL,US,CA,US,CA,US,IT,US,CA,US,CH,US,_,US,GB,PT,US,SE,US,CH,US,_,US,IR,US,BE,US,HK,US,GB,SG,IN,US,HK,JP,US,PT,US,CO,DE,RO,GB,SA,GB,US,BR,US,CO,US,SE,DE,SE,CH,US,JP,AU,US,NL,US,CA,US,CA,US,GB,US,DE,US,SG,US,JP,US,SG,US,CA,US,NL,US,CA,US,SG,US,SG,US,CA,US,PR,US,CA,US,CH,GB,CH,US,JP,US,JP,US,JP,US,FI,BD,FI,US,FI,US,NL,DE,US,CA,US,_,AU,PT,AU,US,GB,CA,PT,AT,PT,US,AU,GB,US,CA,US,CA,US,KR,US,JP,IN,US,CH,US,CH,US,CA,US,CA,US,CA,US,SA,BR,US,BR,US,BR,AU,US,AU,US,AU,US,AU,IN,US,CH,US,NL,US,NL,AU,US,AU,SA,US,SA,US,JP,US,JP,US,ZA,GB,BR,US,GB,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,AI,US,IL,CA,US,CA,US,BZ,US,CA,US,CA,US,CA,US,CA,US,DE,US,BE,US,GB,FR,US,GB,US,BE,US,_,US,CA,US,GB,US,DE,US,JP,US,NL,US,CA,US,CA,US,_,US,_,JP,US,FR,US,JP,US,_,US,CA,US,NL,US,CA,FR,US,ZA,US,FR,GB,US,_,US,MX,ES,GB,HK,US,NL,US,CH,US,FR,US,CH,US,GB,NL,US,JP,US,FR,US,FR,ES,FR,CA,_,FR,US,FR,US,CH,US,NL,US,DE,US,_,US,GB,US,CA,US,GB,US,CA,US,CA,US,CA,US,CA,US,SE,US,NL,US,CA,US,FI,US,CA,US,CA,US,_,US,IN,US,DE,US,_,US,DE,US,DE,US,GB,US,GB,US,NL,US,GB,US,CA,US,IT,US,DE,US,GB,US,NL,US,GB,US,ES,BR,IE,US,DE,US,AT,US,PT,NL,AU,US,SE,DK,SE,IT,SE,LV,SE,FR,SE,LT,SE,CH,DK,US,KR,US,CA,US,NL,US,HR,FI,US,NL,GB,CA,US,BM,SC,DK,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,FI,US,CA,US,CA,US,GB,CH,US,NL,CH,AU,DE,CA,CH,US,TH,US,JP,US,CA,US,_,US,AU,US,GB,US,FR,US,IT,US,DE,US,DE,US,CA,US,CH,US,AU,GB,CA,US,AU,DE,US,CA,US,CA,US,_,GB,US,CA,US,SE,US,ZA,GB,US,FR,JP,US,NL,US,DE,US,AU,US,CH,CA,US,CA,US,_,US,_,US,DE,US,_,SE,US,_,US,_,US,AU,CA,US,CH,US,_,US,_,US,AU,NL,US,NL,US,CA,US,AU,US,GB,US,AU,US,DE,FR,US,FR,DE,US,SE,US,CA,US,IN,US,AU,CA,SG,DE,US,CA,US,JP,_,JP,CI,JP,US,CH,US,CA,US,CA,US,DE,US,DE,US,AU,US,PR,US,CA,US,DE,US,CA,US,DE,US,DE,US,AU,US,ZA,US,FI,JP,NO,JP,US,JP,_,JP,CN,JP,US,JP,CI,JP,_,JP,_,JP,DE,US,AU,US,CA,US,JP,US,NL,US,DE,GB,US,AU,US,_,US,_,US,AU,US,NL,US,DZ,US,CA,US,GB,FR,US,BE,US,GB,US,DE,CH,US,SG,CA,US,FI,US,AU,US,SG,US,DE,GB,DE,US,RS,CH,NL,GB,DE,RU,DE,US,DE,AU,US,DE,US,DK,CA,CH,US,DE,US,NZ,US,CH,US,AU,US,AU,US,DE,US,FR,RU,FR,IL,FR,PL,DE,US,SE,US,CA,US,GB,US,_,US,_,US,DE,US,SG,TH,US,CN,US,CN,US,DE,US,DE,US,AU,_,US,IT,US,NL,US,PL,_,US,AU,US,NL,US,JP,US,NL,CA,US,GB,US,DE,US,_,US,IE,CA,US,DE,AU,US,CA,US,_,US,GB,US,AU,_,US,CA,US,AU,US,_,US,DE,_,US,FR,US,DE,US,IL,US,GB,US,IL,US,CA,US,JP,US,LU,AE,FI,BG,US,FI,US,_,US,CA,US,_,US,_,US,_,US,VC,LC,US,SE,_,US,CA,US,IT,US,NL,US,CA,US,CA,US,_,US,_,AT,US,CA,US,CA,FR,US,CA,US,BE,US,AG,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,_,US,DE,US,NL,US,AU,CH,US,NL,US,AU,IT,GB,US,_,DE,US,GB,US,VE,GB,US,BB,US,VI,US,PR,US,AU,CH,US,AU,US,GB,US,CA,US,_,US,AU,US,DK,US,_,US,IE,GB,US,CA,US,AU,US,AR,US,_,US,GB,US,GB,US,CA,US,GB,US,GB,US,GB,CA,US,DE,US,SE,US,DE,US,PT,US,ES,US,AU,_,US,GB,US,GB,US,GB,US,GB,US,DE,_,US,DE,AU,US,DE,GB,DE,US,_,DE,US,NL,US,GB,US,AU,US,_,GR,CA,US,CA,DE,AT,DE,US,GB,US,AU,US,NL,PL,US,CA,US,NO,US,_,US,CA,AU,US,NL,CA,TN,_,US,GB,US,CA,US,DE,GB,_,US,GB,US,IT,US,_,US,NL,US,CA,CO,PT,US,CA,US,PT,US,DE,PT,US,PT,US,PT,US,CA,NL,US,JP,NL,US,DE,US,CA,US,CA,US,BE,US,CA,US,CA,US,CA,US,CA,US,CA,AU,US,CA,US,DE,US,CA,US,_,FR,US,FR,BE,FR,US,TR,AU,IT,US,DE,US,DE,US,CA,US,AU,US,CA,US,_,US,DE,RU,ZA,CI,US,_,US,_,US,AU,CA,US,CA,US,ZA,US,GB,US,SE,IT,IL,SE,NL,SE,FI,SE,GR,SE,IT,SE,IM,SE,ES,SE,IS,SE,CA,SE,AT,SE,SI,IT,SE,AT,SE,BE,SE,US,TW,US,CA,US,CA,US,_,US,GB,NZ,AU,US,_,US,DE,CH,US,AU,US,BE,US,GB,US,AU,US,CA,PE,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,CA,US,CA,PR,US,CA,US,_,US,CA,US,CA,US,CA,CI,CA,US,CA,US,GB,US,AU,DE,_,DE,GB,NL,DE,NL,DE,NL,DE,NL,JP,IE,DE,GB,DE,US,DE,US,DE,PT,AT,DE,US,_,US,_,US,_,US,CH,US,_,US,CA,US,DE,US,FI,US,GB,US,ES,US,_,US,IT,CA,US,CA,US,DE,US,AT,US,DE,US,BE,US,DE,US,AU,US,DE,US,DE,US,CA,US,CA,US,PT,US,CL,US,CH,US,GB,US,DE,US,CA,US,CA,US,CA,US,BR,US,CA,US,CA,US,BE,US,GB,US,CA,US,CA,VI,US,CA,US,_,NO,US,DE,PR,FI,US,FI,US,CA,US,CA,US,FI,US,IT,SE,US,CA,US,NL,CA,US,DE,US,GB,US,PH,MY,MN,US,MN,US,CA,US,CA,US,GB,US,GB,US,PT,CA,_,US,AU,US,ZA,AU,US,CA,US,GB,US,AT,US,AU,US,PT,US,IT,MY,US,_,US,DE,US,FI,CA,GB,US,_,US,AU,_,NL,CA,_,US,CA,US,_,US,FR,US,PL,TW,US,AU,US,GB,US,GB,US,BR,ZA,_,GB,_,US,CH,AU,US,DE,US,AU,US,AU,US,CA,US,GB,US,JP,US,MX,PT,US,PT,US,AT,US,NL,US,NO,US,_,US,PT,US,_,US,GB,US,IT,US,AU,SI,HR,SI,HR,SI,HR,SI,US,SI,HR,SI,HR,SI,US,IT,US,CH,US,GB,US,FI,US,GB,US,_,DE,AT,US,HU,AU,US,CA,AU,US,_,US,ZA,DE,US,_,US,DE,US,DE,US,DE,US,CA,US,RU,_,US,PL,US,GB,US,IL,US,GB,US,CA,US,IL,US,NL,GB,US,_,US,_,GB,US,GB,PT,US,DE,US,_,CH,FR,US,GB,US,SE,US,NL,US,CH,US,DE,US,_,AU,US,GB,US,PT,US,AT,US,_,US,GB,NZ,FI,US,DE,_,US,_,US,DE,US,GB,_,US,PT,US,GB,US,GB,US,GB,US,_,US,AU,US,NZ,US,IT,US,PL,US,GB,DE,US,PT,US,FI,US,DE,US,DE,US,DE,US,JP,US,LU,US,PT,US,_,US,AU,RU,US,NO,US,GB,US,GB,CI,GB,US,CA,GB,US,AU,SE,US,CH,US,BR,US,_,US,FI,US,NL,US,FR,US,IE,US,IT,US,NL,GB,US,FI,US,AT,IT,NL,CH,BG,BE,NL,PT,NL,PT,NL,AT,CH,US,AT,PT,CO,GR,US,PR,US,BR,US,NO,US,DK,US,CA,JP,FR,BE,FR,US,GB,FR,US,PT,US,AT,US,JP,US,AU,US,CA,US,CA,US,AT,GB,US,ZA,AU,US,GR,US,DE,US,GB,US,GB,US,GB,US,BN,US,CA,US,DK,ES,US,NZ,US,GB,US,HK,FR,_,US,_,US,AU,ZA,US,IT,US,_,RU,US,AT,AU,US,RU,US,GB,NZ,US,_,AT,ZA,US,_,US,ZA,US,CA,US,CA,US,CA,US,FR,IN,US,CA,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,CA,ZA,US,ZA,_,BL,ZA,_,ZA,_,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,CA,US,FI,JP,FI,EE,FI,LU,US,CA,US,ZA,KR,US,_,US,FR,US,_,AT,US,GB,NZ,US,GB,US,NO,US,FR,US,TH,GB,US,_,US,CA,US,DE,GB,US,CA,GB,US,SG,GB,SG,US,GB,US,GB,MX,AR,MX,BR,MX,HN,MX,BR,MX,CR,MX,AR,MX,CO,MX,EC,MX,BR,MX,BR,MX,BR,MX,BR,MX,BR,AR,US,_,ES,US,RU,US,ES,US,GB,US,NZ,US,DE,US,GB,US,KR,US,DE,US,NL,JP,SG,US,NL,BR,_,US,NL,US,PT,US,AU,US,GB,US,EG,US,CA,US,ES,PR,BE,US,CH,_,US,DE,US,_,US,FI,US,DE,US,BE,US,AU,US,AT,US,UA,GB,ZA,US,CA,US,AT,FI,VI,TH,PE,US,DE,US,NZ,US,CH,US,DE,US,CN,SG,US,GB,US,FR,PL,US,GB,RU,US,AU,US,AU,US,CA,US,LU,US,FR,US,AE,US,GR,US,DE,US,DE,GB,DE,US,_,US,_,US,FI,CA,US,_,US,_,US,GB,US,PT,US,CA,US,_,US,KR,US,IT,US,GB,US,PT,CA,US,_,CH,US,AU,US,PT,US,GB,US,NL,NO,US,CH,US,DE,US,_,US,GB,US,NL,US,NL,US,GR,US,IE,FR,US,BE,US,JP,US,_,US,GB,US,FR,_,JP,DK,US,CH,_,US,NZ,US,RU,US,CA,US,FI,US,BE,US,GB,US,IT,US,GB,US,GB,_,US,AU,NZ,GB,US,_,US,IT,AU,US,NI,US,IE,PR,_,NZ,NO,US,PT,DE,AT,GB,US,CA,DE,CA,US,CA,US,AU,US,GB,US,NZ,US,GB,US,GR,GB,US,SE,US,FI,AT,US,DE,US,_,US,DE,US,DE,US,AU,NO,US,SE,US,_,GR,FR,GB,AT,US,SK,US,CZ,SK,US,SE,US,TH,US,CH,US,AT,US,DE,US,DE,GB,DE,GB,DE,GB,DE,GB,DE,CH,DE,CH,DE,US,DE,US,DE,CH,DE,US,DE,PL,DE,RU,US,DE,RU,US,RU,DE,_,US,DE,IT,DE,IT,DE,NL,CA,DE,IT,DE,IT,DE,PL,DE,BG,FR,HK,ZA,US,GB,BR,FR,NL,DE,RU,DE,RU,DE,BG,KR,DE,RU,BE,US,_,DE,RU,DE,AL,DE,RU,DE,AL,DE,AL,DE,RU,DE,US,JP,DE,JP,DE,PL,ZA,RU,PL,DE,RU,DE,RU,DE,RU,DE,US,CA,US,_,US,AU,NO,US,IE,US,CZ,US,DE,CH,US,GB,US,CA,US,CA,US,GB,PT,NZ,CH,AT,AU,US,NO,US,DE,CA,US,CA,US,GB,US,BR,US,AT,US,_,US,CA,PT,US,PT,US,GB,US,AT,US,_,US,ES,US,GB,DK,GB,US,BR,US,BR,US,FI,US,SE,US,DE,US,DE,CH,AU,US,PH,US,ES,US,CH,US,NL,IT,ES,FR,NL,SE,NL,FR,NL,IL,IN,IL,BE,IL,PS,TR,IL,PS,IL,US,DE,US,CA,US,AU,US,ES,US,SE,US,SE,US,DE,US,SE,NL,SE,DE,SE,IT,SE,MD,SE,NL,SE,GB,SE,DK,SE,NO,SE,JP,LV,SE,AT,IT,SE,IT,SE,CA,SE,US,FR,GB,US,GB,US,GB,SG,GB,US,GB,NZ,US,AU,US,NZ,US,CA,US,_,US,GB,US,IE,GB,US,PT,US,GE,CH,US,AU,US,_,DE,US,CA,US,CH,US,BE,US,GB,US,DE,US,DE,PL,AU,US,AU,US,CN,AT,_,US,DE,RU,CZ,JP,RU,SG,JP,DE,RU,SG,RU,ID,DE,SG,DE,GB,NO,GB,RU,BD,RU,US,DE,US,DE,US,DE,US,DE,_,US,DE,US,FI,US,_,US,DE,RO,DE,US,AT,US,TR,US,DE,US,HK,US,FI,BE,FI,US,AU,US,DE,US,AU,SE,AU,US,JM,KY,JM,US,CA,US,GB,US,GB,_,US,CA,US,FI,CA,US,GB,CA,US,FR,US,FR,US,CA,GB,CA,US,HK,US,_,CA,US,CA,US,AU,_,US,CA,US,GB,IT,NO,US,KR,US,CA,US,_,US,IT,BR,US,AU,US,PT,US,PT,US,CA,US,_,US,GB,US,_,US,GB,US,CA,US,IL,NL,US,KR,CH,AU,US,TH,US,_,PT,US,_,US,IT,US,NZ,NO,US,IL,US,_,US,CA,US,NL,PT,US,GB,US,NO,US,_,US,_,US,PT,AT,FI,US,SE,US,GB,US,GB,US,ZA,US,CA,FR,US,DE,IT,US,CA,US,NO,US,CA,US,DE,GB,US,CH,US,GB,US,GB,US,CA,US,NL,CA,US,_,PK,_,US,JP,CO,JP,_,HK,CH,JP,_,JP,US,PR,US,CA,US,PT,US,AT,US,NO,US,CH,IT,GR,BE,US,FR,US,BR,US,PT,US,_,AU,US,_,US,PT,US,_,US,IE,US,CA,GB,US,_,US,NO,PL,US,MT,US,FI,US,GB,BE,US,NL,US,CA,US,GB,FR,PT,US,_,GB,CH,NI,US,PT,US,NL,PT,CA,FR,BF,FR,_,US,RU,US,FI,US,CA,US,_,US,GB,CH,US,CN,US,PR,US,NL,US,NL,ES,GB,CH,LU,AU,ES,US,NO,GB,ES,AU,US,GB,US,ES,DE,US,AU,GB,CA,US,DK,GB,CH,US,HK,US,CA,FR,SE,US,CH,US,SE,AU,US,CH,MX,CH,US,SE,ES,US,GB,US,CH,US,SE,NL,CH,US,CA,US,GB,US,PT,US,AU,US,NO,SE,US,_,US,NO,GB,US,_,US,GB,CA,US,SG,US,CA,GB,US,PT,US,AT,GB,CH,US,GB,US,NZ,US,CA,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,FR,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,MF,CA,US,CA,US,CA,US,BR,NL,US,BR,AR,BR,CL,AR,BR,_,BR,EC,BR,CO,AR,BR,CN,NL,AU,PK,IN,CN,_,IN,ID,AU,ES,AU,_,AU,BD,BR,HN,EC,BR,AR,BR,EC,PE,MX,CL,BR,CL,BR,AR,BR,PE,BR,MX,DO,BR,AR,BR,HN,CL,BR,AR,BR,AR,BR,AR,BR,MX,BR,US,DE,PH,US,TR,RO,TR,US,CZ,US,NL,TR,ES,TR,US,HK,US,TW,US,BA,SG,NL,BE,DE,GB,DE,GB,DE,GB,US,DE,GB,AU,US,BE,TR,US,TR,UA,US,AU,US,PK,US,BE,US,VN,TR,US,AU,NL,PH,US,GB,CR,US,ID,MN,ID,US,GB,US,ZA,ES,GE,RU,DE,US,RU,GB,RO,GB,UA,RU,US,DE,NL,SI,RU,LV,RU,CZ,RU,US,CZ,HR,BR,FR,CH,FR,PK,BD,SG,BD,NL,ID,BR,CO,BR,CN,RU,FR,DE,RU,TH,NL,LT,FR,JP,HK,ES,DE,SM,GB,NL,CH,US,TH,AR,US,AU,DE,FR,JP,BE,US,DE,SK,DE,RU,CZ,RU,RO,CZ,UA,DE,US,PS,ES,DE,GB,IT,ZA,MW,_,SO,CI,SS,NG,CM,CD,BR,PL,ID,CI,US,TW,IL,US,IN,US,BE,US,SG,US,BE,US,SG,US,DK,US,FR,US,GB,ES,US,AT,SG,HU,GB,NL,RU,US,NZ,US,FI,US,CA,BR,US,NO,US,ES,IT,FR,US,JP,DE,US,ES,US,_,US,NO,US,_,US,CZ,US,NZ,US,NO,GB,BR,CA,AU,FR,US,UY,NO,US,IT,US,AU,US,GB,US,IS,US,GB,US,PL,US,PT,FR,US,DE,US,JP,IN,US,_,US,PL,US,_,US,GB,_,US,PT,US,JP,US,JP,US,NL,US,JP,US,BR,US,GB,CA,US,FI,GB,BR,GB,US,GB,US,LC,US,AU,US,AU,IT,US,BE,US,_,US,SE,US,PT,US,CA,AU,RU,ES,US,MX,US,GB,US,NL,IT,GB,US,GB,NL,ES,GB,CA,US,IT,NZ,US,AU,US,PL,US,FI,US,GB,US,ES,_,US,CA,US,AT,US,NL,US,NL,AU,US,FR,US,CA,GP,US,CA,_,US,GB,US,FR,GB,US,FR,NO,CA,US,_,US,GB,US,NO,US,NO,US,CA,US,IT,GB,US,GB,NL,GB,US,CA,US,DE,US,_,US,GU,US,_,US,GB,US,NL,US,AT,US,GB,_,US,IN,US,FR,US,SE,_,US,SE,US,SE,PL,SE,US,GB,CA,GB,US,NL,US,_,US,PL,US,GB,AU,US,NO,US,GT,US,AU,GB,US,_,US,IT,US,GB,CA,US,NO,DE,US,PT,IT,NO,GB,US,_,US,AU,AT,GB,RU,US,GB,NO,US,NZ,_,US,NO,US,GB,AU,HU,US,AU,US,GB,TH,NO,US,NO,US,NL,US,CA,US,_,US,CA,US,FR,US,CA,CO,MX,NI,US,NO,US,GB,US,GB,US,DE,US,FR,US,GB,US,PT,GB,NL,US,AT,US,GB,AT,US,FI,JP,US,CA,US,DE,US,_,US,CA,US,CA,CH,US,NO,GB,US,_,US,GB,US,BE,US,PL,US,IT,US,_,US,_,US,DE,US,GB,US,CA,US,PR,CA,IT,FR,US,PT,US,GB,US,CA,US,_,US,JP,_,US,GB,US,GB,US,CA,US,GB,AT,US,GB,US,_,US,BR,PT,US,HU,US,NL,US,BE,ES,DE,FR,US,BR,CH,US,AU,US,JP,US,HU,US,CL,BR,_,US,PL,US,GB,US,MX,US,_,US,GB,CR,BE,US,SC,US,AT,US,CA,US,SE,GB,US,NO,US,_,US,GB,US,CA,US,CA,US,SG,US,CA,US,SG,US,CA,US,_,US,_,US,CA,US,MX,US,BR,US,CA,NO,US,CA,US,PR,US,BE,US,_,JP,_,JP,HK,JP,_,JP,_,US,JP,US,GB,US,_,US,GB,US,GB,US,CH,US,BM,US,_,US,PT,US,IT,US,SC,US,HK,US,NZ,US,BE,US,GB,US,LU,_,US,NO,US,SE,JP,BR,US,AU,US,AU,US,CA,US,CA,US,NO,US,JP,DE,GB,US,CA,US,JP,CH,DE,US,_,US,CA,US,GB,DE,GB,CA,GB,US,GB,US,IT,US,GB,US,CH,ZA,_,ES,US,ES,US,ES,US,ES,US,CA,US,BE,US,PR,US,CA,US,NL,SG,US,_,US,KZ,US,FI,CA,US,GB,US,IT,US,ES,US,BE,US,DE,US,DE,HK,MY,UA,US,NL,US,NO,IE,US,CA,US,BR,IE,US,FR,FI,US,CA,US,CA,US,RU,US,SI,AU,US,_,US,TR,LU,NO,US,IT,US,_,US,ES,_,US,IT,US,BR,US,BR,US,DE,US,AT,US,AU,US,CH,US,CA,US,NL,US,GB,PL,MX,US,FR,US,NO,US,BR,US,DE,GB,US,NL,US,_,IT,US,IT,JP,US,CA,US,AU,HU,US,PR,GB,US,BR,US,GB,US,AU,US,RU,NO,NZ,US,_,US,AT,RU,US,NL,US,PT,KY,PT,IL,US,CA,US,IQ,US,BE,US,CA,NZ,US,RU,NO,RU,ES,RO,PT,GB,UA,RU,CH,UA,RU,PL,RS,RU,PL,RU,FR,SA,UA,DE,RU,PL,CZ,RU,LV,UA,RU,PL,UA,NL,UA,PL,UA,KZ,UA,PL,DE,PL,RU,NL,FR,RU,UA,US,UA,CH,UA,RU,IE,SE,UA,DE,BG,UA,RU,PL,RU,US,SG,HK,SG,US,HK,US,MQ,US,FI,US,AT,SE,US,SE,DE,RU,DE,PL,IQ,DE,NL,GB,DE,US,DE,NL,RU,DE,UA,HK,US,RU,PL,RO,RU,UA,GB,FR,UA,DE,ES,DE,SC,FR,DE,PL,FR,GB,PL,NL,CA,NL,UZ,RU,AT,HK,US,SG,JP,GB,IT,DE,PL,IT,_,US,CA,US,PH,SG,PH,SG,US,HK,IN,JP,SG,MM,BD,TW,PK,JP,US,AU,US,SG,AU,US,NL,ES,DE,FR,IT,US,_,CA,US,CA,US,PF,US,CA,US,BB,GB,US,_,US,JP,IT,US,_,JP,_,US,JP,US,_,US,CA,US,LU,CA,US,GB,US,NZ,US,CA,US,CA,US,CA,US,GB,US,GB,US,NL,US,DE,SG,US,JP,US,IN,ES,JP,US,IT,US,GB,US,GB,US,CA,US,CA,US,AT,US,JP,US,GB,US,CA,US,KZ,US,FI,FR,CH,GB,FI,US,CA,US,GB,US,AU,US,GB,US,SE,US,NL,US,NL,US,UA,US,UA,US,DE,US,NL,IT,UA,GB,CO,US,GB,FR,US,GB,US,GB,IT,US,FR,US,UA,US,IT,US,IN,GB,US,PH,DE,US,DO,US,DE,US,UA,DE,BR,UA,US,UA,BR,UA,DE,UA,DE,US,UA,US,UA,US,DE,UA,DE,UA,DE,US,DE,US,DE,UA,US,DE,UA,DE,UA,US,DE,US,BR,DE,BR,US,UA,US,BR,US,BR,US,UA,BR,US,JP,US,CA,US,CA,US,CA,US,CA,US,ES,US,CA,US,_,US,CA,US,BR,US,_,EC,US,GB,FR,US,GB,US,NZ,US,JP,_,US,HK,US,_,US,_,US,JP,US,GB,US,AU,US,NO,US,AU,US,AU,RU,GB,US,_,AT,GB,US,GB,US,IE,_,GB,US,GB,US,DE,US,GB,US,AU,US,GB,US,GA,CA,US,TW,TH,US,PH,ID,US,NZ,AU,RU,US,RU,US,EC,US,PL,US,_,HU,IT,US,GB,US,GB,US,DE,US,CA,GB,_,US,AU,US,CA,US,GB,US,AT,GB,US,AU,GB,US,FR,CA,GB,IL,US,NL,US,ZA,DE,US,_,US,_,PR,US,GB,US,_,US,GA,US,AU,US,DE,US,IT,US,AU,GB,US,GB,US,GB,CA,US,AU,US,PH,US,AU,_,US,DE,US,CA,US,CA,US,CA,US,MX,US,GB,US,NO,US,AU,US,GB,US,AU,GB,US,FR,US,CA,US,NO,US,NZ,US,FR,US,GI,US,HU,PT,US,AU,_,GB,US,NO,US,GB,US,SG,US,AU,_,AU,US,TR,FR,US,GB,US,FR,US,GB,US,TW,SG,TW,US,DE,US,DE,US,SG,US,SG,US,FI,_,GB,_,CA,US,RU,US,_,US,NZ,US,_,US,KR,US,GB,AU,BR,US,PL,US,DE,US,AU,US,GB,PL,US,IT,US,_,US,GB,US,SE,US,_,US,AU,US,_,US,NL,DE,US,_,US,PT,US,AU,US,CA,US,NZ,US,_,US,GB,BR,US,CA,US,FR,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,HK,CA,US,CA,US,CA,US,CA,PH,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AR,US,_,US,CA,US,CA,US,_,US,CA,US,CA,PT,AU,CA,US,CA,US,_,US,AU,US,PR,US,DE,US,TC,_,US,RU,_,US,NZ,US,CA,FI,US,KR,US,NZ,US,_,CA,US,AU,MX,US,HK,US,_,US,CA,US,CA,US,_,US,AU,US,NZ,US,SA,US,MO,US,AU,US,TH,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,US,_,US,GB,US,IL,US,CA,US,_,US,_,US,AU,US,CA,NZ,US,CA,US,CA,US,IL,US,IT,US,ES,US,NL,US,AU,US,_,US,EC,US,PR,US,TH,EC,US,CA,US,HK,US,AU,US,AU,US,AU,_,US,CA,US,GB,LU,_,US,CL,US,_,AU,US,AU,US,AU,US,GT,US,_,US,BR,PT,AU,US,BR,MX,BR,US,_,US,EC,US,AU,US,_,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,SE,US,CA,US,KR,US,CA,US,GB,US,CA,US,CA,US,BB,GD,CA,DE,FR,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,CA,BM,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,DE,US,DE,US,SG,JP,US,CA,US,CA,US,CA,US,CA,US,BO,US,CA,US,CA,US,CA,US,CA,US,PH,US,CA,US,PR,US,_,US,TR,US,IN,US,AL,US,MY,US,CA,US,GB,US,ES,US,JP,US,HK,US,HK,US,HK,US,BE,US,HK,US,BE,GB,US,BE,US,HK,JP,US,CO,US,CO,US,GB,US,CO,BE,US,HK,GB,US,CO,US,HK,GB,US,BE,NL,HK,US,GB,HK,GB,US,NZ,_,US,FR,BE,CA,US,IL,GB,BE,US,BE,CA,BE,US,HK,MX,IT,KR,US,CL,KR,BE,US,BE,QA,US,FR,GB,BE,ID,ES,TH,KE,US,JP,US,BE,AT,US,CH,MY,BE,US,BE,TW,US,IN,HK,US,CA,US,_,US,_,US,BS,US,AU,US,CA,AT,US,_,US,DE,US,_,US,CA,US,PR,US,CL,US,BR,PY,BR,AR,US,AU,US,AU,_,US,CL,US,_,US,_,US,AU,SG,US,CA,BR,US,NZ,US,CA,US,_,US,AU,US,_,AU,US,_,US,_,US,TZ,US,CA,_,US,ZA,US,_,US,AU,US,SG,US,CA,US,CA,US,_,US,_,US,CA,US,MX,US,CA,US,CA,US,CA,US,CA,US,_,US,AU,US,BB,US,CA,US,CA,US,NL,US,CA,US,HK,NL,CA,DE,US,CA,US,GB,US,FR,CH,US,ES,US,IT,US,DE,ZA,US,FR,US,JP,US,GB,US,BE,US,CH,CA,US,_,US,_,US,CA,US,CA,US,CA,US,NL,US,CA,US,NZ,US,CA,US,CA,US,GB,US,ES,AU,US,DM,US,DM,US,CA,US,CA,US,JP,US,CA,US,JP,US,_,US,_,US,CA,US,BR,US,_,US,CA,US,SG,CL,US,_,US,_,US,AU,US,BO,US,DZ,US,UA,US,_,US,CA,IN,US,PL,US,CA,US,CA,US,NZ,US,_,US,HK,US,HK,US,AU,US,_,NZ,US,GB,US,CA,US,KR,US,ES,US,CA,GB,US,CA,US,GB,US,LK,NL,GB,DE,CA,US,KR,US,SG,US,HK,US,CA,US,CA,US,SG,US,HK,US,CA,US,CA,US,IN,US,IN,US,IN,US,IN,US,IN,US,GB,CA,US,SG,DE,US,AU,GB,SG,US,CA,GB,US,CA,US,CA,US,CL,US,CA,US,SA,US,CA,US,AU,US,_,US,CA,US,CA,US,_,CA,US,CA,US,_,GH,US,_,US,DE,TH,_,NL,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,AU,HK,US,GB,US,GB,NL,CO,NL,AU,HK,RO,MT,GB,US,TW,US,AE,HK,US,HK,US,HK,US,PR,US,_,US,NL,PL,CH,DK,UA,TR,DE,PL,NL,RU,LV,UA,PL,RU,ES,RU,IR,IT,GB,FR,US,DK,KZ,ES,RU,GB,NL,NZ,NL,RU,DE,AT,RO,GB,PL,DE,RU,UA,PL,NL,US,RU,UA,NO,UA,CH,RO,HU,LV,UA,LV,CZ,GB,NL,SE,PL,CH,DE,LV,UA,ES,PL,DK,SI,VN,IN,UA,DE,GB,DE,LT,NO,SE,RS,GB,IE,SI,ES,DK,US,GB,RU,TW,FR,GE,RU,FR,DK,GB,NL,CH,EE,IR,TR,NL,GB,TR,DK,OM,US,DK,RU,TR,RU,DK,GB,DE,GB,DK,ES,DK,IT,PL,TR,US,GB,RO,DE,IT,PL,SI,DK,BG,DK,DE,ES,DK,RU,IQ,DK,AT,DK,GB,PL,NZ,UA,GB,PL,TR,NL,US,RU,US,GB,DE,JP,US,GB,NL,RU,US,IR,FI,RU,NZ,US,RU,NL,FR,JP,DK,RU,IR,ES,DK,JE,DE,PL,SK,NO,IT,DK,IR,IS,GB,US,IS,CH,AZ,CH,SE,CH,HK,AE,LI,BY,CH,IT,CH,IT,CH,IT,CH,_,FR,CH,FR,CH,IT,CH,US,CH,US,BE,DE,NL,IQ,ES,DE,CH,FR,CH,US,HU,DE,RU,DE,GB,PL,GB,RU,US,DE,GB,JE,HU,FR,RU,PS,DE,RU,US,PL,BG,SC,CH,KZ,CH,SE,DK,CH,PL,UA,CH,PL,DE,PL,CH,PL,AZ,CH,DE,AZ,RU,US,CH,UA,KR,SK,CZ,CH,SK,DE,IR,CH,GB,DE,US,FR,ES,DE,SE,DE,CH,DE,IR,CH,GE,CH,RU,DE,CH,BY,US,GB,CH,NO,CH,PL,SG,CH,DE,CH,US,CH,UA,DE,US,FR,DE,FR,RU,DE,CH,MX,ES,FR,CH,FR,GB,CH,MX,GB,US,CH,PL,US,CH,GB,ES,CH,LT,ES,CH,ES,SA,CH,ES,GB,BE,SI,GB,_,UA,DE,SI,TH,SI,UA,NL,_,US,_,US,GB,PL,HN,IM,JM,JE,MZ,RW,SS,TG,US,DE,US,DE,US,SI,IN,RU,SE,CZ,GB,BE,BG,DE,LV,PL,CH,PL,GB,PL,KZ,PL,LU,GB,US,RU,UA,DK,SG,DK,RU,GB,DE,PL,RU,AT,DK,GB,SE,DK,SE,DK,SE,DK,SE,NL,SE,LV,SE,GB,DE,GB,DE,US,CZ,DE,GB,DE,RU,GB,ES,CH,UA,HU,PL,DE,MT,DE,NL,PL,NL,UA,BG,PT,CZ,UA,GB,PL,GB,SI,GB,MD,DE,RO,GB,DK,IL,RO,GB,ES,SI,ES,NL,AT,ES,BG,UA,FR,DE,RU,CH,DE,NL,DE,ES,CH,RO,GR,CH,FR,DE,PL,DE,RU,UA,NL,DE,FR,US,IL,FR,PL,CH,AT,ES,AT,DE,BG,UA,DE,PL,PT,SI,DE,TR,DE,GB,FR,PL,DE,FR,DE,CH,DE,CH,DE,IT,CH,DE,NL,GB,IE,_,PL,IL,NL,UA,IT,UA,CZ,DE,RU,JO,PL,CH,NL,DE,CH,NL,ES,SE,IL,UA,HU,PL,SE,FR,IL,UA,CH,DE,MD,LI,IT,PL,CH,GB,DE,US,RU,GB,FR,US,DE,CN,SG,GB,RU,DE,PL,BY,PL,HU,GB,DE,HU,ES,PL,DE,GB,SY,FR,HU,CH,RO,FR,DE,FR,CH,PL,CH,SE,PL,DE,UA,DK,SE,UA,FR,GB,SE,PL,RU,PL,CI,UA,SE,DE,HU,DE,AT,PL,GB,DE,GB,SI,_,BG,DE,GB,DE,CZ,AT,GB,DE,HK,DE,SG,DE,NO,RU,PS,UA,FR,DK,SE,RU,UA,GB,SA,DE,CH,PS,LU,LT,RU,PL,BR,NL,US,RU,LU,DE,RU,UA,AT,PL,RU,DE,UA,FI,PL,IR,SE,BG,ES,UA,GB,DE,PL,RU,BG,CZ,DE,UA,GB,RU,RO,GB,IT,CY,BR,US,ES,FR,PL,FR,HR,BE,GB,UA,EG,DE,UA,SA,PL,UA,DE,GB,DE,FI,RU,FR,DE,TR,DK,FR,DE,IR,NL,PL,DE,US,PL,DE,CY,HR,DE,GB,PL,AT,PL,UA,AT,GB,RU,GB,IT,PL,FR,RO,NO,RO,UA,DE,CH,BG,AT,GB,FR,SE,DE,ES,DE,FR,PS,NL,IT,UA,SE,CH,FR,OM,US,CA,US,SE,DE,US,DE,ES,DE,SE,PL,SE,CH,KW,RO,DE,PL,DE,FR,RU,NL,RU,DE,GB,RU,GB,RU,GB,BG,SA,NO,DE,PL,DE,PL,DE,CH,DE,RO,DE,NL,FI,SE,FR,GB,DE,CH,PL,SI,RU,PL,FR,UA,PL,US,DE,SE,RU,LT,NL,PL,SI,PL,DE,NL,IT,BE,GB,SE,DE,GB,FR,UA,FR,GB,NL,DE,AU,FI,GB,DE,ES,GB,SI,HU,UA,DE,RU,NL,RU,DE,TR,UA,_,SE,DE,FR,ES,DE,SE,ES,PL,UA,DE,SA,UA,HR,UA,DE,GB,UA,DE,_,SE,NO,DE,ES,DE,SC,FR,DE,US,DE,SC,DE,DK,LT,DE,GB,LT,GB,DE,RU,DE,GB,PL,DE,PL,UA,GB,DE,GB,IT,UA,GB,DE,IT,DE,NL,IT,ES,DE,FI,DE,_,DE,CH,RU,PL,DE,GB,DE,UA,DE,RU,ES,SE,MT,DE,BG,PL,SI,HU,IT,HR,DE,PL,RU,DE,US,DE,NL,AT,DE,CH,PL,IT,RO,DE,GB,DE,UA,FR,TR,SE,DE,PL,BG,PT,_,FR,DE,UA,IT,UA,DE,PL,GB,RU,ES,PL,IT,FR,IT,FR,AT,FR,DE,BE,IT,BH,SA,ES,DE,RU,DE,US,BG,US,HR,RU,PL,IT,DE,PL,DE,IN,DE,IT,NL,IT,UA,CH,DE,SE,RO,AT,NL,RO,FR,IT,UA,FR,DE,RU,SE,RU,UA,FR,GB,DE,PL,SI,UA,FR,SE,HU,DE,US,MX,DE,GB,DE,FR,RU,DE,IT,RO,CH,PL,DK,RU,UA,RU,DE,NO,ES,DE,RU,UA,GB,RU,DE,BG,RU,DK,DE,SI,SE,GB,DE,FR,GB,DK,FR,PL,SA,DE,IR,DE,PT,US,DE,US,NL,DE,RS,IT,GB,RU,FI,RU,LV,AT,RU,GB,CH,DK,NO,DE,FR,DE,GB,DE,FR,RO,NL,CH,NL,FR,UA,PL,RO,NL,GB,NL,IL,NO,DE,SE,FR,US,UA,PL,SE,IT,PL,UZ,UA,PL,GB,RU,FI,CH,DE,RU,CH,RU,LB,RU,AT,ES,DK,DE,SE,PL,NO,MT,NO,DE,RU,NO,SK,SA,GB,AT,US,SI,DE,GB,DE,CH,SI,RU,GB,RU,NL,DE,SI,DE,SI,DE,IE,MT,IE,DE,NL,DE,PL,DE,HU,UA,DE,FI,GB,AT,UA,IE,SA,IT,DE,IE,DE,AT,CH,SI,DK,AT,DK,DE,RO,NL,DE,GB,IL,UA,AT,PL,SE,DE,GB,UA,IN,AT,DE,IR,PL,_,UA,CH,JP,PL,CH,PL,FR,PL,DE,UA,GB,PL,FI,AT,FR,NL,DE,NL,DK,TR,PL,DK,DE,AT,PL,HU,GB,FR,RU,FR,NO,PL,DE,GB,DE,BG,DE,GB,EE,UA,DE,UA,DE,UA,DE,GB,UA,DE,CH,RO,US,RO,UA,NL,RU,CH,DE,IR,DE,IR,DE,GB,RU,MT,DE,LT,MT,IT,DE,ES,PL,HU,SA,PL,FR,KZ,DE,BG,DE,NL,US,DE,US,AZ,DE,FR,SE,DE,DK,GB,DE,GB,DE,NL,DE,FI,IT,GB,NL,GE,DE,RO,DE,US,GE,DE,UA,DK,ES,UA,PL,CZ,PL,DE,UA,GB,FR,GB,RU,AM,RO,DE,RU,DE,NL,DE,PL,NO,PL,DE,PL,NL,ES,EC,DE,GB,RO,DE,MD,ES,US,AT,DE,RU,DE,GB,DE,US,DE,GB,FI,DE,IE,LB,ES,US,ES,FR,DE,RU,FI,BE,GB,DE,FI,IE,IT,US,BG,NO,DE,ES,FR,ES,DE,NO,DE,FR,SE,NL,DE,PL,IL,NO,AT,HU,NO,BE,DE,FR,BG,GB,RU,UA,GB,UA,RU,RS,GB,UA,GB,RU,DE,BY,RU,LT,TR,DE,US,AT,IN,HU,DE,GB,US,ES,GB,US,GB,US,DE,ES,DE,FR,DE,FI,DE,GB,ES,NO,PT,US,AE,PL,DE,ES,RU,US,EE,US,TR,DE,RO,GB,US,DE,RU,KZ,IM,US,PT,MT,IE,CA,IM,MT,IM,IE,IM,DE,IT,CH,HU,BG,US,GB,BG,GB,US,CA,RO,DE,RU,US,GB,NL,RU,UA,GB,US,GB,AT,GB,PL,GB,NO,GB,PL,AT,LV,TR,UA,TR,CZ,TR,RO,BE,RU,DE,DK,GB,UA,ES,IR,GB,LI,RU,DE,RO,GB,DE,GB,IT,PL,JP,_,IE,NO,GB,ES,GB,NO,GB,ME,ES,GB,FR,CH,DE,NO,NL,RO,GB,JP,UA,ES,RO,NL,US,ID,AU,PT,SG,NL,DE,GB,RU,PL,CH,RU,PL,RU,CH,GB,ES,RU,DE,AU,DE,SG,KW,HU,ES,BD,DK,IN,DE,NL,GB,PL,ES,PL,ES,PL,RU,FR,CZ,IL,IT,DE,CZ,RO,RU,AT,TR,CH,RO,NL,FR,UA,ES,PL,UA,GB,RU,GB,DE,UA,FR,DE,NL,RU,UA,US,RU,NL,GB,RU,GB,FR,RU,KZ,UA,RU,RO,MD,CH,TR,NL,IT,RU,AE,CH,RO,IT,GB,PL,IT,AT,GB,CH,DE,FR,RU,GB,CZ,CH,TJ,RU,NL,TJ,SE,CZ,CH,RU,GB,DK,AT,_,RO,SE,US,DE,RU,CZ,TR,RU,_,FR,GB,AE,PL,GB,NL,BE,RU,GB,DE,UA,DK,RU,NL,UA,GB,RO,UA,TR,DE,UA,RU,DE,AT,UA,DE,AT,SE,NL,DE,FR,KW,RU,IM,MT,RU,IL,RU,CH,RU,IT,GB,SE,GB,RO,IT,GB,PL,NL,RU,FR,UA,DE,FR,US,FI,PL,DE,US,DE,PL,IL,UA,RS,DE,UA,NL,DE,GB,FR,CZ,NL,FI,TR,LT,BE,UA,DE,FO,RO,PL,DE,RU,UA,FR,TR,HU,CH,PL,UA,RS,DE,FR,GB,NL,SE,UA,RO,PL,RU,PL,RU,NL,UA,GB,UA,RO,GR,PL,RO,RU,GB,SE,NL,RU,DE,NL,NO,PL,UA,PL,_,DE,_,SE,_,PL,TR,AT,DE,RU,PL,UA,PL,SA,KG,IT,AT,FR,GB,RU,CZ,ES,IR,GB,RO,PL,FR,IT,GB,ES,US,DE,IN,PS,PL,UA,ES,GB,RU,PL,IE,RU,BG,PL,RU,_,BG,PL,RU,NO,GB,PL,IR,PL,SG,DE,BE,LU,BE,ES,CZ,RU,FR,PL,RU,FR,CZ,RO,RU,PL,SI,GB,FR,GB,NL,TR,FR,GB,DE,TR,DE,GB,DE,GB,US,LU,FR,RU,NL,NZ,IR,FR,GB,TR,DE,GB,DE,GB,CH,GB,RU,CH,RO,MD,TR,SI,RU,DE,IE,DE,FR,DE,IT,GB,FR,RU,US,TR,GB,AU,US,DE,GB,US,GB,DE,US,GB,ES,US,MK,RU,US,ES,DE,US,CH,US,DE,IT,TH,DK,CH,GB,TW,DE,JP,GB,NL,GB,US,GB,ES,NO,GB,US,NL,DE,US,DE,ES,IL,NL,NO,US,BR,MD,FR,TR,US,NL,US,DE,AT,PT,NO,GB,NO,RO,NL,US,RO,PL,US,GB,US,UA,NL,GB,US,IT,DE,MY,US,CA,GB,SG,US,RU,GB,RU,IR,PL,TR,BG,TR,IT,TR,BG,IT,BG,UA,GB,NL,ES,NL,DE,RU,GB,DE,GB,ES,GB,NL,GB,IL,DE,US,RU,TR,FR,RU,RO,CA,PL,UA,GB,SA,AT,FR,GB,CH,DE,FR,DE,PT,TR,RU,UA,RU,UA,CH,GB,UA,MD,FR,US,CA,NL,GB,BG,NL,US,RU,GB,CZ,GB,RU,CZ,NL,HK,CH,GB,BG,US,GB,NL,US,FR,UA,US,AT,SE,DE,AL,TR,FR,GB,DE,CH,PL,GB,RU,GB,CZ,NL,GB,FR,IT,GB,CH,NL,JP,NL,GB,ES,GB,GR,NL,US,BR,DE,GB,ES,PL,CZ,RU,IE,GB,NL,SE,ES,IR,US,ES,FR,US,CZ,GR,UA,FR,GB,NL,GB,IR,TR,GB,HU,GB,RO,DE,UA,_,PL,RU,RO,DE,UA,TR,EE,GB,ES,GB,NL,FR,BE,DE,RU,RO,UA,GB,SE,GB,TR,DK,GB,NL,MX,GB,RU,FR,RU,GB,US,CZ,DE,GE,LU,PT,BG,DE,MX,IE,DE,GB,TR,DE,NZ,ES,RU,GB,FR,PL,GB,RU,NL,GB,EE,GB,TR,UA,IT,DE,DK,SE,BE,SE,NL,LV,HU,SI,DE,JP,AE,LT,AT,BE,ES,PL,LV,SE,HU,UA,CH,GB,IT,DK,GE,UA,BG,US,HU,FR,RU,UA,LT,HU,FR,IT,FR,BE,UA,SI,CH,PL,RU,AT,FR,GB,CH,PL,IL,TR,DE,SE,DE,LT,DE,RO,AZ,UA,KZ,DE,CH,AT,RU,DE,DZ,CH,GR,GB,CZ,DK,BE,ES,GB,SE,PL,IT,FR,BG,UA,BG,PL,CH,FR,LV,DE,LT,IT,PL,DE,AT,IL,RU,_,IT,RO,AT,IL,PL,DE,CZ,SE,GB,LB,UA,GB,FR,SE,TR,DE,ES,AT,GR,PL,AT,BE,ES,IT,DE,NO,UA,ES,BE,RO,BE,RO,HK,RO,DE,RO,DE,US,DE,IT,ES,IT,DE,IT,HK,ES,RS,SE,DE,NL,HK,GB,ES,NL,BG,US,PL,GB,US,SE,TW,GB,EE,DE,EE,GB,FR,IT,DE,GB,PL,TR,UA,NL,EE,RU,CH,NG,RU,NL,RU,CZ,HK,IT,HK,NL,US,IT,RU,ES,GB,RU,CH,PL,UA,HK,FR,GB,PL,DE,AZ,IT,CH,SE,IT,PL,NL,FR,DE,SE,TR,DE,PL,SE,SA,DE,HU,KW,FR,PL,IT,PL,US,NL,PL,IT,RU,PL,SE,IT,PL,IT,FR,BG,CH,SE,DE,CZ,IT,SE,IT,PT,RU,FR,DE,IT,ES,OM,FR,DE,US,IT,ES,IT,PL,RU,IT,BE,NL,PL,RU,NL,CH,US,UA,IT,ES,PL,IT,VA,DE,BG,IT,PL,IT,DE,ES,IT,GB,PL,RU,VA,IT,US,PL,IT,US,AT,SY,IT,US,ES,PL,SY,LV,CZ,PL,SY,GB,SE,CH,AT,SY,IT,RU,PL,RU,CH,IT,CH,UA,AT,FR,DK,NL,DE,UA,PL,RU,BE,PL,IL,DE,KZ,RU,SE,US,AT,RU,DE,AT,GB,DE,IT,ES,DE,AT,UA,PL,AT,TR,AT,RU,GB,DE,IL,RU,UA,US,PL,DK,RO,SI,GB,CH,US,SI,GB,RU,AT,NL,GB,DE,LT,FR,UA,GB,RU,UA,NL,RO,AT,IT,ES,IT,PL,FR,DE,UA,PL,AT,ES,US,NL,UA,FR,US,PL,FR,RU,AT,EE,US,PL,RU,MD,DE,ES,NL,PL,PT,AT,DE,AT,LV,PL,ES,DE,AU,US,SE,DE,RU,AT,DE,FR,AT,GB,TR,DK,RU,NL,SA,RU,NO,RU,UA,CA,IT,DE,PH,US,HK,IT,GB,RO,FR,DK,RO,DE,BG,FR,ES,DE,NL,AT,FR,DK,DE,GB,ES,UA,FR,RU,CH,DE,RO,SA,CH,SI,UA,AT,FR,CH,FR,DK,DE,RO,ES,RU,GB,RU,DE,NL,PL,DE,US,RU,AT,PL,DE,RO,PL,DE,IL,RU,SE,CH,FR,PT,DK,DE,NL,IQ,CH,DK,CH,NL,CH,EE,GB,RU,EE,HR,PL,IL,RO,CH,NL,CH,FR,_,NL,CA,BE,CA,GB,CA,BE,AR,NL,CA,BE,PT,DE,SE,BE,NL,BE,TR,SE,BE,AT,DE,SE,UA,SE,DK,SA,TR,NO,UA,AR,DE,GB,NL,TR,BE,TR,NL,RS,BE,DE,BE,RU,BE,NL,BE,ES,GB,RU,GB,BE,TR,DE,BE,NL,DE,UA,NL,PL,FR,TR,GB,FR,ES,FR,NL,KW,IT,CZ,UA,NL,FR,IT,US,DE,UA,US,GB,FR,IN,FR,AU,NL,FR,CA,DE,FR,PL,FR,IR,FR,IR,PL,UA,PL,DE,PL,FR,UA,BE,FR,PL,FR,IR,FR,MX,FI,FR,US,IR,FR,OM,FR,DE,FR,DE,FR,BE,DE,AE,IQ,FR,RO,AT,FR,UA,NL,DE,FR,DE,FR,DE,ES,FR,DE,GB,DE,FR,RU,FR,RU,FR,RU,FR,PL,FR,DE,FI,IT,RU,FR,AT,PL,FR,PL,DE,FR,PL,FR,IT,FR,BE,GB,PL,FR,IT,IE,AU,PL,SG,DE,FR,US,AE,FR,NO,GB,US,GB,BG,FR,NO,FR,US,AM,FR,GB,FR,GR,ES,GB,TR,UA,PL,FR,DE,MD,FR,MY,DE,FR,IT,FR,IT,FR,GB,FR,LU,PT,IT,FR,IT,NL,FR,DE,NO,FR,CH,FR,HU,FR,HU,FR,TR,PL,IE,RS,CH,FR,NO,GB,FR,ES,GB,FR,GB,ES,GB,FR,GB,DE,US,AT,US,NL,FR,DE,FR,US,FR,NL,FR,IE,TJ,SK,IE,FR,US,FR,NL,GB,DE,GB,FR,GB,FR,DE,CY,BE,IT,BE,FR,BE,GB,GR,CZ,BE,DE,BE,ES,US,FR,KH,GB,FR,BE,CY,IQ,GB,IR,US,TH,US,DE,BE,DE,BE,US,SG,US,BE,PS,GB,CH,BE,AT,RU,AE,BE,GB,FR,US,IT,RU,PL,IT,DE,SK,GB,DE,NL,CH,AT,US,BE,PL,FR,GR,DE,TR,GB,SE,DE,GB,NO,CH,RO,DE,UA,FR,NO,RU,HR,DE,GB,BY,PL,GB,FI,NL,DE,NL,BG,HU,LV,BG,NO,FR,GB,DE,FR,PL,FR,DE,FR,DE,FR,GB,FR,PL,FR,PL,IT,NO,CH,GB,CH,DE,CH,GB,CH,BE,NL,BE,NO,BE,IT,SI,NL,AT,JP,SG,HK,JP,DE,GB,DK,GB,JP,GB,AU,AT,GB,PL,FI,GB,PL,CZ,RU,NL,NO,PL,CZ,PL,UA,FR,ES,DE,GR,UA,BE,CH,GB,DK,AT,PL,ES,RU,CZ,ES,UA,US,AT,CZ,DE,CZ,RO,AT,DE,NL,CZ,RO,ES,US,UA,FR,ES,SE,UA,RU,PL,CZ,BE,HK,BG,IL,US,FR,RU,DE,ES,AT,DE,CZ,FR,GB,TR,BG,CZ,IT,GB,BE,US,AT,RU,LB,CZ,LB,CH,PL,CZ,HU,NZ,PL,MX,SE,DE,HU,GB,NL,CZ,NL,ES,DE,_,RU,DE,PL,QA,LV,RO,CZ,RU,NL,CZ,GB,DE,RU,CZ,PL,NL,GB,NL,GR,CZ,NL,RU,CZ,SK,DK,NO,ES,PL,LV,PL,US,ES,BG,PL,LV,PL,LU,DE,LU,NL,HU,BE,NO,GR,CY,GR,DE,SE,FR,UA,CH,BG,RU,GB,US,GB,UA,TR,US,KZ,RU,LV,LT,CH,PL,SK,UA,GB,PL,IL,UA,PL,IT,FR,UA,RU,FR,NO,FI,DE,RO,PL,GB,US,NL,AT,GB,PL,UA,GR,UA,NL,DE,NL,FR,IR,FR,UA,US,GB,PL,CH,KZ,UA,NO,GB,UA,RU,DE,RU,SE,NO,FI,TN,IE,SI,DE,PL,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,SG,DE,CA,US,DE,SG,DE,AU,DE,CA,DE,ES,AT,PL,DE,GB,PL,NL,CZ,BE,DE,SI,RU,CZ,TR,RU,DE,UA,CZ,DE,FR,GE,RO,IR,SI,RU,GB,DE,RU,IR,RO,FR,DE,_,AT,GB,FR,BE,FI,FR,SA,CZ,CH,DK,ES,PL,CH,FR,DE,PL,ES,PT,UA,FR,AT,AM,RU,UA,RU,FR,CH,IL,GB,RU,AT,DE,CZ,RS,RU,PL,FR,RO,RU,IT,IL,GB,BG,IT,GB,AT,DK,DE,UA,IT,RU,PL,GB,DE,GB,IT,DE,JP,RU,SE,PL,SE,GB,RU,GB,NL,NO,RO,GB,TR,SE,NL,SE,GB,DK,IL,CH,IL,FR,IL,AE,RO,SE,RO,TR,AT,GB,RU,NL,SE,GB,CH,UA,SI,DK,IE,IT,TR,RU,GB,SE,NL,AL,GB,RU,DE,IL,CH,RU,RO,AT,GB,NL,FR,DE,PL,RU,FR,BE,SE,PL,FR,PL,GB,BG,PL,CH,DE,GB,PL,DK,CZ,RO,DE,GB,NL,JP,UA,UZ,RO,RU,PL,UA,PL,CH,NL,DE,FI,UA,NL,RU,NL,DE,RU,FI,DE,FR,NL,TR,DK,RU,SA,FR,LT,RU,UA,FR,IR,UA,SE,IE,DE,FI,ES,FR,DE,PL,GB,IT,RU,DK,PL,RU,FR,AT,PL,RU,PL,SI,RU,CH,PL,SI,RU,UA,RU,PL,_,DK,RO,RU,UA,IT,DE,CZ,KZ,CZ,NL,DE,FR,IR,NL,RU,CH,IR,UA,LB,CH,DK,RU,NL,GB,DE,FR,PL,DE,FR,DE,PL,US,SI,HR,PL,SA,FR,RU,CZ,FR,DK,PL,NL,ES,PL,BE,RU,DE,RU,UA,GR,FR,DK,PL,DE,GB,LT,NL,GB,DE,RU,GB,DE,KW,GB,CZ,RU,BG,GB,UA,PL,RO,RU,ES,SI,DE,GB,UA,RO,RU,BE,DE,PL,FI,NO,RO,FR,GR,CZ,BY,PL,TR,GR,AT,DE,PL,SA,FR,RO,UA,RU,US,FI,GB,IL,RU,NL,FI,DE,LV,DE,BE,RU,GB,GR,PL,NL,NO,SE,RU,SI,DK,FI,RU,SA,GB,FI,PL,AZ,UA,PL,RU,SI,FR,DE,SE,RU,BE,SE,UA,CH,DE,SE,DE,RO,FR,SK,PL,IT,IE,LT,DE,BG,DK,GB,FR,UA,AT,FR,LV,RU,CZ,FI,CH,FR,RS,UA,US,LV,PL,AT,UA,GB,US,NO,US,KZ,UZ,CA,RO,PL,ES,PL,AT,GB,NL,US,RO,FR,DE,GB,DK,PL,HR,GB,AT,BG,FR,RU,IL,DE,UA,PL,IL,AT,DE,NO,GB,UA,TR,GB,RU,AT,NL,UA,NO,RO,UA,DK,PL,RU,DE,CY,FR,SE,PL,IT,PL,DE,GB,FR,NL,IR,RU,GE,FR,RO,TR,NL,PL,TR,GB,DE,PL,UA,NO,PL,FR,IE,UA,RU,FI,GB,DE,UA,DE,FR,RU,RO,KG,IL,UA,RU,PL,UA,PL,RU,KG,RU,KZ,PL,RU,FR,DK,RO,PL,RU,UA,DE,UA,SE,RO,NL,RU,PL,UA,DK,RU,ES,IT,UA,TR,GB,IR,PL,TR,FR,RS,UA,IL,PL,SE,UA,RU,PL,RU,DE,PL,RU,PL,NO,RU,PL,US,DE,US,GR,RU,RS,PL,AL,PT,IQ,IT,UZ,DE,UA,KZ,HK,UA,NO,PL,BG,RU,TR,IR,AT,NO,IT,IR,AE,FR,DE,RU,FR,RU,FR,GB,ES,CZ,BG,UA,DE,UA,IS,PL,RU,MD,RU,UA,DE,UA,GB,DE,FR,UA,PL,UA,RU,DE,RU,AT,CZ,PL,UA,RU,DE,RU,PL,UA,GB,DE,PL,HK,US,NL,UA,RU,FR,UA,FR,GR,NL,PL,CZ,SE,BE,SE,DE,BE,GB,DE,CZ,FR,AT,GH,BG,CZ,NL,GH,LV,KW,FR,BG,PL,GB,UA,AT,SE,UA,HK,UA,CH,US,UA,CA,UA,IT,NL,FR,NL,GB,NL,AT,FR,NL,FR,DE,AT,HK,NL,US,CH,MD,IT,US,CZ,FR,NL,DE,RU,MX,DE,UA,PL,UA,LU,MX,SK,JO,CH,AT,FR,KW,LV,US,DE,FR,BE,GB,GR,UA,CH,FR,GB,DE,UA,DE,ES,DE,PL,CZ,DE,FR,DE,RU,DE,LV,IT,CH,LU,DE,GB,DE,PL,IL,SE,FR,RU,GB,NL,BE,PL,FR,IT,ES,RU,UA,NL,RU,AT,TR,UG,PL,FR,DE,GB,PL,GB,DE,SE,DK,UA,PL,ES,CH,NL,UA,NL,SE,UA,US,GB,UA,UG,FR,DE,UA,GB,IS,IT,CH,GB,CH,BG,IR,CH,PL,RU,BG,BE,FR,NL,KE,NL,RU,BE,AT,RU,UA,SA,US,GB,FI,RU,SE,FR,AT,RU,IT,PL,PT,PL,CH,DE,PL,IT,NL,IT,DE,RU,PL,GB,SK,FR,EE,FR,NL,PL,SI,BE,PL,UA,LU,DE,TR,DE,NL,DE,AT,FR,UA,AT,US,UA,US,ES,CZ,US,ES,US,DE,IT,DE,IT,LU,PL,NO,LV,PL,RO,DE,KW,UA,RU,SA,_,SE,US,DE,AT,PL,AT,SI,BE,ES,AT,DE,AT,IT,BE,LT,DE,PL,UA,DE,PL,RU,UA,FR,_,GB,RU,NL,DE,LV,AT,SE,SI,UA,DE,AT,FI,DE,NL,HU,FI,DE,RU,UA,PL,BE,AT,HU,DK,CH,GR,DK,GB,UA,DE,RU,BE,RU,AT,CH,PL,UA,DE,CD,UA,FI,UA,DE,PL,UA,ES,AT,BE,RU,BG,DE,GB,RU,PL,CH,DE,FR,RU,PL,NL,UA,SI,FR,NL,GB,DE,IT,FR,_,ES,MT,UA,NL,BG,GB,BR,UA,LV,DK,UA,TR,UA,RU,UA,DE,NL,AT,UA,SK,SA,NL,BE,DE,DK,US,HK,DE,TR,BG,FI,PL,NL,RU,GB,BE,UA,RU,RO,UA,TJ,BE,FR,RO,IT,PL,GB,PL,DE,JO,JP,NL,GB,DE,GB,PL,GB,PL,PT,DE,RU,IT,KZ,UA,ES,DE,UA,NL,DK,ES,GB,IT,DE,TR,GB,TR,RU,NL,IE,UA,GB,UA,RU,AT,_,BG,GB,RU,FI,NL,BE,SK,DE,SE,DE,UA,SE,MX,FI,RO,ES,ID,TR,UA,CZ,_,PL,SE,NL,RU,RO,DK,DE,HR,SE,PL,DE,ES,_,UA,DE,CZ,RU,GB,PE,UA,SI,BG,ES,DE,GB,IL,CH,UA,DE,UA,NL,CH,ES,DE,SI,HU,BE,DE,GB,BE,DE,GB,RO,CH,IR,AT,DE,UA,LV,DE,RU,CN,GB,JP,AU,GB,DE,GB,DE,GB,DE,GB,JP,AU,JP,GB,JP,AU,GB,ES,GB,ES,GB,ES,GB,FR,GB,FR,GB,DE,GB,AU,JP,GB,JP,GB,JP,GB,RU,DE,NL,AE,GB,RU,FR,JP,DE,US,HK,US,CA,BR,US,DE,US,KR,HK,JP,PT,US,JP,IN,GB,JP,DE,CA,DE,US,DE,BR,US,FI,AU,HK,SG,DE,PL,RO,PL,FI,PL,FI,SK,GB,HU,BG,PL,RO,CZ,PL,SC,AU,JP,IE,SE,IE,GB,IE,BE,DE,NL,DE,SA,KR,US,NL,AE,BR,US,JP,GB,US,KR,RU,ES,KE,EE,ID,CZ,EE,CZ,GR,RU,SY,DE,US,DE,PE,BR,RU,DE,PL,RU,PL,ES,SY,RU,ES,RU,DE,IN,ES,SY,RU,DE,RU,ES,PE,TR,PE,RU,HU,RU,ES,SY,RU,ES,SY,RU,SY,ES,RU,SY,DE,ES,SY,DE,ES,SY,RU,US,TR,EE,NL,GB,CZ,SE,SY,RU,ES,RU,SY,DE,RU,SY,RU,ES,DE,RU,ES,DE,SY,RU,SY,RU,SY,TR,DE,PE,CZ,DE,SY,US,PT,KE,SY,FR,DE,PS,SY,US,ES,PT,ES,US,ES,PT,ES,GB,ES,PT,ES,DE,ES,US,GB,ES,GB,ES,GB,CH,GB,HU,GB,DE,GB,FR,GB,CH,IR,CH,HK,FR,CH,DE,MD,US,CH,IT,CH,FI,PL,CH,IT,CH,DE,CH,DK,CH,ES,US,DE,FR,CH,RU,CH,LT,CH,IT,CH,LT,CH,LT,CH,US,CH,JP,CH,PT,AT,SI,IT,US,FI,EE,SI,DE,PL,CH,LT,DE,SI,FR,PL,DE,BG,DE,CH,RU,SE,PL,CH,SE,PL,DK,LV,CZ,RU,DE,RU,DE,RU,PL,GB,UA,DE,RU,FR,DE,IL,UA,AT,GB,DE,CA,RO,IE,BE,SE,RO,DE,AT,CZ,GB,DE,SG,PL,RO,DE,DK,TR,DE,PL,DE,IT,RO,AT,DK,HU,FI,HU,RU,UA,PL,UA,RU,CZ,DE,IT,DE,FR,TR,RU,DE,UA,LV,RO,GB,RO,FI,NL,PL,CH,SE,US,NL,RU,UA,FR,UA,NL,IT,CH,FR,TR,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,IR,NL,DE,NL,DE,PL,NL,DE,NL,DE,NL,DE,NL,DE,NL,PL,DE,NL,PL,NL,DE,IR,NL,DE,NL,DE,NL,DE,PL,NL,DE,NL,DE,NL,DE,NL,RU,NL,BG,FI,PL,FR,FI,SE,FI,GB,AM,RU,HK,FI,PL,FR,IR,RU,_,US,DE,BE,FR,FI,DE,PL,FI,RU,RO,NL,PL,SE,CH,FI,DE,FI,US,DE,NO,CH,PL,RU,PL,SI,FI,GB,FI,US,ES,FI,DE,FR,MX,FI,RU,HU,NL,SC,RU,SI,FI,IL,RU,HU,NL,RU,DE,FR,UA,SE,FI,DE,GB,IT,NL,JP,CZ,FI,RO,NL,RO,HU,PL,DK,NL,UA,RO,NL,GB,ES,RU,UA,GB,NO,SA,RO,FI,IR,RO,FI,US,RO,US,PL,SE,CA,RU,FI,RO,US,RO,FI,UA,IR,RU,DE,FI,DE,FI,DE,PL,FI,NL,DE,FI,RU,DE,FI,PL,FI,PL,GB,FI,GB,FI,UA,FI,RU,GB,FI,RU,RO,PL,DE,GB,FI,DE,FI,GB,FI,AZ,FI,IM,IT,RU,CZ,FI,CZ,ES,RO,CZ,ES,CZ,FR,BE,LU,BE,NL,DE,RU,JP,GB,US,ES,NL,ES,IT,TR,RU,DE,SK,DE,GB,UA,SG,KZ,US,RU,US,IR,DE,US,JP,DK,IT,EE,FR,ES,UA,US,PH,ES,DE,AT,DE,ES,NL,ES,DE,NL,DE,CH,US,TR,BG,ES,DE,ES,TR,ES,DE,RU,NL,CA,DE,US,NL,IE,FR,DK,NL,DE,NL,US,DK,US,DK,MX,NL,US,DK,US,DK,IN,DK,AU,DK,US,NL,TW,JP,US,DK,TW,US,CA,US,DK,CA,US,DK,SE,GB,NL,US,DK,GB,DK,GB,DK,GB,DK,NL,AT,NL,US,NL,BE,RU,PL,DE,UA,GB,CZ,ES,RU,PL,NO,CZ,GB,UA,RU,GB,CZ,PL,CZ,LT,PL,CH,UA,PL,RU,UA,IT,DE,RU,IR,BG,IT,PL,RU,SK,PL,RU,DK,FR,ES,RU,UA,VN,RU,SE,RU,IT,UA,RU,GB,NO,UA,PL,RU,MT,IL,DE,NL,PL,DE,GB,FR,NO,AM,GR,AT,GB,TR,GB,TR,SE,RU,DE,PL,UA,GB,BG,RU,RO,DE,PL,BY,DE,PL,ES,UA,AT,PL,DE,PL,BG,FR,DE,FR,SE,CH,GB,PL,UA,DE,PL,HU,GB,IR,CZ,UA,RU,DE,AE,US,NL,US,DE,US,GB,RU,KZ,RU,KG,RU,UA,GB,RU,ES,GB,DE,UA,ES,AT,DE,NO,DE,FR,NO,NL,NO,PL,RU,PL,DE,NO,NL,GB,NO,GB,US,PL,NO,DE,NO,US,NL,BG,US,BG,US,MY,US,ES,FR,NL,UA,AT,FI,FR,NO,FR,NO,HR,LT,NO,NL,FR,_,NO,GB,FR,NO,DE,TR,NO,NL,NO,RU,DE,NO,GB,NO,RU,SE,ES,RU,US,TR,US,UA,DE,UA,RU,GB,DE,SE,IT,SE,GB,NO,DE,VG,RU,RO,VG,DE,GB,UA,NO,CY,VG,IN,CY,NO,CZ,NO,SK,IT,NO,CA,BG,PL,NO,FI,NO,VG,DE,DK,NO,PL,NO,SE,BG,RU,NO,DE,IQ,HU,BG,BE,FI,KR,NO,RU,NO,ES,NO,SE,NO,EE,FI,NO,FR,DK,GR,DK,GB,ES,DK,HK,DK,KZ,DE,RU,IT,DK,GB,DK,TR,DE,DK,TR,GB,AT,GB,BG,DK,GB,DK,GB,CH,DK,DE,PL,DK,BE,PL,TR,DE,CY,DK,IT,IR,RU,BR,US,FI,US,RO,DE,UA,RU,DE,DK,RU,DK,IL,RU,FI,UA,NL,DK,GR,DE,AT,US,ID,US,ID,KZ,US,DK,FR,US,DK,NL,DK,HU,GB,IE,DK,PL,IT,AT,RU,DK,US,NL,TR,NL,MD,IL,LB,SK,DK,IL,CH,BR,TR,UA,FR,RS,MX,ES,RU,US,DK,NL,FR,DK,US,DK,GB,DK,NL,BE,DK,GB,NL,DK,AL,ES,DK,GB,UA,GB,ES,ID,IL,DK,IT,GB,DK,NO,PL,GB,ES,DK,IT,DE,NL,DK,RU,DK,PL,ES,DK,DE,FR,SE,FI,CH,AL,DK,GB,DE,US,GB,US,UA,RU,DE,RU,NL,GB,PL,RU,US,RU,DE,RU,DK,PT,GB,NL,ES,TR,DE,TR,JP,GB,EE,GB,AT,RU,GB,CH,GB,SE,UA,GB,PL,UA,DE,FR,PL,RO,SI,PL,RO,NL,US,RU,DE,FR,RU,FR,RU,FR,DE,_,FR,PL,BE,DE,GB,NL,RU,FR,NL,US,RU,FR,RU,GB,PL,BE,DE,RU,NL,CZ,IE,HK,AT,GR,FR,CH,AT,GB,CH,DE,BG,GB,PL,CZ,FI,DE,LU,RU,HK,DE,LU,RU,FR,UA,IT,PL,UA,IT,LU,RU,GB,IT,RU,US,CH,FR,BE,TR,NL,IT,IL,LI,SE,NL,IT,RU,GB,RO,UA,SG,JP,DE,FR,GB,CH,IT,RU,PL,FR,BR,RU,DE,PL,CZ,DE,RU,CH,RU,RO,CA,DE,LV,GB,HU,PL,IT,RO,RU,NL,RU,GI,BG,RU,NL,NO,RU,FR,SI,TR,NL,RU,DE,IT,FR,RU,FR,NL,IL,DE,DK,DE,PL,UA,CH,FI,UA,IL,GB,NL,DE,RU,CH,FI,RU,FR,NL,RU,PL,RU,GB,RU,UA,RU,KW,UA,GB,UA,RO,NL,GB,RO,UA,PL,IT,CH,DK,RO,LU,RU,IT,SE,LV,GR,NL,RU,DE,MD,RU,DE,CZ,DE,CH,UA,SA,GB,LV,DE,BG,SC,RU,DE,IM,PL,RU,LT,RU,UA,GB,US,RU,GB,RU,IL,FR,PL,RU,GB,NL,UA,IT,NL,IL,RU,KZ,PL,AT,NL,DE,PT,DE,UA,GB,NL,GB,US,UA,DE,GB,NL,PL,GB,NL,US,GB,NL,GB,NL,FR,DE,RU,RO,DE,FR,RU,AU,IR,US,RO,ES,CA,HU,NL,DE,US,DE,NO,GB,US,NL,RU,DE,GB,NL,KZ,RU,FR,NL,FR,BY,NL,GB,NL,FR,CA,HK,GE,NL,UA,NL,UA,ES,GB,DE,NL,US,IT,KG,IR,NL,IT,DE,UA,IT,NL,IT,NL,FR,NL,DE,US,GB,NL,FR,NL,PL,NL,FR,NL,FI,NL,ES,HU,AT,DE,NL,FR,IE,US,GB,ES,UA,SE,DE,IE,PL,ES,UA,ES,IE,GB,DE,SE,IE,GB,NL,US,IE,PL,RU,HU,RU,IT,SE,RU,PL,FI,ES,RU,FR,IT,FR,IT,FR,RO,IT,PL,UA,AT,LV,BG,FR,CH,RU,AT,PL,UA,DE,PL,RO,BG,PL,HU,NL,RU,AT,NL,GB,NL,DK,LV,AT,DE,NL,UA,SI,NL,UA,FR,LV,NL,IR,AZ,IT,AT,BE,US,FR,ES,PL,RU,IT,GB,ES,LU,NO,BG,GB,IT,US,UA,NO,LV,IT,RU,GB,PL,IT,UA,IT,CZ,SE,US,SE,GB,SE,GB,SE,IT,SE,IL,SE,NO,SE,BR,ES,SE,FI,AT,ES,IL,DE,US,AT,DE,FR,UA,RO,ES,DE,GB,CY,UA,AT,IR,RO,RU,DK,NL,BG,PL,AT,CY,AT,DE,VG,AT,FR,DE,GR,PL,TR,AT,DE,UA,AT,UA,AT,CH,IN,AT,PL,BE,US,AT,PL,LB,GB,SK,PL,GB,RU,IT,UA,RU,DE,SE,US,NL,KZ,PL,GB,AL,RU,IT,RU,CH,MY,HK,NL,DE,NL,US,GB,MX,GB,RU,RO,US,RU,DK,US,NL,FR,PL,US,ES,NL,RU,AT,DE,PL,NL,CA,GB,AE,MA,CH,BH,NL,CA,AT,RU,NL,IT,MT,KW,JO,BH,LB,GB,_,LB,HU,DE,HU,KW,DE,SE,DE,KW,HU,GB,DE,PL,RU,SE,GB,AT,CH,SE,FR,DE,RU,PL,UA,FR,NG,_,IE,RU,RO,PL,GB,PL,DE,GB,DE,LT,IT,NL,DK,DE,UA,RO,SE,GB,PL,FR,US,DE,IT,DE,PL,DK,RU,IR,FR,UA,_,GB,NL,BE,AT,FR,RU,NL,GB,TR,FR,LT,RU,AT,FR,JO,NL,DE,SI,CH,GB,FR,DE,GB,US,BE,FR,DE,GB,DE,BE,DE,US,GB,PT,_,GB,DE,US,GB,UA,GR,DE,RO,CA,RO,BG,GB,CA,SE,BG,AU,DE,PL,GB,TR,RU,PL,GB,CH,IT,GB,PL,GB,CH,UA,NL,GB,US,NL,DE,PL,GB,SK,BG,IT,DE,PL,BG,IT,GR,RU,GB,DE,UA,US,UA,US,UA,US,UA,US,UA,US,UA,US,UA,KZ,RO,_,DE,IT,RO,GB,MA,DZ,RU,AT,RU,UA,NL,SI,SA,PL,UA,GH,DE,IQ,FR,DE,_,CH,BG,IQ,DE,AT,BG,DE,FR,US,RU,BG,AT,BE,HU,GH,SE,GB,DE,HR,FI,FR,AT,IT,FR,CH,AT,ES,AT,SK,RU,SE,US,BG,PL,RU,RO,PL,RU,UA,BE,AT,GB,IT,BG,FR,IL,SE,UA,RU,UA,KW,FR,DK,PL,IT,PL,FI,RU,FI,FR,DE,RO,PL,UA,NL,RU,UA,DE,CH,GB,PL,UA,SE,RU,DK,NO,RU,US,GB,IR,US,CZ,PL,FR,AT,GB,FR,PL,LT,RO,DE,RU,HK,LV,NL,PL,HK,SE,HU,DE,FR,NL,RO,AT,SK,CH,GB,PL,NL,IR,US,DE,UA,US,NL,RS,IE,DE,CH,GB,DE,RU,DE,GB,NL,RO,GB,RU,GB,TR,FR,DE,UA,NL,UA,GB,NL,UA,TR,GB,FR,RU,FR,BE,CH,PL,TR,RU,PL,GB,DE,CH,PL,NL,TH,RO,LV,SE,HR,DK,UA,GB,SI,SE,LT,DE,RU,UA,IT,NL,PL,NO,DE,UA,CH,NO,FR,CH,LV,DK,PL,AT,NO,DE,FR,PL,FR,PL,NO,CH,BG,NO,RU,DE,RO,NL,CZ,GB,CZ,SA,UA,DE,RU,CZ,DE,RO,UA,FR,RU,MC,KZ,US,CY,SE,PL,RO,GR,DE,FR,IT,RU,LT,CH,PL,FR,PL,FR,DK,IT,AT,JE,FR,RO,SI,IT,GB,NL,DE,GB,UA,GB,LV,BE,GB,IR,NO,FR,CZ,UA,RO,UA,CH,RU,GB,SE,UA,IT,UA,SI,AT,FR,NL,UA,AT,ES,SI,CZ,RU,_,BY,PL,UA,RU,GB,CH,GB,RU,NL,CY,GB,PL,UA,PL,_,RO,_,DE,CY,DE,UA,GB,RO,_,SE,_,RO,_,GB,RO,NL,GB,PL,SI,GR,PL,DE,IT,BG,AT,GB,UA,DE,HU,IR,GB,UA,GB,NL,US,GB,DE,RS,AT,SI,UA,NO,UA,RU,RO,DE,BG,FI,US,BE,FR,GB,US,BE,TR,DK,DE,UA,RO,NL,DE,IT,NL,EE,IN,CH,GB,BE,NL,IT,FR,GB,US,NL,IE,FR,NL,GB,US,DE,BG,NL,DK,FR,IE,UZ,IE,NO,DE,PL,UA,DE,TR,FR,ES,AT,DE,FR,RO,DE,SG,DE,GB,LI,AT,DE,IE,GB,RS,GB,SE,GB,DE,RS,GB,PL,RS,JO,RS,US,FR,RO,RU,PL,US,NL,CH,FR,PL,RU,GB,FR,PL,RU,CZ,RU,PT,FR,PS,JO,RU,RO,GB,ES,CH,DE,RU,IE,MD,IE,IN,US,FR,ID,BR,US,BR,IN,FR,GB,AT,EE,BG,ES,UA,CA,RO,PL,FR,DK,FR,HK,AT,UA,NL,PL,NL,DE,IT,UA,DE,FR,GB,AT,CH,OM,GB,IT,JP,IT,FI,NO,FI,BE,FI,DK,FI,SE,FI,CH,NL,FI,BE,FI,SE,FI,NO,LT,SE,LV,SE,LT,SE,LT,SE,LT,SE,_,GR,PL,DE,FR,DE,NZ,PL,GB,PE,GR,PL,HK,TR,GR,TR,GR,DE,GR,UA,GR,SI,DE,GR,HU,GB,CH,TR,GR,TR,MQ,PL,AT,UA,FR,TR,DE,FR,GR,PL,NO,PL,RU,DE,PL,PT,GB,PL,RU,DE,GB,GR,US,RU,NL,RU,BE,US,DE,PL,DE,CY,SE,IL,DE,GR,DE,LT,GB,LT,DE,DK,PL,IT,DK,LT,ES,AT,GB,SI,GB,IT,ES,RU,DE,SI,PL,GB,IT,GB,IQ,PL,GB,NL,RU,GB,RO,GB,BE,UA,RU,PL,RU,LT,NO,FR,BE,FR,NO,LU,FR,LU,US,NO,FR,LU,FR,LU,FR,LU,FR,SO,FR,LU,FR,LU,FR,US,LU,FR,US,NO,GF,US,FR,CH,FR,NO,FR,CH,FR,NO,FR,CF,FR,US,NO,US,NO,ES,GB,NO,DE,NO,US,NL,FR,NO,NL,US,NO,BE,SE,NL,DE,SE,NL,SE,SG,US,SE,RO,GB,SE,US,FR,SI,GB,NL,SI,CH,FR,GB,SE,BE,PL,SE,DK,AT,PL,DE,GB,BE,GB,NL,RS,FR,RU,EE,NL,AT,US,MD,BR,CH,CI,SE,DE,BE,CH,RU,FR,IR,RU,DE,RO,RU,CH,FR,GB,RU,RO,CH,FR,US,AE,TR,US,JP,CH,GB,RU,UZ,CA,LI,FR,IL,CZ,PL,NL,FI,FR,PL,IT,NL,CH,PL,UA,SE,FR,BA,CH,FR,NL,RU,CH,RU,GB,LT,CH,PL,CH,PL,RU,GB,BR,TR,FR,GB,CH,IT,UA,DK,AE,RO,CH,RU,TR,RU,CH,IT,CH,FR,CH,DK,PS,CH,HU,RO,MD,RO,GB,DE,HK,SG,RO,HU,EG,IT,UA,RU,NL,PL,CH,LT,HK,IT,PL,GB,FR,AT,HK,RO,GB,PL,CA,HK,UA,PL,DE,GB,UA,HK,GB,PL,DE,CA,SE,SA,EG,US,FR,PL,ES,FR,RU,DE,FR,DE,SG,LB,DE,HU,GB,DE,NO,UA,IT,PL,CH,RO,FR,UA,RU,DE,PS,PT,RU,US,GB,FR,UA,RU,DE,AT,TR,UA,PL,AT,AU,GB,AT,US,UA,MT,AE,HK,PL,AT,MX,DK,AT,IR,AT,PL,AT,CH,AT,RU,AT,PL,GB,UA,GE,UA,EE,CA,RU,US,UA,IR,DE,FR,GB,AT,GB,AT,SE,DE,AT,RU,FR,AT,DE,SI,BG,RO,AT,GB,FR,SE,RU,US,NL,AT,BG,PL,FR,AT,FR,BG,AT,FR,ES,DE,AT,NL,ES,NL,CH,NL,AT,ES,US,AT,NL,GB,UA,AT,UA,FR,HR,RU,AT,CZ,RU,CH,DE,FI,RO,MD,RO,NL,RO,RU,IT,RU,DE,RU,BY,RU,US,RU,US,RU,SC,RU,MD,US,FI,RU,SC,RU,US,RU,FI,DE,RU,DE,SC,US,RU,FR,US,NL,FR,RU,US,RU,US,RU,US,RU,US,GB,FR,DE,RU,US,RU,NL,RU,DE,RU,NL,RU,HK,RU,SC,RU,US,RU,US,RU,US,AT,RU,US,DE,CZ,SE,IT,SE,US,SE,CL,NL,SE,CZ,SE,PT,GB,DE,ES,FI,DE,PL,UA,PL,TR,DE,NG,UA,PL,RU,NL,RU,ES,RO,DE,PL,GB,RU,IT,GB,IT,DE,IT,UA,DE,PL,UA,IT,DE,RU,GR,RU,ES,DE,RU,EE,BE,IT,CH,ES,FR,NL,AT,CH,NL,DE,GB,PL,IT,DE,BG,ES,RU,PL,DK,IL,PL,AE,DE,AE,DE,PL,DK,IL,LV,UA,DE,GB,AT,NL,OM,NL,DE,CZ,DE,GB,ES,DE,CH,RU,DE,GB,PL,AT,PL,DK,IT,PL,RO,UA,FR,PL,GB,RO,HK,US,NL,DK,PL,DE,IL,GB,NL,FR,PL,UA,RO,NL,RU,RO,PL,RO,IT,UA,PL,GB,HU,HK,KR,UA,JP,US,DE,RO,BG,DE,NL,SG,DK,UA,CA,GB,RO,CZ,GB,HK,UA,MD,PL,DE,NL,AT,FR,RO,US,FR,CH,GB,IT,PL,AE,NZ,BE,RO,GR,UA,RO,CH,NL,PL,AT,UA,RO,SE,RU,UA,IN,UA,FR,RU,DE,CA,AT,UA,RO,UA,DE,GB,FR,GB,ES,FR,GB,FR,GB,IE,GB,CH,GB,NO,GB,FR,GB,ES,GB,NL,GB,FR,GB,ES,DE,GB,FR,GB,CH,GB,FR,CH,GB,FR,GB,ES,GB,ZA,GB,FR,GB,DE,GB,DE,GB,DE,GB,NL,BE,GB,AE,GB,DE,GB,ES,GB,CH,GB,DE,GB,CH,DE,NL,FR,GB,NL,GB,DE,GB,FR,GB,NL,GB,CH,GB,IE,GB,NL,GB,FR,GB,SE,GB,FR,DE,US,NL,ES,RU,PL,BE,IL,SE,RO,RU,DK,NL,RU,GB,IE,DE,GB,RU,GB,AT,NL,RO,DE,SE,DE,PT,IR,FI,SA,RU,AT,RU,PL,GB,HR,PL,MD,FR,PL,RU,PL,RU,SI,DK,UA,SG,ES,UA,NL,PL,RU,PL,RU,FR,RU,IQ,DE,SE,NL,CA,DE,PL,SE,ES,RU,FR,RU,IR,RO,RU,IR,NL,PL,CY,PL,NL,FR,DE,_,GB,GR,GB,SE,DK,GB,MD,DE,BE,RU,SI,PL,SE,NL,FR,PL,FR,UA,PL,SG,UA,DE,RU,AT,DE,RU,_,RS,RU,GB,RU,SE,IT,FR,US,SE,IS,US,IE,TR,GB,BE,CZ,DE,CZ,BE,CH,US,CH,RU,GB,CH,US,NL,CH,LI,CH,RU,CH,UA,RU,CH,RU,ES,CH,RU,US,KR,RU,CH,CA,FR,CH,RU,CH,IR,CH,GB,IR,CH,RU,CH,RU,CH,RS,CH,RU,NL,US,CH,RU,CH,RU,CH,GB,CH,GB,CH,GB,CH,US,CH,JP,CH,GB,CH,GB,CH,NO,CH,NO,CH,NO,CH,ES,NL,FR,CH,NO,CH,RU,ES,RU,CH,RU,CH,MF,FR,MF,FR,YT,FR,YT,FR,GQ,FR,GP,FR,GP,FR,GQ,FR,GQ,FR,GB,FR,RE,FR,RE,FR,US,FR,RU,AL,RU,SE,ES,IT,JP,DE,IT,BG,DE,GB,ES,GB,CA,GB,CA,GB,DE,SE,GB,UA,BE,GR,DE,AT,IL,RU,GB,DE,NL,UA,AT,UA,GR,RU,TR,RO,RU,UA,DE,PL,IT,RO,UA,PL,RU,KZ,TR,NL,TR,SG,TR,DE,GB,LT,GR,NL,BE,LV,FR,AT,DE,CZ,SA,IT,CH,LT,DE,DK,LU,AT,SM,NL,BG,ES,FR,BE,TK,LU,BE,SK,DK,LV,EE,UA,GB,SE,KZ,SE,PL,AT,SE,RU,AT,GB,FI,HR,UA,DE,PL,GB,KZ,RU,GB,RU,KZ,PL,RO,TR,UA,DK,IT,SE,DE,IT,CH,UA,IT,TR,DE,RU,CY,SE,UA,DE,UA,DE,FR,PL,DK,GB,UA,GB,IT,LT,DK,RU,DE,HU,DE,FR,PL,IT,NO,DE,PL,CH,RO,SI,FR,RU,DE,PL,DE,GR,DE,UA,KZ,RO,SI,NO,DE,NL,FR,IE,NL,CH,PL,UA,DE,TR,LT,RO,BE,PL,TR,DE,RU,GB,PL,CH,FR,GB,NL,DE,SE,UA,RU,DE,TR,AT,TR,HR,SE,IE,SE,CH,AT,SE,DE,PL,_,BG,DK,UA,CH,GB,PL,IE,LV,IT,KZ,SE,DE,IT,FR,NL,PL,GB,RO,DE,FR,SK,PL,RU,PL,GB,AL,GB,AM,PL,SE,IR,RU,SK,AT,UA,IT,RU,CH,GB,RO,RU,RO,RU,SK,DE,IT,RO,IT,GB,DE,GB,AU,US,SK,SE,CZ,CH,SK,TR,UA,GB,UA,PL,SE,RU,PL,TR,PL,RU,FR,NL,BE,AT,DE,TR,EE,GB,SE,RU,SK,PL,TR,DK,LV,SK,RU,TR,CH,PL,SE,RU,PL,HR,FR,SE,FR,NL,FR,IT,SE,ES,FR,CA,IE,PA,ES,KZ,PL,GB,UA,DE,FR,ES,FR,IT,RU,FR,TR,NL,GB,DE,RU,EE,GB,FR,US,GB,RU,PL,IR,FR,GB,SG,PL,JP,ES,CY,ES,FR,CY,IR,GB,JP,US,IR,DE,US,FR,IR,FR,ES,RU,BG,DE,US,DE,ES,IN,HR,FR,NL,FR,GB,FR,RU,FR,SG,HK,MX,NL,HR,FR,HU,RU,SE,NL,NO,LU,DE,CH,DE,GB,NL,GB,FR,HU,CH,NL,FR,US,FR,NL,IT,IN,US,FR,HK,SG,SE,NL,LT,NL,SY,DE,FR,DE,FR,IR,PL,NL,ES,FR,AT,IR,FR,TR,FR,IR,FR,IR,TR,RO,DE,US,GB,CH,IT,CH,TR,FR,RS,TR,FR,DE,PL,US,RO,RS,DE,IT,GB,DE,GB,FR,CH,DE,RU,RO,PL,DE,RO,RU,_,PS,DE,BE,DE,PT,RO,UA,GB,SE,SI,NO,DE,FR,PL,SI,SE,GB,PL,CH,GB,DE,AT,GB,FR,GB,QA,BE,LU,BE,LU,BE,LU,BE,LU,BE,DE,LV,BG,LV,PT,PL,CH,LV,GB,SE,PT,SE,LV,PL,RU,IE,GB,FR,UA,BE,BG,GB,RU,UA,DE,IE,BG,AT,BE,AT,UA,PL,RU,ES,FR,IL,CH,RO,FR,RO,RU,DE,IL,DE,GB,SI,DE,RU,BE,NL,US,NL,RU,ES,UA,FR,RU,UA,RU,DE,RU,FI,RU,NL,CZ,ES,UA,DK,RU,FR,CZ,GB,DE,RU,GB,DE,NL,IT,DE,MC,UA,PL,IT,CY,RO,PL,RU,GB,SI,KZ,GB,CH,UA,RU,GB,NL,CH,PL,NL,UA,PL,CH,IR,AT,RO,SG,FR,KE,BG,PL,RU,UA,DE,SE,GB,PL,IR,KE,CH,DK,DE,BE,UA,RO,SE,CH,DE,LV,US,CH,DE,RO,DE,LV,RU,FR,IE,LV,US,BR,DE,BE,UA,DE,TR,DE,RU,LV,DE,FR,DE,FR,IT,IE,PL,RU,GB,NL,GB,NL,BE,GB,FR,DE,FR,NL,GB,NL,GB,DE,DK,AT,DE,HU,BE,NL,GB,BE,GB,BE,NL,BE,GB,CH,BE,NO,GB,IE,NL,GB,CH,GB,NL,GB,BE,GB,DE,PL,NL,CH,AT,FR,BE,NL,GB,BE,GB,BE,GB,AT,DE,GB,DE,NL,GB,NL,BE,DE,FR,GB,FR,CH,ES,GB,ES,FR,PL,PT,PL,ES,_,AT,UA,RU,CH,DK,ES,CH,DE,PL,CH,GB,CH,DE,AT,CH,DE,BE,PL,GB,CH,US,PL,CH,PL,CH,PL,UA,GB,CH,NL,CH,NL,CH,GB,CH,DE,GB,SA,BE,DE,FR,GB,CH,CZ,RU,UA,RU,CH,DE,BG,BE,FR,NL,FR,NL,FR,BE,NL,BE,NL,DE,ES,NL,GB,ES,GR,NL,DE,BE,NL,ES,DE,BE,GB,BE,RU,NL,US,DE,US,GB,NL,SE,DE,SE,AU,SE,RO,SE,DE,GB,DE,NL,DE,GB,IT,TR,NL,MD,GB,TR,FR,UA,RU,DE,BE,DE,HK,US,ID,SG,TR,GB,IT,GB,HK,CH,CZ,UA,SG,RU,PL,ES,UA,DE,ES,DE,ES,SE,DE,ES,UA,DE,GB,PT,DE,ES,NZ,DE,ES,DE,PL,DE,PL,DE,ES,PL,DE,SE,ES,DE,PL,DE,ES,DE,RS,CH,ES,DE,GB,ES,DE,GB,DE,EE,DE,SE,NO,DK,LV,IT,US,SE,NL,SE,NL,SE,DE,DK,DE,SE,CH,AT,FR,GB,PL,GB,TR,GR,RU,PL,GB,RO,PL,UA,TR,BG,RU,DE,TR,GR,FR,DE,HR,AE,CA,UA,PL,RU,DE,PL,UA,RS,NL,NO,GB,DE,NL,ES,US,GB,LB,NL,DE,RU,UA,GB,FR,US,GR,BE,RU,ES,RU,DE,RU,DE,NL,RU,DE,RU,BR,HK,PH,NL,US,PL,OM,DE,NL,TR,NL,TR,RU,IR,BE,GB,NL,DE,GB,US,PY,NL,FR,UA,RU,GB,LU,RU,BG,FR,GB,ES,NL,US,FR,NL,DE,NL,UA,NL,ES,US,DE,NL,DE,NL,RU,US,IR,CZ,SA,HU,LV,US,PL,DE,GB,SE,KZ,GB,RU,SE,RU,RS,US,IE,GB,US,UA,SE,MD,DE,KZ,GB,CY,UA,IT,RU,UZ,RU,US,NL,VN,IT,GB,US,DE,GB,CZ,NL,TR,FI,UA,GB,PL,RU,DK,RU,PL,RU,PL,NL,IL,PL,UA,RU,UA,RU,MD,PL,UA,RU,BE,UA,PL,SI,NL,IT,SE,GB,RS,UA,GB,RU,UA,DE,RU,TR,BG,TR,RU,GB,BG,GB,PL,UA,RU,PL,DE,RU,UA,PL,GB,RU,PL,DE,RU,PL,LT,RU,GB,DK,CH,IL,GR,NL,EE,TR,DE,UA,BE,NL,US,IT,US,GB,NL,FR,NL,DE,US,NL,GB,NL,BE,AT,AU,GB,PL,NL,US,NL,SE,DE,NL,PL,DE,HU,HK,DE,FI,NO,IT,UA,FR,DK,TR,GB,DE,ES,CY,NL,ES,DE,UA,PL,ES,GB,DE,RO,SE,UA,DK,UA,FR,DE,AM,GR,PL,DE,CH,NL,ES,GB,DE,SK,NL,GB,RU,AT,GR,DE,ES,DE,AM,DE,GE,RU,NL,TR,RU,DE,PL,NO,PL,MD,PL,UA,PL,GB,FR,LT,SG,DE,LT,EE,KW,IL,TR,PL,IS,GB,PL,TR,DE,RU,UA,DE,RU,AE,DE,TR,DE,UA,DE,TR,GB,DE,IQ,DE,NL,MX,GB,US,ES,IR,MD,NL,UZ,DE,CH,DE,NL,KZ,FR,NL,US,DE,US,DE,GB,US,DE,NL,US,UA,MY,TH,FR,DK,UA,RU,GB,PL,TW,GB,CZ,DE,IQ,IR,US,DE,IQ,DE,US,DE,CH,DE,UA,CZ,IQ,DE,US,NL,CH,DE,CH,DE,_,DE,UA,DE,CH,DE,UA,DE,CH,UA,DK,FR,PL,IT,CH,GB,SG,FR,DE,FR,DE,HK,DE,GB,TR,RU,TR,DE,UZ,IT,US,UA,JP,NO,UA,ES,JP,GB,RS,LT,ES,RU,US,KZ,RU,KZ,ES,UA,EE,US,HK,RS,SE,BE,RU,GB,SA,RO,SA,GB,SA,ES,FR,NL,IT,GB,SA,ES,NL,GB,NL,GB,RU,FR,IT,NL,UA,RU,SG,AT,IE,RU,UA,NL,RU,BY,KZ,RU,GB,RO,CA,NL,GB,SI,GB,RO,UA,NL,DE,RU,GB,IR,SC,NO,GB,US,GB,RU,MD,RO,US,RU,GB,SG,GB,IN,GB,NL,US,GB,FR,DE,SA,HU,SA,PL,FR,RU,SE,RU,NL,PL,RU,PL,RU,LT,RU,CH,US,IR,AT,UA,RU,PL,NL,GR,DE,PL,DE,IR,GB,CH,MX,GB,UA,GB,DE,PL,CH,PL,UA,SE,FR,GB,IQ,BG,GB,NL,GB,FI,ES,GB,US,JP,GB,AU,GB,US,SE,SG,US,GB,RU,FR,US,JE,NL,GB,MX,FI,ES,GB,US,IE,DE,US,NL,SG,IR,GB,UA,SE,NL,GB,DE,IT,PL,NL,DE,GB,AT,DE,AT,GB,US,NL,US,DE,IT,FR,IE,RU,DE,RU,GB,UZ,GB,RU,ES,RU,IL,DK,GB,ES,GB,ES,GB,NL,DE,SE,GB,NL,DE,BE,ES,GB,ES,RU,DE,US,DE,UA,GB,NL,RO,NL,IT,SE,GB,SE,SI,ES,SE,GB,SE,GB,DE,RU,UA,PL,DE,AT,GB,KZ,RU,GB,IT,GB,SE,GB,DE,GB,PL,DE,GB,US,GB,DE,NO,GB,PL,GB,AL,GB,IR,GB,RU,DE,PL,AT,GB,FR,GB,US,DE,NL,ES,US,DE,HR,GB,IE,DE,IE,GB,IT,GB,UA,FR,PL,TR,DE,IL,GB,CZ,UA,PT,US,ES,DE,RO,GB,US,GB,FR,PL,GB,ES,HU,GB,FR,ES,RO,DE,RU,GB,TR,RU,EE,GB,SA,PL,FR,PL,FR,JP,US,IR,US,RU,DE,SG,HU,DE,NL,FR,RU,ES,PL,JP,US,FI,GB,FR,NL,DE,LU,GB,US,HK,ES,GB,AT,RU,AT,DE,NL,GB,IL,DE,HU,TR,GB,US,GB,US,UA,AT,UA,SE,FR,IT,AT,RU,DE,UA,NL,US,NL,RU,IE,BR,UA,BR,GB,FR,BG,US,ES,DE,GB,ES,IT,CH,HU,PT,CH,SG,CH,DE,FR,DE,IR,NL,HU,DE,KZ,US,DE,FR,DE,AM,PT,SI,DE,RU,DE,RU,AM,DE,KZ,GB,IQ,GB,DE,GB,PT,DE,BE,DE,GB,IT,GB,DE,HU,GB,HU,DE,_,DE,PL,NL,DE,FR,DE,US,DE,UA,IQ,FR,DE,_,CH,DE,IT,RO,SI,CH,NL,GB,BE,GB,NL,DE,CH,NL,US,CH,BG,SG,DE,SE,IT,US,IT,BG,PL,US,GB,US,GB,HK,GB,DK,HK,US,DE,BA,HU,IR,RU,US,DE,HK,US,DE,GB,CH,BE,VG,ES,GB,ES,GB,ES,CH,CY,PL,IT,PT,RO,DE,CH,DK,GR,CY,FI,GB,US,HK,BE,GB,SE,GB,SE,GB,DE,GB,DE,CH,DE,GB,DE,GB,US,RO,DE,UA,DE,PL,UA,DE,PL,NL,GB,NL,CY,CH,NL,DE,UA,US,UA,US,BE,GB,UA,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,UZ,NL,DE,NL,GB,FR,DE,NL,DE,NL,DE,NL,DK,NL,DE,NL,DE,MY,DE,NL,DE,GB,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,GB,NL,GB,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,GB,IE,GB,IE,GB,IE,SE,FR,PL,AT,DE,AT,CH,IQ,RU,TR,RU,CH,AT,ES,IT,DE,ES,GR,NL,US,GB,AT,PL,DE,AT,HU,ES,IT,AT,HU,AT,DE,LU,DE,AT,IR,JP,NL,CH,BG,IE,US,SE,BG,ES,CZ,UA,GB,EE,UA,SE,NL,CH,PL,DE,RU,PL,FI,DE,NL,DE,GB,AT,CZ,DE,AT,CH,US,NL,DE,LU,AT,RO,ES,US,SI,DE,ES,GB,US,SI,DE,SI,DE,US,RU,NL,DE,MK,ES,DE,NL,US,DE,IT,DE,IT,DE,GB,US,NL,IT,DE,US,IQ,NL,DE,IT,NL,GR,PL,US,DE,NL,US,DE,NL,DE,RU,PL,DE,TR,RU,DE,TR,GB,CZ,NL,GB,AU,RU,DE,RU,RO,RU,NL,HK,NL,RU,DE,CZ,AT,FR,GB,DE,CH,SA,DE,PL,FR,DK,GB,GR,RO,CH,DE,_,PL,RO,UA,ES,PL,IT,GB,DK,DE,ES,FR,PL,BE,RO,CZ,DE,IL,RU,IT,PL,BG,FR,UA,GB,UA,ES,PL,TR,UA,GB,RU,GB,PL,GB,BE,DE,LU,NL,BE,UA,NL,CZ,HU,NL,RU,LV,SE,GB,AT,PL,NL,DE,CY,AT,RU,PL,GB,UA,RU,GB,BG,PL,FR,UA,RO,RU,PL,SI,RU,SE,RU,US,RU,AT,RU,NL,JP,PL,DE,UA,DE,NL,DE,GB,SI,RU,FI,IR,RU,CH,AT,RO,IL,CH,BE,CH,TR,RU,SE,DE,_,CH,PL,DE,IT,RU,DE,US,DE,GB,PA,AT,MD,CZ,IR,CZ,US,DK,IR,CZ,NO,PL,CZ,IR,CZ,IR,DE,NO,CZ,MY,CZ,AE,GB,PT,CZ,UA,CZ,AE,DE,CZ,GB,PL,UA,RU,FR,DE,NL,PL,NL,FR,NL,FR,RU,SG,FI,RU,NL,IT,PL,NL,DE,IQ,IL,GB,IN,NL,FR,NL,DE,PL,NL,DE,CA,DE,NL,PL,NL,IR,DE,NL,IR,RS,CH,NL,DE,US,ES,FR,GB,DE,IN,DE,NL,ES,IT,BA,NL,BE,NL,RU,IT,RU,JP,PL,UA,BE,NL,CZ,NL,DE,GB,RU,PL,SE,TR,RU,NO,DE,UA,PL,UA,DE,NO,RO,RU,KW,BG,US,UA,US,ES,RU,HU,UA,SE,IL,IM,RU,RS,UA,PL,KW,GB,DE,PL,EE,DE,SG,DE,GB,DE,GB,IT,DE,US,DE,UZ,DE,BY,MD,NL,RU,DE,NL,US,DE,FR,DE,US,DE,RU,DE,IT,RO,DE,GB,DE,RU,DE,RU,ES,MD,RU,DE,CZ,DE,BG,NL,US,DE,NL,US,IQ,ES,US,DE,RU,DE,RU,DE,SE,DE,CZ,CH,HR,US,UA,NL,IT,CH,IT,FR,CH,LI,IR,UA,DE,FI,US,CH,DE,CH,RU,CZ,GB,FR,CH,ES,GB,CH,PL,MD,DE,IL,BE,CH,DE,BE,NL,HK,NL,CH,CZ,CH,RU,FR,CH,RU,ES,RU,FR,DK,CH,RU,DK,CH,GB,CH,US,FR,SY,IT,ES,RU,DE,PL,ES,RU,TR,DE,BD,KZ,CZ,IN,NL,TR,DE,SY,DE,PT,TR,EE,GB,RU,US,IN,EE,PL,RU,PS,RU,ES,RU,ES,RU,SY,PS,MX,SY,RU,SE,SY,FR,PS,RU,IN,SY,PS,RU,PS,RU,PS,SY,GB,DE,KZ,DE,US,DE,HU,BG,DE,GB,DE,NL,DE,SE,GB,DE,NL,PL,NL,DE,ES,PL,DE,SG,LT,ES,DE,IR,DE,ES,AT,DE,FR,ES,SI,DE,RU,SI,FI,GE,GB,DE,ES,GB,DE,IT,DE,IR,NL,US,VN,ES,DE,CZ,US,UA,NL,RO,FR,SE,HK,US,GB,FR,DE,UA,CH,NL,RO,TR,SI,NO,GB,UA,DE,PL,SE,IE,RO,GB,NL,DE,GB,NL,GB,OM,US,PL,GB,DE,PL,BE,NL,IR,IT,GB,CH,GB,PL,IR,KZ,RU,FR,RU,DK,RU,GE,PL,UA,RU,NL,RU,NL,CZ,IE,ES,IS,RU,DE,AT,AU,DK,US,BG,MD,DE,AT,IN,PH,MX,DE,CZ,UA,PL,MK,NL,RU,NL,PL,RU,PL,UA,AZ,RU,GB,RO,FR,RO,NL,US,NL,AM,GB,LU,DE,TR,NL,PL,GB,SY,NL,DE,MK,TR,GB,DE,RO,SE,PL,GB,TR,PL,RU,UA,RU,BE,CH,GB,RU,NL,RO,GB,NL,GB,NL,IR,CH,BY,GB,RO,DE,GB,NL,UA,GB,TR,CA,IL,IR,GB,TR,ES,IT,BY,GB,UA,GB,NL,GB,ES,GB,DE,US,NL,DE,NL,RU,GB,FI,RO,GB,RO,NL,GB,UA,GB,SA,SE,GB,NL,ES,BR,CH,US,GB,US,DK,GB,FR,GB,US,GB,FR,GB,ES,GB,IT,GB,US,DK,DE,GR,NL,GB,FR,NL,GB,DE,AT,GB,PT,CZ,DE,US,DE,ES,GB,PL,BG,RU,DE,GB,IT,ES,CH,CZ,RU,GR,NO,DE,CY,DE,US,DE,PT,GB,RU,KZ,RU,FI,RU,SE,CH,SE,SG,JP,SE,NO,SE,RO,SE,BG,SE,DE,AE,CH,SE,NL,DE,NL,GB,NL,IT,US,GB,IE,GB,EE,GB,DE,GB,JP,US,NL,GB,NL,GB,US,TR,LV,KR,GB,NL,FR,NL,FR,GB,DE,FR,GB,DE,NL,DE,NL,CH,NL,CH,NL,IT,FR,CH,IE,BG,NL,DE,FR,PL,NO,ES,RU,ES,GB,RU,GB,SE,IT,SE,BG,SE,RS,SE,HU,SE,BE,SE,CA,SE,GB,CH,GB,ES,GB,FR,GB,BE,GB,ES,GB,NL,BE,NL,GB,BE,GB,US,DE,FR,DE,UZ,GB,KZ,DE,GB,RU,DE,US,FR,DE,PL,DE,PL,DE,NL,RU,DE,PL,DE,GB,DE,GB,DE,SE,DE,SG,DE,US,IT,SE,DE,KZ,NL,US,SA,IT,FR,IT,DE,PL,DE,NL,US,DE,NL,DE,US,DE,GB,US,DE,US,GB,DE,PT,DE,UA,GB,DE,PT,SE,IT,DE,AT,DE,GB,DE,RU,DE,SE,NL,DE,EE,DE,CH,DE,RU,GB,AT,PL,DE,RO,NO,IT,ES,FI,DE,PL,DE,FI,DE,HU,DE,BE,DE,RU,UA,BG,FI,UA,PL,GB,RU,LU,RS,RU,GB,CZ,IT,UA,PT,EG,FR,IT,NL,GB,DE,RU,GR,NL,GB,RU,BY,RU,BY,RU,DE,US,NL,DE,RU,FI,RU,CZ,DE,FR,DE,RU,MD,EE,RU,DE,RU,PL,RU,EE,DE,RU,NL,TR,BR,SG,FI,BR,RU,US,NL,AM,TW,FI,NL,FR,RU,US,TR,AT,US,PL,MX,IN,ES,RU,IT,RU,IN,RU,IN,SK,IN,DE,PL,NL,RU,PL,RU,BE,IT,RU,TR,DE,RU,DE,US,RU,GB,AR,DE,PT,NL,RU,TR,NL,BD,IN,HU,LU,NL,TH,NZ,ID,TR,RU,CH,RU,ZA,RO,RU,BG,CH,RU,CZ,DE,BD,FI,GR,BE,ES,CZ,US,CZ,US,ZA,TR,BD,DE,NL,KE,DE,GB,IT,GB,AR,CZ,IN,US,GE,IN,RU,DE,AU,PE,RU,MD,BD,DE,MD,BR,FR,RU,CZ,DE,IN,GB,TR,RU,ES,CZ,ID,CZ,MD,BE,MD,IL,RU,CZ,RU,ZA,TR,UA,PE,NL,US,RU,US,DE,AR,IN,PE,RU,DE,BR,RU,ZA,DE,RU,IL,ES,RU,IN,NL,FR,RU,NL,IN,DE,NL,SG,DE,AR,DE,US,TW,GR,TW,RU,BD,RU,RS,RU,RS,RU,CZ,TR,RU,PL,RU,AR,DE,US,RU,DE,UA,NL,PL,IE,DK,GB,AT,CH,DE,_,GB,RU,DE,GB,DE,NL,HU,GB,US,NL,IL,FR,PL,HU,GB,CA,IL,RU,AE,IT,NO,RO,BG,PT,UA,PL,FR,PL,DE,CH,SK,CH,RU,RO,RU,UA,RU,CH,PL,DK,UA,FR,PL,DE,BG,NL,SE,NL,RO,IE,GB,PL,FR,RO,BG,DE,SE,FI,SE,FI,SE,FI,IL,JP,PL,RU,US,DE,CZ,GB,NL,UZ,RU,PL,NL,US,IT,ES,CH,US,RU,GB,US,RU,CH,EE,DE,FI,SE,DE,AT,SE,ES,CH,PL,RO,NL,DE,CH,DE,PL,GB,AT,IT,PL,SK,DE,IT,DE,HK,DE,AT,DE,FR,DE,FR,DE,BA,DE,FR,US,DE,GB,US,DE,FI,DE,IT,DE,FR,NO,NL,DE,FR,EE,DE,EE,SA,JP,NL,GB,AT,DE,EE,DE,EE,DE,BR,HK,BR,US,DE,PL,DE,PL,DE,FR,ES,PL,FR,GB,DE,NL,DE,DK,RU,PL,DE,FR,RO,US,LU,DE,FI,GB,RO,JP,DE,GB,NL,RO,NO,RO,FR,SG,RO,HU,RO,NL,RO,SE,NL,BR,CH,RU,TR,PL,CA,US,GB,NL,LU,FR,UA,NL,BR,CH,NL,FR,NL,NO,NL,CA,DE,NO,NL,DE,NL,BH,DE,CY,GB,NL,NO,NL,GB,CH,DE,GB,BG,NZ,LV,US,NL,TR,UA,RU,ES,VN,US,HK,GB,HK,DE,NL,DE,JP,US,NL,FR,NL,RU,SA,ES,KZ,MD,RU,ES,KZ,RU,GB,RO,GB,NL,MD,FR,NL,RO,TR,RO,US,RO,MT,IT,DE,IT,LV,IT,FR,UA,IT,FR,GB,DE,KZ,GB,NL,RU,PL,GB,UA,NL,RO,UA,DE,RU,GB,NL,FR,GB,RU,US,GB,RU,IS,ES,GB,MT,EE,IE,RS,PL,RU,PL,GB,PL,IE,US,RO,GB,FR,PL,CA,PL,UA,GB,AT,GB,RU,PL,DE,AT,RU,TR,RU,AT,DE,AT,DE,CZ,NL,RU,AT,UA,AT,DE,AT,RO,EE,NL,UA,RU,_,GB,SE,PL,NL,RO,BE,RU,US,DE,PT,DE,AT,ES,AT,GB,US,IT,GB,DE,AT,UA,NL,AT,GE,AT,DE,AT,TR,UA,AT,GB,DE,CZ,NL,GB,TR,UA,PL,UA,TR,RU,IT,GB,RU,DE,IT,RU,TR,IT,NL,FI,DE,PL,NL,IT,NL,FI,MX,RU,KZ,IT,NL,FI,PL,RU,NL,RO,FR,SE,IT,NL,GR,GB,FR,PT,PL,AT,UA,RU,FI,LU,US,GB,ES,DE,SE,US,FR,PL,BE,PL,GB,NL,FR,GB,UA,PL,CH,UA,GB,DE,ZA,BR,DK,GB,VN,TR,HU,FI,US,IE,HU,US,BE,RU,FR,AE,DE,FR,TR,NL,US,NL,AX,FR,US,IL,NO,DE,US,GR,SI,US,ES,RU,_,BG,DK,NO,FR,GB,US,NL,RO,TR,NL,GB,RS,DE,GR,UA,LT,NL,SI,RU,FI,SA,GB,PL,GB,PL,GB,AE,GB,FR,US,UA,IL,GB,AM,UA,RU,UA,ES,FI,NL,FI,RU,FI,SE,FI,AX,DE,GB,BE,DE,BE,GB,DE,GB,DE,ES,DE,GB,FR,GB,DE,GB,FR,GB,DE,GB,FR,DE,FR,GB,DE,GB,DE,GB,AT,DE,AT,US,ES,UA,DE,NL,US,JP,DE,GB,DE,UA,FI,DE,TR,ES,US,DE,ES,TR,DE,US,DE,AL,DE,IT,TR,DE,AL,DE,RU,GB,DE,TR,DE,BE,DE,RU,DE,RU,DE,RU,AT,RU,ES,DE,AT,RO,DE,US,NL,AT,DE,US,IQ,DE,JP,US,GB,DE,IE,TR,DE,US,CH,RU,PL,RU,US,IE,DE,RU,DE,PL,DE,RU,UA,JP,GB,SG,SE,MD,BE,IL,PL,SE,DE,NL,DE,IT,DE,PL,RO,PL,RU,FR,NL,ES,GB,CH,ES,PL,SE,AT,GB,RU,IT,PL,GB,DE,RU,UA,FI,US,GB,FR,DK,CH,PL,ES,DE,EE,TR,PL,RU,CH,GB,RO,FR,SI,DE,GR,IT,CH,SE,FR,NL,FR,ES,GB,DK,AT,IL,TW,TR,DK,FI,UA,DE,TR,UA,ES,AT,GB,RO,FR,PL,GB,PT,_,AE,_,NO,DE,RO,IQ,RU,DE,GB,SE,FR,GB,PL,RO,DK,RO,FR,NL,PL,RO,FR,GB,RU,UA,DE,AT,FR,IN,DE,HK,US,CH,FR,GB,IT,BE,NL,DE,NL,DE,FR,NL,DE,NL,DE,NL,DE,NL,DE,RU,NL,DE,US,NL,DE,NL,DE,NL,GB,NL,HK,NL,DE,NL,HK,NL,DE,HK,NL,DE,NL,DE,NL,DE,NL,DE,NL,HK,SE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,GB,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,CH,GB,CH,SG,TR,RU,US,GB,DE,RU,NL,ES,DE,US,ES,HK,ES,IT,US,CH,GB,CH,DE,CH,SG,LI,FR,NL,DE,CH,DE,CH,ES,CH,NL,ES,NL,CH,GB,PL,GB,CH,NL,US,CH,BE,RU,LT,CH,GB,CH,US,CH,GB,CH,US,CA,CH,CA,IE,GB,IE,GB,IE,RU,FR,TR,RU,LV,IT,UA,GB,DE,GR,RU,LB,KW,GB,EE,FR,DE,NL,GE,LU,LB,CH,RO,IT,GB,FR,DE,RU,PL,RU,NL,UA,DE,FR,JP,UA,RO,NL,DK,FR,CA,DE,SI,DE,LV,CH,HK,RU,UA,RO,DE,PL,DE,GB,PL,NO,FI,HR,KR,PL,FR,CH,JP,RO,PL,DK,UA,ES,FR,HK,DE,PL,TR,SA,PL,DK,CH,FR,DE,PL,DE,IE,NL,DE,RO,PL,DE,GB,AT,CH,DK,PL,LT,GB,PL,GR,DE,SG,DE,PL,FR,SK,DE,AU,SK,DE,IQ,RU,TR,DE,SK,SE,DE,SK,PL,IQ,DE,AT,DE,SE,DE,ES,DE,ES,EE,GB,EE,DE,NL,DE,JP,NL,DE,JP,DE,JP,DE,SG,JP,DE,AT,DE,NO,SE,AT,DE,AT,DE,SE,AT,DE,GB,DE,GB,DE,GB,DE,FR,DE,GB,DE,FR,DE,GB,SE,GB,DE,GB,BE,GB,ES,GB,RU,GB,DE,US,ES,RU,ES,RU,DE,ES,RU,EE,RO,KZ,DE,ES,PL,ES,TR,SG,RU,IN,RU,IL,DE,NL,RU,ES,RU,ES,LT,RU,ES,RU,PL,KE,SY,RU,SY,DE,GE,RU,DE,ES,DE,US,FR,ES,RU,AZ,RU,ES,DE,RU,SY,FI,BE,FI,BE,FI,BE,FI,BE,FI,NL,FI,DE,AT,DE,US,DE,US,DE,US,DE,CN,NL,DE,HK,DE,CN,DE,SG,DE,HK,CN,DE,IN,DE,US,DE,ES,DE,ES,HU,GB,CH,DE,HK,US,LK,GB,FR,GB,TR,RU,GB,NL,DE,PT,PL,IE,GB,DK,GB,PT,UA,SE,PL,DE,SE,RO,NL,RU,HU,DE,PL,GB,AT,PL,BG,FI,SE,FI,NO,MD,NL,FR,DE,UA,RU,IR,IT,UA,RU,LV,GB,DE,GB,ES,BE,ES,BE,ES,HU,IS,DE,JP,DE,JP,DE,FI,FR,DE,BG,DE,PL,FR,DE,GB,DE,US,RO,IR,RO,PT,DE,GB,BE,IE,TR,ES,US,FR,SE,DE,RU,GB,DE,BE,RS,FR,BE,CZ,CH,RU,RO,BG,SE,RU,SE,AT,CZ,PL,GB,DE,NL,US,UA,NL,PL,UA,PL,SK,NL,FR,UA,RU,DE,UA,GB,DE,PL,DE,UA,PL,DE,IT,DE,FR,DE,HK,RO,DE,GB,NL,IT,DE,PL,NO,DE,US,FR,BE,GB,TR,FR,ES,LB,TR,DE,NL,KZ,GB,NL,FR,TR,GB,TR,FR,PL,FR,ES,RS,PL,FR,ES,EE,FR,ES,GB,FR,EE,HK,DE,FR,US,_,FR,ES,IT,NL,SE,HR,UA,FI,UA,RU,NL,DE,NL,SE,DE,RU,PL,BE,ES,GB,NL,RO,FR,NL,PL,US,UA,DE,IR,LB,TR,GB,IT,SE,FR,DE,UA,AT,UA,DE,UA,RU,FR,DE,CH,PL,ES,FR,UA,BG,AE,IR,RU,NO,PL,FR,US,FR,US,IT,CZ,GB,US,CH,ES,IT,RU,CA,NL,CA,GB,NL,GB,BE,FR,CH,FR,RU,CH,DE,NL,DE,IT,AT,ZA,CO,CH,FR,LI,CH,US,CH,NL,CH,RU,FI,RU,UA,RU,GB,LU,US,CH,FR,US,CH,ES,RU,PL,DE,RU,CH,RU,NL,ES,GB,LB,DE,CH,DE,CH,UA,CH,IR,CH,ES,DE,NL,IE,CH,FR,PS,CH,IR,CH,IE,AT,FR,CH,DE,CH,LI,CH,DE,IR,RO,RU,CY,UA,DE,IT,AR,NL,IR,BG,RU,AT,ES,FR,CH,FR,CH,DE,CH,GB,SE,GB,CH,RU,FR,RU,SE,ES,CH,GB,FR,CH,LI,CH,US,CH,US,CH,US,HU,RU,ES,US,NL,PL,GB,RU,CZ,UA,CZ,FR,RU,CZ,MK,FR,ES,RU,PL,IT,RU,LT,FR,FI,PL,DE,RU,BE,IT,RO,DE,GB,FR,IT,NL,GB,NL,SE,CH,GB,CH,GB,DE,GB,US,PL,BE,GB,FR,DE,US,BE,BG,BE,GB,MT,NL,GB,NL,EE,IR,DE,UA,US,IT,RS,US,DE,RO,RU,FR,PL,UA,DK,BG,NL,GB,RO,RU,CH,IT,RU,CH,GR,DE,PL,DE,RU,GB,KG,RU,ES,GB,DK,RO,DE,UA,GB,PL,CH,GB,RU,US,PL,NL,GB,FR,NO,RU,RO,IL,UA,RU,BE,DE,PL,UA,RU,FR,PL,DE,FR,CH,PL,CH,PL,GB,RU,NL,DE,NL,SI,LV,RU,KG,DK,GB,RO,UA,DE,PL,IT,PL,CH,PL,DE,PL,DE,PL,RU,GB,AT,HU,AT,HR,GB,SE,PL,NL,GB,IQ,NL,LV,CZ,GR,DE,SE,DE,FR,SE,FR,AT,CH,CZ,CH,FR,IE,NL,DE,IL,IQ,DE,GB,PL,FR,AT,RU,DE,PL,DE,GB,BG,PL,AT,UA,DE,IT,PT,NL,PL,GE,GB,BG,DE,UA,DE,_,NO,NL,CY,_,DE,GB,NL,LV,IT,CH,GB,NL,BE,IT,CH,DE,IT,FR,US,AT,GB,DE,AT,RO,AT,RO,GB,GR,RU,GB,CY,GB,CY,GB,LU,SK,GB,RU,EE,NL,DE,IT,US,TW,CN,PL,DE,FR,DE,EE,BY,RU,DE,HK,DE,NL,MD,SK,ES,UA,SC,UA,DE,HU,DE,US,RU,UA,DE,RU,HK,RU,CH,RU,IT,US,RU,GB,RU,DE,HK,NL,DE,US,IR,NL,DE,FR,BE,DE,ES,SI,US,GB,FR,DE,SG,FR,TR,RU,DE,FR,DE,US,NL,GB,NL,IT,RU,DE,US,DE,IT,NO,DE,IT,RU,FR,RU,DE,US,DE,GB,OM,NL,US,GB,JP,DE,CH,TR,DE,UA,AL,FI,BE,GB,CH,FR,NL,GB,NL,ES,NL,GB,CH,BE,GB,SE,GB,MT,AD,FR,AT,NL,BY,CH,GB,FR,GB,SK,GB,DE,GB,CH,FR,GB,DE,GB,DE,FR,BE,FR,DE,FR,NL,BE,FR,DE,BE,NL,BE,NL,CH,GB,CH,GB,IT,ES,NL,HU,DK,AT,ES,SE,DK,IL,SE,DE,DK,GB,DE,IT,GB,NL,GB,DE,NL,GB,DE,OM,DE,SG,US,DE,US,DE,HK,DE,TR,DE,PL,US,DE,US,DE,US,GB,DE,BG,GB,CZ,FR,GB,PL,SE,GB,DE,GB,DE,GB,US,GB,NL,DE,GB,DE,GB,US,GB,DE,GB,ES,DE,GB,DE,GB,AZ,GB,AZ,GB,CZ,GB,RU,FR,UA,PL,FR,GB,FR,BE,RU,CY,RO,AU,GB,RU,SE,FR,NL,DK,IT,FR,DK,MD,DE,PL,ES,FR,CH,DE,UA,CZ,PL,FR,RU,BE,AT,GB,PL,DK,GB,DK,IT,ES,RU,UA,KZ,NL,SI,JO,IE,DE,NL,DE,US,DE,US,DE,NL,DE,US,DE,SE,AT,FR,GB,US,GB,US,GB,HR,DE,HR,DE,HK,RU,NL,GB,RU,NL,KZ,BG,TR,GB,TR,PS,GB,PT,PL,GB,HR,RU,AT,CR,RU,RS,LA,MA,NP,BO,TR,BG,GB,FR,NL,HR,_,ES,PS,ES,RO,RU,ES,GB,ES,GB,DE,CH,AT,ES,RO,FR,UA,NL,RO,UA,DE,RO,ES,FR,PT,DE,PL,GB,CH,PL,GB,DE,BG,CZ,SE,PL,BG,GR,RO,GB,RO,PL,BG,UA,DE,FR,PL,BG,SE,DE,NO,AT,RU,NL,FR,RU,DE,CZ,HU,GB,RU,AE,NL,DE,US,DE,FR,DE,FR,DE,DK,DE,LT,GB,RU,UA,PS,RU,PL,FI,CH,GB,BE,CZ,KW,CH,BE,KG,SI,GR,RU,RO,CH,NL,LV,ES,DE,HU,GB,IT,NL,GB,RO,GB,HU,UA,PL,FR,AT,NL,TR,UA,IL,RU,UA,PL,FR,IT,AT,GB,GR,GL,NL,ES,IT,SE,RO,GR,IT,DE,IT,AT,HU,DE,HU,DE,HU,IT,DE,IT,DE,NL,PT,BG,US,BG,IQ,PL,NL,IT,BG,IT,DE,IT,DE,IE,DE,US,DE,US,SG,IN,US,DE,GB,PL,CZ,SG,HK,SG,DE,CZ,FR,DE,CZ,DE,RO,_,DE,PL,DE,MD,DE,HK,US,ES,JP,LU,GB,DE,FI,DE,MD,DE,NL,DE,SE,DE,RU,NL,DE,NL,DE,NL,PL,IR,FR,_,NL,FR,US,DE,US,DE,MD,DE,PL,DK,BE,DK,CZ,BE,DE,DK,IT,FR,DK,CH,DE,AT,BG,DE,AT,CH,DE,NO,DK,IT,PL,SM,ES,CZ,GB,NL,RU,GB,BE,CH,GB,BG,FR,GB,FR,GB,NL,DK,AT,UA,FR,BE,LU,BE,IT,RU,NO,DE,RO,NO,RU,UA,GB,SA,PL,NL,UA,PL,GB,SE,DE,LV,PL,NL,PS,IL,CH,AT,NL,UA,BE,PL,IT,DE,LV,RU,US,RU,IT,ES,BG,KZ,DE,PL,RU,UA,CH,DE,FR,IT,DE,PL,DE,ES,FR,RU,PL,RU,UA,FI,UA,DE,FR,UA,FI,PL,DE,KZ,GB,FR,DE,BE,IT,FI,GB,RU,US,RU,US,RU,US,RU,US,RU,US,RU,CH,DK,AU,JP,AU,JP,DE,GB,IE,DE,GB,AT,FR,DE,GB,DE,IL,GB,AT,CH,GB,FR,GB,FR,DE,NL,DE,GB,DE,NL,DE,FR,GB,FR,AT,FR,RS,FR,NL,GB,NL,GB,CH,DE,IT,AT,GB,DE,FR,ES,DE,ES,FR,BE,DE,GB,DK,NL,AT,SE,NO,AT,NL,DK,DE,FR,NL,FI,GB,NO,GB,NO,IL,NO,AT,IL,CH,AT,DE,US,DE,OM,US,HK,US,HK,JP,SG,SE,US,DE,SG,GB,DE,IN,AU,DE,US,DE,AU,GB,FR,BE,NL,BE,ES,RU,DE,NL,DE,NL,FR,IT,HU,CZ,NL,BE,GR,GB,SK,IT,GB,DE,NL,IT,BE,NO,NL,GB,NL,BE,LV,NL,AT,NL,IT,ES,NL,DK,CZ,NL,CH,GB,CH,IT,GR,NL,IE,GB,SE,GB,NO,SI,BE,NL,GB,NL,BE,DE,SI,BE,NL,GB,DE,NL,GB,SI,DE,GB,NL,RU,DE,NL,GB,DE,NL,FR,NL,GB,NL,DE,PT,GB,NL,GB,NL,SK,GB,IT,DK,NL,HU,RO,NL,GB,IT,NL,CH,NL,IT,NL,CH,ES,NL,SK,GB,NL,IE,IT,GB,DE,NL,GB,SK,NL,GB,NL,GB,NL,PT,NL,ZA,DE,NO,DE,NL,AT,NL,DE,NL,DE,NL,BE,NL,AT,NL,CH,NL,GB,NL,GB,NL,FR,NL,BE,NL,CZ,SK,NL,FR,NL,FR,NL,BE,NL,ES,NL,PL,GB,DE,NL,CH,PL,NL,IE,DE,SE,NL,GB,FR,FI,BE,FI,DE,FR,GB,KE,GB,EE,CH,MT,PL,MA,GB,US,GB,DE,GB,FR,GB,AT,CH,AT,CH,AT,CH,AT,CH,AT,CH,AT,CH,AT,CH,PT,SG,PT,FI,CZ,DE,PL,DE,GB,IL,DE,RO,CH,MD,LV,US,AT,RU,DE,IT,DE,UZ,DE,US,ES,DE,RU,PL,UA,DE,_,PL,DE,GB,IE,FR,DE,CZ,SE,FR,SE,RU,DE,LV,RU,UA,NL,SK,UA,NL,BE,RU,SE,UA,RU,FR,NL,NO,CZ,FR,PF,FI,SE,FI,SE,FI,RU,FI,GB,SE,GR,ES,GB,DE,GB,IT,GB,NL,DE,GB,DE,GB,DE,GB,FR,NL,GB,NL,GB,NL,FR,GB,DE,GB,FR,GB,DE,GB,FR,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,ES,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,FR,DE,GB,DE,GB,DE,GB,DE,GB,AU,JP,SG,JP,AU,JP,ES,IR,RU,GB,RU,GB,RU,US,RU,GB,CZ,GB,CZ,NL,CH,DE,AT,DE,UA,DE,CY,DE,CY,US,DE,CZ,DE,US,BE,US,DE,NL,DE,CY,SG,DE,NL,US,FI,OM,DE,US,RU,GB,DE,SG,DE,GB,DE,SE,SA,GB,SA,GB,DK,FI,PL,US,MX,RU,NO,DE,GB,AT,NL,DE,US,IL,RU,DE,US,RU,TR,NL,CH,AT,SI,AT,NL,PL,DK,AT,DK,FR,NL,RO,FR,DE,LU,CH,PL,FR,NL,GB,DE,BE,PL,UA,IT,PL,IT,NL,UA,PL,SE,FR,UA,RU,SE,GB,IL,FR,IT,DE,IT,SE,IT,SE,IT,_,GB,RO,_,JP,DE,UA,DK,UA,GB,RU,NL,RO,DE,LB,UA,DE,CH,PL,UA,RO,FR,HU,DK,UA,US,GB,US,BG,RU,HK,IT,UA,CH,UA,DE,PL,IT,DE,PL,DE,SE,CH,AT,UA,RU,UA,RU,FR,IT,NL,DK,UA,FR,UA,FR,UA,NL,RS,RU,PL,UA,DK,GB,NL,PL,AT,NO,GB,AM,RU,MD,RU,IT,AT,DK,TR,UA,DK,PL,NL,GB,NL,RU,BE,SI,MD,IL,RU,GB,UA,RU,FR,IS,RU,DE,DK,RU,RS,GB,NO,SI,FR,FI,SE,FI,SE,FI,GB,DE,GB,NL,GB,IE,ZA,GB,BE,FR,SE,BE,GB,FR,DE,BE,DE,GB,CH,BE,DE,AT,ES,NL,BE,SE,GB,BE,NO,SE,IT,IL,CH,NL,GB,CH,BE,GB,BE,NL,DE,NL,NO,DE,FR,BE,FR,AT,DK,DE,BE,GB,DE,GB,IT,GB,NL,CH,FR,NL,DE,GB,BE,NL,BE,CH,DE,DK,DE,NL,ZA,NL,FR,ES,AT,ZA,RO,GB,AT,DE,AT,DE,FR,BE,ES,IT,GB,BE,FR,GB,DE,DK,DE,PF,FR,DK,US,DK,BE,NO,BE,GB,BE,US,GB,BE,FR,IT,BE,IE,DE,GB,BE,SG,BE,GB,BE,RU,NL,RU,NL,RU,LV,RU,LV,GB,DE,RU,US,RU,AT,IE,RU,PL,RU,PL,RU,IT,AT,PL,GB,RU,US,KZ,RU,IR,GR,UA,RU,PL,GB,RO,LV,NL,IL,US,PL,FR,AT,UA,RU,TW,RU,LV,UA,PL,UA,_,NL,SK,GB,NL,PL,RU,GB,PS,DE,UA,PL,UA,GB,DE,RU,PL,UA,ES,PL,SA,RU,UA,RU,DE,RU,DE,UA,ES,DE,DK,LV,NL,IR,UA,SK,SE,NO,DE,ES,SE,DE,GB,UA,GB,RU,DK,GB,KZ,NL,SI,BG,GB,CH,IE,LB,NO,GB,HU,RU,GE,CH,PL,NO,UA,SE,CZ,DE,PL,GB,DE,FR,PA,FR,US,IQ,ES,UA,TJ,IT,DK,IE,SE,GB,SE,GB,SE,GB,SE,GB,SE,GB,SE,GB,FR,NL,RU,GB,AT,GB,PL,GB,PL,CZ,GB,CZ,GB,HK,ES,GB,ES,GB,IE,GB,IE,GB,PT,ST,PT,ST,PT,ST,NO,RU,UA,NL,RU,RO,NL,ES,AM,PL,FI,RU,PT,FI,FR,FI,GB,PL,SE,PL,GB,PL,IR,CH,DE,RO,PL,AL,CH,TR,IR,FR,IR,CH,IR,LV,GB,US,ES,RO,DE,FR,DE,GB,AT,PL,GB,DK,NL,GB,CH,ES,NZ,GB,EE,GB,NL,CH,AT,FR,PL,LT,PL,BG,DE,RU,ES,IT,GB,ES,GB,FR,ES,NL,CH,GB,IT,BE,GB,ES,GB,BE,NL,GB,FR,GB,DK,GB,NL,SE,NL,GB,NL,GB,NL,GB,ES,SE,ES,FR,IT,GB,IT,FR,GB,PT,GB,FR,GB,ES,FR,NL,LU,IM,FI,MT,BG,IL,DE,NO,SA,RU,GB,ES,NL,DE,LV,NL,AT,DK,DE,GB,UA,SE,NL,GB,RU,GB,LV,MT,ES,GB,IL,GB,PL,GB,FR,DE,CZ,CH,GB,ES,GB,RO,UA,NL,RU,KZ,SK,LT,AT,GB,SE,FR,AE,SE,GB,CZ,GB,SE,NL,BE,SE,BE,FR,_,PL,DE,PL,FR,CA,RU,FR,CH,DE,BE,FR,DE,GB,LV,FR,NL,AE,PL,FR,RO,FR,DE,GB,FR,PL,RU,RO,DK,FI,GB,UA,DE,SA,SE,UA,FR,CH,DE,SE,PL,FR,NL,PL,BE,RU,GB,RU,NL,RU,IT,TR,FR,RU,KW,PL,RU,PL,RU,AT,UA,PL,IE,CH,CY,LT,DE,SE,DE,CH,FR,CH,FR,CH,BE,RU,US,DE,CH,NO,TR,DE,UA,DE,NL,UA,RU,DE,RU,ES,GB,DE,GB,FR,GB,IE,SA,GB,FR,GB,SE,FR,FI,AT,IE,DE,NO,GB,IL,RU,UA,RU,BE,ES,RU,UA,RU,NL,NO,AR,DE,RU,US,RU,US,RU,US,RU,PL,UA,NL,FR,NL,IL,MD,US,DE,BG,RU,UA,RU,NL,CH,UA,US,IQ,FR,RU,IT,US,NL,RO,GB,PL,DE,GR,GB,FI,RU,DE,PL,UA,LV,RU,AT,UA,PL,AT,DE,PL,RU,IR,RU,PL,AT,RU,DE,SI,NL,RO,CH,UA,FI,PL,EE,HU,HR,UA,GB,RO,CH,AT,DE,SK,MC,RU,FR,PL,RO,NL,SE,LV,FR,DE,PL,GB,ES,PL,DE,GB,DE,GB,DE,GB,FI,GB,FI,HK,GB,HU,GB,DE,CH,AT,GB,US,HK,GB,DE,GB,SE,GB,TR,GB,US,GB,PT,CZ,SE,PL,NL,RU,UA,PL,CH,GB,NL,RU,PL,GB,UA,GB,DE,BE,UA,DE,FR,BG,RU,GB,RU,GR,GB,LT,IT,GR,IT,US,IT,US,IT,US,IT,GB,FR,DE,CH,NL,BE,AT,US,ES,IT,AR,CL,US,IT,MD,PT,DK,BG,RU,LU,DZ,BG,DE,UA,SE,CM,SE,DK,RU,GB,TR,IR,UA,RO,UA,FR,PL,GB,UA,RU,FR,NO,BE,LU,NL,US,AZ,SE,PL,AT,UA,LV,PL,CZ,GB,SE,RU,GB,UA,NO,PL,RU,UA,NL,GB,UA,GB,MK,RU,AT,GB,DE,IE,GB,DE,GB,DE,GB,DE,AE,GB,DE,GB,FR,GB,DE,GB,DE,GB,DE,GB,OM,DE,GB,SE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,FR,GB,DE,GB,NL,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,CH,GB,DE,GB,PL,RO,AZ,IT,AZ,IR,DE,RU,PL,RO,FR,DE,NL,RO,GB,SE,UA,RU,SK,LU,RO,BE,IL,AZ,IR,PL,NL,RO,ES,IL,UA,RO,DE,AM,PL,GB,FR,DE,FR,CH,HR,DE,IT,DE,NL,GB,NL,GB,NL,GB,FR,GB,NL,TR,RU,DE,ES,SA,BA,CH,UA,RO,GR,GB,US,DE,SE,LU,CH,UA,GB,UA,BG,AT,DE,RU,UA,NL,UA,PL,EE,PL,AT,RU,FR,IN,US,BR,IN,FR,GB,US,BR,IN,FR,GB,NL,ID,LT,US,SG,BE,UA,PT,NL,RU,DE,PL,LU,SE,BG,PS,FR,DE,GB,GR,FR,NL,FR,IT,RO,SE,FR,DE,IT,BG,FR,LV,DE,NO,BE,GB,NO,NL,RU,IT,GB,CH,SI,GB,GR,DE,NL,IT,DE,IN,DE,GB,FR,DE,GB,DE,FR,DE,US,AU,UA,PL,UA,NL,DE,KZ,RU,DE,GB,MT,PL,RU,GB,HU,DE,KG,NL,CZ,KW,GB,IT,UA,BG,AT,IT,NL,RU,RO,RU,BG,NL,PL,DZ,DE,TR,DE,RU,DE,UA,DE,GR,NL,CZ,UA,BE,DE,RU,IT,NL,GB,DK,FR,RU,PL,DE,NL,SE,AT,DE,SE,PL,DE,RO,RU,DE,RU,FR,UA,RO,UA,US,NL,UA,RO,PL,DE,FR,RU,FR,DK,PL,RU,DE,RU,SE,NL,AT,FR,US,GB,US,TR,RU,DE,VG,PL,FR,DE,EG,RU,SE,UA,GB,DE,CH,NO,FR,PL,RU,UA,PL,AM,CZ,DK,DE,LV,PL,EE,DE,RU,LU,DE,LU,VG,IT,GB,SI,GR,SI,RU,LT,SA,DK,AT,CH,DE,RU,PL,RU,NO,UA,VG,UA,AT,FR,SE,AT,CH,NL,IE,PL,GB,NL,NO,IT,SE,GB,IT,GR,UA,PL,NL,US,PL,DE,GB,RS,UA,GB,SK,RU,TR,RU,FR,LU,CZ,DK,RU,BG,CY,DE,RU,SI,GB,IT,PT,PL,UA,PL,RU,SE,ES,GB,GR,ES,NO,SI,NO,SI,RO,BE,NO,AT,NL,UA,KZ,IT,DK,GB,SI,GB,SI,PL,SI,DE,NL,CH,IT,GR,SA,CZ,ES,DE,SE,NL,GB,FR,NL,SI,GB,CH,PL,DK,UA,DE,RU,IT,CZ,UA,SE,KZ,CH,UA,FR,DE,FR,GB,UA,DE,SE,UA,RU,SE,ES,GB,RU,SK,RU,UA,KZ,TR,DE,DK,TR,SE,RO,BY,DK,GB,FR,DE,EE,DE,NL,DE,NL,DE,FR,RO,FR,DE,NL,DE,NL,DE,NL,GB,NL,BE,IT,BE,CH,GB,BE,ZA,NL,FR,ES,NL,FR,BE,IT,GB,DE,GB,NL,GB,DE,IT,ZA,DE,FR,NL,DK,IT,AT,NL,SE,NL,SE,GB,DE,CH,AT,CH,NL,IE,AT,DE,NL,IT,AT,CH,NL,AT,ZA,NL,GR,GB,DE,CH,DE,FR,BE,NL,GB,DE,ES,RU,DE,GB,NL,RU,UA,BG,PL,FR,PL,UA,RO,NL,AT,NL,IT,FR,DK,SE,NO,SE,IT,GB,UA,DE,EE,PT,NO,HK,AT,NL,RU,GE,KG,SE,PL,HR,RU,GB,ES,HU,ES,RU,PL,CZ,IN,DE,IN,BD,IT,RU,NL,RU,GB,DE,RU,EE,FI,CZ,DE,FI,PS,DE,FI,PE,GB,SE,GB,AT,GB,UA,GB,FK,GB,FK,IE,GB,IE,GB,HK,GB,CZ,GB,DE,PL,AT,SE,UA,RO,GR,DE,IE,_,GB,NL,_,IT,DK,_,SE,CY,_,GB,DE,IT,DK,AT,GB,NL,US,UA,MX,DE,GB,NL,UA,NL,RO,DE,SE,UA,DE,FR,IT,CH,GB,UA,FI,DE,NL,PL,RU,UA,IL,RU,KZ,RO,ES,PL,RU,LV,FI,DE,RU,GB,PL,UA,SK,IL,DE,NL,GB,UA,AT,GB,IL,DE,RU,TR,UA,RU,PL,FR,DE,US,RU,TR,RO,RU,RO,RU,PL,SE,BE,RU,FR,SE,RU,DE,NL,AT,CH,IQ,NL,BE,RU,RO,DE,LV,IT,GB,IT,DE,AT,NL,AT,US,ES,CA,FR,RU,FI,DZ,IT,RU,UA,PL,UA,GB,UZ,PL,CH,GB,RO,NL,NO,GB,RU,BY,CH,PL,DE,CH,UA,CH,RU,SE,AT,UA,PL,RO,UA,RU,PL,BG,UA,FR,UA,RO,RS,GR,PL,DE,RO,DE,UA,ES,IT,UA,RU,UA,CH,DE,IT,PL,GB,FR,SE,LV,UA,RU,PL,SI,DE,RU,PL,DE,IE,DE,RU,UA,FR,GB,FR,DE,RU,CH,PL,FI,PL,RU,NL,AT,PL,SE,IL,CH,PL,DE,SA,_,DE,PL,UA,EE,SI,RU,DK,UA,DE,FR,RO,RU,BE,PL,RU,IL,FR,SC,DE,CH,RO,BG,RU,PT,SA,SE,US,NL,UA,RU,UA,US,PL,UA,GB,ES,NL,DE,UA,GR,ME,UA,JP,GB,SE,FR,ES,DE,FR,IT,FR,GB,FR,IT,FR,IT,FR,GB,FR,DE,FR,GB,FR,DE,FR,DE,FR,DE,FR,ES,FR,RU,PL,FR,UA,DE,BG,UA,DE,GB,PS,UA,AT,BG,UA,NL,GB,UA,FR,GB,SK,PL,SK,DE,GB,RU,DE,NL,RU,DE,FR,RU,FR,NO,RU,IT,NL,UA,GB,RU,PL,UA,LV,GB,SI,GB,US,GB,AT,BG,DE,SE,BG,PL,DK,UA,RU,GE,NL,RU,UA,RU,GB,RU,US,DE,BG,RU,AT,UA,AT,UA,UZ,AT,UA,RU,PL,GB,RU,UA,FI,NL,SI,CH,IQ,NL,RU,DE,UA,RU,ES,CH,HU,GB,AT,CZ,NO,RU,AT,DE,SK,GB,CH,GB,DE,BE,DE,BG,GB,SI,NL,GB,AT,PT,RU,UA,PL,FR,UA,GB,IT,RU,NL,FI,DK,SE,DE,PL,GB,PL,GB,RU,PL,AT,SE,UA,GB,PL,DE,RO,UA,DE,RU,IT,CZ,NO,RO,PL,FR,IT,RU,GB,RU,BG,NL,DE,NL,PL,DE,RU,GB,DE,BE,GR,NL,AT,NL,IT,GB,NL,IT,NL,IT,NL,CH,NL,CH,NL,FR,NL,FR,RU,NL,RU,GB,GR,NL,GR,NL,GR,NL,SK,NL,GB,NL,GR,NL,NO,CZ,GB,NL,GB,NL,GB,DE,NL,DE,GB,DE,NL,DE,NL,DE,NL,ZA,NL,ZA,NL,CH,NL,GB,NL,IT,NL,IT,NL,ZA,NL,ZA,NL,CH,NL,ES,NL,BE,NL,DK,NL,SE,NL,GB,PT,FI,NL,CH,NL,SI,NL,GB,NL,GB,IE,NL,HU,NL,GB,NL,PK,FI,NL,ES,HU,ES,NL,ES,MC,HR,SE,UA,DE,UA,SK,AT,JP,BE,AT,NL,US,KH,US,UA,RU,DE,RO,PL,UA,FI,RU,KW,DE,ES,GB,FR,SI,NL,GR,RO,US,UA,GB,RU,AT,UA,AT,RU,RO,ES,GB,UA,RU,ES,NL,CZ,RO,RU,SE,DE,IT,SE,ES,SA,PL,DE,UA,DE,UA,AT,GB,DK,IT,ES,RU,NL,GB,CH,NL,CH,FR,NL,FR,HU,AT,NL,AT,BE,IT,GR,DK,GB,IT,GB,CH,GB,AT,DE,BE,NL,FR,GB,DE,GB,ES,GB,NL,GB,DE,FR,DE,NL,DE,NL,DE,GB,FR,ZA,NL,DE,HU,DE,ES,NL,ES,NL,BE,DK,SE,NL,BE,IT,FR,NL,FR,NO,IE,PT,IL,AT,NO,NL,HU,AT,FR,NL,FR,IE,NO,FI,FR,IT,ES,IE,HU,PK,GB,NL,GB,FR,GB,FR,NL,BE,AT,NL,DE,NL,GB,HK,FO,NL,FR,DE,US,RU,DE,RU,ES,GB,EE,PL,RU,SE,RU,UA,RO,RU,TW,KH,SI,BG,FR,US,FR,US,FR,SK,DE,RU,SI,NL,KW,RU,PL,BR,UA,CH,AT,CH,PL,RU,DE,DK,NL,IT,GB,IT,GB,IT,GB,NL,IT,GB,NL,GB,IT,GB,DE,GB,ES,NL,DE,DK,NL,GB,AT,GB,BG,FR,ES,TR,DK,DE,FR,IT,GB,IT,GB,IT,PL,GB,SK,DE,GB,DE,GB,IT,GB,US,IT,BE,US,IT,GB,IT,GB,IT,CZ,BE,GB,CZ,CH,GB,CH,GB,CH,SE,GB,SE,GB,SE,GB,SE,BE,SE,GB,NL,GB,NL,GB,NL,GB,IT,GB,IT,GB,IT,GB,IT,ES,DE,GB,DE,GB,DE,FR,GB,DE,GB,DE,GB,DE,GB,KZ,DE,GB,ES,GB,NL,GB,IL,US,ES,GB,ES,IL,RO,NL,RU,_,RU,EE,RO,UA,DE,RU,DE,PL,DK,AT,FR,SE,DK,DE,DK,FR,DK,DE,GB,DK,SG,US,DK,MY,DK,AT,DK,US,DK,DE,DK,US,JP,LU,DK,US,NL,DK,US,DK,SE,DK,CY,DK,US,DK,US,DE,DK,US,DK,US,DK,US,DK,US,DK,DE,DK,DE,DK,US,DK,US,GB,US,DK,US,NL,GB,SC,_,PL,SC,UA,PL,ES,TR,DE,_,BE,TR,RU,TR,UA,PL,DE,RO,TR,RU,UA,BG,TR,DE,IQ,UA,DE,PT,DE,IQ,SA,NL,IQ,PL,GR,DE,PL,RU,GB,_,RU,DE,RU,RO,DE,PL,TR,PL,IQ,GB,BE,FR,CA,NL,DK,PL,DK,DE,TR,NL,DE,NL,TR,RU,KZ,IT,GB,AT,RS,UA,RU,NL,GB,RU,US,UA,PL,NO,AT,DK,RO,RU,UA,DE,HR,AT,PL,RU,NO,US,RU,DE,RU,PS,AM,RU,_,UA,BG,UA,RO,SI,FR,TR,DE,SE,LT,PL,RU,FR,RO,GB,RU,PT,NO,DE,US,UA,PL,DE,GB,RU,MK,UA,RU,PL,SE,RU,NL,UA,BG,CZ,PL,MD,ES,PL,ES,RU,GB,CH,NL,GR,CZ,AT,PL,RU,DE,RO,CY,RU,PL,FR,RO,RU,PL,IR,NL,RU,FR,RU,KZ,RU,NL,SA,IR,DE,NL,_,BE,UZ,RS,US,NL,DE,KW,RU,US,FR,GB,IT,PL,IT,GB,AT,RU,UA,SA,BE,RU,RO,HU,RU,AM,GB,US,FR,GB,IT,GB,BE,GB,DE,BE,RO,BE,ES,BE,GB,BE,SG,GB,BE,GB,BE,SG,BE,GB,BE,GB,BE,GB,CZ,GB,BE,GB,DE,GB,US,FR,BE,US,PL,CZ,NO,CZ,IE,CZ,BE,HU,DK,PL,SE,PL,GB,RO,CH,HU,FR,GB,RU,RO,PL,RU,DE,SK,RU,GB,US,RU,DE,IE,PL,RO,UA,CA,PL,RU,AT,RU,KZ,UA,GB,DE,RU,PL,RU,DE,IT,ES,UA,PL,AT,DK,PL,RU,DK,ES,RU,UA,DK,AT,GB,DE,PL,UA,RU,ES,UA,BG,CZ,MD,AT,PL,NL,TR,IT,RU,PL,NO,IL,BG,NL,RU,DE,ES,RU,PL,RU,NL,IT,YE,GB,CH,GB,DE,GB,DE,FI,CH,GB,IT,PL,RU,BE,FR,PL,FR,GB,CH,RU,GB,FR,BE,DE,CY,UA,SE,CH,IT,GB,US,RO,DE,UA,CH,TR,NL,UA,RO,ES,PL,ES,UA,SI,UA,TR,SI,AT,PL,UA,RO,FR,PL,UA,DK,SI,NL,PL,NL,RO,TR,JP,DK,PL,IL,SE,PL,GB,PL,GR,DE,US,GB,BE,NL,IN,US,UA,US,DE,UA,FI,UA,RU,KZ,RU,CH,DE,UA,FR,GR,RO,IT,UA,PL,_,DK,NL,NO,RU,RO,AT,DE,RU,NL,IR,US,ES,PL,DE,IR,LU,NL,GB,DE,RO,RU,DE,UA,JP,US,ME,SE,CZ,RU,SE,FR,IR,JP,MX,DE,US,NL,VE,RU,IT,BG,GR,DK,GB,SK,RU,FR,SK,RU,DE,FR,GB,NL,GB,NL,GB,SE,ES,SE,ES,SE,NL,SE,DE,SE,DK,SE,FR,GB,IT,GB,NL,GB,RO,UA,GB,FR,DE,DK,DE,NO,BG,DE,NO,FR,RU,FR,GB,IR,IL,DE,SE,RU,PL,RU,NL,UA,GB,DE,RU,GB,IT,ES,GB,IT,GB,IT,GB,SL,GB,AT,FR,HU,SK,HU,GB,CH,RU,TR,DE,LB,RU,CZ,DE,CZ,PL,RU,IR,UA,IR,DE,GB,AU,HU,FR,RU,DE,FR,PS,NL,KW,LV,FR,UA,DE,NL,GB,RU,SA,GB,US,GB,RU,AT,FR,RU,UA,RU,ES,CH,AU,UA,NL,UA,PL,BE,ES,NL,KG,FR,PL,NL,GB,NL,IE,SE,ES,PT,IL,ZA,ES,ZA,SE,ZA,DE,NL,DE,NL,DE,NL,DE,FR,DE,NL,DE,GB,CH,BE,DE,BE,IT,DE,GB,FR,NL,AT,FR,DK,DE,GB,NL,GB,NL,GB,ES,IT,NL,FR,IT,SE,ZA,IT,ZA,SE,HR,SI,ZA,BE,NL,BE,SE,GB,FR,SE,IT,GB,ES,IT,FR,DE,FR,GB,DK,GB,BE,NL,GB,DK,AT,BE,DE,IT,NL,LV,GB,FR,SA,FR,NO,SA,FR,SA,BE,DE,GB,DE,GB,DE,GB,DE,GB,DE,HU,DE,CZ,RU,UA,FR,UA,AT,ES,DE,PS,UA,CH,ES,PS,UA,LV,NL,BG,US,SG,US,CZ,UA,DE,CH,DE,BN,NL,ES,UA,DE,UA,PL,TR,DE,RU,DE,AT,PL,RU,SI,NL,RO,_,BG,RU,BG,PL,US,RU,GB,UA,PL,SI,PL,DE,NL,IL,FR,PL,FR,AT,RU,PL,CZ,DE,RU,NL,US,CH,AM,DE,AT,PL,DK,IL,NL,US,PL,UA,NL,CA,GB,CZ,BG,PL,UA,HU,IT,DK,GB,SE,PL,RU,UA,GB,UA,SE,BE,IT,BE,NL,BE,GB,BE,GB,BE,GB,IT,GB,BE,CH,BE,IE,BE,CH,BE,IT,BE,IT,SE,BE,GB,BE,DE,BE,CH,BE,IT,BE,NL,BE,CH,BE,IE,BE,GB,BE,GB,BE,CH,BE,CH,BE,CH,BE,DE,BE,DE,BE,NL,BE,IT,NL,BE,FR,BE,FR,BE,FR,BE,FR,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,DE,BE,IE,BE,NL,BE,NL,BE,NL,BE,GB,BA,GR,BE,CH,AT,IS,SI,IT,EE,PL,AT,NL,SE,RO,GB,HU,AT,LV,AT,FR,BG,RU,GB,IS,PL,IT,RU,BG,RU,GB,CH,UA,IT,DE,FR,NL,IT,RU,FR,DE,RU,DK,DE,IN,KE,RU,EE,RU,BR,NL,IN,BR,DE,IN,HU,RU,DE,RS,IN,US,BE,DE,ID,RU,IL,RU,TW,NL,EG,NL,GB,CH,NL,DE,RU,US,PS,NL,MX,SK,NL,MX,DE,CZ,BD,DE,NL,DE,FR,US,DE,ES,IN,CZ,US,DE,KZ,FR,RU,AT,RU,DE,US,LK,IL,ES,SG,RU,FR,IL,ES,SG,US,LK,RO,RU,DE,ES,FR,US,ES,RU,IQ,RU,GB,NO,GR,CH,FR,NL,IT,SA,GB,HK,GB,NL,GB,FR,GB,BE,HK,FR,GB,US,FR,ES,FR,ES,FR,US,DE,US,NL,UA,IT,RU,GB,RU,DK,DE,CZ,DE,PL,RU,UA,ES,LV,PL,GB,IT,BY,PL,DE,BG,NL,RO,US,BG,NL,DE,RU,CH,CY,KW,CH,GB,KZ,DK,EE,BY,FR,CZ,DK,FR,UA,FR,RU,FR,PL,KW,DE,FR,DK,PL,DE,RU,UA,IE,RU,PL,DE,FR,NL,DE,UA,US,BG,TR,DE,LU,TR,DE,UA,DE,DK,AT,UA,NL,BE,UA,PL,FR,UA,BG,UA,PT,DE,UA,MD,US,GB,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,UA,RO,UA,NL,GB,SI,GB,UA,NO,_,SI,FR,CH,FR,GB,RU,PL,ES,RU,PL,NL,FI,RO,CH,_,UA,FR,SE,RO,DE,MT,RU,DE,GB,US,DE,NO,DE,PL,DK,AT,FR,RU,FR,PL,ES,UA,ME,UA,SE,UA,US,UA,RU,DE,PL,FI,TR,SE,RU,DE,GB,PL,UA,DE,PL,NL,UA,MZ,CZ,CH,TR,DE,TR,IN,TR,IN,TR,GB,DE,GB,DE,GB,SE,GB,FR,DE,DK,GB,DK,GB,NL,FR,SG,GB,SG,GB,DE,GB,DE,GB,TR,GB,CH,GB,DE,GB,DE,GB,DE,GB,DE,GB,DE,GB,ES,GB,SE,GB,CH,GB,DE,GB,DE,GB,NL,FR,GB,DE,GB,DE,GB,DE,SG,GB,DE,GB,DE,GB,CH,GB,CH,NL,GB,DE,GB,DE,GB,DE,RU,NL,DE,SE,_,RU,CH,GB,PL,NL,FR,PL,SE,UA,DE,GR,NL,HU,AT,GB,FR,BA,UA,SI,GB,UA,RU,CH,DE,CH,BE,CZ,GB,CH,RU,DE,SK,GR,SK,GR,CZ,SK,IR,RU,CZ,SK,DE,FR,GB,FI,GB,PL,SA,FR,GB,PL,GB,UA,BG,RO,GB,DE,AT,DE,PL,DK,DE,FI,GB,TR,NL,US,UA,RU,GB,SA,DE,SI,PL,UA,DE,PL,DE,PL,SE,DE,GB,RU,UA,NL,UA,LT,RU,UA,ES,UA,CH,TR,UA,PL,NL,DE,GB,DE,SE,PL,UA,GB,US,GB,SE,GB,SE,GB,SE,GB,SE,GB,SE,GB,SE,GB,SE,GB,RS,RU,PL,RU,ES,AT,PL,AT,BG,PL,RU,UZ,RU,GB,FR,US,TR,FI,GB,UZ,DE,MT,DE,SE,UA,GB,DE,US,AR,DE,GB,RU,PL,RU,IR,DE,RU,RO,FR,DE,FR,DK,NL,PL,PT,SI,RU,DE,RU,NO,FR,CH,FR,DE,RO,RU,BE,DE,LV,DE,PL,SE,PL,SK,PL,NL,FR,CH,US,DE,UA,IT,GB,NL,ES,DE,MT,GB,IL,RU,DE,NL,RU,KZ,RU,UA,GB,DE,RU,GB,KZ,PL,ES,GB,RU,PL,KZ,GB,DE,RU,UA,IL,IS,TR,UA,BG,LV,PL,RU,GB,UA,IE,UA,IT,GB,CH,BE,DE,SE,FR,SE,PL,FI,SE,FI,SE,FI,SE,FI,NL,FI,SE,FI,SE,FI,SE,FI,SE,FI,SE,FI,SE,FI,SE,DE,FI,DE,FI,GB,NL,GB,DE,GB,CH,GB,SE,DE,IT,BE,GB,DE,IE,GB,RU,GI,CI,GR,GB,PL,US,GB,FR,DE,FR,CA,GB,HK,US,HK,SG,HK,SK,NL,GR,RU,AT,DE,FI,CH,RO,FR,LT,FR,ES,BG,NL,PT,IE,HU,RO,NL,GB,RU,CH,CY,SI,BG,UA,SA,LT,PL,RS,HU,DE,TR,SE,PL,SE,PL,RU,GB,BE,GB,TR,CH,LI,CH,DE,PL,GB,BE,PL,ES,US,GB,NO,PL,RU,FR,IT,UA,RU,UA,DE,GB,RU,PL,AT,DE,NO,RU,TR,UA,PL,GB,NL,PL,BG,ES,UA,RO,RU,AT,TR,DE,CH,UA,NL,GB,BE,BG,AT,GB,IT,IR,DE,RU,CY,GB,BG,UA,RU,DK,RU,UA,RU,PL,IT,RU,RS,CZ,LV,BG,DE,RO,TR,MD,RO,RU,US,FR,PL,BG,SI,NL,TR,PL,DE,US,UA,HK,UA,US,HK,UA,GB,UA,KR,SE,RU,SE,DE,US,BE,DE,CY,DE,NL,DE,OM,DE,US,DE,OM,DE,IT,US,DE,GB,DE,GB,DE,IT,DE,BR,HK,US,DE,HK,DE,US,DE,US,DE,GB,DE,IR,NO,CZ,US,GB,SE,ES,US,DE,US,NL,DE,IT,FI,CZ,JP,LT,SK,ES,DE,ES,UA,NL,DE,RU,GB,US,AT,UA,GB,PL,DE,CH,ES,PL,UA,FR,DE,PL,RU,UA,PL,NL,US,AT,NL,RU,NL,ES,SA,RU,PL,DK,NL,IR,DK,PL,BG,TR,NL,BG,DE,HR,LV,DE,PL,DE,PL,CH,IT,AT,DE,GE,DE,GB,DE,SI,GB,UA,LT,DE,RU,GB,UA,PL,DE,NL,BE,UA,ES,PL,RO,IT,RO,RS,DK,PL,BE,CH,IT,NL,AT,IT,GB,IT,NL,GB,IT,NL,CH,FR,NL,FR,NL,FR,DE,NL,IT,GB,NO,NL,ZA,NL,GB,DE,GB,NL,NO,GB,ZA,GB,DE,GB,NL,GB,DE,GB,NL,GB,DE,NL,DE,NL,DE,ZA,NL,BE,ZA,ES,ZA,ES,IE,ES,FR,DE,NL,DE,NL,BE,NL,DK,SE,DE,CH,IT,DE,NL,GB,DE,GB,DE,DK,GB,SE,IE,ZA,AT,ZA,GB,ZA,CH,NL,GB,NL,GB,DE,BE,AT,BE,DE,IT,DE,IT,NL,IT,CH,NL,CH,HU,DK,NL,CH,SE,UA,ES,IT,GB,NL,RU,UA,PL,NL,PL,NL,CH,DE,DK,GB,BE,HU,RU,GB,US,DE,GB,PT,NL,GB,CA,GB,US,GB,DE,CH,PL,GB,CZ,AT,UA,GB,RU,NL,SE,KZ,PL,FR,PL,RU,KZ,PL,GR,UA,FR,KZ,CA,BG,PL,BG,PL,DE,NL,RU,UA,RU,US,NL,RU,GB,IE,DK,GB,RU,RO,IL,NL,BE,RO,CH,RO,LU,SE,RO,ES,GB,SE,GR,LU,AT,DE,AT,GB,DE,GB,FR,RU,SE,ES,US,SE,ES,IL,RO,UA,AT,UA,BE,CH,MK,ES,PS,SA,UA,NL,RU,FR,IE,RU,BG,UA,PL,DK,UA,DE,RU,UA,PA,RO,CH,UA,US,CH,NO,NL,FR,DE,FR,CH,FR,DE,HR,DE,RU,AT,PL,DK,IL,TR,IT,GB,IL,PL,DK,AT,FR,NL,CH,DK,GR,GB,US,GB,US,GB,US,DE,GB,US,GB,SE,FR,GB,DE,GB,RU,DK,SI,IR,AT,RU,TH,EE,DE,HR,BE,DE,IR,CZ,EE,DE,AT,IR,DE,NL,SE,DE,SE,NL,UA,DK,SE,FR,SE,SI,RO,CH,ES,NL,DE,RU,SA,PL,RU,UA,DE,NL,RU,DE,IR,UA,DE,IE,NO,RU,BG,RU,UA,GB,DE,IR,RO,ES,RU,IL,BE,GB,UA,BG,PL,RU,US,GB,DE,GB,UA,IR,RU,NL,BE,RU,IT,GB,RU,FR,DE,BG,SI,HU,DE,ES,AM,US,UA,GB,DK,AT,NL,DE,NO,TR,NL,FI,RO,UA,FR,RU,CH,FR,RU,UA,LT,DK,CH,NO,RU,BG,NL,AM,GB,RU,RO,PL,GB,RU,UA,PL,FR,RU,LT,UA,PL,RU,PL,AM,CH,RU,UA,DE,NL,UA,CZ,NL,RU,GB,SE,UA,DE,GB,RU,HU,DE,RU,HU,NL,GB,PL,RU,CH,RU,FR,RU,PL,RU,AT,DE,SE,DE,AT,DE,IL,DK,FR,PL,BR,PL,RS,DK,FI,DE,ES,NL,GB,SE,FI,SE,HU,GB,NL,GB,DE,UA,HU,FR,DE,SE,KZ,_,FR,DE,NL,DE,US,RO,PL,UA,IL,IT,FR,GB,FR,DE,GR,DE,FR,UA,AT,GB,PL,SI,BE,IT,RU,GR,IL,PL,DE,FR,RU,US,GB,PL,RU,PL,US,RU,FR,CH,SE,FR,TR,NL,BE,RU,FR,GB,HU,AL,FR,RU,VG,LU,DE,UA,MK,RU,UA,PT,BE,US,DE,FR,DE,KE,GB,BE,US,BE,NL,GB,FR,CH,CZ,GB,AT,CH,DE,NO,PL,IT,RU,SA,ZA,GB,NL,DE,NL,AT,US,CH,DE,ES,FR,GB,US,PL,RO,DK,RU,PL,DE,GB,RO,GB,RS,RU,SI,US,UA,AL,TR,RU,UA,RU,DE,RU,IT,SE,CY,RU,BE,RU,US,RU,SG,RU,GB,RU,GB,FR,RU,FR,RU,KZ,RU,KZ,AU,RU,AU,RU,AU,FI,RU,FI,PL,RU,PL,RU,HU,RU,RO,DE,PL,RU,DE,PL,CZ,CH,DK,RU,GB,PL,DE,SK,RU,TR,IT,PL,SE,GB,IT,FR,US,KZ,DE,SE,GB,NL,US,PL,SE,IT,GB,PL,GB,US,GB,RU,SI,PL,RU,PL,CH,FI,RU,IL,RU,AT,RU,UA,RU,IR,MD,DE,BG,JP,CZ,DE,UA,RU,IL,NL,RU,UA,RU,GB,US,RU,UA,RU,NL,IT,RO,RU,SE,UA,LV,RU,PH,IT,RU,GB,ES,UA,DK,UZ,UA,RU,GR,RU,UA,RU,NL,IE,UA,RU,UA,RU,GB,RU,GB,NL,GB,NL,DE,NL,DE,NL,SE,GB,IT,GB,NL,NO,FI,DK,NL,DK,NL,DE,NL,AT,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,IT,FR,NL,FR,CH,NL,CH,NL,FR,NL,CH,GB,IE,SK,NL,SK,NL,IT,HU,NL,GB,NL,RU,NL,FR,GB,NL,ES,IT,NL,DE,ES,DE,IT,DE,NL,FR,DE,CZ,NL,GB,DK,NL,CZ,IL,NL,FI,NL,CZ,DE,NL,SE,NL,GB,NL,AT,NL,GR,NL,GB,US,TR,UA,NO,UA,SK,UA,DE,UA,FR,CH,IR,RU,FR,BG,DK,GB,SE,CH,PL,ES,RU,DE,FR,DE,US,RU,NL,DK,PL,LV,FR,RU,GB,DE,RU,IT,UA,HU,UA,RU,UA,FR,RU,RO,CH,DE,RO,NL,US,UA,CH,BG,AT,AZ,SE,TR,LT,ES,DE,LV,KG,ES,RO,CZ,RU,FR,RU,ES,NL,ES,US,DE,PL,HU,IL,SI,PL,DE,GB,LU,GB,FI,IE,RU,GB,NL,GB,ES,GB,AT,FR,GB,ES,GB,SE,GB,DE,FR,GB,DE,GB,KW,ES,GB,DE,GB,DE,GB,IR,GB,IE,GB,DE,GB,DE,NL,GB,DE,GB,ES,GB,FR,GB,ES,GB,ES,GB,ES,GB,IT,ES,GB,PT,GB,SE,ES,GB,CH,GB,NL,GB,DK,ES,GB,ES,GB,NL,GB,DE,ES,NL,GB,BH,SA,GB,ES,DE,GB,ES,IT,GB,NL,IT,GB,IT,SA,CA,GB,FR,GB,DE,ES,FR,DE,GB,PT,FR,PT,PL,GB,BG,NL,GB,DE,NL,GB,ES,FR,PL,CA,GB,ES,DE,GB,PT,FR,DE,FR,PL,ES,BE,ES,PL,GB,FR,DE,GB,ES,GB,PL,TR,GB,FR,EE,BE,EE,BE,EE,BE,EE,BE,EE,BE,EE,BE,EE,BE,EE,BE,BA,BY,RS,PL,RO,IE,PL,NL,AT,CA,CH,US,RU,DE,IT,GB,NO,CH,NL,PL,RU,IT,RO,CH,IL,UA,SI,BG,UA,NL,RU,RO,CH,IL,GB,PL,CZ,PL,FR,JP,NO,BR,RO,DK,PL,RU,US,BR,CH,NL,FR,RU,CY,CH,IT,BG,FR,DE,PL,RO,UA,NL,DE,RU,BE,IT,UA,FI,PT,SE,GB,NL,DE,LI,FR,DE,PL,GB,BE,IT,UA,IR,RU,AM,AT,DE,PL,BG,CH,GB,DE,GG,DE,UA,IT,RU,AT,TR,DE,PL,DK,DE,GB,FI,RU,BR,RO,PL,KZ,RU,MD,GB,RO,UA,RO,FR,DE,CZ,GR,RO,SE,TR,RU,IR,KW,DE,HU,RO,HU,GR,HU,AE,TZ,AE,KW,AE,KW,AE,BG,BZ,BG,AT,RU,UA,IR,LT,RU,CH,RU,GR,DE,BE,IR,HU,IR,DE,RU,NL,RU,PL,DE,UA,DE,CH,GB,UA,PL,SI,GB,IR,UA,DE,BG,UA,AT,IT,DK,DE,GB,NL,GB,NL,DE,NL,DE,FR,NL,DE,NL,GB,NL,GB,CH,DE,NL,GB,NL,GB,NL,FR,DE,NL,GB,DE,FR,GB,DE,FR,GB,DE,NL,AT,NL,GB,DE,IE,DE,LI,RU,UA,PL,GB,DE,SE,PL,AT,PL,HR,BE,GB,UA,RO,BE,DE,FR,CH,GB,PL,FR,CH,AT,BE,FR,PT,GB,CZ,DE,MT,RU,BE,RO,RU,SE,AT,ES,CH,ES,DE,KZ,CH,UA,_,US,PL,BG,NL,RU,GB,IT,GB,RU,GB,IT,AT,DE,NL,UA,GB,LY,GB,DE,RU,LV,UA,DE,PT,FI,DE,SI,BG,DE,RU,PL,FI,RU,LV,BE,SE,NL,UA,DE,SE,AT,DE,US,RU,DK,NL,AT,IL,NL,DK,NL,BE,CH,PL,TR,ES,EG,SI,RU,IT,RO,NL,UA,GB,CH,RO,DE,SI,CH,SI,RO,DE,BE,EG,BE,NL,RO,SI,RU,IR,DE,FI,UA,CZ,RU,UA,DE,UA,CH,DE,IT,BG,GB,FR,EG,ES,FI,BE,DE,EE,PL,NL,PL,RU,NL,SE,NL,IT,RO,BG,NL,RO,UA,NZ,BR,FR,RU,SY,UA,RU,UA,IL,DE,GB,LT,US,DE,PL,GB,UA,PL,UA,FI,DE,FR,PL,_,RU,IR,GB,DE,NO,IT,PL,GB,DE,RU,IR,GB,BR,NL,PL,RU,IR,PT,GB,RU,FR,PT,CH,SE,RU,NL,FI,SE,PL,DE,PL,GB,ES,RS,DE,RU,CH,GB,RO,DE,PL,UA,NL,DE,BG,PL,NL,UA,PL,NL,DK,GB,PL,BG,PL,DK,SE,PL,ES,PL,CH,RU,FR,LV,GB,UA,DE,GB,RO,NL,UA,DE,CH,AT,DE,AT,ME,IT,NL,BE,DE,IL,AT,PL,PT,UA,FR,IT,SK,PL,AT,SK,PL,SK,SA,SE,DE,IE,DK,SA,UA,DE,AU,GB,CH,GB,RU,UA,DE,FR,GB,DE,PL,GB,NL,RO,LI,PL,DE,GB,RU,SE,UA,DE,LT,AT,GB,AT,FR,IL,RU,PL,GB,US,TR,FI,DE,LV,BE,GI,DE,IT,PL,IR,ES,US,RU,SK,UA,RO,FR,OM,DE,ES,IE,AT,PL,KZ,GB,UA,BY,PL,SI,IL,RU,GB,NL,DE,IT,UA,CH,US,GB,BE,FR,PT,DE,DK,LV,SK,NL,PT,ES,LU,PL,GB,NO,PL,RU,SK,SI,CZ,DK,RU,ES,PL,RU,UA,SI,PL,LI,SG,RO,KZ,PL,GB,PL,AT,PL,TR,CH,JP,DE,NL,RU,SK,PT,PL,NL,CH,RU,SE,JP,DE,RU,DE,NL,GB,ES,RU,SI,RO,GB,UA,DE,HR,SI,EG,CH,CZ,NL,LU,TJ,SA,RU,GB,NL,RU,_,NL,BE,RU,SE,RU,UA,PL,GB,FR,GB,FR,GB,DE,IT,NL,DK,HU,GB,IT,PL,UA,RU,NL,IT,PL,LV,GB,IS,FR,DE,NL,PT,BG,RO,CH,RU,RO,DE,RU,US,FR,AT,LV,RO,KG,DE,SI,RU,GB,RU,PL,AT,DE,GB,RO,NL,NO,RO,IE,RU,DE,NL,AT,FI,NL,PL,DE,US,CH,UA,RU,HU,GB,DE,UA,GB,FK,GB,DE,PL,RO,ES,RU,UA,RU,NL,DE,RU,PL,RU,FR,DE,PL,DK,DE,GB,US,AT,IL,IT,DE,UA,PL,HU,FR,CH,RU,UA,CH,UA,DE,RU,DE,RU,CH,RO,PL,NL,RU,DE,SI,RO,BG,SE,PL,NL,AM,RS,CZ,EE,SI,IT,GR,SE,RS,DE,HK,DE,BR,DE,RO,GB,RO,DE,US,DE,CH,DE,CH,DE,NL,DE,NL,DE,US,HK,NL,GB,SG,US,JP,AU,GB,ZA,DE,US,DE,US,LI,FR,PL,RO,DE,PL,CA,PL,CH,FR,ES,UA,RO,PL,FR,DE,UA,NL,RO,DK,KW,NO,PL,GB,ES,PL,CH,RU,AT,NO,IT,FI,UG,MU,IN,PR,SA,KE,RU,SA,MU,ZA,AO,ZA,MU,NA,ZA,MU,ZA,SA,MU,KW,MU,US,ZA,SN,ZA,DE,MU,BM,MU,IN,MU,IN,ZA,KE,GH,CI,SC,ZA,KE,NG,MU,JM,CD,JM,US,PR,US,EG,ZA,KE,ZA,VG,VC,BB,KN,VC,VG,BB,NG,SD,JM,BW,ZA,SY,BI,ZA,MU,MA,ZA,EG,MU,JM,PR,EG,MU,SG,CH,MU,KE,NG,GH,MU,SA,AE,PK,GD,MU,DO,MU,CM,IR,ZA,NA,JM,MZ,JM,ZA,MU,ZA,MU,ZA,TT,ZA,MU,JM,ZA,CI,JM,BB,ZA,MU,US,MU,ZA,ZW,ZA,LS,ZA,CI,ZA,NG,ZA,MU,ZA,MU,ZA,EG,MU,NG,MU,ZA,MU,CI,ZA,KE,MU,ZA,KE,NG,CI,KE,ZA,MU,TZ,NG,KE,MU,ZA,EG,ZA,AO,ZA,CD,LS,ZA,GH,ZA,MZ,GH,ZA,GH,ZA,KE,ZA,NA,TZ,LS,BW,SZ,ZA,AO,ZA,CD,MU,BW,ZA,TZ,ZA,AO,ZA,CI,ZA,MU,ZA,MU,ZA,EG,ZA,MU,ZA,UG,EG,ZA,CI,ZA,CI,UG,MU,ZA,MU,MZ,ZA,GH,ML,ZA,UG,ZA,NG,ZA,CI,MU,ZA,ZW,NA,ZA,SO,ZA,MU,ZA,MW,KE,GH,ZA,MA,NG,ZA,SZ,ZA,MZ,ZA,NG,MU,ZA,LS,ZA,NG,ZA,AO,KE,ZA,GH,ZA,NG,ZA,AO,ZA,MU,ZA,TZ,PR,NA,EG,ZM,ZA,IN,BM,RW,ZA,RW,ZA,RW,ZA,RW,ZA,RW,PR,MA,NG,ZA,MZ,MU,NG,ZM,TZ,MU,ZA,MA,AO,CD,NG,ZA,KE,UG,GH,ZA,MU,ZA,TZ,ZA,KE,ZA,NG,ZA,SZ,ZA,KE,GH,ZA,TZ,ZA,CI,GH,ZA,MU,KE,MU,AO,ZA,EG,BF,SC,KE,ZA,BI,ZA,NG,AO,EG,NG,ZA,GH,EG,ZA,KE,ZA,MU,ZA,IN,SA,ZA,NL,ZA,SC,CO,AU,SC,IT,US,SC,RU,SC,DE,SC,US,SC,DE,GB,SC,CA,SC,RU,SC,RU,SC,IT,SC,ID,SC,IT,SC,US,SC,HK,SC,DE,GB,JP,SC,IT,SC,US,SC,GB,SC,AU,SC,IT,SC,KR,ID,DE,KR,SC,ID,SC,IT,SC,IT,SC,IT,SC,IT,SC,NL,SC,DE,GB,SC,IT,SC,AT,SC,IT,SC,HK,SC,NL,SC,US,IT,SC,JP,SC,US,IT,DE,SC,IT,SC,US,IT,SC,IT,SC,IT,SC,IT,SC,IT,SC,NL,SC,HK,JP,SC,IT,SC,IT,US,IT,SC,NL,SC,AU,US,SC,PE,SC,JP,CL,SC,GB,SC,IT,AU,SC,ID,GB,SC,NA,MU,EG,MU,DZ,MU,ZA,EG,NG,EG,CI,MU,ZA,MZ,ZA,EG,KE,ZA,MU,ZA,LS,ZA,SZ,ZA,JO,US,CA,US,CA,US,CA,US,MU,ZW,NG,ZA,SZ,ZA,MU,NG,KE,MU,ZA,PR,ZA,MZ,BF,ZA,ZW,DZ,NG,TZ,ZA,MU,ZA,SD,AO,CI,GH,ZA,JM,ZA,MU,GP,MU,AR,ZA,ML,PR,CI,AO,MU,MW,MA,NG,KE,CI,ZA,TZ,ZA,CR,MU,CR,MU,CR,MU,CR,MU,CR,MU,CR,MU,CR,MU,CR,MU,CR,MU,CR,MU,CR,ZA,MZ,CI,GH,NG,ZA,NG,ZA,TZ,MU,ZA,MU,CD,KE,MU,ZA,EG,MU,CI,TZ,AO,MU,NG,ZA,MU,EG,NG,ZA,TZ,KE,ZW,KE,GN,MU,NG,TN,ZA,DZ,PR,ZA,MU,ZA,TZ,ZW,NA,ZW,UG,KE,MU,GH,ZA,GH,AO,MU,ZW,MU,EG,KE,MU,KE,GH,ZA,AO,KE,ZA,MG,NG,MU,CI,MU,EG,KE,TZ,MU,AO,MU,GH,UG,CI,KE,SL,TZ,ZA,NG,CI,MZ,NG,MA,EG,MU,KE,CG,MZ,GH,ZA,NG,CI,KE,BF,KE,LS,MU,NG,MU,ZA,MU,ZA,CI,ZA,GH,DE,US,NL,NA,TZ,ZW,ZA,RW,CI,ZA,TZ,NG,CI,ZA,MU,TZ,AO,BW,ZA,TZ,MW,ZA,KE,CI,MZ,KE,CI,US,NG,AO,EG,ZA,CI,ZA,MU,NG,NA,MU,ZA,MU,ZA,AO,GH,TZ,MU,CI,TZ,ZM,TZ,ZA,NG,SC,BJ,MU,ZA,EG,ZM,ZA,GM,NG,MU,ZA,NA,US,NA,NL,NA,ZA,NA,NG,CI,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,US,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,CI,GM,NA,BI,SZ,TZ,AO,RW,BJ,MU,DJ,SC,TZ,MG,GH,UG,LR,GA,MR,BF,TZ,MU,KE,MU,BW,MU,NG,MU,NG,MU,NG,MU,NG,MU,MZ,MU,CM,MU,GN,MU,SN,MU,TG,MU,ZW,MU,ML,MU,TZ,MU,TZ,MU,TZ,MU,CG,MU,SO,MU,CG,MU,NG,MU,GN,MU,SD,MU,CD,MU,MW,MU,BF,MU,CD,MU,UG,MU,CM,MU,EG,MU,ZM,MU,NG,MU,TD,MU,CV,MU,ET,MU,ZA,MU,MA,MU,ZA,MU,ZA,NG,SN,ML,TZ,MU,EG,GH,GA,MU,ZA,MZ,ZA,US,ZA,US,ZA,US,MU,GB,MU,US,MU,GB,MU,GB,MU,GB,MU,US,MU,GB,MU,GB,MU,GB,MU,GB,MU,GB,MU,GB,MU,GB,MU,US,MU,US,MU,US,MU,US,MU,GB,MU,GB,MU,GB,MU,GB,MU,GB,MU,KR,MU,FR,MU,US,MU,US,MU,US,MU,US,MU,US,MU,GB,MU,US,MU,GB,MU,US,MU,GB,MU,US,MU,AU,MU,US,MU,US,MU,US,MU,US,MU,US,MU,GB,MU,GB,MU,US,MU,US,MU,US,MU,US,MU,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,US,ZA,US,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,US,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,US,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,US,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,US,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,US,SC,ZA,US,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,TZ,MU,KE,MU,BW,MU,CM,ZA,KE,MU,KE,MU,KE,MU,GN,MU,SN,MU,TG,MU,ZW,MU,ML,MU,TZ,MU,TZ,MU,TZ,MU,SO,MU,CG,MU,NG,MU,GN,MU,CD,MU,KE,MU,KE,MU,ZA,MU,MA,MU,BF,MU,CD,MU,KE,MU,UG,MU,CM,MU,EG,MU,SS,LY,MU,CD,MU,ZM,MU,ZA,MU,NG,MU,TD,MU,LY,MU,CV,MU,KE,MU,ET,MU,ZA,MU,TZ,ZA,GH,ZA,KE,ZA,GB,ZA,GB,ZA,CD,AO,MU,ZA,SC,MU,BW,NG,ZA,MA,ZA,MU,HK,MU,US,MU,MA,KE,MA,EG,MU,TG,GH,TN,CI,TN,ET,MU,BJ,MG,ZA,MU,TZ,MU,ZA,MU,SS,CI,KE,CI,MU,NG,ZA,MU,AF,MU,AF,MU,AF,MU,LV,SC,SE,DE,SC,EE,DE,US,DE,SE,ZA,DE,US,DE,SE,SC,US,DE,SE,DE,SC,SE,DE,SC,DE,FR,DE,SC,DE,SE,DE,SC,US,GB,FI,DE,LV,DE,LV,EE,SC,DE,SG,NL,ZA,RO,ZA,SC,ZA,DE,SE,DE,SE,DE,SE,SC,DE,NL,SC,DE,SC,DE,IN,SE,SC,SE,DE,SE,LV,ZA,LV,ZA,EE,SC,EE,SC,ZA,EE,SC,EE,SC,EE,SE,EE,SC,ES,IE,SE,ZA,SC,US,DE,SC,DE,SC,ZA,EE,ZA,ES,SC,SE,ZA,US,SC,ZA,SC,ZA,SC,US,ZA,SC,US,SC,DE,SC,IE,SC,IE,EE,IE,ES,DE,SC,FI,EE,FI,ZA,SE,ZA,SC,ZA,EE,SC,EE,US,SC,SE,US,SE,SC,ZA,SC,NL,DE,SE,SC,SE,EE,GB,EE,GB,EE,SC,ZA,SC,EE,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,US,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,EE,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,SG,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,DE,ZA,SC,SG,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,US,ZA,US,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,DE,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,GB,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,EE,SC,ZA,SC,EE,ZA,SC,ZA,US,ZA,SC,US,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,GB,ZA,SC,ZA,SC,ZA,SC,US,ZA,EE,SC,ZA,SC,US,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,US,SC,US,SC,ZA,SC,ZA,SC,US,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,US,SC,ZA,SC,ZA,KE,UG,KE,ML,NG,ML,ER,NG,GH,NG,GH,MA,CD,CI,TZ,MA,CI,ZW,GH,EG,GH,ZA,SS,CI,ZW,EG,GH,CI,ZA,ZM,AO,ZW,UG,BW,NA,KE,ZA,NA,KE,MU,DE,TZ,DE,ZM,ZW,UG,NA,AO,ZA,KE,MU,BW,SO,NG,DE,CF,CI,DJ,SO,KE,ZA,KE,ZA,EG,CI,EG,SD,TD,SD,KE,MU,CM,LS,ZA,AO,TN,EG,MA,NG,KE,ZA,US,ZA,MU,KE,SN,ZA,MU,US,ZA,NG,MW,MU,EG,NA,KE,ZA,KE,ZA,MU,ZA,EG,NG,ZA,TN,CF,AO,TZ,BW,NA,MU,ZA,CI,ZA,UG,GH,CI,GH,ZA,MU,NG,CI,ZA,EG,NA,NG,CM,MU,CI,ZA,CD,TZ,SL,KE,ZW,CI,GH,ZA,MU,TZ,ZA,EG,KE,CI,KE,EG,TZ,AO,ZA,NG,EG,NG,CI,NG,MA,EG,JO,EG,JO,NG,ZA,NG,ZW,NG,ZA,NG,MU,NG,EG,NG,MU,AO,ZM,BI,CI,TZ,EG,ZA,SL,CI,RW,AO,MU,ZA,EG,NA,AO,SD,KE,ZA,LS,UG,CI,MW,CD,ZM,ZA,CG,MZ,GM,NA,BI,SZ,DJ,GA,BJ,MG,TD,SC,LR,MR,CI,BF,ZA,NG,ZA,GM,SD,KE,MA,ZA,RW,CD,ZA,SN,KE,TN,US,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,CA,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,PL,SC,EE,SC,LV,ZA,DE,ES,SC,IN,SC,SG,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,CA,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,GB,NL,SC,ZA,PL,SC,ZA,SC,SE,ZA,SC,US,SC,ZA,SC,ZA,SG,ZA,SC,ZA,CA,ZA,SC,ZA,SC,ZA,SC,RO,SC,ZA,SC,ZA,SC,ZA,PL,SC,ZA,SC,EE,SC,NL,SC,ZA,SC,ZA,SG,ZA,GB,US,ZA,US,ZA,SC,ZA,CA,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,PL,ZA,SC,ZA,SC,GB,SC,NL,SC,EE,SC,US,ZA,US,SG,BR,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,GB,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,CA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,DE,ZA,SC,ZA,EE,SC,ZA,SC,DE,SC,NL,GB,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,CA,ZA,SC,US,SC,ZA,SC,ZA,EE,SC,ZA,SC,ZA,SG,ZA,SC,ZA,SC,DE,SC,DE,SC,ZA,SC,DE,SC,ZA,SC,PL,SC,ZA,SC,GB,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,CA,SC,ZA,SC,ZA,US,SC,ZA,SC,US,ZA,SG,SC,ZA,DE,SC,ZA,SC,ZA,SC,ZA,DE,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,CA,US,SC,ZA,SC,ZA,SG,US,SC,ZA,US,DE,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,US,ZA,CA,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,US,ZA,SC,US,SC,ZA,US,ZA,SC,ZA,EE,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,US,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,US,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,US,SC,ZA,SC,US,ZA,SC,ZA,SC,ZA,SC,DE,ZA,SC,ZA,EE,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SG,ZA,SC,ZA,SC,DE,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,US,SC,US,ZA,SC,ZA,SC,ZA,SC,ZA,CA,ZA,SC,ZA,SC,ZA,SC,FI,SG,ZA,SC,DE,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,GB,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,US,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ES,DE,SC,ES,SC,ES,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,EE,US,ZA,SC,ZA,SC,SK,SC,RO,SC,RO,SK,EE,NL,EE,SC,ZA,SC,ZA,DE,SC,ES,SC,ZA,SC,NL,DE,SE,DE,SE,ZA,SC,ZA,SC,ZA,SC,US,ZA,SC,ZA,EE,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,EE,SC,EE,SC,ZA,SC,ZA,SC,DE,ES,DE,SC,NL,EE,DE,EE,IN,RO,SC,RO,SC,RO,MU,PK,MU,PK,MU,ZA,US,SC,ZA,US,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,US,SC,US,SC,ZA,CA,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,SC,ZA,SC,ZA,SC,ZA,SC,ZA,US,ZA,SC,ZA,SC,US,SC,ZA,SC,US,SC,ZA,SC,ZA,SC,US,SC,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,GB,DE,SE,ZA,SC,SK,ZA,EE,DE,SC,ZA,PL,SC,ZA,SC,US,ZA,SC,ZA,US,EE,ZA,US,ZA,SC,ZA,SC,ZA,SC,ZA,EE,SC,EE,SC,ZA,EE,SC,NL,SC,DE,ZA,SC,ZA,DE,ZA,EE,US,DE,NL,ZA,SC,ES,SC,ZA,SC,IN,EE,ZA,EE,SC,ZA,SC,ZA,TZ,ZA,AO,ZA,UG,CI,CD,ZA,MU,LR,ZA,SN,ZA,KE,ZA,MU,ZA,GH,NG,ZA,KE,ZA,KE,MU,BJ,ML,ZA,NG,ZA,GQ,ZA,US,ZA,HK,MU,ZA,TN,SG,TN,EG,ZA,DZ,EG,MA,EG,KE,JP,KE,DZ,MA,AO,ZA,GM,NG,AO,TG,MG,CI,MU,MG,NG,CM,TD,CI,CG,CI,ZA,AO,CI,MU,ZA,CI,GQ,CI,TZ,ZA,CD,NG,GN,EG,TZ,MA,MU,ZA,KE,ZA,KE,ZA,KE,ZA,KE,ZA,ML,LS,CI,ZW,CI,ZA,ET,KE,NG,UG,ZA,SC,RW,BI,AO,MU,ZW,CD,RW,NG,ZA,MU,KE,SL,CI,ZA,SO,ET,SO,CI,CG,MZ,MG,MU,SC,CM,ZA,NG,MU,ZA,KE,TZ,KE,MU,GH,MG,ST,CI,EG,EE,EG,ZA,KE,ZA,TZ,NA,CD,LS,ZA,GH,EG,DZ,SD,NG,KE,NG,NF,NG,NF,NG,NF,NG,ZA,MW,AT,CH,AT,ZW,ZM,NE,GQ,GW,DE,NG,DE,NG,DE,NG,ZA,CI,CG,SL,LY,ZA,MG,ZA,LR,CD,CI,TZ,AO,BJ,AO,MZ,ZM,CI,SO,KE,LS,MU,NG,MU,ZA,GH,ZA,UG,ZA,TZ,ZW,EG,MU,SG,MU,ZA,MA,MR,LS,GA,GM,MU,ZA,LR,ZA,KE,MU,BW,ZA,DJ,SO,GM,MU,CI,MZ,LR,CI,LY,ZA,SS,CI,ZM,BI,CD,KE,NA,SC,ZA,NG,NA,AO,NA,AO,NA,AO,ZA,MU,BJ,TZ,CI,ZA,KE,ZA,RW,CI,MZ,ZA,KE,TN,UG,BF,ZA,CI,TN,DJ,AO,GA,ZA,KE,ZA,SG,ZA,NG,GM,ZA,MZ,CF,MU,TZ,ZA,CI,NG,RW,NA,TN,ZA,EG,MA,KE,MZ,TZ,SD,SS,SD,GH,SD,NG,GH,MA,KE,LS,SD,NG,GH,CV,ZA,NG,CG,GM,NG,KM,ZA,NG,MU,NG,US,CA,US,CA,US,CL,US,CA,US,GB,US,GB,US,BE,US,BE,US,AU,US,GB,US,CA,US,CA,US,CA,US,SG,US,SA,US,HK,US,CN,US,CN,US,AR,US,JP,US,CA,US,_,US,CA,US,CA,US,_,US,_,US,_,US,CA,US,CA,US,SG,US,GB,US,CA,US,_,US,_,US,IT,_,US,BR,US,CA,US,NL,US,_,US,BR,_,US,_,US,_,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,US,CH,US,_,CA,_,US,_,DE,US,AU,US,DE,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CL,US,_,US,CA,US,CA,US,GB,US,GB,US,_,CA,US,_,US,_,US,GB,US,GB,NL,US,CA,US,CA,US,HK,US,VI,SA,US,SA,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,US,FR,US,GB,US,GB,US,HK,US,GB,US,GB,US,_,CA,CL,US,LU,US,PE,SG,AR,US,NZ,SG,DE,US,LU,US,LU,US,CA,US,CA,US,DE,JP,US,HK,US,JP,DE,JP,US,HK,US,HK,US,SG,US,GB,US,BR,US,KZ,US,GT,US,GT,PE,US,CA,US,GB,US,NZ,US,CA,US,AU,US,AU,US,AU,CA,US,DE,US,TH,US,_,US,CO,BR,US,CA,US,IL,US,CR,US,CA,US,AR,US,CA,US,_,US,SA,US,CO,US,CA,US,SG,US,_,ID,US,CA,US,CA,US,CA,US,SY,US,CA,US,CA,US,_,US,_,US,NZ,US,AU,US,CA,US,CA,US,AS,_,US,GB,CA,US,CA,US,PR,US,CA,US,CA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,CA,US,ZA,NA,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,CA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,ZA,US,PR,US,CA,US,CA,US,CA,US,_,US,VG,BB,US,GB,US,CA,US,JP,US,CA,US,JM,US,NL,US,CA,BR,US,CA,US,CA,US,HK,US,_,US,_,US,DE,US,BE,US,DE,US,DE,US,DE,US,DE,US,CA,US,CA,US,GB,US,CA,US,_,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CO,US,YE,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,CA,_,CA,JP,CA,US,CA,US,CA,US,CA,US,JP,SG,US,AS,US,AS,US,DE,US,DE,US,DE,US,CA,US,CA,US,GB,US,GB,US,GU,US,CA,US,JP,US,JP,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,KZ,US,CA,US,AT,US,CA,US,CA,US,CA,US,CW,US,CW,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,DE,CA,GB,CA,US,CA,US,CA,US,CA,US,GB,CA,US,GB,US,BR,US,CA,US,CA,US,_,US,CA,US,CA,US,CA,US,GB,US,GB,US,NL,US,CH,US,CA,US,HK,US,CA,CH,US,IL,NL,US,CA,US,CA,US,CA,DM,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,DE,US,FR,BE,US,DE,US,DE,US,DE,US,FR,DE,US,CA,US,GB,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,AU,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,JP,US,GB,US,GB,NL,GB,US,GB,US,DE,US,DE,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,ES,US,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,_,US,CH,US,_,US,CA,US,CA,US,MK,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IL,CA,US,CH,US,CA,_,US,CA,GB,US,_,US,_,CA,US,_,US,CA,US,CA,US,CA,US,_,US,CA,US,IN,US,_,US,CA,US,NL,US,GB,US,AU,US,CH,GB,JP,BE,US,FR,US,NL,CA,GB,DE,US,CA,DE,FR,US,CA,FO,US,CA,US,CA,US,_,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GB,US,CA,US,NL,US,CA,US,CA,US,_,US,AU,US,JP,AU,IL,US,FR,US,BE,US,NZ,US,HK,IL,AU,HK,SE,BE,US,BE,US,CA,US,BZ,US,JP,CA,JP,US,AR,CR,US,AR,PE,UY,VE,BZ,US,CA,US,TR,US,CA,US,SG,EC,CN,BA,DZ,AM,BS,BD,CL,LA,VE,PA,PE,UY,GE,US,AZ,US,IN,US,BT,BN,MD,GB,CL,US,HK,ME,US,GB,US,SG,US,AU,SG,US,FR,US,GB,US,IN,US,CA,US,_,US,_,US,CA,US,CH,US,AU,US,KR,AU,US,CA,US,CA,US,MX,US,GB,US,CA,US,_,US,CA,US,CA,US,BR,US,NL,US,NL,US,GB,US,NL,US,CA,US,CH,US,IQ,US,CA,US,_,US,CA,US,CA,BR,CA,US,CA,US,CA,US,CO,US,BO,CA,US,CA,US,CA,US,CA,US,CA,US,CA,_,US,CA,US,CA,US,CA,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,KN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CN,US,JP,US,GB,US,HK,SG,US,SG,HK,US,CA,GB,US,SG,JP,US,IQ,US,FR,US,CZ,US,DE,US,CA,US,CA,GB,US,JP,HK,JP,NL,BE,NL,BE,US,CA,US,CA,US,SG,US,SG,US,CA,US,CA,US,CA,US,CA,US,GB,US,CH,US,GB,US,IT,GB,DE,CH,DE,US,GB,AU,FR,SG,NL,US,JP,US,EE,CH,EE,US,GB,US,CA,US,CA,US,CA,US,LV,US,CA,US,BM,US,CA,_,US,CA,US,DE,SG,US,CA,US,BR,US,CA,US,JP,US,CA,US,IN,US,_,US,DE,US,BM,US,BM,US,_,US,PR,US,CA,US,NL,US,CA,US,_,US,_,US,DE,RO,AT,DE,RO,AT,PH,US,CA,US,CA,US,CA,US,_,US,CA,US,DE,US,_,US,CA,US,PR,US,JP,US,GB,US,GB,US,CA,US,CH,US,CH,US,CA,US,CA,US,BM,US,DE,US,IT,US,CA,US,NL,US,CA,US,MX,US,CA,US,GB,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,AU,BE,CH,US,SG,DE,SG,HK,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,GB,US,HK,CH,SG,CH,SG,CH,GB,JP,CH,HK,SG,CH,AU,CH,US,CH,HK,CH,SG,CH,US,SG,US,AU,US,PR,US,GB,US,CA,US,NL,US,CA,US,PR,CA,US,PR,US,BB,US,CA,CH,US,PR,US,CA,US,CA,US,SG,US,BB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,LU,US,LU,US,SG,US,CA,US,CA,US,CA,US,_,US,CA,US,MX,US,CA,US,AW,US,PR,US,AW,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,EE,US,CA,US,CA,US,_,US,_,US,GB,US,GB,NO,SG,US,DK,CA,IT,FR,HK,NL,FR,US,JP,US,NL,US,NL,US,_,US,_,US,MS,US,BB,US,CA,IN,US,CA,_,US,CA,US,PR,US,PR,CA,US,CA,US,CA,US,_,US,HK,US,CA,HK,US,CA,_,US,_,US,_,CA,US,CA,US,_,US,_,US,_,US,_,HK,CA,US,_,US,_,US,BM,GB,US,VG,LC,DM,AG,US,CA,US,CA,US,CA,US,CA,US,CA,BM,GB,US,MF,US,JP,US,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,ES,US,ZA,US,CA,US,RS,US,CA,US,KN,US,AU,US,CA,US,CA,US,CA,US,_,US,_,CA,US,CA,US,HK,US,_,US,_,US,CA,US,_,US,PA,US,_,US,_,US,IE,US,_,US,BM,US,CA,US,PR,US,CA,US,CA,US,NL,CA,US,_,US,_,US,ZA,US,_,US,CA,US,CA,US,_,US,HK,US,_,US,CO,AR,CL,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,US,CA,US,CA,US,CA,US,_,JE,US,CA,US,_,US,_,US,CA,US,CA,US,RS,RU,US,_,US,CA,US,CA,US,_,US,LC,BS,US,JP,CA,US,_,US,_,US,CZ,US,DE,US,DE,US,GB,US,GB,US,DE,US,DE,US,CA,US,GB,US,JP,US,NL,US,HK,US,CA,_,CA,US,CA,US,CA,_,US,JP,US,CA,CH,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IM,US,IM,US,NL,US,CA,US,AU,US,GB,US,GB,US,_,US,CA,BB,CA,US,CA,US,AR,US,CH,CA,US,_,US,AU,US,JP,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,CN,US,AG,US,CA,OM,US,CA,US,CA,US,SG,US,GB,US,CH,US,CH,JP,GB,AU,CH,GB,US,CH,SG,CH,GB,CH,CN,CH,HK,AU,CH,US,CH,BR,CH,US,CH,US,CH,US,CH,US,CH,US,AU,US,_,US,CA,US,CA,US,CA,US,_,BB,US,CA,US,CA,US,CA,US,CA,US,CA,BE,US,CA,US,_,US,_,US,CA,US,CA,US,CA,CH,US,CA,US,NL,US,CA,FR,CA,US,CA,US,CA,US,CA,_,US,CA,US,CA,US,CA,US,CA,US,CA,CR,CA,US,CA,US,CA,US,NL,SG,US,BE,US,CN,US,NL,US,SG,US,_,US,_,CA,US,_,CA,US,JE,US,CA,US,AU,JP,NL,IN,NL,US,NL,US,IN,US,JP,US,_,US,_,US,_,US,_,US,ID,SG,IN,US,CA,US,CA,US,BM,US,CA,US,PA,CA,US,CA,US,CA,PR,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,ES,US,CA,US,JP,US,JP,US,CA,US,KY,US,IQ,US,_,US,CA,US,VI,US,VI,US,VG,US,SG,US,_,US,CA,US,BR,US,CA,US,BE,US,BE,CA,US,CA,US,GD,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,US,CA,US,CA,PR,US,CA,US,GD,US,CA,US,CA,US,CA,US,CA,US,CA,US,BM,US,CA,US,NL,US,CA,US,CH,US,ID,MX,DE,PR,CA,US,CA,US,CA,US,MF,MQ,GP,US,CA,US,CA,US,CA,US,CA,US,EG,US,UZ,US,GB,US,CA,US,BM,US,CA,US,_,US,CA,US,CA,US,BR,US,CO,US,BR,US,CL,US,BR,US,AR,US,PE,US,_,US,CA,_,CA,US,IL,US,CA,US,MF,US,CA,US,CA,US,CA,US,CA,US,BS,US,CA,US,CA,US,NL,US,_,TC,US,CA,GB,SG,US,ES,LU,DE,US,ES,GB,US,CA,GB,FR,US,FR,DE,US,DE,_,CL,JP,AT,CH,DE,US,IT,US,FR,BE,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,_,US,_,CA,US,CA,US,CA,US,CA,US,CA,US,_,JM,US,_,US,CA,US,CA,US,CA,US,RO,US,_,US,PR,US,DE,US,AU,US,FR,US,CO,US,_,US,CA,US,CA,US,CA,US,GB,US,_,US,CA,US,CA,DE,US,CA,US,CA,US,PR,CA,US,NL,DE,JP,SG,US,_,US,DE,US,_,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,_,US,_,US,_,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,IN,US,JP,CA,US,DM,GD,DM,VC,US,CA,US,_,US,CA,US,_,US,CA,US,_,US,CA,US,_,US,CA,US,CA,_,CA,US,CA,IN,CA,US,CA,US,CA,US,CA,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,_,US,_,US,_,US,CA,US,CA,US,BM,US,KW,US,CA,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,DE,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,HK,US,_,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,AL,US,CA,US,TC,VG,US,CA,US,CA,US,AU,HK,PK,SG,TH,BD,JP,US,SG,DE,US,GB,DE,SG,DE,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,FR,CA,US,BG,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,AG,LC,DM,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,HK,US,TR,US,GB,US,VG,US,IL,US,CA,US,CA,US,CA,US,VC,LC,US,CA,US,CA,US,CA,US,CA,US,PR,US,CA,US,BM,US,PR,US,CA,US,GB,US,CA,US,CA,US,SG,NL,US,CA,US,JM,AI,US,CA,US,CA,US,GB,US,SG,US,CA,US,CA,US,CA,US,FR,US,FR,SG,US,CA,US,BR,JP,US,KY,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,FR,CA,US,FR,US,CA,US,IL,US,_,PL,US,CA,US,CA,UA,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,VG,US,CA,US,CA,US,CA,US,HK,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,_,US,NL,US,NL,US,LC,VC,GD,US,JP,US,DE,US,GB,US,GB,US,HK,US,CA,US,BR,US,PR,GB,CA,US,SG,JP,US,CA,US,CA,US,BZ,US,BE,US,IE,US,DK,US,CO,GB,US,IN,US,BR,US,GB,US,NL,US,ID,SG,US,GB,US,FR,US,FR,ES,US,DE,US,GB,FR,US,CA,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,_,US,_,US,_,CA,US,DE,SG,US,CA,US,CA,US,CA,US,CA,BE,US,CA,US,CA,US,BR,VN,US,VN,US,_,US,_,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,DE,FR,DE,NL,US,DE,SE,FI,SE,DE,US,CA,US,CA,DE,US,PR,CA,US,CA,US,CA,AU,US,JP,BR,HK,PL,NL,ID,US,CA,US,AR,US,_,US,CA,US,_,US,_,US,_,US,_,US,CA,US,_,US,CA,US,CH,US,CA,US,FR,US,PS,US,CA,US,CA,US,BB,US,CA,US,JP,US,CA,US,CA,US,AT,PR,US,GB,US,GB,US,CA,US,CO,BR,CU,AR,HT,AR,CW,SX,CU,EC,BR,US,ES,BR,EC,BR,VE,CL,EC,UY,BR,EC,AR,BR,CL,MX,BR,UY,BR,MX,US,MX,AR,BR,MX,PE,CL,MX,PE,MX,BR,CL,PE,CL,MX,BR,PE,US,VE,CL,PE,MX,CL,PE,CL,AR,GT,PA,BR,SV,AR,CO,AR,CO,BR,UY,AR,US,AR,VE,EC,AR,VE,CL,AR,CO,TT,EC,AR,BR,CL,AR,VE,CL,CO,BR,CO,CL,_,CL,VE,NI,GT,DO,SR,BM,EC,VE,EC,CO,CL,CO,PE,VE,CO,PY,SR,BR,AR,CL,VE,CL,UY,CO,CL,BR,CL,AR,HT,SR,CL,VE,AR,UY,BR,AR,_,AR,CO,GT,CO,AR,TT,AR,CO,HN,PE,BR,PA,CL,AR,HN,PE,BR,AR,CO,PY,MX,CO,MX,AR,MX,AR,MX,BR,MX,HT,PE,PR,BR,AR,PR,CU,VE,BR,VE,CR,AR,VE,AR,EC,US,EC,CL,EC,VE,EC,CL,EC,BR,AR,BR,PA,CL,NI,CW,CL,PA,BR,CL,BR,_,BR,BQ,PA,CO,GT,BR,CL,BR,PY,AR,CL,SX,EC,UY,TT,CO,BR,AR,SR,AR,BO,AR,BR,AR,EC,VE,BR,CL,PY,MX,BR,CR,CL,BR,CO,CL,GT,AR,BR,CL,US,BR,CO,BR,EC,CL,BR,CL,BR,CL,JM,BR,HN,CL,BR,CL,BR,CL,BR,CL,AR,BR,CL,BR,AR,CO,BR,BO,AR,MX,BR,EC,CL,AR,MX,BR,NI,CL,AR,CL,BR,CL,BR,CL,BR,AR,CR,AR,BR,CL,TT,AR,BR,CL,AR,CL,AR,CL,AR,CL,AR,CL,EC,BR,CL,BR,AR,GT,CL,BR,CL,PA,CL,CO,HN,EE,US,EE,US,BR,UY,PE,AR,PE,BR,CO,BR,AR,PY,DO,MX,PA,CR,BR,EC,JM,HN,CO,US,BO,CL,BR,US,AR,DO,_,CO,BM,CL,GT,CO,CR,BR,AR,CL,BR,CL,BR,AR,BR,PE,BR,CL,AR,BR,BZ,CL,AR,MX,AR,MX,AR,PA,_,NI,BR,AR,CL,EC,MX,CL,MX,AR,CL,BR,PY,CL,MX,CL,VE,CL,BR,MX,GT,CL,MX,BR,MX,PE,CL,VE,CL,BR,AR,NI,SV,PE,CO,PE,CO,PE,CL,BR,AR,BR,VE,BR,CL,GT,MX,CL,BR,CL,AR,BR,CL,PY,CL,BR,AR,UY,BR,MX,CR,US,EC,CO,CL,SV,CO,AR,VE,CL,EC,AR,PA,AR,US,SV,HN,SV,GT,SV,US,SV,CR,TT,BO,CL,BR,MX,BR,MX,AR,MX,AR,BR,MX,HN,GF,CU,BO,SV,HN,SV,HN,SV,HN,SV,HN,SV,CO,CL,VE,MX,BR,EC,BR,DO,AR,CO,CU,BR,CO,EC,PE,AR,CL,MX,AR,CL,DO,CL,EC,CL,CO,CL,AR,CL,PA,BR,CL,CO,CL,CO,CL,CO,CL,CO,CL,BR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,PE,ZA,AR,MX,AR,CR,CO,US,CO,AR,CO,AR,US,AR,DO,BR,CW,EC,VE,AR,CL,AR,CO,AR,BR,CO,CL,MX,BR,MX,DO,MX,BR,MX,CO,MX,AR,MX,CO,BR,MX,BR,MX,CL,MX,BR,MX,BR,MX,AR,MX,BR,MX,BR,MX,CR,CL,AR,MX,BR,MX,BR,CO,BR,CL,CO,BR,VE,BR,CL,EC,PE,EC,CL,AR,CO,CR,MX,BR,PR,CL,CO,PE,CO,AR,MX,BR,EC,MX,BR,PE,US,AR,BR,AR,CO,US,BR,CR,GT,BR,PE,CO,RU,BO,MX,US,CO,BR,CL,US,AR,BR,UY,AR,VE,CU,PY,US,CO,EC,CO,AR,CO,VE,DO,PY,DO,BR,AR,DO,BZ,AR,DO,CW,AR,BR,CO,AR,BR,CL,CO,CL,CO,EC,AR,BR,VE,PE,CA,FR,US,PR,US,MX,VE,US,CL,NI,PR,GT,SZ,CO,CL,CO,NI,US,CO,VE,CL,CO,NI,HN,NI,SV,NI,GT,HN,SV,GT,SV,GT,HN,GT,SV,HN,NI,GT,HN,NI,SV,GT,NI,HN,SV,GT,NI,GT,HN,GT,CR,HN,CL,US,AR,VE,EC,US,EC,AR,CO,EC,CL,CO,PE,VE,SV,CO,AR,VE,MX,EC,US,MX,VE,MX,US,CO,AR,CL,BZ,MX,AR,MX,CO,MX,SV,MX,AR,MX,BR,AR,BR,MX,CR,MX,BR,MX,BR,MX,BO,MX,BR,MX,BR,MX,PA,BR,MX,BR,MX,BR,MX,BR,MX,AR,MX,VE,MX,BR,MX,CO,MX,AR,MX,BR,MX,CO,MX,AR,BR,MX,BR,VE,CO,VE,BR,VE,US,UY,US,CL,GT,NI,GT,SV,GT,SV,NI,VE,MX,BR,VE,PE,BR,AR,MX,BR,CL,BR,MX,PE,MX,BR,PE,DO,BR,MX,BR,CL,BR,PE,BR,PE,BR,MX,UY,EC,CO,US,CO,EC,VE,PE,AR,US,CO,VE,US,CL,VE,AR,CO,EC,PE,US,EC,US,EC,US,CL,PE,CO,EC,US,VE,AR,CL,DO,AR,VE,AR,PA,AR,MX,AR,MX,AR,CO,MX,AR,CO,AR,MX,AR,CO,AR,CL,PE,AR,CL,BR,AR,GT,AR,SG,PE,MX,US,PR,CL,BB,GD,BB,KN,BB,TC,BB,CL,US,CA,BR,AR,PY,AR,BR,EC,AR,MX,BR,MX,HN,MX,BR,MX,BR,MX,BR,MX,BR,MX,CL,AR,MX,AR,MX,AR,CU,CL,EC,AR,UY,EC,MX,BR,US,BR,US,BR,BO,AR,UY,BO,CO,DO,BR,MX,AR,CR,HN,AR,VE,AR,CL,AR,BR,AR,PE,AR,CL,AR,PY,AR,VE,CW,AR,CL,US,CO,NI,PE,AR,MX,AR,CL,AR,CL,EC,AR,EC,MX,BR,MX,CL,AR,MX,AR,CA,IE,CA,US,CA,AR,CO,US,CO,AR,EC,AR,UY,CO,BR,PA,BR,AR,BR,MX,VE,BR,US,CA,VE,CL,AR,VE,BQ,CL,BO,SV,CL,AR,VE,EC,CL,BR,CL,CO,CL,VE,PA,CR,CL,CO,VE,BO,BR,HN,PA,MX,BR,CL,EC,MX,BR,MX,AR,MX,BR,AR,BR,CO,AR,BR,AR,BR,MX,AR,MX,AR,BR,AR,VE,CL,VE,SV,PY,VE,AR,VE,EC,AR,BO,AR,BO,AR,NI,AR,CL,CO,CL,BO,DO,PE,CL,SV,DO,CO,AR,CO,VE,PA,BO,EC,CL,AR,CL,AR,CR,CO,MX,VE,CO,EC,UY,EC,MX,BR,GT,BR,MX,BR,CL,BR,MX,BR,CL,AR,US,AR,US,AR,US,AR,CR,AR,EC,AR,BO,EC,PE,BR,CL,BR,MX,BR,MX,BR,AR,BR,CO,BR,AR,BR,HN,SV,HN,AR,BO,HN,NI,AR,EC,_,HN,AR,CR,BQ,AR,BR,HN,PE,VE,AR,VE,AR,PA,HN,BR,AR,HN,BO,EC,TT,PA,AR,PE,AR,PE,AR,PE,AR,MX,AR,MX,AR,MX,PY,AR,BR,MX,BR,VE,AR,UY,VE,PE,BO,EC,BR,MX,BR,EC,AR,PA,AR,BR,AR,CO,AR,BR,AR,US,AR,CL,AR,CO,EC,CL,HT,CO,CL,AR,CL,AR,GT,AR,PY,CR,PA,PE,AR,EC,AR,BR,UY,AR,HN,BR,GT,BR,PA,HN,PA,CO,CW,CO,HT,CL,AR,HN,AR,CO,AR,CO,GT,CR,GT,CR,BO,CL,PE,AR,CR,CO,PE,AR,GT,US,AR,US,AR,PA,AR,BR,BZ,AR,BR,PE,BR,AR,PA,CL,BR,DO,MX,BR,JP,BR,AR,PY,VE,AR,CO,AR,GT,CW,MX,BR,AR,BR,UY,EC,UY,AR,EC,BR,EC,TT,DO,BR,VE,EC,CL,EC,CL,PE,CL,PE,AR,CL,AR,BR,SG,BR,NZ,BR,AR,BR,SG,BR,CL,BR,CO,BR,US,BR,MX,BR,MX,BR,EC,CR,SV,GT,CL,BR,US,BR,_,BR,PE,CO,BR,CR,BR,MX,BR,MX,BR,US,BR,US,BR,ES,BR,PE,DO,BR,PE,BR,AR,BR,AR,MX,BR,AR,BR,US,BR,US,BR,MX,US,BR,AR,BR,CL,BR,CR,IN,US,PH,US,BR,CR,EC,HN,AR,VE,BR,VE,BR,AR,BR,AR,PE,BR,_,BR,ES,BR,MX,BR,MX,BR,MX,BR,MX,BR,ES,EC,CO,DO,BR,CO,BR,CO,AR,BR,DO,ES,BR,NL,BR,CL,VE,BR,MX,BR,AR,BR,TH,PE,ES,PA,MX,EC,ES,MX,ES,SV,BR,MX,BR,MX,BR,ES,BR,ES,BR,NZ,BR,CL,BR,MX,CO,BR,PE,BR,MX,BR,VE,BR,MX,BR,MX,BR,MX,BR,MX,CR,CL,MX,BO,SV,CW,MX,BO,BR,AR,MX,PA,DO,PY,MX,CR,VE,NI,PE,BR,MX,GT,AR,MX,HT,CO,AR,BR,CO,BR,MX,CO,BR,MX,AR,EC,MX,BR,DO,MX,SV,MX,CO,NI,MX,AR,MX,PE,SV,MX,BR,PA,BR,CO,MX,BR,MX,PE,BR,MX,BR,MX,AR,BR,MX,BR,MX,BR,MX,BR,MX,BR,AR,BR,MX,BR,CL,BR,MX,BR,ES,BR,MX,BR,CL,BR,CR,BR,MX,BR,MX,BR,CL,MX,BR,HK,BR,PE,MX,BR,SV,BR,CO,BR,HT,BR,MX,BR,MX,BR,BO,MX,BR,MX,BR,MX,BR,MX,BR,HN,PE,BR,MX,AR,BR,MX,BR,MX,AR,MX,AR,MX,BR,MX,BR,AR,MX,BR,MX,BR,MX,GT,BR,MX,BR,CL,MX,BR,MX,AR,EC,MX,BR,MX,BR,MX,BR,MX,AR,BR,AR,MX,SV,BR,CR,BR,CR,AR,EC,BR,AR,BR,AR,BR,EC,BR,AR,BR,CR,BR,EC,BR,CO,BR,EC,CO,CL,HN,CO,AR,CR,VE,AR,CL,CO,BR,_,BR,_,BR,GT,AR,PY,EC,UY,CO,AR,CL,AR,CL,EC,PA,PE,CL,PE,CL,PE,CL,PE,CL,PE,BR,MX,BR,VE,MX,BR,PA,EC,AR,CO,CL,AR,CO,UY,CL,CO,BR,UY,SX,MF,SX,CW,SX,AR,PY,_,CL,AR,CR,CO,CL,HN,AR,CU,CL,UY,TT,GD,TT,AR,VE,BR,AR,CL,CO,CL,CO,DO,EC,CO,CL,PA,VE,AR,BR,CO,AR,MX,AR,CL,PY,AR,GT,BO,CL,PA,CO,AW,DO,PE,AR,CO,AR,MX,AR,MX,AR,MX,AR,MX,AR,PE,CO,EC,AR,PE,AR,MX,AR,CO,AR,CO,AR,CO,AR,CO,AR,CO,EC,VE,CO,MX,AR,CL,CO,CR,VE,TT,EC,CL,PE,CL,VE,CO,CL,SV,VE,AR,AU,PH,NZ,_,JP,_,AU,_,JP,AU,JP,BE,AU,VN,_,MY,_,NZ,AU,_,ID,AU,PH,ID,BD,AU,_,IN,AU,_,CN,_,IN,SG,_,AU,ID,AU,IN,PK,_,IN,_,IN,PH,TH,_,CN,NZ,SG,_,PH,IN,SG,AU,NZ,AU,FJ,NC,FJ,NC,HK,AU,US,_,HK,AU,JP,SG,HK,NZ,_,PG,HK,IN,CN,HK,CN,HK,CN,_,AU,IN,SG,SB,MV,JP,_,HK,AU,ID,AU,SG,PG,AU,PG,AU,NZ,_,TW,AU,SE,HK,JP,US,AU,TV,SG,HK,AU,JP,SG,JP,PH,KR,AU,SG,IN,MY,JP,AU,HK,AU,SG,ID,IN,KR,AU,IN,AU,IN,AU,TH,IN,AU,MY,AF,IN,SG,AU,NZ,AU,US,IN,HK,AU,SG,JP,CN,PK,AU,HK,SG,ID,AU,SG,JP,TW,AU,ID,PF,PH,_,IN,HK,AU,_,AU,WS,AU,BD,CN,ID,HK,US,_,AU,PK,VN,IN,ID,IN,BD,PH,AU,VN,IN,ID,IN,AU,IN,AU,SG,ID,ES,AU,ID,AU,PH,HK,AU,JP,VU,CN,_,TW,AU,TW,US,BD,JP,TH,AU,ID,PG,ID,CA,PK,CA,PK,AU,MN,CN,JP,TW,HK,VN,AU,_,CN,JP,TH,AU,_,CN,JP,CN,AU,_,AU,_,IN,_,AU,NZ,PH,AU,CN,TH,AU,CN,HK,KR,VN,_,IN,TH,SG,CN,TW,AU,TH,CN,AU,CN,AU,CN,AU,NZ,JP,KI,AU,SG,CN,_,ID,SG,JP,MY,JP,NZ,AU,NZ,AU,JP,NZ,KH,AU,_,TH,NZ,AU,JP,_,AU,CN,SG,CN,JP,NL,JP,IE,SG,CN,NZ,TW,JP,CN,AU,JP,ID,SG,PH,HK,AU,SG,NZ,JP,AU,TH,KH,AU,CN,TH,JP,TH,HK,AU,HK,SG,ID,PH,HK,KR,HK,SA,IN,HK,IN,CN,KR,CN,JP,PH,AU,CN,AU,CN,SG,HK,MN,CN,AU,CN,IN,AU,CN,HK,US,IN,AU,SG,AU,ID,SG,ID,AU,IN,LA,AU,VN,TH,HK,AU,VN,ID,SG,AU,NZ,SG,TH,IN,AU,MY,AU,NZ,IN,JP,AU,NZ,HK,AU,ID,CN,AU,JP,CN,AU,JP,NZ,CN,NZ,HK,JP,IN,CN,_,AU,_,AU,BN,JP,AU,JP,AU,_,JP,_,AU,CN,TH,ID,TW,IN,CN,AU,NZ,AU,SG,CN,TH,CN,_,US,AU,IN,NZ,CN,AU,NZ,_,CN,_,CN,TH,AU,_,US,_,US,AU,JP,US,NZ,US,NZ,US,NZ,NL,NZ,JP,AU,HK,SG,AU,NZ,CN,AU,HK,CN,PK,IN,CN,_,CN,HK,AU,NZ,PH,CN,_,KR,ID,AU,_,NZ,CN,AU,_,NZ,AU,NZ,KR,CN,NZ,CN,_,CN,AU,CN,HK,TH,CN,IN,CN,_,CN,AU,CN,AU,CN,_,AU,NZ,AU,NZ,_,AU,CN,AU,CN,AU,_,AU,CN,IN,TH,KR,AU,NZ,CN,AU,_,CN,AU,_,SG,CN,_,CN,_,AU,NZ,_,CN,_,CN,JP,CN,_,AU,_,CN,AU,_,CN,_,AU,CN,AU,_,CN,NZ,_,JP,NZ,AU,NZ,MY,NZ,CN,_,PG,AU,_,NZ,CN,NZ,_,KR,_,CN,NZ,CN,_,NZ,HK,KR,HK,NZ,TH,ID,_,HK,_,CN,JP,CN,_,KR,CN,_,JP,CN,KR,AU,_,IN,CN,_,MN,NZ,SG,NZ,CN,NZ,IN,NZ,_,TH,CN,_,JP,CN,TH,CN,_,CN,NZ,SG,JP,MV,SG,ID,SG,JP,SG,JP,SG,CN,HK,SG,TH,ID,MY,SG,AU,TH,NZ,ID,_,KR,_,JP,NC,DE,IN,ZA,RU,IN,MY,SA,US,SG,TR,SG,MY,NL,DE,GU,BD,JP,NC,HK,CN,JP,NZ,IN,AU,CN,AU,CN,AU,SG,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,AU,NZ,_,AU,_,NZ,TH,_,NZ,_,NZ,_,NZ,AU,NZ,SG,_,NZ,CN,_,JP,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,AU,_,NZ,_,NZ,_,AU,_,US,NZ,_,AU,NZ,_,NZ,_,US,NZ,AU,_,NZ,TH,SG,TH,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,JP,BE,US,BE,JP,BE,US,JP,US,BE,JP,US,BE,US,BE,US,BE,JP,US,BE,US,BE,US,BE,JP,BE,US,BE,US,BE,JP,NZ,AU,NZ,_,NZ,_,NZ,_,NZ,_,NZ,KH,NZ,_,NZ,_,NZ,SG,_,NZ,_,NZ,_,NZ,_,US,NZ,_,MM,_,NZ,BD,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,HK,NZ,_,NZ,_,NZ,_,NZ,AU,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,CN,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,BD,NZ,_,NZ,BD,NZ,BD,NZ,_,NZ,_,NZ,_,NZ,_,NZ,AU,_,AU,NZ,_,NZ,_,NZ,AU,_,VN,NZ,_,NZ,_,NZ,_,NZ,_,RS,BD,NZ,_,NZ,_,NZ,_,ID,AU,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,BD,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,CN,HK,CN,HK,_,CN,_,AU,CN,AU,CN,AU,CN,AU,CN,_,AU,CN,_,IN,AU,CN,HK,IN,CN,TW,AU,CN,IN,CN,IN,CN,_,IN,_,HK,CN,HK,CN,HK,CN,_,HK,CN,HK,_,CN,HK,CN,HK,CN,AU,HK,PH,BD,HK,SG,IN,CN,IN,CN,AU,IN,CN,_,CN,_,JP,AU,NZ,SG,CN,HK,AU,KR,TW,PH,IN,CN,TH,CN,AU,CN,IN,JP,IN,CN,JP,SG,JP,SG,JP,SG,JP,ID,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,PG,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,AU,_,DE,TO,JP,TH,KR,ID,AU,IN,JP,ID,CN,AU,HK,AU,ID,PH,US,ID,JP,MY,JP,VN,ID,PK,IN,HK,AU,CN,ID,SG,ID,SG,ID,TW,SG,PH,HK,SG,ID,SG,HK,SG,JP,ID,TH,CN,TH,CN,TH,IN,NZ,TH,_,CN,TH,CN,AU,PK,TH,CN,AU,_,BD,IO,AU,HK,TH,CN,TH,CN,AU,TH,VN,TH,_,TH,CN,_,AU,TH,CN,AU,_,IN,_,IN,JP,AU,HK,CN,HK,AU,HK,JP,AU,MY,NP,_,ID,AU,PK,_,BD,JP,HK,ID,CN,IN,CN,IN,ID,CN,IN,CN,ID,MY,CN,ID,AU,ID,AU,NZ,IN,CN,HK,CN,ID,AU,JP,PK,ID,NZ,CN,AU,VN,ID,PK,AU,CN,IN,AU,PH,CN,IN,CN,_,CN,_,HK,JP,_,VN,KR,GU,ID,BD,IN,ID,TW,ID,AU,HK,ID,JP,ID,PH,ID,IN,ID,IN,ID,TW,HK,IN,ID,IN,JP,ID,IN,ID,IN,ID,TH,JP,NZ,_,NZ,AU,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,AU,_,DE,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,GB,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,SG,_,NP,_,NZ,NP,NZ,AU,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,_,BD,_,US,_,NZ,US,_,NZ,_,NZ,AU,_,NZ,_,SG,NZ,_,NZ,AU,_,NZ,ID,_,NZ,_,NZ,_,NZ,_,NZ,_,NZ,US,SG,_,NP,JP,ID,JP,ID,NP,ID,HK,AU,BD,ID,SG,FR,ID,NP,IN,TH,ID,JP,PK,CN,HK,AU,JP,VN,BD,AU,HK,IN,AU,CN,ID,SG,ID,IN,AU,IN,ID,AU,MY,IN,SG,IN,AU,IN,ID,PG,IN,AU,HK,ID,BD,ID,AU,CN,HK,AU,ID,IN,MY,IN,JP,NZ,IN,JP,NZ,ID,NZ,AU,PH,JP,HK,NP,IN,JP,AU,IN,JP,HK,BD,HK,IN,HK,CN,BD,_,CN,KH,HK,JP,HK,JP,MM,BD,NZ,AU,JP,ID,IN,HK,SG,HK,JP,HK,SG,NZ,JP,PK,VN,JP,TH,AU,ID,MN,JP,TW,KH,BD,HK,JP,NZ,IN,VN,IN,AU,NL,JP,MY,IN,SG,ID,_,IN,ID,SG,ID,PH,TH,CN,KH,HK,CN,HK,JP,CN,JP,PH,AU,JP,SG,KH,HK,AU,ID,MY,KH,_,HK,IN,HK,BD,CN,JP,_,ID,IN,TH,IN,PG,IN,AU,JP,ID,SG,ID,AU,_,IN,AU,IN,AU,JP,AU,PH,ID,AU,ID,TH,VN,AU,KI,BD,CN,IN,NU,US,MY,US,PK,AU,PK,AU,JP,BD,JP,HK,ID,JP,ID,BD,CN,KR,NZ,AU,IN,AU,BN,IN,HK,JP,CN,_,VN,CN,AU,IN,AU,IN,HK,TW,VN,PK,ID,MU,PH,JP,CN,MY,IN,AU,NZ,AU,CN,VN,CN,_,CN,JP,TH,IN,HK,_,JP,NZ,AU,IN,AU,JP,PK,PH,CN,AU,CN,NZ,BD,HK,CN,AU,ID,HK,ID,IN,HK,ID,VU,IN,AU,_,HK,PK,NZ,AU,IN,_,AU,IN,AU,CN,ID,CN,JP,DE,AT,DE,_,NC,ID,KH,IN,LA,CN,IN,FJ,AU,JP,HK,IN,AU,IN,NZ,IN,_,CN,JP,AU,CN,HK,SG,HK,SG,AU,CN,IN,SG,CN,PK,SG,NP,CN,IN,CN,SB,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,CN,BD,AU,US,CK,SG,CK,AU,CN,ID,IN,NZ,BD,PH,HK,ID,SG,_,HK,DE,US,HK,AU,IN,CN,IN,_,IN,HK,SG,TW,HK,CN,IN,ID,JP,ID,JP,AU,HK,AU,NZ,AU,IN,AU,SG,MM,HK,SG,KR,_,CN,HK,PK,CN,JP,CN,PK,HK,ID,JP,_,AU,TH,US,PH,LK,AU,JP,_,CN,MN,ID,NP,CN,AS,AU,NZ,IN,SG,ID,_,ID,_,JP,AU,PK,HK,SG,HK,JP,CN,JP,IN,CN,JP,MY,TH,DE,IN,AU,PH,_,PH,BD,PH,IN,PH,_,AU,PH,HK,US,HK,AU,CN,JP,CN,US,IN,US,JP,US,KR,JP,US,AU,US,CN,AU,ID,IN,HK,BD,MN,IN,_,HK,BD,JP,BD,CA,MY,ID,NZ,AU,SG,JP,ID,CN,KR,JP,AU,PH,NZ,JP,ID,CN,HK,JP,CN,JP,AU,NZ,AU,HK,CN,SG,NZ,HK,CN,ID,AU,ID,_,JP,BD,AU,IN,CN,IN,US,VN,AU,VN,NZ,AU,SG,AU,ID,CN,HK,IN,PH,HK,AU,HK,AU,HK,SG,IN,JP,HK,AU,NZ,_,ID,BD,PH,AU,JP,CN,HK,MY,JP,ID,MY,HK,ID,JP,MY,IN,AU,IN,CN,JP,IN,NZ,HK,US,MO,CN,HK,ZA,HK,DE,HK,JP,HK,SG,TW,HK,US,HK,SG,JP,MY,SG,AU,IN,HK,SG,KR,SG,CN,AU,CN,HK,AU,HK,VU,CN,AU,CN,ID,HK,AU,IN,PK,HK,_,CN,SG,AU,SG,AU,SG,PH,NZ,NL,LU,TR,GB,AU,NL,DE,JP,FR,VN,US,DE,US,DE,TR,NL,JP,ID,JP,VN,IN,NZ,JP,IN,HK,JP,BD,KH,NP,JP,KR,JP,KR,JP,HK,SG,UZ,SG,GB,JP,GB,JP,SG,JP,GB,JP,SG,JP,GB,JP,SG,JP,SG,GB,JP,SG,GB,JP,CN,VN,JP,CN,_,HK,TW,HK,VU,IN,AU,JP,TW,ID,HK,AU,JP,SG,AU,CN,ID,TH,CN,AU,JP,US,ID,AU,JP,SG,IN,PH,CN,IN,AU,HK,_,HK,IN,AU,SG,AU,ID,BD,JP,PK,AU,JP,HK,JP,HK,SG,CN,JP,AU,CN,_,CN,BD,JP,BD,KH,JP,PH,HK,SG,HK,AU,HK,AU,HK,SG,HK,SG,HK,AU,HK,SG,HK,AU,HK,SG,HK,PK,HK,CN,HK,AU,HK,_,SG,KR,AU,BN,AU,JP,HK,NZ,AU,JP,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,PH,AU,BD,JP,SG,CN,AU,IN,CN,HK,AU,IN,JP,CN,MY,TH,MY,NC,AU,ID,WS,VN,MY,JP,SG,ID,SG,ID,HK,JP,DE,HK,US,HK,US,HK,SG,HK,TW,HK,TW,SG,HK,CN,US,HK,MY,NZ,JP,MP,HK,US,HK,ZA,HK,IN,JP,HK,IN,_,NZ,CN,HK,JP,HK,JP,HK,JP,BT,NZ,IN,JP,CN,SG,AU,US,IN,CN,JP,ID,IN,CN,IN,TW,KR,NZ,AU,PH,ID,JP,CN,JP,KR,HK,_,TH,JP,CN,AU,IN,AU,BN,CN,AU,IN,AU,IN,NZ,AU,NZ,PF,CN,PH,AU,JP,IN,CN,ID,CN,AU,ID,BD,IN,CN,AU,JP,CN,AU,HK,MY,SG,HK,KR,CN,AU,ID,TH,ID,SG,US,HK,BD,AU,JP,IN,CN,JP,_,IN,JP,PH,CN,AU,JP,CN,_,VN,CN,US,GB,PK,GB,PK,AU,CN,AU,PH,HK,US,ID,AU,NZ,IN,AU,CN,_,AU,KR,KH,ID,TH,JP,AU,ID,JP,AU,KH,IN,AU,VN,AU,HK,AU,HK,BN,ID,AU,CN,_,CN,_,AU,JP,AU,NP,IN,HK,AU,SG,_,AU,TH,CN,HK,TH,AU,ID,CN,VN,ID,SG,JP,HK,VN,US,CN,SG,JP,IN,BD,TH,MY,TH,IN,JP,HK,TH,SG,HK,SG,JP,SG,ID,HK,ID,JP,PG,JP,PH,CN,JP,NZ,IN,_,CN,HK,CN,ID,IN,JP,CN,TH,JP,CN,HK,CN,_,AU,TH,CN,PH,IN,JP,MY,ID,JP,MU,IN,PH,HK,CN,US,CN,TW,GU,HK,LA,JP,HK,ID,PK,JP,CN,HK,KH,JP,AU,NZ,PH,LK,AU,PH,IN,AU,ID,TH,AU,ID,VN,ID,AU,JP,PW,AU,MY,PH,AU,JP,BD,ID,TH,AU,NZ,HK,IN,AU,ID,AU,ID,PH,AU,IN,CN,BD,CN,NZ,_,CN,PK,AU,CN,HK,JP,PH,HK,TW,NZ,MN,AU,ID,KR,BD,SG,NZ,HK,JP,CN,NZ,CN,ID,CN,HK,JP,HK,ID,SG,HK,TH,JP,ID,CN,_,HK,JP,CN,_,AU,CN,GU,PH,GU,HK,GU,AU,SG,HK,KR,AU,HK,AU,IN,SC,IN,AU,HK,KR,HK,SG,HK,TH,AU,MY,JP,ID,BD,IN,TH,CN,IN,AU,IN,ID,AU,IN,PH,ID,FJ,LK,KH,AU,PH,IN,US,AU,NP,AU,NZ,JP,AU,CN,AU,VN,_,CN,IN,AU,ID,SG,JP,HK,AU,US,AU,HK,AU,CA,AU,CN,MN,JP,CN,KR,HK,CN,HK,KH,AU,IN,GU,JP,CN,MN,TW,ID,HK,KR,CN,IN,_,IN,_,MY,MM,FR,NL,US,_,MY,JP,TH,SG,TW,HK,TW,ID,BD,VN,TO,NZ,AU,IN,NZ,VN,AU,US,CN,IN,HK,CN,IN,CN,AU,JP,AU,JP,SG,AU,JP,HK,JP,SG,JP,SG,JP,AU,JP,SG,JP,NZ,HK,JP,SG,JP,NZ,AU,JP,PH,JP,DE,JP,HK,JP,DE,JP,SG,JP,AU,JP,AU,JP,NZ,JP,NZ,JP,AU,TW,JP,TW,JP,HK,JP,HK,JP,HK,IN,HK,JP,IN,HK,MY,JP,NZ,SG,JP,AU,JP,AU,JP,KR,JP,HK,JP,NZ,JP,AU,IN,JP,AU,JP,HK,JP,AU,HK,JP,SG,AU,CN,_,IN,_,US,_,IN,BD,_,AU,KR,SG,JP,CN,LA,CN,AU,ID,JP,AU,PH,LA,AU,FJ,JP,AU,IN,NZ,ID,IN,ID,CN,IN,NZ,IN,AU,JP,IN,PH,AU,ID,AU,TH,AU,HK,AU,JP,AU,JP,IN,HK,IN,CN,TW,JP,HK,IN,CN,JP,AU,PK,_,IN,JP,CN,AU,IN,AU,PK,TH,JP,_,JP,CN,JP,CN,AU,CN,JP,IN,CN,VN,PK,TH,JP,IN,BT,AU,LA,JP,DE,JP,BD,NZ,TW,JP,ID,JP,TW,ID,AU,JP,AU,ID,MY,IE,ID,CN,ID,CN,AU,CN,IN,CN,AU,HK,ID,JP,HK,JP,HK,JP,HK,JP,PH,JP,SG,JP,SG,AU,JP,AU,JP,US,JP,SG,JP,AU,JP,IN,AU,CN,PK,ID,JP,ID,CN,KR,IN,CN,AU,SG,TH,IN,TW,AU,JP,TH,CN,ID,TH,ID,CN,IN,CN,KH,IN,KH,JP,HK,SG,JP,CN,JP,CN,AU,ID,SG,ID,NZ,ID,KR,CN,SG,CN,TH,ID,FJ,AU,CN,PH,AU,TH,TW,GU,JP,CN,VN,TH,MY,ID,SG,ID,BN,JP,ID,CN,ID,JP,ID,CN,TW,SG,CN,HK,ID,IN,CN,AU,MV,HK,ID,TW,HK,TW,AU,ID,AU,NZ,IN,ID,SG,ID,SG,TW,PK,ID,AU,IN,HK,AU,IN,HK,SG,JP,IN,JP,SG,ID,AU,SG,MY,ID,SG,CN,JP,ID,KR,CN,AU,JP,SG,AU,CN,AU,VN,IN,ID,AU,ID,AU,IN,BN,NZ,TW,AU,NZ,SG,VN,AU,SG,IN,ID,CN,IN,NZ,HK,CN,IN,JP,SG,IN,SG,US,SG,ID,SG,AU,SG,AU,US,NP,US,BD,US,BD,US,NP,_,BD,JP,MY,ID,GB,AU,CN,SG,NZ,AU,CN,TH,JP,TW,HK,US,HK,KH,KR,US,KH,HK,AU,SG,HK,AU,JP,PH,NZ,HK,IN,ID,IN,SE,SG,DE,RU,SG,SE,SG,PK,KR,JP,PH,CN,AU,IN,AU,HK,NZ,IN,JP,CN,IN,PH,IQ,BD,ID,JP,MY,ID,JP,KR,PH,IN,AU,FR,HK,US,MM,SG,US,TW,US,JP,HK,US,TW,JP,CN,PG,CN,PK,CN,PK,CN,PK,CN,PK,CN,SG,PK,NC,IN,JP,AU,PH,NP,CN,SG,HK,SG,AU,SG,MY,SG,HK,SG,KR,AU,SG,HK,SG,KR,SG,TW,SG,HK,JP,SG,AU,TW,SG,HK,SG,JP,SG,HK,SG,TW,HK,SG,HK,SG,AU,SG,HK,SG,HK,SG,HK,SG,TW,HK,SG,IN,KR,JP,AU,JP,AU,JP,GB,JP,AU,HK,JP,HK,JP,AU,JP,GB,AU,MY,CN,IN,SG,IN,HK,SG,CN,IN,_,KR,IN,CN,TW,HK,JP,BD,HK,AU,MY,ID,SG,ID,SG,JP,AU,JP,TW,AU,JP,NZ,ID,SG,ID,HK,FJ,MY,MN,AT,HK,JP,TH,CN,NZ,JP,CA,AU,IN,JP,CN,ID,MY,NC,JP,AU,JP,AU,MY,HK,CN,JP,CN,ID,US,CN,ID,AU,IN,PG,KR,_,CN,VN,AU,CN,AU,TH,KH,JP,SG,JP,AU,SG,CN,_,JP,CN,PH,CN,ID,US,IN,US,TW,ID,JP,CN,US,BD,IN,AU,TH,CN,MO,TW,IN,NZ,HK,TW,AU,JP,CN,AU,NZ,KR,IN,AU,NZ,IN,HK,IN,CN,HK,MY,MA,MY,HK,BD,SA,BD,PK,HK,MY,HK,NL,AU,ID,HK,DE,BD,HK,MY,ID,HK,BD,AF,HK,NZ,AU,NZ,JP,AU,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,NZ,JP,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,PH,IN,MY,JP,MY,AU,JP,TH,SG,CN,HK,JP,AU,SG,IN,JP,IN,GB,JP,AU,JP,GB,JP,HK,JP,AU,JP,AU,JP,AU,IN,MY,JP,KH,TW,MN,JP,IN,MY,AU,ID,NZ,AU,KR,HK,IN,CN,KR,ID,JP,CN,ID,JP,ID,JP,NZ,CN,HK,JP,CN,MN,AU,HK,BD,CN,BD,FR,HK,CN,AU,SG,ID,SG,JP,CN,HK,SG,HK,RU,HK,NL,HK,BZ,HK,DE,HK,SG,HK,US,HK,TH,CN,ID,US,NZ,JP,AU,ID,CN,HK,ID,PH,JP,AU,JP,SG,CA,MY,CA,HK,AU,CA,MY,CA,JP,AU,TH,MY,CN,AU,CN,HK,KR,SG,HK,JP,NZ,JP,CN,JP,IN,MY,CN,IN,ID,AU,JP,NZ,AU,VN,AU,IN,CN,MM,JP,BD,IN,CN,JP,US,JP,US,JP,US,JP,US,JP,US,JP,BE,JP,BE,JP,BE,JP,HK,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,_,AU,CN,BE,CN,AU,_,CN,AU,_,CN,AU,_,AU,CN,_,CN,AU,_,AU,US,AU,CN,AU,CN,AU,CN,_,AU,_,AU,CN,_,CN,AU,CN,AU,CN,AU,CN,_,CN,AU,GB,_,AU,CN,_,CN,_,CN,_,CN,AU,CN,AU,_,AU,_,AU,_,CN,AU,_,AU,CN,_,AU,HK,_,AU,CN,GB,US,AU,_,CN,CH,AU,SG,AU,ID,CN,AU,_,AU,CN,AU,CN,_,CN,_,AU,_,CN,_,CN,AU,CN,_,AU,_,AU,JP,AU,CN,_,AU,CN,_,CN,_,AU,CN,AU,CN,AU,SG,AU,CN,_,AU,_,AU,_,AU,CN,_,CN,AU,CN,AU,_,CN,AU,CN,US,AU,_,AU,CN,AU,_,AU,CN,AU,_,CN,AU,CN,AU,CN,_,AU,CN,AU,CN,_,CN,AU,_,AU,CN,MY,ID,_,CN,AU,_,CN,_,AU,CN,_,AU,CN,AU,_,PK,AU,_,CN,_,AU,CN,_,AU,CN,AU,_,AU,US,CN,_,US,AU,_,CN,_,TH,AU,_,AU,CN,AU,CN,AU,_,AU,CN,BD,AU,CN,_,CN,AU,HK,AU,CN,AU,CN,AU,_,CN,AU,CN,AU,CN,_,AU,US,AU,_,CN,AU,_,AU,_,NZ,_,AU,CN,AU,CN,AU,_,CN,AU,CN,_,AU,_,AU,PH,_,AU,_,CN,_,CN,AU,CN,AU,_,AU,_,AU,_,CN,_,AU,CN,_,FR,CN,_,CN,_,AU,CN,_,AU,_,AU,_,CN,AU,CN,AU,HK,_,AU,_,AU,_,US,CN,_,AU,_,CN,AU,CN,_,AU,CN,AU,ID,CN,AU,_,CN,_,CN,AU,PK,AU,CN,_,AU,_,AU,_,CN,AU,_,AU,CN,AU,_,CN,AU,_,CN,AU,CN,_,AU,_,AU,_,CN,AU,HK,_,AU,ID,AU,CA,AU,CN,_,AU,_,CN,_,AU,_,AU,MN,AU,_,AU,_,CN,_,AU,_,AU,CN,AU,_,AU,_,AU,CN,HK,AU,_,AU,_,CN,AU,_,CN,_,CN,_,AU,CN,AU,_,AU,_,AU,_,IN,CN,_,AU,_,CN,IN,AU,_,AU,_,VN,AU,_,AU,_,AU,CN,AU,CN,_,VN,CN,_,AU,CN,_,CN,AU,CN,_,AU,CN,AU,IN,_,CN,HK,_,ID,AU,CN,_,CN,_,CN,AU,_,AU,CN,AU,CN,AU,_,CN,AU,_,AU,CN,AU,CN,AU,_,CN,AU,CN,SG,_,CN,AU,_,AU,CN,AU,_,AU,HK,AU,_,CN,_,AU,JP,SG,JP,IN,KR,IN,AU,_,AU,_,AU,_,AU,NP,_,NZ,AU,_,AU,CA,US,AU,_,AU,MY,AU,CN,_,AU,CN,AU,MY,AU,CN,AU,_,CN,AU,CN,US,JP,SG,AU,_,AU,_,AU,_,AU,_,HK,CN,_,AU,PK,AU,CN,_,IN,AU,TH,AU,CN,AU,CN,AU,CN,_,AU,_,AU,_,US,_,CN,AU,CN,AU,_,AU,_,CN,AU,_,AU,CN,_,AU,CN,_,HK,AU,IN,AU,IN,SG,AU,CN,AU,CN,AU,_,AU,CN,SG,AU,SG,AU,_,CN,AU,_,AU,_,AU,_,AU,CN,_,CN,ID,_,AU,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,CN,_,AU,CN,AU,_,CN,AU,_,CN,HK,CN,HK,SG,_,AU,_,CN,_,CN,AU,_,CN,AU,HK,_,CN,AU,_,AU,_,AU,CN,AU,CN,_,AU,_,AU,NZ,AU,US,AU,CN,HK,_,CN,AU,GB,CN,MY,AU,IN,_,CN,_,AU,_,AU,CN,AU,NF,AU,_,AU,_,CN,_,AU,CN,_,CY,AU,_,AU,_,IN,AU,_,AU,CN,_,AU,_,AU,_,HK,CN,AU,CN,AU,CN,IN,AU,_,AU,BD,AU,_,IN,AU,CN,AU,_,AU,_,AU,_,CN,AU,CN,_,AU,_,CN,_,AU,_,AU,_,ID,_,NZ,_,CN,AU,_,IN,CN,_,AU,_,AU,_,CN,_,AU,CN,_,AU,_,AU,CN,AU,HK,_,AU,_,AU,_,CN,AU,CN,_,AU,CN,_,AU,HK,_,AU,ID,_,AU,_,ID,HK,SG,CN,HK,CN,_,AU,_,AU,_,AU,_,AU,US,AU,_,AU,TW,AU,CN,_,AU,CN,AU,_,AU,CN,_,CN,_,CN,_,AU,_,AU,CN,_,AU,_,AU,CN,AU,_,AU,_,US,CN,SG,CN,US,AU,_,AU,_,AU,CN,_,AU,_,AU,_,AU,_,AU,_,CN,TW,CN,_,AU,US,CN,AU,CN,_,AU,_,AU,CN,AU,CN,AU,_,CN,AU,_,CA,_,AU,_,AU,_,AU,CN,_,CN,_,CN,AU,_,CN,AU,PK,_,AU,_,CN,AU,_,CN,AU,_,AU,CN,_,AU,_,CN,AU,CN,_,AU,_,CN,AU,IN,_,AU,_,AU,_,AU,_,AU,_,AU,_,AU,CN,_,AU,_,AU,_,AU,_,AU,CN,AU,_,AU,_,CN,HK,CN,AU,_,CN,AU,_,AU,CN,_,AU,_,AU,_,AU,_,AU,CN,_,AU,ID,_,MN,_,AU,CN,AU,_,IN,AU,_,CN,AU,_,JP,_,AU,CN,_,AU,_,BD,AU,_,AU,_,AU,CN,AU,CX,KZ,QA,SG,FJ,SB,MV,AS,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,AU,US,_,CY,_,CN,_,AU,_,AU,_,AU,_,AU,CN,AU,_,AU,SG,AU,_,CN,JP,_,CN,_,AU,IN,_,AU,_,AU,_,AU,KR,_,AU,CN,_,CN,AU,US,_,AU,NF,NL,AU,_,CN,_,AU,CN,AU,CN,_,CN,_,AU,_,AU,_,AU,_,IN,_,AU,_,AU,CN,AU,_,AU,_,CN,AU,ID,_,CN,HK,IN,CN,_,AU,_,AU,_,AU,NZ,AU,_,AU,CN,AU,CN,_,CN,AU,_,AU,_,AU,DE,_,CN,_,CN,AU,CN,AU,CN,_,AU,_,CN,_,CN,_,IN,_,CN,_,AU,_,HK,_,CN,AU,_,AU,_,AU,CA,HK,CA,AU,_,CN,AU,CN,AU,_,CN,AU,_,CN,AU,_,AU,_,AU,CN,AU,IN,ID,LA,_,AU,_,AU,CN,_,AU,CN,AU,_,CN,_,HK,_,CN,_,AU,CN,_,AU,_,HK,_,CN,AU,CN,_,CN,_,AU,_,CN,_,AU,_,CN,AU,_,AU,_,AU,_,CN,AU,_,AU,_,AU,CN,AU,_,AU,CN,AU,CN,AU,_,AU,_,CN,AU,_,CN,_,CN,AU,_,CN,AU,_,CN,_,CN,_,AU,CN,AU,_,AU,HK,AU,_,AU,CN,AU,CN,AU,_,CN,AU,CN,_,AU,CN,_,AU,CN,AU,_,AU,CN,_,AU,CN,AU,_,CN,AU,_,AU,CN,AU,MY,AU,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,CN,AU,_,CN,_,AU,_,AU,_,AU,_,AU,SG,CN,BD,HK,_,HK,AU,CN,PH,CN,_,CN,_,AU,CN,AU,_,CN,HK,_,AU,_,CN,_,HK,AU,_,AU,CN,_,CN,_,CN,_,AU,SG,AU,_,AU,CN,_,RS,AU,_,IN,CN,AU,CN,_,AU,_,AU,_,AU,CN,_,AU,HK,_,NZ,AU,CN,_,AU,_,AU,CN,TH,CN,_,CA,AU,_,AU,CN,_,AU,_,ID,AU,_,CN,AU,_,AU,_,AU,CN,_,CA,_,AU,MN,AU,_,CN,AU,_,AU,_,AU,_,CN,_,WS,PH,FM,_,CN,_,AU,_,CN,AU,_,AU,_,AU,_,AU,CN,AU,_,CN,AU,CN,AU,_,AU,CN,_,AU,_,CN,AU,CN,_,AU,CN,_,AU,CN,_,CN,AU,_,CN,AU,CN,AU,_,AU,_,AU,_,CN,AU,CN,AU,_,AU,_,CN,AU,CN,_,HK,CN,AU,_,HK,_,AU,_,AU,_,AU,CN,AU,_,AU,CA,_,AU,_,AU,_,AU,_,AU,CY,AU,_,AU,_,AU,_,AU,CN,_,CN,_,AU,CN,_,AU,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,AU,_,AU,_,AU,_,AU,_,CN,_,MN,HK,_,AU,_,AU,_,AU,CN,_,AU,_,HK,AU,CN,_,AU,_,AU,_,CN,AU,_,AU,_,CN,AU,CN,_,AU,_,MY,CY,AU,CY,CN,_,AU,_,AU,CN,_,AU,_,AU,_,AU,_,AU,HK,AU,CN,AU,_,AU,_,AU,CN,AU,_,AU,US,AU,_,CN,AU,_,AU,JP,US,DE,_,CN,_,AU,CN,TH,AU,CN,_,AU,CN,MN,JP,CN,AU,CN,AU,CN,AU,_,AU,_,US,AU,_,CN,AU,CN,AU,_,AU,_,AU,_,AU,_,CN,_,AU,CN,AU,_,AU,_,AU,CN,SG,AU,_,AU,_,AU,_,CN,_,AU,ID,AU,CN,_,CN,AU,_,AU,_,CN,AU,CN,AU,ID,AU,CN,_,CN,IN,AU,CN,_,SG,AU,_,AU,SG,PH,KI,FM,KI,CY,BZ,AU,CN,AU,_,CN,AU,_,US,_,CN,GB,_,AU,_,AU,_,AU,_,AU,_,AU,CN,_,AU,_,CN,_,CN,AU,CN,AU,_,AU,CN,_,AU,_,HK,_,AU,_,CN,_,AU,_,AU,_,CN,_,AU,CN,_,AU,CN,_,CN,_,CN,_,AU,_,HK,CN,_,US,_,AU,_,AU,_,CN,AU,_,AU,_,AU,_,CN,AU,HK,_,CN,_,AU,HK,_,AU,_,AU,_,AU,_,AU,_,CN,AU,_,CN,_,AU,_,CN,_,IN,AU,_,HK,AU,_,HK,NL,_,AU,_,CN,AU,_,AU,CN,_,CN,US,AU,RO,AU,_,CN,_,AU,_,CN,_,HK,AU,_,US,AU,CN,AU,CN,AU,_,AU,_,AU,CN,AU,_,CN,_,CN,AU,_,AU,NZ,_,AU,CN,_,AU,_,AU,CN,_,CN,_,CN,_,AU,_,CN,AU,_,AU,CN,_,AU,_,AU,_,CN,_,AU,_,AU,_,AU,_,AU,_,AU,CN,AU,_,AU,_,CN,_,AU,HK,AU,_,CN,AU,_,US,_,CN,_,CN,_,CN,NZ,CN,AU,_,AU,_,AU,CN,PK,_,AU,CN,CZ,_,CN,_,AU,_,AU,_,AU,CN,AU,_,AU,_,CN,_,AU,_,AU,_,AU,_,CN,_,AU,_,AU,_,AU,CN,AU,_,AU,_,AU,_,AU,_,AU,CN,AU,CN,_,CN,_,AU,HK,CN,NZ,TH,_,CN,HK,_,CN,_,AU,CN,AU,NZ,_,AU,CN,AU,MN,AU,_,AU,CN,PH,_,AU,_,AU,_,CN,AU,_,AU,CN,_,AU,_,AU,_,CN,_,CN,AU,HK,CN,_,CN,_,IN,AU,_,AU,_,AU,_,AU,SG,CN,_,AU,ID,_,CN,AU,_,CN,_,NZ,AU,CN,AU,CN,AU,_,AU,_,AU,_,AU,CN,AU,CN,_,AU,_,AU,CN,_,AU,_,CH,_,AU,_,AU,US,CN,AU,_,AU,_,AU,_,AU,_,AU,CN,_,AU,_,AU,CN,_,AU,_,ID,PH,AU,_,AU,CN,AU,SG,AU,CN,_,AU,_,AU,CN,AU,_,CN,AU,CN,AU,_,AU,CN,AU,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,CN,_,IN,_,AU,_,CN,_,AU,_,CN,_,AU,_,CY,CN,_,CN,AU,_,AU,PS,_,AU,_,AU,_,CN,AU,_,AU,_,CN,AU,_,CN,_,CN,_,AU,_,AU,PH,SG,AU,_,CN,_,CN,_,AU,_,AU,CN,_,CN,_,AU,_,AU,_,AU,_,CN,AU,_,AU,_,AU,_,TH,_,CN,_,CN,_,CN,AU,MY,_,CN,_,AU,JP,_,AU,_,AU,_,CN,AU,CA,CN,AU,_,AU,CN,_,AU,_,AU,CN,AU,CN,AU,_,AU,_,AU,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,CN,AU,_,AU,_,AU,CN,AU,IN,US,NZ,US,AU,_,AU,_,CN,_,CN,AU,_,CN,_,VN,AU,HK,_,ID,CN,_,AU,CN,_,AU,_,AU,VG,CY,SG,_,CN,AU,CN,AU,CN,_,AU,_,AU,CN,AU,_,CN,_,AU,_,AU,CN,AU,_,AU,CN,AU,_,AU,CN,AU,_,AU,_,CN,AU,_,CN,AU,CN,_,AU,_,CN,AU,_,HK,AU,_,AU,CN,_,AU,_,CN,_,CN,AU,_,AU,CN,AU,CN,_,AU,_,CN,_,AU,_,HK,_,AU,_,CN,_,CN,AU,CN,_,AU,_,AU,CN,_,AU,CN,AU,CN,AU,_,AU,CN,_,CN,_,CN,_,AU,_,SG,AU,HK,_,AU,_,AU,_,AU,CN,_,AU,_,AU,_,HK,AU,_,CN,AU,_,AU,_,CN,AU,_,AU,_,AU,PS,_,CN,AU,_,CN,_,CN,_,AU,_,AU,_,AU,_,AU,_,CA,_,AU,_,CN,_,AU,CN,AU,_,AU,CN,_,AU,_,US,_,CN,NZ,CN,AU,_,AU,_,AU,_,CN,BZ,AU,CN,AU,_,AU,_,AU,_,AU,_,AU,CA,AU,_,AU,CN,_,CN,_,CN,_,AU,_,AU,CN,AU,CN,ID,_,AU,CN,_,AU,CN,_,CN,AU,_,ID,AU,_,AU,_,AU,IN,AU,_,AU,_,HK,AU,US,AU,CN,AU,CN,_,CN,AU,CN,AU,_,AU,_,CN,AU,CN,_,AU,_,AU,CN,AU,_,AU,CN,_,AU,_,AU,CN,_,AU,_,BE,_,CN,_,CN,AU,_,AU,_,AU,CN,_,AU,NZ,CN,_,ID,_,AU,BD,AU,_,CN,_,CN,_,CN,_,AU,_,CN,_,CN,AU,_,AU,_,AU,CN,AU,_,HK,_,AU,_,CN,US,CN,_,CN,_,AU,_,CN,AU,SG,_,HK,AU,US,AU,_,CN,_,AU,CN,_,AU,US,IN,_,AU,CN,AU,TR,AU,_,AU,_,AU,_,HK,_,HK,CN,_,AU,CN,AU,_,CN,AU,CN,_,AU,_,CN,_,AU,_,CN,AU,_,CN,AU,_,CN,_,AU,CN,_,AU,_,CN,AU,_,CN,AU,_,AU,VG,AU,_,CN,_,AU,CN,_,AU,_,CN,_,AU,_,AU,CN,AU,_,AU,_,AU,_,AU,CN,_,HK,CN,_,CN,AU,_,CN,_,AU,CN,_,AU,IN,_,AU,_,AU,CN,_,CN,SG,HK,_,AU,CN,AU,_,AU,_,CN,_,HK,_,AU,_,CN,_,AU,_,AU,_,AU,_,US,_,AU,_,IN,HK,AU,_,CN,AU,_,CN,AU,IL,AU,_,CN,_,AU,_,CN,AU,_,CN,_,AU,_,AU,HK,_,AU,_,AU,CN,AU,_,AU,CN,_,CN,_,AU,_,AU,HK,_,AU,CN,_,AU,ES,US,AU,_,CN,_,CN,AU,_,AU,_,CN,_,AU,_,AU,_,AU,_,CN,AU,NZ,HK,AU,PH,AU,IN,CN,AU,CN,AU,CN,_,CN,_,AU,_,AU,CN,_,AU,CN,AU,_,US,AU,TH,AU,CN,_,AU,_,CN,AU,CN,AU,_,AU,_,CA,_,CN,AU,CN,VG,AU,_,AU,NC,MN,_,CN,AU,_,AU,_,AU,CN,_,AU,CN,_,CN,AU,_,AU,_,AU,_,CN,AU,CN,_,AU,_,AU,CN,_,AU,VG,JP,_,AU,_,CN,_,AU,_,AU,_,AU,_,CN,AU,_,AU,HK,AU,_,CN,AU,LK,IN,ID,_,AU,_,AU,_,AU,_,VN,_,CN,AU,_,CN,_,CN,MY,AU,MM,CN,_,AU,_,HK,AU,_,AU,_,AU,_,AU,CN,_,AU,_,HK,AU,_,CN,_,US,_,AU,_,NZ,AU,_,AU,GB,AU,_,AU,CN,AU,_,AU,_,AU,_,CN,_,CN,AU,CN,PH,_,AU,_,CN,HK,AU,US,AU,CN,_,AU,CN,AU,_,CN,AU,_,AU,_,AU,CN,_,AU,_,AU,CN,_,AU,_,AU,_,AU,_,AU,_,AU,_,US,AU,_,AU,_,AU,_,AU,_,PH,_,US,_,AU,_,AU,FR,AU,_,AU,CN,_,AU,_,AU,_,CN,IN,_,AU,VG,AU,CN,AU,_,AU,CN,TW,CN,AU,_,CN,_,AU,_,AU,_,AU,_,CN,_,AU,_,AU,_,IN,_,AU,_,IN,AU,SG,_,AU,_,AU,CN,_,HK,CN,AU,_,AU,_,AU,_,SG,AU,CN,AU,CN,US,_,CN,AU,_,AU,_,AU,_,US,_,AU,_,AU,_,AU,_,AU,CN,AU,CN,AU,_,CN,AU,MY,AU,_,AU,_,AU,CN,AU,_,AU,CN,_,CN,_,AU,_,AU,CN,_,AU,HK,AU,_,AU,_,CN,AU,_,AU,CN,_,HK,_,HK,AU,CN,_,AU,_,AU,_,AU,_,CN,_,AU,_,AU,_,CN,AU,_,AU,_,CN,AU,_,AU,_,US,CN,_,CN,_,CN,AU,_,CH,_,AU,CN,_,CN,AU,CN,AU,CN,AU,_,AU,_,AU,CN,_,CN,_,AU,CN,_,AU,CN,AU,CN,AU,_,AU,CN,_,CN,AU,_,AU,CN,PH,_,AU,_,AU,HK,CN,HK,CN,AU,_,AU,CN,_,AU,_,AU,CN,_,AU,_,AU,ID,_,AU,CN,AU,_,PH,AU,CN,AU,_,AU,CN,_,AU,_,AU,CN,_,CN,AU,_,AU,CN,_,CN,_,CN,AU,_,AU,_,AU,GB,_,US,_,CN,AU,_,CN,_,CN,CA,_,AU,_,AU,_,CN,AU,NZ,_,AU,_,AU,CN,AU,_,CN,_,CN,AU,_,CN,AU,_,AU,_,CN,AU,CN,AU,_,CN,_,CN,AU,CN,AU,HK,SG,HK,JP,SG,HK,JP,HK,AU,MY,CN,AU,_,CN,AU,_,CN,_,AU,_,HK,AU,TH,_,AU,CN,AU,_,AU,_,AU,_,AU,IN,KH,CA,_,US,AU,_,AU,_,SG,AU,CN,AU,_,AU,_,AU,_,GB,AU,US,AU,DE,AU,_,CN,AU,CN,AU,_,CN,_,AU,TW,AU,JP,BD,IN,BD,US,CN,JP,CN,SG,IN,PH,CN,BD,AU,_,HK,CN,JP,SG,JP,IN,LA,TW,HK,AU,KR,IN,VN,AU,CN,JP,HK,IN,ID,_,HK,SG,AU,HK,CN,HK,TH,ID,IN,US,IN,JP,HK,BD,SG,MH,CN,ES,US,MY,US,NP,US,TW,SG,TW,SG,TW,SG,MY,JP,SG,MY,TH,IN,JP,CN,AU,IN,ID,VN,ID,AU,HK,SN,HK,JP,SG,NZ,TW,HK,CN,JP,ID,MY,JP,CN,NC,TH,CN,AU,NZ,HK,PK,CN,PK,AU,CN,JP,HK,CN,KH,AU,TW,KH,AU,HK,BD,HK,AE,HK,SG,HK,SG,HK,KR,JP,CN,SG,MM,LK,JP,KR,MM,HK,ID,PK,IN,CN,ID,HK,CN,MV,IN,HK,US,AU,US,HK,PH,PK,MY,AU,CN,JP,HK,AU,BD,AU,BD,KR,HK,CN,KR,PH,IN,HK,CN,AU,CN,HK,CN,PG,ID,IO,CN,HK,_,KR,BD,AU,TW,NZ,AU,SG,CN,JP,IN,SG,FJ,_,HK,AU,_,SG,AU,HK,AU,ID,TW,ID,PH,TW,SG,TW,SG,TW,SG,HK,SG,NZ,KR,HK,SG,HK,US,HK,US,HK,CN,MM,HK,MM,JP,TH,KR,HK,SG,HK,AE,HK,NZ,AU,JP,HK,JP,CN,_,CN,AU,PH,IN,CN,HK,AU,NP,HK,BD,AU,HK,MY,ID,GB,BD,HK,BD,HK,AF,HK,AU,HK,BO,_,AU,HK,US,HK,AU,IN,HK,JP,CN,AU,_,IN,AU,HK,KR,HK,ID,JP,AU,IN,CN,US,PS,MY,TH,BD,JP,IN,CN,IN,CN,VN,CN,AU,ID,SG,IN,AU,NZ,AU,_,IN,HK,CN,JP,AU,KR,IN,CN,HK,US,HK,TW,CN,AU,HK,JP,HK,SG,CN,MN,CN,HK,JP,IN,AU,CN,PK,CN,AU,PH,JP,NZ,AU,IN,SG,MY,CN,IN,TW,JP,SG,HK,JP,NZ,JP,SG,HK,JP,HK,AU,CN,NZ,LK,AU,IN,CN,GU,JP,SG,CN,HK,KH,CN,HK,US,IN,BD,CN,NZ,LK,HK,PK,AU,PH,US,BD,NZ,BD,ID,AU,SG,AU,JP,MM,PH,AU,NZ,US,AU,MN,US,AU,IN,HK,AU,NR,JP,HK,SG,HK,CN,_,IN,PK,NZ,JP,CN,ID,NZ,ID,NZ,MY,TH,_,HK,BD,TW,MY,AU,WS,PK,IN,JP,PH,JP,VN,TH,HK,WS,AU,CN,HK,AU,ID,CN,AU,CN,AU,_,CN,IN,CN,JP,SG,JP,US,JP,GB,JP,FR,JP,HK,JP,KR,CN,NZ,AU,IN,IT,TH,VN,BN,TH,PK,SG,JP,SG,AU,SG,MV,CN,NC,PH,JP,US,DE,US,HK,JP,SG,JP,HK,JP,DE,JP,SG,JP,HK,JP,CN,IN,AU,TW,MY,CN,TH,AU,KR,IN,MM,PK,IN,MM,US,HK,US,IN,NZ,LA,IN,JP,AU,CN,AU,CN,JP,CN,AU,HK,IN,AU,JP,TW,PH,JP,IN,ID,JP,BD,HK,AU,IN,SG,BD,MY,BN,MY,TH,VN,AU,JP,PH,TH,ID,AU,ID,SG,AU,CN,TH,NZ,JP,ID,JP,IN,ID,IN,CN,JP,HK,LK,IN,PH,MY,US,MY,SG,TH,NZ,CN,TW,SG,CN,KH,AU,PH,CN,JP,SG,JP,HK,TW,PH,VN,AU,ID,AU,US,JP,US,IN,BD,PK,_,CN,HK,CN,VN,JP,ID,AU,_,VN,ID,IN,FJ,ID,_,US,VN,AU,SG,KH,CN,AU,CN,AU,HK,NP,_,TW,AU,_,AU,ID,CN,HK,CN,US,CN,HK,CN,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,MY,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,AU,TW,IN,AU,SG,IN,SG,ID,CN,AU,ID,AU,ZA,AU,IN,KR,ID,SG,JP,HK,NZ,PK,JP,SG,IN,AU,IN,SG,US,SG,PH,SG,PK,CN,ID,CN,AU,KR,HK,SG,AU,KR,VN,ID,PK,_,PH,KR,HK,AU,HK,JP,AU,JP,IN,PK,CN,KR,TH,AU,KR,ID,AU,PH,JP,TH,HK,JP,HK,AU,NZ,AU,CA,SG,CA,US,CA,SG,FR,NL,CA,FR,CA,CN,AU,JP,IN,KR,HK,IN,AU,TW,JP,KR,JP,AU,PK,AU,IN,ID,CN,IN,_,PK,TW,CN,HK,CN,ID,AU,IN,SG,MY,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,MY,SG,MY,AU,JP,SG,MY,ID,HK,AU,KR,JP,KR,PK,CN,IN,NF,AU,CN,LK,AU,JP,SG,AU,IN,AU,NZ,US,KH,JP,KH,CN,TH,CN,BD,ID,BD,IN,HK,IN,VN,IN,MY,IN,ID,HK,JP,TH,JP,IN,TW,JP,TH,SG,TH,NC,IN,AU,_,AU,HK,JP,AU,HK,TW,AU,JP,AU,CN,ID,CN,BD,PH,AU,JP,TH,AU,CN,JP,KR,SG,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,SG,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,CN,NZ,CN,KR,JP,AU,CN,HK,PH,DE,GT,PH,CA,PH,AU,ID,IN,ID,TH,IN,JP,BD,JP,MY,ID,TH,KR,TH,AU,IN,ID,LK,AU,TH,CN,TH,PH,CN,MY,AU,IN,TH,BR,IL,SE,GB,SG,US,SG,US,SG,US,NL,US,TH,VN,AU,TH,AU,JP,HK,ID,HK,ID,HK,VN,HK,NZ,ID,CN,KR,VN,IN,US,IN,HK,KR,TW,PH,CN,TW,SG,TW,CN,HK,AU,ID,US,AU,PH,VN,PK,CN,SG,AU,CN,ID,AU,NZ,PH,IN,ID,CN,HK,VN,JP,AU,JP,NZ,TW,JP,SG,JP,SG,JP,SG,JP,MY,JP,AU,JP,VN,TW,IN,AU,JP,AU,US,AU,SG,CA,MM,CN,ID,KR,AU,ID,AU,HK,AU,PH,VN,KH,HK,EG,HK,AU,CN,JP,PH,NZ,CN,AU,JP,HK,_,KR,SG,JP,AU,BD,HK,MN,ID,SG,HK,JP,HK,SG,HK,SG,HK,AU,TH,PH,AU,_,VN,HK,JP,IN,HK,TH,JP,AU,CN,IN,PK,AU,HK,AU,_,AU,KR,TH,CN,NZ,AU,PH,JP,VN,NZ,PT,AF,JP,KR,AU,CN,IN,JP,ID,AU,ID,IN,NZ,CN,IN,AU,PH,TH,AU,JP,ID,KR,NZ,_,CN,ID,CN,ID,_,AU,MN,AF,SG,NZ,HK,JP,SG,JP,CN,AU,JP,PH,IN,ID,HK,JP,KR,PK,JP,VN,IN,ID,TW,VN,BD,NZ,AU,ID,CN,SG,IN,AU,IN,AU,KR,CN,AU,IN,HK,SG,NZ,AU,NZ,HK,KH,MY,AU,IN,NZ,IN,AU,VN,CN,ID,AU,NZ,AU,PK,HK,PH,JP,AU,JP,BE,JP,NZ,US,CN,JP,HK,TH,PF,AU,TH,CN,AU,IN,AU,HK,TW,SG,US,HK,AU,US,CN,IN,TH,HK,AU,BD,TW,JP,AU,IN,MY,BD,CN,AU,IN,CN,PH,MY,NZ,AU,HK,VN,JP,LK,AU,ID,IN,AU,JP,CN,PH,ID,AU,KH,HK,IN,LK,CN,PK,JP,PS,CN,IN,BD,KR,BD,TW,AU,KR,JP,BD,ID,HK,ID,US,DE,US,PH,CN,ID,HK,IN,VN,SG,ID,AU,NZ,NR,NZ,PH,AU,JP,AU,JP,ID,IN,CN,TH,AU,BD,CN,US,JP,CN,AU,CN,VN,CN,HK,CN,BD,IN,US,ID,VN,IN,CN,VU,AU,CN,KR,JP,CN,AU,JP,CN,TH,AU,JP,AU,JP,HK,AU,HK,SG,MY,JP,AU,KR,TW,MY,HK,AU,JP,PH,TW,HK,SG,JP,HK,KR,ID,TW,JP,PH,SG,KR,AU,JP,SG,TW,JP,SG,JP,AU,HK,TW,JP,AU,JP,SG,JP,IN,HK,AS,HK,IN,AU,CN,AU,JP,HK,JP,MY,JP,SG,JP,IN,ID,BD,HK,VN,CN,TH,HK,KR,HK,SG,NZ,SG,_,AU,CN,HK,JP,VN,CN,AU,JP,ID,JP,AU,JP,AU,JP,SG,JP,NZ,HK,JP,SG,JP,AU,JP,SG,JP,HK,JP,HK,IN,HK,IN,AU,TW,BD,ID,JP,VN,IN,AU,ID,SG,PH,CN,AU,MY,_,IN,AU,JP,DE,HK,AU,SG,IN,US,FJ,CN,BD,TW,VN,CN,JP,HK,CN,HK,CN,JP,DE,SG,ZA,KR,CN,SG,CN,CA,CN,US,CN,US,CN,US,CN,US,CN,HK,CA,DE,CN,MY,CN,MY,CN,HK,AU,TW,KR,TW,JP,ID,NZ,IN,TH,CN,_,HK,NZ,HK,JP,PH,CN,AU,SG,HK,SG,TH,HK,JP,AU,JP,VN,JP,ID,SG,AU,NZ,AU,CN,HK,KR,AU,IN,AU,ID,JP,_,AU,VN,TW,JP,PH,SG,NZ,SG,JP,CN,AU,IN,PK,JP,IN,CN,KR,AU,KR,IN,AU,JP,PH,AU,MY,AU,AF,ID,IN,ID,IN,GU,JP,MM,PH,JP,GB,BE,NZ,AU,NZ,AU,HK,CN,AU,JP,AU,PK,KR,JP,HK,JP,HK,JP,US,JP,US,JP,US,JP,KR,JP,AU,TW,MY,ID,IN,MN,ID,AU,NZ,IN,US,AU,_,JP,AU,CN,KH,ID,PH,_,MY,JP,SG,ID,_,KR,HK,AU,TW,AU,JP,AU,MY,AU,HK,AU,HK,JP,_,HK,CN,HK,SG,HK,JP,KH,JP,_,ID,BD,KR,MY,PK,IN,KR,MY,AU,JP,AU,IN,HK,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,SG,KR,DE,KR,DE,KR,SG,KR,HK,KR,_,KR,_,KR,_,KR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,AU,JP,HK,US,NL,US,JP,US,NL,US,NL,US,JP,US,PR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,NL,US,DE,US,CA,US,VI,US,CA,US,NL,US,AO,ZA,NG,US,CA,US,CA,US,BR,US,CA,US,CA,US,IL,US,CA,US,_,US,CA,US,SG,DE,US,CA,US,CA,US,DE,CH,DE,US,CA,US,CA,VG,US,CA,US,VI,US,VI,US,CA,US,_,US,ZA,CA,US,BM,US,CA,US,GB,DE,GB,US,TC,US,QA,US,VC,US,CA,US,CA,US,_,US,CN,DE,US,BG,US,_,US,IT,AI,KN,AI,US,CA,US,PR,US,CA,US,CA,US,KN,US,CA,US,CA,US,CA,US,AG,US,CA,US,CA,US,CA,US,EE,US,IR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,KN,US,CA,US,CA,US,_,CA,BG,US,CA,_,US,CA,US,CA,US,DE,US,MF,US,GB,US,PR,US,CA,US,CZ,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CH,US,AU,CA,US,_,US,CA,MX,CA,US,_,US,IL,US,AR,US,IN,US,CN,US,AU,US,JP,US,JP,US,CA,US,CA,US,MX,US,_,US,CA,US,GB,SG,AU,HK,US,DE,US,GB,US,GB,US,HK,US,CA,US,NZ,US,_,US,_,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CN,US,CA,US,CA,US,MX,US,CA,US,AU,US,AU,US,AU,US,_,US,DO,US,KN,US,PR,US,CA,US,CA,US,_,US,CA,US,CA,US,BE,DE,US,DE,US,CH,IE,US,HK,GB,US,DE,US,AT,CH,GB,DE,CA,SE,DE,TW,GB,DK,US,JP,DE,US,DE,US,NO,CH,JP,DE,NL,DE,GB,US,GB,US,JP,FI,IT,CH,GB,DE,CA,IT,US,DE,BE,AU,DE,US,GR,FR,JP,DE,BE,IT,US,BE,GB,US,CA,US,JP,US,DE,CA,IT,AU,GB,US,FR,US,GB,US,SE,DE,US,JP,NO,US,CH,US,CA,CH,DE,HK,BE,DE,US,FR,US,DE,US,DE,US,SE,NO,GB,US,GB,DE,US,BE,US,GB,FR,GB,US,FR,US,JP,NO,US,LU,US,FR,CH,GB,NO,DE,US,IT,DE,US,CA,NL,SG,HK,US,NL,CA,US,IN,US,MX,US,FI,US,CA,US,IN,US,_,US,CA,US,CL,US,ZA,US,SE,US,PE,US,CA,US,CA,US,CA,US,CA,US,CA,US,MX,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,TR,US,TR,US,JP,US,NL,JP,US,TR,US,JP,US,JP,US,JP,US,JP,TR,US,NL,AU,US,CA,US,DE,US,CA,US,CA,US,CA,US,CA,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,US,TC,US,CA,US,_,US,JP,US,PA,US,CL,US,CO,US,BS,US,PR,US,MX,US,CA,US,JP,US,MX,US,_,US,DO,US,MX,US,CA,US,_,US,JP,US,SG,US,JP,US,CA,US,_,CA,US,SG,US,_,US,NL,US,CL,ES,MX,US,BR,US,DO,KN,US,CA,US,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,BE,US,GB,US,LU,US,FR,IT,US,SG,CA,NL,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,PR,US,PL,US,CA,US,PH,US,PH,US,PH,US,AU,US,LC,US,MX,US,CA,US,GB,US,CA,US,CA,US,DE,US,DE,US,NA,US,AU,US,VC,GD,US,NL,US,CA,US,HK,US,JP,US,MX,CA,US,CA,US,CA,US,CA,US,CA,US,CH,AU,US,DE,US,CA,US,IQ,US,IN,PR,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,JP,US,JP,US,JP,US,JP,US,BQ,VE,CR,US,BR,US,DO,FI,DO,BR,TR,BR,TR,PK,BR,ID,BR,MM,US,PE,US,AR,SV,CO,PE,BR,GB,BR,US,DO,US,MX,DO,PE,US,DE,US,NL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,AT,CA,US,CA,US,CA,US,CA,US,SE,US,HN,US,CA,_,CA,US,CA,US,CA,GB,CA,_,CA,US,CA,US,CA,US,CA,US,SG,US,HK,US,JP,US,CA,US,AR,BR,CO,CL,EC,PE,VE,MX,CR,PA,PE,EC,VE,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AW,US,BB,US,CA,ZA,US,CA,US,BR,US,IT,US,IL,AU,GB,US,DE,AU,ES,IT,US,FR,GB,CH,LU,IT,US,MX,US,DE,CN,MX,CN,US,BR,US,FR,ES,BR,US,FR,US,GB,NL,JP,FR,US,DE,NL,US,PL,US,CA,FR,US,GB,US,CA,US,CA,US,CA,BR,CA,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,NO,CA,US,CA,US,CA,US,CA,US,HK,US,HK,JP,FR,US,CA,HK,NO,ES,AT,HK,NL,US,HK,US,NL,ES,US,CH,US,CH,US,DE,US,FR,US,FI,US,FR,US,GB,US,GB,US,DE,JP,IT,DE,US,BE,US,SG,US,MN,DE,US,GB,US,SG,US,HK,US,GB,NL,US,DE,US,JP,BE,GB,US,IT,GB,US,IE,US,JP,GB,US,IE,US,CA,US,FR,US,FR,BE,US,DE,FR,DE,US,DE,US,BE,US,BE,US,BE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,ZA,US,IE,CA,US,CA,US,_,US,BS,US,CA,US,BR,US,CA,US,GB,US,CA,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,NL,DE,US,GB,US,CA,US,HU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,DE,US,SG,HK,US,HK,US,FR,US,CA,US,GB,BR,US,JP,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,MX,US,CL,US,CA,US,NO,US,NL,US,DO,US,CA,US,CA,US,AG,US,IN,SG,US,SG,US,SG,US,GB,US,GB,US,SG,US,SG,US,SG,US,SG,US,SG,US,DE,GB,US,FR,US,SG,US,SG,US,_,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,IN,HK,IN,US,BR,US,CA,US,HK,US,SG,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,UA,US,_,US,JP,US,ZA,US,CA,US,CA,US,_,US,CO,US,YE,US,GB,US,BR,US,JP,US,GB,US,BR,US,BR,US,AZ,AU,PK,BR,US,MX,US,MX,US,JM,BR,IN,US,BR,US,BR,US,AR,BR,US,LC,US,AU,US,CA,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,US,SG,US,JP,US,DE,US,DM,US,HK,US,HK,US,HK,US,HK,US,JP,US,CL,CA,US,CA,US,GB,US,CA,US,CA,US,JP,CA,US,CA,US,VE,US,AU,US,CH,US,HU,US,NL,US,DE,US,GB,US,GB,US,HK,US,SG,US,GB,US,IE,US,CL,US,PE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,HK,CA,US,CA,US,CA,US,CA,US,DE,US,DE,US,CA,US,CA,US,_,US,CA,US,HK,US,MO,JP,GU,HK,CN,HK,US,JP,US,JP,US,JP,CA,HK,US,CA,US,PL,US,HK,US,CA,US,CA,US,SE,RU,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,US,CA,JP,SG,CA,US,CA,US,CA,US,_,CA,US,CA,US,CA,BM,CA,US,CA,NL,CA,US,CA,US,CA,US,CA,GB,US,CA,HN,NI,HN,NI,HN,US,HN,SV,CR,HN,GT,SV,CR,SV,CR,US,SV,US,HN,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,BB,TC,BB,TC,BB,KN,TC,VC,VG,GD,BB,GD,BB,KN,BB,US,MO,HK,MO,HK,MO,HK,MO,HK,MO,HK,MO,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,KN,LC,AG,MS,AG,MS,DM,KN,VG,AG,DM,AG,KN,AG,DM,US,SG,US,JP,US,DE,US,CA,US,NL,US,SG,US,SG,US,SG,US,IN,US,SG,US,SG,US,AU,US,AU,US,BE,US,GU,US,MX,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DO,CA,US,CA,US,CA,_,CA,US,CA,US,CA,US,CA,US,CA,HR,CA,US,CA,US,CA,US,CA,US,CA,TR,US,_,US,JP,US,JP,US,MX,TR,US,TR,US,TR,US,TR,US,CA,US,TR,US,MX,US,CA,US,TR,US,JP,NL,DE,US,JP,US,NL,MX,US,JP,US,CA,US,JP,US,TR,US,TR,US,EC,MX,EC,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,_,CA,_,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SA,US,GB,US,AU,US,CA,US,BO,US,BB,US,ES,US,SG,NL,GB,US,BE,FR,US,BE,US,NL,US,IE,KR,US,DE,TW,DE,US,KR,FR,CH,NL,US,FR,US,NO,US,MX,TW,GB,US,GB,US,GB,US,GB,US,JP,US,CA,US,GB,US,GB,US,GB,US,FR,US,DK,BE,CA,GB,US,GB,ES,US,GB,US,DE,US,FR,DE,CA,US,GB,BE,US,IT,US,CA,GB,US,GB,NL,GB,US,FR,US,HK,US,GB,JP,BE,FR,SE,GB,HK,IT,US,CA,US,EG,US,BR,US,IE,US,FR,IT,FR,JP,US,FR,US,SE,BR,FR,US,FR,US,CA,US,IN,US,HK,US,DM,US,SG,US,HK,US,ZM,US,HK,US,DM,US,SG,US,HK,US,HK,US,HK,MX,US,DM,US,IN,US,IN,US,BR,PK,BR,AR,DO,BR,CO,BR,US,CL,US,NL,HK,AR,US,VE,BR,AR,CO,US,BR,VE,BR,MX,BR,TR,BR,VE,PK,VE,IN,AR,CO,DO,CO,VE,MX,DO,BR,VE,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CO,US,CA,US,GB,US,CA,US,ES,US,ES,US,ES,US,BE,US,BE,US,GB,US,GB,US,GB,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,FR,CA,US,SG,FR,US,SG,US,DE,US,DE,US,AU,US,CA,US,GB,US,GB,CA,US,CA,US,NL,JM,US,_,US,CA,US,CA,US,CA,US,CA,US,ES,US,BR,IN,PK,US,BR,US,BR,US,CA,US,AR,US,CA,US,CA,US,CA,US,BS,US,CO,US,CL,US,VE,US,VE,US,CL,US,CL,US,BR,US,MX,US,CL,VE,US,VE,US,CA,US,CO,AR,VE,US,PE,CL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GE,CA,US,CA,BE,PL,GE,IL,US,TR,US,GB,US,CA,DM,US,CA,US,BM,US,HK,JP,SG,US,NL,US,NL,US,LU,NL,US,NL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,_,US,JP,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GB,NZ,US,PH,US,LB,KZ,BR,US,CO,US,VE,CO,VE,AM,CL,US,SL,US,SL,US,SL,US,BS,US,NL,US,SL,US,SL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,VG,US,CA,US,CA,US,GB,US,CA,US,_,US,FR,US,IT,US,JP,NL,DK,BE,US,ZA,ES,FR,GB,US,ZA,US,SE,US,VE,US,SG,US,FI,US,IE,US,IE,US,IT,FR,ES,US,FR,US,CH,GB,AR,US,CA,US,NL,US,JP,NL,US,IT,BE,US,DE,AU,US,DE,GB,US,ES,US,GB,US,DE,US,BE,US,DE,GB,DK,US,GR,US,SE,DE,GB,FR,US,GB,US,DE,US,IT,SG,HU,FR,FI,FR,US,GB,IT,DE,FR,US,DK,IE,DE,US,HK,US,ID,US,TW,AU,US,GB,US,ID,HK,US,KR,TH,DE,US,GB,US,DE,US,BE,DE,SE,US,ID,US,DE,US,GB,US,GB,ES,US,HK,GB,US,DE,LU,US,BR,US,CA,US,CA,US,FR,US,SG,US,SG,US,SG,US,SG,US,JP,US,JP,US,JP,US,JP,US,JP,US,_,US,CA,US,CA,US,DE,US,FR,US,CA,US,HK,US,CA,US,VG,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,BF,CA,HK,QA,US,CA,US,CA,US,IL,US,AG,US,CA,US,NL,NO,US,BL,CA,VC,US,AU,NZ,SB,FJ,MV,AU,US,AU,NZ,AU,JP,PN,US,_,US,CA,US,CL,IL,BR,PS,CO,DO,US,ID,PK,US,ES,US,TR,US,BR,IN,DO,ES,DO,PE,BR,MX,BR,DO,AR,US,BR,US,CL,BR,US,AR,US,HU,VE,US,DO,VE,BR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PR,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SG,US,SG,US,SG,US,CO,US,CA,US,CO,US,BO,US,CA,US,CA,US,CA,US,NL,US,CA,US,CA,US,NL,US,SL,US,SL,US,SL,US,SL,US,SL,US,CA,US,HK,US,HK,MO,JP,US,JP,US,JP,US,HK,US,JP,US,DE,US,DE,US,DE,US,GB,CA,US,CA,US,CA,US,CA,GB,CA,US,NL,US,CA,DE,NL,CA,SE,SG,RU,DE,US,BR,NL,SE,FR,NL,IN,DE,RO,RS,TR,US,AU,RS,GR,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,LC,US,CA,US,CA,US,NL,US,GD,US,CA,US,SG,BR,JP,SG,AU,NL,FR,IL,FR,DE,US,SG,CA,US,_,CA,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,CA,US,CA,US,CA,US,CA,US,CA,FR,CA,US,CA,US,HK,SG,PH,SG,US,CA,US,CA,US,PA,US,BS,US,PE,US,HK,US,HK,US,GB,US,GB,US,CA,US,GB,US,GB,US,GB,US,DE,US,AU,US,AU,US,NZ,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,PA,US,CH,US,CA,US,HK,US,DM,US,DM,US,DM,US,DM,US,DM,US,DM,US,HK,US,HK,US,HK,US,HK,US,HK,US,CA,US,VE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,FR,US,DE,US,DE,US,DE,US,FR,US,DE,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,_,DE,US,PR,US,NL,US,CA,US,CA,US,CA,OM,CA,US,CA,US,CA,US,DE,US,TR,US,CA,US,CA,US,_,US,GB,CA,US,_,US,PR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,BE,DE,ES,DE,US,IE,FR,NL,SE,FR,US,FI,US,TW,US,AT,US,DK,DE,US,ZA,NO,ZA,FR,DE,IT,US,DE,US,DE,US,FR,US,GB,US,IT,US,SE,US,ES,GB,US,CH,DE,US,IT,US,NO,DK,LU,US,IL,US,GB,US,FR,DE,FR,US,JP,US,AT,NL,US,BE,US,HK,US,DE,US,DE,US,IT,US,MC,US,CA,US,DE,AT,US,NO,US,AU,US,SG,CA,BR,US,ID,SG,US,SG,US,CN,US,NL,US,DE,US,SE,US,CA,NO,PH,US,FR,US,DE,US,CA,US,CA,US,IN,US,_,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,ZA,GB,ZA,GB,ZA,GB,CA,US,CA,US,AU,US,GB,US,CA,BM,US,NL,US,CA,US,NL,GB,SG,DE,US,SG,NL,GB,IN,SG,US,NL,GB,DE,US,DE,US,DE,GB,US,DE,US,DE,US,DE,US,DE,US,JP,US,PR,DE,US,JP,US,CA,US,KY,US,IE,NL,US,NL,IE,NL,US,DE,US,DE,US,DE,US,GB,IT,NL,GB,US,CA,US,CA,US,_,US,CA,US,_,US,GB,US,CA,US,CA,US,MX,US,MX,US,PH,US,CA,US,NL,US,CA,US,ES,US,CA,BR,GB,US,HU,US,VE,US,SG,IN,US,HK,US,CA,US,CA,US,CA,US,NL,US,NL,US,NL,US,NL,US,NL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AG,DM,AG,LC,AG,VG,US,AE,US,CA,US,CA,US,CA,US,CA,US,DE,GB,US,NL,GB,US,KR,US,_,US,HK,US,CA,US,AR,US,CA,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CO,US,CA,PE,US,ZA,US,CA,US,CA,US,_,US,PA,US,SE,US,AT,US,CA,US,HK,_,US,CA,US,VE,US,CO,US,BB,US,GB,FR,GB,DE,US,FR,GB,ES,AU,US,FR,JP,FR,US,GB,FR,IT,US,GB,BR,SG,US,AU,MX,US,CN,DK,BR,ES,FR,DE,US,BE,US,NO,US,NL,US,DE,IT,US,PL,CA,US,GB,AT,US,AT,GB,US,CA,US,SG,AU,TH,CA,GB,JP,AO,EG,AO,EG,JP,KR,TW,TH,KR,MY,ID,US,HK,US,JP,US,SG,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GB,US,CA,US,CL,US,CA,US,BE,US,AU,US,FI,US,PR,CA,US,ZA,GB,US,IN,US,_,US,PL,US,CA,US,CA,US,CA,US,SO,US,CA,US,DE,US,DE,US,BM,US,SE,US,SG,US,GB,SG,US,CA,US,CA,US,HN,US,PR,US,JP,US,PE,US,PH,US,PH,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,GB,US,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,AU,US,CA,US,CA,US,GB,US,CA,US,CA,US,FR,KR,US,SG,US,SG,US,SG,US,HK,US,JP,US,HK,US,HK,JP,US,HK,US,HK,US,SG,US,IE,SG,US,SG,US,CA,US,CA,US,NL,DE,NL,DE,NL,US,DE,NL,US,AU,US,GB,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,RO,US,RO,US,RO,US,RO,US,CA,US,CA,US,AU,US,JP,ES,US,SG,JP,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,PE,US,CA,US,SG,US,AU,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,_,US,CA,US,_,US,DE,US,CA,US,NL,US,CA,US,GP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,GB,US,CA,US,CA,US,CA,US,IL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,FR,US,CA,US,JP,DE,GB,US,CH,US,AT,US,SG,HK,US,GB,SG,US,NO,FR,SG,HK,US,HK,US,JP,CA,US,DO,US,IT,US,BR,US,JP,US,DE,US,GB,US,HK,FR,US,HK,US,FR,ES,JP,CH,BE,US,IL,US,IT,US,IT,US,HK,JP,KR,SE,DK,NL,US,CL,NO,US,RU,MX,US,PT,US,SE,US,ZA,US,ID,NO,CH,IE,SG,DK,SG,CN,ZA,BE,US,TH,SG,US,AU,FR,AU,JP,CA,SG,US,DE,BE,AU,GB,FR,US,IT,BE,HK,ES,IL,GB,MX,PH,MX,PH,MX,BE,GR,CA,IT,US,ES,US,JP,MX,BR,LU,DE,US,HK,US,DE,US,CA,US,CA,US,DE,US,CA,US,DE,US,NZ,US,RS,US,RS,AE,US,RS,US,RS,US,SE,SA,US,DE,US,CA,US,DE,US,IN,GB,US,CA,US,SA,US,BR,US,AU,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,VE,US,VE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,AG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,CA,SG,AU,JP,SG,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SA,US,PR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,AU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,PR,US,CA,US,CA,US,HK,CA,KN,HU,US,CA,US,CA,US,DE,US,CN,US,CA,US,CA,US,CA,US,CA,US,HK,US,CA,US,CA,US,CA,US,PR,US,CA,US,CA,US,AU,US,CA,US,_,PR,US,_,US,CA,US,HK,US,_,US,_,US,PH,US,KZ,US,DM,IL,US,DM,US,ZM,US,ZM,US,HK,US,HK,US,HK,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SA,US,DE,US,PH,HK,US,CA,US,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,US,CA,US,CA,US,GB,US,CA,US,CA,US,ES,US,_,US,CA,US,HK,MY,HK,AU,US,IN,US,SE,CA,US,BR,AR,BR,SV,US,VC,LC,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CL,US,NL,US,GB,US,IN,FR,US,FR,US,KR,US,ES,MX,US,CL,US,CA,US,JM,PR,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,GB,DE,TW,GB,NO,BE,AU,DE,CH,US,KR,US,CA,US,PT,FR,NZ,US,AU,FR,NL,CL,GB,FR,US,IT,US,GB,CH,US,NL,NO,NL,DE,FR,DE,BE,US,AR,DK,ID,PR,DK,NL,NO,US,GB,IE,IT,GB,US,BR,NO,SE,BR,US,BR,US,BE,US,BE,NZ,US,SG,AR,JP,US,AU,BE,US,ES,NL,US,MY,US,FI,US,JP,US,PH,GB,US,HK,AU,SG,US,SE,NL,US,SG,US,HK,SG,US,DE,US,GB,ES,US,GB,US,FR,BE,PH,US,NO,US,SE,US,CH,AU,NO,ES,BE,FR,SG,BE,CA,US,SE,HK,US,NL,US,NL,FI,ES,ZA,GB,MX,DE,JP,DE,US,PH,SG,SE,ES,US,SE,NO,NL,FI,IL,US,JP,US,BE,BW,ZA,US,NO,PT,US,CL,SE,JP,ID,JP,US,JP,IT,GB,CN,US,HK,US,KR,CH,DK,FR,ES,IL,ES,NL,TW,DE,US,BE,SE,FR,US,DK,BE,SG,US,BE,GB,US,BR,PT,DK,US,JP,CA,US,GB,US,AU,US,SG,FR,HR,DE,US,UA,BE,TR,US,CA,US,CA,US,DK,US,DK,US,CA,US,CA,US,CA,US,CA,US,BR,US,JP,US,IL,US,JP,US,JP,US,HK,US,HK,US,HK,US,HK,US,HK,US,DM,US,DM,US,DM,US,HK,US,DE,US,TW,US,HK,JP,US,CA,US,KY,BM,KY,BM,_,US,CA,US,CA,US,CA,US,CA,NL,US,NL,US,TR,NL,US,TR,US,TR,CO,US,MX,US,KW,US,IT,US,BE,US,JP,DE,PT,US,LU,US,CA,US,CA,US,CA,US,CA,US,IL,DE,IL,US,CA,US,CA,US,ES,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,CA,US,CA,US,DE,US,DE,AT,US,IT,US,AT,US,HK,US,HK,US,HK,US,CA,US,CA,US,CL,BR,AR,BR,MX,HN,MX,AR,MX,CO,MX,AR,NI,BR,MX,AR,MX,GT,CL,MX,PE,MX,PE,AR,MX,CL,MX,US,CA,US,IT,US,CA,US,DE,US,DE,US,JM,US,PR,US,BB,US,DM,LC,AG,VG,DM,LC,US,BO,US,PR,US,CA,US,CA,US,KY,US,GB,US,PR,US,CA,US,CA,US,CA,US,CA,US,AR,US,AU,US,CA,US,JP,US,CA,US,GB,US,VI,US,CA,US,VI,US,FR,US,CA,US,VI,CH,US,CA,US,CA,US,NL,US,CA,US,_,US,BR,US,CA,US,GB,US,FR,_,US,DE,US,PR,US,IL,AU,ES,US,DE,PT,BY,QA,JP,AL,US,IL,MX,AT,NL,AE,US,JP,DE,GB,US,CA,BR,IN,HK,JP,SG,AU,IE,SE,IT,KR,ZA,BH,FR,US,NZ,US,CA,US,CA,US,CZ,US,VG,US,CA,US,CA,US,CA,US,CA,US,CA,US,IT,US,CA,US,FR,GB,US,SG,HK,US,CA,US,CA,US,CA,US,CA,US,AI,US,CA,BE,US,SG,US,_,US,CA,US,CA,US,CA,HK,JP,TW,JP,ID,HK,ID,TW,US,CA,US,CA,US,NL,US,CA,US,_,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,SN,US,CA,US,DE,GB,NL,US,JP,US,CA,US,_,US,CA,US,BR,US,CA,US,CA,US,CA,US,KN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,HK,SG,US,PH,US,CA,_,US,CA,US,CA,US,GP,KN,GP,US,CA,US,CA,US,CA,US,VG,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,CA,US,BM,US,NL,US,GB,CA,US,CA,US,CA,US,CA,US,_,US,ES,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,MX,US,CA,US,MF,CA,US,_,US,CA,US,JP,GB,US,GB,US,CA,US,HK,SG,US,JP,US,JP,US,CA,US,GP,US,CA,US,CA,US,CA,US,CA,US,_,US,PR,US,CA,US,CA,US,CA,US,PR,US,JP,DE,US,ID,JP,CA,US,CA,US,CA,US,KN,US,PR,US,CA,US,NL,US,BR,CA,CN,CA,US,CA,US,DE,US,CA,US,CA,US,BM,US,KY,US,CA,US,CA,_,PR,US,_,US,AG,US,CA,US,CA,US,IT,US,_,CA,US,CA,US,VI,VC,US,ES,US,GB,US,CA,US,CA,US,ZA,US,_,US,CA,US,IE,US,CA,US,BR,US,CA,US,GB,US,DE,US,CA,US,BS,US,CA,US,GB,US,GB,US,_,US,DE,US,SG,US,AU,US,KN,US,CA,US,_,HK,US,CA,HK,US,CA,US,CA,US,CA,US,NL,US,CA,US,_,US,CA,US,CA,US,CA,US,_,US,CA,US,CA,US,BM,US,CA,US,CA,US,CA,US,CA,US,MS,US,CA,US,CA,US,_,US,CA,US,DE,JP,US,JP,NL,US,CA,US,MF,GP,MF,VG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,CA,US,_,US,CA,US,JP,US,CA,US,CA,US,CA,US,CA,GP,MF,US,LC,US,CA,US,BR,US,PR,US,CA,US,CA,NI,GT,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GP,US,CA,US,CA,US,CA,US,CA,US,SG,US,CA,US,CA,US,JP,US,CA,US,CL,CA,US,MX,US,BR,US,BR,US,AR,US,CA,US,IL,US,CA,US,CA,US,GB,US,DE,US,FR,US,DE,US,DE,US,CA,US,DE,CA,US,CA,US,PR,US,CA,US,CA,US,NL,US,CA,US,CA,NG,CA,US,CA,US,CA,US,CA,US,CA,US,EG,MD,DE,UA,PT,US,SI,IT,KE,DE,JO,DE,LI,BG,IL,HR,VE,PY,AR,CL,BR,PK,GR,SK,RO,IN,JP,BG,DE,KE,LI,PT,SK,ES,US,GB,FR,GB,IE,GB,FR,DE,IT,ES,BE,KE,ZA,US,DE,US,JP,AU,PG,AU,US,MX,JP,HK,GB,NL,CH,DE,GR,HU,IT,LU,MD,RO,SI,TR,UZ,BE,DK,NL,CA,AR,BR,CL,PY,PE,US,CA,US,TW,HK,JP,IN,SG,VN,AU,BR,RU,BE,GB,IE,NG,CA,NL,CH,US,CA,US,GB,IE,FR,IE,KH,TH,PH,VN,MM,SG,ID,MY,SG,VN,ID,PH,SG,VN,PH,US,MX,US,KE,HR,ZA,GR,DE,US,DE,US,AU,US,JM,US,JM,US,AS,US,KY,US,JM,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,GB,US,DE,US,KY,US,KY,TC,VG,KY,US,CA,US,DE,US,DE,US,DE,US,NL,US,DE,US,DE,US,FR,US,IT,US,ES,US,JP,US,GB,US,CH,US,DE,US,GB,US,IE,US,DE,US,CA,US,CA,US,CA,US,CA,US,GU,US,PK,US,LK,US,BS,US,DE,US,MC,US,NL,US,CR,US,PK,US,KE,US,CH,US,AZ,US,DE,US,CO,US,GU,US,CO,US,AE,US,LI,US,AZ,US,NL,US,EC,US,CA,US,RO,US,GU,US,PK,US,PH,US,BD,US,PR,US,EC,US,PH,US,JM,US,MX,US,PK,US,CA,US,GU,US,RO,US,JM,US,BS,US,PR,US,PA,US,CA,US,DM,US,DM,US,DM,US,DM,US,HK,US,HK,US,DM,US,DM,US,JP,US,IQ,US,HK,US,ZA,US,DE,US,HK,US,GB,US,HK,US,HK,US,HK,US,HK,US,DM,US,HK,US,HK,US,HK,US,HK,US,AR,BR,US,BR,US,BR,US,CO,US,BR,US,BR,US,BR,US,BR,US,BR,US,BR,CL,US,CA,US,CA,US,CA,GB,CA,US,CA,TH,CA,IE,US,SI,DE,US,SI,GB,FR,NL,US,IT,US,VN,NL,US,GB,JP,US,SG,US,CA,US,CA,US,CA,BS,CO,US,_,US,FR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,NL,US,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,ID,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,KY,US,KY,BM,US,BM,US,IT,US,AU,US,VE,US,JP,TH,JP,TW,JP,KR,PH,NZ,US,HK,US,AU,US,HK,US,AU,MY,SG,AU,US,SE,HK,US,SG,JP,US,AU,BR,CA,US,GB,CH,US,DE,US,BR,GB,US,NO,CH,GB,IT,US,DE,DK,ES,BE,GB,US,SE,DE,US,GB,US,SG,US,DE,US,DE,US,CH,US,BE,SE,DE,BE,NL,IE,US,NL,CH,US,DE,SE,DK,GB,US,DK,US,NO,US,FR,US,PT,GB,US,SE,US,DE,US,FI,LU,IT,IL,RU,CH,SE,PT,US,BE,US,GB,FI,NO,US,NO,DE,FI,IT,CH,NO,GB,DE,GR,ZA,SE,GB,ZA,IT,ES,US,NE,BE,IL,NL,US,SE,GB,BE,US,GB,GR,IE,NO,US,CH,US,DE,AU,SG,MY,AU,JP,SG,HK,AU,JP,PH,KR,JP,HK,KR,CA,US,ZA,US,CA,US,GP,US,CA,GB,TW,CA,US,CA,US,TW,US,CA,US,GB,US,TW,SC,CA,PH,US,MX,TW,US,CA,IL,US,CA,GB,DE,IL,GB,IL,DE,FR,IL,US,GB,US,GB,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,GB,US,CA,US,NL,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,PE,US,DE,US,CA,US,CA,US,CA,US,CA,US,KW,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,KW,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,US,_,US,_,US,PR,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IE,US,NO,IN,TW,US,AU,SG,US,IN,ZA,ES,HK,US,DE,CH,US,BR,IN,PL,NL,IT,US,NL,JP,US,GB,US,JP,DE,US,DE,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,BR,US,OM,US,CA,BR,US,IN,US,QA,US,SG,CA,US,AU,JP,US,CA,US,JP,US,CA,JP,US,AU,US,SG,CA,US,ZM,US,CA,US,JP,UG,US,CA,US,IN,US,CA,US,SY,US,CO,LY,SY,US,SG,HK,US,VG,AG,KN,AG,KN,AI,AG,VG,AG,KN,MS,AG,MS,AG,DM,KN,LC,MS,KN,AG,KN,AI,VG,AG,LC,US,JP,US,CA,US,CA,US,CA,US,BE,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,MY,US,ES,US,PH,US,PL,US,RU,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,DE,US,DE,US,JP,US,DE,US,FI,US,JP,US,JP,US,CA,US,CA,US,GB,US,NZ,US,CA,US,CO,US,VE,CL,VE,CO,CL,VE,US,CL,US,CL,US,CO,CL,US,CL,US,VE,US,CA,US,CA,US,HK,US,CA,US,CA,US,CA,PR,US,PR,US,PR,US,PR,US,PR,US,GB,US,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,TT,US,DE,US,DE,US,DE,US,SE,US,SE,US,CA,US,GB,US,SG,GB,CA,US,CA,ES,CA,US,CA,ES,PL,CA,US,AR,US,GB,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,UA,US,CA,_,US,DE,FR,DE,US,DE,US,CA,US,CA,US,CA,US,CA,US,TW,US,TW,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,GT,SV,NI,SV,US,NI,SV,US,SV,US,SV,US,HK,US,HK,US,PL,US,CA,US,BS,US,BE,US,CA,US,CA,US,CA,NZ,NL,US,DE,US,CA,NZ,CA,US,CA,US,CA,US,NL,US,BR,CA,US,GB,US,CA,US,GB,US,CA,US,NL,US,CA,US,CO,US,_,CA,US,DE,US,GB,US,CA,GB,US,CA,PM,CA,US,GB,US,NL,US,CA,US,CA,US,_,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,MX,CA,US,PH,SG,PH,US,CA,US,CA,US,DE,CA,US,CA,US,CA,US,JP,US,CA,US,CA,BE,US,HK,US,CA,US,CA,US,JP,HK,JP,HK,CN,HK,JP,PH,SG,US,SG,US,SG,US,SG,KH,JP,HK,JP,HK,US,JP,US,HK,US,JP,US,HK,JP,HK,CA,US,GB,US,CA,US,PK,US,CA,US,_,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,SG,US,CA,US,_,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,NL,US,CH,NL,TH,US,NL,CA,US,CA,US,CA,US,CA,US,GU,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,MX,US,CA,US,CA,US,BR,US,CA,US,CA,US,DE,IN,TR,HK,RU,US,IN,SG,IN,US,DE,US,CA,US,PA,US,CA,US,IN,US,SG,US,GB,JP,PL,US,CA,US,CA,IN,JP,US,SG,DE,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,MY,US,JP,US,CA,US,CA,US,DE,US,CA,US,CA,US,CA,US,CA,US,NL,US,BR,US,CA,US,MU,KM,US,CA,US,GB,US,UA,MW,BJ,UA,LU,IT,PL,SI,GG,IS,UA,SK,SE,RO,NO,HU,BG,YT,MT,MK,IS,GE,AL,SE,NO,YT,MK,IS,US,BH,US,IL,BE,ID,GB,ES,AE,NZ,JP,GB,US,GB,NL,US,NL,HK,JP,US,JP,US,NL,US,NL,US,AU,US,GB,US,GB,US,NL,US,NL,US,NL,US,GB,NL,US,GB,US,NL,US,CA,US,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,ZA,US,CA,US,GB,US,GB,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,US,_,CA,AT,BE,BG,HR,CY,CZ,DK,FI,FR,GI,GR,HU,IS,IT,LV,LT,LU,NO,PL,PT,RO,RU,SK,DE,ES,SE,CH,TR,UA,AL,MA,ZA,US,DE,US,CA,US,CA,US,CA,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,CA,US,CA,US,CA,US,CA,US,CA,US,MY,CA,US,CA,US,CA,US,_,US,ZA,US,MV,US,JP,HK,US,SG,AU,MY,TH,KR,US,JP,US,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,SE,US,GB,JP,US,CA,US,CA,US,FR,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,IT,US,SG,US,CA,US,CA,US,JM,VC,TC,JM,VG,US,DE,US,NL,US,HR,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,GB,US,BM,US,CA,US,DE,SI,US,BR,AE,KR,SE,AU,SE,AU,CA,US,CA,US,GB,DE,NL,US,CA,US,GB,US,CA,US,_,US,JE,US,AU,KR,AU,HK,TW,HK,TH,PH,JP,AU,MY,_,JP,BD,CN,KR,VN,PK,JP,HK,PH,BD,AU,KR,PH,TH,JP,US,NZ,KR,AU,JP,CN,AU,MY,NZ,HK,KZ,HK,PH,CN,HK,AU,US,HK,AU,HK,AU,HK,FJ,NZ,AU,CN,IN,US,SG,JP,AU,SG,JP,AU,SG,AU,SG,AU,SG,AU,CN,PH,JP,CN,MM,CN,AU,PH,SG,PH,SG,PH,SG,PH,SG,AU,HK,IN,HK,IN,CN,IN,KR,SG,MY,CN,KR,TW,HK,JP,HK,JP,HK,IN,AU,MY,JP,CN,SG,CN,ID,MP,PH,AU,PH,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,MY,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,HK,PH,HK,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,SG,JP,CN,NZ,JP,HK,MY,NZ,MY,AU,MY,JP,AU,CN,NZ,PK,SG,PK,NZ,HK,AU,IN,SG,_,AU,JP,CN,AU,MY,JP,AU,HK,ID,SG,PH,US,AU,JP,SG,HK,GB,US,TW,GB,HK,SG,VN,PH,KR,HK,SG,MY,AU,PH,HK,PH,GB,SG,IN,JP,IN,AU,PH,AU,JP,HK,SG,JP,SG,JP,SG,GB,JP,AU,JP,SG,JP,HK,SG,JP,SG,HK,JP,HK,JP,AU,JP,IN,JP,IN,JP,ID,KR,TW,CN,JP,AU,JP,NZ,SG,TW,HK,CN,IN,TH,IN,ID,IN,ID,PH,ID,IN,TW,IN,AU,TW,ID,PK,PH,SG,AU,MY,VN,PH,BD,NZ,JP,ID,JP,ID,CN,SG,HK,SG,HK,NZ,SG,AU,SG,TW,KR,AU,JP,CN,AU,TW,NZ,TH,VN,SG,VN,AU,PK,AU,IN,BD,CN,ID,_,ID,JP,PH,ID,SG,TW,SG,ID,CN,ID,MM,CN,KR,JP,HK,JP,_,JP,_,JP,IN,HK,IN,HK,AF,HK,AF,HK,AF,HK,BD,HK,AF,HK,JP,_,JP,AU,KR,JP,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,SG,KR,_,KR,JP,AU,JP,AU,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,BE,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,HK,AU,JP,HK,PH,JP,AU,US,NZ,TW,AU,JP,HK,ID,AU,IN,TW,US,HK,SG,TW,SG,HK,ID,PH,HK,MY,TH,HK,KR,AU,TW,HK,NZ,HK,KR,HK,ZA,HK,US,HK,JP,HK,SG,HK,JP,HK,US,HK,US,HK,SG,HK,DE,HK,DE,HK,ZA,HK,NZ,AU,JP,PH,CN,MY,TH,MY,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,TW,KR,CN,TW,SG,JP,AU,JP,MY,JP,TW,TH,JP,KR,_,KR,TW,HK,TW,IN,ID,KR,ID,TW,JP,EC,KR,VN,IN,TH,PH,SG,PH,SG,PH,IN,GB,IN,US,IN,AU,KR,_,KR,_,KR,_,KR,_,KR,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,TW,VN,SG,VN,HK,NZ,TH,LA,TH,JP,AU,JP,AU,ID,AU,ID,AU,ID,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,TW,MY,AU,KR,_,KR,_,KR,_,KR,_,KR,SG,KR,US,KR,_,KR,_,KR,_,KR,_,KR,CN,TW,CN,KR,_,KR,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,CN,HK,CN,SG,MY,SG,NL,SG,CN,HK,CN,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,_,KR,DE,RU,ES,SD,PT,MD,NL,DE,UA,GB,NL,IR,GB,US,GB,US,GB,AU,RU,GB,DE,PL,SA,IE,TR,KG,DE,US,IL,SE,US,GB,SE,ES,DE,UA,RU,IT,LV,BE,GB,BE,AE,BE,GB,BE,GB,BE,IT,NO,CH,ES,CZ,DE,NL,DE,BG,IQ,BG,GE,BG,GR,BG,IQ,BG,IQ,RU,BG,RU,SK,RU,SK,TR,DK,DE,KW,CZ,FR,DE,LB,DE,ZW,CH,NL,FR,CH,IT,US,FR,NL,FI,FR,RU,NL,IT,SA,DK,UA,DE,EE,ES,IT,RU,DE,NL,PL,RU,DE,UA,ES,DE,BE,DE,RU,MY,RU,NL,US,NL,RU,NL,MY,JE,DE,ES,GB,AT,DE,GB,UA,DK,FR,CH,GB,LT,US,GB,DE,GB,NL,PS,NL,GB,CZ,RU,SA,SY,DE,RU,DE,RU,ES,TR,SA,LT,_,RU,PT,MK,RU,KZ,GB,SI,PL,DE,ES,IT,RU,PS,TR,RU,IT,IQ,CH,RU,UA,HR,DE,ES,RU,AT,IR,US,RU,IR,IN,IR,IN,IR,FI,NL,HU,SE,NO,SE,RU,DE,RU,IE,AT,NO,AX,IT,DE,SI,DE,ES,UA,RU,ES,RU,CZ,US,FR,US,NL,US,IR,PL,GB,US,NL,RU,BR,US,RU,US,TH,TR,RU,NZ,FR,DE,TH,RU,NO,PT,DE,GB,NL,GB,FR,GB,NL,RU,DE,GB,IT,KZ,FR,NL,ES,NL,FR,IE,NL,US,NL,RU,CZ,GB,CA,US,BG,TR,BG,DE,US,GB,DE,NO,GB,RU,GB,DE,GB,DE,GB,NL,GB,NL,GB,BG,PT,BG,DE,IT,GB,US,ES,GB,GR,ES,RU,TR,RU,LV,RU,ES,IT,KE,UA,GB,GI,GB,GI,GB,GI,GB,GI,TW,HK,GB,GI,GB,DE,GB,FR,GB,NL,DE,SE,US,BE,GB,NL,IT,CZ,GB,ES,DE,CH,GB,NL,GB,NL,GB,RU,DE,FR,GB,NZ,US,JP,NL,UA,NG,IR,RU,US,GB,US,GB,TR,CY,DE,GB,DE,IR,GB,IR,IQ,CZ,DE,SE,NL,PL,ES,CH,IT,RU,GB,LT,UA,BR,GB,RU,AT,DK,IT,FR,US,BG,DE,NL,DE,CZ,HU,LU,SA,CH,BG,IL,SE,IT,NL,PL,NL,GB,US,GB,NL,GB,NL,GB,NL,GB,SA,UA,SK,NL,ES,NL,FR,NL,ES,NL,RU,DK,FR,AT,DE,GB,CH,GB,FR,CH,GB,BE,GB,CH,GB,DE,GB,CH,CZ,EE,BE,PL,BE,RU,EE,BE,EE,BE,GB,DE,MD,DE,CH,IT,SE,LB,DE,TR,IT,NL,IL,GG,LB,ES,LB,ES,DE,NL,GB,LB,GB,LB,MM,SG,BR,JP,SI,FR,RU,IS,TR,ES,AT,CY,FR,GB,SE,ES,US,ES,GB,ES,US,GB,ES,US,GB,IT,GB,AL,GB,US,SE,RU,NL,RU,AT,PL,PS,NO,SA,IR,RU,JO,RU,DE,RU,ES,DE,ID,AM,CH,JO,BE,RO,RU,IT,GB,BG,GB,ES,GB,DE,GB,DE,GB,BE,GB,DE,GB,DE,GB,DE,GB,LB,RU,SE,FI,SE,DE,SK,SE,DK,DE,FR,NO,DE,IT,GB,RU,CH,RU,CH,RU,CH,RU,CH,RU,CH,RU,SA,GB,US,GB,US,GB,US,GB,PL,FI,IT,SE,US,SE,BG,BA,FR,GB,AT,GB,FR,GB,FR,CH,UA,HU,LB,DE,BE,DE,RU,ES,RU,CH,NL,GB,NL,GB,NL,GB,NL,GB,CH,AT,GB,RU,UA,KG,CH,GB,US,DE,KW,BG,DE,IT,CH,GB,FR,GB,RU,SI,RU,DE,FR,RU,NL,BG,KZ,IT,DE,BE,DE,BE,DE,DK,IT,NO,CH,RU,US,RU,US,RU,US,ES,US,IL,UA,US,NL,HU,IR,US,RU,UA,FR,IT,SE,FR,CZ,PL,GR,KZ,GB,US,IS,DE,GR,AE,IT,DE,GB,NL,GB,IT,RU,CZ,IT,GB,PS,GB,NL,GB,US,LT,AZ,CH,PL,BE,EE,BE,EE,BE,EE,BE,EE,BE,EE,BE,FR,IT,RU,GB,FR,GB,FR,GB,FR,GB,DE,CH,DE,US,DE,SI,DE,RU,IT,RU,HU,BE,EE,BE,EE,BE,NL,BE,PL,KE,RU,ES,GB,BG,TR,BG,CY,FI,GB,FI,JP,US,JP,DE,ES,HU,CH,FR,PL,AT,JP,DE,GB,AT,RU,EG,DK,DE,UA,US,NL,RU,US,ES,FR,GE,PL,TR,IT,NO,US,FR,US,ID,LT,IT,BF,HU,AT,DE,AT,NL,BE,NL,RU,CZ,RU,GB,EE,DE,CY,DE,SI,DE,SI,DE,CY,DE,FI,NL,DK,RO,GB,US,SG,US,GB,GR,IT,ES,FO,UA,RU,PT,IL,CH,SK,BG,GB,BG,GB,BG,GB,BG,GB,BG,GB,US,GB,DE,GB,MT,AT,MD,LU,FR,LU,TR,SK,RS,NL,ES,RU,SA,GB,TR,GB,DE,GE,GB,UA,RU,GB,LT,DE,IL,GB,SE,DE,AE,GB,IL,AE,GB,JP,SG,HK,US,AU,US,BE,AU,IN,RU,CH,ES,PL,US,RU,IE,US,IE,US,IN,EG,US,TR,HR,RU,DE,CH,GM,DK,DE,AT,DE,NL,GB,RS,DE,SA,FR,DE,NO,FI,DE,ES,DE,SE,BE,CN,GB,ES,TR,DE,AT,DE,BE,RU,MT,TR,DE,CH,CZ,DE,RU,UA,RU,UA,RU,LU,IT,DE,ES,FI,IT,RU,KZ,BY,RU,FR,NO,CZ,GB,PL,NL,GB,AT,FI,TR,DE,TR,DE,IL,UA,BE,GB,TR,RS,DE,US,RS,ME,RS,GB,PL,US,RU,CZ,TR,BG,IT,US,FR,AT,FR,AT,FR,AT,FR,AT,FR,AT,FR,GB,AU,DK,IT,AU,IT,AU,SA,GB,QA,BG,LV,GR,IT,BE,SA,NO,CH,CZ,DE,GB,OM,NL,GB,NL,DE,SI,GE,DE,SI,DE,BG,NL,SE,ES,AM,RU,BG,IT,BG,IT,CH,BG,LU,BG,SE,FR,AT,FR,US,FR,IT,FR,FI,LU,SE,IE,DK,FR,ES,GB,DE,GB,JP,GB,CH,RU,BG,DE,SE,PL,RU,ES,RU,KZ,PL,SA,IL,RU,DE,BE,VA,IT,LI,IT,PL,RU,DE,QA,DE,IT,FR,GB,DE,GB,DE,ES,NL,DE,NL,IE,DE,BE,CZ,UA,ES,DE,FR,IR,UA,CZ,CH,ES,CH,ES,FR,UA,SE,IL,ES,TH,LT,IE,DE,SK,RU,IL,FR,ES,AU,NO,DK,NO,LB,RO,IT,CH,GB,NL,GB,DE,SE,NO,GB,FR,GB,FR,GB,FR,GB,ES,GB,DE,GB,IE,CH,IE,CH,GB,CH,FR,DE,UA,DE,RU,DE,CH,DE,BE,NL,FI,FR,NL,IT,IE,IT,FR,GB,NL,GB,DE,GB,ES,NL,SE,PL,FR,SI,GH,GB,FR,ES,GB,FI,DE,IR,ES,UA,ES,RU,FR,NL,UA,GB,ES,CZ,NL,UA,NL,UA,DE,UA,PL,DE,GB,BE,DE,UA,JP,CH,RO,NL,US,DE,JP,DE,JP,PL,AT,GB,DK,UG,DE,AT,DE,BE,ES,NO,GB,DE,AT,DE,SK,IT,UA,FI,RU,US,DE,UA,GB,ES,HK,DE,ZA,UA,DE,UA,CH,CZ,PL,IT,HR,SE,BG,RU,DE,HU,ES,NL,RU,SG,MY,NL,FR,NL,RU,HR,UA,DE,DK,GB,LV,RO,SA,SI,RU,CH,BE,CH,FI,RU,IT,FR,DE,AT,DE,FR,DE,IQ,BG,ES,GB,GH,GB,TZ,BW,ZW,SZ,NA,GH,ZA,ZM,AO,MW,CI,RW,MU,MZ,LS,HU,KZ,RU,DE,CZ,RU,UA,RU,PL,KG,IT,UZ,VE,EG,PG,KE,KZ,LI,PH,GB,ES,DE,DK,ES,DK,TR,CH,DK,BE,DK,BE,LB,BY,TR,FR,DE,DK,GB,DE,NG,SE,RU,BE,SA,GB,CH,DE,ES,TR,SI,DE,LB,SA,GB,US,NL,CH,CZ,US,HK,DE,US,ES,JP,GB,IT,DE,US,SE,GB,IT,GR,DE,IT,HU,FR,RS,TR,IT,KR,ES,BG,ES,IT,ES,AT,BG,JP,BE,US,DE,FR,DE,FR,IT,AZ,GB,NL,CH,DE,RS,EE,BY,SI,NO,NZ,RO,DE,GB,DE,FR,DE,CH,GB,IT,FR,LV,US,DE,GB,DE,ES,AT,US,DE,CH,RU,SI,EG,IT,GB,IT,RU,BG,GB,ES,CA,FR,SE,IT,US,CA,PT,NL,BE,DE,CH,LK,FR,SE,BE,GB,DE,HU,PL,RU,PS,FR,PL,ES,FR,CH,DE,US,NL,US,SY,RU,DE,UA,DE,HK,JP,EE,FR,GB,FR,SA,SE,DE,RU,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,US,AT,GB,RU,TR,CY,TR,DE,HU,SK,HU,SK,HU,RU,UA,CH,TR,PL,RU,CZ,RU,TR,IT,MK,DE,UA,GB,DE,CZ,GB,DE,GB,DE,GB,RU,NL,RU,NL,RU,ES,FR,US,UA,US,UA,DE,SE,IT,GB,IT,KG,DK,SE,DE,CZ,DE,CZ,DE,CZ,DE,CZ,DE,CZ,DE,NL,DE,CZ,DE,CZ,DE,GB,UA,DE,UA,BE,RU,AT,RU,DE,RU,AT,RU,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,FR,GB,PT,GB,RU,FR,DE,NL,DE,TR,US,NL,TR,BG,TR,ES,RU,US,TW,RU,GB,IT,CH,NL,GB,DE,IL,UZ,PL,RS,IL,IN,DE,ES,GB,NL,FR,GB,FR,SE,GB,ES,IT,DE,GB,DE,FR,GB,DE,NL,DE,IT,ES,CH,GB,DE,GB,DE,GB,DE,IT,ES,GB,DE,BE,ES,IT,GB,NL,UA,DE,FI,SE,RU,BG,IL,SA,KZ,US,KZ,US,KZ,US,KZ,US,LT,GB,ID,DE,CH,IL,LU,NL,GB,NL,CH,GB,BE,GB,BE,GB,BE,DE,BE,JO,RU,NL,RU,NL,RU,ES,RU,ES,RU,SI,SA,DE,GB,US,GB,US,GB,AT,GB,DE,AT,GB,NL,GB,FR,DE,AT,DE,GB,FR,GB,DE,GB,NL,GB,AT,DE,GB,UY,BZ,NL,CZ,US,GB,ES,GB,AU,JP,CA,SE,SA,RU,EE,RU,MK,CH,NL,IE,GB,IE,RU,IR,GI,GB,US,GB,IT,NL,DE,FR,GB,ES,RU,DE,LT,ES,DE,BG,PL,_,BE,DE,CA,DE,IT,DE,NL,IT,NL,DE,NL,ES,NL,DE,IT,NL,DE,RU,DE,NL,ES,IE,FR,NL,GB,DE,ES,GB,FR,MX,US,DE,US,PL,NZ,US,DE,AT,IT,GB,TR,DE,GB,DE,NL,NO,PL,IE,GB,IE,AT,TH,AT,IQ,GB,CH,DE,IS,GB,DE,PL,TR,NL,ES,FR,IE,RU,CN,DK,IT,GB,DE,SE,GB,PL,SE,IE,FR,FI,SK,SE,GB,ES,DK,IT,AE,HU,PL,FI,IE,GB,IT,HU,GB,BE,NL,CH,NL,GB,DE,IS,GB,FR,GB,IT,GB,US,GB,NL,GB,CZ,GB,NL,PL,GB,IT,PL,IT,BE,PL,ES,GB,SE,PL,NL,GB,BE,GB,NL,CH,DE,GB,DE,IT,GB,FR,GB,DE,GB,DK,ES,DE,FR,GB,CZ,GB,BE,GB,TR,GB,CA,GB,NL,TR,NL,GB,ZA,GB,SA,GB,IT,NL,LV,ES,IL,DE,ES,FI,RO,TR,DE,OM,FR,CH,IE,GB,DE,FI,IL,SE,DE,VE,SE,HR,SE,RU,GR,AT,NL,US,NL,TR,KZ,FR,TR,FR,GB,CZ,RU,MK,GB,NL,PL,GB,DE,GB,DE,GB,DE,ES,GB,DE,GB,IE,GB,IT,GB,BE,GB,AT,GB,ES,GB,BE,GB,BE,GB,DE,GB,CH,GB,IE,IT,GB,ES,AT,GB,CH,DE,GB,DE,CZ,DE,GB,DE,GB,DE,PL,GB,DE,HU,DE,SI,DE,GB,DE,GB,AT,DE,GB,DE,RO,BG,DE,GB,DE,IT,GB,RU,HU,NO,US,NL,GB,SE,GB,ES,NL,ES,NL,ES,RU,AT,BE,AT,GB,AT,GB,TR,GB,IT,NL,CG,LU,IN,LU,IN,LU,TZ,LU,GB,LU,ID,LU,DE,LU,KE,LU,PK,GB,LR,DE,TZ,LU,KE,DE,NG,LU,TJ,LU,GB,LU,GB,LU,CG,LU,US,LU,GB,BE,ES,AT,ES,DE,GB,NO,ES,IT,DE,GB,US,TR,RU,BY,RU,IT,ES,IT,ES,IT,UA,NL,DK,NL,US,IL,FR,PL,SE,PL,NL,FI,AT,GB,IT,ES,DE,AT,BE,AT,BE,AT,BE,AT,NL,GB,BG,GB,IE,GB,BG,GB,IE,GB,BG,GB,FR,GB,HU,GB,IE,GB,US,GB,FR,GB,RU,GB,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,DE,NL,IT,BE,NL,BE,LU,US,BE,LU,BE,PL,EE,DE,PS,CZ,TR,PL,ES,TW,NL,EE,PS,HK,US,RU,HK,US,CZ,US,ES,DE,RU,GB,RU,CZ,RU,NL,US,ES,US,GB,IN,NL,LK,NL,GB,NL,DE,KE,RU,NL,AT,SG,NL,DE,NL,KE,AT,IN,PH,DE,US,TR,GB,US,ZA,US,DE,MY,PE,US,GB,PS,CZ,BE,UA,US,SI,EE,RU,IN,US,NL,IN,BR,RU,US,RU,DE,RU,FR,GB,SK,AT,FR,GB,FR,NL,FR,NL,FR,BE,FR,BE,FR,BE,NL,FR,NL,FR,IL,RS,DE,NL,CH,PL,DE,NL,GR,NL,GB,FR,SE,BE,SE,IT,GB,NL,GB,NL,DE,NL,FR,NL,DE,NL,DE,GB,NL,DE,GB,FI,SE,FI,SE,CH,SA,IT,MA,SE,DE,GB,RU,DE,ES,GR,IT,CH,GB,FR,DE,ES,IT,DE,GB,DE,BE,GB,IE,IT,BE,DE,NL,BE,BG,BE,FR,GB,FR,DE,BE,ES,CH,IT,GB,BE,IT,ES,IT,ES,CH,IT,DE,GB,DE,GB,DE,NL,CH,IT,ES,IT,GB,DE,GB,DE,ES,BE,IT,DE,US,GB,DE,GB,FI,DE,FR,ES,GB,IT,ES,IT,NL,DE,GB,CH,DK,DE,US,DK,DE,PL,DE,FR,GB,DE,PL,IT,BE,DE,NL,GB,BE,DE,FR,DK,SG,DE,BE,DE,NL,IT,GB,DE,PL,ES,IT,GB,FR,PL,ES,IT,DE,GB,DE,GB,PL,IT,BE,IE,NL,GB,DK,SE,PL,FR,IT,BE,ES,GB,IT,ES,GB,DE,NL,GB,DE,BE,IT,PT,GB,HU,IT,BE,IE,GB,DE,NL,DE,CH,BE,GB,ES,FI,DE,ES,DE,FR,DE,ES,DE,ES,DE,ES,DE,ES,DE,GB,DE,ES,DE,GB,DE,FR,DE,GB,DE,GB,DE,GB,DE,PL,DE,ES,DE,ES,DE,ES,DE,ES,DE,ES,DE,FR,DE,FR,DE,ES,DE,FR,DE,GB,DE,GB,ES,IT,DE,GB,DE,GB,DE,ES,US,DE,US,DE,ES,DE,GB,ES,RU,SK,AT,RU,DE,ES,CH,BE,RU,BG,FR,IL,SI,AT,IT,GB,DK,IQ,DK,SE,JP,DE,DK,RS,SE,CH,GB,FI,GB,ES,CZ,ES,LT,ES,RS,DE,DK,IT,NL,DE,ES,NL,IT,US,IT,BE,GB,KG,NL,AT,GB,DK,CH,PL,IT,FI,SE,RU,GB,CH,GB,GR,NO,TR,CH,US,ES,GB,CH,ES,PL,RU,MD,RU,DK,PL,RU,HR,NL,EE,RU,US,RU,US,RU,GB,RU,SI,RU,US,CY,FR,UA,GB,FR,IT,RU,PL,CH,RU,SA,GB,KZ,UA,PL,RU,IE,RU,NL,RU,PL,PS,CY,IL,DE,ES,NL,FR,GB,PT,TR,DE,SE,IT,SE,DK,SE,IT,SE,IT,SE,IT,SE,GB,GP,MQ,GP,GF,MQ,GP,MQ,GP,MQ,GP,MQ,GP,MQ,GF,MQ,RE,MQ,GP,GF,BG,HU,GR,DE,GB,PL,JP,GB,CZ,NL,GB,NL,GB,NL,GB,NL,GB,NL,FR,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,FR,NL,FR,NL,CH,NL,FR,HR,NL,FR,NL,FR,NL,FR,CH,GB,NL,GB,DE,CH,DE,RU,DE,RU,SE,IT,LV,FR,LV,CH,LV,JP,LV,FR,LV,PT,DE,RU,PL,IT,RU,ES,FI,CZ,PT,FR,DE,NL,DE,GB,DE,GB,FR,GB,FR,DE,FR,GB,FR,DE,IT,SE,GB,FI,DK,DE,SE,DE,SE,DK,GB,IQ,AT,LI,AT,LI,AT,RU,NL,KW,NL,GB,NL,GB,NL,GB,SG,EE,FR,ES,GB,DE,HU,FR,GB,IE,NL,GB,DE,SG,DE,BE,GB,FR,GB,FR,DE,NL,GB,NL,GB,US,BE,SE,CH,FR,GB,FR,DE,GB,HK,SE,GB,CH,IT,PT,GB,BE,PL,BE,GB,BE,GB,BE,ES,HK,GB,NL,GB,NL,GB,FR,GB,IT,BE,CH,GB,FR,DE,GB,FR,DE,FR,GB,FR,ES,DE,FR,GB,DE,FR,ES,IT,ES,FR,DE,FR,ES,FR,DE,AT,FR,GB,FR,DE,FR,DE,FR,DE,FR,AE,TR,FR,IT,NL,BE,FR,NL,IE,HU,NL,RO,NL,CZ,AT,GB,NL,SE,NO,PL,DE,NL,AT,NL,GB,NL,GB,NL,AT,NL,BE,NL,AT,GB,BE,SE,NL,NO,GB,DE,GB,NL,DE,NL,GB,NL,GB,NL,GB,NL,GB,DE,NL,GB,NL,GB,FR,ET,CH,FR,IL,PT,RU,HR,PL,HR,PL,MN,KG,SI,PL,RU,ES,DE,IT,DE,CH,DE,NO,HU,FI,NL,GB,NL,DE,NL,AT,GB,NL,GB,DE,GB,NL,GB,NL,GB,NL,GB,FR,NL,GB,FR,CH,GB,NL,GB,NL,MA,FR,DE,GB,BE,GB,FR,NL,FR,NL,GB,NL,FR,NL,NO,NL,DK,NL,GB,NL,IT,NL,NO,NL,AT,NL,GB,NL,GB,BE,NL,SE,NL,PL,NL,HU,BE,NL,BE,ZA,DE,NL,PT,SE,DE,US,PL,ES,DE,NL,TR,NL,PL,GB,RU,IE,RU,SE,FI,SE,DK,SE,DK,SE,RU,GB,SK,IT,DE,GB,DK,NL,RU,GB,IT,GB,IT,GB,DE,GB,DE,IE,GB,AT,GB,AT,GB,BE,GB,NL,GB,DE,GB,BE,GB,IT,GB,ES,GB,DE,GB,DE,GB,DE,GB,IT,GB,DE,GB,DE,GB,IE,GB,DE,BE,GB,IT,DE,GB,DE,GB,DE,GB,ES,GB,DE,GB,ES,GB,IT,GB,ES,GB,AT,GB,DE,GB,AT,GB,DE,GB,ES,GB,IT,AT,GB,IE,GB,IT,GB,RU,SE,NO,SE,NO,SE,AT,FR,NL,FR,NL,FR,PT,FR,BA,BG,IT,US,IT,PL,NL,ES,AT,IE,DE,ES,IT,ES,LV,SE,PE,SE,LV,SE,CA,SE,LV,SE,LV,EE,SE,LV,LT,SE,EE,SE,LV,EE,LT,SE,LT,SE,LV,EE,SE,LV,PE,SE,LT,LV,LT,SE,LV,LT,SE,EE,LT,LV,GB,LV,GB,SE,EE,SE,EE,SE,LV,SE,LT,SE,HR,EE,LT,SE,LT,SE,GB,CA,US,GB,CA,RU,PL,RU,SE,NO,PL,NL,PL,IT,RU,UA,PL,LV,PL,FR,UA,PL,GR,SE,NL,PL,SK,RU,CA,NL,UA,GE,RU,PL,CZ,RU,DE,RU,GB,RU,PL,FR,IR,AE,GB,NL,RU,PL,RU,KG,RU,_,RU,US,DE,RU,UA,RU,KZ,RU,US,IS,CR,SK,NO,NL,UA,DE,RU,KZ,GB,US,NL,NG,PL,TJ,UA,US,UA,US,DE,CZ,DE,IN,JP,DE,CZ,GB,IT,US,IT,CY,GB,UA,RO,AM,CY,IR,DE,RU,GB,RU,US,KZ,UA,IR,RU,LV,UA,RU,UZ,RU,UZ,RU,FR,UA,SE,BE,FR,BE,NL,BE,FR,BE,NL,BE,AT,BE,IE,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,NL,FR,BE,IE,BE,GB,NL,BE,SE,NL,FR,BE,FR,BE,FR,BE,NL,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,FR,BE,GB,NL,RU,FR,TR,DE,NO,RU,GB,DK,RU,GB,RU,CZ,ES,NL,AT,UA,GB,AT,GB,DE,GB,AT,GB,DE,GB,NL,GB,AT,GE,GB,DE,GB,BG,IE,BG,DK,ES,CH,SE,BG,NO,BG,QA,GB,NL,SE,EE,SE,EE,LT,EE,SE,FI,RU,GE,EG,GB,SE,GB,DE,DK,DE,DK,AE,RU,SE,BE,NL,KW,ME,NL,IE,FR,CH,FR,CY,DE,GB,UA,JE,GB,JE,CH,DE,AE,UA,DE,NL,GR,RU,GR,RU,GB,CZ,HU,TR,SI,FR,GE,ES,NL,RU,MT,RU,CZ,DK,DE,NL,PT,IQ,GB,NL,KZ,NL,ES,IT,SE,PL,RU,NL,DE,PL,RU,MK,DE,LU,NL,SE,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,DE,HK,CI,IT,SA,PL,IM,IT,IL,GB,IL,RS,MC,BE,CH,MC,BE,CH,US,BE,US,HU,FR,IE,CH,BE,CH,BE,CH,DE,RU,FR,DE,RU,GB,FI,NO,RU,PL,RU,PT,ES,JO,FR,NO,US,IN,US,ES,GB,ES,FR,DE,FI,US,GR,US,NL,RU,GB,UA,DE,RU,UA,NL,KZ,CH,GB,RU,JP,GE,DE,CH,RU,AT,IT,ES,BR,ES,PE,ES,DZ,ES,DK,RU,GR,FI,CY,FR,CY,RU,PT,ES,SE,FI,RU,KZ,ES,RU,SE,RU,NO,AT,TR,RU,DK,TR,NL,TR,US,DE,US,TR,AZ,TR,CH,RU,SI,ZA,LU,GB,ES,SI,AT,GB,FI,DE,TR,DE,ES,IT,TR,CH,IT,DE,IT,AT,GB,IT,GB,IT,GR,US,SG,IT,GR,IT,FR,GR,IT,FR,IT,SG,IT,FR,NL,RU,DE,US,DE,US,DE,IT,US,BG,KG,NO,FI,AT,DE,AT,CH,PL,DE,GB,US,GB,US,GB,CA,US,GB,CA,GB,CA,GB,CA,PT,DE,RU,_,HR,ES,AT,RU,GB,KZ,KE,UZ,KZ,UZ,KZ,UZ,GB,TR,DE,RU,ES,NL,RU,HR,DE,ME,AL,ME,BG,CY,IT,ES,AT,DK,RU,_,SE,TN,CV,ZA,AT,RU,IL,CZ,ES,NO,FR,SK,FR,GB,US,GB,EG,DE,RU,NL,IT,SM,IT,GB,NL,DE,GB,NO,AT,DE,SE,TR,AZ,EG,SN,RO,RU,UA,NL,UA,CZ,DE,TR,BE,DE,BE,SE,DE,BE,GB,DE,BE,SE,BE,DE,AE,SE,GB,FI,SE,GB,SE,PL,RU,CZ,NL,IT,UA,PL,RU,FR,US,KZ,FR,US,HK,RO,BR,MX,BR,JP,US,BR,PE,TR,US,JP,IE,MX,KZ,LU,GB,RU,CH,DE,KZ,FI,SE,FI,HU,AT,RO,GE,SI,RU,SE,IT,BE,DE,CH,EG,PL,NO,TR,FR,DE,_,NL,IT,TR,LT,RU,CH,RU,GB,RU,GB,RU,GB,RU,GB,RU,GB,DE,RU,US,RU,GB,RU,IE,US,FR,CH,SE,RU,UA,DE,CH,DE,GB,UA,SK,NL,NO,NL,SI,FI,GB,DE,GB,NL,GB,PL,TR,NO,FR,NO,CH,FR,AT,GB,DE,NL,ES,NO,HU,NL,RO,NL,RS,SE,FR,GB,AT,DE,AT,IT,NO,AT,BR,AT,DE,AT,ES,DE,LT,DE,ES,SE,RO,GB,SA,DE,GB,DE,GB,MT,RU,US,GB,LU,RU,NL,RU,KZ,UA,PE,GB,RU,US,RU,GB,SA,NO,SE,NO,FR,DE,BG,RU,JE,NO,IS,DE,RU,CH,FR,IT,LU,FR,EE,RU,DE,RU,CZ,DE,IE,GB,IE,FI,BG,UA,LU,DE,LU,SO,LU,CY,IL,CY,MT,CY,FR,NL,GB,ES,BE,ES,RU,GB,NL,GB,DE,EG,GB,SE,US,GB,CA,GB,NZ,DE,US,DE,GB,DE,GB,US,GB,RS,RO,GB,DE,JP,NL,DE,US,ES,RU,NL,IT,NL,BE,IT,GB,ES,RU,ES,AZ,DE,ZA,PL,NO,SI,DE,AU,US,PE,US,DE,CH,FR,GT,NL,MX,AT,RO,FI,CH,SE,DK,UA,DE,DK,FR,US,IT,GB,US,GB,US,GB,AT,IT,CZ,LV,DE,GB,DE,GM,DE,LB,GB,IR,US,AE,IR,IS,ES,FR,RU,RO,GB,BE,LU,RU,BE,DZ,BE,ES,GB,DE,RU,DE,HU,DE,QA,US,GB,FR,RU,US,RU,UA,DE,IT,SY,SE,NO,GB,DE,PL,FR,DK,ES,DE,DZ,CA,US,SG,US,NL,US,IN,US,ES,CA,UA,EE,CZ,BE,SE,BE,SE,BE,SE,DE,SE,BE,SE,LV,PL,CH,RU,FR,RU,BE,ES,IS,SK,SA,HU,EG,DE,FR,IT,DE,RU,ES,AZ,SL,TN,JO,CR,HR,CY,EG,GR,GT,HU,IS,IM,OM,HU,MK,RS,KE,RO,MX,CN,AT,DE,RU,DE,NL,DE,RU,DE,NL,DE,RU,NL,DE,RU,ES,RU,NL,BG,RU,LT,RU,NL,BG,NL,BG,DE,RU,IT,DE,RU,PL,EE,NL,DK,NL,CZ,NL,RU,KZ,RU,SA,NO,BY,NL,BY,SE,FI,DE,NL,GB,US,NL,GB,ES,GB,NO,GB,US,GB,US,GB,SG,GB,US,GB,US,GB,DE,AT,GB,SE,HR,DE,HR,FR,PL,UA,TR,JO,UA,FI,SE,FI,IT,GB,DE,RU,HK,NL,GB,NL,US,IQ,NL,US,NL,NO,SE,FR,MY,MT,GG,CA,EE,IE,FR,MT,GI,FR,MT,MY,PT,NL,UA,EE,NO,CH,US,DE,SE,CZ,SE,GP,GF,GP,MQ,GP,FR,GP,FR,GP,FR,GP,GF,MQ,GP,FR,GP,FR,MQ,NL,CH,NL,PL,KW,SE,CH,BE,RU,CH,SG,US,ES,NL,GB,US,NL,PL,HR,DE,LT,FR,IS,IE,GB,PT,RU,DE,CZ,HR,BG,IE,CZ,PL,FI,DE,ES,LU,ES,RU,ZM,ZA,BW,ZA,CH,BE,NL,GB,NL,BE,NL,GB,NL,ES,IT,NL,IT,NL,GB,NL,TR,ES,CZ,IR,DE,IR,ES,PL,CZ,NL,RU,NL,RS,BA,CH,DE,SE,DE,NL,HU,LT,NL,DE,AT,FR,AT,GB,FR,GB,AT,DE,GB,AT,GB,AT,GB,AT,GB,DE,FR,DE,GB,AT,GB,AT,GB,AT,GB,AT,GB,US,GB,AT,DE,GB,DE,US,DE,AT,GB,AT,DE,GB,ES,GB,AT,DE,US,DE,DK,DE,IQ,DE,NL,GB,AT,DE,AT,GB,DE,GB,AT,FR,GB,AT,GB,AT,GB,AT,GB,AT,IT,RS,IT,FR,SE,NL,GB,AT,GB,IE,GB,CN,GB,IE,GB,NL,GB,NL,GB,NL,GB,NL,GB,IE,GB,IE,GB,IE,GB,PL,GE,UA,DE,US,DE,US,DE,RO,IT,BE,ES,IT,DE,ES,FR,DE,BE,FR,US,FR,DE,SE,CH,ES,NL,OM,SG,OM,CH,HR,GB,HR,IE,DE,NL,DE,NO,FR,IT,DE,GB,DE,IT,AX,LB,SE,IT,PT,FR,GB,DE,GB,NL,GB,FR,GB,FR,GB,UZ,NL,GB,DE,NL,AL,NL,CY,IR,AT,DE,GB,DE,GB,AT,DE,AT,RU,RS,RU,NL,DE,IT,NL,IT,NL,PT,NL,BE,NL,DE,NL,AT,NL,IT,DE,CH,FI,GB,NL,DE,US,DE,GB,DE,US,GB,DE,SG,SE,US,DE,US,DE,IT,SS,IT,ZW,IT,IE,IT,FR,IL,FI,IT,SE,NL,US,AE,US,IT,GB,RU,CZ,SA,TR,CZ,KZ,BE,NL,BE,DE,SE,FI,SE,GB,IT,EG,IT,IS,CH,BE,DE,BE,BG,NL,FI,SE,FR,SK,AT,SK,IT,DE,CZ,PL,GB,FI,RU,IT,GB,CN,MX,UA,FR,GE,SA,ES,IT,DE,TR,SY,DE,IT,MT,DE,IT,NL,IT,NL,PL,FR,DE,GB,NL,GB,HK,BE,GB,JP,HK,GB,EE,NL,BE,RU,US,ES,IS,DE,CZ,RU,DE,CH,GB,CH,NL,BG,FR,HU,PL,RU,FR,BE,AT,NO,GB,FR,IT,GB,IE,IT,DE,BR,FR,IT,BG,GB,DE,FR,RU,ES,GB,UA,ES,MD,RU,IT,NL,RU,TR,RU,UA,RU,LT,LV,LT,CZ,ES,PL,NL,BE,DE,FR,AT,AU,DE,JP,DE,US,CH,AE,DE,US,ZA,AT,BR,IL,DE,IN,SE,ES,DE,SG,AT,BE,UA,FR,RU,PT,GB,IE,GB,AT,GB,ES,PT,SI,SA,CH,UZ,IT,NO,DE,SG,HK,GB,DE,UA,ES,BG,PL,TR,DE,UA,DK,ES,FR,DE,FR,DE,NL,BG,AU,NL,DE,US,FR,JP,DE,TR,MX,NL,IN,IR,CH,RU,DE,RU,KZ,FR,RU,KG,KZ,DK,TR,RU,CH,KZ,RU,NL,ES,KZ,UZ,FR,RU,KZ,ES,RU,UA,US,BG,JP,DE,RU,SA,KZ,UZ,KZ,ES,RU,CY,NL,RU,NL,IT,RO,IE,IR,NL,RU,GB,NO,IT,RU,GB,CZ,AT,ES,SA,GB,NL,GB,NL,GB,NL,ES,BE,NL,ES,NL,GB,NL,GB,NO,DK,GB,CH,DE,PL,TR,DE,TR,AZ,TR,SE,NL,IE,NO,NL,GB,NL,GR,NL,GB,NL,DE,SE,DE,GB,DE,RS,MK,RS,AT,DE,BG,PL,DE,RU,IT,CH,SE,ES,PT,CH,IT,CH,GB,CH,GB,SE,FR,SE,FR,ES,CH,FR,CH,ES,IE,DK,ES,SE,FR,PL,ES,FR,DE,PL,ES,FR,RU,EE,GB,FR,SE,RU,TR,RU,FI,IT,FR,DE,PS,NL,GB,NL,GB,NL,GB,NL,GB,NL,NO,NL,GB,NL,GB,NL,GB,NL,GB,NL,GB,NL,DE,NL,CH,GB,RS,SE,RO,FR,YE,FR,GB,BE,LU,BE,DE,GB,BE,LU,BE,_,NL,RU,BE,CA,BE,DK,BE,CA,BE,SE,DE,RU,SA,SE,ES,SE,US,SE,AE,SE,TR,GB,GR,NL,GB,FR,DE,ES,GB,FR,DE,NL,ES,GB,FR,DE,ES,GB,FR,DE,ES,GB,FR,NL,BE,GB,BE,DE,BE,TR,IT,GB,SE,ES,FR,ES,PL,RO,NL,IT,GB,PL,IT,GB,SI,FI,TR,SG,CZ,SK,GB,NL,DE,CH,GB,CZ,GB,CZ,GB,NL,GB,FR,DE,GB,DE,ES,NL,GB,NL,GB,BE,FR,RU,DE,RU,DE,LT,GB,LT,GB,HR,SI,HR,SI,HR,SI,HR,SI,HR,SI,HR,RS,HR,SI,HR,GB,HU,IT,DE,ES,TR,GB,DE,US,ZA,GB,IE,SE,PL,FR,DE,US,IT,IE,DE,PL,IE,DE,IE,DE,GB,FR,DE,GB,DE,GB,IE,DE,IT,DE,US,DE,GB,SE,DE,US,IT,NG,FI,IL,CA,FR,CA,IL,AT,CA,HK,CA,AT,AU,CA,AT,CA,IT,NL,IT,AT,NL,IT,GB,US,HK,GB,DE,IT,GB,US,DE,GB,US,ZA,US,ZA,US,ZA,US,FR,US,ZA,US,FR,US,ZA,US,ZA,US,ZA,US,SY,US,DE,US,CA,IN,US,CA,US,BR,US,HT,US,CA,US,JP,US,JP,ZA,CA,US,JP,US,CA,US,IN,US,JP,US,BR,US,GB,US,SG,CA,BR,LY,HK,CA,US,CA,US,CO,PH,US,AU,LY,CA,BR,HK,CA,US,CA,US,MY,US,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,CA,US,CA,US,TR,US,CA,US,CA,US,SG,US,_,US,CA,US,JM,US,CA,US,IN,HK,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,US,CA,US,CA,US,AU,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,DE,US,CA,US,DE,US,CH,_,US,CA,US,CA,US,CA,US,AR,US,DE,NL,US,CA,US,CA,US,CA,US,CA,US,PR,US,CA,US,DE,US,TR,DE,US,IT,US,CA,US,CA,US,CA,US,CA,US,JP,US,CA,US,CA,US,DE,US,AU,US,GB,US,GB,US,CA,US,CA,US,CA,US,_,US,GB,US,GB,JP,US,CA,US,PR,US,CA,US,CA,US,CA,US,CA,_,CA,US,CA,US,CA,US,CA,US,CA,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,FR,NL,GB,US,JP,US,JP,US,JP,US,JP,US,JP,US,JP,US,CA,US,CA,US,AU,GB,US,CA,US,CA,AG,US,CA,IN,US,CA,US,NL,US,NL,US,CA,DE,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IN,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,CA,US,CA,US,CA,US,CA,US,CA,US,CA,DE,US,ID,US,CA,KW,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,IT,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,KE,IT,US,AU,US,GB,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,GB,US,GB,NL,US,CA,US,CO,US,CO,CL,US,VE,US,CO,US,VE,US,VE,CO,AR,US,CL,US,CO,US,CO,VE,US,CA,US,CA,US,GB,US,JP,CL,US,CA,US,CA,US,CA,TH,US,CA,US,IN,US,CA,US,SG,US,CA,US,CA,US,CA,US,DE,US,CA,US,CA,US,EE,US,HK,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,IT,US,IN,US,CA,US,BR,US,CA,US,CA,US,CA,AU,US,CA,AU,US,AU,US,_,US,GB,US,DE,US,CA,US,UG,US,CA,US,CA,US,CA,US,ES,US,DE,US,ZA,US,DE,US,DE,US,SG,US,TW,CA,US,NL,US,HK,US,DE,US,BE,US,VC,BB,GD,BB,GD,VC,BB,GD,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,_,US,AU,US,CA,US,CA,HK,US,DE,US,GB,US,GB,US,GB,US,CA,US,CA,US,CA,US,CA,US,AT,CA,US,DE,US,_,US,GB,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,MY,US,JP,US,DO,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,KE,AL,GB,BH,CY,QA,NL,ES,IT,AZ,IS,IL,AT,DE,KZ,PS,NL,FR,ES,GB,NL,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,LU,US,NL,US,BE,US,CH,CZ,AT,DE,NL,US,DE,US,GB,US,GB,US,CA,US,BS,US,GB,US,IN,FR,US,GB,US,GB,BR,GB,US,GB,US,FR,US,NL,US,ES,US,CA,US,CA,US,CA,US,SN,US,NG,US,HT,US,KY,US,CA,US,JP,US,FR,US,CA,US,CA,US,DE,US,DE,US,CA,US,SG,US,TW,PT,US,PL,US,CA,US,ES,US,GW,US,SG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,AU,US,GB,US,HK,GB,US,CA,US,GB,US,CA,GB,CA,US,CW,US,JP,US,CA,US,JP,NZ,US,BR,CL,US,IN,US,IT,US,CA,US,MX,US,AE,US,AU,US,CL,US,SE,US,CA,GB,CA,US,CA,US,AU,US,SE,US,FR,US,IL,US,AU,US,FR,US,NL,GB,US,GB,US,FR,US,_,US,CA,US,DM,US,CA,US,CA,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,AU,US,CA,US,CA,US,CA,US,DE,US,CA,US,CA,US,CA,US,CA,US,AU,US,CA,US,NL,US,NL,US,CA,US,CA,US,CA,US,CA,JP,US,CA,US,CA,US,GB,ES,IT,NL,DE,FR,IT,ES,NL,GB,DE,FR,CH,IE,GB,US,DE,US,FR,US,PL,CA,US,TR,US,HR,NL,US,DE,US,CZ,MX,US,DE,NL,CZ,DE,GB,US,FR,US,CA,US,GB,US,CA,US,CA,US,CA,US,CA,US,_,CA,US,HK,US,SG,US,PR,US,PR,US,PR,US,PR,US,JP,US,CA,US,CA,DE,US,CA,US,CA,US,CA,US,VG,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,CH,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,GB,US,CA,US,MV,US,SV,US,SV,US,PY,SV,US,NL,US,PA,US,IN,US,BG,US,CA,US,SG,US,SG,US,SG,US,SG,US,SG,US,SG,JP,US,HK,SG,US,CA,US,CA,US,CA,US,CA,IN,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,CA,US,IN,US,CA,US,CA,US,CA,US,CA,US,EC,CR,MX,US,CO,US,AR,BR,AR,BR,MX,PE,US,CA,US,CA,US,CA,US,CA,US,SG,AU,JP,SG,US,NL,US,CA,US,CA,US,CA,US,CA,US,PL,US,BR,US,CA,US,GB,AT,GB,SE,US,CA,US,CA,US,CA,US,KN,CA,US,CA,US,CA,_,US,_,US,_,US,CA,US,GB,US,CA,US,CA,US,HK,US,CA,US,AU,US,GB,US,FR,US,CA,US,CA,US,FR,IE,US,GB,US,GB,US,GB,US,CA,US,CA,US,SG,US,SG,US,CA,US,CA,US,HK,SG,TW,JP,KR,US,DE,FR,US,ES,DE,IT,US,CA,US,GB,US,NG,US,AI,US,GA,US,IT,IN,IT,IN,US,CA,US,CA,US,GP,US,GP,US,GT,US,_,US,CA,US,CA,US,_,US,_,US,CA,US,CA,US,CA,US,_,US,ZA,US,_,MX,BR,US,_,US,_,US,CA,US,JP,US,CA,US,GB,US,GB,US,GB,US,CA,US,CA,US,CA,US,CL,US,CA,CY,US,CA,US,GB,US,PE,US,AR,US,GB,US,BR,US,GB,US,CA,US,MX,US,TR,US,JP,US,TR,US,JP,TR,US,JP,TR,MX,US,JP,US,CA,JP,US,TR,US,TR,MX,TR,US,TR,US,JP,US,TR,CA,US,CA,US,CA,TR,US,TR,US,JP,US,DE,US,JP,US,NL,US,BR,JP,US,CA,PH,US,CA,US,CA,US,PH,US,AE,PH,US,CH,CN,BA,JP,US,CA,US,DE,ES,DE,ES,IT,US,CA,US,CA,US,CA,US,CA,US,CA,GB,US,BM,CA,US,TM,US,HK,NZ,US,PH,HK,US,NI,US,NC,US,CA,US,CA,US,MX,US,MX,US,MX,US,MX,US,CA,US,CA,US,CH,US,IT,GB,IL,US,CA,CH,US,CH,NL,US,CA,US,JP,US,DE,GB,TJ,DE,SA,RU,NL,ES,NL,FR,IE,NL,PL,MX,TM,DE,GB,TR,RU,NO,PL,CH,RU,GB,UA,BE,UA,GB,BA,ES,DE,IT,RU,DE,IS,RU,PL,GB,SE,BG,LT,US,LT,ZA,LT,DE,DK,RU,DE,ES,SE,GB,AF,GB,LB,GB,RO,US,GB,SG,US,SG,GB,BG,IT,IR,CH,DE,KZ,IT,ES,PL,DE,GE,SE,TJ,DE,CH,CZ,GB,IE,GB,IE,GB,IE,ES,RU,SK,RU,UZ,RU,MD,IT,DK,IT,UA,NL,BG,UA,PL,NL,UA,NL,UA,SA,RU,NO,HU,FR,DE,ES,HU,SA,AT,HU,CA,HU,ES,GB,DE,AT,DE,RU,SE,NO,RU,ES,RU,CH,NG,CM,NG,AZ,DE,GB,DE,GB,RU,HR,AT,RU,AT,RU,ES,DE,ES,RU,GB,FR,MT,GB,ZW,SO,LS,ZW,GB,RU,DE,US,KZ,RU,IT,BE,SE,FR,RU,NL,GB,MK,DK,AT,RS,ES,DE,CZ,SE,GB,CY,ES,NO,DE,PL,GB,SE,LT,RS,RU,NL,TR,RU,DE,NO,BH,IT,GB,ES,DE,IN,US,RU,NL,DE,FR,NL,GB,TR,FR,AZ,BE,GB,_,IT,LV,IT,NL,IT,RU,ES,DE,NO,CH,GB,UA,FR,ES,BG,RO,DE,NL,RO,TR,RO,NL,RO,DE,RO,NL,AT,FR,GR,RU,GG,IT,DE,FR,MD,BE,GB,IT,GB,US,GB,DE,FR,ES,BR,US,RU,SE,DE,HU,RU,UA,CH,SY,EG,US,GB,IT,IR,AL,NL,TR,PS,HU,BY,LV,BY,US,GB,SG,US,IN,RU,KE,SE,US,SE,US,SE,AL,LV,BY,LV,BE,NL,RU,SE,NL,GB,NL,NO,BE,SE,GB,ES,IL,CH,GB,RU,MT,DE,IT,NL,RU,JO,DE,RU,DK,BY,RU,NL,RU,IM,RU,BA,ES,GB,SK,DE,RS,DE,LV,FR,FI,RU,BA,IR,UA,RU,DE,AL,GB,US,GB,US,GB,AZ,SE,IR,DE,RU,UA,RU,PL,RU,PL,FI,AT,DE,RU,DE,FR,UA,RU,SE,RU,CH,RS,IT,NL,SA,FR,MD,IT,ES,PL,ES,PE,VE,FR,RS,TR,LT,FR,BG,CY,CZ,IR,IT,DE,US,DE,GB,CY,RU,CY,GB,CY,IT,CH,IT,RU,UA,SE,DK,SE,DE,HU,NL,GB,IM,GB,CA,SE,LU,SE,LU,LV,IT,RU,CZ,DE,IT,US,PL,RU,IE,PL,NL,IT,RO,NL,TR,UA,RU,PL,PT,PL,DK,US,DK,IS,SE,RU,BE,RU,BE,RU,BE,DE,BE,PL,SE,BE,CZ,KG,DE,RU,IT,RU,ES,UZ,TZ,AT,IT,RU,IT,GB,ZA,AX,FI,AX,FI,AX,FI,AX,JO,IT,PL,BE,DK,DE,CZ,NL,US,CH,BE,CH,GB,CH,GB,NL,MT,GB,PL,UZ,FI,UA,BG,DE,RU,GB,LU,GB,DE,SK,CZ,LU,DE,LU,DE,NO,IT,GB,SE,CZ,DE,TR,GB,DE,EG,IT,IR,DE,CZ,IT,GB,IT,ES,FR,DE,GB,IT,ES,DE,IT,GB,DE,ES,DK,ES,GB,DE,DK,ES,AT,ES,SE,DE,DK,SI,NL,IT,DE,NL,DK,BE,NL,CZ,AZ,FI,FR,DE,AT,DE,ML,GB,IT,GB,AT,RU,SE,DE,RU,FR,DE,FI,IT,TR,GB,BE,RU,DE,IL,GB,IL,US,IL,US,IL,BE,US,IL,NL,IL,GI,IT,RU,HU,IE,DE,IE,GB,SE,NO,PL,DK,EE,FR,NL,DE,GB,TR,RS,RU,NO,UA,BE,NL,BE,RU,DE,RU,UA,FR,DE,RU,CZ,SK,IR,PS,RU,SK,DE,GB,US,FR,ES,IT,NO,SE,DE,RU,CH,FR,ES,RU,PL,NL,DE,GB,NL,GB,NL,SE,NL,GB,HR,NO,GB,DE,AT,TR,CH,GB,FR,US,FR,US,FR,US,FR,US,GB,FI,DE,CZ,LV,GB,LV,GB,RU,SE,DE,KW,RU,DE,ES,RU,SE,PL,PT,FR,RU,DE,IT,DE,FR,LU,FR,DE,NL,IL,NL,IE,AT,BE,DK,ES,DK,ES,EE,BA,IT,CH,DE,FR,CA,FR,CA,FR,CA,FR,RU,FI,RU,MT,PL,ES,FR,DE,RU,CH,RU,CY,SE,IT,SE,SI,IT,GB,DE,RU,GB,DE,ES,DE,BE,GB,SE,SK,DE,PL,DE,RU,GB,UA,SE,RU,AL,DE,RO,PL,RU,IT,PL,DE,AT,GB,NL,SE,NL,TR,RU,IE,PL,SE,FR,RU,DK,RU,DE,DK,ZW,LS,ZW,SO,ZW,GB,ZW,RU,IE,CH,NL,PL,SK,SE,BG,FR,AT,BA,CZ,ES,AM,NL,RU,HK,DE,HK,DE,HK,DE,KZ,SE,DE,PL,ES,FR,ES,FR,ES,PT,ES,AT,RU,UA,IT,BE,ES,GB,US,GB,NO,RU,GA,IT,RU,DE,RU,DE,RU,IR,NL,CZ,GB,FI,UA,FR,DE,IE,SE,PS,_,GB,ZA,GB,US,SG,GB,AU,TR,CH,DE,BE,GB,BE,GB,BE,GB,DE,RU,FI,RU,FI,SA,EE,NL,RU,BG,RU,BG,GB,HU,PL,RS,PL,GB,DE,GB,DE,CH,DE,RU,US,SG,US,AU,US,DE,US,DE,PL,NL,RU,GE,RU,GE,RU,FR,DE,GB,DE,ES,DE,GB,DE,DK,DE,ES,DK,DE,ES,CH,GB,BE,FR,IT,BE,FR,GB,IT,ES,BE,GB,NL,IT,FR,GB,BE,IT,NL,DE,BE,ES,IT,DE,IT,DE,BE,DE,ES,DE,CH,DE,CH,DE,BE,DE,BE,NO,BE,RU,FR,GB,IT,NL,HU,IE,CZ,CH,BE,FI,UA,FR,FI,AM,IT,AM,DE,JP,HU,DE,HU,BE,CG,BE,TZ,GA,BE,CG,BE,MW,BE,GB,AT,RU,PL,GB,DE,FR,IT,PL,ES,RU,US,NZ,PL,AM,NZ,ES,US,CA,IR,GB,RU,ES,PL,IR,US,GB,DE,SE,NL,CH,ES,RU,GB,IE,GB,IE,GB,IE,RU,US,FR,DE,RU,DE,IT,SE,DE,RU,LV,IE,DE,FR,DE,FR,RU,NL,RO,NL,CZ,ES,HU,RU,AT,NO,PL,DE,RU,FI,AT,TR,DK,NG,LT,BE,UA,RU,DE,RU,PL,US,FR,US,FR,US,FR,US,FR,CH,RU,LU,CZ,NL,RU,IT,FR,DE,FR,DE,FR,DE,FR,DE,NO,RU,SK,AT,ES,GB,FR,GB,NL,DE,US,GB,DE,CH,GB,IT,NL,DE,NL,RU,CH,SE,FR,IT,NL,RU,FI,DE,PL,RU,HK,NL,SK,GB,LV,DE,NL,NZ,TR,US,BE,GB,NL,KZ,GB,ES,FR,NL,CH,SE,FR,DE,NL,RS,MK,NL,ES,FR,PT,ES,TR,IL,IT,GB,SG,HK,GB,BE,GB,HU,AE,DE,GB,IT,US,CZ,CA,SG,BG,CH,AU,US,FR,US,PL,GB,BE,JP,CA,DE,NL,DE,US,ES,IT,CZ,BG,IE,IT,AR,GB,JP,GB,US,EG,NL,ES,NL,GB,NL,GB,NL,GB,NL,GB,US,DE,SG,GB,US,GB,US,JP,IN,GB,SG,GB,US,SE,FI,IT,SE,GB,KR,GB,JP,US,JO,SK,DE,HU,GB,HU,NO,GB,RU,NL,RU,IR,US,FR,DE,GB,RU,US,AM,PL,NO,MT,RU,BE,DK,GB,BG,DE,GB,RU,BG,ES,SK,LV,SE,US,ES,US,IQ,NO,SE,CA,SA,TH,ES,UA,DE,HU,BR,TR,RS,SG,IN,PL,PT,AR,AT,BE,BG,DE,LU,DE,AT,AR,GB,DE,SE,RU,CH,GB,EE,GB,NL,GB,DE,CH,IE,GB,IE,GB,IE,GB,IR,IT,IR,FR,UA,PS,SE,RU,LT,RU,LT,DE,GB,DE,GI,IE,GI,IE,IT,UA,BE,UA,PL,UA,US,HK,US,KR,US,FR,CH,GE,GB,CH,NL,GB,RU,ES,NL,DE,IT,DE,NL,ES,US,RO,NO,NL,RU,DE,ES,SE,CH,ES,RU,NL,FI,SE,FI,SE,FI,NL,IT,GB,BE,NO,NL,ES,DE,ES,DE,ES,AT,RU,NL,AT,PL,RU,SE,RU,LB,NL,GB,HU,DE,SE,NL,RU,ES,CH,FR,RU,GB,SE,RU,DE,GB,US,GB,CH,RU,DE,IS,SE,DE,RU,PL,KZ,PL,RU,DE,FI,PL,GB,NL,GB,RO,BE,RO,JP,IT,RO,GB,ES,GB,ES,GB,DK,GB,US,EE,DE,FR,DE,FR,ES,FR,DE,ES,DE,GB,DE,FR,DE,FR,GB,DE,ES,DE,ES,DE,ES,DE,GB,DE,ES,FR,DE,ES,GB,ES,DE,FR,DE,ES,DE,ES,DE,FR,ES,DE,ES,DE,ES,DE,ES,DE,GB,DE,US,DE,ES,GB,ES,DE,ES,DE,ES,DE,ES,GB,DE,ES,DE,ES,DE,ES,DE,IT,GB,ES,GB,ES,PL,ES,PL,DE,ES,FR,ES,GB,DE,ES,PL,ES,DE,ES,GB,IR,GB,US,GB,GI,GB,US,GB,SG,GB,JP,GB,CH,GB,PL,DE,GB,IT,GB,DE,GB,RU,GB,FR,GB,IE,GB,IE,GB,IE,GB,ES,GB,ES,GB,IT,GB,IE,GB,RU,GB,AE,GB,IT,GB,IE,GB,AE,NL,FR,ES,GB,CH,RU,NO,FR,PT,NL,PT,BE,PL,GB,MT,AZ,PL,CZ,CH,IT,CH,IT,RU,GB,FI,RU,IT,CH,GB,CZ,TR,NL,TR,RS,NL,FR,NL,SA,RU,CZ,RU,NO,ML,PL,DE,NO,RU,IT,IR,RU,FR,IT,PL,IT,CD,GB,DE,GB,KZ,IR,RU,IR,RU,IT,LU,NO,IS,NL,IT,DE,IT,RU,DE,ES,FO,AE,IR,AE,IR,GB,SK,DE,US,FR,DE,FR,DE,IT,PL,RU,HU,GB,RU,SA,IE,AT,IE,DE,ES,DE,US,DE,NL,CY,PL,UA,LI,CH,LI,CH,LI,NO,RU,IR,TR,BG,SE,RU,IT,BG,RU,NL,FR,TM,GB,RU,IT,GB,KE,GB,IL,DE,SE,RU,MQ,AT,GB,AT,CY,DE,GB,US,JP,GB,FR,US,GB,FR,DE,FR,DE,BE,FR,DE,FR,PL,FR,DE,PL,FR,PL,FR,IE,DE,CH,IT,NL,DE,CH,DE,FR,NL,IL,CA,HK,CA,DE,CA,HK,CA,AT,NL,AT,CA,NL,AT,IL,CZ,IT,IL,GB,DE,RU,DE,FR,DE,LV,RU,NL,GR,GB,NL,DE,NL,DE,CZ,DK,TR,DE,TR,AE,TR,US,TR,RU,NL,GB,KZ,NL,US,BR,AT,SK,AT,SK,AT,RU,US,FI,NL,DE,RU,SE,RS,SE,RU,CZ,IT,AT,UA,CH,MK,CZ,GB,RU,ES,CZ,SE,PL,DE,GB,CA,RO,IT,CH,PL,GB,CY,TJ,IT,FI,FR,ES,RU,CH,BA,CZ,SG,NL,US,NO,US,ID,US,UA,HU,RU,CH,RU,NL,GB,SE,RU,GB,CZ,IT,SE,RU,UA,RO,UA,GB,FR,DE,IE,AT,JE,DE,IR,DE,ES,DK,LV,DE,IT,NO,DE,AT,LV,BA,KE,GB,DE,RU,GB,IT,GB,DE,GB,SE,ES,SE,ES,IR,IT,DE,NL,DE,US,DE,CN,US,HK,SG,CN,TW,JP,AU,US,JP,TW,KR,_,KR,JP,KR,CN,SG,CN,AU,ID,JP,VN,ID,AU,VN,JP,HK,MY,AU,_,NZ,MY,NZ,ID,BD,TH,AU,ID,JP,AU,MY,JP,_,IN,AU,_,AU,ID,NZ,LK,MY,_,VN,LK,ID,NZ,TH,JP,_,MY,_,KH,ID,MY,AU,PF,AU,_,AU,MN,PK,_,AU,CN,NZ,KR,HK,CN,JP,MY,JP,KR,TW,JP,TW,AU,JP,CN,NZ,AU,CN,SG,CN,IN,SG,TW,HK,US,HK,KR,HK,US,HK,TW,PH,MY,HK,TW,HK,TW,HK,TW,HK,TW,HK,CN,MY,KR,TW,SG,HK,AU,JP,KR,CN,IN,CN,HK,JP,HK,JP,IN,JP,TW,CN,HK,JP,SG,JP,HK,TW,CN,SG,US,SG,CN,TW,NZ,TW,IN,CN,PH,IN,HK,AU,TW,IN,MY,JP,MY,JP,CN,JP,CN,KR,CN,KR,JP,KR,JP,SG,JP,AU,CN,JP,KR,JP,CN,KR,TW,JP,KR,JP,BD,_,JP,CN,JP,CN,JP,NC,_,IN,JP,AU,ID,TW,JP,IN,HK,IN,_,IN,AU,HK,SG,HK,NL,GB,NL,MY,BD,MY,NZ,AU,JP,MV,HK,US,HK,TW,BD,BT,CN,HK,JP,HK,US,JP,CN,JP,IN,TW,KR,CN,VN,CN,SG,CN,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,JP,HK,AU,CN,AU,HK,CN,AU,HK,JP,BD,NZ,CN,TH,BD,ID,AU,JP,LK,CN,AU,JP,SG,CN,JP,CN,JP,TW,BD,IN,BD,IN,SG,AU,GB,AU,KH,AU,JP,HK,PK,VN,AU,PH,AU,NZ,AU,JP,PH,JP,CN,HK,SG,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,JP,TH,CN,NL,CN,NL,CN,US,CN,VN,KR,JP,PK,JP,ID,VN,MY,KR,JP,KR,AU,_,CN,IN,US,IN,US,IN,CN,KR,TW,JP,CN,JP,CN,AU,CN,JP,CN,KR,TH,ID,CN,PH,CN,PH,CN,JP,NZ,TW,JP,CN,SG,LK,ID,HK,CN,JP,ID,AU,JP,KR,JP,KR,CN,TW,KR,VN,CN,HK,CN,TW,TH,PH,SG,ID,AU,IQ,JP,TH,AU,SG,MY,BD,TW,US,AF,NZ,IN,HK,TW,KR,AU,TW,AU,JP,BD,AU,VN,BR,JP,MX,SG,JP,IN,JP,MY,ID,MY,PH,MY,ID,MY,ID,CN,HK,SG,HK,JP,SG,AU,JP,CN,MY,TH,MY,KR,JP,US,NC,DE,CA,JP,IN,CN,BD,JP,IN,PK,AU,JP,HK,US,TR,CN,IN,KR,CN,HK,SG,HK,SG,HK,SG,HK,JP,HK,SG,HK,SG,HK,TH,HK,SG,HK,SG,HK,SG,HK,JP,HK,MX,HK,MY,HK,JP,SG,HK,CN,HK,CN,HK,CN,HK,CN,HK,PK,CN,SG,IN,BD,VN,AU,PH,SG,ID,AU,IN,HK,KR,JP,TW,CN,ID,_,TW,KR,US,AU,HK,TW,NZ,JP,IN,JP,NZ,JP,US,KR,CN,KR,IN,CN,KR,IN,HK,CN,TW,CN,TH,CN,JP,CN,KR,JP,IN,JP,KH,CN,JP,HK,SG,JP,LK,IN,CN,AU,JP,AU,JP,CN,HK,CN,_,KR,CN,HK,KR,ID,AU,CN,HK,IN,HK,CN,SG,AU,_nicotine-plus-3.3.4/pynicotine/external/data/ip_ranges.py000066400000000000000000122225651461625273200235760ustar00rootroot00000000000000# IP2Location LITE is licensed under # Creative Commons Attribution-ShareAlike 4.0 International. # # Copyright (c) 2001-2024 Hexasoft Development Sdn. Bhd. All Rights Reserved. # # Generated on 2024-04-04 timestamp=1712242720 values=16777215,16777471,16778239,16779263,16781311,16785407,16793599,16809983,16842751,16843007,16843263,16859135,16875519,16908287,16909055,16909311,16941055,16973823,17039359,17039615,17072127,17104895,17170431,17278975,17279231,17301503,17367039,17432575,17435135,17435391,17465343,17498111,17563647,17825791,17842175,17986559,18087935,18153471,18219007,18350079,18874367,18907135,18923519,18925567,18926847,18927103,18927615,18929663,18930175,18930687,18930943,18931199,18931711,18932735,18933247,18933759,18935807,18938879,18939135,18939903,19005439,19136511,19202047,19267583,19398655,19726335,19791871,19922943,20185087,20447231,20971519,21102591,21233663,21495807,22020095,23068671,24117247,24379391,24510463,24575999,24641535,27262975,28311551,28442623,28450815,28454911,28459007,28471295,28479487,28495871,28499967,28508159,28518399,28520447,28526591,28528639,28530687,28532735,28536831,28540927,28573695,28966911,29032447,29097983,29884415,29949951,30015487,30408703,33554431,33685503,34603007,34603263,34603519,34603775,34604031,34604543,34605055,34605311,34605567,34605823,34606079,34606591,34606847,34607103,34607359,34607615,34607871,34608127,34608639,34608895,34609151,34609663,34609919,34610175,34611711,34611967,34612479,34612735,34613247,34613503,34613759,34614271,34614527,34614783,34615295,34615551,34615807,34616319,34616575,34616831,34617087,34617343,34618367,34618879,34619135,34619391,34619647,34619903,34620415,34620927,34621439,34621951,34622463,34622719,34622975,34623487,34623999,34625023,34625535,34625791,34626047,34626559,34626815,34627071,34627583,34629119,34629375,34629631,34630143,34630655,34630911,34631167,34631679,34632191,34632703,34632959,34633215,34633471,34633727,34633983,34634239,34634495,34634751,34635263,34635775,34636031,34636287,34636543,34636799,34637311,34637567,34637823,34638079,34638335,34638847,34639359,34639615,34639871,34640383,34640895,34641407,34641919,34642175,34642431,34642687,34643455,34643711,34644223,34644479,34644735,34644991,34645247,34645503,34645759,34646271,34646527,34646783,34647039,34647295,34647551,34648063,34649087,34649343,34649599,34650623,34651135,34651647,34652159,34653183,34653695,34653951,34654207,34654719,34654975,34655231,34656255,34657279,34658303,34659327,34660351,34661375,34662399,34663423,34664959,34665215,34665471,34665727,34665983,34667519,34668543,34669567,34670591,34671615,34672127,34672383,34672639,34674431,34674687,34675711,34676735,34677247,34677503,34677759,34678015,34678527,34678783,34679039,34679551,34680063,34680319,34680575,34680831,34682879,34684927,34689023,34693119,34694143,34694399,34694655,34694911,34695167,34695679,34695935,34696191,34697471,34697727,34697983,34698239,34699263,34700287,34701311,34702335,34704383,34705407,34706175,34706431,34707455,34708479,34709503,34709759,34710015,34710271,34710527,34711039,34711551,34712575,34713599,34717695,34717951,34718207,34718463,34718719,34719743,34720255,34720511,34720767,34721791,34722047,34722303,34722559,34722815,34723839,34724351,34724863,34725887,34729983,34731007,34732031,34732287,34732543,34732799,34733055,34733823,34734079,34735103,34736127,34736383,34736639,34736895,34737151,34738175,34738687,34739199,34739455,34740223,34740479,34740735,34741247,34741503,34741759,34742015,34742271,34743295,34744319,34744575,34744831,34745087,34746367,34747391,34748415,34749439,34749951,34750463,34750719,34750975,34751231,34751487,34752511,34753535,34753791,34754559,34756607,34758399,34758655,34759679,34760703,34761727,34762751,34764287,34766335,34766847,34770943,34775039,34776063,34776319,34776575,34776831,34777087,34778111,34779135,34780671,34780927,34782463,34782719,34782975,34783231,34787327,34788351,34789375,34790399,34792447,34793471,34794495,34795519,34795775,34796287,34796543,34797311,34797567,34797823,34798079,34798335,34798591,34799615,34800639,34800895,34801407,34801663,34802431,34802687,34803711,34807807,34808831,34811903,34812159,34812415,34812671,34812927,34813183,34813439,34813695,34813951,34814975,34815999,34820095,34820351,34820607,34820863,34821119,34822143,34824191,34824703,34824959,34825215,34827263,34828287,34829311,34829823,34831359,34831615,34832383,34836479,34841087,34841343,34841599,34843647,34843903,34844159,34844415,34844671,34845183,34845439,34845695,34845951,34846207,34846463,34846719,34846975,34847231,34847743,34848767,34849023,34849279,34849791,34850047,34850303,34850559,34850815,34851583,34851839,34852351,34852863,34853375,34854143,34854399,34854655,34854911,34855935,34856959,34859007,34860031,34861055,34861311,34861567,34862079,34863103,34863615,34863871,34864127,34864895,34865151,34866175,34867199,34868479,34868735,34869247,34870271,34871295,34872319,34874367,34875391,34876415,34876671,34876927,34877439,34877695,34877951,34878207,34878463,34879487,34881535,34882559,34882815,34883071,34883327,34883583,34884607,34885631,34887679,34889727,34897919,34898943,34899199,34899455,34899967,34900479,34900735,34900991,34901503,34902015,34903039,34904063,34905087,34906111,34910719,34910975,34911487,34911743,34911999,34912255,34912511,34912767,34913279,34914303,34915327,34915583,34916351,34918399,34922495,34926591,34927103,34928127,34928383,34928639,34928895,34929151,34929663,34929919,34930175,34930687,34930943,34932479,34932735,34932991,34933247,34933503,34934015,34934271,34934527,34934783,34935807,34936319,34936575,34936831,34937855,34938879,34939135,34939903,34940927,34941951,34942975,34947071,34947583,34947839,34948095,34948351,34948607,34949631,34949887,34950143,34951167,34952191,34953215,34953471,34953727,34954239,34955263,34955775,34956031,34956287,34957311,34957567,34957823,34958335,34958847,34959359,34959615,34960383,34960639,34960895,34961151,34961407,34961663,34961919,34962431,34962687,34962943,34963199,34963455,34964479,34964735,34964991,34965503,34966527,34967551,34968575,34971647,34972671,34973695,34974719,34974975,34975231,34975487,34975743,34976767,34977535,34977791,34979839,34983935,34989823,34990079,34991103,34991615,34992127,34992383,34992639,34992895,34993151,34993663,34993919,34994175,34995199,34996223,34997247,34998271,34999295,35001343,35001855,35002367,35003391,35003647,35003903,35004159,35004415,35005439,35007487,35008511,35008767,35009023,35009279,35009535,35010047,35010303,35011583,35011839,35012095,35012351,35012607,35014655,35015679,35018751,35019263,35019775,35024895,35025919,35026943,35027967,35028991,35033087,35033343,35033599,35034111,35034367,35034623,35035135,35036159,35037183,35039231,35040255,35041279,35045375,35046399,35049471,35051519,35052543,35053567,35053823,35054335,35054591,35054847,35055103,35055359,35055615,35055871,35056127,35056383,35056895,35057151,35057663,35058431,35058687,35058943,35059199,35059711,35059967,35060223,35060735,35061247,35061759,35063039,35063295,35063807,35064831,35065343,35065855,35069951,35078143,35083263,35083519,35084031,35084287,35084543,35084799,35085567,35085823,35086335,35086591,35086847,35087359,35087871,35088383,35089407,35090431,35092479,35094527,35096575,35098623,35099647,35100671,35101183,35101439,35101695,35102207,35102719,35103743,35103999,35104255,35104511,35104767,35105791,35106303,35106815,35107071,35107327,35107583,35107839,35108863,35109119,35109375,35109631,35109887,35110911,35112959,35115007,35115519,35115775,35116031,35117055,35119103,35127295,35651583,36700159,36962303,37224447,37225471,37225983,37226239,37226495,37226751,37227007,37227263,37227519,37228543,37229567,37230591,37231615,37232639,37233663,37234687,37235711,37237759,37238783,37239807,37240831,37241855,37242879,37243903,37244927,37245951,37246975,37247231,37247743,37247999,37249023,37250047,37250559,37251071,37252095,37252607,37252863,37253119,37253375,37253631,37254399,37256703,37257215,37258239,37258495,37259263,37259519,37259775,37260031,37260287,37260543,37260799,37262079,37262335,37262591,37262847,37263103,37263359,37264383,37265407,37266431,37266687,37266943,37267455,37267711,37267967,37268223,37268479,37268991,37270527,37271551,37273599,37274623,37276671,37277695,37278719,37279487,37279743,37280767,37281023,37281279,37281791,37282815,37283839,37284863,37285887,37286655,37286911,37287935,37288191,37288447,37288703,37288959,37289215,37289471,37289727,37289983,37290239,37290495,37290751,37291007,37292031,37293055,37294079,37294335,37294847,37295103,37295615,37295871,37296127,37297151,37297663,37298175,37299199,37299455,37299967,37300223,37301247,37302271,37303295,37304319,37305343,37306367,37307391,37309439,37310463,37311487,37312511,37313023,37313279,37313535,37314559,37315583,37316607,37317631,37318655,37319679,37320703,37320959,37321215,37321727,37322751,37323775,37325823,37326847,37327871,37328127,37328383,37328639,37328895,37329919,37330943,37331967,37333247,37333503,37333759,37334015,37335039,37336063,37337087,37338111,37339135,37340159,37342207,37343231,37344255,37345279,37346303,37347327,37348351,37349375,37350399,37350655,37350911,37351167,37351423,37351679,37351935,37352191,37352447,37353471,37354495,37354751,37355007,37355519,37356543,37357567,37358591,37359103,37359615,37360639,37361663,37362687,37363711,37363967,37364223,37364479,37364735,37365759,37366783,37367039,37367295,37367551,37367807,37368831,37370111,37370879,37371903,37372927,37373951,37374463,37374719,37374975,37375999,37376511,37376767,37377023,37377279,37377535,37378047,37379071,37379327,37379839,37380095,37380863,37381119,37381887,37382143,37383167,37384191,37385215,37387263,37388031,37388287,37389311,37390335,37391359,37392383,37393407,37394431,37395455,37396479,37397503,37397759,37398527,37399039,37399295,37399551,37399807,37400063,37400575,37401599,37402623,37403647,37404671,37405695,37406463,37406719,37407487,37407743,37408767,37409791,37410815,37411839,37412863,37413887,37414911,37415167,37415423,37415679,37415935,37416959,37417215,37417983,37420031,37420543,37421055,37421567,37422079,37423103,37423615,37424127,37425151,37426175,37426687,37427199,37428223,37428479,37428735,37430271,37431295,37432319,37433343,37434111,37434367,37435391,37435647,37435903,37436159,37436671,37436927,37437439,37438463,37440511,37441535,37442559,37443583,37444607,37445631,37446655,37447679,37448703,37450751,37451007,37451263,37451519,37451775,37452799,37453823,37454847,37455871,37456895,37457919,37458943,37459199,37459455,37459711,37460223,37460479,37460735,37460991,37461503,37462015,37463039,37464063,37465087,37466111,37467135,37467391,37467647,37467903,37468159,37469183,37470207,37471231,37472255,37472767,37473279,37474303,37475327,37475583,37477375,37478399,37479423,37480447,37481471,37482495,37483519,37484543,37485567,37486079,37486335,37486591,37748735,38273023,38797311,39059455,39321599,39583743,39845887,40370175,40716287,40717055,40894463,41418751,41943039,42205183,42467327,42991615,43253759,43515903,43778047,44040191,45088767,46137343,46661631,47710207,48234495,49283071,49807359,50329599,50330111,50330367,50330879,50331391,50331647,50462719,50470911,50471167,50471423,50471679,50471935,50472191,50472447,50472703,50473471,50473727,50475007,50475263,50475519,50476287,50476543,50667519,50668543,50669567,50670591,50671615,50672639,50673663,50674687,50675711,50678271,50693631,50695167,50696703,50698239,50700287,50701311,50702847,50703359,50704383,50705407,50706431,50708479,50711039,50711551,50712575,50714111,50714623,50715647,50716671,50717695,50718719,50719743,50720767,50721791,50722815,50723839,50724863,50855935,51084543,51084799,51118079,51904511,52166655,52232191,52271615,52271871,52297727,52503295,52503551,52504831,52505087,52559871,52953087,54525951,54706175,54706431,54964991,54965247,55574527,56623103,56867327,56867583,56885247,57147391,57409535,57671679,57933823,58195967,58720255,60825599,60833791,60837887,60850175,60858367,60862463,60870655,60874751,60878847,60879103,60882943,60890879,60891135,60899327,60899583,60899839,60900095,60901119,60904959,60908799,60912639,60916479,60935679,60939519,60947199,60948479,60948735,60951295,60955135,60956415,60960255,60967935,60983295,60985343,60985599,60987135,60994815,60998655,61010175,61017855,61062911,61073151,61073407,61074175,61077247,61078015,61078783,61604095,61604351,61604607,61605119,61605375,61605887,61606143,66584575,67108863,67203071,67203327,67203839,67204095,67220479,67220735,67246847,67247103,67577087,67577343,67608063,67608319,68044799,68045055,68045567,68046079,68046335,68046847,68088319,68088575,68089599,68089855,68095999,68096255,68096511,68096767,68097023,68097279,68169983,68170239,68170751,68171007,68171263,68171519,68305407,68305919,68627199,68627455,68628223,68628479,68630015,68630271,68631039,68631295,68823039,68824063,68880639,68880895,68941823,68942079,68972543,68973823,68974335,68974591,68978431,68978687,68978943,68979711,68980223,68980735,69003519,69003775,69193727,69193983,69323775,69324543,69326847,69327615,69327871,69328895,69329919,69330943,69331455,69432063,69432575,69433087,69433343,69533951,69534207,69573119,69573375,69657855,69658111,69869567,69870591,69879807,69880575,69895167,69895935,70324223,70324479,70325503,70325759,70332927,70333183,70349311,70349567,70631423,70631935,70632191,70632703,70632959,70633471,70735871,70736639,70736895,70737663,70744063,70744319,70749183,70749439,71020543,71021055,71021567,71022335,71566335,71566591,71573759,71574271,71574527,71574783,71575039,71575295,71575551,71581183,71581439,71583231,71583487,71584255,71584511,71584767,71593727,71593983,71602175,71602431,71647231,71647487,71664895,71665151,71665663,71665919,71666687,71667199,71684607,71684863,71685631,71685887,71686399,71686655,71687935,71688191,71691775,71692031,71801087,71801343,72235775,72236031,72254719,72254975,76546047,76578815,76742655,76808191,77136127,77136383,77136639,77136895,77137151,77137407,77137919,77138687,77139199,77139967,77140223,77140735,77140991,77141247,77141759,77142015,77142783,77143551,77143807,77144319,77145087,77145343,77145855,77146367,77146879,77147135,77148159,77148415,77148671,77149183,77149439,77150207,77150463,77150975,77151231,77151999,77152255,77152511,77153279,77153791,77154047,77154559,77154815,77156351,77156607,77156863,77157375,77157631,77157887,77158143,77158399,77158655,77158911,77159423,77159935,77160191,77160447,77160959,77161215,77161471,77161727,77161983,77162239,77162495,77163007,77163519,77163775,77164031,77164287,77164543,77164799,77165567,77165823,77166335,77166591,77167103,77167359,77168127,77168383,77169663,77169919,77170175,77170431,77170687,77170943,77171455,77171967,77172223,77172991,77173247,77173759,77174015,77174271,77174527,77175039,77175295,77175807,77176063,77176319,77176575,77178111,77178623,77178879,77179135,77179391,77179647,77179903,77180159,77180415,77180927,77181439,77181695,77181951,77182207,77182463,77182719,77182975,77183231,77183487,77183743,77183999,77184767,77185023,77185279,77185535,77185791,77186047,77186815,77187071,77187327,77187583,77187839,77188351,77188607,77189631,77190143,77190399,77190655,77190911,77191167,77191679,77192191,77192447,77192703,77192959,77193727,77193983,77194239,77194751,77195007,77195775,77196799,77197055,77197311,77197823,77198079,77198335,77198591,77198847,77199359,77200639,77201151,77274623,77274879,77280511,77280767,77282815,77283071,77286911,77287167,77295871,77296127,77296895,77297151,77300223,77300479,77304319,77304575,77398015,77398271,77398527,77398783,77399039,77399295,77399807,77400319,77400575,77400831,77401855,77402111,77402623,77402879,77403647,77403903,77404159,77404415,77404671,77404927,77405183,77405439,77405695,77405951,77406207,77406463,77407231,77407487,77407999,77408511,77408767,77409023,77409279,77409791,77410047,77411071,77411327,77411839,77412095,77412607,77414399,77414655,77415935,77416191,77416447,77416703,77418239,77418495,77419263,77419519,77419775,77420031,77420287,77420799,77422079,77422335,77423103,77423359,77424383,77424639,77425151,77425407,77427455,77427967,77428479,77428991,77430015,77430271,77430783,77431039,77432319,77432575,77433087,77433343,77434111,77434367,77434623,77435135,77435391,77435647,77436671,77437183,77437439,77437695,77437951,77438207,77438463,77438719,77439231,77439487,77439743,77439999,77440511,77440767,77441023,77441535,77442815,77443327,77443839,77444607,77446399,77446655,77446911,77447423,77447679,77447935,77448447,77448703,77449471,77449727,77449983,77450239,77450751,77451007,77451263,77453311,77453567,77453823,77454079,77455359,77455871,77456127,77456383,77458431,77458687,77458943,77459199,77459455,77459967,77460223,77460479,77460735,77461503,77461759,77462015,77462271,77463039,77463295,77463551,77529087,77529343,77529855,77530111,77530367,77530623,77530879,77531391,77531647,77532159,77532415,77534207,77534463,77535487,77535743,77538559,77538815,77541119,77541375,77541631,77541887,77542143,77542399,77543423,77543679,77543935,77544447,77544703,77545215,77545471,77545727,77546751,77547007,77548287,77548543,77550335,77550591,77550847,77551103,77551871,77552127,77555199,77555455,77555711,77555967,77557759,77558271,77559295,77559551,77563391,77563647,77563903,77564159,77565695,77565951,77566207,77566719,77567487,77567743,77569791,77570047,77570303,77570559,77572351,77572863,77574143,77574399,77574655,77574911,77577471,77577727,77578239,77578495,77579007,77579263,77579775,77580031,77582591,77583103,77583359,77584127,77584895,77585663,77585919,77586175,77586687,77586943,77588479,77588735,77589247,77589759,77590527,77591039,77591551,77591807,77592063,77592319,77592575,77593087,77593343,77593599,77593855,77594623,77660159,77791231,77922303,78053375,78184447,78249983,78315519,78315775,78316031,78316287,78316543,78316799,78317055,78317311,78317823,78318079,78318335,78318591,78319103,78319359,78319871,78320127,78320639,78320895,78321407,78321919,78322175,78322687,78322943,78323199,78323455,78381055,78448639,78448895,78450175,78451199,78451455,78451967,78455551,78455807,78457855,78458111,78458879,78459135,78459391,78459647,78460415,78460671,78463231,78463487,78463743,78463999,78465791,78466047,78467327,78467583,78469119,78469375,78469631,78471679,78471935,78472191,78472447,78474239,78474495,78475263,78475519,78476287,78476543,78477823,78478079,78478591,78478847,78480383,78480895,78481407,78481663,78483967,78484223,78484479,78484735,78485759,78486015,78487295,78487551,78490367,78490623,78490879,78491135,78491903,78493695,78493951,78494463,78494975,78495231,78495999,78496767,78497023,78497279,78497791,78498047,78498303,78498559,78499327,78501631,78501887,78502143,78503935,78504191,78504959,78505471,78505727,78506239,78506495,78506751,78507263,78507519,78507775,78508287,78508543,78509055,78509311,78509823,78510335,78510591,78511615,78511871,78577663,78643199,78708735,78774271,78807039,78839807,78905343,78970879,79036415,79101951,79167487,79181823,79298559,79495167,79626239,79757311,79888383,80021759,80022015,80028415,80028671,80031999,80032255,80032511,80032767,80033023,80033279,80035839,80036095,80037119,80037375,80038143,80038399,80042495,80042751,80046335,80046591,80064767,80065023,80067327,80067583,80069119,80069887,80073215,80073471,80076799,80077055,80077567,80077823,80078335,80078591,80079103,80080639,80081407,80081663,80127999,80150527,80216063,80248831,80281599,80445439,80510975,80674815,80805887,80871423,80904191,80936959,81068031,81133567,81204991,81205247,81205503,81213439,81213695,81222399,81222655,81224191,81224447,81228287,81228543,81232639,81232895,81234431,81234943,81235455,81235711,81236735,81236991,81239551,81239807,81240831,81241087,81244159,81244415,81244927,81245183,81245439,81245695,81246463,81246719,81246975,81247231,81247487,81247743,81248511,81248767,81249279,81249535,81249791,81250047,81250303,81250559,81252351,81252863,81253119,81253375,81255679,81255935,81262591,81262847,81330175,81461247,81592319,81723391,81788927,81854463,81919999,81985535,82051071,82116607,82182143,82247679,82280447,82313215,82364415,82366463,82378751,82444287,82509823,82575359,82640895,82673663,82706431,82771967,82837503,82903039,82968575,83034111,83099647,83165183,83197951,83230719,83296255,83361791,83394559,83492863,83558399,83591167,83623935,83689471,83755007,83787775,83820543,83886079,83951615,83959807,83962111,83962367,83962623,83962879,83963135,83963391,83963647,83965951,83967999,83976191,83978239,83979007,83979263,83980287,83982335,84017151,84021247,84023295,84025343,84033535,84037631,84039679,84041727,84049919,84082687,84148223,84410367,84412415,84414975,84415231,84415487,84416511,84417023,84417535,84418559,84418815,84419071,84419327,84419583,84420607,84421119,84421631,84421887,84422143,84422655,84424703,84424959,84426495,84426751,84427263,84427519,84427775,84428031,84428287,84428799,84433919,84434431,84434687,84434943,84443135,84451327,84457471,84458751,84459007,84459519,84471807,84473855,84474111,84474367,84474879,84475903,84545535,84547071,84547327,84547583,84548095,84548351,84549631,84551679,84557823,84567807,84568063,84571135,84572159,84573439,84573695,84574207,84576255,84576767,84577023,84577279,84577535,84578047,84578303,84582399,84590591,84590847,84591103,84591359,84591615,84591871,84592127,84592383,84592639,84594687,84598783,84600831,84602879,84603903,84604927,84605183,84605439,84605951,84606975,84609023,84610047,84610303,84610559,84610815,84611071,84614143,84615167,84617215,84619263,84621311,84622335,84627455,84629503,84631551,84639743,84672511,84934655,85196799,85262335,85327871,85360639,85362687,85364735,85366783,85367039,85367295,85367551,85367807,85368831,85377023,85380095,85381119,85383167,85384191,85385215,85387263,85388799,85389055,85389311,85391359,85393407,85393663,85393919,85394175,85394943,85395455,85395711,85395967,85396479,85397503,85398271,85398527,85399039,85399295,85399551,85399807,85400063,85400575,85400831,85401087,85401599,85402111,85402367,85403647,85405695,85407743,85409791,85417983,85422079,85424127,85426175,85458943,85721087,85723135,85725183,85729279,85731327,85733375,85737471,85753855,85770239,85786623,85852159,86015999,86018047,86020095,86022143,86024191,86026239,86028287,86030335,86032383,86048767,86114303,86147071,86155263,86157311,86159359,86159871,86160383,86160895,86161407,86163455,86167551,86170623,86171647,86173695,86175743,86176511,86177279,86177535,86177791,86179839,86188031,86190079,86191103,86192127,86197247,86198271,86200319,86200831,86206207,86206463,86208511,86211583,86212607,86220799,86222847,86226943,86228991,86231039,86233087,86235135,86237183,86237439,86237951,86238463,86238719,86238975,86241279,86245375,86376447,86409215,86441983,86474751,86482943,86484991,86487039,86489087,86491135,86493183,86494207,86495231,86497279,86499327,86503423,86503935,86504191,86504703,86504959,86505471,86507263,86507519,86573055,86638591,86654975,86655231,86655487,86655999,86656767,86661119,86661375,86661631,86662143,86662399,86662655,86663167,86663423,86663679,86663935,86664191,86664703,86665727,86666239,86671359,86673407,86675455,86677503,86679551,86687743,86687999,86688255,86688511,86689023,86689279,86689535,86689791,86690047,86690303,86690559,86690815,86691071,86691327,86691583,86691839,86692095,86692351,86692607,86694143,86694399,86694655,86695167,86695423,86695679,86695935,86704127,86720511,86736895,86745087,86753279,86761471,86763519,86765567,86767615,86769663,86773759,86777855,86779903,86780415,86780671,86780927,86781183,86781439,86781951,86786047,86788095,86790143,86794239,86798335,86802431,86804479,86806527,86810623,86812671,86814719,86816767,86818815,86822911,86824959,86827007,86831103,86833151,86833407,86833663,86833919,86834175,86834431,86834687,86834943,86835199,86837247,86839295,86840063,86840319,86843391,86844415,86844927,86845439,86846463,86847487,86849535,86850815,86851071,86851327,86851583,86851839,86855679,86856703,86859775,86863871,86867967,86872063,86874111,86876159,86880255,86882559,86882815,86883071,86883327,86884351,86889727,86889983,86890751,86891007,86891775,86892031,86892287,86892543,86892799,86893055,86898431,86898687,86899199,86899711,86900735,87031807,87293951,87359487,87359743,87361535,87363583,87367679,87375871,87384063,87386111,87388159,87390207,87392255,87425023,87556095,87558143,87560191,87561727,87561983,87562239,87564287,87566335,87568383,87570431,87572479,87588863,87590143,87590399,87590911,87592959,87597055,87599103,87601151,87621631,87623679,87625727,87625983,87626239,87626495,87626751,87627007,87627263,87627519,87627775,87629823,87631871,87633919,87635967,87638015,87640063,87642111,87646207,87654399,87670783,87672831,87674879,87675135,87675391,87675647,87675903,87676159,87676415,87676671,87676927,87678975,87680511,87681023,87683071,87685119,87687167,87752703,87754751,87755263,87755519,87755775,87756799,87758847,87761407,87761663,87761919,87762943,87763967,87766527,87766783,87767039,87767295,87768063,87772671,87772927,87773183,87777279,87777791,87778559,87779839,87780351,87782911,87783423,87793663,87795711,87795967,87796223,87796479,87797759,87798783,87799295,87799807,87800319,87800831,87801855,87802111,87802879,87803391,87803647,87803903,87804927,87805951,87806975,87807999,87809279,87809535,87810047,87811071,87811327,87811583,87812607,87814143,87814399,87814655,87814911,87815167,87816191,87818239,87883775,87885823,87889919,87890687,87890943,87891967,87896063,87899135,87900159,87901183,87901695,87902207,87904255,87906303,87908351,87912447,87912959,87913471,87913983,87914495,87916543,87932927,87933439,87933951,87934463,87934975,87937535,87938047,87939071,87941119,87943167,87945215,87947263,87949311,87954175,87954431,87954687,87954943,87955455,87955711,87956991,87957247,87957503,87957759,87958015,87958271,87958527,87959039,87959551,87959807,87960063,87960575,87962111,87962367,87962623,87962879,87963647,87963903,87964159,87964671,87965695,87967743,87969791,87970303,87970815,87971071,87971327,87971583,87971839,87972863,87973375,87973887,87978239,87978495,87979007,87979263,87979519,87979775,87980031,87980287,87980543,87980799,87981823,87982079,87988223,87990271,88014847,88016895,88018943,88019199,88019455,88019711,88019967,88020223,88020479,88020735,88020991,88023039,88031231,88047615,88049663,88051711,88053759,88055807,88057855,88059903,88061951,88063999,88080383,88604671,88834047,88866815,88932351,88940543,88948735,88965119,88997887,89063423,89079807,89096191,89128959,89260031,89325567,89326079,89326591,89327103,89327615,89329663,89331711,89333759,89337855,89339903,89341951,89350143,89352191,89354239,89356287,89358335,89368063,89368319,89370111,89370623,89374719,89378815,89379327,89379839,89380607,89380863,89381375,89381631,89382143,89382399,89382655,89382911,89384959,89387007,89391103,90439679,90456063,90472447,90476543,90478591,90480639,90482687,90484735,90488831,90497023,90499071,90501119,90502143,90503167,90505215,90514431,90514687,90514943,90515455,90516479,90516991,90517247,90517503,90518527,90520575,90523391,90523647,90528767,90533887,90537983,90540031,90544127,90546175,90548223,90550271,90554367,90560511,90560767,90561023,90561279,90561535,90561791,90562047,90562303,90562559,90570751,90578943,90580479,90580735,90580991,90583039,90587135,90589183,90589439,90589695,90589951,90590207,90590463,90590719,90590975,90591231,90595327,90596351,90597375,90598399,90600447,90601471,90603519,90605567,90607615,90609663,90611711,90613759,90615807,90617855,90619903,90636287,90701823,90705919,90707967,90710015,90718207,90718463,90718719,90719231,90720255,90721023,90721279,90722303,90722559,90722815,90723327,90723839,90724351,90726399,90728447,90730495,90734591,90736639,90738687,90742271,90742783,90750975,90753023,90755071,90757119,90759167,90761215,90763263,90763519,90764031,90764287,90765055,90765311,90767359,90767615,90767871,90768127,90768383,90768639,90768895,90769151,90769919,90770175,90770431,90770687,90770943,90771199,90771455,90772479,90772735,90773247,90773503,90774015,90774271,90774783,90775039,90775295,90775551,90775807,90776063,90776319,90776575,90777087,90778623,90778879,90779135,90779391,90779647,90779903,90780159,90780415,90780671,90781951,90782207,90782975,90783231,90783487,90783743,90784255,90784511,90784767,90785023,90785279,90785535,90785791,90786047,90786303,90786559,90786815,90787327,90787583,90788607,90788863,90789119,90790399,90790911,90791423,90791679,90791935,90792703,90792959,90793215,90793471,90793727,90794751,90795007,90795263,90795519,90795775,90796031,90796287,90796543,90797055,90797311,90797567,90797823,90798079,90798335,90798591,90799103,90799359,90799615,90799871,90800127,90800383,90800639,90800895,90801407,90801919,90802687,90803455,90803711,90803967,90804223,90806271,90807295,90808063,90808319,90809343,90809855,90810111,90810367,90810623,90810879,90811135,90811391,90811647,90814463,90814975,90815487,90815743,90815999,90816767,90817023,90818047,90818815,90819071,90819327,90819583,90819839,90820095,90820607,90820863,90821119,90821375,90821631,90821887,90822143,90822655,90822911,90823167,90823423,90823679,90823935,90824191,90824703,90825215,90825471,90825727,90825983,90826239,90826495,90826751,90828031,90828287,90828543,90829055,90829567,90829823,90830079,90830335,90830591,90831359,90832895,90898431,90963967,91226111,92274687,92536831,92569599,92577279,92577535,92585983,92602367,92604415,92606463,92608511,92610559,92612607,92614655,92618751,92619775,92620799,92621823,92622847,92623871,92624127,92624895,92625919,92626943,92627967,92628991,92630015,92630271,92630527,92630783,92631039,92631295,92631551,92631807,92632063,92633087,92634111,92635135,92643327,92643839,92644095,92644351,92645375,92651519,92659711,92663807,92665855,92667903,92669951,92671999,92674047,92676095,92680191,92684287,92688383,92689407,92689919,92690431,92692479,92694527,92696575,92698623,92700671,92719103,92721151,92723199,92725247,92733439,92739583,92739839,92761087,92761343,92798975,93323263,93335551,93339647,93343743,93345791,93346303,93347839,93356031,93358079,93360383,93362175,93364223,93368319,93368575,93368831,93369343,93369599,93369855,93370111,93370367,93372415,93388799,93415423,93417471,93419519,93421567,93425663,93427711,93429759,93431807,93433855,93434367,93435903,93437951,93454335,93585407,93626367,93634559,93650943,93652991,93655039,93667327,93675519,93679615,93680639,93680895,93681663,93683711,93685759,93687807,93691903,93693951,93695999,93700095,93702143,93704191,93708287,93712383,93714431,93714943,93715455,93715967,93716479,93749247,93753343,93755391,93756415,93757439,93765631,93782015,93789439,93789695,93847551,93880319,93881343,93882367,93884415,93885951,93886975,93888511,93890559,93890815,93891071,93891327,93891583,93892607,93894655,93896703,93904895,93906943,93908991,93911039,93913087,93929471,93939711,93941759,93945855,93956607,93956863,93957119,93958143,93962239,93972479,93973247,93973503,93973759,93974271,93974527,93976575,93978623,94011391,94012415,94013439,94013951,94014463,94015487,94018047,94018559,94018815,94019583,94021631,94022143,94022399,94022655,94023167,94023423,94023935,94024191,94024703,94025215,94025471,94025983,94026239,94026495,94026751,94027263,94027775,94035967,94036223,94036479,94036991,94037503,94038015,94038271,94038527,94039039,94039295,94039807,94040063,94040319,94040575,94040831,94041087,94042111,94043135,94043647,94044159,94109695,94175231,94175487,94175743,94175999,94176255,94176511,94176767,94177279,94177535,94177791,94178047,94178303,94178559,94178815,94179071,94179327,94179583,94179839,94180095,94180351,94180607,94180863,94181119,94181375,94181631,94181887,94182143,94182399,94182655,94182911,94183423,94183679,94183935,94184191,94184447,94184959,94185215,94185727,94186239,94186495,94186751,94187007,94187263,94187775,94188031,94188287,94188543,94188799,94189055,94189311,94189567,94189823,94190079,94191615,94193663,94195711,94197759,94198015,94199807,94207999,94209023,94210303,94210815,94211071,94214143,94216191,94217215,94218239,94220287,94224383,94228479,94232575,94233599,94236671,94238719,94240767,94257151,94261247,94263295,94265343,94273535,94289919,94291967,94294015,94294527,94295551,94296063,94298111,94300159,94302207,94306303,94308351,94310399,94312447,94314495,94316543,94318591,94320639,94330879,94337023,94339071,94355455,94356479,94361599,94363647,94365695,94367743,94369791,94371839,94437375,94502911,94568447,94633983,94896127,95158271,95166463,95168511,95170559,95174655,95191039,95195135,95197183,95203327,95203583,95203839,95204095,95204351,95204863,95205119,95205375,95207423,95211519,95213567,95215615,95289343,95354879,95359999,95361023,95362047,95363071,95365119,95367167,95369215,95371263,95371519,95371775,95372031,95372287,95372543,95372799,95374335,95374591,95374847,95375359,95377407,95387647,95420415,95551487,95551743,95551999,95552255,95552511,95552767,95553279,95553535,95555583,95556095,95556607,95556863,95557119,95557631,95559679,95561727,95563007,95563263,95563775,95567871,95569919,95571967,95574015,95576063,95576575,95576831,95577087,95577343,95577855,95578111,95579135,95579391,95579903,95580159,95582207,95584255,95617023,95625215,95635455,95637503,95641599,95645695,95645951,95646463,95646719,95647487,95647743,95649791,95666175,95668223,95668479,95669247,95669503,95669759,95670015,95671295,95671551,95671807,95672063,95673343,95673599,95673855,95674111,95674367,95674623,95675647,95675903,95676159,95676671,95677183,95677439,95677951,95678207,95678463,95678975,95679487,95679743,95679999,95680255,95681023,95681279,95681535,95682047,95682559,95683583,95684607,95685631,95686655,95686911,95687679,95690751,95691007,95691519,95691775,95692799,95693055,95693311,95693567,95693823,95694335,95694847,95695871,95696895,95697919,95698175,95698687,95698943,95699967,95700991,95702015,95702527,95702783,95703039,95703295,95703551,95703807,95704063,95705087,95706111,95707135,95708159,95708415,95708671,95709183,95710207,95711743,95711999,95712255,95713279,95714303,95715327,95716351,95717375,95718399,95719423,95720447,95720703,95720959,95721215,95721471,95722495,95723519,95724543,95725567,95726591,95727615,95727871,95728127,95728383,95728639,95729663,95730687,95731199,95731711,95732735,95734783,95735807,95736063,95736319,95737855,95738367,95738879,95739903,95740671,95740927,95741951,95742207,95742463,95742719,95742975,95743999,95745023,95746047,95747071,95748095,95749119,95749375,95749631,95750143,95751167,95751423,95751679,95751935,95752191,95753215,95753471,95753727,95753983,95754239,95754495,95754751,95755007,95755263,95756287,95757311,95758335,95759359,95760383,95761407,95761663,95761919,95762175,95762431,95763455,95764479,95765503,95766527,95767551,95767807,95768063,95768319,95768575,95769599,95770111,95770367,95770623,95771647,95772671,95773439,95773695,95774719,95775743,95776767,95777023,95777279,95777535,95777791,95779839,95780095,95781119,95781375,95781631,95781887,95782143,95782399,95782655,95782911,95783935,95784959,95785983,95787007,95788031,95788799,95789055,95789311,95789567,95790079,95790591,95790847,95791103,95791359,95791615,95791871,95792127,95793407,95793663,95793919,95794687,95795199,95795455,95795711,95795967,95796223,95797247,95798271,95799295,95799551,95800063,95800319,95801343,95802367,95803391,95803903,95804415,95805439,95805695,95805951,95806207,95806463,95807487,95807743,95807999,95808255,95808511,95810559,95811583,95812607,95813631,95814655,95815679,95816703,95817727,95817983,95818239,95818495,95818751,95819263,95819519,95819775,95820287,95820543,95820799,95822079,95822335,95822591,95822847,95823103,95823359,95823615,95823871,95824895,95825919,95826943,95827967,95828991,95829759,95830015,95831039,95832063,95833087,95834111,95835135,95835647,95835903,95837183,95838207,95839231,95839487,95839743,95839999,95840255,95840767,95841023,95841279,95841535,95841791,95842047,95842303,95842559,95842815,95843071,95843327,95843583,95843839,95845375,95846399,95847423,95848447,95849471,95850495,95851519,95852543,95853567,95854591,95856639,95857663,95858687,95859711,95860735,95860991,95861247,95861759,95862783,95863807,95864063,95864319,95864831,95866879,95867903,95868415,95868671,95868927,95870975,95871999,95873023,95874047,95875071,95876095,95877119,95878143,95879167,95881215,95882239,95883263,95884287,95885311,95886335,95887359,95888383,95889407,95890431,95891455,95892479,95893503,95894527,95895551,95897599,95898623,95899391,95899647,95900671,95901695,95902719,95903231,95903487,95903743,95904767,95905023,95905279,95905535,95905791,95906815,95907839,95908863,95910911,95911935,95912191,95912959,95913983,95915007,95916031,95917055,95917823,95918079,95920127,95922175,95923199,95924223,95924479,95924735,95924991,95925247,95926271,95927295,95928319,95929343,95930367,95931391,95931903,95932159,95932415,95932671,95932927,95933183,95933439,95934463,95935487,95936511,95936767,95937023,95937279,95937535,95938559,95939583,95940607,95941631,95942655,95943679,95943935,95944447,95944703,96075775,96141311,96143359,96145407,96147455,96147711,96148223,96148479,96148735,96148991,96149247,96149503,96150015,96150271,96151551,96153599,96155647,96157695,96165887,96172031,96172287,96173823,96174079,96206847,96207103,96207359,96207871,96208127,96208383,96208639,96208895,96209407,96209919,96210943,96214015,96215039,96215295,96215551,96215807,96216063,96216319,96219135,96219647,96220159,96222207,96222719,96223231,96224255,96224767,96225023,96225279,96228863,96229375,96230399,96230911,96231423,96234495,96235007,96235519,96237567,96237823,96238079,96238335,96239103,96239615,96240639,96240895,96241151,96241663,96244735,96244991,96245503,96245759,96246783,96249855,96250367,96250623,96250879,96251135,96251903,96252415,96252927,96253951,96254975,96255231,96255487,96255743,96255999,96256511,96257023,96258047,96258303,96258815,96259071,96259583,96259839,96261375,96261631,96262143,96262399,96262655,96262911,96263167,96264447,96264703,96264959,96265215,96265471,96265727,96265983,96266239,96266495,96267775,96268287,96272383,96305151,96306687,96307199,96307711,96307967,96308223,96308479,96308735,96308991,96309759,96310015,96310271,96311295,96311551,96312319,96312575,96313343,96314367,96315135,96316671,96317183,96317695,96318207,96321279,96321535,96323583,96323839,96324095,96324351,96324607,96324863,96325119,96325375,96325631,96327679,96327935,96328703,96328959,96329215,96329471,96335871,96336895,96337151,96337663,96337919,96403455,96468991,96731135,96787711,96787967,96796671,96862207,96894975,96897023,96899071,96903167,96911359,96911615,96911871,96913407,96913663,96915455,96915711,96919551,96923647,96925695,96927743,96960511,96961023,96961279,96964607,96968703,96972799,96974847,96975871,96976895,96985087,96987135,96989183,96993279,97001471,97009663,97058815,97091583,97189887,97255423,97320959,97386495,97419263,97435647,97437695,97439743,97443839,97445887,97447935,97452031,97517567,98435071,98566143,98697215,98701311,98705407,98707455,98709503,98710527,98711551,98713599,98732031,98734079,98736127,98738175,98740223,98740991,98741247,98741503,98742015,98742271,98743807,98744063,98744319,98746367,98762751,98893823,98959359,99090431,99391487,99392511,99614719,99876863,100139007,100204543,100237311,100245503,100247551,100249599,100252671,100253695,100261887,100262143,100262911,100270079,100302847,100311039,100313087,100315135,100317183,100319231,100327423,100329471,100331519,100335615,100401151,100402175,100403199,100404223,100405247,100406271,100406527,100406783,100407039,100407295,100407551,100407807,100408063,100408319,100409343,100410367,100411391,100412415,100413439,100414463,100415487,100417535,100418559,100419583,100419839,100420095,100420351,100420607,100422655,100423679,100424703,100425727,100426751,100427775,100428799,100429823,100430335,100430591,100430847,100431103,100431359,100431615,100431871,100432895,100433919,100434431,100434687,100434943,100435967,100436991,100438015,100440063,100440319,100440575,100440831,100441087,100442111,100442367,100442623,100442879,100443391,100443647,100443903,100444159,100445183,100446463,100446719,100446975,100447231,100448255,100448511,100449279,100450303,100451327,100451583,100451839,100452095,100452351,100453375,100454399,100455423,100456447,100457471,100458495,100459519,100460543,100461055,100461311,100461567,100462591,100463615,100464639,100465663,100466687,100467711,100468735,100469759,100470783,100471295,100471807,100472831,100473855,100474879,100475903,100476159,100476415,100476671,100476927,100477951,100478975,100479999,100481023,100482047,100482815,100483071,100484095,100485119,100486143,100487167,100488191,100488959,100489215,100489471,100489727,100489983,100490239,100491263,100492287,100493311,100496127,100496383,100497407,100498431,100499455,100500479,100501503,100501759,100502015,100502527,100503551,100504575,100505599,100506623,100507647,100508671,100509695,100510719,100511743,100512767,100513791,100514303,100514559,100514815,100515839,100516863,100517887,100518911,100519167,100519423,100519679,100519935,100520959,100521983,100523007,100524031,100524287,100524543,100524799,100525055,100526079,100527103,100528127,100529151,100529407,100529663,100530175,100531199,100532223,100532479,100532991,100533247,100533503,100533759,100536063,100536319,100537087,100537343,100537855,100538111,100538367,100538623,100538879,100539135,100539647,100539903,100540415,100540671,100542207,100542463,100542719,100542975,100544511,100544767,100545279,100545535,100545791,100546047,100546303,100546559,100547071,100547327,100547583,100547839,100548095,100548863,100549119,100549631,100549887,100550143,100550399,100550655,100550911,100551167,100551423,100551679,100552191,100552447,100552703,100552959,100553215,100553471,100553727,100553983,100554495,100554751,100555263,100555775,100558847,100559359,100559871,100560895,100561151,100561407,100561919,100562175,100562431,100562687,100562943,100563967,100564223,100564479,100564991,100573183,100575231,100577279,100579327,100581375,100589567,100597759,100605951,100610047,100612095,100612351,100612607,100613119,100613375,100630527,100632575,100634623,100636671,100636927,100638719,100646911,100649983,100650239,100659711,100659967,100660479,100660735,100661759,100662015,100662271,100662783,100663039,100663295,134227967,134228223,134228479,134443007,134446847,134447103,134639615,134639871,134738943,134739199,134803199,134803455,134874623,134875135,135057151,135057407,135058943,135059199,135166463,135166719,135186687,135187455,135187711,135192575,135200767,135384319,135384575,135384831,135410175,135410431,135426303,135426559,135430143,135430399,135432191,135434239,135441407,135441663,135447039,135447295,135447551,135447807,135464959,135465215,135554047,135554303,135554559,135554815,135555071,135556607,135556863,135559679,135559935,135560191,135560447,135560703,135561215,135593215,135593471,135596031,135596287,135596543,135596799,135603199,135603455,135604479,135604735,135622143,135622399,135622655,135704575,135704831,135760639,135760895,135786495,135786751,135792639,135794687,135852799,135853055,135853311,135880703,135880959,135881215,135881471,135919871,135920127,135941887,135942143,135945727,135945983,135966719,135966975,135967743,135967999,136004095,136004607,136004863,136005119,136007423,136007679,136047871,136048895,136057855,136058111,136073727,136073983,136085247,136085503,136104191,136104447,136107263,136107519,136145151,136145407,136175615,136176127,136237055,136239103,136243711,136243967,136404991,136407039,136413183,136415743,136463615,136463871,136464127,136464383,136497151,136497407,136497663,136497919,136499199,136499711,136499967,136500223,136502271,136503295,136526079,136526335,136526847,136549631,136549887,136565503,136565759,136596735,136596991,136610303,136610559,136617983,136618239,136618495,136618751,136632319,136632575,136632831,136633087,136633343,136633599,136653055,136653311,136653567,136653823,136745727,136746239,136746495,136752127,136752383,136775167,136775423,136778239,136778495,136805631,136805887,136806143,136810495,136810751,136825087,136825855,136826111,136826367,136826623,136827903,136828159,136828415,136828671,136828927,136845823,136846079,136846335,136846591,136846847,136847103,136847359,136866559,136866815,136867583,136867839,136875007,136875263,136905983,136906239,136906495,136906751,136913919,136914175,136914431,136983295,136983551,136983807,136984063,136984319,136984575,137011455,137011711,137012223,137012479,137014271,137014527,137031167,137031423,137032959,137033215,137066751,137067263,137067519,137093119,137093375,137093631,137093887,137101311,137101567,137101823,137102079,137102335,137102847,137103103,137116159,137116415,137116671,137117695,137123327,137123583,137124863,137125119,137191423,137191679,137259007,137259263,137261311,137261567,137262335,137262847,137315583,137315839,137449727,137449983,137450495,137450751,137473791,137474047,137482239,137482495,137482751,137483007,137484287,137484543,137484799,137485055,137497599,137498623,137499135,137499903,137511167,137511679,137560319,137560575,137561343,137561599,137561855,137562111,137562367,137562623,137562879,137569279,137571583,137572351,137573375,137573631,137574911,137576191,137576447,137685247,137685503,137691135,137691391,137756671,137756927,138085119,138085375,138088703,138089215,138089983,138090239,142606335,146800639,146828543,146828799,147849215,147914751,147922943,147923967,147924479,147924991,147926015,147927039,147931135,147947519,147963903,147980287,148045823,148078591,148094975,148111359,148144127,148160511,148176895,148209663,148217855,148219903,148226047,148242431,148307967,148373503,148406271,148439039,148570111,148635647,148652031,148668415,148684799,148701183,148733951,148766719,148770815,148774911,148779007,148783103,148791295,148897791,149095167,149095423,149097215,149097471,149102591,149102847,149107711,149107967,149109503,149109759,149111551,149112063,149112575,149114367,149114879,149115135,149115391,149115647,149115903,149116415,149116671,149116927,149117183,149117439,149118463,149118719,149121535,149121791,149122303,149122559,149123327,149123583,149123839,149124607,149125631,149125887,149126655,149126911,149127167,149127423,149128447,149128703,149819391,149819903,149820671,149820927,149821183,149821695,149822463,149822719,149823231,149825535,149826303,149826559,149828095,149828351,149828607,149828863,149851903,149852159,149854719,149856255,149859327,149859583,149859839,149860095,149860351,149860607,149861887,149862655,149863167,149863423,149864447,149864703,149865215,149865471,149866239,149867775,149967103,149967359,149983999,149984255,150009855,150010111,150010623,150010879,150011903,150012159,150013951,150014207,150034431,150034687,150044671,150047999,150048511,150048767,150049023,150050047,150050815,150051071,150051583,150052095,150052863,150053375,150054399,150054655,150055423,150055935,150056447,150056959,150057215,150077439,150093823,150094079,150094847,150095871,150097919,150099967,150100991,150102015,150108159,150118399,150120447,150123519,150124543,150126591,150127615,150128639,150130687,150132735,150134783,150136831,150138879,150139903,150142975,150151167,150159359,150167551,150175743,150179839,150183935,150188031,150192127,150196223,150200319,150204415,150206463,150208511,150224895,150226943,150228991,150241279,150241535,150241791,150243071,150243327,150243583,150243839,150244095,150244351,150245375,150246655,150246911,150274047,150276095,150276351,150281215,150281471,150282239,150290431,150306815,150307071,150315007,150339583,150339839,150364159,150364671,150364927,150365183,150365695,150365951,150366207,150372607,150375167,150388735,150388991,150389247,150390015,150391039,150420223,150420991,150421247,150421503,150431743,150431999,150452479,150452735,150459135,150459391,150494719,150494975,150500863,150501119,150501887,150502143,150504447,150504703,150504959,150505215,150505471,150505727,150508031,150508287,150508543,150508799,150734591,150734847,150738687,150738943,150803455,150803711,150807807,150808063,150820607,150820863,150842623,150842879,150843135,150843647,150844671,150845183,150853631,150853887,150856959,150857215,150858751,150859007,150916351,150916863,150929407,150929663,150936831,150937087,150937599,150938111,150940927,150941183,150941951,150942207,150942719,150942975,150943231,150943743,150962175,150962431,151587071,151587327,160497663,160628735,166330367,166461439,167772159,184549375,198318079,198318335,202807551,202808063,202935551,202935807,204046335,204047103,204047615,204047871,204048127,204048383,204460031,204460287,204460799,204461055,209780991,209781247,210466815,210467071,210784767,210785023,210785791,210786303,211868159,211868415,212787199,212788223,212791807,212792063,212792319,212792831,212793343,212794367,214185215,214185471,214185727,214873087,214874111,220200959,220202751,220203519,220204799,220205311,220205567,220209151,220211199,220212223,220212479,220212735,220212991,220213247,220215295,220216063,220216319,220216831,220217087,220217343,220218111,220219391,220221439,220223487,220224511,220224767,220225023,220225279,220225535,220225791,220226047,220227071,220227327,220228351,220228607,220229119,220229375,220229631,220230399,220230655,220230911,220232447,220232703,220233727,220234239,220234751,220235007,220235263,220235775,220236543,220236799,220237055,220237311,220237823,220238335,220238591,220238847,220240895,220241919,220243711,220243967,220246015,220256255,220258303,220262399,220262911,220264703,220264959,220266495,220266751,220267007,220267519,220267775,220268031,220268543,220269567,220272127,220272639,220273663,220273919,220274175,220274431,220274687,220276735,220277759,220278271,220278527,220278783,220280831,220282623,220282879,220285951,220286975,220289023,220290303,220290559,220290815,220291071,220292351,220292607,220293119,220293375,220293631,220293887,220294143,220294655,220294911,220295167,220295423,220295679,220296447,220296703,220296959,220297215,220298239,220299007,220299263,220301311,220302847,220303103,220303359,220305407,220305919,220306431,220306943,220307199,220307455,220309503,220310527,220311039,220311295,220311551,220313599,220314111,220314623,220314879,220315135,220316927,220317183,220317695,220318719,220319743,220321791,220323839,220324351,220325119,220325887,220327935,220329983,220332799,220333055,220333311,220333567,220336127,220336383,220336895,220337151,220337407,220340479,220340735,220340991,220341247,220341503,220341759,220342015,220342271,220342527,220342783,220343295,220343551,220343807,220344063,220344319,220344831,220345343,220345599,220345855,220346367,220346623,220346879,220347135,220347903,220348159,220348415,220348671,220348927,220349695,220349951,220350207,220350463,220350719,220350975,220351231,220351743,220351999,220352255,220352511,220352767,220353023,220353279,220353535,220353791,220354047,220354303,220354559,220354815,220355071,220355327,220355583,220355839,220356095,220356607,220356863,220357119,220357375,220357631,220359167,220359423,220359679,220359935,220360703,220360959,220397567,220399615,220400383,220400639,220403711,220404479,220404735,220407807,220408575,220408831,220411903,220412159,220413439,220413695,220413951,220416255,220430335,220432639,220436735,220440831,220444927,220446975,220448767,220459007,220461311,220463103,220725247,220987391,221249535,221373183,221373439,221384191,221384447,221469183,221469439,221511679,221577215,221642751,221773823,222035967,222298111,222494719,222527487,222625791,222658559,222691327,222707711,222740479,222756863,222789631,222797823,222806015,222871551,222879743,222887935,222896127,222912511,222920703,222937087,222941183,222945279,222947327,222949375,222953471,223019007,223051775,223084543,223150079,223166463,223215615,223248383,223281151,223346687,223412223,223420671,223420927,223805439,223834111,223836159,223837951,223922175,223924223,223928319,223936511,224198655,224231423,224264191,224280575,224296959,224395263,224919551,224919807,224930303,224930815,224931071,224931327,224931583,224931839,224932863,224933887,224935679,224944127,224944383,224944895,224945151,224945407,224946175,224946431,224946687,224946943,224947199,224947455,224947711,224947967,224948223,224948479,224948735,224952831,224953343,224953855,224954367,224954879,224955391,224955903,224956415,224956927,224957183,224957439,224958207,224958463,224958719,224959231,224959487,224959743,224959999,224960255,224960511,224962047,224962559,224963071,224963583,224964607,224964863,224965119,224965375,224965631,224972287,224972799,224973055,224973311,224973567,224973823,224974079,224974335,224974591,224975103,224975615,224976127,224976383,224978943,224979455,224979967,224980479,224980991,224981503,224982015,224982527,224983039,224984831,224985087,224985599,224986111,224986623,224987135,224987647,224988159,224988671,224989183,224989439,224990207,224990463,224990719,224991231,224992511,224992767,224993279,224993791,224994815,224995327,224995839,224996351,224996863,224997375,224998399,224998655,224998911,224999423,224999935,225000447,225000703,225000959,225002239,225002495,225003007,225003263,225003519,225004287,225004543,225005055,225005823,225006079,225006335,225006847,225007103,225007359,225007615,225008127,225009151,225009663,225009919,225010175,225010431,225010687,225010943,225011967,225012223,225012479,225012991,225013247,225013503,225013759,225015295,225015807,225016319,225017343,225017855,225021951,225022463,225022975,225023487,225024511,225025023,225026047,225026303,225026559,225026815,225027071,225027327,225027583,225027839,225028095,225029119,225029375,225029631,225029887,225030143,225030399,225030655,225030911,225031167,225031423,225031679,225034239,225034751,225035263,225036287,225036799,225037311,225037567,225037823,225038847,225039359,225039871,225040895,225050623,225051647,225052159,225052671,225053183,225053695,225055231,225055743,225060863,225061375,225061887,225062399,225062911,225063423,225065471,225066495,225067007,225068031,225068543,225069055,225069567,225070079,225070591,225071103,225073151,225073663,225074687,225076735,225077247,225077759,225078271,225078783,225079295,225079807,225080319,225080831,225081343,225081855,225082367,225082623,225084415,225085439,225085951,225086463,225086975,225087487,225088511,225089023,225089535,225093631,225094143,225094655,225095167,225095423,225095679,225096191,225096703,225097215,225097727,225098239,225098751,225099263,225099775,225100287,225100799,225101823,225102847,225103359,225103871,225104383,225104895,225105407,225105919,225106943,225107455,225108479,225108735,225108991,225109503,225111807,225112063,225112575,225113087,225113599,225114111,225114623,225115135,225115647,225116159,225121023,225121279,225126399,225126655,225127167,225127423,225128191,225128447,225129215,225129471,225129727,225148927,225149183,225151743,225152255,225157119,225157375,225166847,225167103,225169663,225169919,225174271,225174527,225174783,225175039,225176831,225177087,225178623,225178879,225180927,225181183,225443839,225705983,225722367,225722879,225723391,225724927,225725183,225726463,225730559,225731071,225731583,225733119,225733375,225733887,225734143,225734399,225734655,225735679,225736191,225736447,225737215,225737471,225738751,225984511,225984767,225985535,225985791,225986303,225986815,225987839,225988095,225988607,225988863,225989119,225990143,225990911,225991167,225991679,225991935,225992191,225992447,225992703,225992959,225993983,225994239,225994495,225994751,225995263,225995519,225996799,225997055,225997311,225997823,225998079,225999103,225999359,225999615,225999871,226000127,226000639,226000895,226050047,226050303,226052095,226052351,226053119,226053375,226054143,226054399,226055935,226056959,226057215,226057727,226058239,226058495,226058751,226059263,226059519,226059775,226060543,226060799,226061823,226062079,226062335,226062591,226062847,226063103,226063359,226064639,226064895,226065151,226065407,226066431,226115583,226116095,226117375,226117631,226117887,226118143,226118399,226119679,226119935,226120191,226120703,226121727,226122239,226123007,226123519,226124287,226124543,226125055,226125311,226126079,226126591,226126847,226127103,226127359,226127615,226128383,226128639,226130175,226130431,226131967,226230271,226361343,226492415,230686719,231211007,231735295,231800831,231866367,231997439,232109567,232109823,232182271,232182527,232259583,232787967,232790271,232792063,232794367,232798463,232800255,232802559,232806655,232810751,232814847,232816639,232818943,232823039,232827135,232831231,232835327,232839423,232847615,232851711,232853503,232855807,232859903,232868095,232872191,232876287,232884479,232888575,232896767,232900863,232909055,232910847,232913151,232917247,232929535,232933631,232933887,232934655,232935423,232936447,232936703,232936959,232937471,232937727,232937983,232941567,232943615,232944895,232945663,232947711,232948735,232949759,232951807,232952831,232953855,232955903,232956927,232957951,232959999,232977407,232977663,232977919,232978431,232980479,232981759,232982527,232984575,232985855,232986623,232988671,232992767,232994047,232994815,232996863,232998143,232998911,233000959,233002239,233003007,233005055,233010431,233011199,233013247,233014527,233015295,233017343,233018623,233019391,233021439,233022719,233023487,233025535,233026815,233027583,233029631,233030911,233031679,233033727,233034751,233035775,233037823,233038847,233039871,233041919,233042943,233043967,233177087,233308159,233383167,233383423,233514495,233514751,233570303,233832447,234094591,234258943,234259199,234356735,234364927,234373119,234373375,234373631,234373887,234374143,234374399,234374911,234375167,234375423,234375679,234375935,234376191,234381311,234381567,234381823,234382079,234382335,234382591,234382847,234383103,234383359,234383615,234383871,234384127,234384383,234384639,234384895,234385151,234385663,234385919,234386175,234386431,234386687,234386943,234387455,234387711,234387967,234388223,234388479,234388735,234388991,234389247,234389503,234422271,234422527,234422783,234426367,234430719,234430975,234459135,234467327,234475519,234483967,234484223,234484479,234484735,234484991,234487551,234487807,234618879,234881023,234883071,234884095,234885119,234889215,234893055,234893311,234893567,234894079,234913791,234946559,234947583,234950655,234951679,234952703,234953727,234954239,234954751,234962943,234963967,234964223,234964991,234966015,234967039,234967295,234967551,234967807,234968063,234969087,234969343,234969599,234969855,234970111,234970367,234970623,234971135,234972159,234972927,234973183,234974207,234975231,234976255,234978303,234979327,235012095,235077631,235143167,235405311,235929599,236978175,241172479,241298431,241298687,241434623,241500159,241565695,241598463,241599487,241600511,241602559,241604607,241605631,241606655,241607679,241608703,241609727,241610751,241611775,241612799,241613823,241614847,241623039,241623551,241624575,241624831,241626367,241626623,241626879,241627135,241631231,243269631,243270655,243271679,243271935,243272703,243273727,243277823,243281919,243282175,243282687,243282943,243283199,243283455,243286015,243302399,243400703,243531775,243662847,243793919,243859455,243867647,243867903,243868159,243868415,243868671,243868927,243869183,243869439,243869695,243870207,243870463,243870719,243871487,243872255,243872511,243872767,243873023,243873279,243874047,243875839,243892223,243893247,243894271,243895295,243896319,243897343,243898367,243899391,243900415,243901439,243902463,243903487,243904511,243905535,243906559,243907583,243908607,243916799,243924991,243990527,244109055,244109311,244318207,245366783,247463935,247464959,247465983,247467007,247469055,247470079,247472127,247476223,247476479,247476735,247477247,247478271,247479295,247480319,247481343,247481599,247482367,247483391,247484415,247488511,247496703,247504895,247513087,247529471,247595007,247726079,247857151,247988223,248250367,248381439,248446975,248512511,249561087,251658239,253780479,253780735,257532415,257532671,261163519,261163775,261166079,261167103,261619711,261685247,261881855,262012927,262013183,262013439,262014463,262014719,262015231,262015487,262015999,262016511,262017535,262018047,262018559,262018815,262019071,262019327,262019583,262020095,262020351,262020863,262021119,262022399,262022655,262022911,262023167,262023423,262023679,262023935,262024191,262024447,262024703,262024959,262025471,262025727,262026495,262026751,262027007,262027263,262027519,262027775,262029823,262030079,262030335,262031103,262031615,262031871,262032127,262032383,262032895,262034943,262035199,262035967,262036223,262036991,262037247,262039295,262039551,262039807,262040063,262040831,262041087,262041343,262041599,262042623,262042879,262044159,262044415,262044671,262044927,262045183,262045951,262046207,262046463,262046975,262047743,262047999,262048255,262049279,262049535,262051071,262051327,262051839,262053631,262054143,262054655,262054911,262055679,262055935,262056191,262056703,262056959,262057471,262057727,262057983,262058239,262059007,262059263,262059519,262060031,262060287,262061567,262061823,262062079,262143999,262224127,262224383,262275071,262406143,262475263,262475519,262537215,262668287,262733823,263264255,263266303,263268351,263270399,263272447,263274495,263275519,263276031,263276543,263276799,263277055,263277311,263277567,263277823,263278079,263278335,263278591,263279103,263279359,263279615,263279871,263280383,263280639,263280895,263281151,263281407,263281663,263281919,263282175,263282431,263282687,263282943,263283199,263283455,263283711,263283967,263716863,263847935,263979007,264044543,264110079,264111103,264112127,264113151,264114175,264118271,264122367,264126463,264306687,264306943,264307199,264307455,264307711,264307967,264308223,264308735,264308991,264309247,264309503,265158655,265289727,266062079,266062335,266087423,266088447,266090495,266092543,266096639,266100735,266104831,266106879,266108927,266113023,266113535,266114047,266115071,266117119,266119167,266121215,266125311,266126335,266131455,266132479,266134271,266135807,266137599,266139647,266142207,266142463,266142719,266143231,266143487,266143743,266145791,266146815,266147839,266150143,266150399,266150655,266151935,266153983,266154239,266154495,266154751,266155007,266155263,266155519,266174463,266175487,266176511,266178559,266179071,266180607,266180863,266181119,266207231,266338303,266600447,266731519,266731775,266732031,266732287,266732543,266733055,266733311,266734079,266734335,266735359,266735615,266736383,266736639,266736895,266737151,266737663,266738687,266738943,266739199,266739967,266742015,266742271,266742527,266742783,266744063,266744319,266744831,266745087,266745343,266745599,266745855,266746623,266746879,266747135,266747391,266747647,266747903,266748159,266748415,266748927,266749183,266749439,266749695,266749951,266750207,266750463,266750719,266750975,266751231,266751487,266751743,266751999,266752255,266752511,266752767,266753023,266753279,266753535,266753791,266754559,266755071,266755327,266755839,266756095,266756607,266756863,266757119,266757375,266757631,266757887,266758143,266758399,266758655,266758911,266759679,266759935,266760191,266760447,266760703,266760959,266761215,266761471,266764543,266764799,266765055,266765311,266765567,266765823,266766335,266766591,266766847,266767103,266767615,266767871,266768127,266768383,266768639,266769919,266770431,266770687,266770943,266771455,266771711,266771967,266772479,266772991,266773247,266773759,266774015,266774271,266775039,266775551,266775807,266776063,266776319,266776575,266776831,266777087,266777343,266777855,266778111,266778367,266779391,266779647,266780159,266780415,266781183,266781439,266781695,266781951,266782207,266782463,266782719,266782975,266783487,266783743,266784511,266784767,266785023,266785279,266786303,266786559,266786815,266787071,266787327,266787583,266787839,266788351,266788607,266793215,266793471,266793727,266793983,266794239,266794495,266794751,266795263,266795519,266795775,266796031,266796287,266796543,266796799,266797055,267059199,267099135,267099647,267124735,267218943,267219199,267255807,267911679,267911935,267915263,267916287,267917311,267918335,267919359,267920383,267921407,267923455,267925503,267927551,267929599,267937791,267938047,268445439,268445695,268447743,268450559,268501759,268502015,268510719,268510975,268518399,268518655,268518911,268519167,268519423,268521471,268525567,268532223,268574975,268575231,268600319,268600831,268601343,268601855,268602111,268602367,268603391,268604415,268604671,268604927,268605183,268901375,268902399,268905727,268905983,269090815,269091071,269091327,269091583,269092351,269092607,269092863,269093119,269093375,269093631,269093887,269094399,269096447,269096959,269097215,269097983,269098495,269221887,269222655,269222911,269223423,269224191,269224959,269225727,269226495,269227263,269227519,269228031,269231103,269232639,269233407,269234175,269236223,269236991,269237247,269240831,269241087,269484031,269549567,270008319,270139391,270270463,270532607,271186943,271187199,271712255,271843327,272105471,272171007,272187391,272498687,272629759,273547263,273678335,275220991,275221503,277217279,277233663,277809151,277811455,277812223,277813247,277814527,277814783,278527999,278659071,278921215,279052287,279183359,279445503,279649791,279650047,279656191,279656447,279707647,279969791,280231935,280494079,280756223,283403519,283403775,283404287,283405823,283406847,283407359,283407871,283409919,284166399,284166655,284354559,284355071,284355583,284356607,284357631,284358655,285212927,285213183,285215231,285215487,285238783,285239039,285240063,285240319,285242623,285242879,285254655,285254911,285257727,285257983,285258495,285259007,285260799,285261055,285261567,285261823,285320191,285320447,285322239,285322495,285325311,285325823,285758719,285758975,286200831,286201855,286398463,286402559,286459903,286463999,286482431,286484479,286527487,286531583,286535679,286537727,286547967,286552063,286558207,286560255,286564351,286566399,286570495,286578687,286580735,286582783,286584831,286588927,286728703,286728959,286729727,286730239,286730495,286736895,286737407,286961663,286963711,286998527,287002623,287023103,287025151,287049727,287053823,287057919,287059967,287066111,287070207,287082495,287084543,287179263,287179519,287183871,287184895,287185919,287186943,287409151,287410175,287410687,287411199,288075775,288077823,288131071,288131583,288132095,288133119,288140287,288141311,288154111,288154367,288155647,288157183,288182271,288183295,288293887,288294143,288362495,288366591,288493567,288497663,288501759,288503807,288507903,288509951,289243135,289275903,289406975,289472511,289538047,289554431,289557503,289558527,289559551,289560575,289560831,289561087,289561343,289561599,289563647,289565183,289565695,289566719,289567487,289567743,289568767,289570815,289572863,289574911,289575167,289575935,289576447,289576959,289577471,289577727,289577983,289579007,289584127,289584383,289584639,289585151,289587199,289604095,289604607,289605631,289606655,289609727,289610751,289611775,289615871,289619967,289620991,289624063,289628159,289630207,289632255,289633279,289634303,289636351,289652735,289653759,289654271,289654783,289655295,289656831,289660927,289662975,289663231,289665023,289667071,289668095,289669119,289673215,289675263,289677311,289679359,289680383,289681407,289683455,289685503,289687551,289697791,289699839,289700863,289701887,289702911,289718271,289718783,289719039,289721855,289722111,289722367,289723391,289723647,289725951,289726207,289727487,289727743,289729279,289729535,289729791,289730559,289731071,289731583,289732607,289733119,289733631,289733887,289734655,289743103,289743359,289743615,289743871,289746943,289751039,289753087,289755135,289756671,289757183,289759231,289759487,289760255,289761279,289762047,289762303,289763327,289767423,289769471,289770495,289771519,289775615,289779455,289787903,289789951,289791999,289794047,289796095,289798143,289800191,289812479,289814527,289816575,289818623,289820671,289822719,289824767,289826815,289828863,289830911,289832959,289835007,289837055,289843199,289845247,289847295,289851391,289853439,289855487,289857535,289859583,289865727,289867775,289878015,289880063,289884159,289890303,289892351,289894399,289896447,289898495,289902591,289904639,289906687,289910783,289912831,289914879,289916927,289921023,289923071,289927167,289929215,289931263,289947647,289948671,289949695,289950207,289950463,289950719,289950975,289951743,289952255,289955839,289956095,289956351,289957375,289957631,289958911,289959423,289959935,289960447,289960959,289961471,289963007,289964031,289980415,289998847,290004991,290007039,290009087,290072575,290134015,290136063,290140159,290142207,290144255,290156543,290158591,290159615,290159871,290160639,290162687,290166783,290168831,290170879,290174975,290177023,290179071,290181119,290183167,290185215,290187263,290191359,290193407,290194431,290194943,290195199,290195455,290195711,290196479,290209791,290210815,290215935,290217983,290224383,290224639,290224895,290226175,290230271,290242559,290250751,290267135,290269183,290270207,290271231,290272255,290273279,290274303,290275327,290277375,290277887,290278143,290279167,290279423,290280447,290284799,290285567,290286079,290286335,290286591,290287103,290287615,290290687,290291711,290292223,290292735,290293247,290293759,290294271,290295295,290296831,290297343,290297855,290298879,290299391,290299903,290302463,290302719,290302975,290303999,290306047,290308095,290310143,290312191,290314239,290315263,290320383,290324479,290327039,290327295,290330111,290330367,290330623,290330879,290331135,290331391,290331647,290331903,290332159,290332927,290333183,290333439,290333951,290334719,290335743,290335999,290337279,290337535,290337791,290340863,290357759,290358015,290358271,290359295,290359551,290359807,290360319,290360575,290360831,290361087,290361343,290361599,290362367,290362623,290362879,290363135,290363391,290363647,290364159,290364415,290365695,290366207,290366719,290366975,290367231,290367487,290367743,290368511,290369023,290369791,290370047,290371071,290371327,290371583,290371839,290372095,290372607,290372863,290373119,290373631,290381823,290390015,290394111,290395135,290395647,290396159,290398207,290398719,290398975,290399231,290399487,290400255,290400767,290401023,290401279,290401535,290401791,290402047,290406399,290422783,290439167,290443263,290445311,290446335,290454527,290454783,290521599,290522623,290522879,290531071,290531327,290536447,290536703,290536959,290539007,290539263,290540031,290540287,290542591,290542847,290544127,290545151,290546943,290547967,290548223,290548735,290548991,290549247,290553855,290558207,290558463,290562047,290562303,290562559,290563071,290563327,290563583,290565375,290565631,290566143,290566399,290566655,290567679,290567935,290569727,290570239,290572031,290572287,290573055,290573311,290574079,290574335,290575103,290575359,290576127,290576895,290577407,290577919,290578431,290578687,290579711,290579967,290580735,290580991,290586623,290652159,290653695,290653951,290656255,290656511,290670591,290671615,290672639,290675199,290676479,290676735,290685951,290689535,290690047,290690303,290690559,290690815,290691071,290691583,290691839,290692095,290693119,290693631,290705407,290706943,290708479,290708991,290709503,290713599,290717183,290717439,290734079,290750463,290766847,290767871,290771199,290771711,290772991,290773503,290825215,290825471,290832383,290836479,290848767,290904063,290904575,290904831,290905087,290905599,290907135,290914303,290916351,290916607,290922495,290924543,290926591,290927103,290927359,290927615,290927871,290928127,290928383,290932735,290934783,290936831,290938879,290942975,290949119,290950399,290951167,290955263,290975743,290976255,290977023,290977279,290979839,290998271,290999039,290999295,290999807,291006463,291006975,291007487,291008511,291012095,291012607,291032575,291037183,291038207,291115007,291158015,291160063,291162111,291180543,291190783,291194879,291201023,291203071,291205119,291207167,291209215,291211263,291213311,291215359,291217407,291219455,291221503,291223551,291225599,291227647,291229695,291231743,291233791,291235839,291237887,291239935,291244543,291252223,291254271,291274751,291276799,291278847,291280895,291282943,291284991,291287039,291289087,291293183,291295231,291299327,291300863,291301375,291303423,291303935,291304191,291304447,291309567,291311615,291313663,291315711,291319807,291327999,291332095,291340287,291342335,291344383,291346431,291348479,291354623,291356671,291358719,291361791,291362815,291365887,291366911,291368959,291377151,291436543,292843519,292844543,292845567,292846591,292959231,292960255,292960767,292973567,292974591,292976639,292977663,292998143,292999167,293000191,293001215,293002239,293004287,293005311,293006335,293008383,293009407,293019647,293020671,293028863,293029375,293031935,293032959,293043199,293044223,293057535,293058559,293067775,293068799,293070847,293071871,293072895,293075967,293076991,293520127,293520383,293522175,293522431,293568511,293569279,293571583,293571839,293572607,293573119,293579007,293579263,293588991,293590015,293591039,293592063,293593087,293594111,293595135,293597183,293598207,293599231,293882111,293882367,293882623,293882879,293883391,293883647,293883903,293884159,293884415,293884671,293884927,297627647,297629695,300433407,300441599,300449791,300457983,300500991,300503039,300511231,300513279,300515327,300523519,300527615,300536831,300537343,300537599,300537855,300648447,300650495,300654591,300658687,300662783,300670975,300675071,300679167,301072383,301072895,301073151,301074943,301075199,301075455,301075711,301076479,301111295,301113343,301118207,301118463,301162495,301170687,301172735,301174783,301498367,301498623,301499647,301500415,301501439,301502207,301502463,301502719,301503743,301503999,301504255,301504511,301504767,301505023,301505279,301505535,301505791,301506303,301506559,301506815,301507071,301507327,301507583,301507839,301508095,301508607,301509119,301509375,301509631,301510143,301510655,301511167,301511679,301511935,301512191,301512447,301512703,301512959,301513471,301513727,301520639,301520895,301529087,301529343,301529599,301529855,301530111,301530367,301530623,301530879,301531135,301617151,301617663,301617919,301618175,301618431,301625599,301625855,301626367,301626879,301627391,301627903,301628415,301628671,301628927,301629183,301743615,301744127,301789183,301789695,301789951,301790207,301790463,301790719,301791487,301792255,301793023,301793279,301795839,301796095,301796863,301797375,301797887,301798143,301799423,301799935,301800447,301800959,301801983,301802239,301802495,301803007,301803519,301806591,301807103,301807359,301807615,301808127,301808639,301809151,301809663,301810175,301810687,301811711,301812223,301812735,301813247,301814271,301814783,301815807,301816319,301817343,301817855,301818367,301819391,301820415,301820927,301821439,301821951,301822463,301822975,301823487,301823743,301824255,301824511,301824767,304226303,304226815,304227327,304227583,304227839,304228607,304229375,304230399,304279551,304279807,304280319,304280575,304291839,304293119,304293375,304293631,304293887,304294143,304294399,304295167,304295423,304295679,304295935,304340991,304343039,304345087,304345599,304346111,305922047,306010623,306010879,306053119,306184191,306188031,306195711,306199551,306203391,306214911,306218751,306222591,306234111,306237951,306257151,306260991,306264831,306265087,306265343,306266111,306266623,306266879,306267135,306267903,306268415,306269183,306269439,306269695,306270207,306270463,306270719,306271487,306271743,306272511,306307071,306314751,306318591,306322431,306337791,306353151,306356991,306360831,306364671,306372351,306376191,306380031,306383871,306391551,306395391,306403071,306410751,306418431,306422271,306426111,306426879,306428415,306428927,306431487,306431743,306432767,306433279,306434047,306435327,306435583,306435839,306436095,306436351,306436607,306437631,306438911,306439423,306439679,306439935,306440191,306440703,306440959,306441215,306441471,306445311,306445567,306445823,306446079,306446335,306448383,306448639,306448895,306449151,306449407,306449663,306449919,306450175,306450431,306450687,306450943,306451967,306452223,306452735,306452991,306453247,306454271,306454527,306454783,306455039,306455295,306455551,306455807,306456063,306456319,306456575,306457087,306457599,306457855,306459391,306459647,306460159,306460671,306460927,306461183,306461439,306462463,306462719,306463999,306464255,306464511,306465791,306466047,306467839,306468095,306468351,306468607,306469119,306469375,306469631,306469887,306470143,306471167,306471423,306471679,306473471,306473727,306474239,306474495,306479359,306479615,306479871,306480383,306480639,306480895,306481151,306481407,306481663,306481919,306482175,306482431,306482687,306482943,306483199,306483455,306483967,306484223,306484479,306484735,306486271,306486527,306486783,307822591,307838975,308543487,308674559,308740095,310509567,310575103,310640639,310902783,310968319,311033855,311427071,312016895,312082431,312086271,312097791,312101631,312102911,312103167,312103423,312103679,312103935,312104191,312105215,312105471,312120831,312124671,312128511,312155391,312163071,312166911,312170751,312174591,312174847,312175103,312175359,312175871,312176127,312177663,312177919,312178175,312178431,312182271,312189951,312201471,312209151,312212991,312213503,312475647,312502015,312509695,312551935,312555775,312559615,312563455,312572671,312572927,312573439,312573695,312573951,312574207,312574463,312574719,312574975,312587007,312587775,312588287,312588799,312589055,312590335,312594175,312606719,312737791,312741631,312749311,312753151,312756991,312772351,312772607,312772863,312773119,312773375,312773631,312773887,312774143,312774655,312775167,312775423,312776191,312783871,312803071,312818431,312822271,312833791,312841471,312845311,312845823,312846079,312846335,312846847,312847103,312847359,312847615,312848895,312849151,312852991,312856831,312860927,312868607,312868863,312999935,313141247,313141503,313144831,313145087,313262079,313264895,313268735,313276415,313278975,313279231,313279487,313279743,313279999,313280255,313281535,313282047,313282559,313282815,313283071,313283327,313283583,313283839,313284095,313287935,313299455,313303295,313310975,313311487,313311743,313313535,313313791,313314047,313314303,313314815,313322495,313326335,313330175,313338367,313339135,313339647,313340159,313340927,313341183,313341695,313342207,313342719,313342975,313343487,313344511,313345023,313345535,313346815,313347071,313348351,313348607,313348863,313349375,313349887,313350399,313351679,313351935,313352191,313352447,313353471,313353983,313354239,313354495,313366271,313370111,313371903,313372159,313373439,313373951,313377791,313379071,313382911,313384191,313388031,313458687,313524223,314048511,314179583,314572799,314942719,314942975,315097087,315359231,316932095,317194239,317591295,317591551,317591807,317592063,317592831,317639935,317640191,317640447,317640703,317640959,317641215,317641471,317641727,317649663,317649919,317650175,317650431,317650687,317652223,317656063,317656319,317656575,317659903,317660159,317663999,317664255,317665023,317665279,317666303,317666559,317667071,317667583,317669631,317669887,317672703,317672959,317675519,317675775,317676031,317676287,317676543,317680639,317681663,317681919,317683455,317683711,317684479,317684735,317684991,317685247,317685759,317686015,317686527,317686783,317687295,317687551,317688063,317688319,317688831,317692671,317709055,317709567,317713407,317714943,317715199,317715455,317716479,317716735,317716991,317718527,317980671,317983231,317987327,317991423,317999871,318003967,318009087,318012927,318014207,318018047,318019327,318023167,318023679,318024191,318024447,318028287,318028543,318029055,318029567,318033407,318033663,318033919,318034431,318034687,318039295,318039551,318040063,318040319,318041087,318041599,318043903,318044159,318044415,318044671,318044927,318046975,318047487,318047743,318048511,318049279,318049535,318050047,318050303,318050559,318051071,318051839,318052607,318052863,318053119,318066687,318067711,318069503,318069759,318070527,318071039,318072831,318076415,318076671,318088959,318089471,318089727,318092799,318093055,318093567,318094335,318094591,318095103,318095615,318096127,318097919,318098175,318098943,318099199,318099711,318099967,318103039,318103295,318103551,318104831,318105087,318105343,318109183,318110207,318110463,318110719,318111231,318111487,318111743,335544319,335609855,335675391,335740927,335806463,335871999,335937535,335970303,336003071,336068607,336134143,336265215,336330751,336396287,336429055,336461823,336592895,336658431,336676863,336678911,336696319,336707583,336723967,336771071,336773119,336789503,336855039,336863231,336863487,336863743,336863999,336864255,336864511,336864767,336865023,336865279,336865535,336865791,336866047,336866303,336866559,336866815,336867071,336867327,336920575,336986111,337051647,337117183,337133567,337149951,337166335,337182719,337248255,337313791,337379327,337444863,337575935,337641471,337707263,337707775,337708287,337708543,337708799,337709055,337709311,337709567,337710079,337711103,337711359,337711615,337711871,337712127,337712383,337712639,337712895,337713151,337713407,337713663,337713919,337714175,337714431,337715455,337715711,337715967,337716223,337716479,337716735,337716991,337717247,337717503,337718015,337718271,337719039,337719295,337719551,337719807,337720063,337720319,337720575,337720831,337721087,337721343,337721599,337721855,337722111,337722367,337722623,337722879,337723135,337723391,337723647,337723903,337724159,337724415,337724671,337724927,337725183,337725439,337725695,337739775,337740031,337740287,337740543,337740799,337741055,337741311,337741567,337741823,337742079,337742335,337742591,337742847,337743103,337744127,337744383,337744639,337744895,337745151,337745407,337745663,337745919,337746175,337746431,337746687,337746943,337747455,337747711,337748223,337748479,337748735,337748991,337749503,337749759,337750015,337750271,337750527,337750783,337751039,337751295,337751551,337751807,337752063,337752319,337752575,337752831,337753087,337753343,337753599,337753855,337754111,337754367,337754879,337755135,337755391,337755647,337755903,337756159,337756415,337756671,337756927,337757183,337757439,337757695,337757951,337758207,337758719,337758975,337759231,337759487,337759999,337760255,337760511,337760767,337761023,337761791,337762047,337762559,337762815,337776895,337777151,337786367,337786623,337787391,337787647,337787903,337788415,337788671,337788927,337789695,337789951,337790719,337790975,337792511,337793023,337793279,337793791,337794303,337794559,337796863,337797119,337797375,337797631,337797887,337798143,337799167,337799423,337799679,337800191,337801215,337801727,337805567,337805823,337808127,337808383,337808639,337808895,337810431,337810687,337811199,337811455,337812223,337812479,337812735,337812991,337813503,337814015,337816575,337816831,337820415,337820671,337822463,337822719,337822975,337823231,337823743,337824255,337825023,337825279,337826047,337826303,337828095,337828351,337828607,337828863,337829631,337829887,337830399,337830655,337830911,337831679,337832959,337833727,337834495,337834751,337835775,337836287,337837055,337837311,337838847,337839103,337841919,337842175,337842431,337843455,337843711,337843967,337844223,337844735,337844991,337845247,337847039,337847551,337848063,337848319,337849855,337850367,337850623,337850879,337853439,337853695,337853951,337854207,337854463,337854719,337855743,337856255,337856511,337856767,337857535,337857791,337858303,337858815,337859071,337859327,337859839,337860351,337862399,337862911,337864447,337864703,337865471,337865727,337869311,337869567,337872127,337872383,337873919,337874175,337878783,337879295,337880831,337881087,337882879,337883391,337883903,337884159,337884671,337884927,337885695,337885951,337891839,337892095,337892607,337892863,337893887,337894143,337895423,337895679,337896959,337897471,337898239,337898495,337901823,337902079,337911807,337928191,337930239,337936383,337969151,337985535,337993727,338001919,338018303,338034687,338038783,338039039,338039295,338039551,338040063,338040319,338040575,338040831,338041087,338041343,338041599,338041855,338051071,338059263,338060799,338061311,338061823,338062335,338062847,338063359,338063871,338064127,338064383,338064895,338065151,338065407,338065663,338065919,338066431,338066943,338069503,338071551,338073599,338075647,338081791,338082815,338083839,338084863,338085887,338086911,338116607,338120703,338124799,338132991,338137087,338143231,338145279,338147327,338153471,338159615,338165759,338169855,338171903,338173951,338175999,338182143,338188287,338192383,338194431,338196479,338198527,338206719,338214911,338247679,338264063,338280447,338296831,338345983,338362367,338370559,338378751,338386943,338391039,338393087,338395135,338411519,338434047,338436095,338444287,338460671,338477055,338493439,338509823,338518015,338526207,338530303,338534399,338542591,338567167,338575359,338583551,338587647,338591743,338595839,338599935,338608127,338616319,338626303,338626559,338626815,338627071,338627327,338627583,338627839,338629119,338629631,338630143,338631167,338631423,338631679,338631935,338632191,338632447,338632703,338632959,338633215,338633471,338634495,338634751,338635263,338635519,338635775,338636031,338636287,338636799,338637311,338637823,338638079,338638335,338638847,338639103,338639359,338640895,338641151,338641407,338641663,338641919,338642175,338642687,338642943,338643455,338643967,338644991,338645503,338646015,338646527,338646783,338647295,338647551,338648063,338648575,338649087,338649599,338649855,338650111,338650367,338650623,338650879,338651135,338652927,338653183,338653439,338653695,338653951,338654207,338654463,338654719,338654975,338655743,338656255,338656767,338657279,338690047,338722815,338745343,338747391,338755583,338788351,338821119,338837503,338843647,338845695,338853887,338886655,338952191,338972671,338974719,339017727,339025919,339027967,339083263,339116031,339148799,339214335,339279871,339345407,339378175,339410943,339478527,339478783,339479039,339479295,339479551,339479807,339480063,339480319,339480575,339480831,339481087,339481343,339481599,339481855,339482111,339482623,339483135,339483647,339484671,339485183,339485695,339486207,339486719,339487231,339487743,339487999,339488255,339490303,339490815,339494911,339495935,339496959,339497983,339498495,339499007,339500031,339500543,339501055,339501567,339502591,339502847,339503359,339503615,339503871,339504127,339504383,339504639,339505151,339505407,339505919,339506687,339506943,339507967,339509247,339509759,339510015,339510271,339511295,339511551,339511807,339512319,339512831,339513343,339513855,339514879,339515391,339516415,339516927,339518463,339519487,339519999,339520511,339521023,339522047,339523071,339523583,339524095,339524607,339525119,339525631,339526143,339526655,339527167,339527679,339528703,339529215,339529727,339530239,339530751,339531263,339531775,339532287,339533311,339533823,339534335,339534847,339536383,339536895,339538431,339538943,339539455,339539967,339540479,339540991,339541503,339542015,339607551,339673087,339705855,339738623,339935231,339967999,340000767,340066303,340131839,340197375,340262911,340328447,340393983,340426751,340459519,340525055,340590591,340656127,340721663,340787199,340918271,340951039,340983807,341180415,341245951,341311487,341377023,341442559,341508095,341573631,341639167,341671935,341704703,341774591,341774847,341775359,341775615,341777663,341777919,341780479,341782527,341782783,341783039,341786623,341786879,341787135,341787391,341787647,341788159,341788415,341788671,341789183,341789695,341790207,341790975,341791231,341791999,341792255,341792511,341792767,341794815,341795327,341795583,341796351,341796607,341796863,341797119,341797375,341797631,341797887,341798399,341803007,341803263,341803519,341803775,341804031,341804287,341804543,341805055,341805311,341805567,341805823,341806079,341806335,341806591,341819391,341822719,341823487,341823743,341827583,341827839,341831679,341831935,342097919,342163455,342228991,342294527,342360063,342425599,342458367,342491135,342556671,342589439,342622207,342687743,342818815,342851583,342949887,343015423,343146495,343212031,343277567,343605247,343638015,343670783,343801855,343867391,344260863,344261119,344396799,344397311,344397823,344398335,344398847,344399359,344399871,344400383,344400895,344401407,344401919,344402431,344403967,344404479,344406015,344406527,344407039,344407551,344408063,344408575,344409087,344411135,344411647,344413183,344414719,344417791,344419327,344420863,344422399,344424447,344425983,344427519,344429055,344430591,344432127,344433663,344435199,344436735,344438271,344439807,344451583,344452607,344453119,344453375,344453631,344455167,344455679,344456703,344489983,344490495,344651519,344651775,344674303,344678399,344726015,344726271,344727039,344727295,344740351,344740863,344741119,344741375,344741631,344741887,344763647,344763903,344764159,344764415,344779263,344779775,344780543,344780799,344916223,344916479,344916735,344916991,344917503,344918015,344919295,344919551,344920063,344921087,344922111,344922623,344923135,344923647,344924159,344924671,344925951,344926207,344927231,344927743,344928255,344928767,344929279,344929791,344930303,344931839,344932351,345374719,345374975,345375231,345375743,345376255,345376767,345377279,345377791,345378303,345378815,345379071,345379327,345379583,345379839,345380095,345380351,345380607,345380863,345381119,345381375,345381631,345381887,345382143,345382655,345382911,345384191,345384447,345384959,345385215,345385471,345385727,345385983,345386495,345386751,345387263,345388031,345388287,345388543,345388799,345389055,345389311,345389823,345390079,345390335,345390591,345390847,345391103,345391615,345391871,345392383,345392639,345392895,345393151,345393407,345393663,345393919,345394175,345394431,345395199,345395455,345395967,345396223,345396479,345396735,345396991,345398271,345398527,345399295,345399551,345399807,345400063,345400319,345400575,345400831,345401087,345401343,345401599,345401855,345402111,345402623,345402879,345403135,345403391,345403647,345403903,345404159,345404415,345404671,345404927,345405183,345405439,345405695,345405951,345406207,345406463,345406719,345406975,345407231,345407487,345440255,345505791,345507839,345508351,345508863,345509887,345510911,345512447,345833471,345833983,345834495,345835007,345835519,345836543,345837567,345837823,345838079,345838335,345838591,345838847,345839359,345839615,345840127,345840383,345840639,345840895,345841151,345841407,345841663,345841919,345842175,345843199,345843455,345844223,345844479,345844735,345845247,345845503,345846783,345847039,345847295,345847551,345847807,345848063,345848831,345849087,345852415,345852671,345852927,345855231,345855487,345856255,345856511,345857023,345857279,345857535,345857791,345858303,345858559,345858815,345859071,345859327,345859583,345859839,345860095,345860863,345861119,345861375,345861887,345862143,345862399,345862655,345862911,345863167,345863423,345863679,345863935,345864191,345864447,345864703,345864959,345865215,345865727,345865983,345866239,345866495,345866751,345867007,345867263,345867519,345867775,345868031,345868543,345868799,345869055,345869311,345869567,345869823,345870335,345870591,345870847,345871103,345871359,345871615,345871871,345872383,345872895,345873151,345873407,345873663,345873919,345874175,345874431,345874687,345874943,345875199,345875711,345875967,345876479,345876735,345876991,345877247,345877759,345878271,345878527,345878783,345879039,345879295,345879551,345880063,345880319,345880575,345881087,345881343,345881855,345882111,345882367,345882623,345883135,345883391,345883903,345884159,345884415,345884671,345884927,345885439,345885695,345885951,345886207,345886463,345886719,345886975,345887231,345887743,345887999,345888255,345888511,345889023,345889279,345889535,345889791,345890047,345890303,345890559,345890815,345891071,345891327,345891583,345891839,345892095,345892351,345892607,345892863,345893119,345893631,345894143,345894399,345894655,345895167,345895423,345895679,345895935,345896191,345896447,345896703,345896959,345898495,345898751,345899007,345933055,345933567,345986047,345986303,345986815,345987327,345987583,345987839,345988095,345988351,345988607,345988863,346022399,346022655,346023423,346023679,346023935,346024191,346025471,346025727,346025983,346026239,346027007,346027263,346028287,346028543,346029055,346029311,346030079,346095615,346161151,346226687,346292223,346357759,346423295,346488831,346554367,346685439,346750975,346882047,346947583,347013119,347078655,347602943,347619327,347815935,347850751,347856895,347865087,347873279,347881471,347889663,347897855,347930623,347947007,347963391,347979775,347996159,348012543,348020735,348028927,348029183,348029439,348031231,348031487,348031743,348031999,348032255,348032511,348032767,348033023,348033279,348033535,348033791,348034047,348034303,348036863,348037119,348037375,348037887,348038143,348038399,348038911,348039423,348040447,348040703,348041471,348041983,348042495,348043007,348043519,348044031,348044543,348044799,348045055,348045311,348061695,348078079,348094463,348102655,348110847,348127231,348192767,348225535,348258303,348291071,348323839,348342271,348344319,348346367,348348415,348356607,348357631,348358655,348389375,348405759,348454911,348471295,348487679,348520447,348553215,348585983,348618751,348651519,348684287,348717055,348749823,348750079,348750847,348751615,348752127,348752895,348753663,348754431,348754687,348755199,348755711,348756479,348756735,348756991,348757503,348758271,348758527,348782591,348782847,348783103,348783359,348783871,348785663,348787711,348792831,348793087,348793343,348793599,348795391,348796927,348797439,348797695,348797951,348798207,348798975,348799231,348799487,348799999,348800255,348800767,348801023,348801279,348801791,348802559,348803071,348804095,348804607,348805375,348805887,348806399,348806911,348807423,348807935,348808191,348808703,348809215,348809471,348809983,348810239,348810495,348811007,348811263,348811519,348812031,348812287,348812543,348813055,348813311,348815103,348815359,348815615,348816127,348816383,348816639,348817151,348817407,348817663,348818175,348818431,348818687,348820991,348821247,348821503,348821759,348822015,348822271,348822527,348822783,348823039,348823295,348823551,348823807,348824063,348824319,348824575,348824831,348825087,348825343,348825599,348825855,348826111,348826367,348827647,348828927,348829439,348829695,348836607,348840447,348843519,348845055,348845311,348846079,348846335,348847103,348847871,348848127,348880895,348913663,348979199,349001727,349003775,349016063,349044735,349110271,349175807,349241343,349241855,349242367,349242879,349243391,349243903,349244415,349244927,349245439,349245951,349246463,349246975,349247487,349247999,349248511,349249023,349249535,349250047,349252095,349253119,349253631,349254143,349254655,349255167,349255679,349256191,349256703,349257215,349257727,349258239,349258751,349259263,349259775,349260287,349260799,349261311,349261823,349262335,349262847,349263359,349263871,349264383,349265407,349265919,349266431,349267967,349268479,349268991,349269503,349271551,349272063,349272575,349273087,349273599,349274111,349274623,349275135,349275647,349276159,349277183,349277695,349278207,349278719,349280255,349280767,349281279,349281791,349282303,349282815,349283327,349283839,349284351,349284863,349285375,349285887,349286399,349286911,349287935,349288447,349289471,349289983,349290495,349291007,349292031,349292543,349293055,349293567,349294079,349294591,349295103,349295615,349296127,349296639,349297151,349297407,349297663,349298175,349298687,349299711,349300223,349300735,349301247,349302271,349302783,349303295,349303807,349304319,349304831,349305343,349305855,349306367,349306879,349372415,349437951,349503487,349569023,349634559,349700095,349732863,349759487,349765631,349774847,349775871,349790207,349798399,349800447,349806591,349822975,349831167,349896703,349962239,350027775,350093311,350158847,350224383,350289919,350355455,350420991,350437375,350453759,350486527,350552063,350617599,350715903,350716159,350716415,350716671,350716927,350717183,350717439,350717695,350717951,350718207,350718463,350718719,350718975,350719231,350719487,350719743,350719999,350720255,350814207,350879743,350912511,350945279,351010815,351141887,351174655,351207423,351272959,351297535,351305727,351338495,351469567,351535103,351600639,351731711,351764479,351797247,351862783,351928319,351993855,352059391,352190463,352255999,352321535,385898495,385900543,385904639,385916927,385917183,385917439,385917695,385917951,385918975,385920511,385920767,385921023,385925119,385927167,385928191,385930239,385931263,385932287,385933311,385935359,385935871,385939967,385940479,385942527,385943551,385944575,385945599,385946623,385950463,385950719,385951743,385957887,385961983,385966079,385966335,385969151,385970175,385978367,385982463,385990655,385994751,385998847,386000127,386000383,386002943,386003199,386006527,386006783,386007039,386009855,386010111,386010367,386010623,386010879,386011135,386011391,386011903,386012159,386016255,386017279,386020351,386021375,386031615,386035711,386052095,386056191,386060287,386068479,386073087,386073343,386073599,386074111,386075647,386075903,386076159,386076415,386084863,386088959,386090239,386090495,386091007,386091263,386091775,386092031,386093055,386094079,386095103,386095615,386096127,386097919,386098175,386098687,386099455,386099711,386099967,386100223,386101247,386105343,386106367,386107903,386109439,386117631,386125823,386134015,386138111,386154495,386158591,386160639,386161663,386161919,386170879,386179071,386207743,386211839,386228223,386232319,386244607,386244863,386245119,386245631,386245887,386246143,386247679,386248703,386269183,386273279,386289663,386293759,386297855,386298879,386319871,386320127,386322431,386326527,386330623,386334719,386338815,386371583,386375679,386379775,386387967,386392063,386396159,386397183,386397695,386398207,386408447,386412543,386437119,386441215,386445311,386449407,386457599,386461695,386465791,386469887,386473983,386478079,386482175,386486271,386490367,386494463,386498559,386502655,386506751,386514943,386519039,386523135,386527231,386531327,386535423,386539519,386543615,386547711,386551807,386564095,386580479,386588671,386592767,386593279,386593791,386594815,386595071,386595327,386609151,386613247,386617343,386621439,386625535,386633727,386635263,386635519,386637823,386648063,386648319,386648575,386649087,386649599,386649855,386651135,386651391,386651647,386652159,386657023,386657279,386658303,386659327,386674687,386682879,386686975,386691071,386695167,386699263,386700799,386702335,386703359,386711551,386727935,386732031,386736127,386740223,386744319,386756863,386757887,386758143,386759167,386759935,386760703,386774527,386775039,386777087,386783231,386783743,386783999,386784255,386797567,386806783,386808831,386809855,386813951,386814463,386815743,386815999,386816511,386816767,386817023,386822143,386826239,386826751,386827007,386827263,386828287,386829311,386842623,386846719,386862335,386862591,386862847,386863103,386867199,386867455,386868223,386868479,386868735,386869759,386871295,386883583,386887679,386892799,386893311,386894335,386894591,386895871,386899967,386904063,386904319,386904831,386905087,386906111,386907135,386907647,386908159,386908671,386909183,386920959,386921471,386921727,386922495,386923519,386924543,387055615,387133439,387134463,387135487,387137535,387588351,387588607,387588863,387589119,387589887,387590143,387590399,387590655,387590911,387591167,387591679,387591935,387593215,387593471,387593983,387594239,387595263,387595519,387596287,387596799,387597311,387597567,387598079,387598335,387599871,387600127,387600383,387600895,387601151,387601407,387602431,387602687,387602943,387603455,387603711,387604479,387605247,387605503,387605759,387606527,387606783,387607295,387607551,387607807,387608063,387608319,387608831,387609087,387609343,387609599,387610623,387610879,387611647,387611903,387613183,387613439,387615487,387615743,387615999,387616511,387617279,387617535,387617791,387618559,387618815,387620351,387620607,387620863,387629055,387629311,387629567,387629823,387630079,387630591,387630847,387631871,387632127,387632383,387632639,387635199,387635455,387636223,387636735,387637247,387637503,387637759,387639295,387639551,387639807,387640063,387641087,387641343,387643135,387643391,387643647,387644415,387644671,387644927,387645183,387645439,387645695,387645951,387646207,387647231,387647487,387647999,387648255,387648511,387648767,387649023,387649535,387649791,387650815,387651071,387652607,387652863,387656703,387656959,387671039,387671295,387671551,387674111,387674367,387676671,387676927,387677183,387677439,387678975,387679231,387679743,387679999,387681023,387681279,387688703,387688959,387689471,387689727,387693823,387694079,387694335,387695359,387695615,387695871,387696127,387696383,387696639,387700735,387700991,387702271,387702527,387702783,387703039,387703295,387708415,387708671,387709695,387709951,387710207,387710463,387825663,387833855,387973119,387973375,387973887,387974143,387974399,387974655,387975167,387975679,387976191,387976703,387977727,387978239,387978495,387978751,387979263,387980287,387980543,387980799,387981055,387981311,387982335,387983359,387983871,387984383,387985407,387986431,387987455,387987711,387987967,387988479,387988735,387988991,387989503,387989759,387990015,387990271,387990527,387990783,387991039,387991295,387991551,387991807,387992063,387992319,387992575,387993599,387994623,387995647,387996159,387996415,387996671,387997695,387999743,388000767,388001791,388002815,388008959,388009983,388011007,388012031,388018175,388019199,388019455,388020223,388021247,388022271,388027391,388028415,388029439,388030463,388031487,388032511,388033535,388033791,388034047,388034559,388034815,388035071,388035583,388036607,388036863,388038655,388042751,388045567,388045823,388046591,388046847,388047359,388047871,388048895,388050943,388051967,388052991,388054015,388055039,388059135,388059647,388061695,388061951,388062463,388063231,388063743,388064511,388065023,388065279,388066303,388067327,388067583,388067839,388068095,388068863,388069119,388069375,388070399,388070655,388070911,388071167,388071423,388071935,388072447,388075007,388075519,388079615,388080639,388084223,388084735,388085759,388086271,388087807,388091903,388092927,388093695,388093951,388094975,388095999,388097023,388098047,388099071,388099583,388099839,388100095,388101119,388102143,388104191,388105215,388106239,388108287,388110335,388111359,388112383,388116479,388117503,388120063,388120319,388124671,388124927,388125183,388125695,388126719,388128767,388132863,388136959,388137983,388139007,388139263,388139519,388140031,388141055,388145919,388146175,388147199,388148223,388148479,388149247,388153343,388157439,388161535,388163583,388164607,388165631,388166655,388166911,388167167,388167679,388168703,388173823,388174847,388175871,388176639,388176895,388177919,388184063,388184319,388185855,388186111,388186367,388186623,388190207,388194303,388195327,388196351,388196863,388197375,388197887,388202495,388206591,388207103,388207615,388207871,388208127,388208639,388214783,388216831,388217855,388218879,388220927,388222975,388223999,388225023,388225279,388225535,388225791,388226047,388227071,388231167,388232191,388233727,388236287,388237311,388239359,388240383,388241407,388243455,388244479,388247551,388248575,388251135,388251647,388251903,388252159,388254719,388255743,388259839,388263935,388264959,388265983,388268031,388270079,388272127,388272383,388272639,388273151,388275199,388277247,388277759,388278015,388278271,388279295,388280575,388280831,388281599,388281855,388282367,388283391,388284415,388285439,388286463,388288511,388290559,388290815,388291071,388291583,388292607,388293631,388294143,388294399,388294655,388296703,388296959,388297215,388297727,388298751,388299775,388300799,388302847,388304895,388305919,388306943,388308991,388312575,388313087,388317183,388321279,388322303,388323327,388324351,388324863,388330495,388331519,388331775,388333567,388337663,388341759,388345855,388349951,388354047,388358655,388358911,388359167,388359679,388361215,388362239,388366335,388370431,388378623,388382719,388384767,388385791,388386815,388387839,388390911,388391423,388391935,388392191,388392447,388392959,388393983,388394495,388395007,388396031,388396543,388397055,388397311,388397567,388398079,388398847,388399103,388403199,388407295,388408831,388409087,388410367,388411391,388412415,388413439,388416255,388416511,388417023,388417535,388418559,388419583,388423679,388427775,388428799,388429055,388429311,388432895,388433407,388433919,388435967,388438015,388440063,388444671,388444927,388445183,388446207,388447231,388448255,388448767,388449279,388449535,388450047,388450303,388450815,388451839,388452351,388458495,388459519,388460031,388460543,388464639,388471039,388471295,388471807,388472831,388473087,388473599,388475135,388475391,388475903,388476159,388476415,388481023,388485119,388485631,388485887,388486143,388487167,388488191,388488447,388489215,388490239,388491263,388492287,388492799,388493311,388501503,388505599,388507903,388508415,388508671,388509695,388511231,388511743,388513023,388513279,388514303,388514815,388515839,388516863,388517887,388521983,388523263,388523519,388524031,388525055,388526079,388527103,388528127,388529151,388530175,388532223,388533247,388534271,388535295,388537343,388538367,388540415,388542463,388542975,388545535,388545791,388546047,388546303,388546559,388547583,388548607,388549631,388550655,388554751,388558847,388559871,388560127,388560383,388560639,388560895,388561919,388562943,388563967,388565503,388565759,388566015,388567039,388567295,388567551,388568063,388569087,388570111,388571135,388575231,388579327,388583423,388587519,388588543,388589567,388590591,388591615,388592639,388593663,388594687,388595711,388599807,388603903,388604927,388605695,388605951,388606975,388607999,388608511,388608767,388609023,388609535,388610047,388610303,388610559,388610815,388611071,388612095,388616191,388617215,388618239,388619263,388620287,388624383,388625919,388626431,388627455,388627967,388628479,388632575,388636671,388640767,388641023,388641279,388641535,388644351,388644607,388644863,388648959,388653055,388657151,388661247,388665343,388666367,388666879,388667135,388667391,388668415,388668927,388669439,388673535,388677631,388679679,388681727,388685823,388689919,388694015,388698111,388703231,388704255,388705279,388706303,388706815,388707327,388708351,388709375,388710399,388714495,388716031,388716287,388721663,388722687,388724735,388725503,388725759,388726783,388730879,388734975,388735231,388735487,388735999,388736255,388736511,388737023,388738559,388739071,388751359,388753407,388755455,388755711,388755967,388756479,388757503,388757759,388758527,388759551,388761087,388761343,388761599,388762111,388762623,388763647,388767743,388771839,388772095,388772607,388773887,388774911,388775935,388776959,388777983,388784895,388785151,388787199,388787711,388788223,388792319,388794879,388795135,388795391,388796415,388798463,388800511,388802559,388802815,388803583,388803839,388804095,388804351,388804607,388808703,388809727,388810751,388814079,388814591,388814847,388815871,388816895,388817151,388818687,388818943,388819967,388820223,388826111,388827135,388827647,388828159,388828671,388829183,388834303,388834815,388837119,388837375,388837631,388837887,388841471,388842239,388842495,388843519,388844543,388844799,388845055,388845567,388846591,388847615,388847871,388848383,388848639,388849407,388849663,388853759,388854271,388854527,388854783,388855039,388855807,388856063,388856319,388856575,388856831,388857343,388857599,388857855,388858367,388859903,388860927,388861951,388863999,388864511,388864767,388865023,388866047,388868095,388869119,388869631,388870143,388870399,388870655,388870911,388871167,388872191,388873215,388875263,388876287,388876799,388877311,388878335,388883455,388884479,388884735,388884991,388885247,388885503,388886527,388890623,388891135,388891647,388892159,388892671,388892927,388893183,388893695,388894207,388894719,388894975,388895231,388895743,388896255,388896767,388897791,388898815,388902911,388903679,388903935,388904959,388906751,388907007,388911103,388915199,388919295,388923391,388927487,388928255,388928511,388929535,388929791,388930303,388930559,388931583,388932607,388933631,388934655,388935167,388938495,388938751,388940799,388941823,388942847,388943615,388943871,388944127,388944383,388946943,388947967,388949247,388949503,388949759,388950015,388953087,388954111,388955135,388956159,388957183,388958207,388960255,388964351,388968447,388974847,388975615,388976127,388976639,388980735,388984831,388985855,388986879,388987391,388988159,388988415,388988671,388993023,388993535,388994047,388994303,388994559,388996607,388997119,388998143,388998655,389004287,389004799,389005055,389005311,389006335,389007359,389009151,389009407,389011455,389013503,389021695,389022719,389022975,389023231,389023743,389024767,389025279,389025791,389027327,389027839,389028863,389029887,389031935,389032959,389033983,389035007,389037055,389038079,389043711,389044223,389045247,389045759,389046015,389046783,389048831,389049087,389049343,389050367,389052415,389053439,389058559,389059583,389060095,389060607,389061631,389063167,389063935,389064191,389064703,389064959,389065215,389065471,389065727,389065983,389066239,389066495,389066751,389070847,389071871,389072895,389073151,389073407,389073663,389076223,389076479,389076735,389078015,389079039,389079295,389079807,389080063,389081087,389082111,389083135,389084159,389084671,389085695,389086207,389089279,389090303,389091327,389095423,389099519,389100031,389100543,389101567,389102591,389102847,389103103,389103615,389105663,389107711,389111807,389112831,389114111,389114367,389114879,389115903,389119999,389124095,389128191,389132287,389136383,389140479,389148671,389149695,389150719,389152767,389153791,389155327,389155839,389156863,389160959,389163007,389165055,389165311,389166591,389166847,389167103,389167359,389167615,389167871,389168127,389168895,389169151,389173247,389177343,389181439,389182719,389182975,389183487,389183743,389183999,389185535,389185791,389186047,389186303,389186559,389187583,389188095,389188351,389188607,389189631,389201919,389206015,389210111,389210623,389211135,389212159,389212415,389213183,389214207,389218303,389220351,389221375,389221887,389222143,389222399,389223423,389224191,389224447,389224703,389225471,389226495,389230591,389231615,389233663,389234687,389238783,389242879,389246975,389251071,389255167,389259263,389263359,389267455,389271551,389272575,389273599,389274623,389275647,389279743,389283839,389284607,389284863,389285887,389287423,389287679,389287935,389292031,389293055,389294079,389294335,389295103,389296127,389300223,389300991,389301247,389301759,389302015,389302271,389302527,389303295,389304319,389305343,389306367,389308415,389308927,389309183,389310975,389311231,389311487,389312511,389313535,389314559,389315583,389316607,389317119,389317631,389318143,389318399,389319167,389319423,389319679,389327359,389327615,389327871,389328639,389328895,389329919,389330943,389331967,389332991,389335039,389336063,389341183,389349375,389349631,389349887,389350143,389350399,389350655,389350911,389351167,389351423,389351679,389351935,389352191,389352703,389353215,389353471,389357567,389357823,389358079,389358591,389359615,389360639,389363711,389365759,389367807,389369855,389378047,389379327,389379583,389380095,389380351,389382143,389386239,389390335,389392383,389393407,389394431,389398527,389402623,389404671,389406719,389407999,389408767,389409791,389410815,389411071,389412863,389413375,389413887,389414911,389419007,389419519,389420031,389421055,389422591,389422847,389427199,389428223,389429247,389430271,389431295,389431551,389432319,389433343,389434111,389435135,389435391,389439487,389443583,389444607,389444863,389445375,389445631,389446655,389446911,389447167,389447423,389447679,389451775,389452287,389452543,389454591,389454847,389455359,389455615,389455871,389457407,389457919,389458943,389459967,389464063,389465087,389467647,389468159,389472255,389476351,389478399,389480447,389484543,389488639,389489663,389490175,389490431,389491711,389491967,389492223,389492735,389492991,389493247,389493503,389493759,389494783,389495039,389496831,389505023,389506047,389507327,389507583,389507839,389508095,389508351,389508863,389509119,389509631,389510143,389511167,389513215,389513727,389515263,389516287,389517311,389521407,389522431,389525503,389525759,389526527,389527551,389534719,389535231,389537279,389537535,389537791,389539839,389540095,389540351,389542399,389542655,389542911,389543935,389547775,389548031,389550079,389551103,389554175,389562367,389570559,389570815,389571071,389571327,389571583,389571839,389572095,389572863,389573119,389578751,389579263,389580031,389580287,389580543,389580799,389581055,389581311,389581823,389582591,389582847,389586943,389587967,389588991,389589503,389590015,389590527,389590783,389592063,389593087,389594111,389595135,389597183,389599231,389600767,389602303,389603327,389603839,389604095,389604351,389606911,389607167,389607423,389611519,389612543,389613567,389614079,389614335,389614591,389615615,389619711,389627903,389628415,389628671,389628927,389629183,389629439,389629951,389631231,389631487,389631999,389633023,389634047,389634303,389635071,389636095,389636863,389637119,389637375,389637631,389637887,389638143,389638399,389638655,389638911,389639423,389639679,389639935,389640191,389641215,389642239,389643263,389644287,389652479,389660671,389698047,389698303,389698559,389699071,389699583,389699839,389700863,389701119,389701375,389701631,389705727,389706751,389707775,389708031,389709055,389709311,389709567,389709823,389711615,389711871,389712127,389712383,389712895,389713919,389714175,389714431,389714687,389714943,389715967,389716991,389717503,389717759,389718015,389726207,389727231,389728255,389730303,389730559,389730815,389732351,389733375,389733631,389733887,389734399,389742591,389746687,389748479,389748735,389749759,389750783,389758975,389759999,389761023,389761279,389763071,389763327,389764095,389765119,389765631,389767167,389769215,389771263,389775359,389779455,389782015,389783551,389783807,389784063,389784319,389784575,389785599,389785855,389786111,389786367,389786623,389787135,389787391,389787647,389788159,389788415,389788927,389789183,389789695,389791743,389795839,389796863,389797119,389797375,389797631,389797887,389800703,389800959,389801983,389802751,389803007,389804031,389807103,389807615,389807871,389810175,389811199,389811711,389811967,389812223,389825791,389826047,389826559,389827583,389828095,389828607,389829631,389833727,389834751,389835775,389836799,389846015,389847039,389848063,389848575,389849087,389850111,389851135,389851391,389851647,389852159,389852415,389852671,389853183,389857279,389861375,389861631,389861887,389862655,389862911,389863423,389863935,389864191,389873663,389873919,389874175,389874687,389875711,389876223,389890047,389894143,389895167,389895679,389902335,389903359,389903871,389905407,389906431,389914623,389924863,389925375,389925631,389925887,389926143,389926399,389929983,389931007,389936127,389936383,389936639,389936895,389937663,389937919,389938175,389938431,389939199,389940223,389940479,389940735,389941247,389941503,389941759,389942271,389942783,389943295,389944319,389944831,389949439,389950463,389951487,389951743,389952767,389953023,389953535,389954559,389954815,389955071,389964031,389964287,389965055,389965311,389966335,389966591,389966847,389967359,389967871,389976063,389977087,389977599,389978111,389978623,389979135,389979647,389985279,389986047,389986303,389987327,389988351,389990399,389992447,389993471,389993727,389993983,389995519,389996543,389996799,389997055,389997567,389997823,389998335,389998591,389999615,390000127,390000639,390010367,390012671,390012927,390021119,390025215,390026239,390026495,390026751,390028287,390029311,390030335,390030847,390032383,390033407,390043135,390053887,390054911,390060031,390062079,390062591,390063103,390064127,390064383,390064639,390064895,390066175,390069247,390070271,390070783,390073343,390073599,390074367,390082559,390084607,390085375,390085631,390101247,390101503,390101759,390102015,390102527,390103039,390103551,390104575,390105087,390105599,390106111,390106367,390106623,390107135,390127615,390131711,390141439,390141695,390143231,390143487,390143999,390148095,390152191,390160383,390161151,390161407,390161919,390162175,390162687,390162943,390163199,390163711,390163967,390164479,390165503,390166527,390167551,390167807,390168063,390168575,390172671,390181887,390183935,390184191,390184447,390184703,390184959,390189055,390204415,390205439,390209535,390212095,390212607,390213119,390227455,390227967,390230015,390233343,390233599,390233855,390238207,390238719,390239231,390241791,390260991,390261247,390270975,390275071,390275327,390275583,390275839,390276095,390276351,390276607,390276863,390277119,390277375,390277631,390278143,390278399,390278655,390278911,390279167,390279935,390280191,390280447,390280703,390280959,390281471,390281727,390282751,390283007,390285311,390286335,390299647,390303743,390304767,390305279,390305791,390307839,390311935,390329343,390329855,390602751,390604287,390606079,390606335,390606591,390606847,390630143,390630399,390652415,390652927,390655999,390658047,390658815,390659071,390660351,390661631,390661887,390662143,390663167,390665215,390666751,390667263,390684671,390692863,390693887,390694143,390694911,390695935,390696447,390713343,390713599,390713855,390714367,390715135,390715647,390729471,390729727,390731775,390766591,390767615,390768639,390769663,390770687,390795263,390795519,390795775,390796287,390796543,390796799,390797055,390797311,390807551,390808575,390845439,390846463,390846975,390881279,390882303,390884351,390885375,390895871,390896127,390896639,390897151,390897407,390901759,390905855,390906879,390907903,390908927,390909183,390909439,390909951,390922239,390930431,390945791,390946815,390955007,390963199,390965247,390965759,390966015,390971391,390971903,390972415,390972927,390973439,390974463,390974719,390976511,390977023,390977535,390978047,390985727,390986751,390991871,390995967,391004159,391023615,391024127,391043071,391044095,391073791,391077887,391086079,391110655,391110911,391111935,391112191,391112703,391112959,391115263,391115519,391116031,391116287,391116543,391116799,391194623,391194879,391195135,391196671,391331839,391333887,391344127,391348223,391368703,391372799,391524351,391527423,391528447,391546879,391553023,391555071,391557119,391559167,391560959,391561215,391643135,391675903,391692287,391700479,391758335,391758591,391761919,391762175,391765247,391765503,391787007,391787519,391790591,391791615,391791871,391798783,391799295,391800319,391800575,391800831,391801087,391801343,391801599,391802367,391802623,391802879,391803391,391803647,391803903,391804159,391804415,391804927,391805439,391805695,391805951,391806975,391811071,391815167,391817215,391818239,391818751,391819263,391820287,391821311,391821823,391822335,391823359,391839743,391846143,391846399,391860223,391864319,391867391,391867647,391868159,391868415,391872511,391888895,391897087,391905279,391934719,391934975,391937535,391937791,391938047,391946239,392062207,392062463,392063231,392063487,392063743,392063999,392067071,392067327,392070655,392070911,392072959,392073215,392091647,392092159,392092415,392092927,392245247,392249343,392257535,392261887,392262655,392265727,392298495,392306687,392310015,392310271,392310527,392312831,392313087,392314879,392331263,392388607,392396799,392429567,392433663,392441855,392445951,392452095,392454143,392458239,392460287,392462335,392478719,392495103,392499199,392503295,392507391,392511487,392515583,392548351,392560639,392577023,392585215,392611839,392612351,392617983,392626175,392659967,392660223,392660479,392660735,392661759,392662015,392662271,392662527,392662783,392667135,392671231,392672767,392673023,392674815,392675071,392683519,392683775,392684287,392684543,392684799,392685055,392685567,392685823,392686079,392686335,392686591,392687103,392687359,392687615,392687871,392688127,392688383,392688639,392688895,392689151,392814591,392822783,392830975,392833023,392835071,392837119,392839167,392843263,392849407,392853503,392855551,392861695,392880127,392882175,392884223,392886271,392888319,392978431,392980479,392989695,392989951,393007103,393011199,393019391,393037823,393038847,393050111,393051135,393051391,393051647,393051903,393052159,393053183,393053695,393054207,393055231,393081855,393082367,393084927,393150463,393152511,393153535,393154559,393158655,393166847,393170943,393175039,393183231,393199615,393207807,393213951,394264575,394264831,394268671,394268927,394272767,394273023,394274815,394275071,394278911,394279167,394280959,394281471,394285055,394285311,394285567,394285823,394287103,394287359,394289151,394289919,394291199,394291711,394293247,394293503,394295295,394296063,394297343,394297855,394299391,394299647,394301439,394302463,394305535,394305791,394307583,394307839,394309631,394309887,394311679,394311935,394313727,394313983,394315775,394316031,394317823,394318079,394319871,394320127,394321919,394322175,394323967,394324223,394326015,394326271,394328063,394328319,394330111,394330367,394332159,394332415,394334207,394334463,394336255,394336511,394338303,394338559,394342399,394342911,394346495,394346751,394350591,394350847,394351103,394351359,394352639,394352895,394354687,394354943,394356735,394356991,394360831,394361087,394362879,394363135,394366975,394367231,394369023,394369279,394371071,394371327,394373119,394373375,394375167,394375423,394377215,394377471,394379263,394379519,394381311,394381567,394383359,394383615,394385407,394385663,394387455,394387711,394389503,394389759,394391551,394391807,394393599,394394623,394395647,394395903,394397695,394397951,394399743,394400255,394401791,394402047,394403839,394404095,394405887,394406143,394407935,394408191,394409983,394410239,394412031,394412287,394416127,394416383,394416639,394416895,394418175,394418431,394420223,394420735,394422271,394423295,394424319,394424575,394426367,394426623,394426879,394428415,394428927,394430463,394430975,394431231,394431487,394432511,394432767,394434559,394435071,394436607,394436863,394438655,394438911,394440703,394440959,394442751,394443007,394444799,394445055,394446847,394447103,394448895,394449151,394450943,394451199,394452991,394453247,394455039,394455295,394457087,394457343,394459135,394459391,394461183,394461439,394465279,394465535,394467327,394467583,394469375,394469631,394471423,394471679,394473471,394473727,394475519,394475775,394477567,394478079,394481663,394481919,394482175,394482431,394485759,394486015,394487807,394488063,394489855,394490111,394491903,394492159,394493951,394494207,394498047,394498303,394502143,394502655,394504191,394504447,394506239,394506495,394508287,394508543,394508799,394510335,394510591,394512383,394512895,394514431,394514687,394516479,394516735,394518527,394518783,394522623,394522879,394524671,394524927,394528767,394529023,394530815,394531071,394532863,394533119,394534911,394535423,394536959,394537215,394539007,394539263,394541055,394541311,394543103,394543359,394547199,394547455,394547711,394547967,394549247,394549503,394551295,394551551,394555391,394555647,394557439,394557695,394559487,394559743,394561535,394562047,394563583,394563839,394565631,394565887,394567679,394567935,394569727,394569983,394571775,394572031,394573823,394574335,394575871,394576383,394577919,394578175,394579967,394580223,394582015,394582271,394584063,394584575,394586111,394586367,394588159,394588415,394590207,394590463,394592255,394594047,394594303,394594559,394596351,394596607,394598399,394598655,394600447,394600703,394604543,394605055,394606591,394607103,394608639,394608895,394612735,394612991,394613247,394613503,394614783,394615039,394616831,394617087,394618879,394619135,394620927,394621183,394622975,394623231,394625023,394625279,394631167,394631423,394633215,394633471,394635263,394635519,394637311,394637567,394639359,394639615,394643455,394643711,394645503,394645759,394647551,394647807,394649599,394649855,394651647,394651903,394655743,394657535,394657791,394658047,394659839,394660095,394661887,394662399,394663935,394664191,394665983,394666239,394668031,394668287,394670079,394670335,394672127,394672383,394674175,394674431,394678271,394678527,394678783,394679039,394680319,394681087,394681343,394682111,394682367,394682879,394684415,394684671,394686463,394686719,394688511,394688767,394690559,394690815,394692607,394692863,394694655,394694911,394696703,394697471,394698751,394699007,394700799,394701055,394702847,394703103,394704895,394705151,394706943,394707967,394708991,394709503,394711039,394711551,394713087,394713343,394715135,394715647,394717183,394718207,394719231,394719487,394721279,394721535,394727423,394728191,394729471,394729727,394731519,394731775,394733567,394733823,394735615,394735871,394737663,394737919,394739711,394739967,394744319,394744575,394745855,394746111,394747903,394748159,394751999,394752255,394754047,394754303,394756095,394756351,394758143,394758399,394760191,394760447,394762239,394762751,394764287,394764543,394766335,394766591,394768383,394768639,394770431,394770687,394772479,394772735,394774527,394774783,394776575,394776831,394778623,394778879,394780671,394780927,394782719,394782975,394784767,394785023,394786815,394787071,394790911,394791167,394792959,394793215,394795007,394795263,394799103,394799359,394803199,394803455,394805247,394805503,394809343,394809599,394809855,394810111,394811391,394811647,394813439,394813695,394815487,394815743,394817535,394817791,394819583,394819839,394821631,394821887,394823679,394823935,394825727,394825983,394827775,394828031,394829823,394830079,394831871,394832127,394835967,394836223,394838015,394838271,394842111,394842367,394844159,394844415,394848255,394848767,394850303,394850559,394852351,394852607,394854399,394854655,394856447,394856703,394858495,394858751,394860543,394860799,394862591,394862847,394864639,394864895,394866687,394866943,394868735,394869503,394870783,394871039,394874879,394875135,394875391,394875647,394876927,394877183,394878975,394879231,394881023,394881279,394883071,394883327,394885119,394886655,394887167,394887679,394889215,394890239,394891263,394891519,394893311,394893567,394895359,394895615,394897407,394897663,394899455,394899711,394901503,394901759,394905599,394905855,394907647,394907903,394909695,394909951,394911743,394912255,394913791,394914047,394915839,394916095,394917887,394918911,394920191,394921983,394922239,394924031,394924287,394926079,394926335,394928127,394928383,394930175,394931199,394932223,394932479,394934271,394934527,394936319,394936831,394940415,394940671,394940927,394941439,394942463,394942719,394944511,394944767,394946559,394946815,394948607,394949631,394950655,394950911,394952703,394953215,394954751,394955007,394956799,394957055,394958847,394959103,394960895,394961151,394962943,394963199,394964991,394965247,394967039,394967295,394969087,394969343,394971135,394971391,394973183,394973439,394975231,394975487,394977279,394977535,394979327,394979583,394981375,394981887,394985471,394985727,394987519,394987775,394989567,394989823,394991615,394992127,394993663,394993919,394995711,394995967,394996223,394997759,394998015,394999807,395000063,395001855,395002623,395005951,395006207,395006463,395006719,395007999,395008255,395010047,395010303,395012095,395012351,395014143,395014399,395016191,395016447,395018239,395018495,395020287,395020543,395022335,395022591,395024383,395024639,395026431,395026687,395028479,395028735,395030527,395030783,395034623,395034879,395036671,395036927,395038719,395038975,395040767,395041023,395042815,395043071,395048959,395049215,395051007,395051263,395053055,395053311,395055103,395055359,395057151,395057407,395059199,395059455,395061247,395061503,395063295,395063551,395065343,395065599,395071487,395071743,395071999,395072255,395073535,395073791,395075583,395076607,395077631,395077887,395079679,395079935,395081727,395081983,395085823,395086079,395087871,395088127,395089919,395090175,395094015,395094271,395096063,395096319,395098111,395098367,395100159,395100415,395102207,395102463,395106303,395106559,395108351,395108607,395110399,395110655,395112447,395113215,395114495,395114751,395115007,395118591,395118847,395120639,395120895,395122687,395122943,395124735,395124991,395126783,395127039,395128831,395129087,395130879,395131135,395132927,395133183,395137023,395137279,395137535,395137791,395139071,395139327,395141119,395141375,395143167,395143423,395145215,395145471,395147263,395147519,395149311,395149567,395151359,395151615,395153407,395153663,395155455,395155711,395157503,395157759,395159551,395159807,395161599,395161855,395163647,395163903,395165695,395165951,395167743,395167999,395169791,395170047,395171839,395172095,395173887,395174143,395175935,395176191,395180031,395180287,395182079,395182335,395184127,395184383,395186175,395186431,395188223,395188479,395189247,395190271,395190783,395192319,395192575,395194367,395194623,395196415,395196671,395198463,395198719,395203071,395203839,395204607,395205375,395206655,395206911,395208703,395208959,395210751,395211007,395212799,395213055,395216895,395217151,395218943,395219199,395219455,395219711,395220991,395221247,395223039,395223295,395225087,395225343,395227135,395227391,395229183,395229439,395231231,395231487,395233279,395233535,395235327,395235583,395237375,395237631,395239423,395239679,395241471,395241727,395243519,395244031,395245567,395245823,395247615,395247871,395249663,395249919,395251711,395251967,395253759,395254015,395255807,395256063,395257855,395258367,395261951,395262207,395263999,395264255,395268095,395268351,395268607,395268863,395270143,395270399,395272191,395272447,395274239,395274495,395276287,395276543,395278335,395278591,395280383,395280639,395282431,395282687,395286527,395286783,395288575,395288831,395290623,395290879,395292671,395292927,395294719,395294975,395298815,395299071,395300863,395301119,395302911,395303167,395304959,395305215,395307007,395307263,395309055,395309311,395311103,395311359,395313151,395313407,395315199,395315455,395317247,395317503,395319295,395319551,395323391,395323647,395325439,395325695,395327487,395327743,395329535,395329791,395333631,395333887,395334143,395334399,395335679,395335935,395337727,395337983,395339775,395340031,395341823,395342079,395343871,395344127,395345919,395346175,395347967,395348223,395350015,395350271,395352063,395352319,395354111,395354367,395356159,395356671,395358207,395358463,395360255,395360511,395362303,395362559,395364351,395364607,395366399,395366655,395368447,395368703,395372543,395372799,395374591,395374847,395376639,395376895,395378687,395378943,395382783,395383039,395384831,395385087,395386879,395387391,395388927,395389183,395390975,395391231,395393023,395393279,395393535,395397119,395397375,395399167,395399679,395401215,395401471,395405311,395405567,395407359,395407615,395409407,395409663,395411455,395411711,395413503,395413759,395415551,395415807,395417599,395417855,395419647,395419903,395421695,395421951,395423743,395423999,395425791,395426047,395427839,395428095,395429887,395430143,395431935,395432191,395433983,395434239,395436031,395436543,395438079,395438335,395440127,395440383,395442175,395442431,395444223,395444479,395446271,395446527,395448319,395449343,395450367,395450623,395452415,395452671,395454463,395454719,395458559,395458815,395460607,395460863,395462655,395462911,395464703,395464959,395466751,395467007,395468799,395469055,395470847,395471103,395472895,395473151,395474943,395475455,395476991,395477247,395479039,395479295,395481087,395481343,395483135,395483391,395485183,395485439,395487231,395487487,395489279,395489535,395491327,395491583,395493375,395494399,395495423,395495679,395497471,395497727,395499519,395499775,395503615,395503871,395505663,395506687,395507711,395507967,395509759,395510015,395511807,395512063,395515903,395516159,395517951,395518207,395519999,395520255,395522047,395522303,395524095,395524351,395526143,395526399,395528191,395528447,395530239,395530495,395532287,395532543,395534335,395534591,395536383,395536639,395538431,395538687,395540479,395540735,395544575,395544831,395546623,395546879,395548671,395548927,395550719,395550975,395552767,395553023,395554815,395555071,395556863,395557119,395558911,395559167,395560959,395561215,395563007,395563519,395565055,395565311,395567103,395569151,395569407,395571199,395571455,395573247,395573503,395575295,395576575,395577343,395577599,395579391,395579647,395581439,395581695,395585535,395585791,395587583,395587839,395589631,395589887,395591679,395591935,395593727,395593983,395595775,395596031,395597823,395598079,395599871,395600127,395601919,395602175,395603967,395604223,395606015,395606271,395608063,395608319,395610111,395610367,395612159,395612927,395614207,395614719,395618303,395618559,395620351,395620863,395622399,395622655,395624447,395625471,395626495,395626751,395628543,395628799,395630591,395630847,395632639,395632895,395634687,395634943,395638783,395639039,395642879,395643135,395644927,395645183,395646975,395647231,395649023,395649279,395651071,395651327,395653119,395653375,395655167,395655423,395657215,395657471,395659263,395659775,395661311,395661567,395663359,395663615,395665407,395665663,395667455,395667711,395671551,395671807,395673599,395674111,395675647,395675903,395677695,395677951,395679743,395679999,395681791,395682047,395683839,395684095,395685887,395686143,395687935,395688191,395689983,395690239,395692031,395692287,395694079,395694335,395696127,395696383,395698175,395698431,395700223,395700479,395702271,395702527,395704319,395704575,395706367,395706623,395708415,395708671,395709183,395709439,395710463,395711743,395712511,395712767,395714559,395715071,395716607,395717119,395718655,395718911,395720703,395720959,395722751,395723007,395724799,395725055,395728895,395729151,395730943,395731199,395732991,395733247,395735039,395735295,395737087,395737343,395739135,395739391,395741183,395741439,395743231,395743487,395745279,395745535,395747327,395748607,395749375,395749631,395751423,395751679,395753471,395753727,395755519,395755775,395757567,395757823,395759615,395759871,395761663,395761919,395763711,395763967,395765759,395766015,395767807,395768063,395769855,395770111,395771903,395772159,395773951,395774207,395775999,395776511,395778047,395778303,395780095,395780607,395782143,395782399,395784191,395784447,395786239,395786495,395788287,395788543,395790335,395790591,395792383,395792639,395794431,395794687,395796479,395796735,395798527,395798783,395800575,395800831,395802623,395802879,395804671,395804927,395806719,395807231,395808767,395809023,395810815,395811071,395816959,395817215,395819007,395819263,395821055,395821567,395823103,395823359,395825151,395825407,395827199,395827455,395829247,395829503,395831295,395831807,395833343,395833599,395835391,395835647,395837439,395837695,395839487,395839743,395841535,395841791,395843583,395843839,395845631,395845887,395847679,395847935,395848191,395849727,395849983,395851775,395852031,395853823,395854079,395855871,395856127,395857919,395858175,395859967,395860223,395864063,395864319,395866111,395866367,395868159,395868415,395870207,395870719,395872255,395872511,395874303,395874815,395876351,395876607,395878399,395878655,395880447,395880703,395882495,395882751,395884543,395884799,395886591,395887359,395888639,395888895,395890687,395890943,395892735,395892991,395894783,395895551,395896831,395897087,395898879,395899135,395900927,395901183,395902975,395903231,395905023,395905279,395909119,395909375,395911167,395911423,395913215,395913471,395915263,395915519,395917311,395917567,395919359,395919615,395921407,395921663,395923455,395923711,395925503,395925759,395927551,395927807,395929599,395929855,395931647,395931903,395933695,395933951,395935743,395935999,395937791,395938047,395939839,395940095,395941887,395942143,395943935,395944191,395945983,395946239,395948031,395948287,395950079,395950335,395954175,395954431,395956223,395956735,395958271,395958527,395960319,395960575,395962367,395962623,395964415,395964671,395966463,395966719,395968511,395969279,395970559,395970815,395972607,395973375,395974655,395974911,395976703,395976959,395978751,395979007,395982847,395983103,395984895,395985151,395986943,395987199,395988991,395989503,395991039,395991295,395993087,395993343,395995135,395995391,395997183,395997439,395999231,395999487,396001279,396001535,396003327,396003583,396005375,396005631,396007423,396007679,396009471,396009727,396011519,396011775,396013567,396014079,396015615,396015871,396017663,396017919,396019711,396019967,396021759,396022015,396023807,396024063,396025855,396026111,396027903,396028159,396029951,396030207,396031999,396032255,396034047,396034303,396036095,396036351,396038143,396038911,396040191,396040703,396042239,396042495,396044287,396044543,396046335,396046591,396048383,396048639,396050431,396050687,396052479,396052735,396054527,396054783,396056575,396056831,396058623,396058879,396060671,396060927,396062719,396062975,396064767,396065023,396066815,396067839,396068863,396069119,396070911,396071167,396072959,396073215,396075007,396075263,396077055,396077311,396079103,396079871,396081151,396081407,396081663,396085247,396085503,396087295,396087807,396089343,396089599,396091391,396091647,396093439,396093695,396097535,396097791,396101631,396101887,396103679,396103935,396105727,396105983,396107775,396108031,396109823,396110079,396111871,396112127,396113919,396114175,396118015,396118271,396120063,396120319,396122111,396122367,396124159,396124415,396126207,396126463,396128255,396128511,396130303,396130559,396132351,396132607,396134399,396134655,396136447,396136703,396138495,396138751,396139007,396140543,396140799,396142591,396142847,396144639,396144895,396146687,396146943,396148735,396148991,396150783,396151039,396152831,396153087,396154879,396155135,396156927,396157183,396158975,396159231,396161023,396161279,396163071,396163583,396167167,396167423,396169215,396169471,396171263,396171775,396173311,396173567,396175359,396175615,396177407,396177663,396179455,396179711,396181503,396181759,396183551,396183807,396185599,396185855,396187647,396187903,396189695,396189951,396191743,396192255,396193791,396194303,396195839,396196095,396197887,396198143,396199935,396200191,396201983,396202495,396204031,396204287,396206079,396206335,396208127,396208383,396210175,396210431,396212223,396212735,396214271,396214527,396216319,396216575,396218367,396218623,396220415,396220927,396222463,396222719,396224511,396224767,396226559,396226815,396228607,396228863,396230655,396230911,396232703,396232959,396234751,396235007,396236799,396237055,396238847,396239103,396240895,396241151,396242943,396243199,396244991,396245247,396249087,396249343,396251135,396251391,396253183,396253439,396255231,396255487,396257279,396257535,396259327,396259583,396261375,396261631,396263423,396263679,396265471,396265727,396267519,396267775,396269567,396269823,396271615,396271871,396273663,396273919,396277759,396278015,396281855,396282111,396283903,396284159,396285951,396286207,396287999,396288255,396290047,396290303,396294143,396294399,396296191,396296447,396298239,396298495,396300287,396300543,396302335,396302591,396304383,396304895,396306431,396306687,396308479,396308735,396310527,396310783,396312575,396312831,396314623,396314879,396318719,396319231,396320767,396321023,396322815,396323071,396324863,396325119,396326911,396327167,396328959,396329215,396331007,396331263,396333055,396333311,396335103,396335359,396337151,396337407,396339199,396339711,396341247,396341503,396343295,396343551,396347391,396347647,396351487,396351743,396353535,396353791,396355583,396356095,396357631,396357887,396359679,396359935,396361727,396361983,396363775,396364031,396365823,396366079,396367871,396368127,396369919,396370175,396371967,396372223,396374015,396374783,396376063,396376319,396378111,396378367,396380159,396380415,396382207,396382463,396384255,396384511,396386303,396386815,396388351,396388607,396390399,396390911,396392447,396392959,396394495,396394751,396396543,396396799,396400639,396400895,396402687,396403199,396404735,396404991,396406783,396407039,396408831,396409087,396410879,396411903,396412927,396413439,396414975,396415231,396417023,396417279,396419071,396419327,396421119,396421375,396423167,396423423,396425215,396425471,396427263,396428287,396429311,396429567,396431359,396431615,396433407,396433663,396435455,396436223,396437503,396437759,396439551,396440319,396441599,396441855,396443647,396443903,396445695,396445951,396447743,396447999,396449791,396450047,396451839,396452095,396453887,396454143,396455935,396456191,396457983,396458239,396460031,396460287,396462079,396462335,396464127,396464639,396466175,396466431,396468223,396468479,396470271,396470527,396472319,396472575,396474367,396474623,396476415,396476671,396478463,396478719,396480511,396480767,396482559,396482815,396484607,396484863,396486655,396486911,396488703,396488959,396490751,396491007,396492799,396493055,396494847,396495103,396496895,396497151,396498943,396499199,396500991,396501247,396503039,396503295,396505087,396505343,396507135,396507391,396509183,396509439,396511231,396511487,396513279,396513535,396515327,396515583,396517375,396517631,396519423,396519679,396521471,396521983,396523519,396523775,396525567,396525823,396527615,396527871,396529663,396529919,396531711,396531967,396533759,396534015,396535807,396536063,396537855,396538367,396539903,396540159,396541951,396542207,396543999,396544255,396546047,396546303,396548095,396548351,396550143,396550399,396552191,396552447,396554239,396555263,396556287,396556543,396558335,396558591,396560383,396560639,396562431,396562687,396564479,396564735,396566527,396566783,396568575,396568831,396570623,396570879,396572671,396572927,396576767,396577023,396578815,396579071,396580863,396581119,396584959,396585215,396587007,396587519,396589055,396589311,396591103,396591615,396593151,396593407,396595199,396595711,396597247,396597503,396599295,396599551,396601343,396601599,396603391,396603647,396605439,396605695,396607487,396607743,396609535,396609791,396611583,396613119,396613631,396616191,396617727,396617983,396619775,396620031,396621823,396622079,396623871,396624127,396625919,396626175,396627967,396628479,396630015,396630271,396634111,396634367,396636159,396636415,396638207,396638463,396640255,396640511,396644351,396644607,396646399,396646655,396648447,396648703,396650495,396650751,396652543,396653311,396654591,396654847,396660735,396661503,396662783,396663039,396664831,396665087,396666879,396667135,396668927,396669183,396670975,396671231,396673023,396673279,396675071,396675327,396677119,396677375,396679167,396679423,396681215,396681471,396683263,396683519,396685311,396685567,396687359,396687615,396689407,396689663,396691455,396691711,396693503,396693759,396695551,396695807,396697599,396697855,396699647,396699903,396701695,396701951,396703743,396703999,396705791,396706047,396707839,396708095,396709887,396710143,396711935,396712191,396713983,396714239,396716031,396716287,396718079,396718335,396720127,396720383,396722175,396722431,396724223,396724479,396726271,396726783,396728319,396728575,396730367,396730623,396732415,396732671,396734463,396734719,396736511,396736767,396740607,396740863,396742655,396742911,396744703,396744959,396746751,396747775,396748799,396749055,396750847,396751103,396752895,396753151,396754943,396755199,396756991,396757247,396759039,396759295,396761087,396761343,396763135,396763391,396765183,396765439,396767231,396767487,396769279,396769535,396771327,396771583,396773375,396773631,396775423,396775679,396777471,396777727,396779519,396779775,396781567,396781823,396783615,396783871,396785663,396785919,396787711,396787967,396789759,396790015,396791807,396792063,396793855,396794111,396795903,396796159,396797951,396798207,396799999,396800255,396802047,396802303,396804095,396804351,396806143,396806399,396810239,396810495,396812287,396813055,396814335,396814591,396816383,396816895,396818431,396818687,396820479,396820735,396822527,396822783,396824575,396824831,396826623,396826879,396828671,396828927,396830719,396830975,396832767,396833023,396834815,396835071,396836863,396837119,396838911,396839167,396840959,396841471,396843007,396843263,396845055,396845311,396847103,396847359,396849151,396849407,396851199,396851455,396853247,396853503,396855295,396855551,396857343,396857599,396859391,396859647,396861439,396861695,396863487,396863743,396865535,396865791,396867583,396867839,396869631,396869887,396871679,396871935,396873727,396873983,396875775,396876031,396877823,396878079,396879871,396880127,396881919,396882175,396883967,396884223,396886015,396886271,396888063,396888319,396890111,396890367,396892159,396892415,396896255,396896511,396898303,396898815,396900351,396900607,396902399,396902655,396904447,396904703,396906495,396906751,396908543,396908799,396910591,396911103,396912639,396912895,396914687,396914943,396916735,396916991,396920831,396921087,396922879,396923391,396924927,396925183,396926975,396927231,396929023,396929279,396931071,396931327,396933119,396933375,396935167,396935679,396937215,396937471,396939263,396939519,396941311,396941567,396943359,396943615,396945407,396945663,396947455,396947967,396949503,396949759,396953599,396953855,396955647,396955903,396957695,396957951,396959743,396959999,396961791,396962047,396963839,396964095,396965887,396966143,396967935,396968447,396969983,396970239,396972031,396972287,396974079,396974335,396976127,396976383,396978175,396978431,396980223,396980479,396982271,396982527,396984319,396984575,396986367,396986623,396988415,396988671,396990463,396990719,396992511,396992767,396994559,396994815,396996607,396996863,396998655,396998911,397000703,397000959,397002751,397003007,397004799,397005055,397006847,397007103,397008895,397009407,397010943,397011199,397012991,397014527,397015039,397017343,397019135,397019391,397021183,397021439,397023231,397023487,397025279,397025791,397027327,397027583,397029375,397029887,397031423,397031679,397033727,397033983,397035519,397035775,397037567,397037823,397039615,397039871,397041663,397041919,397043711,397043967,397045759,397046015,397047807,397048063,397051903,397052159,397053951,397054463,397055999,397056255,397058047,397059583,397060095,397060351,397064191,397064447,397066239,397066495,397068287,397068543,397070335,397070847,397072383,397072639,397074431,397074687,397076479,397076735,397078527,397082879,397084671,397084927,397086719,397086975,397088767,397089023,397090815,397091071,397092863,397093119,397094911,397095167,397096959,397097215,397099007,397099519,397101055,397101311,397105151,397105407,397107199,397107455,397109247,397109503,397111295,397111551,397113343,397113599,397115391,397115647,397117439,397117695,397119487,397119743,397121535,397121791,397123583,397123839,397125631,397125887,397127679,397128191,397129727,397129983,397133823,397134079,397135871,397136127,397137919,397138175,397139967,397140223,397142015,397142271,397144063,397144319,397146111,397146367,397148159,397148415,397150207,397150463,397152255,397152511,397154303,397154559,397156351,397156607,397158399,397158655,397160447,397160703,397162495,397162751,397164543,397165055,397166591,397166847,397168639,397168895,397170687,397170943,397172735,397172991,397174783,397175039,397176831,397177599,397178879,397179135,397182975,397183999,397185023,397185279,397187071,397187327,397189119,397189375,397191167,397191423,397193215,397193471,397195263,397195519,397197311,397197567,397199359,397199615,397201407,397201663,397203455,397203711,397205503,397205759,397207551,397207807,397209599,397209855,397211647,397211903,397213695,397213951,397215743,397215999,397217791,397218047,397219839,397220095,397221887,397222655,397223935,397224191,397225983,397226239,397228031,397228287,397232127,397232383,397234175,397234431,397236223,397236479,397238271,397238527,397240319,397240575,397242367,397243135,397244415,397244671,397246463,397246719,397248511,397248767,397250559,397250815,397252607,397252863,397254655,397254911,397256703,397256959,397258751,397259007,397260799,397261055,397262847,397263103,397264895,397265151,397266943,397268223,397268991,397269247,397271039,397271551,397273087,397273343,397275135,397275391,397277183,397277439,397279231,397280255,397281279,397281535,397283327,397283583,397285375,397285631,397287423,397287679,397289471,397289727,397291519,397291775,397293567,397293823,397295615,397295871,397297663,397297919,397299711,397299967,397301759,397302015,397303807,397304063,397305855,397306111,397307903,397308159,397309951,397310207,397311999,397312511,397316095,397316351,397320191,397320703,397324287,397324543,397328383,397328639,397332479,397332735,397336575,397336831,397340671,397340927,397344767,397345279,397348863,397349119,397352959,397353215,397357055,397357823,397361151,397361407,397365247,397365503,397369343,397369599,397373439,397373695,397377535,397377791,397381631,397382399,397385727,397385983,397393919,397394175,397398015,397399039,397402111,397402367,397406207,397406463,397410303,397410559,397414399,397414655,397418495,397418751,397426687,397426943,397430783,397431039,397434879,397435135,397443071,397443327,397447167,397447423,397455359,397455615,397459455,397459711,397463551,397463807,397467647,397467903,397471743,397471999,397475839,397476095,397479935,397480191,397484031,397484287,397488127,397488383,397492223,397492479,397496319,397496575,397504511,397504767,397512703,397512959,397516799,397517055,397520895,397521151,397524991,397525247,397529087,397529343,397533183,397533439,397541375,397541887,397545471,397545727,397549567,397549823,397553663,397553919,397557759,397558015,397561855,397562111,397565951,397566207,397570047,397570303,397574143,397574399,397578239,397578495,397582335,397582591,397586431,397587199,397594623,397594879,397598719,397598975,397602815,397603071,397606911,397607935,397611007,397611519,397615103,397615359,397619199,397619455,397623295,397623551,397627391,397627903,397631487,397631743,397635583,397635839,397639679,397639935,397643775,397644287,397647871,397648127,397651967,397652223,397656063,397656319,397656575,397656831,397660159,397660415,397664255,397664511,397668351,397668607,397672447,397672703,397676543,397676799,397684735,397684991,397688831,397689087,397692927,397693183,397701119,397701375,397705215,397705471,397709311,397709567,397717503,397717759,397721599,397721855,397725695,397725951,397733887,397734143,397750271,397750527,397754367,397754623,397758463,397758719,397766655,397766911,397770751,397771007,397774847,397775103,397783039,397783295,397787135,397787391,397791231,397791487,397803519,397803775,397807615,397807871,397815807,397816063,397819903,397820415,397823999,397824511,397832191,397832447,397836287,397836799,397840383,397840639,397848575,397848831,397852671,397852927,397856767,397857023,397864959,397865215,397869055,397869311,397873151,397873407,397881343,397881599,397885439,397885695,397889535,397890559,397897727,397898751,397901823,397902079,397905919,397906175,397914111,397914367,397918207,397918719,397922303,397922559,397930495,397931263,397931519,397931775,397932031,397932287,397932543,397934591,397934847,397938687,397938943,397946879,397947135,397950975,397951231,397955071,397955327,397963263,397963519,397967359,397967615,397971455,397971711,397979647,397979903,397983743,397983999,397987839,397988095,397996031,397996287,398000127,398000383,398012415,398012671,398016511,398016767,398032895,398033151,398045183,398045439,398049279,398049535,398053375,398053631,398061567,398062079,398069759,398070015,398082047,398082303,398086143,398086399,398094335,398094847,398098431,398098687,398102527,398104575,398110719,398110975,398114815,398115071,398118911,398119167,398127103,398127359,398131199,398131711,398135295,398135551,398143487,398143743,398151679,398151935,398159871,398160127,398163967,398164223,398168063,398169087,398176255,398176767,398184447,398184703,398192639,398192895,398196735,398196991,398200831,398202879,398209023,398209279,398213119,398213887,398217215,398217471,398225407,398225663,398233599,398233855,398241791,398242047,398245887,398246143,398249983,398250239,398258175,398258431,398262271,398262527,398266367,398266623,398274559,398274815,398278655,398279167,398282751,398283263,398290943,398291199,398295039,398295295,398307327,398307583,398315519,398315775,398323711,398323967,398327807,398328063,398331903,398332159,398340095,398341119,398344191,398344447,398348287,398350335,398356479,398356735,398360575,398360831,398364671,398364927,398372863,398373119,398376959,398377215,398381055,398381311,398389247,398389759,398393343,398393599,398405631,398405887,398413823,398414079,398422015,398422271,398426111,398426623,398430207,398432255,398438399,398438655,398442495,398442751,398446591,398446847,398454783,398455039,398458879,398470143,398471167,398479359,398483455,398484479,398486527,398486783,398488063,398488575,398489087,398489599,398490111,398490623,398491647,398495743,398495999,398496255,398496767,398497023,398497279,398497535,398497791,398498815,398500095,398500351,398500863,398501119,398501375,398501887,398502911,398503935,398504447,398504703,398504959,398505983,398507007,398507263,398507775,398508031,398509055,398510079,398512127,398514175,398514431,398514943,398516223,398517247,398518015,398518271,398518783,398519295,398519807,398520063,398520319,398524415,398528511,398529535,398530047,398530303,398530559,398531583,398532607,398533631,398534655,398535167,398535423,398536447,398536703,398537727,398538751,398539007,398548991,398550015,398551039,398551295,398552063,398553087,398553599,398553855,398554111,398554367,398554879,398555135,398566143,398566399,398566911,398567423,398567935,398568447,398568703,398570495,398572287,398572543,398573567,398575103,398575615,398576639,398577663,398578687,398579711,398580735,398581759,398589951,398594047,398596095,398598143,398606335,398615551,398618623,398619135,398619391,398619647,398621695,398622207,398622719,398622975,398623231,398623743,398624767,398625279,398625791,398626815,398635007,398636031,398637055,398638079,398638847,398639103,398640127,398641151,398641407,398641663,398643199,398643711,398644735,398644991,398645759,398646783,398656511,398657535,398658559,398659583,398663167,398663679,398667775,398670847,398671871,398673407,398673919,398674431,398674687,398676991,398679039,398680063,398680575,398680831,398681087,398682111,398682367,398682623,398683135,398684159,398685183,398685439,398685951,398686207,398687231,398688255,398689279,398691327,398693375,398694399,398695423,398696447,398704639,398716927,398717951,398718975,398719999,398720255,398720511,398721023,398721535,398724351,398724863,398729215,398732287,398732799,398745599,398749695,398753791,398755839,398757887,398761983,398763007,398765055,398766079,398775295,398775807,398776319,398778367,398778879,398779135,398779391,398779903,398781439,398781695,398782463,398784511,398786559,398787583,398790143,398792191,398792703,398798847,398799359,398799871,398800383,398800895,398801407,398801919,398802943,398803199,398803455,398803711,398803967,398804223,398804479,398804735,398804991,398805247,398805503,398805759,398807039,398807295,398807551,398808063,398808575,398808831,398809087,398811135,398813183,398814207,398815231,398823423,398827519,398831615,398834687,398835711,398837759,398838271,398838527,398839295,398839551,398839807,398849023,398852095,398853119,398853375,398854143,398854399,398854911,398855167,398856191,398860287,398861311,398862335,398868479,398876671,398877183,398877695,398879231,398880767,398888959,398897151,398906879,398907391,398908415,398909439,398922751,398923775,398924799,398925823,398926335,398926591,398927871,398928895,398931199,398931711,398931967,398932479,398932735,398933247,398933503,398934527,398935039,398935295,398935551,398935807,398936063,398936319,398936575,398936831,398937087,398938111,398939135,398940159,398941183,398942207,398950399,398958591,398966783,398970879,398974975,398977023,398977535,398978047,398979071,398981119,398982143,398982399,398982911,398985983,398986239,398986495,398987263,398988287,398989311,398989823,398990335,398991359,398991615,398991871,398992383,398993919,398995455,398996479,398997503,398999807,399000063,399000575,399001599,399002111,399002367,399002623,399003391,399003647,399004415,399004671,399004927,399005183,399005695,399006207,399006719,399006975,399007231,399007743,399011839,399016959,399017215,399017727,399017983,399019007,399019263,399019519,399020031,399020287,399020543,399020799,399021055,399023103,399023615,399024127,399025151,399025663,399025919,399026175,399028223,399030271,399032063,399032319,399035391,399036415,399037439,399038463,399038975,399039231,399039487,399040511,399042559,399043583,399044095,399044607,399048703,399050751,399052799,399053823,399054847,399055871,399056127,399056383,399056639,399057407,399057663,399058943,399059711,399059967,399060735,399060991,399062015,399062527,399062783,399063039,399063551,399063807,399064063,399065087,399066111,399067135,399068159,399069183,399073279,399073535,399073791,399074047,399074303,399074559,399074815,399075071,399075327,399076095,399076351,399076863,399077375,399081471,399083519,399085567,399086591,399087615,399088639,399089663,399099135,399099391,399099647,399099903,399100927,399101951,399102975,399103999,399105023,399106047,399114239,399118335,399122431,399122687,399122943,399123455,399129599,399129855,399137023,399137279,399139071,399139327,399141887,399142911,399143935,399144959,399145215,399145471,399145983,399147007,399151103,399152127,399153151,399154175,399154431,399154687,399155199,399159295,399160319,399161343,399162367,399167487,399171583,399172607,399172863,399173119,399173375,399174655,399175679,399179775,399187967,399190015,399195135,399195391,399195903,399196159,399198207,399200255,399207423,399208447,399211519,399212543,399213567,399214079,399214335,399214591,399215615,399216639,399217663,399217919,399220479,399220735,399221759,399222015,399222271,399224319,399224575,399224831,399228927,399233023,399243263,399243519,399243775,399244287,399261695,399262719,399263743,399263999,399264255,399264511,399264767,399266047,399266303,399269375,399269631,399269887,399270399,399271423,399271679,399273471,399273727,399275007,399276031,399276287,399276543,399277567,399278079,399279103,399279359,399279615,399280127,399280639,399280895,399281151,399281663,399294463,399302655,399306751,399307263,399320063,399321087,399321599,399322111,399322367,399322623,399323135,399324159,399327231,399328255,399328767,399329023,399329279,399331327,399331583,399331839,399332095,399332351,399333375,399333631,399333887,399334143,399334399,399335423,399336703,399336959,399339263,399339519,399339775,399340287,399341055,399341311,399341567,399341823,399342079,399342335,399342591,399343103,399343359,399343615,399348991,399349247,399349759,399350271,399351807,399352831,399353343,399353855,399354879,399355391,399355903,399359999,399364095,399365119,399365887,399366143,399367679,399367935,399368191,399370239,399374335,399374847,399375359,399375871,399376127,399376383,399378431,399378943,399379455,399380479,399382527,399384575,399392767,399394815,399396863,399406591,399407103,399419903,399420159,399420671,399420927,399421183,399421439,399422463,399423487,399423999,399424255,399424767,399425023,399425535,399426047,399426303,399426559,399427071,399427583,399428095,399429631,399430655,399430911,399431167,399433727,399433983,399434239,399434751,399435775,399436287,399436799,399437311,399437567,399437823,399438335,399438847,399439871,399440127,399440383,399440639,399440895,399446015,399450111,399451135,399452159,399453183,399454207,399457279,399458303,399460351,399466495,399474687,399474943,399475199,399475455,399475711,399475967,399476479,399476735,399477247,399477503,399478015,399478527,399479039,399479295,399479807,399480063,399480831,399481855,399482367,399482623,399482879,399483391,399483903,399484927,399485183,399485951,399486975,399487999,399489023,399490047,399492095,399493887,399494143,399495167,399495679,399495935,399496191,399497215,399497471,399497727,399499263,399499519,399499775,399500031,399500799,399501055,399502847,399503103,399507455,399508479,399510527,399510783,399511039,399511551,399512063,399512575,399513599,399514111,399514367,399514879,399515135,399515391,399515647,399523839,399524863,399526911,399527935,399528959,399529215,399529471,399529727,399529983,399531007,399532031,399532287,399532543,399533055,399535103,399536127,399538175,399540223,399542271,399543295,399545343,399545855,399546367,399547391,399548415,399550207,399550463,399551487,399552511,399561727,399562751,399563775,399564287,399564799,399568895,399572991,399575039,399577087,399579135,399581183,399582207,399583231,399583487,399583743,399583999,399584255,399584511,399584767,399585279,399589375,399590399,399590655,399590911,399591423,399591679,399591935,399592447,399593471,399593983,399594239,399594495,399595775,399596543,399596799,399597055,399597311,399597567,399598591,399598847,399599103,399599359,399599615,399599871,399600127,399600383,399601663,399602687,399604735,399605247,399615999,399616255,399618047,399619071,399619327,399619839,399620095,399621119,399621631,399621887,399622143,399630335,399632383,399634431,399636479,399638527,399640063,399640575,399641599,399642623,399643647,399644671,399645183,399645695,399645951,399646207,399646463,399646719,399647231,399647743,399648767,399649791,399650815,399651327,399651839,399652095,399652351,399652607,399653119,399653375,399653631,399653887,399654143,399654399,399654911,399655935,399657215,399657471,399657727,399659007,399660031,399660543,399660799,399661055,399662079,399662335,399662591,399663103,399667199,399671295,399679487,399683583,399687679,399688191,399688703,399689727,399690239,399690751,399691775,399692031,399693311,399693567,399693823,399694335,399696895,399698943,399699967,399701247,399701503,399701759,399702015,399702271,399702527,399702783,399703039,399704063,399705087,399706111,399707135,399707647,399707903,399708159,399716351,399719423,399719679,399719935,399720447,399728639,399729663,399730943,399731199,399732991,399733247,399733759,399734015,399734271,399734783,399735807,399736319,399736831,399738367,399738623,399738879,399739135,399739391,399739903,399740159,399740415,399745023,399749119,399749375,399749887,399751167,399752191,399753215,399762431,399763455,399763967,399764479,399765503,399765759,399766015,399766271,399766527,399767039,399767295,399767551,399768575,399768831,399769087,399769343,399769599,399769855,399770111,399770367,399770623,399770879,399771135,399771647,399772671,399773695,399773951,399774207,399774719,399775231,399775487,399775743,399776255,399776767,399777279,399777535,399781887,399782143,399782399,399782655,399782911,399783423,399783679,399783935,399784447,399784703,399784959,399785215,399785727,399785983,399791103,399792127,399793151,399794175,399794687,399794943,399795199,399795455,399795711,399797247,399797759,399798015,399798271,399806463,399809535,399810559,399811839,399812351,399812607,399813631,399814143,399814655,399815679,399817215,399817727,399818239,399818495,399818751,399819775,399820799,399826943,399827967,399828991,399830015,399831039,399833087,399834111,399835647,399835903,399837183,399838207,399838463,399838719,399839231,399839743,399840255,399841279,399841535,399842047,399842559,399843071,399843327,399845631,399846143,399846399,399847423,399848447,399849471,399850495,399850751,399851519,399853311,399853567,399854591,399854847,399857919,399858175,399859455,399859711,399863807,399867903,399868159,399868415,399868671,399868927,399869439,399870463,399870719,399870975,399871999,399876095,399876607,399877119,399879167,399880959,399881215,399882239,399882495,399882751,399883263,399884287,399884799,399886335,399887359,399887615,399888383,399890431,399892479,399893503,399894271,399894527,399894783,399895551,399897343,399897855,399898111,399898623,399900671,399908863,399917055,399918079,399918591,399919103,399919615,399919871,399920127,399921151,399921663,399922175,399922431,399922687,399922943,399923199,399923967,399924223,399924479,399928319,399929343,399929855,399930367,399931391,399932415,399933439,399941631,399943679,399943935,399944191,399945727,399947775,399950847,399951359,399951615,399951871,399952895,399953919,399958015,399966207,399967231,399967487,399967999,399968255,399968511,399969279,399969535,399969791,399970047,399970303,399972351,399973375,399974399,399974655,399975167,399975423,399977471,399978495,399980031,399980287,399980543,399981567,399982335,399982591,399993599,399993855,399994879,399996415,399996927,399997951,399998975,399999487,400000511,400001023,400008191,400009215,400011263,400015359,400017407,400018431,400019455,400021247,400021503,400022527,400023039,400023551,400027647,400031743,400031999,400032255,400032767,400033023,400033791,400034047,400034815,400035071,400035327,400035839,400045055,400045567,400045823,400046079,400047103,400047615,400047871,400048639,400049151,400051455,400051711,400054271,400055295,400056319,400064511,400066047,400066559,400067583,400068607,400070911,400071167,400071679,400072191,400072447,400072703,400081919,400083455,400084991,400093183,400097279,400098303,400099327,400100095,400100351,400101375,400105471,400107519,400109567,400110591,400111103,400111359,400111615,400112127,400112639,400113663,400121855,400122623,400122879,400123135,400123647,400123903,400124159,400124415,400124671,400125439,400125951,400126975,400129023,400130303,400130559,400131583,400132095,400133631,400134143,400136191,400138239,400140287,400142335,400144383,400145407,400146431,400147455,400148479,400148735,400148991,400150527,400150783,400151039,400151295,400152063,400152319,400153087,400153343,400153599,400153855,400154623,400162815,400166911,400168959,400173055,400173567,400173823,400174079,400175103,400181247,400183295,400183551,400183807,400184319,400186367,400186623,400187135,400187391,400187903,400188927,400189439,400201727,400202751,400203263,400203519,400203775,400209919,400216063,400217087,400217343,400217599,400220415,400220671,400223231,400224255,400225279,400226303,400226559,400226815,400231423,400232447,400236543,400237567,400238335,400238591,400239615,400240639,400244735,400244991,400245247,400245759,400246783,400247807,400248063,400249855,400250367,400250623,400252927,400259071,400259583,400259839,400260095,400261119,400261631,400262143,400263167,400263679,400264703,400265215,400266239,400267263,400267519,400267775,400268287,400268543,400270847,400271359,400271871,400272127,400272383,400272639,400275455,400275711,400275967,400277503,400279551,400280575,400281087,400281599,400282623,400293887,400302079,400310271,400311295,400312063,400313599,400313855,400314367,400315391,400315903,400316415,400317439,400318463,400318719,400318975,400319487,400319999,400331263,400331775,400332287,400332799,400334847,400335103,400336639,400336895,400337919,400338943,400339455,400339967,400340991,400342015,400343039,400344063,400345087,400345599,400345855,400346111,400346623,400350207,400351231,400353279,400355327,400356351,400356607,400356863,400357119,400357375,400357887,400358143,400358399,400358655,400359423,400363519,400364543,400365055,400366079,400367615,400368639,400369663,400369919,400371967,400372223,400372479,400372735,400373759,400374783,400375295,400375807,400376319,400376575,400376831,400377343,400379903,400381951,400382975,400383999,400388095,400392191,400400383,400410111,400410367,400410623,400411647,400412671,400420351,400420607,400422911,400423935,400429567,400430079,400430591,400431615,400431871,400432639,400433151,400442367,400443391,400444415,400445439,400453631,400457727,400459775,400461823,400470015,400474111,400478207,400482303,400483583,400485375,400485631,400486143,400486399,400487423,400488447,400488959,400489471,400490495,400494591,400494847,400495103,400495359,400495615,400495871,400496639,400497151,400498943,400499199,400501247,400501503,400502015,400502783,400503807,400504831,400505343,400505855,400506111,400506367,400506623,400506879,400510975,400519167,400520703,400521215,400523263,400529407,400530431,400542719,400543743,400544767,400545791,400546815,400547839,400548863,400549887,400551935,400552703,400553215,400553983,400555007,400654847,400655103,400687103,400690431,400690943,400691199,400760831,400769023,400785919,400786175,400885503,400885759,400888831,400889087,400900607,400900863,400915967,400916223,400950783,400951039,400951295,400951551,400951807,400952319,400952575,400952831,400953087,400954623,400954879,400955135,400955903,400956159,400957695,400957951,400958719,400958975,400959231,400959487,400959743,400959999,400960255,400960511,400960767,400961023,400961279,400961535,400962047,400962303,400962559,400963071,400963583,400966143,400966399,400966911,400967167,400967679,400967935,400969215,400969471,400969727,400969983,400970751,400971007,400971775,400972031,400972543,400972799,400973055,400973311,400974847,400975359,400975871,400976127,400976895,400977151,400978175,400978431,400982015,400982271,400983039,400983295,400983551,400983807,400984063,400984319,400984831,400985087,400987903,400988159,400988415,400988671,400988927,400989183,400989439,400989695,400989951,400990719,400990975,400991487,400991743,400992255,400992511,400994047,400994303,400995071,400995327,400997631,400997887,400998655,400998911,401002751,401003007,401003519,401003775,401004031,401004287,401005823,401006079,401008127,401008383,401009663,401009919,401010175,401011711,401011967,401013759,401014015,401113087,401145855,401211391,401221887,401222143,401223423,401223679,401227519,401227775,401285887,401286143,401286911,401287167,401288191,401288447,401288703,401288959,401293311,401297407,401318911,401319167,401342463,401346559,401360639,401360895,401367039,401367295,401367551,401367807,401368319,401368575,401368831,401369343,401369599,401369855,401370623,401370879,401371135,401371647,401371903,401372671,401373183,401374719,401375231,401375743,401375999,401376511,401376767,401379327,401380351,401383679,401383935,401386751,401387007,401390079,401390335,401393663,401393919,401395455,401395711,401397759,401398015,401399295,401399551,401399807,401400319,401402367,401402623,401403135,401403391,401425919,401426431,401430783,401431039,401443839,401444095,401516543,401516799,401547263,401555455,401571839,401580031,402002943,402003455,402004479,402004991,402009599,402010111,402010623,402011135,402011647,402012159,402012671,402096127,402097151,402097919,402098175,402098687,402099199,402105343,402106367,402107391,402109439,402112511,402114559,402125823,402126847,402128127,402128383,402128895,402169855,402170367,402170879,402171135,402171391,402171903,402172927,402173183,402173439,402173951,402174463,402174719,402174975,402175231,402175487,402175743,402175999,402176255,402176511,402177023,402177535,402178047,402188799,402189055,402198527,402198783,402200575,402200831,402201599,402202623,402208511,402208767,402209023,402209279,402210047,402210303,402223103,402227199,402231295,402235647,402235903,402236159,402236671,402237695,402237951,402238719,402239487,402243583,402248191,402250239,402250751,402251007,402251263,402251519,402253823,402255871,402350335,402350591,402352127,402352639,402354175,402354431,402355711,402356223,402356479,402357247,402358271,402362367,402366463,402374655,402382847,402383103,402386431,402386943,402387455,402387967,402388479,402388991,402389247,402389503,402390015,402399231,402403327,402407935,402408191,402409471,402409727,402410239,402410495,402415871,402416127,402416895,402417151,402431999,402436095,402448383,402452479,402473215,402473471,402473983,402474751,402475007,402475263,402475775,402476031,402476287,402476799,402477055,402477567,402477823,402478079,402478335,402478591,402479359,402479871,402480383,402480639,402481407,402481663,402482175,402482431,402482687,402483199,402483455,402483711,402484223,402484479,402484735,402485759,402486015,402486783,402487039,402487551,402488319,402488575,402489087,402489343,402513919,402514687,402514943,402515199,402515455,402516991,402517759,402518271,402518783,402519295,402519551,402520063,402520319,402520831,402521087,402521343,402521599,402549247,402549503,402549759,405012479,405143551,405180415,405184511,405307391,405323775,405368831,405372927,405422079,405438463,405798911,405831679,405843967,405848063,405864447,405921791,405929983,405938175,405962751,405970943,405979135,405995519,406011903,406028287,406052863,406061055,406110207,406142975,406147071,406159359,406175743,406183935,406216703,406241279,406257663,406274047,406290431,406298623,406306815,406323199,406388735,406454271,406459647,406459903,406847487,407408639,407613439,407617535,407633919,408420351,408502271,408518655,408535039,408551423,408719359,408723455,409255935,409272319,409337855,409354239,409509887,409518079,409550847,409567231,409731071,409862143,410124287,410189823,410648575,410714111,411156479,411160575,411164671,411168767,411303935,411369471,411435007,411500543,411566079,411639807,411664383,411680767,411688959,411697151,411746303,411762687,411770879,411779071,411828223,411885567,411975679,411979775,411983871,411987455,411987967,412057599,412073983,412109823,412110847,412221439,412254207,412451071,412451327,412470783,412471039,412472575,412473087,412473599,412473855,412474111,412474623,412475135,412475391,412483583,412549119,412614655,412624895,412625919,412626943,412627967,412628991,412629247,412629503,412630015,412647423,412680191,412688383,412704767,412708863,412818431,412818687,412909567,412942335,412946431,412950527,412958719,413007871,413908991,413925375,415760383,416022527,416059391,416063487,416071679,416088063,416153599,416161791,416170239,416170495,416170751,416171007,416172543,416173055,416177663,416178175,416178431,416178687,416178943,416179199,416179455,416179711,416179967,416180223,416180479,416180735,416180991,416181247,416181503,416181759,416182015,416182271,416182527,416182783,416183039,416183295,416183551,416183807,416184063,416184319,416184575,416184831,416185087,416185343,416185599,416185855,416186111,416186367,416219135,416251903,416546815,416612351,416628735,416636927,416743423,416776191,417202175,417267711,417366015,417398783,417431551,417529855,417538047,417726463,417734655,417775615,417796095,417800191,417808383,417820671,417857535,417923071,417931263,417955839,417959935,418055167,418055679,418055935,418056191,418060287,418062335,418070527,418078719,418119679,418316287,418320383,418349055,418349311,418349567,418349823,418350079,418350335,418350591,418350847,418351103,418351359,418351871,418352127,418352383,418352639,418353151,418353407,418353663,418353919,418354175,418354431,418354687,418355199,418355455,418357247,418357503,418357759,418358015,418358271,418358527,418358783,418359039,418359295,418359551,418359807,418363135,418363391,418363647,418643967,418668543,418672639,418676735,418687743,418687999,418693119,418709503,418766847,418770943,418775039,418799615,419430399,436207615,452984831,452985855,452986879,452987903,452988927,452997119,453001215,453009407,453017599,453019647,453023743,453024767,453025279,453025535,453025791,453027839,453028863,453029887,453031935,453032959,453033983,453035007,453036031,453037055,453040127,453042175,453043199,453044223,453044479,453044735,453044991,453045247,453046271,453047295,453050367,453115903,453246975,453509119,455081983,455213055,455245823,455258111,455262207,455270399,455272447,455274495,455278591,455344127,456130559,456196095,456262655,456263679,456264703,456265727,456269823,456271103,456271359,456271871,456273919,456278015,456286207,456294399,456327167,456523775,456540159,456542207,456544255,456548351,456553471,456554495,456555519,456556543,456560639,456562687,456564735,456572927,456589311,456654847,457179135,458227711,458592767,458593023,459282431,459284479,459292671,459293695,459297791,459298815,459299839,459300863,459309055,459325439,459333631,459341823,459407359,459456511,459460607,459472895,459505663,459538431,459539455,459540479,459541503,459542527,459544319,459544575,459545599,459547647,459548671,459550719,459554815,459571199,459735039,459800575,459866111,459931647,459964415,459980799,459983871,459984895,459986943,459988991,459997183,460062719,460128255,460136447,460144639,460152831,460154879,460155903,460156927,460157183,460157439,460157695,460157951,460158975,460159999,460161023,460162559,460162815,460164607,460164863,460165887,460166655,460167935,460168191,460193791,460212223,460214271,460218367,460224511,460226559,460259327,460261375,460262399,460263423,460267519,460275711,460277759,460278783,460279807,460280319,460280831,460281087,460283903,460292095,460300287,460300543,460303871,460304127,460304383,460304895,460305151,460305919,460306431,460306687,460306943,460307455,460307711,460307967,460308223,460308479,460308735,460309247,460309503,460309759,460310015,460311295,460311807,460312063,460312575,460316927,460317695,460318975,460319231,460319999,460320767,460324863,460341247,460342783,460343039,460343295,460344319,460345343,460349439,460350463,460351487,460353535,460355583,460356607,460357631,460423167,460439551,460451839,460453887,460454911,460455935,460488703,460505087,460521471,460554239,460587007,460591103,460593151,460595199,460595711,460596223,460597247,460598271,460599295,460601343,460602367,460603391,460718079,460722175,460726271,460726527,460726783,460727551,460727807,460728319,460729343,460732415,460732671,460734463,460865535,460931071,460933119,460935167,460937215,460938239,460939263,460940287,460941311,460942335,460942591,460943103,460943359,460945407,460947455,460980223,460981247,460983295,460984319,460988415,460994559,460995071,460995583,460996607,461008895,461012991,461045759,461047807,461049855,461050879,461051903,461054975,461055999,461056511,461057023,461058047,461060095,461062143,461078527,461094911,461095423,461095935,461096447,461099007,461099263,461099775,461100031,461101055,461102079,461103103,461104127,461104639,461105151,461106175,461107199,461108223,461109247,461110271,461111295,461113343,461113599,461114111,461114367,461114623,461115135,461119487,461119743,461120511,461123583,461123839,461124095,461124863,461125119,461125375,461125631,461127679,461128191,461129215,461129727,461130239,461135871,461143295,461143551,461144063,461209599,461225983,461227007,461228031,461229055,461230079,461234175,461242367,461258751,461279231,461281279,461282303,461283327,461287423,461294591,461298687,461301759,461302527,461303039,461303295,461307903,461357055,461369343,461373439,461504511,461570047,461571583,461571839,461572095,461573119,461574143,461578239,461586431,461602815,461619199,461623295,461625343,461626367,461627391,461633535,461634559,461635583,462422015,462487551,462553087,462618623,462635007,462651391,462684159,463470591,465043455,467927039,468189183,468713471,469237759,469499903,469565439,469598207,469630975,469696511,469712895,469729279,469762047,520093695,520257535,520290303,520290815,520291071,520292351,520294399,520298495,520306687,520308735,520310783,520312831,520314879,520318975,520323071,520325119,520327167,520329215,520330239,520330495,520330751,520331263,520339455,520343551,520355839,520421375,520486911,520487167,520487423,520487679,520488703,520488959,520489215,520489471,520489727,520489983,520490239,520491007,520491263,520492287,520492543,520493055,520493311,520493567,520493823,520494079,520494591,520495359,520495615,520496127,520496383,520497663,520497919,520499199,520499455,520499711,520499967,520500223,520501247,520502015,520502271,520503295,520505343,520507391,520511487,520519679,520552447,520554495,520556543,520560639,520562687,520564735,520566783,520568831,520572415,520572927,520574975,520575999,520577023,520589311,520593407,520595455,520596223,520596479,520596991,520597503,520597759,520598015,520601343,520601599,520609791,520613887,520615935,520617983,520683519,520749055,520749823,520750079,520750335,520750591,520753151,520757247,520761343,520763391,520765439,520781823,520822783,520824831,520826879,520828927,520830975,520847359,520880127,520882175,520884223,520888319,520896511,520897791,520898047,520898559,520898815,520899071,520899327,520899583,520900607,520901887,520902143,520902655,520903679,520904703,520912895,520945663,520947711,520949759,520951807,520953855,520962047,520962303,520963071,520963327,520963583,520964095,520964351,520965119,520965375,520965631,520965887,520966143,520966399,520966655,520966911,520967167,520967423,520967679,520967935,520968191,520968447,520968703,520968959,520969471,520969727,520969983,520970239,520978431,520980479,520982527,520984575,520986623,520988671,520990719,520992767,520993791,520994047,520994303,520994559,520994815,520995327,520995583,520999423,520999679,520999935,521000191,521000703,521008895,521009151,521009407,521011199,521013247,521013503,521013759,521014015,521014271,521015551,521015807,521017343,521017599,521017855,521018111,521018367,521018623,521019135,521019391,521019647,521019903,521020415,521020671,521020927,521021439,521022463,521022975,521023487,521023743,521023999,521024511,521024767,521026559,521027583,521027839,521028095,521028607,521029631,521030143,521030399,521030655,521031679,521035775,521036799,521037311,521037567,521037823,521039871,521043967,521048063,521052159,521052671,521052927,521053183,521054207,521056255,521057279,521058047,521060351,521062399,521064447,521066495,521067007,521067263,521067519,521069567,521070591,521070847,521071103,521071615,521072127,521072383,521072639,521074687,521075711,521075967,521076223,521076479,521078783,521080831,521081855,521082879,521084927,521093119,521095167,521097215,521101311,521103359,521105407,521107455,521109503,521142271,521404415,521535487,521537535,521538559,521539583,521541631,521543679,521545727,521547775,521551871,521553919,521555967,521558015,521558527,521559039,521560063,521562111,521563135,521564159,521566207,521568255,521601023,521666559,521668607,521670655,521672703,521674751,521676799,521678847,521680895,521682943,521687039,521687295,521687551,521687807,521688063,521688319,521688575,521688831,521689087,521691135,521693183,521695231,521697279,521699327,521701375,521703423,521705471,521707519,521709567,521711615,521713663,521715711,521717759,521719807,521721855,521724159,521724415,521724671,521724927,521725951,521727999,521730303,521730559,521730815,521731071,521731327,521731583,521731839,521732095,521734143,521734655,521734911,521735167,521736191,521738239,521740287,521742335,521746431,521746687,521746943,521748479,521750527,521752575,521752831,521753087,521754623,521755135,521756671,521758719,521760767,521761791,521762815,521764863,521766911,521768959,521771007,521773055,521775103,521777151,521779199,521781247,521783039,521783295,521785343,521787391,521789439,521790463,521791231,521791487,521791999,521792255,521793535,521795583,521797631,521928703,521945087,521953279,521961471,521969663,521977855,521986047,521994239,522002431,522010623,522018815,522027007,522059775,522125311,522133503,522135551,522137599,522141695,522143743,522145791,522147839,522148863,522149887,522158079,522166271,522168319,522170367,522174463,522178559,522180607,522182655,522190847,522715135,522717183,522719231,522721279,522723327,522741759,522743807,522748415,522751999,522752255,522752767,522753535,522754815,522755071,522755583,522755839,522764543,522764799,522765055,522765311,522766335,522767359,522768383,522769407,522769663,522769919,522770175,522770431,522771455,522772479,522773503,522774527,522775551,522776575,522777599,522778623,522779135,522779391,522779647,522780671,522784767,522786815,522788863,522789119,522789375,522789631,522789887,522790399,522790655,522790911,522792959,522795007,522797055,522801151,522803199,522805247,522807295,522811391,522813439,522815487,522819583,522823679,522827775,522831871,522833919,522835967,522838015,522840063,522842111,522844159,522844415,522844671,522844927,522845183,522845695,522845951,522846207,522854399,522858495,522866687,522869247,522869503,522870783,522874879,522878975,522887167,522891263,522891775,522892287,522892543,522892799,522893055,522893311,522894335,522895103,522911743,522953727,522953983,522954239,522954495,522955775,522956287,522956799,522957311,522957567,522957823,522958847,522959103,522959359,522959871,522960639,522960895,522969087,522977279,522978303,522979327,522981375,522985471,522989567,522993663,522997759,523001855,523005951,523010047,523014143,523018239,523022335,523024639,523024895,523025407,523026431,523030527,523034623,523038719,523042815,523075583,523108351,523113215,523113471,523119615,523120639,523173887,523182079,523190271,523192319,523194367,523197695,523197951,523198463,523202559,523223039,523225087,523227135,523229183,523231231,523239423,523763711,523765247,523768063,523769087,523770111,523771135,523771647,523773695,523774975,523776255,523777535,523779071,523780351,523781631,523783935,523784959,523787519,523789311,523790079,523790335,523790847,523791359,523792383,523792895,523793663,523794431,523795455,523800319,523804671,523829247,523894783,524025855,524287999,528482303,528490495,528497663,528497919,528498687,528506879,528515071,528523263,528531455,528539647,528547839,528553471,528553727,528564223,528572415,528576511,528578559,528579071,528579839,528580095,528588799,528596991,528605183,528613375,528637951,528642047,528648191,528648447,528654335,528656383,528658431,528662527,528664575,528666623,528668671,528670719,528674815,528675327,528676863,528678911,528680959,528681983,528682239,528683007,528684031,528684543,528685567,528686079,528689151,528691199,528695295,528699391,528701439,528702463,528703487,528711679,528713727,528713983,528719871,528720895,528721919,528723967,528726015,528727039,528727551,528736255,528740351,528742399,528744447,528746495,528747519,528748543,528752639,528752895,528753151,528753663,528754687,528755711,528756735,528757759,528758015,528758271,528758783,528759039,528759295,528759551,528759807,528760831,528762879,528763391,528764671,528764927,528769023,528793599,528795647,528797695,528809983,528812031,528814079,528816127,528817151,528818175,528819967,528820223,528820991,528821247,528826367,528831487,528832511,528833535,528834559,528835583,528836607,528838655,528840703,528842751,528859135,528859391,528859647,528859903,528860159,528860671,528860927,528861183,528863231,528867327,528875519,528879615,528887807,528891903,528900095,528902143,528908287,528926719,528928767,528930815,528932863,528941055,528941567,528941823,528942079,528942591,528943103,528945151,528949247,528965631,528982015,528986111,528990207,528994303,528996351,528998399,529006591,529268735,529530879,529596415,529661951,529727487,529793023,529794815,529795071,529798143,529798399,529798655,529798911,529799167,529799423,529799679,529800191,529800703,529800959,529805823,529806335,529809407,529818367,529818623,529819647,529825791,529826047,529826815,529827327,529827839,529828863,529829887,529830911,529831167,529831935,529833983,529836031,529836287,529836543,529836799,529837055,529837823,529838079,529842175,529843199,529844223,529844479,529844735,529845759,529846271,529847295,529848319,529848575,529848831,529849087,529849599,529849855,529850111,529854463,529855487,529855743,529855999,529857023,529857535,529858559,529924095,529989631,530055167,530120703,530173951,530174207,530186239,530251775,530317311,530579455,530710527,530841599,530972671,531103743,531169279,531177471,531179519,531181567,531181823,531183615,531185663,531193855,531195903,531197951,531199999,531200255,531200511,531200767,531201023,531202047,531234815,531236863,531238911,531240959,531243007,531245055,531247103,531248895,531249151,531251199,531259391,531260415,531261183,531261439,531263487,531265535,531267583,531275775,531276799,531277055,531277823,531279871,531281919,531283967,531292159,531333119,531333375,531333631,531333887,531334143,531335167,531337215,531339263,531341311,531349503,531351551,531355391,531355647,531357695,531361791,531365887,531382271,531382527,531382783,531383295,531383551,531383807,531384831,531385087,531385343,531385599,531385855,531386111,531386367,531398655,531400703,531402751,531404799,531406847,531408895,531409151,531409919,531410943,531415039,531423231,531424255,531427327,531431423,531496959,531628031,531660799,531693567,531695615,531697663,531699711,531701759,531703807,531705855,531707903,531709951,531718143,531720191,531722239,531724287,531726335,531759103,531890175,532021247,532152319,532168703,532185087,532201471,532205055,532205311,532205567,532211711,532212735,532212991,532214271,532214527,532214783,532215807,532221951,532223999,532226047,532234239,532242431,532244479,532246271,532246527,532250623,532283391,532291583,532291839,532292095,532292607,532293119,532293631,532295679,532297727,532303871,532305919,532307967,532310015,532312063,532314111,532316159,532324351,532328447,532329471,532330495,532332543,532340735,532340991,532341247,532341503,532341759,532342271,532342527,532344063,532344319,532344575,532345087,532345343,532345855,532346623,532346879,532347391,532347903,532348927,532365311,532365567,532365823,532366079,532366335,532366591,532366847,532367615,532368127,532368383,532368639,532368895,532369151,532370431,532371455,532372479,532373503,532375551,532377599,532381695,532414463,532676607,532692991,532701183,532703231,532705279,532709375,532725759,532729855,532731903,532733951,532734975,532735487,532735999,532736511,532736767,532737023,532737279,532737535,532737791,532738047,532739583,532739839,532740095,532742143,532746239,532750335,532752383,532754431,532756479,532758527,532762623,532766719,532768767,532770815,532772863,532774911,532779007,532783103,532785151,532787199,532789247,532789503,532789759,532790015,532790271,532790527,532790783,532791039,532791295,532793343,532795391,532797439,532799231,532799487,532801535,532802303,532802559,532802815,532803071,532803583,532805631,532807679,533200895,533233663,533250047,533254143,533256191,533262335,533264383,533266431,533331967,533397503,533463039,533463295,533463551,533463807,533464063,533469695,533469951,533470207,533471231,533475327,533475583,533475839,533476095,533476351,533476607,533476863,533477119,533477375,533479423,533480191,533480447,533481471,533482495,533482751,533483519,533485567,533487615,533491711,533495807,533496831,533497855,533498367,533500159,533500415,533502975,533503487,533503999,533512191,533528575,533594111,533659647,533661695,533667839,533669887,533670911,533672959,533673983,533675007,533676031,533680127,533682175,533682943,533683199,533684223,533692415,533725183,533762047,533762303,533765631,533765887,533767167,533767423,533807103,533811199,533815295,533819391,533823487,533823743,533823999,533825535,533831679,533835775,533837823,533839871,533856255,533858303,533858559,533858815,533859071,533859327,533859583,533860095,533860351,533860607,533860863,533861119,533861375,533861631,533862399,533864447,533872127,533872383,533889023,533891071,533893119,533894143,533894399,533895167,533897215,533899263,533899519,533900799,533901311,533905407,533913599,533915647,533918207,533918463,533918975,533919743,533921791,533954559,533962751,533964799,533966847,533968895,533970943,533987327,534118399,534151167,534151423,534151679,534152191,534152703,534153471,534153983,534154239,534154495,534154751,534155263,534155519,534155775,534156287,534157311,534157567,534157823,534158079,534158335,534158591,534158847,534159359,534159615,534159871,534160383,534161407,534163455,534167551,534168575,534169599,534170111,534170623,534174463,534175231,534176767,534177791,534179839,534181887,534183935,534249471,534253567,534256639,534256895,534257663,534258431,534258943,534259199,534259455,534259711,534261759,534263807,534264063,534264319,534264575,534264831,534265343,534265599,534265855,534282239,534283263,534284287,534286335,534288383,534290431,534296575,534298623,534306815,534308863,534310911,534315007,534347775,534348031,534348287,534349567,534349823,534350079,534355967,534364159,534366207,534368255,534370303,534372351,534374399,534376447,534378495,534378751,534379007,534379263,534379519,534379775,534380031,534380287,534380543,534511615,534512639,534512895,534513151,534513407,534513663,534514431,534514687,534515199,534515455,534515711,534517503,534517759,534518783,534519039,534519295,534519807,534521855,534522367,534522879,534523391,534523903,534527999,534535935,534536191,534536447,534536959,534537215,534537727,534537983,534538751,534539007,534539775,534540031,534540287,534544383,534546431,534548479,534548735,534548991,534549247,534549503,534550015,534550271,534550527,534560767,534609919,534642687,534645759,534646271,534646783,534648831,534650879,534652927,534654975,534655999,534656767,534659327,534660607,534661119,534662655,534663167,534675455,534691839,534693887,534695935,534700031,534700287,534700543,534700799,534701055,534701311,534701567,534701823,534702079,534702335,534702591,534702847,534703359,534703615,534703871,534704127,534704383,534704639,534704895,534705151,534705407,534705663,534705919,534706175,534706431,534706687,534706943,534707199,534707455,534707711,534707967,534708223,534740991,534749183,534753279,534755327,534755583,534756095,534756351,534756863,534757119,534757375,534761471,534765567,534767615,534769663,534773759,536870911,538466303,538466559,538779647,538780671,538875391,538875647,539197439,539198463,539299839,539300863,539377663,539378687,539444223,539444479,539444735,539623423,539623935,539627007,539627519,539631615,539635711,539647999,539649023,539649279,539649535,539650303,539650559,539652095,539656191,539660287,539666431,539668479,539670527,539672575,539673599,539674111,540687103,540687359,540697343,540697599,540698623,540699647,540700159,540700415,540705535,540706815,540725247,540727295,540727807,540728063,540729343,540729599,540731391,540733439,540737535,540740863,540741119,540741631,540744703,540744959,540745727,540747775,540749823,540750335,540750591,540750847,540751359,540752639,540754687,540754943,540755967,540756735,540758015,540759039,540759295,540760063,540760319,540762623,540763135,540764159,540764415,540786687,540786943,540803071,540804351,540805119,540808447,540809215,540809727,540810239,540811263,540819455,540820991,540821247,540823807,540824063,540824319,540824575,540825599,540826367,540826879,540827135,540827391,540828927,540829439,540829695,540833791,540834047,540835327,541188095,541188607,541189119,541189631,541190143,541947135,541947391,542541311,542541567,542856703,542856959,543199231,543199487,543424511,543424767,543459583,543460095,543460351,543460607,543468543,543468799,543478783,543479039,543488511,543489023,543504127,543504383,543537663,543537919,543538175,543539711,543540735,543540991,543547647,543547903,543581183,543582207,543595519,543595775,543601151,543601407,543606271,543606527,543629311,543629567,543690751,543691007,543761919,543762687,543817727,543818239,543819263,543820287,543821311,543821567,543821823,543823871,543824639,543825663,543830015,543832063,543833087,543834111,543835135,543836159,543836671,543837695,543838207,543840255,543842559,543843071,543843583,543843839,543844095,543844351,543845119,543846143,543846655,543846911,543847167,543847423,543848447,543850751,543851007,543851775,543852031,543852543,543854079,543855615,543855871,543856639,543857407,543857663,543857919,543858943,543859455,543859967,543860223,543860479,543860735,543861247,543862271,543863295,543864319,543864575,543865855,543866623,543868927,543870975,543872511,543872767,543874047,543875071,543875839,543877119,543878655,543880191,543881727,543883263,543883519,543884031,543885567,543885823,543886079,543886335,543886591,543886847,543887359,543887615,543887871,543888127,543889663,543889919,543891199,543891455,543892479,543892735,543897087,543897599,543897855,543898111,544210943,544211199,544211455,544212735,544212991,544218367,544218623,544219903,544220159,544220415,544220927,544221183,544221439,544221695,544223231,544223487,544223743,544223999,544224255,544224511,544224767,544225023,544225279,544225535,544226047,544226303,544226559,544228351,544228863,544229631,544229887,544230143,544230399,544230655,544230911,544231935,544232191,544233983,544234239,544235263,544235519,544238335,544238591,544241663,544242687,544244479,544244735,544245247,544245503,544246783,544247039,544247551,544248063,544248575,544248831,544251903,544252159,544254719,544254975,544255999,544256255,544258047,544258815,544259071,544259327,544260095,544261375,544262655,544262911,544263167,544264191,544269311,544269567,544271103,544271359,544272383,544276479,544276735,544276991,544277247,544278015,544278271,544280063,544280319,544282367,544282623,544283135,544283391,544284159,544284415,544284927,544285183,544289791,544290303,544291071,544291583,544295935,544296191,544297983,544298239,544301055,544301311,544302079,544302335,544302847,544303103,544303615,544303871,544305663,544305919,544308479,544308991,544309759,544310015,544310783,544311295,544311551,544311807,544312319,544312575,544313599,544313855,544314367,544314623,544317695,544317951,544324863,544325119,544325887,544326143,544327935,544328191,544329215,544329471,544331519,544331775,544332543,544332799,544334335,544334591,544334847,544335103,544337407,544337663,544348159,544348415,544349183,544349439,544349695,544349951,544351743,544351999,544352511,544354047,544354303,544357887,544358143,544358399,544358655,544358911,544359167,544359423,544359679,544359935,544360191,544361983,544362239,544362495,544362751,544363263,544363519,544367871,544368127,544368895,544369151,544369407,544370687,544371455,544371711,544372991,544373503,544373759,544374783,544375807,544376063,544378111,544378367,544389119,544389375,544391423,544391679,544392191,544392447,544393727,544394239,544394751,544395263,544395519,544395775,544396543,544396799,544399103,544399871,544400383,544400639,544401663,544401919,544402943,544403199,544404223,544404479,544404991,544405247,544405503,544406271,544416255,544416767,544423935,544424703,544424959,544425471,544425727,544426495,544426751,544428031,544431615,544432383,544432639,544433151,544434175,544434431,544434687,544435455,544435711,544436223,544450047,544450303,544475135,544475647,544476927,544478463,544478719,544480767,544481023,544481791,544482047,544483839,544484095,544484607,544484863,544485631,544486399,544488191,544488447,544489727,544491007,544491263,544491775,544492031,544493567,544493823,544494079,544494335,544494847,544496383,544496639,544500735,544500991,544501247,544501503,544504575,544504831,544507135,544508159,544508671,544508927,544511231,544511487,544511999,544512255,544512511,544512767,544514047,544515327,544516351,544521215,544523263,544523519,544525567,544526079,544531199,544531711,544532991,544533247,544534271,544534783,544536319,544536831,544537599,544537855,544538623,544542207,544542463,544543999,544544255,544545791,544546047,544546303,544546559,544547071,544547327,544550399,544550655,544556543,544556799,544558591,544558847,544568063,544568319,544568831,544569087,544570111,544570367,544572159,544572415,544573183,544573439,544575231,544575487,544580607,544580863,544581119,544581375,544581887,544582143,544585215,544585471,544592639,544592895,544593663,544593919,544594175,544594431,544598015,544598271,544602623,544602879,544604159,544604415,544604671,544604927,544607743,544607999,544608255,544608511,544610815,544611071,544612863,544613119,544620287,544620543,544625407,544625663,544627455,544627711,552547071,552548095,552588799,552589823,552591359,552592383,552598271,552598527,570425343,570429439,570433535,570437631,570441727,570449919,570458111,570466303,570474495,570482687,570482943,570483199,570483455,570483711,570484223,570484479,570485247,570486783,570490879,570494975,570499071,570503167,570507263,570507519,570507775,570508031,570510591,570510847,570511103,570511359,570513151,570513407,570518527,570518783,570521343,570521599,570524159,570524415,570527743,570527999,570528255,570528511,570535167,570535423,570536191,570536447,570537215,570537471,570537983,570538239,570539775,570540031,570541567,570541823,570542079,570542335,570542847,570543103,570548223,570548735,570548991,570549247,570550015,570550527,570552575,570552831,570553087,570553343,570553599,570553855,570557951,570558207,570559487,570559743,570559999,570560255,570568447,570568703,570571775,570572031,570574335,570574591,570575103,570575615,570575871,570576383,570577151,570577407,570579711,570579967,570582015,570582271,570582527,570582783,570585343,570585599,570586623,570586879,570587391,570587903,570590207,570590463,570592767,570593023,570597887,570598143,570604799,570605311,570605567,570606079,570606847,570607103,570607871,570608127,570612479,570613247,570614783,570615295,570615807,570616063,570618367,570618623,570621439,570621695,570631423,570631679,570633727,570633983,570635007,570635263,570635775,570636031,570640639,570640895,570643967,570644223,570644735,570644991,570645247,570645503,570649087,570649343,570652671,570652927,570653183,570653439,570654975,570655487,570656511,570656767,570659583,570659839,570660607,570660863,570661375,570661631,570661887,570662143,570664191,570664447,570666495,570666751,570667519,570667775,570671359,570671871,570673407,570673663,570674175,570674431,570675711,570675967,570676479,570676735,570680575,570681087,570681343,570681855,570686207,570686463,570686719,570686975,570691583,570691839,570692095,570692607,570693119,570693887,570695935,570696191,570701055,570701311,570706687,570706943,570707711,570707967,570708735,570708991,570710015,570710271,570710527,570710783,570711551,570711807,570712831,570713343,570717951,570718207,570724863,570725119,570726143,570726399,570729215,570729471,570731519,570731775,570733311,570733567,570738431,570738687,570744575,570745087,570746367,570746623,570747903,570748415,570749951,570750207,570756095,570756351,570757631,570757887,570760703,570760959,570761727,570761983,570762239,570762495,570763775,570764031,570765311,570765567,570765823,570766079,570766335,570766591,570767359,570767615,570768895,570769151,570769919,570770175,570770687,570770943,570771455,570771711,570772223,570772479,570777599,570778111,570784255,570784511,570785535,570785791,570787583,570787839,570789119,570789375,570789631,570789887,570792703,570792959,570793471,570793727,570798079,570798335,570806271,570806527,570809343,570809855,570810879,570811135,570811903,570812415,570816511,570816767,570817023,570818047,570822143,570822399,570822655,570822911,570824191,570824447,570828543,570828799,570831871,570832127,570835455,570835711,570837247,570837503,570838015,570838271,570839295,570839551,570839807,570840063,570841343,570841599,570841855,570842111,570842879,570843135,570843391,570843647,570845951,570846207,570846975,570847231,570852095,570852607,570852863,570853119,570855935,570856191,570856447,570856703,570859007,570859519,570861567,570861823,570862847,570863103,570863871,570864127,570865663,570865919,570870015,570870271,570876159,570876671,570879743,570879999,570888191,570888447,570889215,570889471,570890239,570890495,570892799,570893055,570893311,570893823,570894847,570895103,570896895,570897151,570897663,570897919,570900735,570900991,570904319,570904575,570908415,570908671,570918143,570918655,570919167,570919423,570921471,570921727,570921983,570922239,570923007,570923263,570923775,570924287,570924799,570925055,570925311,570925567,570925823,570926079,570927871,570928127,570928895,570929151,570929919,570930431,570931967,570932223,570935039,570935295,570938367,570938879,570939135,570939391,570943487,570943743,570943999,570944255,570944767,570945279,570946559,570946815,570948095,570948351,570948607,570948863,571539455,571604991,571670527,571703295,571768831,571834367,571867135,571883519,571895807,571932671,572522495,572555263,572588031,572653567,572686335,572702719,572708863,572710911,572719103,572784639,572915711,572919295,572919551,572981247,573014015,573046783,573079551,573112319,573505535,573521919,573538303,573571071,573702143,573718527,573734911,574619647,574620415,574620671,574620927,574621183,574621439,574621695,574621951,574627839,574685183,574710271,574710527,574750719,575406079,575471615,575668223,575733759,575930367,576028671,576126975,576176127,576192511,576258047,576290815,576323583,576389119,576454655,576520191,576585727,576651263,576667647,576684031,576709119,576709375,576716799,576749567,576782335,576847871,576886783,576887807,576888831,576889855,576890879,576892415,576892927,576893951,576895999,576897023,576898047,576901119,576903167,576903679,576904191,576905215,576905727,576906239,576906751,576907263,576907775,576908287,576908799,576909311,576909823,576910335,576910847,576911359,576911871,576912383,576912895,576913407,576916479,576917503,576918527,576920063,576920575,576921087,576921599,576922623,576923647,576924671,576925695,576927743,576928767,576929279,576929791,576930303,576930815,576931839,576932351,576932863,576933887,576935935,576937983,576939007,576941055,576942079,576943103,576943615,576944639,576945151,576945663,576945919,576946175,576946687,576947199,576948223,576948735,576949247,576949759,576950271,576950783,576951295,576952831,576953343,576953855,576954367,576954879,576955391,576955903,576956415,576956927,576957439,576957951,576958463,576958975,576959487,576959999,576960511,576961023,576962047,576962559,576963071,576963583,576964095,576964607,576965119,576965631,576966655,576967167,576967679,576968191,576968703,576969215,576969727,576971263,576971775,576972287,576972799,576973311,576973823,576974335,576974847,576975359,576975871,576976383,576976895,576977407,576977919,576978431,576978943,576979967,576980991,576984063,576985087,576986111,576987135,576988159,576989183,576990207,576990719,576991231,576992767,576993279,576993791,576994303,576994815,576995327,576999423,577001471,577005567,577006079,577007615,577008639,577008895,577009151,577011711,577044479,577045247,577045503,577046271,577046527,577046783,577049087,577049343,577049599,577051647,577052671,577110015,577175551,577176063,577176575,577177087,577177599,577178111,577178623,577179135,577179647,577183743,577184255,577184767,577185279,577186303,577187839,577188351,577189375,577189887,577190399,577190911,577191935,577192959,577196031,577196287,577196799,577200127,577200639,577208319,577209343,577209599,577209855,577210367,577210879,577211391,577211903,577212415,577212927,577213439,577214463,577214975,577215487,577215999,577216511,577217023,577217535,577219071,577219583,577220095,577220607,577221119,577221631,577222143,577222655,577223167,577223679,577224191,577224703,577225215,577225727,577226239,577226751,577227263,577228543,577228799,577229311,577229823,577230335,577230847,577231359,577231615,577231871,577232127,577232383,577232639,577232895,577233151,577233407,577233663,577234431,577234687,577234943,577235199,577235455,577235711,577235967,577236223,577236479,577236735,577236991,577237247,577237503,577237759,577238015,577238271,577238527,577239039,577239295,577239551,577239807,577240063,577240319,577240575,577240831,577241087,577247231,577247487,577253631,577253887,577254399,577255935,577256447,577256959,577257471,577260543,577261567,577263615,577265663,577267711,577268223,577268735,577269247,577269759,577270271,577270783,577271807,577272319,577272831,577273343,577273855,577306623,577339391,577372159,577437695,577470463,577769727,577769983,577771007,577771263,577774591,577774847,577778175,577778943,577779199,577779455,577781503,577781759,577783295,577783551,577786879,577787135,577787903,577788159,577791231,577791487,577792767,577793023,577797119,577797375,577798911,577799167,577799935,577800191,577803007,577803263,577804543,577804799,577806591,577806847,577809407,577809663,577814783,577815039,577815551,577815807,577823999,577824255,577824767,577825279,577827327,577827583,577828095,577828607,577831935,577832191,577834751,577835007,577835263,577835519,577837823,577838335,577838591,577838847,577839103,577839615,577842175,577842431,577842943,577843199,577843711,577843967,577844479,577844735,577845503,577845759,577850623,577850879,577852415,577852671,577852927,577853183,577858047,577858303,577860095,577860351,577860863,577861375,577862143,577862399,577864191,577864447,577867007,577867263,577869567,577870079,577870847,577871103,577871871,577872127,577872895,577873407,577873919,577874431,577876479,577876735,577877247,577877503,577883391,577883647,577886719,577886975,577887487,577887743,577890047,577890303,577891071,577891327,577891839,577892095,577894911,577895167,577899007,577899263,577902591,577902847,577903359,577903615,577905407,577905663,577907455,577907711,577911807,577912063,577914111,577914367,577916159,577916415,577916671,577916927,577917439,577917695,577919999,577920255,577921535,577921791,577923327,577923583,577928447,577928703,577931263,577931519,577934079,577934335,577935103,577935359,577938431,577938687,577942783,577943039,577943551,577943807,577944319,577944575,577945343,577945599,577948927,577949183,577952767,577953023,577953535,577953791,577954559,577954815,577955327,577955839,577958911,577959167,577960191,577960703,577963519,577963775,577967103,577967359,577974015,577974271,577976831,577977087,577980671,577980927,577981695,577981951,577982207,577982463,577984511,577984767,577987071,577987327,577987583,577987839,577989631,577989887,577990655,577990911,577993215,577993471,577995519,577995775,577999103,577999359,578001663,578001919,578002431,578002687,578004991,578005247,578006271,578006527,578010111,578010367,578010879,578011391,578011903,578012159,578012927,578013183,578013439,578013951,578014719,578014975,578019839,578020095,578024191,578024447,578025215,578025471,578043903,578060287,578093055,578158591,578191359,578207743,578221055,578221567,578221823,578222079,578223615,578224127,578554879,578555903,578557951,578559999,578562047,578562559,578563071,578563583,578564095,578564607,578565119,578566143,578566655,578567167,578567679,578568191,578568703,578568959,578569215,578569727,578569983,578570239,578570495,578570751,578571007,578571263,578571775,578572031,578572287,578572799,578573311,578574335,578580479,578584575,578617343,578699263,578732031,578736127,578740223,578793727,578793983,578794495,578796031,578796543,578797055,578797567,578823167,578823423,578823679,578824703,578825215,578825727,578826239,578826495,578826751,578827263,578828287,578828799,578829311,578829823,578830335,578846719,578879487,578945023,579010559,579076095,579403775,579469311,579600383,579643391,579643647,579665919,579698687,579731455,579764223,579796991,579829759,579862527,579993599,580059135,580091903,580124671,580255743,580288511,580321279,580337663,580370431,580386815,580403199,580404223,580404479,580404735,580407295,580407807,580408319,580408831,580409343,580460543,580460799,580461055,580509695,580509951,580510207,580517887,580583423,580648959,580716543,580717055,580717567,580718591,580723711,580725759,580726271,580726783,580730879,580734975,580735487,580735999,580736767,580737023,580737535,580738047,580739071,580745471,580745727,580746239,580746751,580747263,580749311,580749823,580750335,580751359,580756479,580757503,580758527,580759039,580759551,580763647,580767743,580768255,580768767,580769535,580769791,580770303,580770815,580771839,580778239,580779007,580779519,580779775,580780031,580845567,580911103,581107711,581173247,581238783,581304319,581369855,581894143,581959679,582025215,582033407,582034431,582034943,582037503,582038015,582038527,582746879,582747135,582748671,582748927,582750207,582750463,582751487,582751743,582752767,582753023,582754815,582755071,582755839,582756095,582761727,582761983,582762239,582762495,582762751,582763007,582765567,582765823,582766335,582766591,582771967,582772223,582772735,582772991,582773759,582774015,582776063,582776319,582778367,582778623,582779135,582779391,582784255,582784511,582787071,582787327,582787583,582787839,582789375,582789631,582789887,582790143,582791679,582791935,582793727,582793983,582794751,582795007,582798079,582798335,582799871,582800127,582804735,582804991,582806271,582806527,582807295,582807551,582811903,582812159,582812415,582812671,582814463,582814719,582817023,582817279,582819327,582819583,582821631,582821887,582822143,582822399,582823423,582824191,582827519,582827775,582828031,582828287,582828799,582829311,582832639,582832895,582833407,582833663,582836479,582836991,582838015,582838271,582839551,582839807,582840831,582841343,582842367,582842623,582844671,582844927,582845695,582845951,582846975,582847231,582847999,582848255,582849023,582849279,582851839,582852095,582854911,582855167,582855935,582856191,582857727,582857983,582861567,582861823,582862335,582862591,582863103,582863359,582863871,582864127,582866687,582867199,582877439,582877695,582878207,582878463,582881279,582881535,582883071,582883327,582883583,582883839,582884351,582884863,582887679,582887935,582888191,582888447,582889471,582889983,582891263,582891519,582893311,582893567,582897151,582897663,582898943,582899199,582900223,582900479,582901247,582901503,582902271,582902527,582904575,582904831,582905599,582906111,582908415,582908671,582913791,582914047,582917631,582917887,582918143,582918399,582919167,582919423,582922495,582923263,582923519,582923775,582926079,582926335,582929151,582929407,582931711,582931967,582936063,582936319,582937855,582938111,582941439,582941695,582943487,582943743,582944255,582944511,582945023,582945279,582946303,582946559,582947071,582947327,582948351,582948607,582949119,582949375,582949887,582950143,582951167,582951679,582952959,582953215,582953727,582953983,582954239,582954495,582958079,582958335,582958591,582958847,582959103,582959359,582959615,582959871,582963711,582964223,582966527,582966783,582967295,582967551,582968319,582968575,582970111,582970367,582972159,582972415,582972671,582972927,582978815,582979071,582980607,582980863,582981119,582981375,582981631,582981887,582982655,582982911,582986751,582987007,582991103,582991359,582991615,582991871,582992383,582992639,582994431,582994687,582995967,582996223,582996479,582996735,582998015,582998271,583000575,583000831,583004415,583004671,583005951,583006207,583007231,583007487,586153983,587202559,590902783,590903295,591077375,591077631,591874047,591875071,591880191,591880447,591880703,591880959,591881215,591881471,591881727,591881983,591882239,591882495,591882751,591883007,591883263,591883519,591883775,591884031,591884287,591884543,591884799,591885055,591885823,591886079,591886335,591886591,591886847,591921151,592129535,592129791,592445439,597164031,597229567,597295103,597360639,597426175,597688319,598736895,598957823,598958079,598999039,599130111,599211007,599211263,599261183,599359487,599371775,599375871,599429119,599433215,599457791,599490559,599494655,599498751,599506943,599515135,599523327,599588863,599605247,599621631,599629823,599638015,599654399,599703551,599711743,599715839,599941119,599949311,599982079,600047615,600145919,600154111,600162303,600178687,600195071,600227839,600244223,600260607,600276991,600309759,600342527,600375295,600383487,600385791,600386047,600408063,600440831,600506367,600539135,600560127,600562687,600564223,600564735,600565247,600565759,600567807,600571903,600637439,600702975,600707839,600708095,600708607,600708863,600709119,600709375,600710399,600710655,600735743,600752127,600768511,600784895,600817663,600834047,600965119,601030655,601161727,601194495,601210879,601227263,601260031,601292799,601309183,601325567,601341951,601358335,601391103,601423871,601440255,601456639,601489407,601489663,601490431,601490943,601491455,601491711,601495551,601495807,601498879,601499135,601499391,601499647,601501439,601501695,601508351,601508607,601512959,601513215,601516287,601516799,601517567,601517823,601518847,601519103,601520383,601520639,601521407,601521663,601522431,601522687,601524479,601524735,601524991,601525247,601526783,601527039,601528319,601528575,601530879,601531135,601533183,601533439,601537535,601537791,601539071,601539583,601542143,601542399,601543679,601544191,601545727,601546239,601548543,601548799,601551103,601551359,601553919,601554175,601554943,601587711,601605887,601606143,601606399,601606655,601609471,601609727,601611775,601612031,601612287,601620479,601624575,601625087,601625599,601626623,601627135,601627391,601627647,601628671,601630719,601630975,601631231,601631487,601631743,601631999,601632255,601634815,601635839,601645055,601653247,601686015,601702399,601718783,601751551,602144767,602210303,602243071,602275839,602308607,602316799,602337279,602341375,602472447,602505215,602537983,602554367,602570751,602578943,602583039,602587135,602591231,602595327,602599423,602603519,602607615,602611711,602615807,602619903,602647039,602647295,602658815,602659071,602660863,602701823,602718207,602931199,602963967,602996735,603013119,603029503,603062271,603066367,603066879,603067391,603068415,603068927,603069183,603069439,603070463,603072511,603072767,603073023,603073279,603073535,603073791,603074047,603076607,603077631,603078655,603086847,603095039,603111423,603127807,603129855,603131903,603142143,603160575,603193343,603209727,603226111,603324415,603357183,603389951,603422719,603439103,603455487,603979775,603980799,603981823,604110847,604241919,604504063,605028351,606412799,606413823,606414335,606414591,606420991,606424063,606424319,606434815,606435071,606437375,606470143,606601215,607256575,607257087,607257343,607258111,607258623,607259647,607260159,607260671,607261183,607261951,607262207,607262719,607264255,607264511,607264767,607265279,607265791,607266047,607266303,607266815,607267327,607267583,607268863,607269375,607269631,607269887,607270911,607271423,607271679,607271935,607272959,607275007,607275519,607276031,607276287,607276543,607277055,607277567,607277823,607278079,607278591,607279615,607279871,607280127,607281663,607282175,607282687,607283711,607284223,607284479,607284735,607285247,607286271,607286783,607287295,607288319,607288831,607289855,607290367,607291391,607293439,607293951,607294207,607294463,607294975,607298047,607298559,607299071,607299583,607301119,607302399,607302655,607303167,607303679,607306751,607307007,607307263,607307775,607308799,607309055,607309311,607309823,607310335,607311359,607311615,607313151,607313407,607314431,607314943,607315455,607315967,607317503,607317759,607318527,607320063,607320575,607321087,607321343,607321599,607387647,607649791,608174079,608387839,608388095,608389631,608389887,609777663,609777919,609783807,609784063,609821439,609821695,609843967,609844223,609985279,609985535,610259711,610259967,610266111,610266367,610271231,618659839,619708415,620232703,620494847,620625919,620691455,620697599,620698623,620699647,620700671,620701439,620701695,620703743,620704767,620705791,620706815,620707839,620708863,620709887,620711935,620712959,620715007,620715263,620715519,620716031,620716287,620716543,620716799,620717055,620718079,620718591,620719103,620720127,620721151,620722175,620723199,620724223,620725247,620726271,620727295,620727807,620728319,620729343,620731391,620732415,620733439,620734463,620735487,620737535,620739583,620740607,620741631,620743679,620743935,620744191,620744703,620745727,620745983,620746495,620746751,620747775,620748799,620751871,620752895,620753919,620754943,620756991,620758015,620758783,620759039,620763135,620765183,620773375,620775423,620777471,620781567,620783615,620785663,620785919,620786175,620786431,620786687,620786943,620787199,620787455,620787711,620789759,620812287,620822527,620845055,620845311,620845567,620845823,620849151,620851199,620855295,620859391,620859647,620860159,620861183,620861439,620863487,620863999,620864255,620864511,620865023,620865535,620865791,620866047,620866815,620867583,620868351,620868863,620869119,620869375,620869887,620870143,620870399,620870655,620870911,620871167,620871679,620873727,620875775,620877823,620879871,620880895,620881919,620888063,621019135,621150207,621215743,621281279,621314047,621318143,621322239,621330431,621346815,621350911,621355007,621355263,621355519,621356031,621357311,621358079,621358335,621358591,621358847,621359103,621361151,621363199,621363711,621363967,621369087,621369343,621375999,621376255,621381631,621383679,621387775,621389823,621391871,621393919,621395967,621398015,621400063,621402111,621404159,621408255,621410303,621412351,621412863,621413631,621413887,621414143,621414399,621416447,621416703,621417471,621417727,621418495,621419007,621419263,621419519,621419775,621420543,621420799,621421055,621421567,621421823,621422079,621422335,621422591,621422847,621423103,621423615,621423871,621424127,621424383,621426687,621426943,621427711,621427967,621428479,621428735,621429759,621430271,621430527,621430783,621432831,621436927,621438975,621439487,621439743,621439999,621440255,621440511,621441023,621441279,621442047,621442303,621442559,621442815,621443071,621445119,621805567,621813759,621821951,621823999,621824255,621824511,621825023,621825279,621825535,621825791,621826047,621828095,621828351,621828607,621828863,621829119,621830143,621838335,621871103,621903871,621912063,621916159,621918207,621918719,621918975,621919231,621919487,621919743,621919999,621920255,621924351,621928447,621930495,621932543,621934591,621936639,621936895,621937663,621938687,621940735,621940991,621942783,621943039,621944319,621944575,621945855,621946111,621947391,621947903,621948927,621950975,621951487,621951743,621951999,621952511,621953023,621955071,621959935,621960191,621961215,621962239,621963007,621963263,621969407,621969663,621969919,621970431,621971455,621973503,621975551,621977599,621981695,621983743,621985791,621987839,621989887,621993727,621993983,621998079,622000127,622004223,622006271,622007295,622007551,622008319,622010367,622018559,622020607,622022655,622026751,622027263,622027519,622027775,622028031,622028799,622030847,622034943,622051327,622051839,622052095,622052351,622053631,622053887,622054143,622054399,622054655,622054911,622055423,622055679,622055935,622056191,622056959,622057471,622057727,622057983,622058239,622058495,622059007,622059263,622059519,622067711,622329855,622395391,622403583,622405631,622406655,622407679,622409727,622411775,622413823,622415871,622417919,622419967,622428159,622430207,622432255,622434303,622436351,622438399,622439423,622444543,622449663,622451711,622452735,622454783,622456831,622458879,622459903,622460927,622477311,622479359,622481407,622483455,622485503,622487551,622489599,622493695,622497791,622499839,622501887,622503935,622505983,622510079,622512127,622514175,622518271,622518783,622519039,622519295,622519807,622520319,622522367,622524415,622526463,622591999,622624767,622626815,622630911,622632959,622641151,622657535,622690303,622723071,622854143,622866431,622868479,622870527,622874623,622878719,622879743,622879999,622880255,622880511,622880767,622882815,622886911,622919679,622985215,622993407,622997503,623001599,623003647,623005695,623007743,623009791,623017983,623050751,623052799,623054847,623058943,623059967,623060223,623060479,623060735,623060991,623062015,623063039,623064063,623064319,623064575,623064831,623067135,623069183,623071231,623073279,623075327,623077375,623083519,623116287,623378431,623509503,623640575,623642623,623644671,623648767,623650815,623652863,623654911,623656959,623673343,623689727,623691775,623692799,623693823,623694847,623695103,623695359,623695615,623695871,623696895,623697919,623698943,623699967,623700991,623702015,623703039,623703551,623704063,623705087,623706111,623771647,623773695,623774719,623775743,623777791,623779839,623783935,623784959,623788031,623790079,623792127,623794175,623796223,623797247,623798271,623800319,623800575,623800831,623801087,623801599,623802111,623802367,623802879,623804415,623806463,623808511,623809535,623809791,623810047,623810303,623810559,623812607,623820799,623821823,623822335,623822591,623822847,623824895,623826943,623837183,623902719,623919103,623935487,623960063,623962111,623964159,623966207,623968255,624001023,624005119,624005631,624005887,624006399,624006655,624007167,624009215,624025599,624026111,624026367,624027647,624029695,624033791,624164863,624427007,624492543,624558079,624562175,624564223,624566271,624568319,624570367,624574463,624590847,624647679,624647935,624675071,624675327,624689151,624691199,624693247,624695295,624697343,624699391,624701439,624705535,624721919,624723967,624725503,624725759,624726015,624728063,624730111,624731135,624731903,624732159,624734207,624736255,624738303,624740351,624742399,624746495,624754687,624787455,624791551,624795647,624799743,624801791,624803839,624807935,624812031,624812287,624812543,624812799,624813055,624813311,624813567,624813823,624814079,624816127,624818175,624820223,624885759,624918527,624951295,625475583,625483775,625485823,625487871,625491967,625500159,625504255,625506303,625508351,625508863,625509119,625509375,625509631,625509887,625510143,625510399,625510655,625510911,625511167,625511679,625511935,625512191,625512447,625514495,625516543,625518591,625519103,625519615,625520639,625522687,625523455,625523711,625523967,625524479,625524735,625532927,625533183,625533439,625533695,625533951,625534207,625534463,625541119,625606655,625616127,625616383,625672191,625674239,625676287,625680383,625688575,625704959,625707007,625709055,625709823,625710079,625711103,625713151,625721343,625725439,625727487,625729535,625731583,625733119,625733375,625733631,625735679,625737727,625770495,625786879,625795071,625803263,625811455,625811711,625811967,625812223,625812479,625812735,625812991,625814271,625815551,625817599,625817855,625818111,625818623,625818879,625819135,625819391,625819647,625823743,625827839,625829887,625831935,625836031,625836287,625838079,625840127,625840383,625840639,625840895,625841407,625841663,625841919,625842175,625844223,625846271,625847807,625848063,625848319,625851391,625851903,625852415,625854463,625856511,625860607,625868799,625999871,627048447,627130367,627142655,627143679,627144703,627144959,627145215,627145727,627146751,627179519,627212287,627216383,627218431,627220479,627228671,627230719,627232767,627236863,627238911,627239167,627240959,627245055,627277823,627294207,627296255,627298303,627300351,627302399,627572735,627834879,627965951,628006911,628015103,628017151,628019199,628021247,628023039,628023295,628029439,628031487,628064255,628080639,628097023,628230143,628232191,628236287,628244479,628246527,628248575,628250623,628252671,628260863,628277247,628293631,628359167,628621311,628654079,628654335,628654591,628654847,628655103,628655359,628655871,628656127,628656383,628656639,628657151,628657407,628657663,628657919,628658175,628658431,628658687,628658943,628659199,628659455,628659711,628659967,628660223,628660479,628660735,628660991,628661247,628661503,628661759,628662015,628662271,628670463,628670719,628670975,628671231,628671999,628672255,628672511,628672767,628673023,628673279,628673535,628673791,628674047,628674303,628674559,628674815,628675071,628675327,628675583,628675839,628676095,628676863,628677119,628677375,628677631,628677887,628678143,628678655,628680703,628680959,628681215,628681471,628681727,628681983,628682239,628682751,628683775,628684031,628685823,628686335,628686847,628752383,628785151,628789247,628791295,628792831,628793343,628801535,628803583,628805631,628807679,628808703,628809727,628813823,628815871,628817919,628834303,628842495,628844287,628844543,628846847,628847359,628847615,628848639,628850687,628867071,628868095,628868351,628868607,628869119,628871167,628873215,628875263,628877311,628879359,628881407,628882687,628882943,628883455,629145599,629178367,629180415,629182463,629184511,629188607,629190655,629192703,629194751,629196799,629197823,629198847,629202943,629207039,629209087,629209599,629210111,629210623,629211135,629276671,629293055,629309439,629313535,629315583,629317631,629325823,629326847,629327871,629329919,629331967,629334015,629334271,629338111,629340159,629342207,629374975,629387263,629389311,629391359,629399551,629401599,629405695,629407743,629669887,629735423,629800959,629866495,629874687,629878783,629879039,629879807,629880063,629882879,629884927,629886975,629889023,629891071,629895167,629897215,629898239,629898495,629899263,629899519,629899775,629900031,629900287,629901311,629903359,629905407,629907455,629915647,629967615,629967871,629968639,629968895,629971199,629971455,629971711,629971967,629972223,629972479,629972735,629972991,629983231,629985279,629987327,629987583,629987839,629988095,629988351,629988607,629988863,629989375,629991423,629992959,629993215,629993471,629993727,629993983,629994239,629994495,629994751,629995007,629995263,629995519,629995775,629996031,629996287,629996543,629996799,629997055,629997311,629997567,630063103,630128639,630130687,630136831,630138879,630140927,630141951,630142975,630144255,630144511,630144767,630145023,630147071,630149119,630151167,630153215,630157311,630159359,630161407,630161663,630161919,630162175,630162431,630163455,630165503,630167551,630169599,630173695,630177791,630194175,630456319,630489087,630491135,630493183,630495231,630497279,630499327,630501375,630503423,630507519,630508543,630508799,630509567,630511615,630512127,630512639,630513663,630515711,630517759,630519807,630520831,630521855,630587391,630718463,630720511,630722559,630726655,630732799,630734847,630736895,630737663,630737919,630738175,630738943,630743039,630751231,630759423,630767615,630783999,630802431,630804479,630806527,630808575,630816767,630817791,630818047,630818303,630818559,630818815,630819071,630819327,630819839,630820863,630822911,630823935,630824191,630824447,630824703,630824959,630827007,630828031,630828543,630829055,630833151,630849535,630980607,630981631,630981887,630982143,630982399,630982655,630988799,630989311,630989567,630990335,630990847,630992895,630996991,630997503,630997759,630998015,630998271,630998783,630999039,631000063,631001087,631005183,631006207,631007231,631008255,631009279,631018495,631019519,631023615,631024639,631024895,631025151,631025407,631025663,631026687,631027711,631028479,631028735,631029759,631033855,631034879,631035903,631037951,631038463,631038719,631038975,631039999,631043071,631043327,631043583,631043839,631044095,631045119,631046143,631046399,631048191,631050239,631054335,631056383,631058431,631060479,631062527,631078911,631080959,631083007,631085055,631087103,631095295,631097343,631099391,631103487,631105535,631107583,631109631,631111679,631177215,631570431,632291327,632815615,632946687,632952831,632954879,632963071,632979455,633012223,633063679,633064191,633064447,633065471,633065727,633066239,633072383,633072639,633077759,633094143,633098239,633100287,633102335,633110527,633143295,633208831,633241599,633274367,633290751,633298943,633307135,633339903,633602047,633864191,633880575,633884671,633885695,633885951,633886207,633886463,633886719,633888767,633889023,633889791,633890047,633890559,633890815,633892863,633894911,633896959,633929727,633997311,633999359,634001407,634003455,634007551,634009599,634011647,634028031,634060799,634068991,634069503,634070783,634071039,634072063,634072575,634073087,634075135,634077183,634093567,634110975,634111231,634111487,634111999,634114047,634114303,634114559,634114815,634115071,634115327,634115839,634116095,634118143,634122239,634124287,634126335,634191871,634193919,634195967,634198015,634200063,634202111,634204159,634206207,634208255,634216447,634220543,634222591,634224639,634388479,634396671,634398719,634400767,634402815,634404863,634408959,634411007,634411263,634412543,634413055,634415103,634417151,634419199,634421247,634454015,634486783,634494975,634497023,634499071,634503167,634505215,634507263,634511359,634517503,634519551,634650623,634912767,635043839,635076607,635092991,635094015,635095039,635097087,635101183,635103231,635105279,635105535,635105791,635106303,635106559,635107327,635109375,635174911,635183103,635185151,635187199,635191295,635195391,635195647,635196415,635196927,635197183,635197439,635203583,635207679,635211775,635213823,635217919,635219967,635224063,635240447,635256831,635257855,635258879,635259903,635260927,635261951,635262975,635263999,635264767,635265023,635266047,635267071,635268095,635269375,635269631,635269887,635270143,635271167,635272191,635273215,635281407,635283455,635283711,635284479,635285503,635287551,635289599,635291647,635292159,635292415,635293439,635293695,635295743,635297791,635299839,635301887,635305983,635437055,635502591,635568127,635699199,635715583,635717631,635719679,635723775,635725823,635727871,635729919,635731967,635732223,635732479,635732735,635732991,635733247,635733503,635733759,635735039,635737343,635737599,635748351,635764735,635830271,635842559,635843071,635843327,635843583,635844607,635845631,635845887,635846143,635846399,635846655,635854847,635856895,635858943,635860991,635863039,635863551,635864319,635864575,635864831,635865087,635865599,635865855,635872255,635873279,635873791,635874047,635874303,635874559,635874815,635875071,635875327,635875583,635876095,635876351,635876607,635876863,635877375,635877887,635878143,635878399,635879423,635881471,635881727,635885055,635887103,635893503,635893759,635894527,635894783,635895807,635961343,635994111,636026879,636043263,636047359,636049407,636051455,636055551,636057599,636059647,636092415,636157951,636158719,636158975,636159231,636159487,636159999,636162047,636166143,636168191,636170239,636170495,636170751,636171007,636171263,636171519,636171775,636172031,636172287,636174335,636176383,636178431,636180479,636182527,636183039,636183295,636183807,636184319,636185855,636186111,636186367,636186623,636188671,636190719,636223487,636485631,636747775,636755967,636757503,636757759,636764159,636780543,636813311,636878847,636901631,636901887,636944383,636952575,636956671,636958719,636960767,636965631,636966143,636966655,636966911,636967167,636967935,636968191,636968447,636968703,636968959,636974079,636974591,636974847,636975103,636977151,637140991,637206527,637239295,637251583,637255679,637257727,637259775,637263871,637267967,637270015,637272063,637272831,637273087,637273599,637274111,637274623,637275135,637275391,637276159,637278207,637288447,637296639,637298687,637300735,637302783,637304831,637313023,637315071,637316607,637317119,637319167,637321215,637323263,637324031,637324287,637325311,637325823,637326335,637326847,637327103,637327359,637328383,637328639,637328895,637329151,637329407,637329663,637329919,637330175,637330431,637330943,637331199,637331455,637331711,637331967,637332223,637332991,637333503,637333759,637334271,637334527,637334783,637335039,637335295,637335551,637335807,637336063,637336319,637336575,637336831,637337087,637337599,637403135,637534207,637698047,637706239,637747199,637763583,637861887,637862143,637986559,637986815,637992959,637995007,637996031,637997055,637999103,638001151,638009343,638013439,638017535,638018047,638018303,638018559,638019071,638019583,638020095,638020607,638020863,638021119,638021631,638025727,638025983,638026239,638026495,638026751,638027775,638028799,638030079,638030335,638030847,638031871,638033407,638033919,638042111,638050303,638058495,638124031,638125055,638126079,638127103,638128127,638132223,638132479,638132735,638133247,638134271,638135295,638136319,638136831,638137087,638137599,638137855,638138367,638140415,638148607,638152703,638154751,638155775,638156799,638164991,638173183,638181375,638189567,638197759,638205951,638206975,638207999,638210047,638210303,638210815,638211071,638212095,638213119,638214143,638215679,638215935,638216191,638217215,638218239,638222335,638222847,638223103,638223359,638224383,638225407,638226431,638230527,638234623,638235647,638236159,638246911,638251007,638252543,638253055,638255103,638402559,638410751,638418943,638435327,638533631,638550015,638554111,638557695,638560255,638564351,638653439,638654207,638660351,638660607,638662655,638664703,638722815,638723071,638723583,638724095,638726143,638726399,638727935,638728447,638729727,638730239,638738431,638748671,638753279,638753535,638754815,638763007,638871551,638896127,638897151,638910463,638922751,638924799,638957567,638959615,638961151,638961407,638961663,638962175,638992383,638994431,639000575,639003135,639003647,639007231,639007743,639008767,639016959,639021055,639022335,639022847,639023103,639023615,639057919,639066111,639074303,639107071,639172607,639205375,639238143,639242239,639246335,639328255,639330303,639369471,639369727,639372287,639372543,639374335,639374591,639441407,639442687,639442943,639451135,639510527,639510783,639631359,639632127,639632383,639632639,639645695,639646719,639671295,639672319,639682559,639682815,639689215,639689471,639690239,639690751,639691263,639691519,639696383,639696639,639770623,639787007,639803647,639804415,639804927,639805439,639806207,639807487,639807743,639808255,639808511,639808767,639809279,639809535,639809791,639811071,639827967,639844351,639860735,639868927,639877119,639885311,639893503,640094207,640096255,640106495,640122879,640124927,640126975,640131071,640135167,640139263,640143359,640163071,640163327,640180223,640188415,640221183,640229375,640230399,640231423,640232447,640233471,640234495,640235519,640237567,640245759,640250879,640251903,640252671,640252927,640262143,640266239,640268287,640269311,640270335,640272383,640274431,640278527,640286719,640370687,640371711,640371967,640372223,640372479,640372735,640373247,640373759,640376831,640377855,640379903,640380927,640382975,640383487,640383999,640385023,640393215,640401407,640417791,640419839,640421887,640422399,640422655,640422911,640423935,640425983,640434175,640438271,640442367,640442879,640443135,640443391,640444415,640445439,640446463,640450559,640477183,640477439,640477695,640478207,640479231,640481279,640483327,640491519,640493567,640495615,640496639,640497663,640508927,640509183,640509951,640510975,640511231,640511487,640511743,640511999,640513023,640514047,640534527,640534783,640538623,640538879,640539135,640540671,640544767,640545535,640545791,640548863,640585727,640586239,640587007,640588031,640588287,640589311,640624639,640626687,640626943,640627711,640628735,640628991,640629503,640630783,640638975,640639999,640640767,640641023,640641535,640642559,640643071,640645119,640645375,640645631,640646143,640647167,640649727,640649983,640653567,640653823,640654335,640654847,640655359,640659455,640659967,640662527,640663039,640663551,640671743,640672767,640674815,640675839,640677887,640679423,640679679,640778239,640786431,640794623,640798719,640798975,640799231,640799487,640799743,640799999,640800255,640800511,640800767,640801279,640801535,640801791,640802047,640802303,640802559,640802815,640819199,640820223,640821247,640822527,640822783,640823295,640823807,640824063,640825343,640826367,640827391,640835583,640843775,640851967,640852991,640853247,640854015,640855039,640855295,640855551,640856063,640860159,640876543,640880639,640884735,640888831,640889343,640889599,640889855,640890111,640890879,640891903,640892671,640892927,640901119,640907263,640908287,640909311,640914431,640915455,640915711,640915967,640916479,640916735,640916991,640917503,640921599,640923903,640924159,640924671,640924927,640925183,640925695,640933887,640935935,640936959,640937983,640938495,640938751,640940031,640941055,640942079,640958463,640966655,640970751,640971775,640972287,640972799,640974847,640975871,640976895,640978943,640983039,640984063,640985087,640985599,640986111,640987135,640987647,640988159,640988671,640989183,640991231,640991487,640991743,640992255,640992511,640992767,640993279,640997375,640997631,640997887,640998399,640999423,641073151,641073407,641073663,641074175,641074687,641075199,641075711,641076223,641076735,641077247,641077759,641078271,641078527,641078783,641079039,641079295,641079807,641080319,641080831,641081343,641081855,641082367,641082879,641083391,641083903,641084415,641084927,641085439,641085951,641086463,641086975,641087487,641087743,641088255,641088767,641089279,641089791,641090047,641090559,641091071,641091583,641091839,641092095,641092351,641092863,641093119,641093631,641094143,641094399,641094655,641094911,641095167,641095679,641096191,641096703,641096959,641097215,641097727,641098239,641098751,641099007,641099263,641099519,641100031,641100287,641100799,641101055,641101311,641101823,641102335,641102591,641102847,641103103,641103615,641103871,641104127,641104383,641104639,641104895,641105151,641105407,641105663,641105919,641155071,641157119,641163775,641165311,641167103,641204223,641209343,641209855,641210111,641210367,641212415,641220607,641221631,641222143,641222399,641222655,641223679,641224703,641224959,641225215,641225471,641225727,641226751,641227775,641228287,641228543,641229567,641229823,641230591,641230847,641232127,641233151,641233919,641234175,641234431,641234943,641235199,641235455,641236223,641236479,641245183,641253375,641255423,641256447,641256703,641257471,641258495,641261567,641265663,641267711,641268735,641269759,641273855,641275903,641285119,641286143,641297407,641298431,641300479,641301503,641368063,641368319,641372159,641373183,641378303,641378815,641433599,641437695,641441791,641449983,641458175,641459199,641460223,641475071,641475327,641476607,641476863,641477887,641478143,641499135,641500671,641501439,641501695,641501951,641502207,641502719,641503743,641504767,641505791,641506815,641507839,641508863,641509887,641510143,641510399,641510655,641511167,641511679,641511935,641512447,641512703,641513471,641513727,641513983,641514239,641514495,641514751,641515007,641515263,641515519,641516543,641517055,641517567,641518079,641518335,641518591,641519615,641519871,641520127,641520383,641520639,641520895,641521407,641521663,641521919,641522175,641522431,641522687,641522943,641523199,641523455,641523711,641523967,641524223,641524479,641524735,641525503,641526527,641527039,641527807,641528063,641528575,641528831,641529087,641529599,641529855,641530111,641530623,641530879,641531391,641531647,641531903,641544191,641556479,641597439,641630207,641646591,641648383,641650175,641651967,641654783,641655551,641655807,641656575,641656831,641737983,641738495,641741311,641741567,641745407,641745663,641761279,641761791,641762303,641763839,641764095,641765887,641766399,641768191,641768447,641770495,641770751,641773567,641775615,641779967,641780223,641793791,641800703,641800959,641826815,641829887,641830143,641843199,642088959,642094847,642095103,642095359,642095615,642095871,642096127,642097151,642099711,642101247,642102271,642102527,642103039,642103295,642154495,642170879,642290687,642291199,642376703,642377727,642383871,642384639,642384895,642392063,642396159,642400255,642512639,642512895,642516479,642516991,642519039,642519551,642523903,642524159,642532863,642533119,642596863,642597631,642597887,642598911,642639359,642639615,642793471,642798591,642799615,642809343,642997247,642997759,643002367,643002623,643145727,643153919,643178751,643179007,643211263,643211519,643216639,643216895,643235839,643244031,643247615,643248127,643260159,643260415,643284991,643286015,643289087,643290111,643291135,643291391,643291647,643291903,643292159,643292415,643293183,643293439,643293695,643299071,643299327,643300351,643300607,643302911,643303423,643317759,643319551,643319807,643320575,643320831,643323903,643325951,643330047,643332095,643332351,643333119,643333631,643346431,643346943,643362815,643363327,643385343,643385599,643428351,643429375,643588351,643588607,643590143,643591167,643592191,643592703,643594239,643596287,643607807,643608063,643710975,643719167,643719423,643719679,643801087,643801343,643890687,643890943,644019455,644019711,644055039,644055551,644056831,644057343,644057855,644058111,644058367,644059135,644059903,644060159,644060927,644061439,644061695,644062207,644062719,644062975,644063487,644063999,644064511,644064767,644065279,644065535,644066559,644066815,644067071,644067583,644069887,644070143,644070911,644071167,644086783,644087807,644184575,644184831,644210431,644210687,644235263,644236799,644237311,644237823,644238079,644239359,644239871,644242175,644242431,644242943,644243455,644244479,644244735,644244991,644245247,644251647,644323327,644323839,644324351,644325375,644334335,644334591,644388863,644390911,644399103,644399359,644403199,644403455,644407807,644408063,644412671,644412927,644413439,644413951,644414207,644414463,644474111,644474367,644581375,644583423,644620287,644621311,644628991,644629247,644630015,644630271,644630527,644631807,644632063,644632575,644632831,644633343,644633599,644633855,644634111,644636159,644694271,644694527,644718591,644719103,644719359,644719615,644720127,644720639,644735743,644735999,644736255,644759807,644760319,644760831,644761087,644762623,644762879,644763135,644763647,644764671,644765695,644766719,644767231,644769791,644773119,644773631,644773887,644774399,644774911,644785151,644786175,644815615,644815871,644833279,644837375,644837631,644838655,644838911,644840959,644843007,644843263,644889855,644890111,644895231,644895487,644899839,644900351,644901631,644901887,644903679,644903935,644980735,644981503,644982015,644982271,644982527,644984575,644984831,644986623,644986879,644987391,644987647,644988927,645036031,645036287,645056255,645056511,645185535,645185791,645187071,645187583,645218303,645220863,645221119,645221375,645222399,645223423,645223679,645223935,645224191,645224959,645225215,645225471,645225983,645227263,645227519,645228543,645228799,645229055,645229823,645232639,645233151,645234687,645468415,645468671,645472767,645473023,645483007,645483263,645483519,645484031,645484287,645484543,645491711,645492735,645525503,645529599,645533695,645533951,645539839,645540351,645540863,645547007,645548031,645555199,645556223,645561343,645561599,645576703,645577215,645588479,645588991,645611519,645612543,645612799,645615615,645644287,645652479,645703679,645705727,645709823,645713919,645714175,645714687,645714943,645718015,645732095,645732351,645753599,645753855,645800703,645800959,645803263,645803519,645805823,645806079,645807871,645808127,645846015,645847039,645874431,645874687,645875711,645876223,645877503,645877759,645882879,645883903,645887743,645887999,645980159,645988351,645992447,645996543,646000639,646002175,646002431,646004735,646081023,646081279,646082559,646083327,646083583,646083839,646084095,646086655,646122495,646123519,646160383,646164479,646166527,646168575,646195711,646195967,646196223,646201343,646254591,646266879,646295551,646295807,646299135,646299647,646344959,646345215,646345727,646345983,646414591,646415359,646512639,646529023,646553599,646555647,646557695,646559743,646561791,646565887,646567167,646567935,646568703,646568959,646569215,646569471,646569983,646572031,646576127,646577151,646578175,646711807,646712319,646721023,646721535,646735103,646735359,646765823,646766591,646776831,646778879,646807551,646817791,646818303,646819583,646823935,646832127,646840319,646841343,646855679,646856703,646862847,646863103,646914815,646915071,646915327,646915583,646915839,646916863,646918143,646920191,646938623,646940159,646940415,646941439,646941695,646944767,647058687,647058943,647059967,647060479,647063551,647067647,647069695,647071743,647088383,647088895,647089151,647089407,647089663,647090175,647090431,647091199,647091455,647094271,647119871,647120383,647137279,647137535,647137791,647138047,647152639,647153663,647169023,647176191,647211519,647212543,647229439,647233535,647266303,647270399,647366655,647367167,647367679,647368703,647369215,647369471,647369727,647370239,647371263,647371519,647372799,647380991,647383039,647385087,647387135,647389183,647390207,647391231,647392255,647393279,647509247,647509503,647510527,647510783,647515647,647515903,647547135,647547391,647548415,647548671,647554559,647554815,647556351,647556607,647561471,647561727,647563263,647563519,647564799,647565311,647567871,647568127,647576831,647577087,647577343,647591423,647592447,647592703,647619327,647625471,647625727,647633919,647634175,647634943,647635199,647635455,647635711,647648255,647649791,647663103,647663359,647689471,647692287,647757823,647759871,647760895,647761151,647761407,647761663,647761919,647762943,647763967,647766015,647774207,647775231,647775743,647776255,647777279,647778303,647780351,647780607,647780863,647781119,647781375,647781887,647782143,647782399,647790591,647806975,647815679,647816191,647817215,647819263,647820799,647821055,647821311,647822335,647822591,647822847,647823103,647823359,647888895,647897087,647909375,647909887,647910399,647911423,647912447,647913471,647921663,647940095,647940607,647941119,647942143,647946239,647948287,647949311,647950335,647951359,647951871,647952127,647952383,647953407,647954431,647962623,647963647,647964159,647964415,647964671,647966719,647970815,647979007,647983103,647987199,647995391,648003583,648011775,648012287,648012799,648013055,648013311,648013823,648157439,648159231,648200191,648216575,648396799,648404991,648406015,648406527,648406783,648407039,648407295,648407551,648409087,648412927,648413183,648478719,648699391,648699647,648699903,648715519,648735231,648737535,648737791,648738047,648738815,648740863,648814591,648815615,648816639,648818687,648819711,648820735,648821759,648822783,648839167,648840191,648841215,648841471,648841727,648842239,648843263,648845311,648845823,648846591,648846847,648847359,648855551,648863743,648871935,648937471,648945663,648947455,648947967,648951807,648952319,649003007,649011199,649015295,649019391,649031679,649031935,649032191,649032447,649032703,649032959,649033215,649033471,649033727,649033983,649034239,649034495,649034751,649035263,649035775,649043967,649265151,649281535,649330687,649330943,649331199,649331711,649332479,649332735,649332991,649333247,649333503,649333759,649334271,649334527,649334783,649335039,649335295,649335551,649335807,649336063,649336319,649336575,649336831,649337087,649337343,649337855,649338367,649338623,649338879,649339135,649339391,649339647,649339903,649340927,649341951,649342463,649342975,649343487,649343999,649344511,649345023,649345279,649345535,649346047,649346559,649347071,649347583,649348095,649349119,649349631,649350143,649350655,649351167,649352191,649352703,649353215,649354239,649354751,649355263,649356287,649356799,649357311,649357823,649358335,649358847,649359359,649359871,649360895,649361407,649362687,649362943,649363455,649363967,649364223,649365247,649366271,649366783,649367295,649396223,649397503,649397759,649406463,649408511,649410559,649412607,649413119,649413631,649414143,649415679,649416703,649419519,649419775,649420799,649424895,649428991,649439743,649439999,649447423,649447679,649447935,649448191,649448447,649448703,649448959,649449471,649449727,649451263,649451519,649452031,649452287,649453311,649453567,649455103,649455359,649456127,649456895,649457151,649457407,649458175,649458431,649458687,649459455,649459711,649459967,649461247,649461759,649462015,649462271,649462527,649462783,649463039,649463295,649464063,649464319,649464575,649464831,649465087,649467135,649467391,649467647,649467903,649468159,649468415,649468671,649468927,649469183,649469439,649469695,649469951,649478143,649479167,649480191,649481215,649481471,649481983,649482239,649483263,649484287,649485311,649486079,649486335,649487359,649487871,649488383,649488895,649489407,649489919,649490431,649491455,649492479,649492991,649493503,649494527,649527295,649547775,649551871,649555967,649558015,649560575,649560831,649561087,649562111,649564159,649565183,649565695,649566207,649566463,649566719,649567231,649568255,649572351,649573375,649573887,649574399,649574655,649574911,649575423,649576447,649578495,649580543,649581567,649582591,649584639,649592831,649723903,649732095,649736191,649740287,649789439,649797631,649805823,649822207,649854975,649863167,649865215,649867263,649867519,649867775,649868287,649869311,649870335,649870591,649870847,649871103,649871359,649879551,649880575,649881599,649882623,649883647,649887743,649895935,649900031,649900543,649900799,649901055,649902079,649906175,649906687,649906943,649907199,649907967,649908223,649910271,649912319,649912575,649912831,649913343,649914367,649917439,649918463,649919487,649920511,649986559,649987071,649988095,649989119,649990143,649992191,649992447,649992703,649993215,649994239,650002431,650004479,650004735,650004991,650005503,650006527,650008575,650009087,650009599,650010623,650011135,650011391,650012671,650013183,650013695,650014207,650014463,650016767,650017791,650018303,650018815,650051583,650060031,650060287,650060799,650061823,650062847,650063359,650063615,650063871,650068479,650068991,650070015,650071039,650072063,650072575,650073087,650075135,650075647,650076159,650080255,650081279,650082303,650082815,650083327,650084351,650088447,650117119,650120191,650121215,650149887,650575871,650576895,650577919,650579967,650584063,650592255,650600447,650601471,650602495,650604543,650606591,650607615,650608639,650686463,650686719,650686975,650687231,650705919,650706175,650706431,650707455,650707711,650707967,650739711,650740223,650740735,650785791,650786303,650786559,650786815,650816511,650816767,650817279,650887167,650887423,650887935,650888191,650903807,650904063,650904319,650904575,650952703,650953727,651100159,651100415,651101183,651101439,651102719,651103231,651108095,651108351,651113471,651113727,651117823,651118079,651120127,651120383,651133439,651133695,651133951,651134207,651134975,651137535,651138047,651138559,651139071,651140095,651141119,651141631,651142143,651142655,651144191,651165695,652083199,652148735,652608255,652608511,653131775,653262847,653311999,653321215,653426687,653426943,653428223,653428479,653428735,653428991,653430783,653431039,653432831,653433087,653434879,653443071,653445887,653446143,653447167,653447423,653453055,653453311,653456639,653456895,653457151,653457407,653459455,653852671,653854719,653855231,653856255,653856767,653857279,653857535,653857791,653858047,653858303,653858815,653859839,653862655,653862911,653863935,653864191,653864447,653864703,653867519,653867775,653873151,653873407,653873919,653874175,653881343,653881599,653887231,653887487,653887743,653887999,653889791,653890047,653890303,653890559,653894143,653894399,653894911,653895167,653895679,653895935,653897471,653897727,653897983,653898239,653899263,653899519,653907711,653907967,653908479,653908735,653909503,653909759,653910271,653910527,653911039,653911295,653912319,653912575,653914623,653914879,653915391,653915647,653917183,653917439,653917951,653918207,653918463,653934591,653942783,653943807,653946879,653947391,653949951,653950975,653953023,653955071,653959167,653967359,653968895,653969407,653975551,653977599,653980671,653981183,653982719,654049279,654050303,654050815,654051327,654053375,654057471,654065663,654067711,654069759,654070015,654070271,654071807,654073855,654075903,654077439,654077951,654082047,654086143,654087679,654088191,654089215,654090239,654094335,654095359,654096383,654097407,654097663,654097919,654100479,654101247,654101503,654102015,654102527,654106623,654107135,654107391,654107647,654108159,654108671,654109695,654110207,654110463,654110719,654114815,654131199,654131967,654132223,654132735,654133247,654133503,654133759,654135295,654135551,654135807,654136319,654139391,654143487,654144511,654146559,654147071,654147583,654163967,654172159,654180351,654180607,654182399,654183423,654184447,654184959,654185471,654186495,654196735,654204927,654205951,654206975,654210047,654211071,654212095,654212607,654212863,654213119,654221311,654229503,654245887,654252031,654253055,654253311,654253567,654257663,654258431,654258943,654260735,654261503,654261759,654262015,654262271,654264319,654265343,654266367,654266623,654267391,654268415,654268671,654268927,654269183,654269439,654269951,654270463,654272511,654274559,654275583,654277631,654277887,654278143,654278655,654295039,654311423,654311679,654311935,654376959,654442495,654573567,654835711,655359999,656408575,658505727,661454847,661473023,661473279,661474559,661474815,661475071,661475327,661477887,661478143,661478399,661487615,661520383,661651455,662700031,666894335,671088639,675282943,675299327,675319807,675320063,675323903,675324159,675324415,675324671,675324927,675325183,675325439,675325951,675326207,675326463,675326719,675326975,675327231,675327743,675327999,675328511,675329023,675329279,675329535,675329791,675330047,675330303,675330559,675330815,675331071,675331327,675331583,675331839,675332095,675332351,675332607,675381247,675397631,675416063,675416575,675417087,675417599,675418111,675419903,675420159,675422207,675430399,675431423,675431935,675432959,675433983,675434495,675435007,675435519,675436031,675436543,675437055,675437567,675437823,675438591,675439103,675439615,675440127,675440639,675441151,675441663,675442175,675442687,675443199,675443711,675444223,675444479,675528703,675536895,675545087,675610623,675635199,675643391,675659775,675667967,675668223,675668735,675670015,675670271,675670783,675671295,675671551,675671807,675672063,675674879,675675391,675699199,675699711,675700223,675700479,675700735,675700991,675701247,675701503,675701759,675702527,675702783,675703039,675704319,675704575,675704831,675705087,675705599,675705855,675706111,675706367,675706623,675706879,675707903,675708671,675708927,675807231,675938303,675954687,675975167,676014079,676014591,676014847,676015871,676016127,676016383,676017407,676017663,676018175,676018431,676018687,676018943,676019455,676019711,676168959,676169215,676169471,676175871,676176383,676177151,676177407,676179455,676179711,676184063,676185087,676186367,676186623,676192767,676193023,676193535,676193791,676195583,676195839,676199423,676199935,676200191,676200447,676249599,676251647,676253951,676254207,676254463,676254719,676254975,676255231,676257535,676257791,676259839,676261887,676268031,676268287,676268543,676268799,676269055,676269311,676269567,676269823,676270079,676278271,676278527,676279039,676279295,676279551,676280063,676280319,676288511,676288767,676290303,676290559,676298751,676304895,676306943,676311039,676313087,676317183,676317439,676317951,676318207,676318463,676318719,676319231,676319743,676319999,676320511,676321023,676321279,676321791,676322047,676322303,676322815,676323327,676331519,676332543,676333567,676334591,676336639,676338687,676339711,676341759,676343807,676345855,676347903,676356095,676360191,676372735,676372991,676374527,676376575,676378623,676388863,676392959,676397055,676401151,676405247,676409343,676413439,676421631,676442111,676454399,676462591,676467711,676468735,676469759,676470783,676471807,676474879,676475903,676486143,676487167,676495359,676503551,676511743,676519935,676524031,676526079,676544511,676560895,676659199,676696063,676708351,676724735,676773887,676790271,676823039,676831231,676837375,676838399,676839423,676840447,676841471,676843519,676845567,676848639,676849663,676852223,676852479,676852991,676853247,676853503,676853759,676854015,676854271,676921343,676929535,676954111,676970495,676978687,676987647,676987903,676988159,676988671,676988927,676991231,676991487,676991999,676992511,676993279,676993535,676994303,676994559,676994815,676995071,677020927,677021183,677021439,677021695,677021951,677022975,677023231,677023487,677024511,677024767,677025023,677025279,677025535,677026047,677026303,677026559,677027071,677027327,677027583,677027839,677036031,677055743,677055999,677057535,677058559,677059583,677060607,677061631,677101567,677117951,677118207,677118463,677119487,677119743,677122047,677122303,677122559,677125631,677125887,677126655,677127167,677130239,677130495,677130751,677131263,677131519,677131775,677132031,677132543,677132799,677133055,677133311,677133567,677133823,677134335,677134591,677134847,677135103,677135359,677135615,677135871,677136127,677136383,677136639,677136895,677137151,677137407,677137919,677138175,677138431,677138943,677139199,677139455,677139711,677139967,677140223,677140735,677140991,677141247,677141503,677142015,677142527,677143039,677143551,677143807,677144063,677144575,677144831,677145343,677145599,677145855,677146367,677147135,677147647,677148159,677148671,677149183,677150207,677150719,677178879,677179391,677179903,677180415,677180927,677181439,677181951,677182207,677182463,677182719,677182975,677183231,677183487,677188095,677188607,677188863,677189375,677199871,677200127,677200383,677200639,677201151,677201407,677202175,677202431,677202943,677203199,677203711,677204223,677204735,677204991,677205247,677205759,677206271,677216255,677216511,677216767,677217023,677217791,677218303,677218815,677219327,677238015,677238527,677253119,677253375,677256959,677257215,677258495,677258751,677265407,677265663,677265919,677266175,677266431,677266687,677266943,677267199,677267455,677267711,677268223,677268479,677268735,677269247,677270271,677270783,677271295,677272319,677272575,677272831,677273087,677274111,677274367,677274879,677275135,677306367,677306623,677306879,677307135,677307647,677308159,677308671,677309183,677309695,677310207,677310463,677310719,677311231,677311487,677311743,677311999,677312255,677312511,677312767,677313023,677313279,677313535,677313791,677314047,677314559,677314815,677315071,677316095,677316351,677317631,677317887,677320447,677320959,677321727,677321983,677327103,677327359,677327615,677327871,677328127,677328383,677328639,677328895,677329407,677329663,677329919,677330175,677330431,677330687,677330943,677331199,677331455,677331711,677331967,677332223,677332479,677332735,677332991,677333247,677333503,677333759,677334015,677334527,677334783,677335039,677335295,677335551,677335807,677336063,677336319,677336575,677337087,677337343,677337599,677337855,677338111,677338367,677338623,677338879,677339135,677339391,677339903,677340415,677340927,677341183,677341439,677341951,677342207,677342719,677342975,677343231,677343743,677344255,677344767,677345279,677345791,677346815,677347327,677375487,677375999,677376511,677377023,677377535,677378047,677378559,677378815,677379071,677379327,677379583,677379839,677380095,677380607,677380863,677381119,677381375,677383935,677384191,677384703,677384959,677385215,677388287,677388543,677389567,677389823,677391103,677391359,677391615,677391871,677392127,677392383,677392639,677392895,677393919,677394175,677449215,677449471,677451007,677451263,677461247,677461503,677576703,677576959,677577727,677577983,677578239,677578751,677579007,677579263,677579519,677580031,677580799,677581055,677581311,677581823,677582079,677582335,677582847,677583103,677583359,677584127,677584383,677585407,677585663,677586431,677586687,677587967,677588223,677588735,677588991,677589247,677589503,677589759,677590271,677590527,677590783,677591039,677591295,677591807,677592063,677592831,677593087,677593599,677593855,677594367,677594879,677595135,677595391,677596927,677597183,677597439,677597951,677598207,677598463,677598975,677599231,677599487,677599743,677599999,677600255,677600511,677601023,677601279,677601535,677601791,677602047,677602303,677602559,677602815,677603071,677603327,677604095,677604607,677604863,677605119,677605631,677605887,677606143,677606399,677606655,677607167,677607423,677607679,677608959,677609215,677609471,677611519,677613567,677614079,677614591,677615615,677615871,677616127,677616383,677617151,677617407,677617663,677625855,677626111,677626367,677626623,677626879,677627391,677627903,677628159,677628415,677628671,677628927,677629183,677629439,677629695,677629951,677630207,677630463,677630975,677631743,677631999,677632255,677632511,677633023,677633279,677633535,677633791,677634047,677639679,677640447,677642239,677643263,677643519,677643775,677644287,677645311,677646335,677647359,677648383,677648639,677648895,677649151,677649407,677651711,677651967,677652223,677652479,677653503,677655551,677655807,677656063,677656319,677656575,677657087,677657599,677657855,677658111,677658623,677658879,677659135,677659391,677659647,677660159,677660415,677660671,677661183,677677055,677678591,677679103,677681151,677681663,677683199,677685247,677685759,677687295,677707775,677708287,677708543,677708799,677709823,677713151,677713407,677714175,677714431,677714687,677714943,677715967,677720063,677721087,677721343,677721599,677722111,677722367,677722623,677722879,677723135,677724159,677725183,677726207,677727231,677728255,677729279,677730303,677731327,677732351,677734399,677735423,677736447,677736703,677736959,677738495,677739775,677740031,677740543,677742591,677744639,677748735,677774335,677776383,677777407,677777919,677781503,677782527,677784575,677785599,677838847,677839359,677840383,677840639,677844479,677844735,677847039,677847551,677848319,677848831,677853695,677853951,677854975,677855487,677905407,677905663,677905919,677906175,677906431,677906687,677907199,677907455,677907711,677907967,677908479,677908735,677908991,677909247,677909503,677910015,677910527,677910783,677911039,677911295,677911807,677912063,677912319,677912575,677912831,677913087,677913343,677913599,677913855,677914111,677914367,677914623,677914879,677915135,677915391,677915647,677915903,677916159,678100991,678101247,678101503,678101759,678102015,678102271,678102527,678102783,678103039,678103295,678103551,678104063,678104319,678104575,678104831,678105087,678105343,678105599,678106111,678106367,678106623,678106879,678107391,678107647,678107903,678108159,678108671,678109183,678110207,678110719,678117887,678118399,678119167,678119423,678120959,678121215,678121727,678121983,678123007,678123263,678127359,678127615,678127871,678128127,678128383,678128895,678129407,678129919,678130431,678130943,678131199,678131455,678131967,678132479,678132991,678133503,678133759,678134271,678134527,678134783,678135039,678135551,678135807,678136319,678136831,678137343,678137855,678150143,678150399,678150655,678150911,678151167,678151423,678151679,678151935,678152191,678152447,678152703,678153215,678153471,678153727,678154239,678156031,678156287,678156543,678157567,678157823,678158079,678158335,678158847,678159103,678159359,678159615,678159871,678160127,678160383,678160639,678160895,678161151,678161407,678162175,678162431,678162687,678162943,678164223,678164479,678164735,678164991,678165503,678166015,678166271,678166527,678200831,678201087,678202111,678202367,678203135,678203391,678205183,678205695,678205951,678206207,678206463,678206719,678206975,678207487,678207999,678208255,678208511,678209023,678209279,678209791,678211583,678212607,678212863,678214143,678214399,678214655,678214911,678215423,678216191,678216447,678216703,678216959,678217215,678217471,678217983,678220543,678221055,678221823,678222079,678222335,678222591,678223103,678223615,678224127,678224639,678224895,678225151,678225407,678225663,678225919,678226175,678226943,678227199,678227455,678227711,678227967,678228223,678228479,678228735,678228991,678229247,678229503,678229759,678230271,678230527,678230783,678231039,678231295,678231551,678231807,678232063,678428671,678436863,678437887,678438143,678438399,678445055,678453247,678461439,678494207,678518783,678543359,678592511,678641663,678649855,678658047,678690815,678756351,678764543,678821887,678854655,678903807,678905855,678907903,678909951,678910975,678913023,678914047,678916095,678918143,678920191,678928383,678936575,678952959,678957055,678961151,678969343,678985727,678986751,678987007,678987775,678988799,678989055,678989823,678990079,678992895,678993151,678993919,678994943,678996991,678997247,679182335,679183359,679185407,679186431,679187455,679187711,679189503,679190527,679193599,679193855,679194111,679194623,679195647,679196671,679197695,679198719,679211007,679215103,679280639,679288831,679313407,679346175,679346431,679346687,679348479,679348735,679348991,679349247,679349503,679349759,679350015,679350271,679350527,679350783,679351039,679351295,679351551,679354111,679354367,679354623,679355135,679355391,679355647,679356159,679356671,679357695,679357951,679358719,679359231,679359743,679360255,679360767,679361279,679361791,679362047,679362303,679362559,679378943,679395327,679395839,679396351,679396607,679397119,679397375,679397887,679398143,679398655,679399167,679399423,679403519,679411711,679419903,679420159,679428095,679436287,679440383,679440639,679442175,679442687,679443199,679443711,679444223,679444479,679477247,681705471,681771007,682164223,682280959,682281215,682360831,682426367,682622975,682885119,683016191,683671551,683933695,686358527,686366719,686374911,686391295,687865855,688618495,688618751,689963007,691011583,691617791,691621887,691625983,691630079,691630335,691632127,691633151,691633407,691633663,691634175,691650559,691653375,691654143,691666943,691732479,691798015,691804159,691805183,691806207,691830783,691832319,691832831,691837951,691838975,691851007,691851263,691851775,691852287,691852543,691852799,691853055,691853311,691853567,691853823,691857407,691859455,691859967,691860479,691861759,691862015,691863551,691929087,691994623,692011007,692012031,692013055,692013311,692019199,692019711,692019967,692020223,692022527,692022783,692023039,692023295,692027391,692035583,692043775,692060159,692191231,692207615,692223999,692240383,692256767,692273151,692277247,692279295,692289535,692305919,692322303,692453375,692486143,692518911,692551679,692575743,692575999,692577023,692577535,692578047,692584447,692609023,692617215,692625407,692634111,692634623,692635903,692636159,692637439,692637695,692639231,692639487,692641791,692649983,692654079,692658175,692666367,692674559,692682751,692690431,692690943,692707327,692715519,692719615,692723711,692727807,692731903,692735999,692740095,692744191,692748287,692752383,692756479,692760575,692767487,692767743,692768767,692772863,692776959,692781055,692785151,692793343,692797439,692801535,692805631,692809727,692813823,692817919,692822015,692830207,692834303,692838399,692846591,692848639,692850687,692852735,692854783,692856831,692860927,692862975,692869119,692871167,692877311,692879359,692881407,692883455,692885503,692887551,692889599,692891647,692893695,692895743,692897791,692905983,692908031,692910079,692912127,692914175,692916223,692918271,692920319,692922367,692924415,692928511,692929023,692929279,692930559,692932607,692934655,692936703,692940799,692941567,692942847,692944895,692946943,692948479,692948991,692949247,692949503,692951039,692953087,692955135,692957183,692959231,692961279,692963327,692965375,692967423,692968447,692969471,692971519,692973567,692974079,692974335,692975615,692977663,692978687,692979711,692980735,692981759,692982783,692983807,692984831,692985855,692986879,692987903,692988927,692989951,692991999,692993023,692993279,692993535,692994047,692995071,692996095,692997119,692998143,692999167,693000191,693001215,693002239,693003263,693004287,693005311,693006335,693007359,693008383,693009407,693010431,693011455,693012479,693013503,693014527,693015551,693016575,693017599,693018623,693019647,693020671,693021695,693022719,693024767,693026815,693028863,693029887,693030911,693031935,693032959,693033983,693035007,693036031,693038079,693039103,693040127,693041151,693042175,693043199,693044223,693045247,693046271,693047295,693049343,693050367,693051391,693052415,693053439,693054463,693055487,693056511,693057535,693058559,693059583,693060607,693061631,693064703,693065727,693066751,693067775,693068799,693069823,693071871,693072895,693073919,693074943,693075967,693076991,693078015,693079039,693080063,693081087,693082111,693083135,693085183,693086207,693087231,693088255,693089279,693090303,693091327,693092351,693093375,693094399,693095423,693096447,693097471,693098495,693099519,693100543,693101567,693102591,693103103,693103359,693103615,693104639,693105663,693106687,693107711,693108223,693108479,693239807,693370879,693403647,693409535,693409791,693411839,693420031,693420543,693427199,693428223,693436415,693477375,693485567,693488639,693489663,693493759,693501951,693510143,693518335,693526527,693534719,693542911,693551103,693559295,693567487,693575679,693583871,693592063,693592319,693593343,693593599,693594367,693594623,693595135,693595647,693600255,693608447,693612799,693614335,693616639,693633023,693698559,693829631,693895167,693927935,693929983,693934079,693936127,693941247,693943295,693945343,693947391,693948415,693951487,693952511,693952767,693958655,693960703,693993471,694026239,694026495,694091775,694157311,695039231,695039487,695205887,696254463,696516607,696778751,696844287,696909823,696918015,696926207,696928255,696930303,696932351,696933375,696934399,696942591,696950783,696958975,696959231,696963071,696967167,696971263,696975359,696991743,697008127,697040895,697303039,697827327,697958399,698023935,698056703,698089471,698220543,698351615,699260927,699265023,699266047,699269119,699334655,699347711,699347967,699350015,699351039,699359231,699360255,699360511,699375615,699382271,699382783,699385855,699387903,699400191,699465727,699531263,699662335,699695103,699701247,699702271,699704319,699705343,699706367,699717631,699719679,699720703,699721727,699722751,699723775,699725823,699727871,699793407,699858943,699924479,699990015,700055551,700121087,700186623,700203007,700219391,700235775,700252159,700260351,700268543,700276735,700293119,700301311,700309503,700310527,700311039,700317695,700325887,700334079,700335103,700336127,700338175,700339199,700340223,700341247,700342271,700350463,700352511,700355839,700356607,700358655,700375039,700376063,700377087,700378111,700379135,700380159,700381183,700382207,700399615,700400639,700401663,700402687,700403711,700404735,700405759,700406783,700407807,700408831,700409855,700410879,700412927,700413183,700413439,700413951,700414975,700424191,700432383,700434431,700436479,700437503,700438527,700439551,700440575,700442623,700444671,700446463,700446719,700447743,700448767,700580863,700581375,700582399,700582655,700584191,700584447,700584703,700586495,700586751,700587007,700587519,700587775,700588031,700588543,700588799,700589055,700589311,700589567,700589823,700590079,700590335,700590847,700591103,700591359,700591615,700591871,700592127,700592383,700592639,700592895,700593151,700594175,700594687,700595199,700596223,700598015,700598271,700598527,700600575,700600831,700601087,700601343,700633087,700633343,700710911,700776447,700788479,700788735,700841983,700846079,700858367,700862463,700863487,700874751,700891135,700907519,700973055,701104127,701112319,701114367,701114623,701120511,701136895,701145087,701153279,701161471,701169663,701186047,701189887,701190143,701193727,701193983,701202431,701210623,701214719,701218815,701222911,701227007,701231103,701235199,701243391,701251583,701259775,701267967,701276159,701284351,701292543,701300735,701308927,701317119,701325311,701333503,701341695,701349887,701358079,701359871,701360127,701366271,701374463,701382655,701390847,701391103,701391359,701391615,701391871,701392127,701392383,701392639,701393407,701393663,701394175,701394431,701394687,701394943,701395967,701396223,701398783,701399039,701407231,701407487,701407743,701407999,701408255,701408767,701409279,701410047,701410303,701411327,701411583,701411839,701413375,701413631,701413887,701414399,701414655,701414911,701415423,701423615,701439999,701448191,701459711,701460223,701460479,701460735,701464575,701472767,701480959,701490175,701491199,701493247,701495295,701496319,701497343,701513727,701530111,701546495,701562879,701579263,701595647,701612031,701628415,701644799,701661183,701677567,701693951,701702143,701710335,701718527,701726719,701743103,701759487,701792255,701825023,701857791,701890559,701923327,701956095,701992959,701997055,702001151,702005247,702009343,702013439,702015487,702017535,702018303,702018559,702019583,702020607,702021631,702029823,702038015,702046207,702053375,702054399,702058495,702062591,702066687,702066943,702067455,702067711,702068223,702068479,702068735,702068991,702069247,702069503,702069759,702070271,702074879,702076927,702078975,702079999,702081023,702082047,702083071,702087167,702119935,702125055,702126079,702136319,702137343,702138367,702139391,702140415,702141439,702142463,702143487,702144511,702146559,702148607,702150655,702152703,702152959,702154751,702169087,702180351,702180607,702184447,702185215,702185471,702201855,702218239,702234623,702251007,702267391,702283775,702287871,702291967,702296063,702300159,702308351,702312447,702316543,702320639,702324735,702328831,702332927,702337023,702341119,702342655,702342911,702343423,702343935,702349311,702353407,702357503,702365695,702369791,702373887,702377983,702382079,702386175,702390271,702394367,702398463,702402559,702403327,702403583,702403839,702404095,702404351,702404607,702404863,702405119,702405375,702405631,702405887,702406143,702406655,702410751,702414847,702415615,702415871,702416895,702418943,702420991,702423039,702425087,702427135,702429183,702431231,702433279,702434303,702435327,702437375,702439423,702441471,702441727,702441983,702442495,702442751,702443007,702443263,702443519,702445567,702447615,702449663,702451711,702453759,702455807,702457855,702459903,702461951,702463999,702465023,702466047,702467071,702468095,702469119,702470143,702471167,702472191,702474239,702475263,702476287,702477311,702478335,702480383,702481407,702482431,702483455,702484479,702485503,702486527,702487551,702488575,702490623,702491647,702492671,702493695,702494463,702494719,702495743,702496767,702497791,702498815,702499839,702500863,702501887,702502911,702504959,702505983,702507007,702508031,702508799,702509055,702510079,702511103,702512127,702513151,702514175,702515199,702516223,702517247,702518271,702519295,702520319,702521343,702522367,702523391,702524415,702525439,702526463,702527487,702528511,702529535,702530559,702531583,702532607,702533631,702534655,702535679,702536703,702537727,702538751,702539775,702540799,702541823,702542335,702542591,702542847,702543871,702544895,702545919,703070207,703594495,703725567,703727615,703729663,703733759,703735807,703737855,703741951,703746047,703747071,703748095,703749119,703750143,703754239,703754751,703755007,703755263,703756287,703757311,703758335,703759359,703760383,703761407,703762431,703764479,703766527,703770623,703774719,703791103,703856639,703922175,703954943,703987711,704118783,704380927,704643071,704644095,704645119,704650239,704651263,704659455,704675839,704723967,704724991,704741375,704774143,704905215,705167359,707788799,708575231,708706303,708751359,708752383,708755455,708771839,708837375,709885951,710017023,710082559,710098943,710104063,710105087,710934527,710950911,710961151,710962175,711065599,711131135,711160831,711161855,711163903,711164159,711164927,711165183,711165695,711165951,711166463,711166975,711167999,711168255,711168511,711168767,711169279,711169535,711171071,711171327,711173887,711174143,711175167,711175423,711176191,711176447,711176703,711176959,711177215,711177471,711184383,711184895,711185407,711185663,711185919,711186175,711186431,711186943,711187455,711187711,711188479,711189247,711196415,711196671,711458815,711983103,712506623,712506879,712507391,712712191,712713215,712769535,713031679,714080255,714604543,714866687,714874879,714875903,716930047,716931071,716963839,717225983,717750271,717815807,717848575,717881343,720437247,720502783,725616127,725616383,725629439,725629695,725630975,725631231,725657599,725657855,725660415,725660671,725683711,725683967,725684223,725684479,725696255,725696767,725715711,725716223,725734655,725734911,725765119,725765375,725779199,725779455,725799935,725800191,725819903,725820159,725824511,725824767,725836543,725836799,725869055,725869311,725884927,725885183,725886719,725886975,725897983,725898239,725900031,725900287,725907711,725907967,725915647,725915903,725927935,725928191,725944063,725944319,725946111,725946367,725977087,725977343,726007807,727482367,727515135,727646207,727713535,727713791,727714047,727714303,727714815,727715327,727716863,727717119,727717375,727717887,727718143,727718399,727719935,727720447,727720703,727720959,727721215,727728639,727728895,727729151,727729663,727729919,727730175,727730943,727731199,729808895,729825279,729841663,729849855,729858047,729866239,729874431,729882623,729890815,729939967,729989119,729997311,730005503,730021887,730062847,730071039,730071551,730078207,730079231,730086399,730086655,730087423,730087935,730088447,730088703,730088959,730089471,730089983,730090239,730090495,730092031,730092287,730092543,730092799,730093055,730093567,730093823,730094079,730094591,730094847,730095103,730095615,730136575,730144767,730152959,730161151,730169343,730177535,730193919,730202111,730251263,730259455,730267647,730300415,730316799,730324991,730333183,731381759,731382271,731382783,731383039,731383807,731384063,731384319,731384575,731384831,731385087,731385343,731385855,731386367,731386623,731386879,731387135,731387391,731387647,731388415,731389439,731389695,731389951,731390207,731390463,731390719,731390975,731391487,731391999,731392255,731392511,731393023,731393535,731393791,731394047,731394303,731394559,731394815,731395071,731395327,731395583,731395839,731396095,731396351,731396607,731397119,731397375,731397887,731414527,731415039,731415807,731416063,731416831,731417087,731417343,731417599,731418111,731418623,731418879,731419135,731419391,731419647,731419903,731420159,731420415,731420671,731420927,731421183,731422719,731424511,731424767,731425279,731425791,731426559,731426815,731427327,731427839,731428863,731429375,731429887,731430399,731430655,731430911,731439103,731447295,731480063,731496447,731512831,731611135,731643903,731709439,731742207,731758591,731774975,731807743,731824127,731840511,731844607,731856895,731857151,731857407,731857663,731857919,731858175,731858431,731858943,731859455,731859711,731859967,731860223,731860479,731860735,731860991,731861247,731861759,731862271,731862527,731862783,731863039,731863807,731871743,731871999,731872255,731872511,731872767,731873023,731889663,731906047,731971583,732004351,732037119,732069887,732102655,732151807,732168191,732889087,732889855,732890111,732890367,732891135,732891647,732891903,732892159,732892671,732892927,732893183,732894207,732894463,732894719,732894975,732895487,732895743,732895999,732896255,732896767,732897023,732897279,732897535,732897791,732898303,732899071,732899839,732900095,732900607,732901631,732902143,732902399,732902655,732902911,732903167,732903423,732904191,732904447,732904703,732904959,732905215,732905727,732905983,732906495,732907007,732907263,732907519,732907775,732908287,732908543,732908799,732909055,732909311,732909567,732909823,732910079,732910335,732911615,732912639,732912895,732913151,732913663,732913919,732914175,732914431,732914943,732915455,732915711,732915967,732916479,732916991,732917247,732917503,732917759,732918015,732918271,732918527,732920063,732920319,732920575,732921343,732921599,732922367,732923391,732923647,732923903,732924159,732924415,732954623,734396415,734527487,734789631,734856191,734856447,734920703,735051775,735576063,735641599,735707135,735772671,735969279,736100351,736101375,736102399,736103423,736104447,736105471,736106495,736107519,736107775,736108543,736109567,736110591,736111615,736112639,736113663,736115711,736116735,736116991,736117247,736117759,736119807,736120831,736121855,736122879,736123647,736124927,736125951,736126975,736127999,736131071,736132095,736133119,736136191,736137215,736138239,736140287,736141311,736142335,736143359,736144383,736145407,736146431,736147455,736148479,736149503,736150527,736151551,736156671,736157695,736158719,736160767,736161791,736162815,736164351,736164863,736166911,736167935,736168959,736169983,736173055,736174079,736175103,736176127,736177151,736178175,736179199,736180223,736181247,736182271,736183295,736185343,736186367,736187391,736188415,736189439,736189951,736190207,736190463,736190975,736191487,736193535,736194559,736195583,736196607,736197631,736198655,736199679,736200703,736201727,736202751,736203775,736204799,736205823,736206847,736209919,736210943,736211967,736212991,736214015,736214271,736214527,736214783,736215039,736216063,736217087,736218111,736219135,736220159,736221183,736229375,736230399,736231423,736231935,736232447,736233471,736234495,736235519,736237567,736238591,736239615,736263167,736264191,736286719,736287743,736288767,736289791,736290303,736290559,736290815,736291839,736300031,736301055,736303103,736304127,736305151,736311295,736313343,736324607,736325631,736328703,736329727,736331775,736334847,736335871,736344063,736345087,736354303,736355327,736356351,736357375,736357631,736357887,736358143,736358399,736359423,736360447,736380927,736381951,736382975,736384255,736384767,736385023,736386047,736388095,736389119,736390143,736391167,736392191,736394239,736395263,736396287,736398335,736399359,736399871,736400383,736402431,736402687,736402943,736403199,736403455,736404479,736407039,736407295,736407551,736408575,736409599,736410623,736411647,736412671,736413695,736414719,736415743,736416767,736417791,736418303,736418815,736419839,736420863,736421887,736422911,736423167,736423423,736423935,736424959,736427007,736428031,736429055,736430079,736430335,736430591,736431103,736432127,736433151,736434175,736435199,736436223,736437247,736438271,736439295,736440319,736441343,736442367,736443391,736445439,736446463,736447487,736448511,736449535,736450559,736452607,736453631,736455679,736456703,736457727,736458751,736459775,736460799,736461823,736462847,736465919,736466943,736467967,736468991,736470015,736471039,736479231,736480255,736481279,736482303,736483327,736485375,736486399,736487423,736489471,736490495,736491519,736493567,736494591,736495103,736495359,736495615,736496383,736496639,736498687,736499711,736500479,736500735,736501759,736502783,736505855,736506879,736507903,736508927,736509951,736510975,736513023,736515071,736516095,736517119,736518143,736519167,736520191,736521215,736521471,736521727,736521983,736522239,736524287,736525311,736526335,736527359,736528383,736528639,736528895,736529407,736530431,736531455,736532479,736533503,736534527,736535551,736537599,736538623,736539647,736539903,736540159,736540671,736541695,736542719,736543743,736545791,736546815,736547071,736547327,736547839,736548863,736549887,736559103,736561151,736562175,736563199,736564223,736565247,736566271,736567295,736571391,736574463,736575487,736576511,736577535,736578559,736579583,736587775,736588799,736591871,736592383,736592639,736592895,736593919,736606207,736606463,736606719,736607231,736607487,736607743,736608255,736609279,736610303,736611327,736612351,736613375,736614399,736615423,736616447,736617471,736618495,736619519,736621567,736622591,736624639,736886783,737002495,737003519,737096703,737099775,737100799,737101823,737102847,737104895,737105919,737106175,737106687,737106943,737107967,737108479,737108735,737108991,737109247,737109503,737109759,737110015,737110271,737111039,737113087,737115135,737118207,737119231,737120255,737121279,737122303,737123327,737124351,737125375,737126399,737127423,737129471,737130495,737132543,737135615,737136127,737136639,737139711,737141759,737142783,737143039,737143807,737146879,737147391,737147647,737147903,737148927,737149951,737151999,737154047,737155071,737156095,737157119,737158143,737159167,737160191,737161215,737162239,737163263,737165311,737166335,737169407,737170431,737171455,737172479,737173503,737174527,737175551,737177599,737178623,737179647,737180671,737184767,737185791,737186815,737187839,737188863,737206271,737208319,737209343,737210367,737220607,737222655,737223679,737224703,737224959,737225471,737225727,737226751,737227775,737228799,737229823,737232895,737233919,737239039,737240063,737241087,737243135,737244159,737249279,737250047,737250303,737252351,737253375,737254399,737255423,737256447,737257471,737262591,737263615,737264639,737265663,737266687,737267711,737276927,737277183,737277439,737277951,737279999,737281023,737282047,737288191,737289215,737290239,737291263,737297407,737298431,737305599,737306623,737307647,737307903,737308671,737309695,737312767,737313791,737314303,737314815,737315839,737316863,737324031,737325055,737326079,737327103,737328127,737331199,737332223,737333247,737335295,737337343,737339391,737340415,737341439,737342463,737343487,737344511,737345535,737346559,737350655,737350911,737351679,737352703,737353727,737354751,737355775,737356799,737357823,737358847,737359871,737361919,737364991,737367039,737368063,737369087,737370111,737371135,737373183,737374207,737375231,737375743,737375999,737376255,737377279,737378303,737379327,737380351,737381375,737382399,737384447,737385471,737386495,737387519,737389567,737390591,737391615,737392639,737393663,737394687,737394943,737395199,737395455,737395711,737396735,737397759,737398783,737399807,737400831,737401855,737403903,737405951,737406975,737407999,737409023,737410047,737411071,737420287,737420543,737476607,737478655,737479679,737480703,737481727,737482751,737484799,737485823,737487871,737488895,737489151,737489663,737489919,737490943,737491967,737492479,737492991,737494015,737497087,737498111,737499135,737500159,737501183,737501439,737502207,737503231,737505279,737506303,737506815,737507071,737507327,737508351,737509375,737510399,737511423,737512447,737513471,737514495,737515519,737516543,737517567,737519615,737519871,737520639,737521663,737522687,737525759,737526783,737527295,737527551,737527807,737528831,737529855,737530879,737531903,737532927,737533951,737534975,737535999,737537023,737538047,737539071,737540095,737541119,737541631,737542143,737567743,737570815,737571071,737571839,737572863,737574911,737575935,737576959,737581055,737582079,737584127,737585151,737587199,737588223,737589247,737590271,737591295,737592319,737593087,737593343,737594367,737596415,737597439,737598463,737600511,737601535,737602559,737604607,737605631,737607679,737608703,737610751,737611775,737612799,737613823,737614591,737614847,737615871,737617919,737618943,737620991,737622015,737623039,737624063,737625087,737626111,737627135,737628159,737629183,737634303,737635327,737637375,737638399,737639423,737641471,737642495,737643519,737644543,737645567,737647615,737649663,737650687,737651711,737652735,737656831,737657855,737675263,737676287,737677311,737678335,737679359,737680383,737681407,737683455,737684479,737685503,737686527,737687551,737688575,737690623,737692671,737712127,737713151,737714175,737715199,737717247,737718271,737727487,737728511,737729279,737729535,737730559,737731583,737733631,737735679,737736703,737737727,737738751,737739519,737739775,737740799,737741311,737741567,737741823,737742079,737742335,737742847,737744895,737746943,737747967,737748479,737748991,737750015,737750271,737750527,737750783,737752063,737753087,737757183,737757439,737757695,737757951,737758207,737760255,737761279,737762303,737762559,737762815,737763327,737765375,737768447,737769471,737770495,737771519,737772543,737774591,737775615,737782783,737783807,737784831,737787903,737788927,737790975,737791999,737793023,737793535,737793791,737794047,737795071,737796095,737799167,737800191,737802239,737803263,737804287,737805311,737806335,737807359,737810431,737811455,737814527,737815551,737816575,737817599,737818623,737821695,737822719,737823743,737824767,737825791,737826815,737827839,737828863,737830911,737831679,737831935,737833983,737834495,737835007,737836031,737837055,737838079,737839103,737840127,737841151,737843199,737844223,737845247,737846271,737847295,737848319,737849087,737849343,737850879,737851391,737853439,737854463,737855487,737856511,737857279,737857535,737858559,737861631,737862655,737863679,737864447,737864703,737865727,737866751,737867775,737868031,737868287,737868799,737869823,737870847,737872895,737873407,737873919,737874431,737874943,737876991,737878015,737879039,737880063,737881087,737882111,737883135,737884159,737886207,737887231,737887487,737887743,737888255,737889279,737890303,737891327,737892351,737894399,737895423,737896447,737897471,737898495,737898751,737899007,737899775,737900031,737900543,737901567,737902591,737903615,737904639,737905663,737906687,737908735,737909247,737909759,737910783,737911807,737912831,737916159,737916927,737917951,737918975,737919999,737921023,737922047,737923071,737924095,737927167,737928191,737929215,737930239,737931007,737931263,737932287,737933311,737934335,737935359,737936383,737937407,737938431,737939455,737940479,737941503,737942527,737943551,737944575,737945599,737946623,737947647,737948671,737949695,737950719,737951743,737953791,737954815,737955839,737956863,737957887,737959935,737960959,737961983,737963007,737965055,737966079,737967103,737969151,737970175,737971199,737972223,737973247,737974271,737975295,737976319,737981439,737982463,737983487,737986559,737987583,737988607,737989631,737991679,737992191,737992703,737993727,737994751,737995775,737996799,737997823,737998847,737999871,738000895,738066431,738069503,738070527,738071551,738072575,738073599,738075647,738076671,738077695,738078719,738079743,738080767,738081791,738082815,738083839,738084863,738085887,738086911,738087935,738091007,738092031,738094079,738095103,738097151,738097663,738098175,738099199,738100223,738101247,738107391,738108415,738108927,738109183,738109439,738111487,738112511,738118655,738119679,738120703,738121727,738122751,738128895,738129919,738135039,738136063,738137087,738138111,738138623,738138879,738139135,738140159,738141183,738142207,738143231,738144255,738145279,738146047,738146303,738146559,738147327,738148351,738152447,738152703,738152959,738153215,738153471,738154495,738156543,738157567,738158591,738159615,738160639,738161663,738163199,738163455,738163711,738164735,738165759,738166783,738167807,738168831,738169855,738170879,738171903,738172159,738172415,738172927,738173951,738174975,738175487,738175999,738177023,738178047,738179071,738180095,738180351,738180607,738180863,738181119,738182143,738183167,738187263,738188287,738189311,738192383,738193407,738194431,738195455,738197503,738263295,738263551,738296063,738328575,738394111,738426879,738525183,738532863,738533375,738590719,738656767,738657279,738658303,738658559,738659071,738659327,738659583,738660351,738787327,738791423,738791679,738793471,738918399,738918655,738983935,739258879,739259391,740230143,740230399,740230655,740230911,740232191,740233215,740235519,740235775,740236031,740237567,740237823,740238079,740238335,740238591,740238847,740239103,740239359,740239871,740240383,740241407,740241663,740242431,740242687,740242943,740243199,740243455,740243711,740244991,740245247,740245503,740246015,740246271,740246527,740246783,740247039,740247295,740247551,740247807,740248063,740248319,740248575,740249599,740249855,740250111,740250367,740250623,740250879,740251135,740251391,740252159,740252415,740252671,740253183,740253695,740253951,740254207,740254719,740254975,740255231,740255487,740255743,740256767,740257023,740259583,740259839,740261119,740261375,740261631,740261887,740263167,740263423,740263679,740264447,740264959,740265727,740265983,740270079,740270335,740270591,740270847,740271103,740271359,740271871,740272383,740272639,740272895,740273151,740273407,740274431,740274687,740274943,740275711,740275967,740276223,740276735,740277247,740277503,740277759,740278015,740282879,740283135,740283391,740283647,740283903,740284415,740284671,740285439,740285695,740286207,740286463,740286719,740286975,740287231,740288255,740288511,740289279,740289535,740290815,740291071,740299519,740299775,740300031,740300543,740300799,740302079,740302335,740302847,740360959,740361471,742797567,742797823,746529023,746529279,746717439,746717695,746721791,746722303,746722815,746723071,746724607,746724863,746730239,746730495,746732031,746732287,746742527,746742783,746778623,746778879,746782207,746782463,746782975,746783231,746785023,746785279,746815487,746815999,746817535,746817791,746818047,746818303,746820095,746820351,746991615,746991871,746995967,746996479,747012095,747012351,747012863,747013375,747014655,747014911,747015167,747015423,747016191,747016703,747028991,747029247,747029759,747030015,747032063,747032575,747032831,747033087,747036927,747037439,747041023,747041279,747075839,747076095,747085823,747087871,747095295,747095551,747095807,747096063,747098111,747099391,747099647,747099903,747100159,747100671,747125247,747125759,747142143,747142399,747145727,747146239,747147519,747147775,747149055,747149311,747149823,747150335,747151103,747151871,747161855,747162111,747162623,747162879,747163903,747164159,747318271,747318527,747471871,747472127,747473919,747474943,747512063,747512319,747514111,747514367,747514623,747514879,747515135,747515391,747520255,747520511,747521535,747521791,747522047,747522303,747529215,747529471,747539711,747539967,747543807,747544063,747545087,747545599,747555583,747555839,747568383,747568639,747569151,747569407,747570943,747571199,747572223,747572479,747572735,747572991,747574271,747574527,747575551,747576063,747576831,747577343,747581439,747581695,747582207,747582463,747582719,747582975,747583487,747583743,747584255,747584511,747588095,747588351,747588607,747588863,747589375,747589631,747594751,747595007,747595263,747595519,747597055,747597311,747613183,747613439,747625983,747626239,747627519,747627775,747628799,747629055,747630079,747630591,747634943,747666175,747666687,747700223,747897855,747898111,747898367,747898623,747898879,747899135,747899391,747899647,747899903,747900159,747900415,747900671,747900927,747901183,747901439,747901695,747902975,747903231,747903487,747903743,747903999,747904255,747904767,747905279,747905535,747905791,747907327,747907583,747907839,747908095,747909119,747909375,747909631,747909887,747910143,747910655,747911167,747911423,747911679,747911935,747913727,747913983,747916031,747916287,747916799,747917055,747917311,747917567,747917823,747918079,747919359,747919615,747919871,747920127,747920383,747920639,747920895,747921407,747927551,747928319,747963647,747963903,747964671,747964927,747965439,747965695,747965951,747966463,747966975,747967487,747968255,747968511,747969023,747969791,747970303,747970559,747971071,747971327,747972607,747973119,747973375,747973887,747974655,747975423,747976447,747976703,747976959,747977215,747977727,747977983,747978495,747978751,747979007,747979263,747980287,747980543,747982847,747983103,747983359,747983615,747985407,747985919,747986431,747986687,747986943,747987455,747987967,747988223,747989503,747990015,747990271,747990527,747991295,747991551,747991807,747992063,747993087,747993343,747993855,747994111,747994367,747994623,747995903,747996671,747997439,747997951,747999231,747999487,747999999,748000511,748001279,748001791,748002559,748002815,748003327,748003583,748004095,748004863,748005375,748005631,748006143,748006399,748007935,748008447,748008703,748009215,748009471,748009983,748010495,748011007,748011519,748012031,748144639,748144895,748149759,748150015,748151807,748153087,748153343,748153599,748153855,748307967,748308223,748327167,748327423,748355583,748421119,748620799,748621823,748634367,748634623,748635391,748635647,748636415,748636671,748797951,748798463,748799231,748799743,748799999,748800767,748801535,748801791,748802559,748803327,748803839,748804607,748806143,748806911,748807167,748807423,748807935,748808703,748808959,748809215,749022207,749022463,749032191,749032447,749044223,749044479,749211135,749211647,749211903,749212159,749212415,749213183,749213695,749214207,749214719,749215231,749215487,749215743,749273343,749273855,749274111,749274367,749276159,749276415,749338623,749339391,749343743,749343999,749349631,749349887,749364479,749364735,749364991,749365247,749365759,749366271,749366527,749367039,749390079,749390335,749391871,749392127,749651967,749652991,750291199,750291967,750321919,750322175,750338559,750338815,750651647,750651903,750681087,750681599,750682111,750683135,755105791,755179519,755187711,755236863,755237887,755258367,755259391,755260415,755260927,755261183,755261439,755261695,755261951,755262463,755263487,755269631,755270655,755271679,755272703,755277823,755279871,755280895,755281919,755287039,755288063,755289087,755289599,755290111,755292159,755293183,755301375,755303423,755304447,755305471,755305727,755305983,755306239,755306495,755307519,755308543,755309567,755310591,755315711,755316735,755317759,755318783,755319807,755320831,755321855,755322879,755325951,755326975,755332095,755333119,755335167,755340287,755342335,755343359,755345407,755346431,755347455,755348479,755351551,755357695,755358719,755368959,755371007,755378175,755379199,755381247,755383295,755384319,755394559,755395583,755401727,755402751,755403775,755404799,755422207,755423231,755425279,755426303,755428351,755429375,755431423,755433471,755440639,755441663,755444735,755445759,755449855,755450879,755454975,755457023,755458047,755459071,755465215,755466239,755467263,755468287,755469311,755470335,755486719,755487743,755491839,755492863,755493887,755494911,755499007,755500031,755501055,755502079,755503103,755503359,755503615,755503871,755504383,755504639,755504895,755505151,755505407,755505663,755505919,755506175,755508223,755509247,755510015,755510271,755511295,755512319,755513343,755514367,755515391,755516415,755516671,755516927,755517183,755517439,755517951,755518463,755519487,755520511,755521535,755521791,755522047,755522559,755523583,755524095,755524351,755524607,755525631,755526655,755527679,755528703,755529727,755530751,755531007,755531263,755531519,755531775,755532799,755533311,755533567,755533823,755534847,755536383,755536639,755536895,755537407,755537919,755538943,755539199,755539455,755539967,755540991,755542015,755543039,755543295,755543551,755544063,755544319,755545087,755546111,755546367,755546623,755546879,755547647,755547903,755548159,755548415,755549183,755549439,755550207,755550463,755550719,755551231,755551487,755551743,755551999,755552255,755553279,755554303,755554559,755554815,755555071,755555327,755556351,755557375,755558399,755559423,755560447,755561471,755562495,755563519,755564031,755564287,755564543,755565055,755565311,755565567,755565823,755566079,755566591,755567615,755568895,755569663,755569919,755570175,755570687,755571711,755572735,755573759,755574783,755575807,755576831,755577855,755579903,755580927,755581951,755582975,755583231,755583999,755585023,755587071,755588095,755588351,755588607,755588863,755589119,755589887,755590143,755591167,755592191,755593215,755594239,755594495,755596031,755596287,755598335,755599359,755600383,755601407,755602431,755602943,755603455,755604991,755605503,755606527,755607551,755608575,755609343,755609599,755610623,755611647,755611903,755612159,755612415,755612671,755613695,755614719,755615743,755616767,755617791,755618815,755620863,755621887,755622911,755623935,755624191,755624959,755625983,755627007,755628031,755628287,755628799,755629055,755630079,755630591,755631103,755632127,755633151,755634175,755635455,755636223,755637247,755638271,755639295,755639551,755640063,755640319,755641343,755642367,755643391,755644415,755644671,755644927,755645183,755645439,755646463,755647487,755648511,755649535,755650559,755651583,755652607,755653631,755654655,755654911,755655167,755655679,755656703,755657727,755658751,755659775,755660799,755661823,755662847,755663615,755663871,755664895,755665919,755666943,755667967,755668991,755669503,755669759,755670015,755670527,755671039,755672063,755672319,755672575,755672831,755673087,755674111,755674623,755674879,755675135,755676159,755677183,755677439,755677695,755677951,755678207,755678463,755678719,755678975,755679231,755681279,755682303,755683327,755684351,755684607,755684863,755685119,755685375,755686399,755687423,755688447,755689471,755689983,755690495,755691519,755694591,755695615,755695871,755696383,755696639,755697663,755697919,755698175,755698431,755698687,755699711,755700735,755701759,755702015,755702783,755703807,755704831,755705855,755706879,755707135,755707391,755707903,755708927,755709183,755709439,755709695,755709951,755710207,755710719,755710975,755711999,755713023,755713279,755714047,755714559,755714815,755715071,755715583,755715839,755716095,755716351,755716607,755716863,755717119,755718143,755719935,755720191,755721215,755722239,755722495,755722751,755723007,755723263,755724287,755725311,755726335,755727359,755728383,755729407,755730431,755731455,755732479,755733503,755734527,755735039,755735295,755735551,755736575,755737599,755738623,755739647,755739903,755740159,755740671,755740927,755741183,755741439,755741695,755741951,755742207,755742463,755742719,755742975,755743231,755744255,755744511,755744767,755745023,755745791,755746047,755746303,755746559,755746815,755747839,755748863,755749887,755750143,755750399,755750911,755751423,755751935,755752959,755753983,755754495,755755007,755755263,755755519,755756031,755757055,755757311,755757567,755757823,755758079,755759103,755759359,755759615,755759871,755760127,755761151,755762175,755763199,755764223,755765247,755766271,755767295,755768319,755768831,755769343,755769599,755769855,755770111,755770367,755771391,755772415,755773439,755774463,755774975,755776511,755777535,755778559,755778815,755779583,755780607,755781631,755781887,755782143,755782655,755783679,755783935,755784191,755784703,755785727,755786751,755788799,755789823,755790847,755791871,755792895,755793919,755794175,755794687,755795455,755795711,755795967,755796479,755796735,755799039,755799295,755801087,755802111,755802879,755803135,755804159,755805183,755806207,755806463,755806719,755806975,755807231,755807487,755807743,755807999,755809023,755810303,755813375,755813887,755814143,755814399,755815423,755816447,755816703,755816959,755817215,755817471,755817727,755817983,755818239,755818495,755819519,755820543,755821567,755822591,755823615,755824639,755825663,755825919,755826175,755826431,755826687,755827711,755828735,755829759,755830783,755831807,755833087,755833343,755833599,755833855,755834879,755835903,755836159,755836927,755837951,755839999,755841023,755841535,755841791,755842047,755843071,755844095,755845119,755845375,755845631,755845887,755846143,755846655,755847167,755848191,755849215,755850239,755851263,755852287,755853311,755854335,755854591,755854847,755855103,755856383,755857407,755858431,755858943,755859455,755860479,755860991,755861503,755861759,755862527,755863551,755864575,755865087,755865343,755865599,755866623,755867647,755867903,755868671,755869695,755870719,755871743,755872511,755872767,755873023,755873279,755873535,755873791,755874047,755874303,755874559,755874815,755875071,755875327,755875583,755875839,755876863,755877375,755877631,755877887,755878911,755879935,755880959,755881471,755881983,755883007,755883263,755884031,755884543,755884799,755885055,755886079,755887103,755888127,755889151,755891199,755891711,755892223,755893247,755894271,755895295,755896319,755897343,755898367,755900415,755901439,755902463,755903487,755904511,755905535,755906559,755907583,755908607,755909631,755910143,755910655,755910911,755911167,755911679,755912703,755912959,755913215,755913727,755914751,755915519,755915775,755916799,755917823,755918847,755919103,755919359,755919615,755919871,755920895,755921151,755921919,755922943,755923967,755924991,755925503,755926015,755927039,755928063,755929087,755930111,755931135,755932159,755933183,755934207,755934463,755934719,755934975,755935231,755936255,755937279,755938303,755938559,755938815,755939071,755939327,755940351,755941375,755941887,755942143,755942399,755943423,755944447,755946495,755947519,755947775,755948031,755948287,755948543,755949567,755950591,755951615,755952639,755953663,755955199,755955455,755955711,755956735,755957759,755958783,755959807,755960831,755961855,755962111,755962367,755962623,755962879,755963135,755963391,755963903,755964927,755965951,755966975,755967999,755968255,755968511,755968767,755969023,755970047,755971071,755971327,755971583,755972095,755973119,755974143,755975167,755976191,755976959,755977215,755978239,755979263,755981311,755982335,755984383,755985407,755986431,755987455,755988479,755989503,755989759,755990015,755991551,755993599,755994367,755994623,755995391,755995647,755996671,755997695,755997951,755998207,755998463,755998719,755999231,756001791,756002815,756003071,756003327,756003839,756004863,756005887,756006911,756007679,756007935,756008959,756009983,756011007,756011263,756011519,756011775,756012031,756013055,756014079,756014335,756014591,756015103,756016127,756017151,756018175,756018943,756019199,756020223,756021247,756022271,756022527,756023295,757073919,757088255,757096447,757104639,757108735,757110783,757112831,757116927,757118975,757119999,757121023,757131263,757133311,757135359,757137407,757176319,757176575,757176831,757177087,757177855,757178111,757178367,757186559,757187071,757187327,757187583,757188607,757189119,757194751,757198847,757229055,757229311,757249535,757249791,757285887,757286143,757315071,757315327,757469951,757470207,757474303,757474559,757475071,757475327,757475583,757475839,757476095,757477887,757478143,757480959,757481215,757498111,757498367,757498623,757498879,757499135,757499391,757499647,757499903,757500159,757500415,757500671,757500927,757501183,757501439,757501695,757501951,757503487,757503999,757505023,757505279,757505535,757505791,757506047,757506303,757506815,757507071,757507839,757508095,757508351,757508607,757508863,757509119,757511423,757511679,757512959,757513215,757513471,757513727,757514239,757514495,757514751,757515007,757515263,757515519,757515775,757516031,757517311,757517567,757518079,757518335,757518591,757518847,757520127,757520383,757522687,757522943,757524223,757524479,757526783,757527039,757527295,757527551,757528575,757528831,757529855,757530111,757533439,757533695,757540351,757540607,757540863,757541375,757541631,757541887,757545727,757545983,757546751,757547007,757548287,757548543,757550847,757551103,757551359,757551615,757552127,757552383,757552639,757554687,757554943,757555711,757555967,757556479,757556735,757557503,757557759,757558015,757558527,757558783,757559295,757559551,757559807,757560575,757560831,757561087,757561343,757562111,757562367,757562879,757563135,757572095,757572351,757572607,757573119,757573631,757573887,757574143,757574911,757575167,757575935,757576191,757576703,757576959,757577215,757577727,757579775,757580031,757582079,757582335,757582591,757582847,757583359,757583615,757584383,757584639,757585919,757586175,757586687,757586943,757587711,757587967,757589247,757589503,757592831,757593087,757594367,757594623,757595903,757596159,757600255,757604351,757608447,757609471,757610495,757611263,757611519,757612543,757616639,757625855,757626111,757626879,757627135,757627391,757627647,757645311,757661695,757662719,757662975,757663487,757663743,757664255,757668863,757669887,757671679,757671935,757672959,757686271,757694463,757696511,757696767,757704703,757706751,757710847,757711359,757712895,757713407,757715455,757715967,757722111,757723135,757723391,757729279,757731071,757733375,757734399,757736447,757737471,757745663,757747711,757751807,757761023,757764095,757765119,757770239,757770751,757772287,757772543,757774335,757775359,757776383,757777407,757779967,757780223,757783551,757784831,757785087,757786623,757787647,757788671,757789695,757790463,757790719,757800959,757801983,757803007,757804031,757805055,757805567,757806079,757806847,757807103,757807359,757807871,757808127,757808383,757808639,757808895,757809151,757812223,757813247,757815039,757815295,757817343,757835775,757837823,757841919,757858303,757956607,757961727,757961983,757964031,757964287,757964799,757965823,757967871,757968895,757969663,757969919,757973247,757973503,757973759,757974015,757981439,757981695,757987327,757988351,758693887,758694143,758696703,758696959,758700031,758702079,758710783,758711295,758711807,758712319,758712831,758713087,758713343,758713855,758714367,758714879,758715391,758715903,758716415,758719487,758719999,758722559,758723071,758723583,758724607,758724863,758725631,758725887,758726655,758727167,758728191,758728703,758729215,758729727,758730239,758730751,758731263,758731775,758732287,758733823,758734335,758734847,758735359,758735871,758736895,758737919,758739455,758739967,758740479,758740991,758741503,758742015,758779903,758783999,758785023,758785535,758796287,758804479,758808575,758824959,758845695,758845951,758847487,758847743,758847999,758848255,758859263,758859519,758861823,758865919,758866943,758870015,758870271,758871551,758871807,758872063,758872319,758884607,758884863,758886399,758887423,758889471,758890495,758907391,758907647,758907903,758908159,758908415,758908671,758909183,758909695,758911231,758911743,758911999,758912255,758912511,758912767,758913023,758913535,758913791,758914303,758914559,758916351,758916863,758917119,758917375,758917631,758917887,758919679,758920191,758920447,758920703,758920959,758921471,758922239,758922495,758922751,758924287,758924799,758925055,758925311,758927871,758928127,758928383,758928639,758928895,758935807,758936063,758936319,758936575,758936831,758937343,758937855,758938367,758938623,758939391,758939903,758940415,758940927,758941439,758942463,758942975,758943487,758943999,758944511,758948095,758949119,758949375,758949887,758950143,758951935,758952447,758952959,758953215,758953727,758954239,758954495,758955007,758955519,758956031,758956287,758956543,758958335,758958847,758959359,758959871,758960127,758960383,758960639,758960895,758961407,758961663,758962431,758962687,758962943,758963455,758964479,758964991,758965759,758966271,758969855,758970367,758970623,758970879,758971391,758971647,758971903,758972415,758976511,758980607,758984703,758984959,758985215,758994943,758999039,759007487,759007743,759008255,759009791,759010047,759011327,759012351,759012607,759013631,759013887,759014399,759014655,759015167,759015423,759046143,759054335,759062527,759068671,759069695,759079167,759079423,759079679,759079935,759080447,759081471,759081983,759082495,759086335,759086847,759087103,759103487,759109631,759111679,759113727,759114751,759128063,759130111,759132159,759133183,759134207,759136255,759150591,759150847,759151103,759152639,759153663,759169023,759171071,759174143,759174399,759174911,759175167,759176191,759178239,759179263,759180287,759181311,759182335,759183359,759184383,759185407,759185663,759186431,759187455,759187967,759188479,759189503,759190527,759191551,759192575,759193599,759195647,759196671,759198207,759198719,759199743,759200767,759201791,759202815,759204863,759206911,759207935,759208959,759209983,759211007,759212031,759213055,759214079,759215103,759216127,759217151,759220223,759221247,759227391,759229439,759230463,759232511,759233535,759234559,759235583,759236607,759237119,759237375,759237631,759238655,759242751,759243775,759245823,759246335,759246847,759248895,759249919,759250943,759251967,759252479,759252735,759252991,759254015,759255039,759256063,759258111,759259135,759260159,759261183,759263231,759263487,759264255,759264767,759265279,759266303,759267327,759269375,759270399,759272447,759273471,759274495,759282687,759283711,759285759,759286015,759286271,759286527,759286783,759291903,759292927,759293951,759294975,759295999,759297023,759298047,759299071,759299327,759299583,759300095,759301119,759302143,759303167,759304191,759305215,759306239,759307263,759308287,759309055,759309311,759310335,759311359,759312383,759313407,759313919,759314175,759314431,759315455,759316479,759317503,759318527,759319551,759320831,759321087,759321343,759321599,759323647,759324671,759325695,759326719,759327743,759328767,759329791,759330815,759331839,759332863,759333887,759334399,759334911,759335935,759336959,759337983,759338239,759338495,759338751,759339007,759339263,759339519,759340031,759343103,759344127,759345151,759346175,759347199,759348223,759349247,759350271,759351295,759352319,759353343,759353599,759353855,759354111,759354367,759355391,759356415,759357439,759358463,759358975,759359487,759360511,759361535,759362559,759363583,759364095,759364607,759365631,759366143,759366655,759367679,759368703,759368959,759369215,759369471,759370239,759370495,759370751,759371775,759372799,759373823,759374335,759374591,759374847,759375871,759376895,759377919,759378943,759379199,759379455,759379711,759379967,759380991,759381503,759382015,759383039,759384063,759385087,759386111,759387135,759387647,759387903,759388159,759389183,759390207,759390463,759390719,759390975,759391231,759392255,759394303,759395327,759395583,759395839,759396351,759397375,759398399,759399423,759400447,759401471,759401727,759401983,759403007,759403263,759403519,759404543,759405567,759406591,759407615,759408639,759409663,759411711,759413759,759414783,759415807,759416831,759417343,759417599,759418879,759419135,759419391,759419647,759419903,759420927,759421439,759421695,759421951,759422463,759422719,759422975,759423999,759424255,759424511,759424767,759425023,759426047,759426559,759426815,759427071,759428095,759429119,759430143,759431167,759432191,759433215,759435263,759436287,759437055,759437311,759439615,759439871,759440383,759441407,759442431,759443455,759444479,759445503,759562239,759564287,759565311,759566335,759576575,759577599,759584767,759585791,759591935,759592959,759601151,759602175,759605247,759606271,759608319,759609343,759610367,759612415,759614463,759618559,759619583,759620607,759621631,759622655,759623679,759624703,759627775,759628799,759629055,759629311,759629567,759629823,759630847,759631871,759632895,759635967,759636991,759638015,759639039,759640063,759641087,759642111,759643135,759654911,759655167,759656447,759657471,759666687,759667711,759668735,759673855,759674879,759675903,759677951,759678975,759679999,759681023,759692287,759693311,759698687,759698943,759717375,759717631,759717887,759718143,759719423,759719679,759721727,759721983,759726079,759791615,759801855,759802111,759824383,759824639,759824895,759825151,759825407,759825663,759825919,759826175,759826431,759826687,759826943,759827199,759827455,759827711,759828223,759828479,759828991,759829247,759829503,759830015,759830271,759830783,759831039,759831295,759831551,759831807,759832063,759832319,759832575,759832831,759833087,759833599,759833855,759834111,759834367,759834623,759834879,759835135,759835391,759835647,759835903,759836159,759836415,759836671,759836927,759837183,759837439,759837695,759838207,759838719,759839999,759840255,759840767,759844863,759848959,759889919,759922687,759955455,759963647,759966719,759967743,759969791,759975935,759980031,759984127,759988223,759992319,759997439,760000511,760004607,760012799,760023039,760029183,760033279,760034303,760035327,760036351,760037375,760038399,760043519,760044543,760053759,760055807,760056831,760057855,760063999,760066047,760068095,760078335,760080383,760082431,760086527,760090623,760098815,760102911,760107007,760111103,760119295,760127487,760152063,760181759,760182015,760182271,760182527,760182783,760184831,760212479,760213503,760215551,760216575,760217599,760218623,760219135,760219391,760219647,760220671,760221695,760222719,760224767,760225279,760225535,760225791,760226815,760227839,760228351,760228607,760228863,760229887,760230143,760230399,760230911,760231167,760231935,760232959,760233983,760236031,760237055,760238079,760240127,760241151,760242175,760243199,760244223,760244735,760245247,760245503,760245759,760246015,760246271,760247295,760248319,760249343,760250367,760251391,760252415,760253439,760254463,760255487,760255999,760256255,760256511,760257535,760258047,760258303,760258559,760259583,760260607,760261631,760262143,760262399,760262655,760263679,760264703,760264959,760265215,760265727,760266751,760267007,760267775,760268799,760269823,760270847,760271103,760271615,760271871,760272127,760272383,760272639,760272895,760273919,760274175,760274431,760274687,760274943,760275967,760276991,760278015,760279039,760280063,760281087,760282111,760283135,760283391,760283903,760286207,760287231,760290303,760291327,760291839,760292095,760292351,760292607,760292863,760293119,760293375,760293887,760294399,760295423,760297471,760297727,760297983,760298239,760298495,760299519,760300543,760301567,760302591,760303615,760305663,760306687,760308735,760309759,760310783,760311807,760312063,760312831,760313087,760313343,760313599,760313855,760314879,760315903,760316927,760317951,760318975,760319999,760321023,760321535,760322047,760323071,760324095,760324351,760324863,760325119,760326143,760327167,760328191,760329215,760330239,760331263,760331775,760332031,760332287,760334335,760335359,760337151,760337407,760339455,760339711,760339967,760340479,760341503,760343551,760344575,760344831,760345087,760345343,760345599,760346623,760347647,760347903,760348159,760348415,760348671,760349695,760350719,760351743,760351999,760352255,760352511,760352767,760353791,760354815,760355839,760356351,760356607,760356863,760357375,760357631,760357887,760358911,760359423,760359679,760359935,760360959,760361983,760363007,760364031,760365055,760367103,760368127,760369151,760369407,760369663,760369919,760370175,760371199,760372223,760373247,760374271,760374527,760374783,760375039,760375295,760375807,760376319,760377343,760378367,760379135,760379391,760381439,760382463,760383487,760384511,760385535,760386559,760387583,760388095,760388351,760388607,760389631,760389887,760390143,760390399,760390655,760391167,760391423,760391679,760392703,760393727,760394751,760395775,760397823,760398847,760399615,760399871,760400895,760401919,760402943,760403967,760404991,760405759,760406015,760407039,760408063,760409087,760410111,760410623,760410879,760411135,760411391,760411647,760413183,760413439,760414207,760415231,760416255,760417279,760418303,760419327,760419839,760421375,760421631,760422143,760422399,760423423,760424447,760424703,760424959,760425471,760426495,760427519,760428543,760429567,760430591,760431615,760432639,760433663,760434687,760435711,760436735,760436991,760437247,760437503,760437759,760438783,760439807,760440831,760442879,760443903,760444927,760445951,760446207,760446463,760446719,760446975,760447487,760447999,760449023,760449279,760449535,760449791,760450047,760450815,760451071,760451327,760451583,760451839,760452095,760453119,760454143,760456191,760458239,760459263,760459775,760460287,760460799,760461311,760461567,760461823,760462335,760464383,760465407,760466431,760466687,760467199,760467455,760468479,760469503,760470527,760471551,760472575,760473599,760474623,760475135,760475391,760475647,760476671,760477695,760478719,760479743,760479999,760480767,760482815,760483839,760484863,760485631,760485887,760486911,760487423,760487679,760487935,760488959,760489471,760489727,760489983,760491263,760491519,760491775,760492031,760493055,760494079,760494335,760494591,760494847,760495103,760496127,760497151,760498175,760499199,760500223,760501247,760502271,760502527,760502783,760503295,760504319,760505343,760505599,760505855,760506367,760506623,760506879,760507391,760508415,760509439,760510463,760510719,760510975,760511231,760511487,760512511,760513535,760514559,760515071,760515583,760516607,760517631,760518655,760519679,760520703,760521727,760522751,760523775,760524799,760525311,760525567,760525823,760526335,760526847,760527871,760528895,760529919,760530943,760531967,760532991,760534015,760534527,760534783,760535295,760535551,760536063,760536575,760536831,760537087,760538111,760539135,760540159,760540415,760540671,760541183,760541439,760541951,760542207,760543231,760544255,760544511,760544767,760545023,760545279,760545791,760546047,760546303,760546559,760546815,760547071,760547327,760548351,760548863,760549119,760549375,760550399,760551423,760552447,760553471,760554495,760555519,760556543,760557567,760558591,760559615,760560639,760561663,760563711,760564735,760565759,760566783,760567807,760568063,760568319,760568575,760568831,760570879,760571903,760572159,760572415,760572671,760572927,760573951,760574975,760575231,760575487,760575999,760577023,760577279,760577535,760577791,760578047,760578559,760579071,760580095,760581119,760582143,760582655,760582911,760583167,760584191,760585215,760585727,760587263,760588287,760589311,760590335,760591359,760592383,760593407,760593663,760594431,760594943,760595199,760595455,760596479,760597503,760598527,760599551,760600575,760601599,760602623,760603647,760604671,760605695,760606719,760606975,760607231,760607487,760607743,760608511,760608767,760609023,760609535,760609791,760610815,760611839,760612863,760613887,760614143,760614399,760614655,760614911,760617983,760619007,760620031,760620287,760620543,760621055,760622079,760623103,760624127,760625151,760626175,760626431,760627711,760627967,760628991,760629503,760629759,760630271,760630783,760631295,760632319,760632575,760632831,760633087,760633343,760634367,760635135,760635391,760637439,760638463,760639487,760640511,760641535,760642559,760643583,760644607,760645631,760646655,760647679,760649727,760649983,760650495,760651775,760652287,760652543,760652799,760653823,760654591,760654847,760655871,760656895,760657919,760658943,760659455,760659967,760660479,760660991,760662015,760662271,760662527,760662783,760663039,760664063,760665087,760666111,760667135,760667391,760667647,760668159,760669183,760669439,760669695,760669951,760670207,760670719,760671231,760672255,760673279,760673535,760673791,760674047,760674303,760675327,760676351,760677375,760678399,760678655,760678911,760679167,760679423,760680447,760681471,760681727,760681983,760682239,760682495,760683519,760683775,760684031,760684543,760685567,760686591,760687615,760688639,760689663,760689919,760690175,760690687,760691711,760691967,760692735,760693759,760694527,760694783,760695807,760696831,760698879,760699903,760700415,760700671,760700927,760701951,760702975,760703743,760705023,760706047,760706559,760706815,760707071,760707327,760707583,760708095,760708607,760708863,760709119,760710143,760710399,760711167,760712191,760714239,760715263,760715519,760716031,760716287,760717823,760720383,760721151,760721407,760723455,760723711,760723967,760724223,760724479,760725503,760726527,760727551,760728575,760729599,760730623,760730879,760731135,760731391,760731647,760732415,760732671,760733695,760734719,760735743,760736767,760737791,760738303,760738559,760738815,760739839,760740863,760741375,760741631,760741887,760742143,760742655,760742911,760743167,760744447,760744703,760744959,760745215,760745471,760745727,760745983,760747007,760747263,760747519,760747775,760748031,760749055,760750079,760751103,760752127,760752383,760752639,760752895,760753151,760754175,760755199,760756223,760756479,760756991,760757247,760758271,760758527,760758783,760759039,760759295,760760319,760761343,760762367,760763391,760764415,760764671,760764927,760765183,760765439,760766463,760766719,760766975,760767487,760767743,760767999,760768511,760769535,760770559,760771583,760772607,760772863,760773119,760773375,760773631,760774143,760775679,760775935,760776191,760776703,760777215,760777471,760777727,760778751,760779775,760780799,760782335,760782591,760782847,760783871,760784895,760785407,760785919,760786943,760787967,760788223,760788479,760788991,760789503,760789759,760790015,760790527,760790783,760792063,760793087,760793343,760793599,760793855,760794111,760795135,760796159,760797183,760798463,760798719,760798975,760799231,760800255,760800767,760801023,760801279,760802303,760803327,760804351,760804863,760805375,760806399,760807423,760808447,760809471,760810495,760811519,760812543,760812799,760813055,760813311,760813567,760814591,760814847,760815103,760815359,760815615,760816639,760816895,760817151,760817407,760817663,760818687,760820735,760820991,760821247,760821503,760821759,760822783,760823295,760823551,760823807,760825855,760826879,760827903,760828927,760829951,760830975,760831999,760832255,760832511,760832767,760833023,760834047,760834303,760836095,760837119,760838143,760839167,760841215,760842239,760843263,760844287,760845311,760845567,760845823,760846335,760847359,760848383,760849407,760850431,760851455,760851711,760851967,760852223,760852479,760853503,760854527,760855551,760856575,760857599,760857855,760858623,760858879,760859135,760859647,760861183,760861695,760862719,760863743,760864767,760866559,760866815,760867839,760868863,760869631,760869887,760870143,760870399,760870655,760870911,760871167,760871423,760872191,760872447,760872703,760872959,760873983,760875007,760876031,760877055,760877567,760877823,760878079,760879103,760880127,760881151,760882175,760883199,760883455,760883967,760884223,760884479,760884735,760885247,760885759,760886271,760887295,760888319,760889343,760890367,760891391,760892415,760893439,760894463,760894719,760895487,760895999,760896511,760897535,760898559,760899583,760900607,760901631,760901887,760902655,760903679,760904703,760905727,760906751,760907775,760908799,760909055,760909311,760909567,760909823,760910847,760911871,760912895,760913919,760914943,760915967,760916991,760918015,760919039,760920063,760920575,760921087,760922111,760923135,760923391,760923647,760924159,760925183,760926207,760927231,760928255,760929279,760929535,760929791,760930303,760931327,760932351,760933375,760934399,760935423,760936447,760937471,760938495,760939519,760939775,760940543,760940799,760941055,760941567,760942591,760942847,760943103,760943359,760943615,760943871,760944127,760944383,760944639,760945663,760946687,760948735,760949759,760950271,760950783,760951551,760951807,760952063,760952575,760952831,760953855,760954879,760955135,760955903,760956927,760957951,760958463,760958719,760958975,760961023,760962047,760962303,760962559,760962815,760963071,760964095,760965119,760966143,760967167,760968191,760968447,760968703,760969215,760969471,760969983,760970239,760971263,760972287,760973311,760973567,760973823,760974079,760974335,760975359,760976383,760977151,760977407,760978431,760979455,760979711,760979967,760980479,760981503,760982015,760982271,760982527,760983551,760983807,760984063,760984319,760984575,760985599,760986623,760987647,760987903,760988159,760988671,760989695,760991743,760991999,760992511,760992767,760993791,760994815,760995839,760996095,760996351,760996607,760996863,760997887,760998911,760999679,761000959,761001983,761003007,761003519,761004031,761004287,761004543,761004799,761005055,761006079,761007103,761008127,761009151,761010175,761011199,761012223,761012479,761012735,761013759,761014015,761014271,761014527,761014783,761015039,761016319,761017343,761018367,761019391,761021439,761021951,761022207,761022463,761023487,761023743,761023999,761024255,761024511,761025535,761026559,761027583,761028607,761029631,761030655,761031679,761032703,761033727,761034751,761035775,761036799,761037055,761037311,761037823,761038847,761039871,761040895,761041407,761041663,761041919,761042943,761043967,761044479,761044991,761045759,761047039,761048063,761048319,761048575,761050111,761051135,761052159,761053183,761053951,761054207,761055231,761056255,761057279,761058303,761059327,761060351,761061375,761062399,761062655,761062911,761063167,761063423,761064447,761065471,761065727,761066495,761066751,761067007,761067263,761067519,761068543,761069567,761070591,761071615,761071871,761072127,761072383,761072639,761073663,761074687,761074943,761075199,761075455,761075711,761076735,761077247,761077503,761077759,761078783,761079807,761080831,761081087,761081343,761081599,761081855,761082879,761083135,761083391,761083647,761083903,761084927,761085439,761085951,761086975,761089023,761090047,761090559,761090815,761091071,761091327,761091583,761092095,761093119,761094143,761094399,761095167,761096191,761098239,761099263,761100031,761100287,761101311,761102335,761103359,761104383,761105407,761106431,761107455,761107711,761107967,761108479,761109503,761110527,761111551,761112063,761112575,761113599,761114623,761115647,761116671,761118719,761119743,761120767,761121791,761122815,761123839,761124095,761124607,761124863,761125375,761125631,761125887,761126911,761127935,761128959,761129983,761131007,761132031,761133055,761134079,761135103,761136127,761137151,761138175,761139199,761140223,761141247,761141503,761141759,761142015,761142271,761142527,761142783,761143039,761143295,761144319,761145343,761146367,761147391,761148415,761149439,761149951,761150463,761151487,761152511,761153535,761154559,761155583,761156607,761157631,761158655,761159167,761159423,761159679,761160703,761161727,761162751,761163775,761164799,761166847,761168895,761169919,761170175,761170431,761170943,761171967,761172991,761174015,761174271,761174527,761175039,761176063,761176319,761176575,761178367,761178623,761179135,761180159,761181183,761183743,761183999,761184255,761185279,761186303,761187327,761188351,761188607,761188863,761189119,761189375,761190399,761191423,761192447,761193471,761194495,761195519,761196543,761197567,761199615,761200639,761201663,761202687,761202943,761203199,761203455,761203711,761203967,761204223,761204479,761204735,761205247,761205759,761206015,761206527,761206783,761207807,761208063,761208319,761208831,761209343,761209599,761209855,761210111,761210367,761210623,761210879,761211903,761212927,761214975,761215999,761217023,761217279,761217791,761218047,761219071,761220095,761221119,761221375,761221631,761221887,761222143,761223167,761224191,761225215,761225727,761225983,761226239,761226751,761227263,761229311,761229567,761229823,761230079,761230335,761230591,761231359,761232383,761233407,761233663,761234431,761235455,761236479,761237503,761237759,761238527,761239551,761240575,761241599,761241855,761242111,761242367,761242623,761243647,761244671,761245695,761247743,761247999,761248767,761249791,761250303,761250815,761251839,761252863,761253119,761253631,761253887,761254143,761254399,761254911,761255167,761255423,761255935,761256191,761256447,761256703,761256959,761257983,761258239,761258495,761259007,761260031,761260287,761260543,761260799,761261055,761262079,761262335,761262591,761262847,761263103,761264127,761265151,761266175,762314751,762315775,762316799,762320895,762321919,762323967,762324991,762326015,762327039,762330111,762331135,762332159,762333183,762334207,762335743,762336255,762337279,762345471,762346495,762347519,762348543,762349567,762350591,762351615,762353663,762358783,762359807,762360831,762361855,762362879,762363903,762364927,762365951,762366975,762367999,762372095,762373119,762376191,762377215,762378239,762380287,762381311,762382335,762382847,762383359,762388479,762388735,762388991,762389247,762389503,762390527,762391551,762393599,762394623,762395647,762396159,762397695,762397951,762398719,762399743,762400767,762401279,762401791,762402815,762403839,762404863,762407935,762408959,762409983,762412031,762413055,762414079,762415103,762416127,762417151,762419199,762420223,762421247,762423039,762423295,762424319,762425343,762426367,762427391,762428415,762429439,762429695,762430463,762431487,762437631,762438655,762439679,762440703,762441215,762441471,762441727,762442751,762443775,762444799,762446847,762447871,762448895,762450943,762451967,762452991,762454015,762455039,762456063,762457087,762458111,762459135,762460159,762467327,762469375,762470399,762471423,762472447,762473471,762474495,762475519,762475775,762476031,762476287,762476543,762477311,762477567,762478591,762479103,762479359,762479615,762480639,762481663,762486783,762487807,762490879,762492927,762493951,762494975,762495999,762498047,762499071,762499327,762500095,762502143,762503167,762504191,762505215,762505727,762506239,762507263,762508287,762510335,762511359,762514431,762515455,762516479,762517503,762517759,762518015,762518271,762518527,762519039,762519551,762520575,762521599,762522623,762523647,762523903,762524159,762524671,762526719,762527743,762528767,762529791,762530815,762531839,762532863,762533887,762536959,762537983,762539007,762540031,762541055,762541567,762541823,762542079,762543103,762544127,762545151,762546175,762547199,762548223,762549247,762550271,762551295,762552319,762553343,762554367,762557439,762558463,762560511,762561535,762562559,762563583,762564607,762565631,762566655,762567679,762568703,762569727,762570751,762571775,762573823,762575871,762578943,762580223,762580735,762580991,762582015,762583039,762584063,762585087,762587135,762588159,762589183,762590207,762591231,762592255,762594303,762595327,762596351,762598399,762599423,762600447,762601471,762603519,762604543,762605567,762609663,762610175,762610431,762610687,762611711,762612735,762613759,762614783,762615807,762616831,762617855,762619903,762620927,762622207,762622463,762622719,762622975,762623999,762625023,762630143,762631167,762632191,762633215,762634239,762635263,762636287,762637311,762640383,762641407,762643455,762644479,762645503,762646527,762647551,762648575,762649599,762650623,762651647,762652671,762653695,762655743,762655999,762656255,762656511,762656767,762657791,762658815,762659839,762660863,762661887,762663935,762664959,762665983,762667007,762668031,762668287,762669055,762670079,762673151,762673919,762674175,762675199,762676223,762677247,762678271,762679295,762680319,762681343,762682367,762688511,762690559,762691583,762692607,762693631,762695679,762696703,762700799,762701823,762702847,762703871,762705919,762706943,762707967,762710527,762711039,762717183,762718207,762719231,762723327,762724351,762725375,762726399,762727423,762728447,762736639,762737663,762739711,762740735,762741759,762742783,762746879,762754303,762754559,762755071,762756095,762757119,762770431,762771455,762771711,762771967,762772223,762772479,762773503,762775551,762783743,762784767,762786815,762787071,762787327,762787839,762788863,762792959,762796031,762797055,762799103,762800127,762801151,762802175,762803199,762804223,762805247,762806271,762807295,762808319,762810367,762811391,762812415,762814463,762815487,762816511,762824703,762825727,762826751,762827775,762829823,762830847,762832895,762833919,762834943,762835967,762838015,762839039,762841087,762846207,762847231,762848255,762848511,762848767,762849279,762850303,762851327,762851583,762852351,762853119,762853375,762855423,762857471,762858495,762859263,762859519,762860543,762861567,762863615,762864639,762865663,762865919,762866175,762866687,762867711,762868735,762869759,762871807,762872831,762873855,762874111,762874623,762874879,762875903,762876927,762877951,762879231,762879487,762879743,762879999,762881023,762882047,762883071,762883839,762884095,762884863,762885119,762887167,762888191,762889215,762890239,762890495,762890751,762891007,762891263,762893311,762894335,762895359,762896383,762898431,762900479,762901503,762902527,762909695,762910719,762911743,762912767,762913791,762914815,762915839,762916863,762917887,762918911,762919935,762920959,762924031,762925055,762926079,762927103,762928127,762930175,762931199,762932223,762938367,762939391,762940415,762941439,762942463,762943487,762944511,762945535,762946559,762947583,762948607,762950655,762951423,762951679,762952703,762953727,762956031,762956287,762957823,762958847,762959615,762959871,762960895,762964991,762966015,762981375,762982399,762983423,762985471,763000831,763003903,763005951,763010047,763010303,763010559,763011071,763026431,763027455,763028479,763029247,763029503,763035647,763040767,763041791,763042815,763045887,763046911,763059199,763060223,763061247,763062271,763063295,763064319,763065343,763065599,763066367,763067391,763068415,763071487,763072511,763072767,763073023,763073535,763076607,763077631,763083775,763084287,763084543,763086847,763087871,763088895,763089919,763090943,763091967,763092991,763102207,763103231,763104255,763105279,763106303,763107327,763108351,763111423,763112447,763113471,763114495,763115519,763117567,763118591,763119615,763120639,763122687,763125759,763126271,763126783,763127807,763129343,763129855,763130879,763132927,763133951,763134975,763135999,763137023,763142143,763143167,763144191,763145215,763147263,763152383,763153407,763154431,763155455,763156479,763158527,763164671,763165695,763165951,763166207,763166463,763166719,763167743,763168767,763170815,763171327,763171839,763172863,763173887,763174911,763175935,763177983,763179007,763180031,763182079,763183103,763183359,763183615,763183871,763184127,763185151,763186175,763193343,763194367,763194623,763196415,763197439,763199487,763200511,763201535,763202559,763207679,763208703,763208959,763209727,763210751,763214847,763215359,763215615,763215871,763217919,763220991,763222015,763223039,763224063,763225087,763226111,763227135,763228159,763229183,763229439,763229695,763229951,763230207,763231231,763231487,763232255,763234303,763235327,763235839,763236095,763236351,763238399,763239423,763242495,763243519,763244543,763246591,763247615,763248639,763250687,763251711,763252479,763252735,763253759,763254271,763254783,763255807,763257855,763258879,763259903,763263999,763265023,763266047,763267071,763268095,763269119,763270143,763270399,763270655,763271167,763272191,763273215,763274239,763275263,763278335,763279359,763280383,763281407,763282431,763285503,763286527,763287551,763288575,763289599,763290623,763291647,763293695,763294719,763295743,763296767,763297023,763297279,763297791,763298815,763299839,763301887,763304959,763305983,763307007,763308031,763310079,763311103,763313151,763314175,763321343,763322367,763323391,763326463,763326719,763327487,763328511,763329535,763330559,763331583,763332607,763333631,763334655,763336703,763337727,763338751,763339775,763340799,763341823,763342847,763343871,763344895,763345919,763346943,763347967,763350015,763351039,763353087,763354111,763360255,763361279,763362303,763363327,763364351,763364607,763365119,763365375,763366399,763366655,763366911,763367423,763367679,763367935,763368191,763368447,763369471,763369727,763370239,763370495,763371519,763372543,763372799,763373055,763373311,763373567,763374591,763374847,763375103,763375615,763376383,763377919,763378431,763379711,763380735,763381759,763382783,763383039,763383295,763383551,763383807,763385087,763385343,763385855,763386879,763387903,763388159,763388415,763388671,763388927,763389951,763390975,763391999,763393023,763394047,763395071,763395327,763395583,763395839,763396095,763396351,763397119,763397375,763397631,763397887,763398143,763399167,763400191,763400447,763401215,763401471,763401727,763401983,763402239,763402495,763402751,763403007,763403263,763403519,763403775,763404287,763405311,763406335,763407359,763408383,763409407,763410431,763411455,763412479,763413503,763413759,763414015,763414271,763414527,763415551,763415807,763416063,763416575,763417599,763418623,763419647,763419903,763420415,763420671,763421695,763422719,763422975,763423231,763423743,763424767,763425791,763426815,763427839,763428863,763429119,763429375,763430911,763431935,763432447,763432959,763433471,763433727,763433983,763435007,763436031,763437055,763437567,763437823,763438079,763439103,763441151,763442175,763443199,763443455,763443967,763444223,763445247,763446271,763447295,763448319,763448575,763448831,763449087,763449343,763450367,763450623,763450879,763451135,763451391,763451647,763451903,763452159,763452415,763452927,763453439,763453695,763454463,763455487,763455743,763456255,763456511,763458559,763459583,763460607,763460863,763461119,763461375,763461631,763461887,763462143,763462399,763462655,763463167,763463679,763464703,763465727,763466751,763467775,763468799,763469823,763470847,763471103,763471359,763471615,763471871,763472383,763472639,763472895,763474943,763475967,763476223,763476735,763476991,763478015,763479039,763479295,763479551,763479807,763480063,763482111,763483135,763484159,763485183,763486207,763487231,763487487,763487743,763488255,763489279,763490303,763492351,763493375,763494399,763496447,763497471,763498495,763499519,763500543,763501567,763502591,763502847,763503103,763503615,763504639,763505663,763505919,763506175,763506687,763507711,763507967,763508223,763508735,763509759,763510783,763511039,763511295,763511807,763512831,763513855,763514879,763515135,763515391,763515647,763515903,763516159,763516415,763516671,763516927,763517951,763518975,763519999,763521023,763521535,763521791,763522047,763523071,763523327,763523839,763524095,763524607,763524863,763525119,763525375,763525631,763525887,763526143,763526655,763526911,763528191,763529471,763529727,763529983,763530239,763530495,763530751,763531007,763531263,763531519,763531775,763532287,763532799,763533311,763534335,763535359,763536383,763537407,763538431,763539455,763540479,763541503,763541759,763542015,763542271,763542527,763543551,763544575,763545599,763545855,763546111,763546367,763546623,763547647,763548671,763549183,763549695,763550719,763551743,763552511,763552767,763553791,763554815,763555839,763556863,763557887,763558911,763559167,763559423,763559679,763559935,763560959,763561983,763563007,763564031,763565055,763566079,763567103,763568127,763569151,763570175,763571199,763571455,763572991,763573247,763574271,763575295,763575807,763576319,763577343,763578111,763578367,763579391,763579903,763580159,763580415,763581439,763581951,763582207,763582463,763583487,763584511,763585535,763586559,763587583,763588607,763589631,763590655,763591679,763592703,763593727,763594239,763595775,763596799,763597823,763598847,763599103,763599615,763599871,763600895,763601407,763601663,763601919,763602943,763603455,763603967,763604991,763605247,763606015,763606783,763607039,763608063,763609087,763610111,763611135,763612159,763613183,763614207,763614463,763614719,763614975,763615231,763616255,763617279,763618303,763619327,763620351,763621375,763622399,763623423,763624447,763625471,763625727,763625983,763626239,763626495,763628543,763629311,763629567,763631615,763631871,763632127,763632383,763632639,763633663,763633919,763634175,763634431,763634687,763635199,763635455,763635711,763636735,763637759,763638527,763639807,763640831,763641087,763641855,763642111,763642879,763643903,763644159,763644415,763644671,763644927,763645951,763646207,763646463,763646975,763647999,763649023,763650047,763650303,763650559,763650815,763651071,763652095,763653119,763654143,763654399,763654655,763654911,763655167,763656191,763657215,763658239,763658751,763659263,763660287,763662335,763663359,763663871,763664127,763664383,763665407,763665663,763665919,763666175,763666431,763667455,763668479,763670527,763671039,763671551,763672575,763672831,763673087,763673343,763673599,763674623,763674879,763675135,763675391,763675647,763676671,763677695,763678463,763678719,763680767,763681023,763681535,763681791,763682815,763683327,763683583,763683839,763684863,763685887,763686143,763686911,763687935,763688959,763689983,763690239,763690495,763690751,763691007,763691263,763691519,763692031,763692799,763693055,763694079,763695103,763696127,763698175,763698943,763700223,763701503,763701759,763702015,763702271,763704319,763705343,763706367,763707391,763708415,763709439,763709695,763709951,763710463,763711487,763712255,763712511,763713535,763714559,763715583,763716607,763717631,763718143,763718655,763719679,763719935,763720703,763720959,763721727,763724799,763725055,763725823,763726079,763726335,763726847,763727871,763728895,763729919,763730943,763731455,763731967,763732991,763734015,763734271,763734527,763734783,763735039,763735551,763735807,763736063,763736319,763736575,763736831,763737087,763737343,763737599,763737855,763738111,763739135,763740159,763740671,763740927,763741183,763743231,763744255,763745279,763746047,763746303,763746559,763747071,763747327,763748351,763749375,763750399,763750911,763751423,763751679,763752447,763752703,763752959,763753215,763753727,763753983,763754495,763755519,763755775,763756031,763756287,763757567,763758591,763758847,763759103,763759615,763759871,763760127,763760383,763760639,763760895,763761151,763761407,763761663,763761919,763762175,763762431,763762687,763763711,763764735,763765759,763766015,763766271,763767807,763768831,763769599,763769855,763770879,763771903,763773951,763774975,763775999,763776767,763777023,763777279,763777535,763778047,763779071,763779327,763779583,763779839,763780095,763781119,763783167,763784191,763784703,763785215,763786239,763787263,763788287,763789311,763789567,763789823,763790079,763790335,763791359,763792383,763792639,763792895,763793151,763793407,763794431,763794943,763795199,763795455,763796479,763796735,763796991,763797503,763798527,763799551,763800575,763800831,763801087,763802623,763803647,763803903,763804159,763804415,763804671,763804927,763805183,763805439,763805695,763807743,763808767,763809791,763810815,763811071,763811327,763811839,763812863,763813375,763813887,763814143,763814399,763814911,763815935,763816959,763817983,763819007,763820031,763820287,763820543,763820799,763821055,763821567,763821823,763822079,763823103,763824127,763824383,763824639,763824895,763825151,763826175,763827199,763828223,763829247,763830783,763831039,763831295,763831807,763832063,763832319,763833343,763834367,763835391,763836415,763837439,763838463,763839487,763840511,763841535,763842559,763843583,763844607,763845631,763846655,763847679,763848703,763850751,763851775,763852031,763852799,763853823,763854847,763855103,763855359,763855615,763855871,763856127,763856383,763856895,763857151,763857407,763857663,763857919,763858943,763859967,763860991,763862015,763863039,763863551,763864063,763864319,763864575,763864831,763865087,763866111,763867135,763867391,763867647,763868159,763868415,763868671,763869183,763869439,763869695,763869951,763870207,763871743,763871999,763872255,763873279,763874303,763875327,763876351,763877119,763877375,763878399,763879423,763880447,763880703,763881215,763881471,763881983,763882239,763882495,763883263,763883519,763884543,763885567,763886591,763887615,763888127,763888639,763889663,763890687,763891711,763891967,763892223,763892735,763893759,763894783,763895807,763896831,763897855,763898879,763899903,763900927,763901951,763902975,763903999,763905023,763905279,763905535,763906047,763907071,763908095,763909119,763910143,763911167,763912191,763913215,763914239,763915263,763915519,763915775,763916031,763916287,763918335,763919359,763921407,763922431,763923455,763923967,763924479,763925503,763926527,763926783,763927039,763927295,763927551,763928575,763929599,763930623,763932159,763932671,763933695,763934719,763935743,763936767,763938047,763938303,763938559,763938815,763939839,763940351,763940607,763941887,763942911,763943167,763943423,763943679,763943935,763944959,763945983,763946239,763946751,763947007,763948031,763949055,763949567,763949823,763950079,763951103,763951359,763952127,763953151,763954175,763955199,763955455,763956223,763957247,763957759,763958015,763958271,763959295,763960319,763960575,763961343,763962367,763963391,763963647,763964159,763964415,763966463,763966719,763966975,763967231,763967487,763968511,763968767,763969023,763969279,763969535,763970559,763970815,763971071,763971583,763972607,763972863,763973119,763973375,763973631,763974143,763974399,763974655,763974911,763975167,763975423,763975679,763976703,763977727,763977983,763978239,763978495,763978751,763979775,763980799,763981823,763982847,763983359,763983615,763983871,763984895,763985151,763985407,763985663,763985919,763986943,763987967,763988991,763990015,763991039,763991295,763991807,763992063,763992831,763993087,763993343,763993599,763993855,763994111,763995135,763996159,763998207,763998719,763999231,764000255,764001279,764001535,764002047,764002303,764002559,764002815,764003327,764004351,764004607,764005119,764005375,764005887,764006143,764006399,764007423,764008447,764009471,764010495,764011519,764012543,764013567,764013823,764014079,764014335,764014591,764015615,764016127,764016639,764017663,764018687,764019199,764019455,764019711,764019967,764020223,764020479,764020735,764021247,764021503,764021759,764023039,764023295,764023551,764023807,764024831,764025343,764025855,764026879,764027903,764028927,764029951,764030975,764031999,764033023,764034047,764035071,764036095,764036863,764037119,764037375,764037631,764037887,764038143,764038399,764038655,764038911,764039167,764040191,764040447,764040703,764040959,764041215,764042239,764043263,764044543,764044799,764045055,764045311,764046335,764046591,764046847,764047359,764048383,764049407,764050431,764052479,764053503,764054527,764055551,764055807,764056063,764056575,764057599,764058623,764058879,764059135,764059391,764059647,764060671,764061695,764062719,764063743,764064767,764065023,764065279,764065535,764065791,764066815,764067839,764068863,764069375,764069887,764070911,764071167,764071423,764071679,764071935,764072447,764072703,764072959,764073215,764073727,764073983,764075007,764075519,764076031,764076799,764077055,764078079,764079103,764079615,764079871,764080127,764081151,764082175,764083199,764084223,764084991,764085247,764085759,764086271,764086527,764086783,764087295,764088319,764089343,764090367,764091391,764091647,764091903,764092159,764092415,764092671,764092927,764093183,764093439,764093695,764093951,764094463,764095487,764096511,764096767,764097023,764097279,764097535,764098047,764098303,764098559,764098815,764099583,764100607,764101375,764101631,764102143,764102655,764103679,764104703,764105727,764106751,764107775,764108799,764110847,764111103,764111359,764111615,764111871,764112895,764113919,764115711,764115967,764116991,764118015,764119039,764121087,764122111,764123135,764124159,764124927,764125183,764125695,764125951,764127231,764128255,764129279,764130303,764131327,764132351,764133375,764133631,764133887,764134143,764134399,764134655,764134911,764135167,764135423,764136447,764137471,764138495,764139519,764140543,764141567,764141823,764142079,764142335,764142591,764142847,764143103,764143359,764143615,764144639,764145151,764145407,764145663,764146687,764147711,764148735,764148991,764149247,764149759,764150783,764151039,764151295,764151551,764151807,764152575,764152831,764153087,764153343,764153599,764153855,764154623,764154879,764155903,764156415,764156927,764157951,764158207,764158975,764159487,764159743,764159999,764160255,764160511,764161023,764162047,764163071,764164095,764165119,764165375,764165631,764166399,764166655,764166911,764167167,764167423,764167679,764167935,764168191,764171263,764172287,764172543,764173311,764174335,764175359,764176127,764176383,764177407,764178431,764180479,764181503,764182527,764183039,764183295,764183551,764183807,764184319,764184575,764185599,764186623,764186879,764187135,764187391,764187647,764188671,764189695,764190719,764191743,764192255,764192511,764192767,764193535,764193791,764194047,764194303,764194559,764195839,764196863,764197119,764197631,764197887,764198911,764199423,764199679,764199935,764200959,764201983,764202495,764204031,764204543,764204799,764205055,764206079,764207103,764209151,764210175,764211199,764212223,764212479,764212735,764213247,764214271,764215295,764216319,764217343,764218367,764219391,764220415,764221183,764221439,764221695,764221951,764222463,764223487,764224511,764225535,764226559,764227583,764227839,764228095,764228351,764228607,764228863,764229119,764229375,764229631,764229887,764230143,764230655,764230911,764231679,764232703,764233727,764234751,764235775,764236799,764237823,764238847,764239615,764239871,764240895,764241919,764242943,764243967,764244991,764246015,764246527,764246783,764247039,764247551,764247807,764248063,764248575,764248831,764249087,764250111,764251135,764252159,764253183,764254207,764254463,764254719,764254975,764255231,764255487,764255743,764255999,764256255,764257279,764258303,764259327,764260351,764260607,764260863,764261119,764262399,764262655,764262911,764263167,764263423,764264447,764265471,764266495,764268543,764269567,764270079,764270335,764270591,764271615,764271871,764272127,764272639,764273663,764274687,764274943,764275199,764275455,764275711,764276735,764277759,764278783,764279807,764280831,764281599,764281855,764282879,764283903,764284159,764284671,764284927,764285951,764286975,764287999,764288255,764288511,764289023,764290303,764290559,764290815,764291071,764292095,764293119,764294143,764295167,764296191,764298239,764299263,764300287,764301311,764302335,764302591,764302847,764303103,764303359,764304383,764306431,764306687,764306943,764307455,764307967,764308223,764308479,764309503,764310527,764311551,764311807,764312063,764312319,764312575,764312831,764313599,764314623,764315647,764316671,764317695,764318719,764319743,764319999,764320255,764320511,764320767,764321791,764322815,764323071,764323839,764324863,764325887,764327935,764328959,764329983,764330239,764330495,764330751,764331007,764332031,764332287,764332543,764332799,764333055,764333311,764333567,764333823,764334079,764334335,764334591,764335103,764335359,764335615,764335871,764336127,764337151,764338175,764339199,764340223,764341247,764341503,764341759,764342271,764343295,764343551,764343807,764344063,764344319,764345343,764346367,764346623,764347391,764347647,764347903,764348159,764348415,764350463,764351487,764352511,764353535,764354559,764355583,764356607,764357631,764358655,764359679,764359935,764360191,764360447,764360703,764361727,764362239,764362751,764363775,764364799,764365823,764366847,764367359,764367615,764367871,764368895,764369919,764370943,764371967,764372991,764374015,764375039,764378111,764379135,764380159,764380415,764381183,764382207,764382463,764382719,764382975,764383231,764383999,764384255,764385279,764386303,764387327,764388863,764389375,764390399,764391423,764392447,764393471,764394495,764395519,764395775,764396031,764396287,764396543,764397567,764397823,764398079,764398591,764399615,764400639,764401663,764402687,764403455,764403711,764404735,764405759,764406783,764407295,764407807,764408831,764409855,764410879,764411903,764412159,764412927,764413951,764414975,764415999,764417023,764418047,764419071,764419583,764420095,764421119,764421887,764422143,764422655,764422911,764423167,764424191,764425215,764426239,764427263,764428287,764429311,764430335,764430591,764431359,764432383,764433407,764434431,764435455,764436479,764437503,764438527,764439551,764440575,764441599,764442623,764443647,764444671,764445695,764446719,764447743,764448767,764449791,764450815,764451071,764451327,764451839,764452095,764452351,764452607,764453887,764454911,764455935,764456959,764457983,764459007,764460031,764461055,764462079,764463103,764464127,764465151,764466175,764466431,764466943,764467199,764468223,764469247,764469503,764469759,764470015,764470271,764471295,764471551,764471807,764472063,764472319,764472575,764472831,764473087,764473343,764474367,764474879,764475135,764475391,764477439,764477695,764477951,764478207,764478463,764478719,764478975,764479231,764479487,764480511,764481535,764481791,764482047,764482559,764483583,764484607,764485631,764486655,764486911,764487167,764487423,764488703,764489727,764490751,764491007,764491263,764491519,764491775,764492287,764492799,764493823,764494847,764495871,764496895,764497919,764498943,764499967,764500479,764500735,764500991,764502015,764503039,764504063,764505087,764506111,764507135,764508159,764508415,764508927,764509183,764510207,764511231,764512255,764513279,764514303,764515327,764516351,764516607,764517119,764517375,764518399,764518655,764518911,764519167,764519423,764520447,764521471,764522751,764523519,764524543,764525567,764526591,764527615,764528639,764530687,764531711,764532735,764532991,764533247,764533759,764534783,764535295,764535807,764536831,764537855,764538879,764539135,764539903,764540927,764541183,764541439,764541695,764541951,764542975,764543999,764544511,764544767,764545023,764546047,764547071,764548095,764549119,764549631,764549887,764550143,764551167,764552191,764553215,764554239,764555263,764556287,764556543,764556799,764557311,764558335,764559359,764560383,764562431,764563455,764563711,764563967,764564479,764565503,764566271,764566527,764567551,764568575,764569599,764569855,764570111,764570367,764570623,764571647,764572671,764574463,764574719,764575999,764576255,764576511,764576767,764578815,764579839,764580863,764581887,764582911,764583935,764584191,764584447,764584703,764584959,764586495,764586751,764587007,764588031,764589055,764589311,764589567,764590079,764590591,764590847,764591103,764592127,764592639,764593151,764594175,764594943,764595199,764596223,764597247,764598271,764599295,764599551,764599807,764600063,764600319,764601343,764602367,764602879,764603391,764604415,764604671,764604927,764605439,764606463,764607487,764608511,764608767,764609023,764609535,764609791,764610047,764610303,764610559,764611583,764612607,764613631,764614655,764615935,764616191,764616703,764617727,764618751,764619775,764620799,764621823,764622335,764622591,764622847,764623871,764624127,764624895,764625919,764626431,764626687,764626943,764627967,764628991,764630015,764630271,764630783,764631039,764632063,764633087,764634111,764635135,764636159,764637183,764639231,764640255,764641279,764642303,764643327,764644351,764645375,764646399,764647423,764647679,764648703,764648959,764649215,764649471,764649727,764649983,764650495,764650751,764651007,764651263,764651519,764652543,764653567,764654591,764655615,764656639,764657663,764658175,764658431,764658687,764659711,764660735,764661759,764662783,764663807,764664831,764665855,764666111,764666367,764666623,764666879,764667903,764668927,764669951,764670975,764671487,764671743,764671999,764672255,764672511,764672767,764673023,764673279,764673535,764674047,764675071,764675327,764675583,764675839,764676095,764676607,764676863,764678143,764678399,764678655,764678911,764679167,764680191,764680447,764680703,764680959,764681215,764682239,764683263,764684287,764685311,764686335,764686591,764686847,764687103,764687359,764688383,764689407,764690431,764690943,764691455,764693503,764694527,764695551,764697599,764698623,764698879,764699647,764700671,764701695,764702719,764703743,764704255,764704511,764705791,764706047,764706303,764706559,764706815,764708095,764708351,764708607,764708863,764709631,764710143,764710399,764710655,764710911,764711935,764713983,764715007,764716031,764716287,764716543,764716799,764717055,764718079,764718591,764719103,764720127,764721151,764722175,764723199,764724223,764725247,764726271,764727295,764728319,764729343,764730367,764731391,764732415,764733439,764734463,764735487,764736511,764736767,764737535,764738559,764739583,764739839,764740095,764740351,764740607,764741119,764741631,764743679,764744703,764745215,764745471,764745727,764746751,764747775,764748799,764749055,764749823,764750847,764751871,764752895,764753151,764753407,764753919,764754943,764755967,764756479,764756991,764758015,764759039,764760063,764760831,764761087,764762111,764762367,764762623,764763135,764763391,764763647,764763903,764764159,764765183,764765439,764765695,764765951,764766463,764767231,764768255,764769279,764770303,764771327,764772351,764772863,764773119,764773375,764773631,764773887,764774143,764774399,764775423,764776447,764777471,764778495,764779519,764780543,764781567,764781823,764782335,764782591,764783615,764784383,764784639,764785663,764786687,764787199,764787455,764787711,764788735,764789759,764790783,764792831,764793855,764794879,764795391,764795903,764796927,764797183,764797439,764797695,764797951,764798975,764799231,764799487,764799743,764799999,764801023,764802047,764803071,764804095,764805119,764806143,764806399,764806655,764806911,764807167,764808191,764809215,764810239,764810751,764811007,764811263,764812287,764813311,764814335,764815359,764817407,764817663,764817919,764818175,764818431,764818687,764819455,764819711,764819967,764820479,764820991,764821247,764821503,764821759,764822015,764822271,764822527,764823551,764824575,764825599,764826111,764826623,764827647,764828671,764828927,764829183,764829439,764829695,764830719,764831743,764832767,764833023,764833279,764833535,764833791,764834047,764834815,764835839,764837887,764838911,764839935,764840959,764843007,764843263,764843519,764843775,764844031,764845055,764846079,764847103,764849151,764849407,764850175,764851199,764852223,764853247,764854271,764855295,764855551,764855807,764856319,764857343,764858367,764859391,764860415,764861439,764862463,764862975,764863487,764864511,764865535,764866047,764866559,764866815,764867071,764867327,764867583,764868607,764869631,764870655,764870911,764871167,764871423,764871679,764872191,764872703,764873727,764874751,764875775,764876799,764877823,764878079,764878335,764878847,764880895,764881919,764882175,764882431,764882943,764883967,764884991,764885503,764885759,764886271,764886527,764887039,764888063,764888319,764888575,764888831,764889087,764890111,764891135,764892159,764892671,764893183,764893695,764893951,764894207,764895231,764895487,764895743,764895999,764896255,764897279,764897535,764898047,764898303,764899327,764901375,764901887,764902399,764903423,764904447,764905471,764906239,764906495,764907007,764907263,764907519,764908543,764909567,764910591,764911615,764913407,764913663,764914687,764915711,764916735,764917759,764919807,764920831,764921855,764922879,764923903,764924927,764925439,764925695,764925951,764926975,764927999,764929023,764930047,764930303,764930559,764931071,764932095,764933119,764934143,764935167,764938239,764939263,764940287,764941311,764942335,764943359,764944383,764944895,764945407,764945919,764946431,764947455,764947711,764947967,764948223,764948479,764949503,764950527,764951039,764951295,764952575,764953599,764953855,764954623,764955647,764956671,764957695,764957951,764958207,764958463,764958719,764960767,764961791,764962815,764963839,764964863,764965375,764965887,764966655,764966911,764967935,764968959,764969471,764969983,764970495,764971007,764971519,764971775,764973055,764974079,764974335,764974591,764975103,764976127,764977151,764978175,764979199,764980223,764981247,764981503,764981759,764982271,764982527,764982783,764983039,764983295,764984319,764984575,764984831,764985343,764986623,764986879,764987391,764987647,764987903,764988415,764989695,764990463,764990719,764990975,764991231,764991487,764992511,764994303,764995583,764996607,764997631,764998143,764998399,764998655,764999679,765000703,765001727,765002751,765003007,765003263,765003519,765003775,765004799,765005823,765006847,765007359,765007615,765007871,765008895,765009919,765010943,765011967,765012991,765014015,765014271,765014527,765015039,765016063,765017087,765019135,765021183,765022207,765023231,765024255,765024511,765024767,765025023,765025279,765026303,765027327,765027839,765028095,765028351,765029375,765030399,765031423,765032447,765033471,765033727,765033983,765034495,765035519,765036543,765037567,765038591,765039615,765040639,765041663,765041919,765042687,765043711,765043967,765044223,765044479,765044735,765045759,765046783,765047807,765048831,765049087,765049343,765049599,765049855,765050879,765051903,765052927,765053951,765054975,765055999,765057023,765057279,765057791,765058047,765059071,765059839,765060095,765060351,765060607,765060863,765061119,765062143,765062399,765062655,765063167,765064191,765066239,765067263,765067519,765068287,765068543,765068799,765069311,765070335,765071359,765072383,765073407,765074431,765075455,765076479,765077503,765078527,765079551,765080575,765081599,765081855,765082111,765082367,765082623,765083647,765084671,765085695,765086207,765086719,765087743,765088767,765089023,765089791,765090815,765091839,765092351,765092607,765092863,765093887,765094143,765094399,765094655,765094911,765095935,765096959,765097983,765099007,765100031,765101055,765101311,765101823,765102079,765102335,765102591,765102847,765103103,765104127,765105151,765106687,765107199,765107455,765107711,765107967,765108223,765108735,765108991,765109247,765110271,765111295,765112319,765113343,765114367,765115391,765116415,765117439,765118463,765119487,765119999,765120255,765120511,765121535,765122815,765123071,765123327,765123583,765124607,765125631,765125887,765126143,765126399,765126655,765127167,765127423,765127679,765127935,765128703,765129727,765129983,765130239,765130495,765130751,765132031,765132287,765132543,765132799,765133823,765134335,765134591,765134847,765135871,765136895,765137151,765137407,765137663,765137919,765138943,765139967,765140479,765140991,765142015,765143039,765143295,765143551,765143807,765144063,765145087,765146111,765146367,765146879,765147135,765148159,765148415,765148671,765149183,765149695,765150207,765150463,765150719,765150975,765151231,765152255,765152511,765152767,765153279,765154303,765155327,765155839,765156095,765156351,765157375,765158399,765159423,765160447,765161471,765163519,765163775,765164031,765164287,765164543,765165567,765166591,765167615,765169663,765170687,765171711,765172735,765173503,765173759,765174783,765175039,765175295,765175807,765176831,765177855,765178879,765179903,765180927,765181951,765182975,765183999,765185023,765186047,765189119,765189631,765189887,765190143,765191167,765192191,765193215,765194239,765194495,765194751,765195263,765196287,765197311,765198335,765199359,765200383,765201407,765202431,765203455,765203711,765204735,765204991,765205503,765206527,765207551,765208575,765209599,765210623,765211647,765212671,765213183,765213695,765214719,765215743,765216767,765217791,765218815,765219839,765220095,765220863,765221375,765221631,765221887,765222911,765223935,765224959,765225983,765227007,765227263,765227519,765228031,765228287,765228543,765229055,765230079,765231103,765232127,765233151,765234175,765235199,765235455,765235711,765236223,765236479,765236735,765236991,765237247,765238271,765238527,765238783,765239039,765239295,765241343,765242367,765243391,765244415,765246463,765247487,765250559,765250815,765251327,765251583,765252607,765253631,765255423,765255679,765256703,765258751,765259775,765260799,765261823,765262847,765263871,765264127,765264383,765264639,765264895,765265919,765266943,765267967,765268991,765270015,765271039,765272063,765272575,765272831,765273087,765273343,765273599,765273855,765274111,765275135,765276159,765277183,765278207,765279231,765280255,765280511,765280767,765281023,765282303,765282815,765283327,765284351,765285375,765286399,765287423,765287935,765288191,765288447,765288959,765289215,765289471,765290495,765291519,765292543,765292799,765293055,765293311,765293567,765294079,765294591,765295615,765296639,765297663,765298687,765298943,765299199,765299455,765299711,765299967,765300479,765300735,765301759,765302783,765303807,765304831,765305855,765306879,765307903,765308671,765308927,765310975,765311999,765313023,765314047,765315071,765315583,765316095,765317119,765317375,765317631,765317887,765318143,765319167,765320191,765322239,765323263,765326335,765327359,765328383,765329407,765330431,765331455,765331711,765331967,765332479,765333503,765334527,765335551,765336575,765337599,765338623,765339135,765340671,765340927,765341695,765342719,765343743,765343999,765344255,765344511,765344767,765345279,765345791,765346815,765347071,765347327,765347583,765347839,765348863,765349375,765349887,765350399,765350655,765350911,765351935,765352959,765353983,765355007,765356031,765357055,765358079,765358591,765358847,765359103,765360127,765361151,765361407,765361663,765362175,765363199,765364223,765365247,765366271,765367295,765367551,765368319,765369343,765370367,765371391,765371903,765372159,765372415,765372927,765373439,765374463,765375487,765375743,765375999,765376255,765376511,765377535,765378559,765381631,765382655,765383679,765384703,765385727,765386751,765387775,765388799,765389823,765390847,765391871,765392895,765393919,765394943,765395967,765396735,765396991,765398015,765398271,765398527,765398783,765399039,765400063,765400319,765400575,765400831,765401087,765402111,765403135,765404159,765405183,765406207,765407231,765408255,765409279,765410303,765411327,765411839,765412351,765413375,765414399,765415423,765416447,765416703,765416959,765417215,765417471,765418495,765419519,765420031,765420287,765420543,765421567,765422591,765423615,765424639,765425663,765425919,765426175,765426687,765427711,765428735,765429759,765430783,765431039,765431295,765431551,765431807,765432831,765433855,765434879,765435903,765436927,765437951,765438975,765439999,765441023,765441279,765441535,765441791,765442047,765443071,765444095,765445119,765446143,765447167,765448191,765449215,765451263,765452287,765453311,765454335,765455359,765456383,765457407,765457919,765458175,765458431,765458687,765458943,765459199,765459455,765460479,765461503,765462527,765463551,765464575,765467647,765468671,765469695,765478911,765479935,765480447,765480959,765494271,765495295,765500415,765501439,765508607,765509631,765510655,765512703,765514751,765515775,765517823,765518847,765528063,765529087,765532159,765533183,765534207,765535231,765537279,765538303,765553663,765555711,765556735,765559807,765560831,765569023,765571071,765572095,765573119,765574143,765575167,765586431,765587455,765591551,765592575,765596671,765597183,765606911,765607935,765609983,765611007,765612031,765612543,765613567,765613823,765614079,765615103,765617151,765618175,765619199,765620223,765623551,765623807,765624063,765625343,765626367,765627391,765628415,765634559,765635583,765637631,765638655,765639679,765640703,765641727,765643775,765644799,765645823,765661695,765662207,765663231,765664255,765665023,765665279,765666303,765667327,765677567,765678591,765687807,765689855,765690879,765691903,765692927,765693951,765705215,765706239,765709311,765710335,765720575,765721599,765725695,765726719,765727743,765727999,765728255,765728511,765728767,765739007,765740031,765750271,765751295,765757439,765758463,765760511,765761535,765765631,765766655,765767679,765774847,765775359,765775615,765775871,765780991,765782015,765783039,765784063,765797375,765798399,765799423,765800447,765801471,765801983,765816831,765817855,765827071,765827327,765827583,765828095,765831167,765832191,765857791,765858815,765872127,765873151,765873919,765874175,765875199,765877247,765878271,765879295,765880319,765881343,765882367,765890559,765891583,765898751,765899775,765908991,765910015,765911039,765911551,765915135,765916159,765918207,765919231,765920255,765922303,765923327,765923583,765923839,765925375,765926399,765941759,765942783,765943807,765947903,765948927,765949951,765950463,765950975,765951743,765951999,765959167,765960191,765962239,765963263,765964287,765964799,765968383,765969407,765970431,765971455,765975551,765976575,765977599,765978623,765982719,765983743,765984767,766002175,766003199,766005247,766005503,766011391,766012415,766028799,766029311,766029823,766033919,766034943,766035967,766039039,766040063,766043135,766046207,766059519,766059775,766060543,766063615,766064127,766064639,766065663,766066687,766073855,766074879,766075135,766075391,766075903,766076159,766076415,766076671,766076927,766077951,766078975,766079999,766086143,766087167,766088191,766089215,766092031,766092287,766093311,766094335,766099455,766100479,766110719,766111743,766112767,766113791,766114303,766114815,766115071,766115327,766117887,766118911,766119935,766123007,766124031,766125055,766126079,766127103,766128127,766129151,766141439,766142463,766143487,766143999,766144511,766147583,766148607,766149631,766150143,766150399,766150655,766162943,766163967,766164991,766170111,766171135,766173183,766174207,766175231,766176255,766177279,766178303,766180095,766180607,766181375,766190591,766191615,766193663,766194175,766197759,766198783,766200831,766201343,766201855,766202623,766209023,766210047,766211071,766211583,766211839,766212095,766212607,766215167,766216191,766221311,766222335,766223359,766224383,766227455,766228479,766232575,766233599,766237695,766238719,766239743,766248959,766249215,766249471,766249983,766251007,766252031,766253055,766255103,766269439,766271487,766274559,766275583,766281727,766282751,766283775,766285823,766286847,766291967,766292479,766292991,766294015,766295039,766296063,766302719,766302975,766303743,766304255,766305279,766306303,766310399,766311423,766312447,766312703,766313471,766315775,766316031,766316543,766317567,766322687,766323711,766323967,766325759,766326783,766327807,766328831,766329855,766330879,766331903,766341119,766342143,766343167,766344191,766345215,766346239,766355455,766356479,766358783,766359551,766361599,766362623,766363647,766364671,766365695,766367743,766368767,766370815,766371839,766374911,766375935,766380031,766380287,766383103,766385151,766389247,766390271,766392319,766393343,766394367,766395391,766398463,766399487,766402559,766403071,766403583,766404607,766405631,766406655,766409727,766410751,766411007,766411775,766415871,766416895,766420991,766423039,766423551,766424063,766429183,766430207,766431231,766435327,766435839,766436095,766436351,766437375,766439423,766443519,766448639,766448895,766449151,766449407,766452735,766453759,766454783,766459903,766460927,766461951,766469119,766470143,766478335,766479103,766479359,766480383,766481407,766483455,766484479,766485503,766486527,766497791,766498815,766502911,766504959,766508031,766509055,766511103,766512127,766514175,766515199,766517247,766518271,766526975,766527487,766530559,766531071,766531583,766532607,766534655,766536703,766537727,766538751,766539775,766541823,766542847,766551039,766552063,766557183,766557439,766557695,766558207,766558463,766558719,766559231,766568447,766569471,766570495,766574591,766575615,766578687,766579711,766580735,766584831,766585855,766587903,766588671,766588927,766590975,766594047,766595071,766596095,766597119,766599167,766600191,766602239,766603263,766606335,766607359,766608383,766611455,766612479,766619647,766620671,766621695,766624767,766625279,766625535,766625791,766626815,766627839,766635007,766636031,766640127,766641151,766642175,766643199,766644223,766649343,766650367,766652415,766653439,766654463,766656511,766657535,766658559,766659583,766661631,766662655,766663679,766664703,766665727,766666751,766667775,766673919,766674943,766682111,766683135,766687231,766688255,766689279,766690303,766691327,766702591,766703615,766704639,766705663,766708735,766709759,766719487,766719999,766721023,766721279,766724095,766725119,766729215,766730239,766741503,766742527,766744575,766745599,766746623,766747647,766748671,766754815,766755839,766756351,766756607,766756863,766757887,766768127,766769151,766770687,766770943,766771199,766773247,766774271,766775295,766776575,766776831,766777343,766778367,766782463,766782719,766783487,766786559,766787583,766788607,766789631,766790655,766791679,766792191,766792703,766799871,766800127,766800383,766800639,766801919,766802943,766803967,766807039,766808063,766815231,766816255,766816767,766817023,766817279,766818303,766830591,766831615,766832639,766833663,766834687,766838271,766838527,766839807,766840831,766846975,766847743,766847999,766849023,766854143,766855167,766856447,766856703,766857215,766858239,766859263,766867455,766868479,766869503,766870527,766876671,766877695,766878719,766879743,766884863,766885887,766888959,766889983,766894079,766895103,766899199,766900223,766901247,766907391,766908415,766909439,766910463,766911487,766912511,766912767,766913023,766913279,766913535,766922751,766923775,766930943,766931967,766932223,766932991,766934015,766935039,766936063,766938111,766938623,766938879,766939135,766948351,766949375,766949887,766950399,766950655,766950911,766951423,766958591,766959615,766962687,766963711,766968831,766969855,766978047,766978303,766978559,766979071,766980095,766981119,766982143,766983167,766984191,766993407,766994431,766994943,766996479,767002623,767004671,767007743,767008767,767011839,767012863,767013375,767013631,767013887,767014911,767015935,767017983,767019007,767024127,767024639,767031039,767031295,767038463,767039487,767054847,767055871,767056895,767057919,767058943,767059455,767059711,767059967,767060991,767062015,767063039,767064063,767065087,767066111,767067135,767068159,767072255,767073279,767074303,767090687,767091711,767092735,767096831,767097855,767102975,767103999,767105023,767106559,767106815,767107071,767109887,767110143,767112191,767113215,767131647,767131903,767132159,767132671,767136767,767137023,767139839,767140863,767145983,767146495,767147007,767148031,767151103,767152127,767155199,767156223,767160319,767164415,767165439,767166463,767167487,767168511,767169535,767172607,767175679,767176703,767191039,767192063,767193087,767196159,767196671,767197183,767198207,767199231,767200255,767200767,767201279,767202303,767203327,767204351,767215615,767216639,767217663,767218687,767228927,767229951,767230975,767231999,767239167,767240191,767241215,767242239,767243263,767249407,767250431,767252479,767253503,767254527,767263743,767264767,767267839,767268863,767283199,767283711,767284223,767293439,767293695,767295487,767296511,767300607,767301631,767307775,767308799,767309823,767310335,767310591,767314943,767315967,767319039,767320063,767323135,767324159,767327231,767328255,767329279,767329535,767329791,767330303,767331327,767336447,767337471,767338495,767339519,767340543,767343615,767344639,767348735,767349759,767350015,767350783,767351295,767351551,767351807,767353855,767355903,767358975,767359999,767370239,767371263,767375359,767376383,767377407,767380479,767381503,767388671,767389695,767390719,767391487,767391743,767398911,767401983,767405055,767406079,767408127,767409151,767410175,767413247,767416319,767417343,767420415,767420927,767421183,767421439,767422463,767425535,767426559,767429887,767430143,767430399,767430655,767431679,767442943,767443967,767446015,767447039,767448063,767448575,767448831,767449087,767450111,767451135,767458303,767459327,767468543,767469567,767470079,767470335,767472639,767473663,767474687,767475711,767476735,767477759,767486975,767489023,767492095,767492351,767492607,767493119,767494143,767503359,767504383,767505407,767506431,767507455,767511039,767511551,767512575,767514623,767515647,767516671,767517695,767518719,767519999,767521791,767532031,767533055,767534079,767535103,767537151,767538175,767540223,767542271,767543295,767549439,767550463,767551487,767552511,767554559,767555583,767557631,767565823,767574015,767582207,767582719,767586559,767588095,767590399,767590655,767590911,767591167,767591423,767592447,767593471,767593727,767594239,767594495,767594751,767595007,767595263,767595519,767596543,767597567,767598591,767603455,767603711,767688703,767692799,767693823,767694335,767694591,767694847,767695359,767695615,767695871,767700991,767702015,767702271,767702783,767703039,767703551,767703807,767704831,767705087,767711487,767711743,767713279,767713535,767714047,767714303,767715327,767715839,767716351,767716863,767717375,767717887,767718399,767718911,767719423,767754239,767754495,767754751,767755007,767755263,767755519,767755775,767756031,767756287,767757311,767757823,767758079,767758335,767760639,767760895,767761407,767762431,767770111,767770367,767770623,767770879,767771135,767771391,767771647,767771903,767772159,767772671,767772927,767773183,767773439,767773695,767773951,767774207,767774463,767774719,767774975,767775231,767775487,767775743,767776767,767778815,767788031,767788287,767788543,767788799,767789055,767791103,767791359,767791615,767791871,767793151,767794175,767795199,767805183,767805439,767805695,767806975,767807487,767811583,767812607,767813631,767815679,767815935,767817727,767818239,767818495,767819775,767823871,767825919,767826175,767826431,767827199,767827455,767827711,767827967,767836159,767852543,767859711,767859967,767860223,767860479,767860735,767868927,767885311,767893503,767894527,767894783,767917055,767917311,767918079,767918335,767919359,767919615,767924479,767924735,767925247,767925503,767926271,767928319,767931391,767934463,767950847,768016383,768025599,768025855,768049151,768049407,768049663,768049919,768050175,768050431,768050687,768050943,768051199,768051455,768051711,768051967,768052223,768052735,768052991,768053247,768054271,768055807,768056063,768056319,768056575,768056831,768057343,768061439,768061695,768061951,768062207,768062463,768062719,768062975,768063231,768063487,768063743,768063999,768064255,768064511,768065023,768065279,768065535,768081919,768082175,768082943,768083455,768083967,768084479,768084991,768085759,768086527,768106495,768108543,768109567,768109823,768110079,768110335,768112639,768112895,768113151,768114687,768115199,768115711,768115967,768116223,768116735,768117759,768118783,768119807,768120319,768120575,768122879,768131071,768147455,768180223,768202239,768206847,768208895,768215039,768215807,768216063,768217087,768221183,768245759,768258047,768262143,768286719,768288767,768290815,768292863,768293887,768294911,768311295,768344063,768344319,768350207,768351231,768352255,768361471,768361727,768361983,768362495,768363519,768363775,768364287,768364543,768365823,768366079,768367359,768367615,768372735,768376831,768409599,768410111,768410623,768411647,768413695,768417791,768425983,768475135,768540671,768541695,768542207,768542719,768544767,768545791,768546047,768546303,768548351,768548607,768548863,768549119,768551679,768551935,768552191,768552447,768556543,768557055,768564991,768565247,768571391,768571647,768581631,768581887,768582911,768583679,768583935,768584191,768584703,768585727,768602111,768606207,768868351,769130495,769392639,769400831,769404927,769405183,769405439,769405951,769406975,769409023,769425407,769458175,769459199,769460223,769461247,769462271,769464319,769464575,769464831,769465087,769465343,769466367,769474815,769475583,769476607,769478655,769483775,769484799,769507327,769509375,769515519,769523711,769535999,769540095,769548287,769550335,769556479,769589247,769592319,769592575,769593343,769593599,769595135,769595647,769595903,769596159,769598207,769598719,769598975,769599231,769599999,769600255,769600767,769601023,769601279,769601535,769601791,769602047,769602559,769603071,769603583,769604351,769605119,769615103,769616383,769617663,769618943,769619199,769619455,769619711,769620223,769621759,769622527,769622783,769623039,769623295,769623551,769623807,769624575,769625087,769625599,769626111,769626367,769626623,769627391,769628159,769628415,769628671,769628927,769631231,769632255,769633279,769634303,769634559,769634815,769635071,769635327,769636863,769637119,769638655,769638911,769639167,769645823,769646079,769647103,769647359,769647871,769648383,769648895,769649151,769649407,769649919,769650943,769651199,769651455,769651711,769653247,769653503,769653759,769654783,769656831,769657855,769659903,769660927,769661951,769662975,769668095,769669119,769679359,769680383,769682431,769684479,769685503,769686527,769687551,769690623,769691647,769692671,769694719,769695743,769701887,769702143,769702399,769702655,769702911,769703935,769706495,769706751,769707007,769713151,769713407,769713663,769714175,769719295,769720319,769721343,769727487,769728511,769730559,769731071,769731327,769731583,769732607,769737727,769738239,769738751,769739263,769739519,769739775,769742847,769743871,769744895,769745919,769746943,769747967,769754111,769754623,769754879,769755135,769760255,769761279,769767423,769768447,769772543,769773567,769774591,769777663,769778687,769784063,769784319,769787903,769788927,769793023,769794047,769795071,769800703,769800959,769801215,769802239,769803263,769804287,769811455,769812479,769814527,769815551,769822719,769823743,769828863,769829887,769830911,769831935,769832959,769833471,769833983,769838079,769839103,769843199,769845247,769852671,769852927,769853439,769855487,769856511,769859583,769861631,769863679,769864703,769866751,769867007,769867263,769867775,769868799,769869823,769874175,769874431,769874943,769875967,769884159,769884927,769885183,769890303,769891327,769892351,769894399,769895423,769896447,769897471,769901567,769902591,769903615,769906687,769907711,769908735,769909759,769910783,769913855,769914879,769915903,769916159,769916415,769916671,769916927,769921023,769922047,769926143,769927167,769930239,769931263,769932287,769933311,769933823,769934079,769934335,769935359,769937407,769951743,769952767,769955839,769956863,769957119,769960959,769961983,769963007,769964031,769965055,769966079,769968639,769968895,769969151,769970175,769971199,769973247,769974271,769976319,769977343,769983487,769984511,769986559,769987583,769989631,769990655,769991679,769992703,769993727,769994751,769995775,769996799,769997823,769998847,770000895,770001407,770001663,770003967,770004735,770004991,770015231,770016255,770017535,770017791,770020351,770020863,770021119,770021375,770025471,770026495,770028543,770029567,770030591,770031615,770032127,770032383,770032639,770033663,770034687,770035711,770044927,770045439,770045695,770045951,770046975,770047999,770050047,770051071,770052095,770053119,770053375,770054143,770056447,770056703,770057215,770058239,770059263,770060287,770061311,770063359,770065407,770066431,770067455,770068479,770069503,770070015,770070271,770079743,770080767,770091007,770092031,770093055,770098175,770099199,770100223,770101247,770103295,770104319,770109439,770110463,770111487,770112511,770121727,770122751,770123775,770125823,770126847,770127871,770131967,770132991,770134015,770135039,770140159,770141183,770142207,770151423,770152447,770153471,770154239,770156543,770157567,770160639,770161663,770166271,770166527,770168319,770169855,770170879,770171903,770177023,770178047,770179071,770180095,770182143,770184191,770187263,770188287,770190847,770191359,770202623,770203647,770204671,770205695,770206719,770208767,770209791,770210815,770215935,770216959,770217983,770219007,770221055,770222079,770223103,770224127,770225151,770228223,770229247,770231295,770232319,770233343,770243583,770244607,770245631,770246655,770260991,770262015,770263039,770264063,770268159,770269183,770270207,770271231,770274303,770275327,770280447,770281215,770281471,770287615,770288639,770304511,770305535,770318335,770319359,770325503,770326527,770331647,770332415,770332671,770333695,770338815,770339839,770341887,770350079,770351103,770351615,770352127,770353151,770354175,770355199,770356223,770357247,770367487,770368511,770369535,770370559,770378751,770379775,770384895,770385919,770386943,770398207,770399231,770400255,770401279,770406399,770407423,770408447,770409471,770411519,770412543,770419711,770420735,770429951,770430975,770433023,770433535,770433791,770434047,770435071,770440191,770441215,770447359,770448383,770449407,770450431,770451455,770452479,770453503,770461695,770462719,770463743,770464767,770465791,770466815,770467839,770468863,770471935,770472191,770472959,770475007,770477055,770478079,770479103,770480127,770483199,770484223,770485247,770485759,770486271,770488319,770489343,770490367,770491391,770499583,770500607,770501631,770503679,770504703,770515967,770516991,770518015,770519039,770520063,770521087,770528255,770529279,770530303,770540543,770542591,770549759,770550783,770551807,770552831,770553855,770554879,770563071,770564095,770574335,770577407,770578431,770579455,770580479,770581503,770582527,770585599,770586623,770587647,770588671,770598911,770599935,770608127,770609151,770610175,770611199,770612223,770613247,770617343,770617855,770618111,770618367,770619391,770620415,770621439,770622463,770623487,770626559,770627583,770628607,770629631,770635775,770636799,770641919,770642943,770643455,770643967,770644991,770646015,770648063,770649087,770650111,770651135,770653183,770654207,770655231,770656255,770657279,770658303,770659327,770660351,770661375,770662399,770663423,770664447,770664703,770665215,770665471,770666751,770667007,770667263,770667519,770668543,770669567,770671615,770678783,770679807,770691071,770692095,770693119,770694143,770703359,771227647,771229695,771230719,771237375,771237887,771238911,771239935,771240959,771241215,771241471,771241727,771241983,771245055,771246079,771247103,771248127,771251199,771252223,771256319,771258367,771259391,771260415,771262463,771263487,771264511,771265535,771267583,771272703,771273727,771274751,771275775,771277823,771278847,771279103,771279359,771279871,771295231,771296255,771303423,771304447,771305471,771307007,771307519,771308543,771309567,771310591,771315711,771315967,771316223,771316735,771318783,771319039,771319807,771320831,771321855,771322879,771323903,771325951,771326975,771329023,771330047,771334143,771335167,771337215,771340287,771341311,771348479,771348991,771349503,771351039,771351295,771351551,771352575,771355647,771356671,771360767,771361791,771363839,771364863,771365375,771365887,771369983,771374079,771375103,771376127,771377151,771378175,771384319,771385343,771398655,771399679,771399935,771400447,771400703,771401727,771402751,771403775,771404799,771408895,771409919,771410943,771412991,771415039,771416063,771417087,771418111,771419135,771420159,771421183,771423231,771423487,771423999,771424255,771425279,771426303,771427327,771428351,771430399,771431423,771435519,771436543,771437567,771438591,771439615,771440639,771441407,771441663,771442687,771443711,771445759,771450879,771452927,771453951,771454975,771457023,771458047,771459071,771459327,771459583,771459839,771460095,771482623,771483647,771485695,771486207,771486719,771487743,771488767,771489791,771503103,771504127,771505151,771506175,771507199,771510271,771511295,771535871,771536895,771537919,771538175,771538431,771538687,771538943,771550207,771551231,771554303,771555327,771577855,771578879,771587071,771588095,771588607,771589119,771617791,771618303,771618559,771620863,771627007,771627519,771627775,771628031,771629055,771630079,771631103,771632127,771633151,771680255,771681279,771683327,771684351,771685375,771685631,771685887,771686143,771686399,771718143,771718399,771718655,771719167,771720191,771720447,771720959,771721215,771750911,771751935,771817471,771948543,771952639,771953663,771956735,771964927,771965951,771970303,771970559,771975167,771977215,771981311,771987455,771988479,771989503,771990527,771991551,771997695,772001791,772005631,772005887,772006911,772007935,772008959,772009983,772010751,772014079,772145151,772210687,772276223,772277247,772277759,772278271,772278783,772282367,772282623,772282879,772283391,772283647,772284159,772284415,772284927,772285183,772285439,772285695,772285951,772286975,772287231,772287487,772292095,772292351,772300799,772301311,772301567,772301823,772302847,772303871,772304383,772304895,772305407,772305919,772306431,772306943,772308991,772314367,772315135,772315391,772317183,772321279,772323327,772323583,772324351,772324607,772324863,772325119,772325375,772325887,772326143,772326399,772327423,772327935,772328191,772328447,772329471,772339967,772340223,772340735,772341247,772341759,772407295,772472831,772538367,772603903,772669439,772734975,772800511,772802559,772803583,772803839,772804607,772806655,772808703,772808959,772809471,772809727,772809983,772810239,772810495,772810751,772812799,772814847,772816895,772818943,772820991,772823039,772825087,772827135,772829183,772831231,772833279,772833535,772833791,772834303,772835327,772837375,772839423,772841471,772843007,772843263,772843519,772845567,772847615,772849663,772851711,772852991,772853759,772855807,772857855,772859903,772861951,772863999,772865023,772866047,772870143,772872191,772874239,772876287,772880383,772882431,772884479,772886527,772888575,772890623,772892671,772892927,772893439,772893695,772894719,772896767,772898815,772900863,772902911,772904959,772907007,772909055,772910079,772910591,772911103,772913151,772915199,772917247,772919295,772921599,772921855,772923391,772925439,772927231,772927487,772928511,772929535,772929791,772930047,772931327,772931583,772933631,772935679,772937727,772939775,772941823,772943871,772945919,772947967,772950015,772952063,772952319,772954111,772958207,772958463,772958719,772958975,772959231,772959487,772959743,772959999,772960255,772962303,772966399,772968447,772970495,772972543,772974591,772978687,772980735,772982783,772984831,772986879,772988927,772990975,772993023,772995071,772997119,772999167,773001215,773003263,773005311,773007359,773009407,773011455,773013503,773014527,773015039,773015295,773015551,773017599,773019647,773021695,773023743,773025791,773027839,773031935,773033983,773036031,773038079,773039615,773040127,773040383,773040639,773042175,773044223,773046271,773048319,773050367,773050879,773051135,773051391,773051903,773052159,773052415,773054463,773056511,773058559,773060607,773062655,773066751,773070847,773074943,773079039,773083135,773087231,773088511,773088767,773089535,773089791,773090047,773090303,773090559,773090815,773091071,773091327,773094655,773094911,773095423,773099519,773103615,773107711,773111807,773115903,773116415,773116927,773117951,773124095,773125119,773125375,773126399,773126655,773126911,773127167,773128191,773132287,773136383,773140479,773144575,773148671,773152767,773153791,773154047,773156863,773158143,773158911,773160447,773160703,773165055,773165311,773166079,773168127,773168383,773169151,773173247,773177343,773181439,773185535,773189631,773192191,773192447,773192703,773193727,773197823,773201919,773206015,773210111,773210623,773210879,773211135,773211391,773211647,773211903,773212159,773212671,773212927,773213183,773213695,773214207,773218303,773222399,773226495,773230591,773231615,773232639,773234687,773238783,773242879,773246975,773248511,773248767,773249279,773249535,773249791,773250047,773251071,773255167,773259263,773263359,773267455,773271551,773275647,773277695,773283839,773284095,773284351,773284863,773285887,773286911,773287167,773287423,773287679,773287935,773292031,773296127,773300223,773304319,773308415,773312511,773316607,773318655,773318911,773319167,773319423,773319679,773319935,773320191,773320447,773320703,773321215,773321471,773321983,773322239,773323007,773323263,773324799,773586943,773588991,773590783,773591039,773593087,773595135,773597183,773598207,773599231,773601279,773603327,773605375,773607423,773609471,773611519,773613567,773615615,773617663,773619711,773621759,773623807,773625855,773627903,773629951,773631999,773634047,773636095,773638143,773640191,773642239,773644287,773646335,773646847,773647103,773647359,773647615,773647871,773648383,773648639,773648895,773649151,773650175,773650431,773652479,773653503,773654527,773656575,773658623,773659647,773659903,773660159,773660415,773660671,773662719,773664767,773666815,773668863,773670911,773672959,773675007,773677055,773679103,773681151,773683199,773685247,773687295,773689343,773691391,773695487,773697535,773699583,773701631,773703679,773705727,773707775,773709823,773711871,773712383,773712639,773712895,773713407,773713663,773715967,773718015,773720063,773722111,773724159,773726207,773728255,773730303,773732351,773734399,773736447,773740543,773742591,773744639,773746687,773748735,773750783,773752831,773754879,773756927,773758975,773761023,773763071,773765119,773766143,773766399,773766911,773767167,773769215,773771263,773773311,773775359,773777407,773779455,773783551,773785599,773787647,773789695,773791743,773793791,773795839,773797887,773799935,773800191,773800447,773800703,773800959,773801215,773801471,773801727,773801983,773803007,773804031,773806079,773808127,773810175,773812223,773814271,773816319,773818367,773820415,773822463,773824511,773825279,773825535,773826559,773828607,773830655,773831679,773832191,773832703,773834751,773836799,773838847,773840895,773844991,773847039,773849087,773857279,773865471,773873663,773881855,773890047,773895167,773895935,773896191,773897215,773898239,773906431,773922815,773931007,773931263,773931519,773932031,773932543,773935359,773935615,773937407,773937663,773937919,773938175,773938687,773938943,773939199,773947391,773955583,773963775,773971967,773980159,773988351,773989631,773989887,773990655,773990911,773992191,773992447,773992703,773993215,773993471,773994239,773994495,773995007,773995263,773995519,773996031,773996287,773996543,773996799,773998335,773998591,773999615,774000127,774000639,774001151,774001407,774002943,774003199,774003711,774004223,774004735,774012927,774013439,774013951,774017535,774018047,774021119,774029311,774037503,774045695,774053887,774062079,774070271,774078463,774086655,774094847,774103039,774111231,774119423,774127615,774135807,774139903,774143999,774152191,774160383,774162431,774162943,774163199,774163455,774166527,774168575,774176767,774184959,774193151,774201343,774201599,774201855,774202111,774202367,774202623,774202879,774203391,774203647,774204159,774204415,774204671,774204927,774205439,774205695,774205951,774206207,774206463,774206719,774206975,774207231,774207743,774207999,774208255,774208511,774208767,774209023,774209279,774209535,774217727,774225919,774234111,774242303,774258687,774266879,774275327,774275583,774275839,774278399,774278655,774281983,774282239,774283263,774291455,774299647,774307839,774324223,774332415,774340607,774348799,774356991,774365183,774373375,774389759,774406143,774422527,774438911,774455295,774471679,774488063,774504447,774520831,774537215,774553599,774569983,774586367,774602751,774619135,774651903,774668287,774684671,774701055,774717439,774733823,774750207,774782975,774799359,774815743,774832127,774848511,774864895,774881279,774963199,774995967,775028735,775061503,775094271,775127039,775147519,775148543,775149567,775151615,775159807,775192575,775225343,775258111,775290879,775323647,775356415,775389183,775421951,775487487,775520255,775553023,775557119,775557375,775569407,775569663,775585791,775618559,775651327,775684095,775716863,775749631,775847935,775880703,775913471,775946239,776077311,776208383,776339455,776470527,776601599,776732671,776863743,778043391,778108927,778174463,778239999,778305535,778371071,778388479,778389503,778395647,778436607,778452991,778461183,778462207,778462463,778462719,778462975,778463231,778463487,778463743,778463999,778464255,778465279,778466303,778466815,778467327,778473471,778474495,778475519,778475775,778476031,778476287,778476543,778477055,778477567,778479615,778480127,778480639,778480895,778481151,778481407,778481663,778481919,778482687,778482943,778483199,778483711,778484735,778485247,778485503,778485759,778493951,778495999,778496255,778497279,778497535,778497791,778500095,778500351,778500863,778501119,778501631,778502143,778567679,778633215,778678271,778678527,778698751,778764287,778767871,778768383,778829823,778895359,778960895,779026431,779091967,779223039,779354111,779485183,779616255,779747327,779878399,780009471,780140543,780206079,780271615,780337151,780402687,780468223,780533759,780599295,780664831,780730367,780779519,780795903,780861439,780926975,780992511,781058047,781109759,781110015,781123583,781156351,781172735,781176831,781178879,781186047,781188095,781189119,781320191,781451263,781455359,781459455,781463551,781467647,781475839,781479935,781480191,781480703,781481215,781481471,781483007,781483263,781483519,781483775,781484031,781488127,781496319,781516799,781520895,781524991,781529087,781533183,781535231,781537279,781541375,781541631,781541887,781542143,781542399,781542655,781542911,781543167,781543679,781543935,781544191,781544447,781544703,781544959,781545215,781545471,781549567,781550079,781550335,781550591,781550847,781551359,781551615,781551871,781552639,781553151,781553407,781553663,781557759,781558783,781559807,781560831,781561087,781561343,781561855,781565951,781570047,781574143,781578239,781582335,781590527,781598719,781606911,781631487,781639679,781651967,781654015,781656063,781656319,781656575,781656831,781657087,781658111,781658367,781658623,781658879,781659903,781660159,781662207,781664255,781666303,781668351,781670399,781672447,781674495,781676543,781678591,781680639,781682687,781684735,781686783,781688831,781690879,781692927,781693951,781694719,781694975,781697023,781697279,781697535,781697791,781698559,781698815,781699071,781701119,781703167,781705215,781707263,781709311,781711359,781713407,781844479,781975551,782106623,782254079,782270463,782305535,782305791,782306047,782306303,782309887,782310143,782310399,782311423,782313471,782313727,782313983,782317567,782317823,782318079,782318335,782318591,782318847,782319103,782319359,782319615,782335999,782352383,782354943,782356479,782358527,782359551,782360575,782368767,782369279,782369535,782370559,782370815,782385151,782401535,782417919,782434303,782435839,782446591,782447359,782447871,782448127,782448639,782448895,782449151,782449407,782449663,782450687,782454783,782460927,782465023,782467071,782483455,782499839,782516223,782532607,782548991,782581759,782598143,782630911,782647295,782663679,782671871,782675967,782680063,782696447,782712831,782729215,782737407,782745599,782761983,782893055,783024127,783040511,783048703,783056895,783065087,783073279,783081471,783089663,783106047,783134719,783138815,783142911,783147007,783151103,783153151,783154175,783154687,783157247,783159295,783161343,783163391,783165439,783169535,783171583,783173631,783175679,783179775,783181823,783183871,783185919,783187967,783190015,783190783,783191039,783192063,783194111,783196159,783198207,783202303,783204351,783206399,783208447,783210495,783212543,783216639,783218687,783220735,783222783,783223807,783224063,783224319,783224831,783226879,783230975,783233023,783235071,783237119,783243263,783245311,783247359,783251455,783253503,783253759,783254015,783254271,783254527,783254783,783255039,783255295,783255551,783257599,783259647,783260671,783261695,783263743,783265791,783267839,783269887,783278079,783282175,783286271,783417343,783548415,783679487,783680511,783681535,783683583,783685631,783687679,783688447,783688703,783689727,783691775,783693823,783695871,783697919,783699967,783702015,783704063,783706111,783708159,783710207,783712255,783714303,783718399,783720447,783722495,783723519,783724543,783726591,783728639,783730687,783732735,783734783,783736831,783738879,783740927,783745023,783747071,783749119,783751167,783751423,783751679,783751935,783752191,783752447,783752959,783753215,783755263,783757311,783759359,783763455,783764991,783765247,783765503,783767551,783767807,783768063,783768831,783769599,783771647,783771903,783773695,783775743,783777791,783779839,783781887,783782911,783783935,783784191,783784447,783784959,783785215,783785471,783785983,783788031,783790079,783792127,783792383,783792639,783792895,783793151,783794175,783798271,783800319,783802367,783804415,783806463,783810559,783843327,783876095,783908863,783941631,783974399,784007167,784039935,784072703,784105471,784138239,784171007,784203775,784236543,784237567,784238591,784239615,784240639,784241151,784242175,784242687,784268287,784268799,784269055,784269311,784302079,784334847,784457727,784461823,784463359,784464383,784465919,784596991,784728063,784760831,784793599,784859135,785121279,785252351,785383423,785448959,785514495,785580031,785645567,785711103,785776639,785842175,785907711,785973247,786038783,786104319,786169855,786235391,786300927,786366463,786431999,786563071,786565119,786567167,786569215,786571263,786575359,786577151,786577407,786579455,786581503,786583551,786585599,786587647,786589695,786590719,786591743,786593791,786594047,786594303,786594559,786594815,786595071,786595327,786595583,786595839,786597887,786599935,786601983,786602751,786603007,786603519,786604543,786605055,786605567,786606079,786608127,786610175,786612223,786614271,786616319,786618367,786619391,786619647,786620415,786622463,786624511,786626559,786628607,786630655,786632703,786634751,786636799,786638847,786642943,786644991,786649087,786651135,786655231,786657279,786659327,786661375,786663423,786665471,786667519,786669567,786670847,786671103,786671615,786673663,786675711,786677759,786679807,786681855,786683903,786685951,786687999,786690047,786692095,786694143,786698239,786702335,786703103,786703615,786703871,786704127,786704895,786705151,786705919,786706431,786710527,786714623,786718719,786726911,786729983,786730239,786731007,786731263,786732287,786735103,786739199,786743295,786747391,786751487,786755583,786759679,786771967,786776063,786780159,786784255,786788351,786792447,786796543,786800639,786804735,786808831,786812927,786817023,786821119,786821375,786821887,786822143,786822655,786823167,786823679,786823935,786824191,786824447,786824703,786824959,786825215,786857983,786868223,786890751,786892799,786894847,786896895,786900991,786903039,786904063,786905087,786907135,786909183,786911231,786913279,786915327,786917375,786919423,786921471,786923519,786925567,786927615,786929663,786931711,786933759,786935807,786936319,786936831,786937087,786937855,786939903,786941951,786943999,786946047,786948095,786950143,786952191,786953215,786956287,786968575,786969599,786970623,786972159,786972671,786987007,786988031,786989055,786991103,786995199,786997247,786999295,787001343,787003135,787003391,787005439,787007487,787009535,787010047,787010559,787011583,787013631,787015679,787017727,787019775,787020799,787021823,787031807,787032063,787032831,787033087,787033599,787038207,787038463,787038719,787038975,787039231,787039487,787039743,787039999,787040255,787040511,787054591,787070975,787087359,787095551,787103743,787111935,787115775,787116031,787120127,787128319,787136511,787152895,787154943,787156991,787159039,787161087,787161343,787161599,787161855,787162111,787162367,787162623,787162879,787163135,787165183,787167231,787169279,787171327,787172351,787172863,787173375,787175423,787177471,787179519,787179775,787180031,787180287,787180543,787180799,787181055,787183615,787185663,787187711,787189759,787191807,787192063,787192319,787192575,787192831,787193087,787193343,787193599,787193855,787195903,787197951,787199999,787202047,787206143,787208191,787210239,787212031,787212287,787214335,787216383,787218431,787233791,787234047,787234815,787251199,787267583,787283967,787300351,787316735,787333119,787349503,787365887,787382271,787398655,787415039,787431423,787447807,787464191,787480575,787513343,787546111,787578879,787611647,787644415,787677183,787679231,787681279,787683327,787685375,787687423,787689471,787690751,787691007,787691263,787691519,787692543,787693567,787695615,787701759,787703295,787703807,787705855,787707903,787709951,787711487,787711999,787712255,787713279,787714047,787715071,787715327,787715583,787715839,787716095,787717119,787718143,787718399,787724031,787724287,787724799,787725055,787725311,787728383,787728639,787728895,787729407,787729663,787730175,787730431,787730687,787730943,787731711,787731967,787732479,787732735,787732991,787733503,787734271,787734527,787735039,787735551,787736063,787736319,787736575,787737599,787737855,787738111,787738367,787739647,787739903,787740159,787740927,787741183,787741439,787741695,787742719,787747327,787747583,787750911,787755007,787759103,787767295,787767551,787767807,787768319,787771135,787771391,787772159,787772415,787773439,787775231,787775487,787808255,787841023,787843071,787845119,787847167,787849215,787851263,787853311,787855359,787857407,787859455,787861503,787863551,787865599,787867647,787869695,787870975,787871743,787873791,787876351,787876607,787881983,787883007,787890175,787890431,787890687,787892223,787892735,787900415,787900671,787900927,787901183,787902463,787902719,787905023,787905535,787906559,787939327,787955711,787959807,787961855,787972095,787974143,787975167,787975423,787975679,787976191,787980287,787988479,787996671,788004863,788005375,788006399,788006911,788007935,788008447,788008959,788009471,788009983,788010495,788011007,788011519,788012031,788012543,788013055,788021247,788029439,788037631,788045823,788054015,788062207,788070399,788078591,788086783,788094975,788095231,788095487,788097023,788098047,788098559,788098815,788099071,788100095,788101119,788103167,788111359,788119551,788127743,788135935,788144127,788160511,788168703,788176895,788185087,788193279,788201471,788203519,788204543,788209663,788217855,788226047,788234239,788242431,788250623,788258815,788259071,788259327,788259583,788259839,788260095,788260863,788261375,788261631,788261887,788262143,788262399,788262655,788262911,788265215,788265727,788265983,788267007,788267519,788267775,788268543,788268799,788269055,788271103,788271615,788271871,788272639,788273151,788274943,788275199,788279295,788283391,788287487,788291583,788295679,788299775,788303871,788307967,788312063,788314111,788314367,788314623,788315135,788316159,788319487,788319743,788320255,788324351,788328447,788332543,788336639,788340479,788340735,788344831,788353023,788357119,788361215,788364799,788365055,788365311,788365567,788365823,788366079,788366591,788366847,788367103,788367615,788367871,788368383,788368639,788368895,788369151,788369407,788373503,788377599,788381695,788385791,788389887,788393983,788398079,788400127,788402175,788406271,788410367,788412415,788414463,788416511,788418559,788420607,788421631,788422143,788422655,788424703,788424959,788425215,788425471,788425727,788425983,788426239,788426495,788428799,788430847,788432895,788434943,788436991,788439039,788441087,788443135,788445183,788451327,788453375,788455423,788457471,788459519,788461567,788463615,788465663,788467711,788469759,788471807,788473855,788475903,788477951,788478207,788478463,788479999,788482047,788484095,788486143,788488191,788490239,788492287,788494847,788495103,788495615,788495871,788496383,788498431,788500479,788502527,788504575,788506623,788508671,788510719,788511231,788512511,788512767,788514815,788516863,788518911,788520959,788523007,788525055,788527103,788529151,789053439,789184511,789250047,789315583,789512191,789577727,790429695,790626303,791343103,791343359,791343615,791343871,791937023,792002559,792068095,792199167,792330239,792723455,793247743,793313279,793378815,793395199,793411583,793444351,793575423,793576191,793576447,793576703,793577471,793640959,793706495,793710591,793714687,793718783,793722879,793726975,794329087,794361855,794378239,794378495,794378751,794379007,794380031,794380287,794380543,794381055,794382335,794382591,794382847,794383359,794383615,794383871,794384383,794384639,794385151,794385407,794386431,794386687,794386943,794387199,794387455,794387967,794388223,794388479,794388735,794390015,794390271,794390527,794391807,794392575,794392831,794393087,794393343,794393855,794394111,794427391,794460159,794492927,794501119,794509311,794517503,794525695,794558463,796917759,797179903,803930367,803930623,803930879,803931135,803931391,803931647,803932159,803932415,803932671,803933183,803934463,803934719,803934975,803935231,803935487,803935743,803935999,803936511,803936767,803937023,803937279,803937535,803937791,803995647,804061183,804061439,804061695,804062463,804062719,804062975,804063487,804063743,804063999,804064255,804064767,804065023,804065279,804067071,804067327,804067583,804067839,804068095,804068351,804068607,804068863,804069375,804069631,804070399,804070655,804071167,804072191,804072447,804072703,804072959,804073471,804073727,804074239,804074495,804074751,804075007,804075775,804076031,804076543,804076799,804077055,804077311,804077567,804077823,804078591,804079103,804079359,804079615,804080127,804080383,804080895,804081151,804082431,804083199,804084223,804084479,804084991,804085247,804085503,804086271,804086527,804088063,804088319,804088831,804089343,804089599,804089855,804090111,804090623,804091391,804092159,804093439,804093695,804093951,804094207,804095999,804096255,804096511,804096767,804097023,804097279,804097535,804097791,804098303,804098815,804099327,804099583,804099839,804100095,804101887,804102143,804102399,804102655,804102911,804103167,804103423,804104191,804104447,804104703,804104959,804105471,804105727,804105983,804106239,804106495,804107263,804107519,804108031,804108799,804109055,804109567,804109823,804110079,804110335,804111615,804111871,804112127,804112383,804113663,804113919,804114431,804114687,804114943,804116735,804117759,804119039,804119807,804120063,804120319,804120575,804122111,804122367,804124159,804124415,804125183,804125439,804125695,804126463,804126719,804192255,804257791,804323327,804388863,804454399,804454655,804454911,804455935,804456191,804457727,804457983,804459775,804460031,804465151,804465407,804465663,804465919,804467199,804467455,804467711,804467967,804468735,804468991,804469503,804469759,804470015,804470527,804470783,804471039,804471551,804472063,804472319,804473087,804473343,804473855,804474111,804474623,804474879,804475391,804475647,804477951,804478207,804479231,804479487,804481023,804481279,804481791,804482047,804486911,804487167,804487935,804488191,804488447,804488959,804489215,804489471,804491519,804492031,804495615,804496127,804498175,804498431,804498687,804498943,804505599,804505855,804506879,804507135,804516095,804516351,804519935,804585471,804601855,804618239,804651007,804651263,804651519,804652031,804652287,804652799,804653055,804654079,804654591,804654847,804655103,804655359,804657663,804658175,804658431,804658687,804658943,804659199,804660223,804660991,804661247,804661503,804662015,804662271,804662527,804662783,804663039,804663295,804663551,804664063,804664319,804664831,804665343,804665855,804666111,804666367,804666879,804667391,804667647,804667903,804668159,804668415,804669439,804669695,804669951,804670207,804670463,804670719,804671487,804671999,804672511,804672767,804673535,804674047,804674303,804674559,804676607,804676863,804677119,804677375,804678399,804678655,804679167,804679423,804679679,804680191,804680447,804681727,804681983,804682239,804682495,804682751,804683007,804683263,804684287,804684543,804684799,804685823,804687871,804688127,804688383,804688639,804688895,804689407,804689663,804689919,804690431,804690687,804690943,804691199,804691455,804691967,804696063,804696319,804696575,804700159,804700415,804700671,804700927,804701183,804701695,804701951,804702207,804716543,804782079,804913151,804978687,805076991,805109759,805208063,805224447,805240831,817889279,819855359,822083583,822084607,822085631,822087679,822089727,822090751,822091775,822097919,822098175,822098431,822098687,822099199,822099711,822099967,822116351,822124543,822126591,822132735,822134783,822140927,822149119,822214655,822345727,822407423,822407935,822408447,822411263,822607871,822870015,823001087,823132159,824180735,825229311,825360383,825361407,825361919,825362431,825363455,825364479,825376767,825393151,825409535,825419775,825420799,825421823,825425919,825434111,825439743,825440255,825441791,825442303,825448703,825448959,825449215,825450239,825450495,825451263,825452031,825452287,825458687,825470975,825491455,825753599,826277887,828375039,829423615,830210047,830341119,830406655,830472191,830472447,830472703,830474239,830475263,830476287,830480383,830488575,830496767,830498815,830499839,830500863,830504959,830513151,830517247,830521343,830529535,830537727,830603263,830734335,830996479,831258623,831389695,831512575,831513599,831514623,831515391,831515647,831516671,831518719,831519743,831520767,832045055,832307199,832308223,832311295,832312319,832313343,832315391,832319487,832320511,832321535,832323583,832348159,832372735,832438271,832569343,833617919,835190783,835715071,835977215,836042751,836046847,836048383,836048895,836050943,836059135,836075519,836501503,836763647,837025791,837287935,837550079,837566463,837599231,837603327,837604351,837605375,837607423,837611519,837615615,837681151,837689343,837697535,837746687,837763071,837779455,837795839,837812223,838074367,838139903,838205439,838238207,838262783,838270975,838336511,838467583,838729727,838795263,838813695,838814207,838814463,838814719,838835967,838836223,838849023,838849535,838860799,839074815,839080959,839096831,839097343,839103487,839104511,839319807,839320575,839321087,839321599,839323135,839323391,839323903,839324159,839325183,839326207,839326719,839327231,839327743,839328255,839328767,839329279,839329791,839330303,839330815,839331327,839331839,839332351,839333119,839333375,839333631,839333887,839334655,839334911,839335167,839335423,839335679,839335935,839340543,839340799,839341311,839341567,839359487,839359999,839360511,839364607,839365631,839379967,839381503,839383039,839383551,839384063,839384575,839384831,840253439,840255487,840257535,840261631,840269823,840273919,840278015,840282111,840294399,840298495,840336127,840336383,840342015,840342271,840343039,840343295,840345343,840345599,840346367,840346623,840350463,840350975,840351231,840351487,840865791,840866047,840927999,840928255,840933631,840933887,840951807,840953343,840953599,840953855,840954111,840954367,840955903,840956927,842563839,842564095,842564351,842565375,842565631,842567679,842568447,842570495,842570751,842571007,842571263,842573311,842573567,842574335,842574591,842574847,842575103,842575615,842576127,842576895,842577151,842577407,842577663,842577919,842578175,842578431,842579455,842579967,842580223,842580735,842581247,842581503,842581759,842583807,842584319,842584575,842584831,842585087,842585343,842585599,842586111,842586879,842587135,842588927,842589183,842589695,842589951,842590207,842590975,842591487,842591743,842591999,842592255,842592767,842593535,842593791,842594303,842594559,842594815,842595071,842595327,842595583,842595839,842596095,842596351,842765311,842765567,842792959,842924031,843055103,843644927,844890111,844988415,844996607,844996863,844997887,844998143,844998399,844998655,845283327,845545471,846332671,846333951,846334719,846334975,846335231,846335487,846335999,846336255,846336511,846336767,846337023,846338047,846338303,846339071,846339583,846340351,846340607,846342911,846343167,846343423,846344191,846344447,846345215,846345471,846345727,846345983,846346239,846347007,846347263,846347519,846348031,846349311,846350079,846350335,846350591,846350847,846356991,846357247,846360063,846360319,846361599,846362111,846370815,846372863,846373887,846374911,846375935,846376959,846377215,846377727,846378495,846379007,846379263,846379519,846379775,846381055,846382079,846382335,846382591,846382847,846383103,846383359,846383615,846383871,846384895,846385151,846385663,846385919,846395647,846395903,846396159,846396415,846419199,846419455,846427647,846428159,846428927,846429183,846442495,846446591,846529535,846529791,846531583,846531839,846545151,846545407,846561279,846594047,846630655,846630911,846650111,846650367,846651647,846651903,846655999,846656255,846658559,846658815,846659583,846725119,853622015,853622271,855638015,855658495,855662591,855664639,855703551,855834623,855900159,855932927,856031231,856162303,856207359,856227839,856293375,856294143,856294399,856294655,856295167,856295935,856296703,856296959,856408063,856424447,856451071,856453119,856489983,856539135,856621055,856653823,856686591,856817663,856883199,856948735,857079807,857210879,857735167,857800703,857866239,857997311,858062847,858128383,858144767,858148351,858148607,858150911,858151167,858151679,858151935,858152703,858153471,858155007,858155263,858156543,858156799,858159871,858160127,858161151,858163199,858163711,858163967,858164223,858164479,858164735,858167807,858168063,858169343,858193919,858259455,858324991,858521599,858783743,858980351,859111423,859162623,859164671,859570175,859635711,860094463,860127231,860127487,860127999,860133119,860133375,860135423,860137983,860138239,860140287,860140543,860141567,860142079,860143615,860151807,860159999,860225535,860291071,860356607,860487679,860553215,860561407,860564479,860564735,860565247,860565503,860569599,860573951,860574207,860574975,860575231,860575487,860575743,860577791,860590079,860591103,860591359,860591615,860591871,860592639,860593151,860593663,860593919,860594175,860598271,860618751,860684287,860684543,860684799,860692479,860696575,860696831,860699647,860699903,860700159,860700415,860700671,860702207,860703999,860704255,860704767,860705023,860705791,860707071,860708095,860708351,860709375,860709631,860709887,860713471,860713727,860715775,860716031,860716799,860741631,860742399,860749823,860815359,860848127,860880895,861077503,861081599,861081855,861083135,861083391,861109759,861110015,861110271,861114367,861114623,861116927,861117439,861118463,861119487,861120511,861120767,861123071,861123327,861123839,861124095,861127423,861127679,861127935,861128191,861128447,861128703,861129215,861129471,861130239,861130495,861130751,861131263,861131519,861131775,861137407,861137919,861138943,861139199,861139455,861139711,861143039,861405183,861470719,861503487,861536255,861601791,861624575,861624831,861646079,861646335,861652991,861653247,861660415,861660671,861667327,861929471,861995007,862191615,862322687,862388223,862420991,862437375,862439423,862453759,862470143,862502911,862541823,862543871,862584831,862650367,862695423,862699519,862703615,862707711,862715903,862781439,862846975,862912511,862978047,863043583,863174655,863240191,863305727,863371263,863502335,863567871,863633407,863764479,863830015,863895551,863961087,864092159,864157695,864223231,864288767,864419839,864485375,864550911,864649215,864665599,864714751,864724991,864727039,864731135,864739327,864743423,864747519,864813055,864919551,864927743,865009663,865042431,865075199,865140735,865173503,865206271,865468415,865730559,865796095,865861631,865992703,866025471,866058239,866115583,866123775,866189311,866222079,866287615,866288639,866289407,866289663,866291711,866292735,866293503,866293759,866295807,866299903,866300927,866301183,866301439,866301951,866302975,866303487,866303743,866303999,866306047,866308095,866310143,866312191,866320383,866320895,866321151,866321407,866321919,866322431,866324479,866328063,866328575,866329599,866330623,866331647,866332671,866333695,866342911,866343167,866344191,866344447,866360831,866361343,866385919,866516991,866648063,866779135,866844671,866910207,867041279,867172351,867303423,867330559,867330815,867340287,867340543,867358463,867358719,867367679,867367935,867368191,867368447,867368959,867401727,867434495,867565567,867696639,867827711,867958783,868089855,868220927,868351999,868417535,868439807,868440063,868441343,868441599,868441855,868442367,868442623,868442879,868445183,868445439,868446975,868447231,868448255,868449791,868450303,868453887,868454143,868461567,868462335,868464127,868464383,868464639,868465151,868465407,868465663,868467199,868467455,868467711,868467967,868471807,868472063,868472319,868472575,868483071,868614143,868679679,868744703,868745215,868876287,869007359,869138431,869269503,869400575,869406719,869406975,869443583,869443839,869444095,869445375,869445631,869453311,869453567,869466111,869531647,869662719,869793791,869924863,869990399,870055935,870187007,870251519,870251775,870252543,870318079,870580223,870711295,870842367,870973439,871038975,871104511,871235583,871366655,871432191,871628799,871759871,871890943,872022015,872087551,872153087,872284159,872288255,872288511,872303103,872303359,872308223,872308479,872310783,872311039,872353535,872353791,872386047,872386303,872388607,872388863,872409087,872409343,872410879,872411135,872415231,873463807,873725951,874250239,874381311,874511103,874511359,874512383,875429887,875432191,875432447,875432703,875432959,875433215,875433471,875433727,875433983,875434751,875435007,875435263,875435775,875436031,875436287,875436543,875436799,875438591,875438847,875439103,875439359,875439615,875439871,875440127,875440383,875440639,875440895,875441151,875441407,875442175,875442431,875442687,875442943,875443199,875443455,875443711,875443967,875444223,875444479,875444735,875444991,875445503,875445759,875446015,875446271,875454463,875473919,875474943,875476991,875478015,875479039,875485183,875486207,875487231,875491327,875492351,875495423,875560959,875823103,876085247,876150783,876347391,876412927,876478463,876740607,876806143,876871679,877002751,877264895,877330431,877395967,877527039,877658111,877920255,877920767,877924351,877927935,877928191,877928703,877928959,877929215,877929471,877929983,877930751,877931007,877933055,877933567,877935359,877938431,877938943,877939199,877941759,877942015,877942271,877942783,877944831,877946879,877948927,877950975,877954047,877954559,877955071,877957119,877957375,877958143,877958399,877958655,877959679,877960703,877962751,877963263,877963775,877966591,877967871,877968639,877968895,877969407,877969663,877969919,877971455,877972991,877974527,877975551,877976319,877976575,877976831,877977343,877977599,877979135,877982207,877982463,877982719,877982975,877983487,877983743,877984511,877984767,877985279,877985791,877986303,877986815,877987839,877988095,877988351,877988863,877989119,877991423,877992959,877993983,877994495,877994751,877995007,877995519,877996543,877996799,877997055,877997311,877997567,877999103,877999871,878000639,878001407,878001663,878001919,878002175,878003711,878004223,878009343,878009855,878011135,878011391,878011647,878012415,878012927,878014207,878014463,878015487,878015999,878016511,878017535,878019071,878021631,878022655,878024703,878026751,878028287,878028799,878029055,878029823,878031359,878031871,878032127,878032383,878032639,878032895,878034687,878035967,878036991,878037503,878039039,878040575,878042111,878043135,878043647,878043903,878045183,878045695,878045951,878046463,878046719,878048255,878048511,878049023,878049791,878051327,878444543,878477311,878510079,878510335,878510591,878510847,878511359,878511615,878512127,878513151,878514175,878514943,878515199,878515455,878515711,878515967,878516223,878519039,878519295,878519551,878519807,878520319,878520575,878521343,878521599,878521855,878522367,878522879,878524415,878524671,878524927,878525183,878526207,878526463,878526975,878527231,878527487,878527743,878527999,878528511,878529023,878529279,878529535,878529791,878530303,878530559,878530815,878531071,878531583,878533887,878534143,878534399,878534655,878534911,878535167,878535679,878536191,878538495,878538751,878539263,878539519,878540031,878544895,878545151,878545407,878545919,878546175,878546431,878547455,878547711,878547967,878548223,878548479,878548735,878548991,878550015,878551039,878567423,878568447,878572031,878572287,878572543,878572799,878573055,878573567,878573823,878574079,878574591,878575359,878575615,878576895,878577151,878577407,878577663,878577919,878578431,878578687,878578943,878579199,878579455,878579711,878579967,878580223,878580479,878580735,878580991,878581503,878581759,878582783,878583295,878583551,878583807,878591999,878593023,878593279,878593535,878596095,878604287,878605311,878610431,878612479,878612991,878613247,878613503,878614527,878616575,878620671,878625791,878626047,878626815,878627071,878627839,878628351,878628863,878630911,878632959,878648831,878649343,878649855,878650111,878650367,878651391,878655487,878656511,878657023,878657535,878666751,878667775,878668799,878669567,878669823,878673919,878675967,878676735,878677503,878678271,878679039,878679807,878680575,878681343,878682111,878682879,878683647,878684415,878685183,878685951,878686463,878687231,878687487,878688255,878689023,878689791,878690047,878690303,878694399,878695423,878696447,878698495,878698751,878699007,878699263,878699519,878699775,878700031,878701311,878701567,878702335,878702591,878702847,878703103,878703359,878703615,878703871,878704639,878704895,878705151,878705407,878705663,878705919,878706175,878706431,878719743,878720255,878729215,878729471,878749439,878749695,878753535,878753791,878758143,878758399,878759935,878760447,878761215,878761983,878763775,878764287,878765567,878766079,878769407,878769663,878772223,878772991,878773247,878779391,878779647,878780159,878780415,878781695,878781951,878782207,878782719,878782975,878783231,878784767,878785023,878785279,878785535,878785791,878786559,878787071,878787583,878788095,878788351,878788607,878788863,878789119,878789631,878790143,878790655,878790911,878791935,878792191,878792703,878793215,878793471,878793727,878794239,878794495,878794751,878795007,878795263,878795775,878796031,878796287,878796543,878796799,878804991,878805247,878806015,878806271,878806527,878806783,878807551,878807807,878808063,878808319,878808831,878809343,878809599,878809855,878810111,878810367,878810623,878810879,878811391,878811647,878811903,878812415,878813183,878813439,878813695,878814207,878814463,878815231,878815487,878815743,878816511,878816767,878817023,878817279,878817535,878817791,878818303,878818559,878818815,878819071,878819327,878819583,878819839,878820095,878820351,878820607,878821119,878821375,878822911,878823423,878823935,878824447,878824703,878824959,878825215,878825471,878826495,878826751,878827007,878827263,878827519,878828031,878828287,878828799,878829311,878829823,878830079,878830335,878830591,878830847,878831359,878831615,878831871,878832383,878832639,878832895,878833407,878833663,878833919,878834431,878834687,878834943,878835711,878836735,878836991,878837247,878837503,878837759,878841855,878843903,878845951,878846207,878846719,878846975,878847231,878847487,878847743,878847999,878848255,878848511,878848767,878849791,878850047,878850559,878850815,878851071,878851327,878851583,878852095,878852607,878853375,878853887,878854399,878854655,878854911,878855167,878855679,878856191,878857215,878857471,878857727,878857983,878859263,878859519,878859775,878860543,878860799,878861055,878862079,878862335,878862847,878863103,878863359,878864127,878864383,878864639,878864895,878865151,878865407,878865663,878865919,878866175,878866431,878867455,878867711,878868991,878869503,878869759,878870015,878870271,878870527,878874623,878874879,878875135,878875647,878875903,878876159,878876415,878876671,878876927,878877183,878877439,878877951,878878975,878879487,878879999,878880255,878880767,878881023,878881279,878881535,878882047,878882559,878882815,878883071,878883839,878884095,878884351,878884863,878885119,878885887,878886143,878886399,878886655,878886911,878887423,878887679,878887935,878888959,878889215,878889471,878889727,878890239,878890495,878890751,878891007,878891263,878891519,878891775,878892031,878892287,878892543,878892799,878893055,878893311,878893567,878893823,878894335,878894591,878895359,878895615,878895871,878896127,878896383,878896639,878896895,878897151,878897407,878897663,878897919,878898175,878898687,878898943,878899455,878899711,878900479,878900735,878900991,878901247,878901503,878902015,878902271,878902783,878903039,878903295,878968831,878969087,878969599,878970111,878970367,878970623,878970879,878971135,878971391,878971647,878971903,878972159,878972415,878972671,878973183,878973439,878973695,878973951,878974207,878974463,878974719,879001855,879002111,879003135,879003391,879004671,879004927,879005951,879006463,879007231,879007487,879010815,879011071,879013375,879013631,879013887,879014399,879014911,879015423,879015679,879015935,879016191,879016703,879017215,879017727,879018239,879018751,879019263,879019519,879019775,879020031,879020287,879020543,879020799,879021055,879021567,879021823,879022079,879022335,879022591,879023103,879023615,879024127,879024383,879024639,879025151,879025407,879025919,879026175,879026431,879026943,879027455,879027967,879028223,879028735,879029759,879030271,879051007,879052031,879053311,879055871,879056127,879056895,879057407,879058687,879060735,879060991,879062015,879065855,879067135,879068415,879069695,879069951,879070719,879071231,879071999,879072511,879073535,879074559,879074815,879075071,879075327,879076351,879077375,879078399,879079423,879079679,879080703,879081215,879081727,879082751,879083775,879084287,879084799,879085823,879091711,879091967,879092735,879093247,879093759,879099903,879100159,879100927,879101183,879101439,879101951,879102207,879102719,879102975,879103231,879103487,879103743,879103999,879104255,879104511,879104767,879105023,879105279,879105791,879106047,879106303,879136767,879137279,879137535,879138047,879140863,879141119,879141375,879141887,879142143,879142399,879142655,879142911,879143679,879143935,879144447,879144703,879145215,879145727,879146239,879146495,879146751,879147263,879147519,879149055,879149311,879149567,879149823,879150591,879151103,879151615,879152127,879170047,879170559,879170815,879171327,879173631,879173887,879174143,879174655,879174911,879175423,879175679,879176447,879176703,879177215,879177471,879177983,879178495,879179007,879179263,879179519,879180031,879180287,879181823,879182079,879182335,879182591,879183359,879183871,879184383,879184895,879199999,879200255,879202303,879202559,879202815,879203327,879206399,879206655,879206911,879207423,879207679,879208191,879208447,879209215,879209471,879209983,879210239,879210751,879211263,879211775,879212031,879212287,879212799,879213055,879214591,879214847,879215103,879215359,879216127,879216639,879217151,879217663,879233023,879233535,879233791,879234559,879235071,879235327,879235583,879237631,879238143,879238655,879240447,879240703,879241215,879241471,879242239,879242495,879243007,879243263,879243519,879243775,879244031,879244543,879244799,879245055,879245567,879247615,879247871,879250431,879250687,879251967,879252223,879252735,879253247,879253759,879254271,879257855,879258111,879262463,879262975,879268863,879269119,879269375,879269631,879269887,879296511,879296767,879297279,879297535,879297791,879298047,879298559,879298815,879299327,879299583,879299839,879300095,879300351,879300863,879301119,879301375,879301887,879302143,879302399,879302655,879303167,879303423,879304191,879304703,879305983,879306239,879306751,879307007,879307519,879308287,879308543,879309055,879309567,879310591,879311103,879311615,879312127,879312383,879312895,879329279,879329535,879329791,879330559,879331327,879331583,879331839,879332095,879332351,879332607,879332863,879333375,879333631,879333887,879334143,879334399,879334655,879335167,879335423,879335679,879336447,879336703,879336959,879337215,879337471,879338495,879338751,879339263,879339775,879340031,879340287,879340543,879341055,879341823,879342079,879342591,879342847,879343103,879343615,879343871,879344383,879344639,879344895,879345151,879345407,879345663,879346175,879346687,879347199,879347711,879348479,879348735,879348991,879350015,879350271,879350527,879350783,879351295,879351551,879352063,879352319,879352831,879353087,879353855,879354367,879354879,879355391,879355647,879355903,879356159,879356671,879357183,879357695,879358207,879358463,879358719,879358975,879359231,879359487,879359743,879360255,879360767,879361535,879362047,879427583,879428351,879428607,879428863,879484927,879485183,879485951,879486207,879487999,879488255,879488511,879488767,879489023,879489279,879489535,879489791,879490047,879490303,879492095,879492351,879492607,879492863,879495935,879496191,879499263,879501311,879502335,879503359,879503871,879504383,879504895,879505407,879505919,879506431,879506943,879507455,879509503,879510527,879511039,879511551,879511807,879512063,879512319,879512575,879512831,879513087,879513599,879513855,879514111,879514367,879514623,879514879,879515135,879515391,879515647,879515903,879516159,879516415,879516671,879516927,879517183,879517439,879517695,879517951,879518207,879518463,879519231,879520767,879521535,879522047,879522559,879522815,879524095,879524351,879524607,879525119,879525375,879525631,879525887,879526143,879526399,879526655,879527167,879527423,879527935,879528191,879528703,879529215,879529471,879529983,879530239,879530495,879530751,879531007,879531263,879536127,879536895,879537663,879538431,879538687,879538943,879539199,879539455,879539967,879540223,879540479,879540991,879541247,879541503,879541759,879542015,879542271,879542527,879542783,879543039,879543295,879543551,879543807,879544063,879544319,879544575,879544831,879545343,879545855,879546367,879549439,879549951,879550463,879550975,879551487,879551999,879552511,879553023,879553535,879554559,879556607,879565823,879569919,879571967,879572991,879576063,879578111,879579135,879579647,879580159,879580671,879581183,879582207,879584255,879584767,879585791,879586303,879587327,879589375,879590399,879591423,879592447,879593471,879595519,879596031,879596543,879597055,879598079,879598591,879599615,879600639,879600895,879624191,879624447,879624959,879625215,879625471,879625727,879626239,879626495,879626751,879627007,879627263,879627775,879628031,879628287,879628543,879628799,879629055,879629311,879629567,879629823,879738879,879739135,879739391,879739647,879739903,879740159,879740671,879740927,879741183,879741439,879741951,879742207,879742463,879742719,879742975,879743231,879743743,879747071,879747327,879747583,879747839,879748095,879748351,879748863,879749119,879749631,879749887,879750143,879750399,879750911,879751167,879751423,879751679,879751935,879752191,879752447,879752959,879753215,879753983,879754239,879754495,879754751,879755263,879757055,879757311,879758847,879759359,879759615,879760383,879760895,879761151,879763455,879763711,879765503,879767551,879768319,879768575,879768831,879769087,879769343,879772415,879772671,879773951,879774463,879776511,879776767,879777791,879778815,879780095,879780863,879781119,879781375,879781631,879781887,879783423,879783679,879785471,879785727,879786751,879787007,879787263,879787519,879787775,879788543,879789055,879789823,879790335,879790847,879792127,879796223,879796479,879796735,879796991,879797247,879798271,879799295,879800319,879803391,879803903,879804159,879804415,879804671,879804927,879805695,879805951,879806463,879807999,879808255,879808511,879808767,879809535,879809791,879810559,879812607,879813631,879813887,879814143,879814655,879814911,879815167,879815679,879815935,879816447,879816703,879820799,879821055,879821311,879821567,879822079,879822335,879822591,879822847,879823103,879823359,879823871,879824127,879824383,879824639,879824895,879828991,879829247,879830271,879831039,879837183,879837439,879837695,879837951,879838463,879838719,879839231,879840255,879840767,879841535,879842047,879842303,879842559,879843071,879843327,879844351,879845375,879846655,879846911,879847167,879847423,879847679,879847935,879848447,879848703,879848959,879849471,879853567,879853823,879854079,879854335,879854591,879854847,879855103,879855359,879855615,879857663,879859711,879859967,879860223,879860735,879861247,879861759,879871743,879871999,879873279,879873535,879878143,879886335,879888383,879890431,879892479,879894527,879896575,879897599,879899647,879900159,879901183,879902207,879904767,879905791,879906815,879907839,879910911,879912959,879915007,879915519,879916031,879917055,879917311,879927295,879929343,879935487,879935999,879938559,879939071,879939839,879940095,879941119,879941631,879942655,879943679,879943935,879944191,879944447,879944703,879944959,879945215,879945471,879945727,879945983,879946239,879946495,879946751,879947007,879947263,879947519,879947775,879948031,879948543,879948799,879949055,879949823,879950847,879951871,879954943,879960063,879961087,879963647,879963903,879964159,879976447,879976703,879976959,879977471,879979007,879980543,879981055,879981311,879984639,879987711,880009727,880010751,880012031,880012799,880013311,880013823,880014335,880015103,880015359,880066559,880066815,880067071,880067327,880067583,880067839,880068095,880068351,880068863,880069119,880069375,880069631,880070399,880070911,880072191,880072447,880074495,880074751,880200703,880200959,880201983,880202239,880203007,880203519,880204799,880205055,880205567,880205823,880206335,880206591,880207103,880207359,880212223,880212479,880212735,880213247,880214783,880215039,880216831,880217087,880246783,880254975,880261119,880262143,880263167,880264191,880266495,880266751,880267775,880268287,880269311,880271359,880275455,880277503,880277759,880278015,880312319,880314367,880316415,880318463,880319487,880319743,880319999,880320511,880328703,880332799,880336895,880340991,880345087,880347135,880348927,880349183,880351231,880353279,880355327,880357375,880361471,880365567,880367103,880367615,880370687,880372223,880373759,880374783,880376319,880377855,880383999,880387583,880387839,880388095,880389119,880390655,880391679,880391935,880392191,880394239,880398335,880415743,880416767,880417791,880418815,880419839,880420863,880421887,880422911,880423935,880424959,880429055,880435199,880441343,880447487,880448511,880460799,880462847,880464895,880466943,880468991,880470015,880471039,880473087,880473343,880477695,880477951,880478207,880478719,880479743,880480255,880480511,880480767,880481023,880481279,880481535,880481791,880482559,880483071,880483327,880510207,880510975,880512255,880513023,880513791,880514303,880514815,880515327,880515839,880516351,880516863,880517119,880518143,880518399,880519167,880520447,880520959,880521727,880522495,880523007,880523519,880526079,880526335,880526847,880527103,880527359,880527615,880533503,880533759,880534015,880537599,880537855,880538111,880538367,880538623,880538879,880539135,880540671,880540927,880541183,880541439,880541695,880543743,880545791,880548863,880549119,880549375,880549887,880553983,880556031,880557567,880557823,880558079,880574463,880574975,880575231,880575999,880576511,880577023,880577279,880577791,880578047,880578303,880579583,880580351,880581119,880581887,880582655,880584447,880584703,880584959,880585471,880585727,880585983,880586239,880586495,880586751,880587007,880587263,880587519,880587775,880588799,880589567,880589823,880591103,880591615,880591871,880592127,880592383,880592639,880592895,880593407,880593663,880597759,880598015,880598271,880598527,880600063,880600319,880600831,880601087,880601343,880601599,880601855,880602111,880602367,880602623,880602879,880603135,880603391,880603903,880604159,880604415,880604671,880604927,880605183,880605439,880605951,880606207,880606463,880606719,880606975,880642559,880643071,880643583,880727807,880728063,880731647,880731903,880733951,880734207,880765695,880765951,880770815,880771071,880807935,880808191,880808447,880809471,880809727,880809983,880811007,880811263,880861183,880869375,880872191,880872447,880874751,880875007,880876543,880877567,880878079,880878591,880881663,880885759,880902143,880906239,880908287,880934911,881065983,881330175,881332223,881332735,881333759,881334271,881334527,881334783,881335039,881335295,881335551,881336063,881336319,881344511,881360895,881377279,881410047,881459199,881475583,881491967,881524735,881557503,881573887,881590271,881639423,881655807,881672191,881737727,881754111,881770495,881803263,881819647,881836031,881836543,881836799,881837055,881837311,881837823,881838591,881838847,881839871,881840127,881840383,881840639,881840895,881841919,881842687,881843199,881843455,881844223,881859327,881859583,881868799,881876991,881903871,881904127,881905663,881905919,881906175,881906431,881906687,881906943,881908223,881908479,881909759,881910015,881910271,881910783,881911039,882016255,882049023,882065407,882073599,882081791,882130943,882147327,882163711,882180095,882196479,882212863,882327551,882343935,882573311,882581503,882589695,882597887,882606079,882638847,882647039,882655231,882679807,882687999,882704383,882720767,882769919,882802687,882810879,883097599,883163135,883228671,883294207,883359743,883490815,883556351,883687423,883752959,883818495,883884031,883916799,883933183,884080639,884113407,884146175,884441087,884457471,884473855,884506623,884518143,884518399,884518655,884572159,884588543,884670463,884719615,884735999,884850687,884867071,884998143,885522431,886046719,886571007,886702079,886734847,886767615,886772991,886775807,886778879,886779903,886781951,886783487,886785023,886786047,886787071,886799359,886802431,886803455,886803711,886804479,886806015,886807551,886809087,886809599,886810623,886811647,886812671,886813695,886816767,886817535,886819327,886820863,886821887,886823423,886823679,886823935,886832639,886832895,886833151,886964223,886996991,886997247,886997503,886998015,886998783,886999039,887001087,887003903,887004159,887007999,887008255,887009279,887013375,887016191,887016447,887017215,887017471,887018239,887018495,887020799,887021055,887021311,887021567,887023103,887023359,887023615,887024127,887024639,887026431,887026687,887026943,887029759,887078911,887080191,887080447,887083007,887085055,887091967,887092223,887195647,887195903,887196415,887196927,887197183,887197439,887357439,887390207,887439359,887455743,887488511,887521279,887554047,887619583,887652351,887654399,887656447,887656959,887657215,887657471,887657727,887658751,887659007,887659263,887659519,887660031,887660287,887685119,887701503,887717887,887750655,887816191,887832575,887881727,887914495,887947263,887963647,887980031,887996415,888012799,888111103,888111359,888111615,888112639,888112895,888113151,888114175,888115199,888116223,888125695,888125951,888126207,888126719,888127231,888127999,888128255,888128511,888128767,888129023,888130047,888130303,888130559,888130815,888131071,888132607,888133119,888133631,888134655,888135679,888135935,888136447,888136703,888137471,888137727,888137983,888138239,888139775,888140031,888140287,888140799,888141823,888142079,888142335,888142847,888274943,888291327,888348671,888356863,888373247,888475647,888477695,888478719,888480767,888481791,888482815,888483839,888484863,888485887,888486911,888487935,888488959,888491007,888492031,888493055,888494079,888495103,888496127,888497151,888498175,888500223,888501247,888503295,888504319,888508927,888509183,888569855,888573951,888574975,888575231,888575999,888578047,888586239,888750079,888758271,889016319,889020415,889028607,889037055,889037311,889037823,889038079,889038591,889039103,889040127,889040639,889041151,889041663,889042175,889042431,889043199,889043711,889044735,889046015,889046271,889046527,889047039,889047807,889048063,889048831,889049599,889050367,889051135,889051903,889052671,889053183,889135103,889143295,889192447,905969407,905969663,907280383,907411455,907608063,907608575,907609087,907610111,907610367,907610623,907610879,907611135,907611391,907611903,907612159,907612671,907613183,907613439,907613695,907614207,907615743,907616255,907616767,907617023,907617279,907617791,907618047,907619071,907619327,907619583,907619839,907620095,907621119,907621631,907621887,907622143,907622399,907622655,907622911,907623167,907623935,907624191,907624703,907624959,907625215,907625727,907627007,907627263,907627775,907628543,907629055,907629311,907629567,907630335,907630591,907630847,907631103,907631359,907631615,907632127,907632639,907632895,907633919,907634431,907636479,907636735,907637247,907637759,907638271,907638527,907639551,907639807,907640063,907640831,907641343,907641599,907642367,907643135,907643647,907643903,907644671,907644927,907645183,907645439,907645695,907645951,907646207,907647231,907647487,907647743,907649279,907649535,907650303,907650559,907650815,907651071,907651839,907652095,907652351,907653119,907653631,907653887,907654399,907655167,907655423,907655679,907656191,907656959,907657727,907657983,907658495,907658751,907659519,907659775,907660287,907660543,907660799,907661055,907661823,907662335,907663103,907663359,907664383,907664639,907665151,907665663,907666175,907666431,907666687,907666943,907667967,907668223,907668479,907668735,907668991,907669503,907669759,907670015,907671551,907671807,907673343,907673855,907674111,907674367,907674623,907674879,907675135,907675391,907676671,907677183,907677439,907677695,907677951,907678207,907678463,907679231,907679999,907680255,907680511,907680767,907681023,907682047,907682303,907682559,907682815,907683327,907683583,907684095,907684607,907684863,907685119,907685375,907685631,907685887,907686143,907686399,907687423,907687679,907688191,907688447,907688959,907689215,907689471,907689727,907689983,907690751,907691519,907691775,907692031,907692287,907692543,907693055,907693311,907693567,907694847,907695103,907695359,907695871,907696127,907696639,907697151,907697407,907697663,907697919,907698431,907698687,907698943,907699199,907699455,907699711,907700223,907700479,907700735,907702015,907702527,907703551,907703807,907704575,907704831,907705087,907705599,907705855,907706111,907706367,907706879,907707135,907707391,907707647,907707903,907708159,907708415,907708671,907709439,907709951,907710207,907710463,907710719,907710975,907711231,907711487,907711743,907711999,907712255,907712767,907713023,907713791,907714047,907714303,907714559,907715327,907716095,907716351,907716607,907716863,907717375,907717631,907718143,907718655,907719167,907719423,907719679,907720191,907720447,907720703,907720959,907721215,907722239,907722495,907722751,907723007,907723263,907723519,907723775,907724031,907724287,907724799,907725311,907725823,907726079,907726591,907726847,907727359,907727871,907728383,907728895,907729151,907729407,907729663,907729919,907730175,907730687,907731199,907731455,907731967,907732223,907732479,907732735,907732991,907733247,907733503,907733759,907734527,907734783,907735039,907735295,907735551,907735807,907736831,907737343,907737599,907738111,907738367,907738623,907739135,908328959,908330239,908330495,908333823,908334079,908334591,908334847,908339199,908339455,908339967,908340223,908345599,908345855,908349695,908349951,908350719,908350975,908351743,908351999,908356607,908359679,908362495,908362751,908363519,908363775,908369919,908371967,908374015,908376063,908377087,908386303,908388351,908389375,908389631,908390143,908391679,908391935,908394495,908396543,908398591,908399615,908409855,908410111,908412927,908414975,908417023,908418303,908418559,908419071,908420351,908420607,908423423,908423679,908424191,908424447,908427263,908428287,908428799,908429055,908429311,908431359,908435711,908435967,908436479,908436735,908438783,908439039,908440063,908440319,908443903,908447743,908453887,908455935,908456191,908457983,908472319,908473087,908473343,908474367,908474879,908475135,908475391,908476415,908478463,908479743,908479999,908480511,908492799,908493311,908493567,908495871,908496383,908496895,908497407,908497663,908497919,908498687,908498943,908500991,908509183,908510207,908510463,908510975,908511487,908511999,908512255,908513279,908515327,908515839,908516095,908517375,908521215,908521471,908525567,908591103,908984319,909115391,910163967,910295039,910360575,910688255,910825215,910825471,911147007,911212543,911998975,912031743,912064511,912130047,912195583,912261119,913571839,913702911,915800063,915865599,915898367,915931135,916029439,916062207,916193279,916979711,917045247,917110783,917241855,917635071,917700607,917766143,917897215,917899263,917933055,917934591,917940735,917940991,917941759,917943295,917944831,917945343,917946111,917946367,917947903,917948671,917949439,917949695,917951743,917951999,917952255,917953023,917953791,917956351,917956607,917956863,917957119,917957375,917957631,917958399,917958655,917959167,917959423,917959679,917959935,917960191,917962495,917962751,918552575,918553087,918553599,918554623,918555135,918555647,918556671,918558719,918559743,918560767,918561791,918562815,918563839,918564863,918565887,918566399,918566911,918567935,918568959,918569983,918571007,918574079,918575103,918576127,918577151,918578175,918579199,918580223,918581247,918582271,918583295,918584319,918584575,918584831,918585087,918585343,918586367,918587391,918588415,918589439,918590463,918591487,918592511,918593279,918593535,918594303,918594559,918596607,918597631,918598655,918598911,918599167,918599423,918599679,918599935,918600703,918601215,918601471,918601727,918602751,918603263,918603775,918604287,918604543,918604799,918606847,918607871,918608895,918609919,918610943,918611967,918612991,918614015,918616063,918618111,918683647,918814719,919011327,919076863,919470079,919535615,919601151,920125439,920214783,920215039,920256511,920387583,920453119,920518655,920649727,920911871,921042943,921043967,921044479,921044991,921046015,921046271,921049087,921050111,921052159,921053439,921053695,921053951,921054207,921055231,921056255,921057279,921058303,921059327,921059839,921060095,921061375,921063423,921064447,921065471,921066495,921067519,921068543,921069055,921069567,921070847,921071615,921072639,921073663,921074687,921075711,921075967,921076479,921076735,921077759,921079807,921080319,921080831,921081855,921082367,921082879,921083903,921084927,921086975,921087999,921089023,921090047,921092095,921093119,921094143,921095167,921096191,921097215,921098239,921099263,921099775,921100031,921101311,921102335,921103359,921103615,921103871,921104383,921104639,921104895,921105663,921105919,921174015,921305087,921567231,921632767,921633023,921633279,921633791,921634815,921640959,921643007,921646079,921646591,921651199,921657343,921657599,921658111,921658367,921658879,921659903,921660415,921661695,921662463,921665535,921665791,921666047,921666559,921667071,921667327,921667583,921669119,921669375,921669631,921671423,921671679,921672191,921672447,921672703,921673215,921673727,921674239,921675263,921675519,921675775,921676287,921676543,921676799,921677055,921677823,921678335,921678591,921678847,921679359,921679615,921679871,921680383,921680639,921680895,921681919,921682431,921682687,921682943,921683199,921684223,921684479,921684735,921688063,921688575,921688831,921689855,921690111,921698303,921698815,921699327,921700095,921700351,921711103,921711359,921711615,921712127,921712383,921712895,921718783,921719295,921719807,921720831,921721855,921722367,921723391,921723903,921724415,921724927,921725951,921726207,921731071,921731327,921733119,921733375,921733631,921733887,921735423,921735679,921735935,921736191,921736447,921736703,921736959,921737215,921737471,921738239,921738495,921738751,921739263,921739775,921740031,921740287,921740799,921741055,921741311,921741567,921741823,921742335,921742847,921743103,921743359,921743615,921743871,921745663,921745919,921746175,921746431,921746943,921747455,921748479,921748735,921748991,921749247,921749503,921749759,921750271,921751551,921754623,921755647,921755903,921756159,921756671,921759999,921760255,921760767,921761791,922091519,922222591,922419199,922484735,922615807,922746879,942669823,943194111,943980543,944242687,945815551,946077695,946864127,947126271,947650559,947912703,948174847,949682175,949878783,949944319,950009855,950140927,950206463,950271999,950337535,951582719,951844863,954466303,954728447,955252735,955514879,956301311,956366847,956432383,956563455,956760063,956760575,956760831,956761087,956761343,956761599,956762623,956764415,956764927,956766207,956766463,956767231,956767743,956769023,956769279,956769535,956769791,956770047,956770815,956771071,956772095,956772351,956772607,956772863,956773887,956775423,956775679,956776447,956776959,956777471,956777727,956778239,956779263,956780031,956780287,956781311,956781823,956782079,956782847,956783103,956783359,956783615,956784639,956785663,956786431,956786687,956786943,956787199,956788735,956790783,956791295,956791551,956792063,956792575,956794879,956795903,956796159,956796415,956797183,956797439,956797695,956798207,956799231,956800511,956800767,956801023,956801535,956802303,956802559,956802815,956804095,956806143,956806399,956806655,956807423,956808703,956810239,956811007,956812031,956812287,956812799,956813055,956814591,956816383,956816895,956817151,956817407,956817919,956818175,956818943,956819199,956819967,956821247,956822527,956822783,956823039,956823551,956824063,956824319,956824575,956825599,957677567,957678591,957679871,957680639,957680895,957681151,957681407,957682943,957683711,957683967,957684735,957684991,957685247,957685759,957686527,957688063,957688319,957689599,957690111,957691135,957692927,957693695,957694207,957694975,957695231,957695743,957696511,957696767,957697023,957699327,957699839,957700095,957701119,957701887,957703167,957704447,957705983,957707263,957707775,957708031,957708543,957708799,957709055,957710847,957711871,957713407,957715967,957717759,957719039,957719295,957719807,957721855,957724415,957725951,957726719,957726975,957727999,957728255,957728767,957730303,957731839,957733631,957736191,957737727,957738751,957739007,957739519,957740031,957740287,957741823,957743103,958267391,958398463,958595071,958596863,958597119,958598143,958598911,958599935,958600191,958600447,958601983,958602239,958602495,958602751,958603007,958603263,958603775,958604031,958604799,958605055,958606079,958606335,958606591,958607359,958607615,958607871,958609151,958609407,958609919,958610687,958610943,958611199,958611711,958611967,958613759,958614015,958615551,958616063,958618367,958618623,958620671,958620927,958621695,958621951,958622463,958622975,958623231,958624255,958625279,958627327,958627839,958628607,958629631,958629887,958630655,958631423,958632191,958633215,958635519,958636543,958637055,958638079,958639359,958639615,958639871,958641407,958642431,958643967,958644735,958645759,958646527,958647295,958647551,958648319,958649855,958650367,958650623,958652671,958653695,958654463,958655487,958655999,958656255,958656511,958659071,958659327,958660607,958791679,958857215,959381503,959447039,960495615,960561151,960626687,960659455,960692223,960724991,960733183,960741375,960749567,960757759,960806911,960811007,960815103,960820991,960848127,960848383,960848639,960850175,960850431,960856063,960864511,960868607,960869119,960881919,960882175,960883711,960883967,960888831,960921599,960929791,960930303,960930815,960931327,960931839,960932351,960932863,960933375,960933887,960934399,960934911,960935423,960935935,960936447,960936703,960936959,960937471,960937983,960938239,960938751,960940031,960940799,960941311,960941567,960942847,960943615,960943871,960944127,960945407,960945663,960945919,960946431,960948479,960948735,960948991,960949247,960950783,960951039,960951295,960951807,960953087,960954367,961019903,961036287,961037311,961038335,961039359,961040383,961041407,961042431,961042943,961043455,961043967,961044479,961052671,961069055,961069311,961069567,961070591,961070847,961072383,961072639,961072895,961073663,961073919,961074431,961074943,961075455,961075711,961075967,961076223,961076479,961076735,961077759,961078527,961078783,961079295,961079807,961080319,961080831,961081599,961082111,961082879,961083903,961084159,961084415,961084927,961085183,961085439,961118207,961122303,961124351,961124863,961125375,961126399,961130495,961131007,961131263,961131519,961132031,961132799,961133055,961133311,961133567,961134335,961134591,961138687,961139199,961139711,961140223,961140735,961140991,961141247,961141503,961141759,961142015,961142271,961142527,961143039,961143295,961144575,961144831,961145087,961145343,961145599,961146367,961146623,961147135,961147647,961149183,961149439,961149695,961149951,961150975,961167359,961168383,961169407,961170431,961171455,961172479,961173503,961174527,961175551,961176063,961176575,961177087,961177599,961178111,961178623,961179135,961179647,961180159,961180671,961181183,961181695,961182207,961182719,961183231,961183743,961191935,961200127,961204223,961205247,961206271,961207295,961208319,961212415,961213439,961213951,961214463,961214975,961216511,961224703,961228799,961232895,961236991,961241087,961249279,961253375,961257471,961261567,961265663,961269759,961273855,961277951,961282047,961314815,961363967,961364479,961364735,961365247,961366783,961367039,961367551,961367807,961369855,961370111,961372671,961372927,961373183,961373695,961374719,961375231,961377535,961377791,961380095,961380351,961413119,961445887,961454079,961462271,961463039,961463295,961464575,961464831,961465855,961466111,961467391,961467647,961467903,961468159,961472511,961472767,961476351,961476607,961478655,961495039,961496831,961497087,961498879,961499135,961501439,961502207,961505023,961505279,961506559,961506815,961509631,961509887,961511423,961515519,961516287,961516543,961517311,961517567,961519615,961523711,961524223,961524735,961525247,961525759,961527807,961528319,961528575,961528831,961529343,961530111,961530367,961530879,961531135,961531391,961531647,961531903,961533951,961535999,961536511,961536767,961537791,961538559,961538815,961539071,961539583,961539839,961540095,961542143,961544191,961650687,961657087,961657343,961658367,961658623,961663999,961664255,961669119,961669375,961675263,961683455,961684479,961685503,961686527,961687039,961687295,961687551,961688063,961688575,961689087,961689599,961690111,961690623,961691135,961691647,961692159,961692671,961692927,961693183,961693951,961694719,961695743,961696255,961696767,961697279,961697791,961698303,961698815,961699327,961699839,961700351,961700863,961701375,961701887,961702399,961703935,961704447,961704959,961705471,961705983,961706495,961707007,961707519,961708031,961710079,961711103,961712127,961712639,961713151,961713663,961714175,961714687,961715199,961715711,961716223,961716735,961717247,961717759,961718271,961718783,961720063,961721855,961722111,961722623,961722879,961723391,961723647,961724927,961725439,961725695,961725951,961729023,961729279,961729535,961730815,961734143,961734399,961737215,961737983,961740799,961744895,961746943,961748991,961751039,961751295,961754623,961755647,961756159,961756671,961757183,961761279,961763327,961765375,961767423,961769471,961771519,961773567,961775359,961776127,961776895,961777919,961778175,961780991,961781247,961781503,961781759,961785855,961786879,961788415,961788927,961789183,961789439,961790463,961790719,961791487,961791743,961793023,961793279,961794047,961798143,961798911,961799935,961800191,961800959,961801727,961801983,961802239,961804031,961804287,961810431,961814527,961818623,961822719,961830911,961835007,961843199,961847295,961871871,961937407,961945599,961953791,961957887,961958911,961961983,961966079,961966335,961966591,961966847,961967615,961967871,961968127,961968383,961969151,961969407,961970175,961978367,961979391,961980415,961981439,961982463,961982719,961983231,961983487,961985023,961985279,961985535,961986303,961986559,961987583,961987839,961988863,961989119,961989631,961990399,961990911,961991167,961991423,961991935,961992191,961992447,961993471,961993727,961994751,961996031,961996543,961996799,961997055,961997823,961998079,961998847,961999103,961999359,961999615,962000127,962000383,962000639,962001151,962001919,962002175,962002431,962002687,962002943,962035711,962039807,962040063,962041599,962041855,962042111,962042879,962043135,962043391,962043903,962047999,962048255,962048511,962048767,962049023,962050047,962050303,962051583,962051839,962052095,962056191,962056447,962056703,962057215,962057471,962057983,962058495,962058751,962059007,962059263,962059519,962060287,962060543,962060799,962061311,962061567,962061823,962062079,962062591,962062847,962063359,962063615,962063871,962065407,962065663,962065919,962067199,962067711,962068479,962076671,962080767,962097151,962101247,962105343,962109439,962113535,962117631,962121727,962125823,962134015,962138111,962199551,962199807,962200831,962201087,962201599,962201855,962202111,962202367,962202879,962203135,962203647,962211839,962213887,962214911,962215935,962216959,962217983,962220031,962224127,962228223,962230271,962232319,962233343,962234367,962235391,962236415,962236927,962237439,962237951,962238463,962238975,962239487,962239999,962240255,962240511,962244607,962246655,962246911,962247423,962247679,962248191,962248703,962250751,962251007,962251519,962251775,962252031,962252287,962252799,962254847,962255103,962255359,962255615,962255871,962256383,962256639,962256895,962257151,962257407,962257663,962257919,962258175,962258431,962259199,962259455,962259967,962260223,962260479,962260735,962260991,962265087,962281471,962285567,962293759,962297855,962314239,962318335,962322431,962324479,962330623,962330879,962331135,962331391,962331647,962331903,962332927,962333439,962334463,962334719,962338815,962339839,962340095,962340351,962340607,962340863,962341375,962342143,962343167,962343423,962344191,962344959,962345471,962346239,962346495,962346751,962347007,962351103,962351871,962352383,962352639,962353151,962353663,962353919,962355199,962359295,962363391,962367487,962371583,962371839,962372095,962372351,962372863,962374655,962375167,962375423,962375679,962375935,962376703,962376959,962377215,962377471,962377727,962377983,962378239,962378751,962379263,962379519,962379775,962383871,962385663,962386175,962386687,962386943,962387967,962388479,962388735,962388991,962389503,962389759,962390015,962390783,962391295,962391807,962392063,962396159,962400255,962404351,962404607,962404863,962405119,962405375,962405631,962405887,962406143,962406399,962406655,962407167,962407423,962407679,962408191,962408447,962412543,962412799,962413311,962413567,962414079,962414335,962414591,962414847,962416639,962420735,962420991,962421503,962422271,962422527,962422783,962423807,962424063,962425343,962426879,962427135,962427391,962427647,962427903,962428159,962428415,962429183,962429439,962430719,962430975,962431743,962431999,962432767,962433023,962433279,962434047,962434303,962434559,962434815,962435071,962435327,962436095,962436607,962437119,962437375,962438655,962438911,962439679,962439935,962440191,962440447,962441215,962441471,962441983,962442495,962442751,962443007,962443263,962443775,962444031,962444543,962444799,962445311,962445823,962446079,962446335,962447103,962447615,962447871,962448383,962448639,962448895,962449151,962449407,962450431,962450687,962452479,962452991,962454015,962454271,962454783,962455551,962456319,962457343,962457599,962457855,962458623,962459135,962459647,962459903,962460159,962460415,962460671,962461183,962461695,962469887,962527231,962592767,962594815,962595071,962595839,962596095,962596351,962596607,962596863,962598911,962599167,962599679,962599935,962600703,962600959,962609151,962613247,962614015,962614271,962614527,962615039,962616319,962617343,962625535,962625791,962626303,962626559,962628863,962629119,962630655,962630911,962632959,962633215,962634751,962635007,962637311,962637567,962638847,962639103,962642687,962642943,962650623,962650879,962658559,962658815,962659071,962659583,962661119,962661375,962661631,962661887,962665215,962665471,962667007,962667263,962668543,962668799,962670079,962670335,962673663,962673919,962674687,962676735,962678783,962691071,962691327,962691583,962700031,962700287,962706431,962706687,962708735,962708991,962711039,962711295,962712063,962712319,962716671,962716927,962720767,962721023,962723071,962723327,962723839,962732031,962740223,962744319,962746367,962748415,962750463,962751487,962752511,962756607,962758911,962759167,962760447,962760703,962762239,962762495,962763775,962764031,962770943,962771199,962772479,962772735,962777343,962777599,962779391,962779903,962789375,962854911,962856447,962856959,962857471,962857983,962858751,962859263,962859775,962860287,962860799,962861055,962861823,962862335,962863103,962863615,962863871,962864383,962864639,962864895,962865407,962865663,962865919,962869247,962869503,962870271,962870527,962873343,962873599,962873855,962874111,962875391,962875647,962876927,962877439,962877695,962877951,962878463,962879231,962879487,962881535,962881791,962882303,962883839,962884095,962884863,962885631,962886911,962888447,962888703,962889471,962890495,962891775,962892031,962892543,962894079,962894591,962895615,962896127,962897919,962898431,962899711,962901759,962903295,962905343,962906111,962906367,962906623,962906879,962908671,962908927,962909951,962910719,962912255,962913535,962915071,962916863,962918655,962918911,962919167,962919423,962919935,962920191,962920447,962985983,963117055,963641343,964689919,964722943,964723199,964723455,964723967,964724223,964725503,964725759,964729855,964730367,964734463,964734719,964738047,964739071,964743679,964755455,964765439,964952063,965017599,965021695,965025791,965029887,965033983,965042175,965050367,965066751,965083135,965148671,965214207,965345279,965476607,965476863,965477375,965477631,965477887,965480191,965480447,965481471,965482495,965483519,965485567,965486591,965487615,965488639,965489663,965490687,965491711,965492735,965493759,965494783,965495807,965496831,965497855,965498879,965499903,965500927,965501951,965502975,965503999,965505023,965506047,965541119,965541375,965541631,965541887,966131711,966132223,966132735,966133247,966133759,966136063,966136319,966137087,966137343,966137599,966138367,966140415,966140927,966141439,966141951,966142463,966142975,966143487,966143999,966144511,966145535,966146047,966146559,966147071,966149631,966150143,966151167,966151679,966152191,966152703,966154239,966197247,966238207,967835647,967966719,968097791,968359935,968622079,968623103,968623359,968623615,968623871,968624127,968624383,968624895,968625151,968625407,968625663,968625919,968626175,968626431,968626687,968626943,968627199,968627455,968627711,968627967,968628223,968628479,968629247,968630271,968631807,968632319,968632575,968633087,968634367,968635647,968636415,968636671,968636927,968637695,968637951,968638207,968638463,968687615,968753151,968761343,968818687,968820735,968835071,968836095,968843007,968851199,968851455,968859647,968867839,968884223,968949759,969015295,969016319,969017343,969017599,969018623,969020671,969020927,969021183,969021951,969023487,969023743,969023999,969024767,969025279,969025535,969025791,969027327,969027583,969029631,969029887,969030655,969030911,969031935,969033727,969035519,969036799,969037567,969037823,969038847,969039359,969041663,969042175,969042687,969042943,969044735,969044991,969046271,969047551,969047807,969048063,969049087,969050623,969051647,969052159,969052927,969053183,969054207,969054463,969055743,969056511,969057791,969058815,969060607,969062399,969062911,969063167,969064191,969065727,969065983,969066239,969068031,969068287,969068543,969068799,969069567,969071103,969072639,969073663,969073919,969074175,969074943,969075711,969078015,969079295,969080575,969081087,969081343,969082111,969083391,969084159,969085951,969087231,969089279,969089535,969091583,969092607,969092863,969093119,969094911,969095167,969096191,969097471,969099007,969100287,969101567,969102079,969103871,969104639,969107967,969108735,969110271,969112063,969113855,969114623,969115647,969116159,969116415,969117183,969118463,969119231,969119999,969121023,969123071,969123839,969124095,969124607,969125631,969125887,969126143,969126399,969127935,969128703,969130751,969131263,969132031,969132287,969132543,969132799,969133823,969135103,969135359,969135615,969136639,969137663,969139199,969139455,969140735,969140991,969141247,969142271,969145343,969146367,969211903,969212159,969213183,969214207,969216255,969216511,969216767,969217279,969219071,969219839,969221119,969221631,969222399,969223679,969226495,969226751,969227007,969227263,969227519,969227775,969228031,969228287,969228543,969229311,969229823,969230335,969230847,969231359,969231615,969232895,969233407,969235455,969236735,969236991,969237247,969238271,969239039,969240319,969240831,969243135,969243647,969244159,969244415,969245439,969246463,969247487,969249279,969250303,969251071,969251327,969251583,969252607,969253119,969254143,969254655,969254911,969255423,969256447,969256703,969258495,969259519,969261567,969262335,969264127,969265151,969266687,969267711,969269759,969270015,969271039,969272319,969273855,969275135,969277183,969277439,969343743,969343999,969344767,969345535,969345791,969346303,969347839,969348095,969348351,969348607,969349119,969349631,969350911,969351423,969351679,969352191,969353215,969353983,969355263,969355519,969355775,969356031,969357823,969358335,969358591,969358847,969360127,969360639,969361151,969361407,969362431,969362943,969365247,969365759,969366271,969366527,969367807,969369087,969370623,969371647,969371903,969372159,969374463,969375743,969377023,969377791,969379583,969380607,969380863,969381119,969382399,969382911,969383167,969383423,969384447,969385727,969387007,969388031,969389055,969390079,969391359,969392639,969393663,969394431,969396223,969396479,969397759,969398527,969400319,969401343,969402879,969403647,969404415,969404671,969405951,969406719,969407231,969407999,969408255,969408767,969409535,969410303,969411839,969412607,969413119,969413375,969415167,969415679,969417471,969418751,969419519,969419775,969421567,969422335,969422591,969422847,969423615,969424127,969424895,969425151,969425919,969426943,969427967,969429247,969431039,969431807,969432063,969432319,969433087,969433855,969434367,969434623,969435647,969436159,969436415,969436671,969437695,969438719,969440511,969441279,969443071,969443839,969444607,969444863,969446143,969446655,969447935,969449215,969449983,969450495,969450751,969452799,969453567,969453823,969455103,969455359,969455871,969456127,969458175,969458431,969458943,969459199,969460479,969460991,969462271,969462783,969463039,969463807,969464831,969467135,969468159,969468415,969469439,969469695,969471231,969471743,969471999,969472767,969539583,969540095,969542655,969544191,969547775,969548031,969548287,969549311,969549823,969550847,969552127,969553151,969555455,969556223,969557759,969558015,969558527,969559295,969561599,969564159,969565439,969566207,969566463,969566975,969567743,969569279,969569535,969569791,969571071,969571327,969573119,969573631,969574911,969576447,969578495,969579263,969580799,969582079,969582335,969582591,969583615,969584383,969585919,969586175,969587455,969588991,969589247,969589503,969590527,969591295,969592575,969593599,969593855,969594367,969595903,969596159,969597439,969597695,969598463,969598719,969599743,969601279,969601535,969601791,969602559,969603839,969605631,969607423,969608703,969608959,969610495,969610751,969612543,969613823,969615103,969615871,969617663,969618687,969618943,969619199,969621247,969621503,969623295,969623551,969623807,969624063,969626367,969626879,969628159,969629183,969630719,969631743,969631999,969632255,969633279,969633535,969634303,969634559,969635327,969636095,969637631,969638143,969638399,969638655,969640447,969641215,969643263,969644799,969646591,969647103,969648639,969649663,969651967,969652735,969654015,969654527,969655039,969655295,969656831,969657599,969659903,969660671,969662463,969662975,969663231,969663487,969665023,969665791,969666047,969666303,969668607,969669375,969670399,969670655,969736191,969737727,969739263,969739519,969739775,969740031,969741311,969742079,969743615,969744127,969747711,969748735,969752575,969753599,969754623,969755391,969757951,969758207,969759487,969760511,969761023,969761279,969765119,969766143,969767167,969768191,969769471,969769983,969770239,969770495,969772287,969773567,969775103,969775359,969777663,969777919,969779711,969780223,969782271,969783295,969785087,969786623,969788415,969788927,969790207,969790463,969790719,969790975,969792511,969792767,969793023,969793535,969795583,969796607,969799423,969799679,969799935,969801727,969802239,969867263,969867519,969867775,969869311,969869823,969871103,969871871,969873407,969873663,969876991,969878783,969880319,969880831,969881087,969881343,969882367,969883135,969883903,969884159,969884927,969885439,969885695,969885951,969887231,969887487,969888511,969891327,969892095,969892351,969892607,969893119,969894655,969895679,969896959,969897215,969898495,969898751,969899263,969899775,969901823,969903871,969905663,969906175,969907711,969908223,969911551,969912063,969912575,969912831,969913855,969915647,969915903,969916159,969920255,969921023,969921279,969921535,969924351,969925887,969927679,969929727,969931263,969931775,969936639,969937663,969939199,969941247,969944831,969945343,969946111,969946367,969946623,969946879,969948159,969950463,969950719,969950975,969952255,969954047,969954303,969954559,969956095,969956607,969959167,969959679,969961727,969963263,969963775,969964031,969965055,969966591,969966847,969967359,969968127,969968639,969969919,969970431,969973759,969975039,969977599,969978111,969979903,969980159,969982975,969983231,969984511,969985023,969987583,969988607,969988863,969989119,969990399,969990911,969991679,969991935,969993215,969993471,969993727,969995263,969996543,969997311,969998591,970000639,970001919,970002431,970003711,970003967,970004223,970005759,970006015,970006271,970006783,970007039,970007807,970008319,970010111,970010879,970011391,970011647,970012159,970013183,970013439,970013695,970014975,970015231,970017279,970018559,970018815,970019071,970020607,970020863,970021887,970022143,970023167,970024447,970025727,970025983,970026239,970026495,970028799,970029567,970029823,970030335,970031615,970032127,970032639,970032895,970034687,970034943,970035199,970035455,970036479,970037247,970038527,970038783,970040319,970040831,970042623,970042879,970043391,970044159,970046463,970047231,970048767,970049023,970049279,970049535,970051071,970051583,970052351,970053631,970055935,970057215,970058495,970059007,970060799,970061311,970063103,970064383,970066175,970066431,970067455,970068735,970069503,970070271,970071295,970071807,970073599,970074367,970074879,970075135,970078463,970079999,970081279,970082303,970083839,970084607,970084863,970085119,970086655,970087423,970088447,970088959,970089215,970089471,970091007,970091775,970093567,970094079,970094335,970094591,970095871,970096639,970097919,970099199,970103295,970103551,970103807,970104319,970106111,970106367,970108415,970108671,970111487,970112767,970114047,970114303,970116863,970117119,970119423,970119935,970121471,970122239,970124543,970125567,970125823,970126079,970128127,970128383,970129663,970130431,970131967,970132479,970134271,970135295,970136575,970137599,970138623,970139135,970139903,970140671,970141695,970142207,970144511,970144767,970146303,970147839,970149887,970150143,970152191,970152447,970152703,970152959,970154495,970155263,970158847,970160383,970162431,970162687,970163199,970163455,970165247,970165759,970166015,970166271,970167551,970168319,970169087,970169599,970171647,970172159,970173951,970174207,970174463,970174975,970175999,970176767,970177023,970177279,970178047,970180351,970182143,970183167,970184959,970185215,970186751,970187263,970187775,970188287,970188799,970189055,970190591,970192383,970192895,970193151,970193663,970194687,970196735,970196991,970197247,970197503,970198527,970198783,970199295,970199551,970200831,970201087,970201343,970201599,970202879,970204927,970205183,970205439,970207231,970207999,970209279,970210047,970211071,970211327,970214655,970215935,970217471,970218495,970219519,970219775,970220031,970220287,970221311,970222591,970224639,970224895,970226175,970227711,970229759,970230527,970231807,970232063,970232319,970232831,970234623,970235135,970236671,970236927,970238207,970239231,970241023,970242559,970244095,970244607,970246143,970246911,970248703,970248959,970250239,970251263,970251775,970252287,970253567,970254335,970254847,970255359,970256895,970257663,970258175,970259199,970260735,970262271,970264063,970265087,970268415,970269439,970271231,970271743,970273791,970274815,970276095,970276863,970277119,970277631,970278655,970279167,970280959,970281471,970282495,970282751,970283007,970283519,970283775,970284287,970285055,970285311,970285567,970286079,970287359,970288639,970289919,970290431,970290943,970291199,970291455,970292223,970294527,970295295,970297087,970297855,970298623,970298879,970300671,970302719,970303231,970303487,970305023,970305535,970305791,970306303,970307839,970308607,970308863,970309119,970312959,970313215,970313983,970314239,970315775,970318079,970319871,970320383,970320895,970321151,970322431,970322943,970324479,970324735,970326527,970326783,970327807,970330111,970330623,970330879,970332159,970332415,970332671,970333183,970335231,970335743,970337023,970337279,970337791,970338047,970338559,970338815,970339071,970339327,970339583,970339839,970342143,970343679,970344959,970345727,970347263,970347519,970349567,970349823,970353407,970355199,970358015,970358271,970358783,970359039,970360319,970360831,970366975,970368767,970370815,970371327,970371583,970371839,970374655,970375167,970375935,970376191,970376447,970377215,970378239,970378495,970378751,970379007,970380031,970382335,970383871,970384127,970385919,970386175,970387199,970387455,970387967,970388223,970389247,970389759,970390015,970390527,970392319,970394111,970394367,970394623,970394879,970395135,970395903,970396415,970396671,970396927,970401279,970402047,970403327,970404351,970405631,970407167,970407679,970408191,970409471,970409727,970412287,970412543,970414335,970414591,970415871,970416895,970418943,970420479,970421759,970422527,970422783,970423039,970424831,970425343,970426623,970426879,970427135,970427391,970428927,970429439,970429695,970429951,970430207,970430463,970431487,970434047,970434303,970434559,970434815,970435071,970435327,970438143,970439679,970440191,970441727,970441983,970444799,970445823,970447871,970448895,970450431,970452223,970453247,970453759,970456575,970456831,970457855,970459135,970461439,970461695,970462463,970463743,970465023,970465279,970467839,970468095,970469887,970470911,970472447,970472703,970473983,970474239,970474751,970475263,970478079,970479615,970483455,970484223,970484479,970484735,970486271,970486783,970488831,970489087,970490879,970491391,970492159,970492671,970495999,970496255,970499839,970500607,970500863,970501375,970502911,970503167,970503423,970503679,970504447,970504959,970506751,970508543,970509311,970509567,970511103,970511615,970512895,970513151,970515199,970515711,970515967,970516223,970517759,970518015,970518783,970519039,970519807,970520319,970521599,970521855,970523647,970524415,970526719,970527487,970528511,970529023,970530815,970531071,970531839,970532095,970532351,970532863,970535423,970536191,970536703,970537983,970538239,970538495,970538751,970539007,970539263,970539519,970539775,970541311,970541567,970542335,970544127,970544639,970545151,970546431,970547967,970548735,970549503,970549759,970551295,970551551,970552831,970554367,970554623,970555135,970556159,970556671,970559487,970560511,970561023,970561535,970563583,970563839,970564095,970564351,970565119,970566655,970566911,970567167,970567423,970567679,970568703,970569471,970570751,970571007,970571263,970571775,970573311,970574079,970575871,970576383,970578431,970579199,970580479,970580735,970580991,970581247,970583039,970583295,970584063,970584319,970584831,970585855,970586111,970586623,970588159,970588671,970590463,970591231,970591743,970592255,970593535,970594047,970594559,970595071,970595327,970596351,970596607,970596863,970598143,970599167,970600703,970600959,970602751,970603519,970604031,970604287,970607615,970607871,970609663,970610687,970612479,970612735,970614783,970615039,970615295,970615551,970616831,970617599,970619135,970619903,970620159,970620415,970622207,970622719,970622975,970624767,970625791,970626303,970626559,970626815,970630143,970630655,970631423,970631679,970633215,970633727,970634239,970634495,970635775,970636799,970638591,970638847,970639103,970639615,970640895,970641407,970642943,970643199,970646015,970646527,970648063,970648831,970649087,970649599,970651391,970651903,970653951,970654207,970654719,970655231,970655487,970655743,970656767,970657791,970659583,970659839,970661887,970663167,970664447,970665215,970666751,970667263,970669567,970670335,970670591,970670847,970672639,970673151,970674687,970676223,970678527,970679295,970680831,970681343,970682623,970683135,970685695,970685951,970688511,970688767,970690303,970690815,970691583,970692095,970695423,970696191,970696447,970696703,970698239,970698495,970701055,970701311,970706431,970706687,970708479,970708735,970710527,970711039,970711295,970711807,970716927,970717695,970722559,970723071,970724607,970725119,970725375,970725631,970726911,970728447,970728703,970728959,970730239,970731007,970732543,970733567,970735615,970735871,970736895,970737663,970739711,970740991,970742527,970742783,970743039,970743807,970745599,970745855,970747391,970748159,970750207,970750463,970751999,970752255,970752767,970755071,970755839,970756351,970756607,970758655,970758911,970759167,970760447,970760703,970762495,970763263,970768127,970768639,970769407,970769663,970770687,970772223,970774527,970774783,970775039,970775295,970777343,970777599,970778623,970779391,970781695,970781951,970783999,970785535,970787327,970788095,970789375,970790655,970792447,970792703,970792959,970793215,970794239,970794751,970797055,970798079,970799615,970800639,970802687,970803455,970804991,970805503,970806783,970807039,970808063,970809599,970811647,970812415,970812927,970813183,970814975,970815487,970816767,970817023,970817535,970817791,970819839,970820095,970821631,970822655,970822911,970823423,970824447,970826495,970828799,970829055,970830079,970830591,970832383,970833663,970836223,970836991,970838527,970839039,970840831,970841343,970843647,970843903,970845695,970847231,970847487,970847743,970849279,970850047,970851327,970851839,970853631,970854655,970855679,970856191,970858239,970859519,970861567,970861823,970863359,970863615,970864127,970864383,970865919,970866687,970868991,970869247,970871295,970872575,970874111,970874367,970876927,970877183,970877695,970877951,970879743,970879999,970880255,970880511,970881023,970881279,970884351,970885119,970887935,970888191,970888703,970890239,970892031,970892799,970894079,970894591,970894847,970895103,970896383,970897151,970898687,970899967,970901759,970903295,970904319,970904831,970905087,970905343,970908671,970909951,970911231,970911999,970914047,970915583,970917631,970917887,970921215,970921983,970923519,970924031,970924287,970924799,970926847,970927359,970929407,970929919,970933759,970935039,970935295,970935551,970936831,970937599,970939135,970939391,970939647,970939903,970941951,970942463,970946559,970947327,970949631,970949887,970951935,970952191,970953727,970953983,970954239,970955007,970956287,970957055,970957311,970957567,970959615,970960639,970961919,970962687,970962943,970963199,970964479,970964735,970964991,970965247,970967295,970967807,970969855,970970367,970970623,970970879,970971903,970972927,970974463,970975487,970978815,970979071,970979327,970979583,970981375,971374591,971440127,971571199,971702271,971767807,971833343,971898879,971964415,972095487,972226559,972423167,972488703,972554239,972619775,972685311,972696063,972696319,972697599,972697855,972750591,972750847,972816383,972947455,973078527,973209599,973275135,973471743,973602815,973864959,973996031,974782463,974870015,974870527,974880767,974913535,974979071,975044607,977272831,977305599,977338367,977346559,977354751,977371135,977395711,977397759,977399807,977401855,977403903,977534975,977567743,977600511,977666047,977731583,977764351,977797119,978321407,978452479,978485247,978501631,978518015,978583551,978584575,978585599,978586623,978587135,978587647,978588671,978590719,978591743,978592767,978593791,978594815,978595839,978596863,978597887,978599935,978640895,978644991,978714623,978780159,978784255,978788351,978796543,978812927,979369983,979410943,979419135,979435519,979463935,979464191,979468287,979470335,979472383,979476479,979484671,979494911,979496959,979501055,979566591,979599359,979763199,979894271,980418559,980549631,980680703,980942847,981467135,981991423,982122495,982171647,982188031,982253567,982515711,982581247,982614015,982622207,982624255,982626303,982628351,982630399,982638847,982639359,982639615,982639871,982640127,982640895,982641151,982642687,982671359,982679551,982695935,982712319,982745087,982753279,982755327,982757375,982759423,982761471,982777855,983039999,983171071,983302143,983564287,984612863,984743935,984875007,984932863,984933119,984956927,984965119,984973311,985006079,985071615,985137151,985202687,985268223,985399295,985661439,987758591,988807167,989855743,991952895,992303103,992303359,994809599,994809855,995196927,995197439,995197951,995198463,995199999,995201023,995201535,995202047,995202559,995203071,995203583,995206143,995206655,995207167,995207679,995208191,995208703,995209727,995210239,995210751,995211263,995211775,995212287,995212799,995213823,995214335,995214847,995215871,995216383,995216895,995217407,995217919,995218431,995218943,995219455,995219967,995220479,995220991,995221503,995222015,995222527,995223039,995223551,995224063,995224575,995225087,995225599,995226111,995226623,995227135,995227647,995228159,995228671,995229183,995229695,995237375,995237887,995244543,995244799,995246591,995246847,995259135,995259391,995262719,995262975,995360767,995532799,995538687,995538943,995540991,995557375,995622911,996409343,996573183,996605951,996671487,996802559,996868095,997195775,998244351,999292927,999423999,999555071,999686143,999751679,999784447,999785471,999786495,999787519,999787775,999788031,999788287,999789823,999790079,999790591,999790847,999791871,999792127,999793919,999794431,999794943,999795455,999795711,999796735,999797759,999798271,999798783,999799551,999799807,999800831,999817215,999821311,999825407,999825919,999826431,999827455,999828479,999828735,999829503,999830527,999832575,999833599,999837695,999838719,999838975,999839231,999839487,999839743,999841791,999845887,999847935,999848959,999849983,999866367,999882751,999883775,999884799,999885823,999886847,999887871,999888895,999889407,999889919,999890943,999891967,999892991,999893247,999894015,999895039,999896063,999898111,999902207,999903231,999904255,999905279,999906303,999907327,999908351,999909375,999910399,999911423,999912447,999913471,999914495,999915519,999916543,999917567,999918591,999919615,999919871,999920639,999921663,999922687,999922943,999923199,999923455,999923711,999923967,999924223,999924735,999932927,999933951,999934975,999935999,999937023,999948287,1000013823,1000079359,1000341503,1000734719,1000800255,1000865791,1001127935,1001390079,1002045439,1002176511,1002242047,1002307583,1002373119,1002405887,1002422271,1002432511,1002434559,1002438655,1008730111,1009778687,1010237439,1010302975,1010761727,1010827263,1017118719,1019215871,1019346943,1019478015,1019609087,1019740159,1019758591,1019760639,1021313023,1021837311,1021968383,1022033919,1022099455,1022361599,1022558207,1022623743,1022722047,1022754815,1022756351,1022756607,1022757375,1022758143,1022760959,1022761215,1022771199,1022771455,1022772991,1022773247,1022773503,1022774015,1022774271,1022774527,1022774783,1022775295,1022775551,1022776319,1022777087,1022778623,1022784511,1022784767,1022785279,1022785535,1022820351,1022885887,1023148031,1023213567,1023238143,1023246335,1023279103,1023311871,1023312127,1023312383,1023312895,1023313919,1023315711,1023316223,1023316735,1023317503,1023318271,1023318527,1023318783,1023319039,1023319551,1023319807,1023320063,1023320319,1023320575,1023321343,1023322111,1023323135,1023323391,1023323647,1023324671,1023324927,1023325439,1023325695,1023325951,1023326463,1023326975,1023327231,1023328255,1023344639,1023410175,1023672319,1023688703,1023692799,1023696895,1023702015,1023704575,1023704831,1023705087,1023717375,1023721471,1023737855,1023770623,1023778815,1023787007,1023791103,1023795199,1023803391,1023852543,1023868927,1023901695,1023934463,1023942655,1023942911,1023943167,1023943423,1023943679,1023944191,1023944447,1023944703,1023945215,1023945983,1023946495,1023946751,1023947007,1023947263,1023947775,1023949055,1023949311,1023949567,1023950847,1023953663,1023953919,1023954431,1023954687,1023954943,1023959039,1023967231,1023975423,1023979519,1023983615,1023999999,1024032767,1024065535,1024131071,1024163839,1024184319,1024188415,1024196607,1024229375,1024262143,1024327679,1024327935,1024328191,1024328447,1024328703,1024329727,1024330751,1024331775,1024332031,1024332543,1024332799,1024333823,1024334847,1024336895,1024337919,1024340991,1024341247,1024342271,1024343295,1024344063,1024352255,1024360447,1024360703,1024360959,1024361471,1024361727,1024361983,1024362239,1024362751,1024363263,1024363519,1024364287,1024365055,1024365567,1024365823,1024366079,1024366591,1024367103,1024367359,1024368895,1024369151,1024369663,1024370175,1024370943,1024371199,1024371455,1024371711,1024371967,1024372223,1024372735,1024372991,1024373503,1024373759,1024374015,1024374271,1024375295,1024375551,1024375807,1024376831,1024378879,1024379903,1024380927,1024381951,1024385023,1024386047,1024387071,1024389119,1024391167,1024392191,1024458751,1024491519,1024589823,1024655359,1024720895,1024786431,1025245183,1025277951,1025294335,1025294591,1025294847,1025295103,1025295615,1025295871,1025296127,1025296383,1025296639,1025296895,1025297407,1025297919,1025298175,1025298431,1025298943,1025299199,1025299455,1025299711,1025299967,1025300223,1025300479,1025300735,1025301247,1025301503,1025302271,1025302527,1025310719,1025343487,1025372159,1025372415,1025372671,1025372927,1025373183,1025373951,1025374463,1025374719,1025374975,1025375231,1025375487,1025375743,1025376255,1025507327,1026293759,1026392063,1026408447,1026416639,1026420735,1026422783,1026423039,1026423295,1026424831,1026490623,1026491135,1026491903,1026494207,1026494463,1026494719,1026494975,1026495743,1026496255,1026496511,1026496767,1026497023,1026497279,1026497535,1026497791,1026498047,1026501631,1026502399,1026502911,1026503679,1026503935,1026504959,1026506751,1026507519,1026508799,1026510847,1026512895,1026514943,1026515455,1026515967,1026516479,1026516991,1026518015,1026519039,1026523135,1026539519,1026555903,1027080191,1027223039,1027223295,1027866623,1027997695,1028128767,1029046271,1029148671,1029152767,1029156863,1029160959,1029177343,1029242879,1029308415,1029439487,1029570559,1029636095,1029668863,1029701631,1029787647,1029791743,1030027263,1030029311,1030086655,1030091775,1030092799,1030094847,1030418431,1030422527,1030627327,1030631423,1030701055,1030713343,1030733823,1030746111,1030750207,1031006975,1031007231,1031007999,1031008255,1031404031,1031404287,1031404543,1031405055,1031504895,1031505151,1031798783,1035993087,1036760831,1036761087,1037407487,1037407743,1037554175,1037554431,1037554687,1037554943,1037557247,1037557503,1037565951,1038614527,1039006975,1039007231,1039007743,1039138815,1039400959,1039466495,1039474687,1039497215,1039498239,1039499263,1039507455,1039511551,1039515647,1039523839,1039532031,1039597567,1039613951,1039638527,1039642623,1039646719,1039654911,1039663103,1039708159,1039712255,1039720447,1039721471,1039752191,1039769599,1039785983,1039867903,1039876095,1039880191,1039884287,1039884799,1039885567,1039885823,1039886335,1039886591,1039887615,1039888383,1039900671,1039925247,1039929343,1039941631,1039944703,1039945727,1039949823,1040187391,1040252927,1040318463,1040383999,1040384255,1040384511,1040385023,1040385279,1040385535,1040385791,1040386047,1040386559,1040387071,1040387327,1040387583,1040387839,1040388095,1040388351,1040388607,1040388863,1040389119,1040389375,1040389631,1040389887,1040390143,1040390399,1040390655,1040390911,1040391167,1040391679,1040391935,1040392191,1040392447,1040392703,1040392959,1040393215,1040393471,1040393727,1040393983,1040394239,1040394495,1040395007,1040395263,1040395519,1040395775,1040396031,1040396287,1040396543,1040396799,1040397055,1040397311,1040397567,1040397823,1040398079,1040398335,1040398591,1040398847,1040399103,1040399359,1040399615,1040399871,1040400127,1040400383,1040416767,1040424959,1040433151,1040449535,1040457727,1040465919,1040468735,1040468991,1040469503,1040469759,1040470015,1040471295,1040471551,1040472319,1040472575,1040473087,1040473343,1040473855,1040474111,1040477183,1040477439,1040477695,1040477951,1040478207,1040478463,1040478719,1040478975,1040479231,1040479487,1040479743,1040479999,1040480255,1040480767,1040481023,1040481279,1040482303,1040515071,1040547839,1040580607,1040711679,1040719871,1040728063,1040730623,1040730879,1040732927,1040733183,1040736255,1040744447,1040777215,1040842751,1040859135,1040859391,1040860927,1040861695,1040863231,1040863487,1040865791,1040866047,1040867071,1040867327,1040868095,1040868351,1040868863,1040869119,1040869375,1040869631,1040869887,1040870143,1040870399,1040870655,1040871167,1040871423,1040872191,1040872447,1040872703,1040873215,1040877311,1040877567,1040878847,1040879103,1040879871,1040880127,1040880383,1040881407,1040881919,1040882687,1040884991,1040886015,1040886527,1040886783,1040887295,1040887551,1040889087,1040889343,1040894207,1040894463,1040894975,1040895231,1040895999,1040896255,1040896511,1040896767,1040898815,1040899071,1040899583,1040899839,1040902399,1040902655,1040903935,1040904447,1040906239,1040906495,1040907007,1040907519,1040908287,1040908543,1040908799,1040909055,1040910335,1040910591,1040911103,1040911359,1040911615,1040911871,1040912127,1040912639,1040914431,1040915711,1040917503,1040917759,1040918527,1040919039,1040919295,1040919551,1040921343,1040921599,1040921855,1040922111,1040922623,1040923135,1040923903,1040924159,1040924415,1040924671,1040925183,1040925439,1040927487,1040927743,1040927999,1040928255,1040933631,1040933887,1040934655,1040934911,1040935167,1040935423,1040935679,1040936191,1040936447,1040936703,1040938751,1040939775,1040940543,1040940799,1040942079,1040942335,1040942847,1040943103,1040943615,1040943871,1040946431,1040946943,1040947199,1040947455,1040947711,1040947967,1040948735,1040948991,1040949503,1040950015,1040951807,1040952063,1040952319,1040952575,1040954623,1040955391,1040955647,1040956159,1040956671,1040956927,1040957439,1040957951,1040958719,1040958975,1040963071,1040963327,1040964351,1040964607,1040965119,1040965375,1040965887,1040966143,1040966655,1040966911,1040967935,1040968191,1040969471,1040969983,1040970495,1040970751,1040972799,1040973055,1040973823,1040982015,1040982783,1040983039,1040988159,1040988415,1040988671,1040989695,1040990207,1040994303,1040994559,1040998399,1041002495,1041004543,1041005567,1041006591,1041039359,1041072127,1041080319,1041088511,1041093631,1041094143,1041096703,1041235967,1041244159,1041252351,1041256447,1041260543,1041268735,1041301503,1041302015,1041302271,1041308415,1041308671,1041334271,1041334527,1041334783,1041335039,1041335551,1041335807,1041343487,1041343743,1041347071,1041347327,1041363199,1041363455,1041364479,1041364735,1041365503,1041365759,1041367039,1041498111,1041563647,1041596415,1041629183,1041694719,1041700607,1041700863,1041701375,1041701631,1041704959,1041705215,1041710079,1041710335,1041712639,1041712895,1041717247,1041717503,1041722623,1041722879,1041724671,1041724927,1041727487,1041727743,1041727999,1041728255,1041728767,1041729023,1041729279,1041730303,1041730559,1041730815,1041731071,1041733887,1041734143,1041734399,1041734655,1041734911,1041739775,1041740031,1041740287,1041741567,1041741823,1041742079,1041742335,1041742591,1041742847,1041743103,1041743359,1041743615,1041744383,1041744639,1041744895,1041746431,1041746687,1041747711,1041747967,1041748479,1041748735,1041748991,1041749247,1041749503,1041750015,1041750527,1041751039,1041751295,1041752319,1041752575,1041754623,1041754879,1041755647,1041755903,1041756159,1041757183,1041757439,1041758207,1041758463,1041758719,1041758975,1041759487,1041759743,1041759999,1041760255,1041768447,1041776639,1041784831,1041793023,1041825791,1041842175,1041858559,1041862655,1041866751,1041870847,1041874687,1041874943,1041890047,1041890815,1041891327,1042022399,1042087935,1042120703,1042153471,1042284543,1042292735,1042293247,1042293503,1042293759,1042294271,1042294783,1042296575,1042296831,1042297343,1042297599,1042297855,1042298111,1042298367,1042298623,1042298879,1042299135,1042299391,1042300159,1042300927,1042304511,1042304767,1042306047,1042306559,1042308095,1042308607,1042309119,1042317311,1042350079,1042415615,1042546687,1042677759,1042743295,1042798591,1042798847,1042808831,1042817023,1042825215,1042833407,1042834431,1042834687,1042841599,1042874367,1042875135,1042875391,1042875903,1042876159,1042876415,1042876671,1042876927,1042877183,1042877951,1042878207,1042878463,1042878975,1042879487,1042880255,1042881535,1042882559,1042882815,1042883839,1042884095,1042888703,1042888959,1042889215,1042889983,1042890239,1042890495,1042890751,1042891007,1042891775,1042892287,1042892543,1042893055,1042893311,1042893823,1042894079,1042894847,1042895103,1042895615,1042895871,1042900479,1042900735,1042915327,1042915583,1042939903,1043070975,1043079167,1043080191,1043087359,1043095551,1043103743,1043120127,1043136511,1043202047,1043333119,1043341311,1043346687,1043347455,1043348479,1043349503,1043357695,1043365887,1043398655,1043464191,1043472383,1043472895,1043473151,1043475455,1043475711,1043476735,1043476991,1043477503,1043477759,1043478015,1043479295,1043479551,1043480063,1043480319,1043480575,1043480831,1043481855,1043482111,1043482623,1043483391,1043483647,1043483903,1043484159,1043484671,1043485439,1043486207,1043487487,1043487743,1043488767,1043496959,1043497215,1043497983,1043498239,1043498495,1043498751,1043499263,1043499519,1043505151,1043513343,1043515391,1043529727,1043595263,1043857407,1043891711,1043892479,1043892735,1043892991,1043893247,1043896063,1043896831,1043897087,1043897343,1043898367,1043899647,1043900159,1043900415,1043901439,1043901695,1043901951,1043902463,1043906559,1043910655,1043910911,1043911423,1043911679,1043912959,1043913215,1043914239,1043914751,1043916287,1043916543,1043918847,1043919359,1043919871,1043920383,1043920895,1043921919,1043922943,1043988479,1044013823,1044014079,1044014335,1044014847,1044016127,1044016639,1044017919,1044018175,1044020223,1044020479,1044051967,1044052223,1044052991,1044053503,1044106495,1044106751,1044117503,1044118527,1044119551,1044152319,1044157183,1044157439,1044174847,1044175871,1044176895,1044177151,1044177663,1044178687,1044178943,1044179199,1044179711,1044179967,1044180735,1044180991,1044184319,1044184575,1044185087,1044193279,1044201471,1044217855,1044226047,1044234239,1044250623,1044283391,1044316159,1044332543,1044348927,1044365311,1044381695,1044389887,1044398079,1044414463,1044447231,1044454399,1044454655,1044455423,1044463615,1044479999,1044488191,1044496383,1044512767,1044578303,1044579071,1044579583,1044580095,1044580351,1044581119,1044581375,1044582143,1044582399,1044582655,1044586239,1044586495,1044587007,1044587519,1044587775,1044588031,1044588287,1044588543,1044589823,1044590079,1044590335,1044590591,1044594943,1044595199,1044595711,1044595967,1044596991,1044597247,1044598271,1044598783,1044599039,1044625407,1044626175,1044626431,1044627455,1044628479,1044628735,1044629247,1044629503,1044630015,1044630271,1044631039,1044631551,1044632063,1044632319,1044635391,1044635647,1044636159,1044637951,1044638207,1044638719,1044638975,1044642047,1044642303,1044643327,1044643583,1044652031,1044660223,1044660479,1044660735,1044660991,1044661247,1044661503,1044661759,1044662015,1044662271,1044662527,1044662783,1044663039,1044663295,1044663551,1044663807,1044664063,1044664319,1044664575,1044664831,1044665087,1044665343,1044665599,1044665855,1044666111,1044666367,1044666623,1044666879,1044667135,1044667391,1044667647,1044667903,1044668159,1044668415,1044676607,1044684799,1044687359,1044688895,1044691967,1044692991,1044697087,1044697343,1044697855,1044698111,1044701183,1044709375,1044717567,1044742143,1044744191,1044746239,1044748287,1044750335,1044758527,1044774911,1044840447,1044905983,1044908031,1044909055,1044910079,1044911103,1044912127,1044913151,1044914175,1044915199,1044916223,1044917247,1044918271,1044920319,1044921343,1044922367,1044930559,1044938751,1044946943,1044947455,1044947711,1044947967,1044948223,1044948479,1044948735,1044948991,1044949247,1044949503,1044949759,1044950015,1044950271,1044950527,1044950783,1044951039,1044951551,1044951807,1044952063,1044952319,1044952831,1044953343,1044953599,1044954111,1044954367,1044954623,1044954879,1044955135,1044963327,1044971519,1044979711,1044987903,1045004287,1045015295,1045015551,1045016063,1045016319,1045016831,1045017087,1045017599,1045018367,1045018623,1045019391,1045019903,1045020415,1045020671,1045037055,1045119231,1045119743,1045135359,1045135871,1045136127,1045137407,1045137663,1045145343,1045145599,1045146879,1045147135,1045147903,1045148671,1045148927,1045149695,1045152255,1045153535,1045153791,1045155071,1045155583,1045155839,1045156607,1045156863,1045157119,1045160191,1045160959,1045161727,1045161983,1045163775,1045164031,1045166079,1045167103,1045168127,1045205503,1045206015,1045207295,1045207551,1045225471,1045225727,1045225983,1045226239,1045226495,1045226751,1045227007,1045227263,1045227519,1045227775,1045228031,1045228287,1045228543,1045233663,1045241855,1045250047,1045266431,1045267199,1045267455,1045268479,1045270527,1045272575,1045274623,1045282815,1045299199,1045307391,1045315583,1045319679,1045323775,1045364735,1045430271,1045446655,1045446911,1045447167,1045450751,1045451263,1045451775,1045452287,1045452543,1045452799,1045453055,1045453823,1045454847,1045455615,1045456383,1045456639,1045458943,1045459199,1045459455,1045460223,1045460735,1045460991,1045461503,1045461759,1045462783,1045463039,1045471231,1045479423,1045487615,1045495807,1045692415,1045700607,1045708799,1045716991,1045719039,1045725183,1045733375,1045737471,1045741567,1045744895,1045745151,1045745407,1045746687,1045746943,1045747199,1045747455,1045748479,1045748735,1045749247,1045749759,1045753855,1045755903,1045757951,1045790719,1045798911,1045889023,1045921791,1045954559,1045987327,1046020095,1046028287,1046036479,1046052863,1046061055,1046069247,1046073343,1046074367,1046076415,1046077439,1046085631,1046150143,1046150399,1046151167,1046216703,1046282239,1046290431,1046298623,1046299903,1046300159,1046300671,1046300927,1046305279,1046306815,1046308863,1046309119,1046309887,1046310143,1046315007,1046323199,1046331391,1046331647,1046331903,1046332159,1046332415,1046332671,1046333183,1046333695,1046333951,1046334207,1046335231,1046335743,1046337023,1046337791,1046338303,1046339839,1046340095,1046340351,1046341375,1046341631,1046342655,1046343167,1046343423,1046343935,1046344191,1046344959,1046345727,1046345983,1046346751,1046347775,1046413311,1046446079,1046544383,1046560767,1046585343,1046609919,1046675455,1046708223,1046740991,1046757375,1046765567,1046773759,1046781951,1046791167,1046791423,1046792191,1046793215,1046794239,1046794751,1046795007,1046796287,1046797311,1046798335,1046806527,1046814719,1046822911,1046839295,1046843391,1046847487,1046855679,1046872063,1046880767,1046881023,1046888447,1046895359,1046896383,1046897663,1046904831,1046908927,1046910975,1046913023,1046921215,1046929407,1046937599,1047003135,1047068671,1047079167,1047079423,1047085055,1047101439,1047109631,1047117823,1047134207,1047150591,1047150847,1047151103,1047151359,1047151615,1047151871,1047152127,1047152383,1047152639,1047152895,1047153151,1047153407,1047153663,1047153919,1047154175,1047154687,1047155199,1047155455,1047155711,1047155967,1047156223,1047156479,1047156991,1047157247,1047157759,1047158015,1047158271,1047158527,1047158783,1047166975,1047199743,1047265279,1047273471,1047281663,1047289855,1047290879,1047291391,1047298047,1047300095,1047300351,1047306239,1047314431,1047322623,1047330815,1047339007,1047346431,1047346687,1047347199,1047363583,1047371775,1047379967,1047396351,1047461887,1047494655,1047527423,1047529471,1047530495,1047531007,1047531263,1047531775,1047532031,1047532543,1047532799,1047533567,1047534591,1047534847,1047535103,1047535359,1047535615,1047551999,1047560191,1047561215,1047562239,1047563263,1047564287,1047568383,1047576575,1047578623,1047579647,1047580671,1047582719,1047582975,1047583231,1047583487,1047584767,1047592959,1047601151,1047607807,1047608063,1047625727,1047633919,1047642111,1047658495,1047724031,1047726079,1047726335,1047726847,1047727103,1047728127,1047732223,1047732991,1047733247,1047734271,1047734527,1047734783,1047735039,1047737087,1047737343,1047740671,1047740927,1047746559,1047748607,1047770623,1047770879,1047771135,1047773183,1047781375,1047781631,1047782399,1047782655,1047782911,1047785471,1047785727,1047785983,1047786239,1047786495,1047786751,1047787519,1047787775,1047788543,1047789055,1047789567,1047822335,1047838719,1047846911,1047855103,1047863295,1047871487,1047887871,1047920639,1047986175,1048051711,1048117247,1048125439,1048133631,1048150015,1048158207,1048166399,1048182783,1048184831,1048186879,1048188927,1048189951,1048190975,1048191999,1048193023,1048195071,1048199167,1048201215,1048202239,1048203263,1048205311,1048209407,1048211455,1048215551,1048217599,1048219647,1048221695,1048223743,1048225791,1048227839,1048230143,1048230399,1048230655,1048230911,1048231167,1048231423,1048231679,1048231935,1048233983,1048236031,1048238079,1048238591,1048239103,1048240127,1048241151,1048242175,1048244223,1048246271,1048248319,1048313855,1048317951,1048386815,1048387071,1048387327,1048387583,1048401919,1048403967,1048510463,1048575999,1048584191,1048592383,1048600575,1048601599,1048602111,1048602367,1048603647,1048604671,1048605439,1048606719,1048606975,1048607487,1048608255,1048608511,1048608767,1048611583,1048611839,1048616959,1048619007,1048619775,1048620031,1048621055,1048625151,1048633343,1048641535,1048649727,1048657919,1048674303,1048682495,1048690687,1048707071,1048772607,1048838143,1048839167,1048842239,1048843263,1048844287,1048844799,1048845311,1048845567,1048848895,1048849407,1048867327,1048868351,1048871935,1048872447,1048903679,1048911871,1048912383,1048912895,1048913919,1048914943,1048915199,1048915455,1048915711,1048915967,1048916991,1048918015,1048918271,1048918527,1048918783,1048919039,1048919295,1048919551,1048919807,1048920063,1048936447,1048944639,1048952831,1048969215,1048973311,1048973567,1048974335,1048975103,1048976383,1048977407,1048978431,1048978943,1048981503,1048981759,1048982015,1048982527,1048982783,1048983807,1048985599,1048987135,1048987391,1048989695,1048991743,1048993791,1049003263,1049004287,1049004543,1049006079,1049006591,1049007103,1049007359,1049012223,1049012735,1049014271,1049014783,1049025791,1049026815,1049034751,1049067519,1049100287,1049231359,1049235711,1049235967,1049238527,1049243647,1049247743,1049265663,1049265919,1049266175,1049271295,1049273343,1049274111,1049276415,1049277695,1049277951,1049279487,1049279743,1049280511,1049292543,1049292799,1049296895,1049362431,1049363199,1049363455,1049368575,1049368831,1049369343,1049369599,1049370623,1049378815,1049395199,1049405183,1049405439,1049405695,1049406207,1049406463,1049407487,1049407999,1049411583,1049419775,1049422847,1049423103,1049423615,1049423871,1049427967,1049436159,1049444351,1049460735,1049468927,1049477119,1049493503,1049559039,1049698303,1049700351,1049702399,1049706495,1049722879,1049731071,1049739263,1049755647,1049761279,1049761791,1049771263,1049771775,1049773311,1049773567,1049784063,1049784319,1049784575,1049784831,1049785087,1049785343,1049787135,1049787391,1049795583,1049796607,1049798655,1049802751,1049809407,1049809919,1049812991,1049817087,1049821183,1049886719,1049894911,1049903103,1049911295,1049919487,1049927679,1049935871,1049944063,1049952255,1049960447,1049968639,1049985023,1050017791,1050083327,1050128383,1050130431,1050148863,1050157055,1050173439,1050181631,1050185215,1050185471,1050189823,1050198015,1050206207,1050214399,1050673151,1050804223,1050869759,1050935295,1050939135,1050939647,1050940159,1050940671,1050940927,1050941439,1050941695,1050941951,1050942719,1050942975,1050961919,1050962943,1050963967,1050968063,1050992639,1051000831,1051017215,1051033599,1051040511,1051040767,1051041535,1051041791,1051049983,1051066367,1051084287,1051084799,1051131903,1051197439,1051213823,1051230207,1051238399,1051246591,1051254783,1051262975,1051271167,1051279359,1051295743,1051301887,1051302399,1051302655,1051302911,1051303935,1051312127,1051328511,1051394047,1051426815,1051427071,1051428607,1051429119,1051436543,1051436799,1051438079,1051438335,1051440127,1051440383,1051443199,1051459583,1051461631,1051525119,1051533311,1051541503,1051557887,1051566079,1051574271,1051590655,1051721727,1051729919,1051738111,1051754495,1051762687,1051770879,1051779071,1051787263,1051795455,1051803647,1051820031,1051852799,1051918335,1051919871,1051920383,1051922431,1051924479,1051948031,1051949055,1051949311,1051949567,1051983871,1051984383,1051985407,1051985663,1051985919,1051986431,1051986687,1051986943,1051990015,1051990271,1051990527,1051991039,1051991551,1051991807,1051994367,1051994623,1051997439,1051997695,1051999231,1051999743,1052000255,1052002303,1052003327,1052003839,1052005119,1052005631,1052007935,1052008191,1052008703,1052009215,1052010751,1052011263,1052012031,1052012287,1052012543,1052013055,1052013311,1052013567,1052013823,1052015359,1052015615,1052016895,1052017151,1052017407,1052017663,1052018175,1052018431,1052019199,1052019455,1052022527,1052022783,1052041215,1052042239,1052043007,1052043263,1052043519,1052043775,1052044543,1052046079,1052046847,1052047103,1052049407,1052057599,1052065791,1052082175,1052090367,1052098559,1052116991,1052119039,1052121087,1052123135,1052124159,1052125183,1052126207,1052127231,1052129279,1052131327,1052135423,1052137471,1052139519,1052140031,1052141055,1052141567,1052143615,1052145663,1052147711,1052151807,1052153855,1052154879,1052155903,1052157951,1052159999,1052162047,1052164095,1052168191,1052170239,1052172287,1052174335,1052176383,1052178687,1052180479,1052213247,1052223999,1052224255,1052246015,1052247039,1052247295,1052247551,1052254207,1052257279,1052257791,1052258303,1052260607,1052260863,1052262399,1052263423,1052263935,1052264447,1052265471,1052265983,1052266239,1052266495,1052268031,1052268543,1052270591,1052271871,1052272127,1052274175,1052274687,1052274943,1052275199,1052275711,1052276735,1052278783,1052286975,1052287487,1052288255,1052288511,1052289023,1052289279,1052289535,1052290303,1052290559,1052291327,1052291583,1052292095,1052299263,1052299775,1052303359,1052307455,1052309247,1052309503,1052310527,1052310783,1052311039,1052311551,1052312831,1052313087,1052316927,1052317183,1052317951,1052318207,1052318719,1052319231,1052319743,1052319999,1052320255,1052327935,1052328191,1052328447,1052329983,1052330239,1052332031,1052333055,1052333311,1052333567,1052335615,1052336127,1052337663,1052337919,1052340223,1052340479,1052340735,1052341247,1052341503,1052342271,1052342527,1052344319,1052344831,1052345087,1052345343,1052345599,1052345855,1052346879,1052347135,1052347391,1052348415,1052353023,1052353279,1052354559,1052356607,1052358399,1052358655,1052360703,1052360959,1052361215,1052361471,1052361727,1052362239,1052362751,1052363263,1052364543,1052364799,1052365823,1052366079,1052366335,1052366591,1052366847,1052367871,1052368895,1052369407,1052369663,1052369919,1052370175,1052370431,1052370687,1052370943,1052374015,1052375039,1052375551,1052375807,1052376063,1052376319,1052376831,1052377087,1052377599,1052377855,1052378111,1052379135,1052379391,1052379903,1052380159,1052381183,1052381439,1052382975,1052383999,1052384255,1052385279,1052385535,1052388863,1052389119,1052393471,1052395263,1052395775,1052396031,1052396543,1052396799,1052397311,1052397567,1052399871,1052400127,1052401151,1052401663,1052401919,1052402175,1052403711,1052403967,1052404735,1052404991,1052405759,1052408063,1052408575,1052408831,1052409855,1052413951,1052414207,1052414463,1052414975,1052415999,1052416767,1052417023,1052417279,1052417535,1052418047,1052419583,1052420095,1052422143,1052423167,1052423423,1052424703,1052424959,1052426239,1052426495,1052427263,1052427775,1052428031,1052428287,1052429311,1052429567,1052430335,1052433407,1052433919,1052434431,1052435455,1052436479,1052437759,1052438015,1052438271,1052438527,1052439551,1052440575,1052441343,1052441599,1052442623,1052443647,1052446207,1052446719,1052447743,1052448255,1052450815,1052451839,1052452351,1052452863,1052453119,1052453375,1052453887,1052454911,1052455423,1052455935,1052456447,1052456959,1052457983,1052458495,1052458751,1052460031,1052460287,1052460543,1052460799,1052461055,1052463103,1052463615,1052464639,1052465151,1052465663,1052466431,1052468223,1052469247,1052470271,1052470783,1052471039,1052471295,1052472319,1052472575,1052475391,1052479487,1052479743,1052479999,1052483583,1052485631,1052486655,1052486911,1052487167,1052487423,1052487679,1052488703,1052489727,1052490239,1052490751,1052491775,1052493567,1052494847,1052495871,1052496127,1052497407,1052497663,1052497919,1052498431,1052499199,1052499455,1052499967,1052500223,1052500479,1052500991,1052501247,1052501503,1052502015,1052502783,1052503039,1052507647,1052507903,1052508415,1052509695,1052509951,1052511743,1052513023,1052513535,1052514303,1052516351,1052527615,1052528383,1052533759,1052534015,1052540927,1052543999,1052544511,1052546047,1052546559,1052547327,1052547583,1052548607,1052549119,1052549375,1052549631,1052550143,1052550655,1052551167,1052553215,1052553471,1052557311,1052561663,1052573695,1052644095,1052644351,1052647167,1052647423,1052653567,1052653823,1052704767,1052745727,1052746495,1052752895,1052753151,1052769791,1052770303,1052778495,1052786687,1052789759,1052803071,1052804095,1052805119,1052806143,1052808191,1052809215,1052809471,1052809727,1052809983,1052810239,1052811263,1052812287,1052813311,1052814335,1052814591,1052814847,1052815103,1052815359,1052816383,1052817407,1052817663,1052818175,1052818431,1052819455,1052827647,1052835839,1052844031,1052852223,1052868607,1052876799,1052884991,1052901375,1053032447,1053097983,1053106175,1053110271,1053110783,1053114367,1053130751,1053131007,1053131263,1053131775,1053132799,1053133055,1053133311,1053133823,1053134079,1053134591,1053134847,1053135103,1053135359,1053135615,1053135871,1053136127,1053136383,1053136639,1053136895,1053137151,1053137407,1053137663,1053137919,1053138175,1053138431,1053138687,1053138943,1053147135,1053163519,1053294591,1053295103,1053295615,1053296639,1053297407,1053297663,1053297919,1053298175,1053299455,1053299711,1053300735,1053300991,1053301247,1053301759,1053302783,1053303807,1053304319,1053305087,1053305855,1053306111,1053306879,1053307903,1053308927,1053309183,1053309951,1053310207,1053310719,1053310975,1053311487,1053312255,1053312511,1053312767,1053313023,1053314047,1053315071,1053316351,1053316607,1053317119,1053317375,1053317631,1053318143,1053318655,1053319167,1053319423,1053320447,1053320703,1053320959,1053321215,1053321727,1053323263,1053323519,1053325311,1053325567,1053326847,1053327103,1053327359,1053327871,1053328383,1053328639,1053329151,1053329407,1053329663,1053330431,1053330687,1053332479,1053332991,1053334271,1053334527,1053335551,1053336831,1053338111,1053338623,1053338879,1053339135,1053339391,1053339647,1053340159,1053340415,1053340671,1053340927,1053341183,1053341695,1053343743,1053344255,1053344511,1053345791,1053346815,1053350143,1053350399,1053350911,1053351935,1053352191,1053352447,1053352959,1053353215,1053353471,1053360127,1053364223,1053368319,1053376511,1053392895,1053401087,1053409279,1053425663,1053556735,1053564927,1053565183,1053565439,1053565695,1053565951,1053566207,1053566463,1053566719,1053566975,1053567231,1053567487,1053567743,1053567999,1053568255,1053568511,1053568767,1053569023,1053569279,1053569535,1053569791,1053570047,1053570303,1053570559,1053570815,1053571327,1053571583,1053571839,1053572351,1053572607,1053572863,1053573119,1053581311,1053589503,1053597695,1053605887,1053614079,1053622271,1053630463,1053638655,1053655039,1053663231,1053671423,1053687807,1053753343,1053818879,1053819391,1053820159,1053820927,1053825023,1053825791,1053826815,1053827071,1053827583,1053831167,1053831423,1053835263,1053835775,1053837311,1053837567,1053837823,1053838335,1053838591,1053844991,1053845247,1053845503,1053846015,1053846271,1053846527,1053846783,1053847039,1053847551,1053849599,1053849855,1053850367,1053851135,1053851391,1053851647,1053859839,1053860095,1053860863,1053863423,1053864959,1053865215,1053865471,1053865727,1053865983,1053866239,1053866495,1053866751,1053867519,1053867775,1053868287,1053868543,1053868799,1053869567,1053870079,1053870335,1053870847,1053871359,1053871615,1053871871,1053872383,1053872639,1053872895,1053873663,1053876223,1053876991,1053877247,1053877759,1053878271,1053878783,1053879039,1053879295,1053879551,1053880575,1053881087,1053881343,1053881599,1053881855,1053882111,1053882367,1053882623,1053882879,1053883391,1053883647,1053883903,1053884415,1053892607,1053900799,1053917183,1053925375,1053927167,1053927423,1053933567,1053949951,1054015487,1054089215,1054097407,1054105599,1054113791,1054121983,1054130175,1054138367,1054146559,1054179327,1054180351,1054181119,1054181375,1054185215,1054185471,1054186239,1054186495,1054187263,1054187519,1054195711,1054212095,1054277631,1054343167,1054351359,1054359551,1054361599,1054362623,1054363647,1054364671,1054366719,1054367231,1054367743,1054375935,1054380031,1054380287,1054381055,1054381567,1054384127,1054400511,1054408703,1054416895,1054425087,1054441471,1054449663,1054457855,1054474239,1054539775,1054605311,1054613503,1054621695,1054629887,1054638079,1054646271,1054654463,1054662655,1054670847,1054671615,1054672127,1054673151,1054674431,1054674943,1054675199,1054679039,1054687231,1054703615,1054711807,1054719999,1054728447,1054728703,1054728959,1054729215,1054734335,1054734847,1054735103,1054737407,1054801919,1054867455,1055129599,1055195135,1055203327,1055211519,1055219711,1055223807,1055225855,1055227903,1055231999,1055236095,1055252479,1055256575,1055260671,1055326207,1055334399,1055342591,1055358975,1055367167,1055375359,1055391743,1055457279,1055465471,1055465727,1055465983,1055466239,1055466495,1055466751,1055467007,1055467263,1055467519,1055467775,1055468031,1055468287,1055468543,1055468799,1055469055,1055469567,1055469823,1055470079,1055470335,1055470591,1055470847,1055471103,1055471359,1055471615,1055471871,1055472127,1055472383,1055472639,1055472895,1055473151,1055473407,1055473663,1055490047,1055522815,1055588351,1055653887,1055784959,1055850495,1055916031,1055924223,1055932415,1055940607,1055948799,1055950591,1055950847,1055952895,1055954943,1055956991,1055965183,1055973375,1055981567,1055989759,1055993855,1055997951,1056014335,1056022527,1056030719,1056047103,1056178175,1056178431,1056178943,1056180991,1056181503,1056183039,1056183295,1056184319,1056184575,1056185599,1056185855,1056186367,1056187135,1056187391,1056187903,1056188159,1056188927,1056189183,1056190463,1056191487,1056191743,1056191999,1056192255,1056192511,1056193279,1056194303,1056194559,1056210943,1056219135,1056227327,1056243711,1056251903,1056260095,1056276479,1056374783,1056440319,1056473087,1056505855,1056514047,1056522239,1056538623,1056546815,1056555007,1056571391,1056669695,1056702463,1056964607,1059061759,1059323903,1061206783,1061207039,1061227519,1061227775,1061458943,1061459199,1061558271,1061559295,1061588735,1061588991,1061762047,1061762303,1061776383,1061776639,1061833727,1061833983,1061853695,1061854207,1061939711,1061940223,1062000639,1062000895,1062069247,1062070271,1062219519,1062219775,1062262783,1062263039,1062429695,1062430207,1062486271,1062486527,1062530047,1062531071,1062545919,1062546431,1062597375,1062597631,1062871551,1062872319,1063051263,1063051775,1063052287,1063052543,1063052799,1063053055,1063054335,1063055103,1063055871,1063056639,1063057663,1063057919,1063058175,1063058687,1063058943,1063059199,1063059455,1063390207,1063390463,1063393279,1063393535,1063568895,1063569151,1063690239,1063690495,1063747839,1063748095,1063748607,1063749119,1063749631,1063749887,1063750143,1063750399,1063750655,1063751679,1063895039,1063899135,1064124927,1064125695,1064125951,1064126207,1064126719,1064126975,1064127487,1064127999,1064171007,1064171519,1064171775,1064204287,1064205311,1064221951,1064222207,1064222975,1064223231,1064223487,1064223743,1064223999,1064224511,1064228351,1064228607,1064229887,1064230143,1064445183,1064445439,1065067519,1065068031,1065069055,1065069311,1065506047,1065506303,1065511167,1065511423,1065519871,1065520127,1065521407,1065525247,1065526015,1065526271,1065529343,1065537535,1065539583,1065539839,1065547775,1065548031,1065611263,1065615359,1065737471,1065737727,1065811967,1065820159,1065830399,1065832447,1065852927,1065853183,1065855743,1065855999,1065873407,1065877503,1065906175,1065908223,1065989119,1065989375,1066139647,1066140415,1066140671,1066143743,1066213375,1066213631,1066213887,1066214911,1066217983,1066218239,1066218495,1066219775,1066220031,1066220543,1066220799,1066270719,1066270975,1066271487,1066271743,1066271999,1066272767,1066273535,1066274559,1066274815,1066311679,1066315775,1066352639,1066355711,1066355967,1066356479,1066356735,1066358271,1066358527,1066362623,1066362879,1066363135,1066363391,1066363647,1066364159,1066364415,1066369023,1066586623,1066586879,1066620159,1066620415,1066696191,1066696447,1066827775,1066828031,1066829823,1066830079,1067237887,1067238399,1067431167,1067431423,1067481855,1067482111,1067486207,1067486463,1067487487,1067487743,1067575295,1067577343,1067631103,1067631359,1067740159,1067741183,1067824895,1067825151,1067935231,1067935487,1068017663,1068018175,1068123135,1068123647,1068175871,1068176383,1068199935,1068204031,1068346367,1068346879,1068473343,1068474367,1068498943,1069547519,1070646015,1070646271,1070701055,1070701311,1070729471,1070729727,1071106559,1071106815,1071135231,1071135487,1071141375,1071142143,1071144959,1071153151,1071156735,1071157247,1071157503,1071157759,1071158271,1071160319,1071160575,1071161855,1071162111,1071163903,1071164159,1071164415,1071164671,1071165439,1071165695,1071170815,1071171071,1071182335,1071182591,1071190015,1071190527,1071191295,1071191551,1071192063,1071192575,1071197183,1071197439,1071201023,1071201279,1071202815,1071203071,1071204095,1071204351,1071204607,1071206911,1071207167,1071207935,1071208191,1071212287,1071212543,1071228927,1071229183,1071246591,1071246847,1071250943,1071251199,1071251455,1071252479,1071253247,1071253503,1071254271,1071254527,1071254783,1071255039,1071255295,1071255551,1071255807,1071256063,1071262463,1071262719,1071264767,1071265023,1071265279,1071265791,1071266303,1071267071,1071267327,1071271679,1071271935,1071272191,1071272447,1071278847,1071279103,1071280895,1071281151,1071281919,1071282175,1071282943,1071283199,1071284479,1071284735,1071287807,1071288319,1071288575,1071288831,1071289087,1071289343,1071289599,1071289855,1071291647,1071291903,1071292671,1071292927,1071293183,1071293439,1071293695,1071293951,1071294207,1071294463,1071295743,1071295999,1071296255,1071296511,1071297791,1071298047,1071300095,1071300607,1071301631,1071303935,1071304191,1071304703,1071305215,1071305727,1071305983,1071306239,1071308799,1071309055,1071309823,1071310335,1071310847,1071311103,1071312127,1071312383,1071312895,1071313407,1071313919,1071314175,1071314687,1071314943,1071315199,1071315455,1071315711,1071315967,1071316991,1071318783,1071319039,1071322879,1071323135,1071362303,1071362815,1071398911,1071399167,1071431679,1071431935,1071432191,1071432447,1071432703,1071477247,1071480831,1071488511,1071489023,1071497215,1071497471,1071513599,1071513855,1071514879,1071515135,1071515391,1071515647,1071515903,1071516671,1071516927,1071518463,1071518719,1071519231,1071519487,1071523839,1071524095,1071525119,1071525375,1071526655,1071526911,1071529215,1071529471,1071529983,1071530239,1071534591,1071534847,1071538687,1071538943,1071540223,1071540479,1071540735,1071542271,1071543039,1071544575,1071545087,1071545599,1071546367,1071546623,1071546879,1071547135,1071552511,1071552767,1071560703,1071560959,1071561215,1071561471,1071561727,1071561983,1071562239,1071562495,1071562751,1071565311,1071565567,1071568895,1071569151,1071569407,1071577087,1071577343,1071577599,1071577855,1071578111,1071582719,1071582975,1071583743,1071583999,1071586559,1071586815,1071590399,1071590655,1071595263,1071595519,1071619839,1071620095,1071628543,1071628799,1071631359,1071631615,1072211967,1072212223,1072228863,1072229375,1072361471,1072361727,1072707327,1072707583,1072923135,1072923391,1072923647,1072923903,1072924159,1072924415,1072924671,1072925439,1072925695,1072926719,1072926975,1072927487,1072929023,1072929279,1072930303,1072931071,1072931327,1072931583,1072931839,1072932095,1072932351,1072932607,1072932863,1072933887,1072934399,1072935423,1072935679,1072935935,1072936191,1072936447,1072937215,1072937471,1072938239,1072938495,1072939007,1072939263,1072939519,1072940031,1072941055,1072942079,1072943103,1072945151,1072950271,1072950527,1073022975,1073025535,1073026047,1073026303,1073026559,1073027071,1073028607,1073029119,1073031679,1073031935,1073035263,1073036031,1073036543,1073037055,1073037311,1073037823,1073038335,1073043455,1073043967,1073044735,1073044991,1073045247,1073045503,1073047551,1073047807,1073048063,1073049343,1073049599,1073052671,1073075199,1073075455,1073076735,1073076991,1073115135,1073115391,1073115647,1073124351,1073124607,1073126655,1073126911,1073127423,1073135615,1073201151,1073201407,1073201663,1073201919,1073202175,1073202431,1073202687,1073202943,1073203199,1073203455,1073203711,1073203967,1073204223,1073204479,1073204735,1073204991,1073205247,1073209343,1073360895,1073361919,1073362175,1073362431,1073362687,1073362943,1073363455,1073363711,1073364223,1073364991,1073373183,1073381375,1073385471,1073386495,1073389567,1073390591,1073392895,1073393151,1073396735,1073397247,1073442303,1073442815,1073444095,1073444351,1073445375,1073445631,1073454591,1073454847,1073473535,1073473791,1074005503,1074005759,1074006271,1074006527,1074012671,1074013183,1074020351,1074028543,1074047487,1074047999,1074065663,1074065919,1074118655,1074120959,1074121215,1074125055,1074125311,1074126847,1074127359,1074130943,1074131199,1074135039,1074184191,1074188287,1074192639,1074193919,1074194687,1074196735,1074196991,1074197247,1074197759,1074198015,1074198271,1074199551,1074199807,1074200319,1074212863,1074216959,1074233343,1074241535,1074251263,1074251775,1074262527,1074266111,1074397439,1074398975,1074399231,1074408191,1074408447,1074462463,1074463743,1074494719,1074495743,1074513407,1074527999,1074528255,1074532351,1074532607,1074544639,1074544895,1074545663,1074546431,1074546687,1074546943,1074547455,1074547711,1074563839,1074564095,1074564351,1074564607,1074564863,1074565119,1074565375,1074565887,1074566143,1074566399,1074571775,1074572031,1074572287,1074572543,1074572799,1074573055,1074573311,1074573567,1074573823,1074574079,1074574335,1074574591,1074593279,1074593535,1074698495,1074698751,1074708991,1074709247,1074733055,1074737151,1074745343,1074757631,1074765823,1074777343,1074777599,1074790655,1074790911,1074793471,1074795519,1074796543,1074796799,1074798591,1074799615,1074800639,1074801151,1074802431,1074802687,1074804223,1074804991,1074806015,1074806271,1074821119,1074823167,1074839551,1074847743,1074927871,1074928127,1074937855,1074946047,1074954239,1074955007,1074955263,1074955775,1074962431,1074970623,1075165183,1075167231,1075265535,1075269631,1075407871,1075408895,1075421183,1075429375,1075478527,1075494911,1075557887,1075558911,1075576831,1075585023,1075609599,1075613695,1075617791,1075621887,1075634175,1075636223,1075646463,1075648511,1075676415,1075676671,1075676927,1075677183,1075677439,1075677695,1075677951,1075678207,1075679231,1075683327,1075688703,1075688959,1075689215,1075776255,1075776511,1075789567,1075789823,1075845119,1075845375,1075849215,1075849471,1075855359,1075871743,1075904511,1075920895,1075970047,1075973375,1075973631,1075975679,1075975935,1075980287,1075980799,1075981311,1075982335,1075984639,1075984895,1075985151,1075985407,1075990783,1075991295,1075991551,1075992063,1075992319,1075993087,1075994111,1075994623,1076000255,1076000767,1076002047,1076002559,1076011007,1076023039,1076023295,1076026111,1076028671,1076028927,1076029183,1076033535,1076033791,1076034303,1076034559,1076034815,1076035071,1076035327,1076036351,1076036607,1076046847,1076047103,1076049151,1076049407,1076049919,1076050175,1076174847,1076178943,1076256767,1076259839,1076307967,1076308223,1076310015,1076310271,1076338687,1076346879,1076357375,1076357631,1076358143,1076358399,1076358655,1076358911,1076364287,1076365311,1076365567,1076365823,1076390143,1076390399,1076394751,1076395007,1076401151,1076401407,1076408319,1076412415,1076416511,1076422143,1076422655,1076423167,1076423679,1076424703,1076428799,1076531199,1076533247,1076543487,1076559871,1076576255,1076576767,1076578303,1076578815,1076579327,1076579583,1076579839,1076580351,1076584447,1076585471,1076590591,1076591615,1076592639,1076606975,1076607999,1076609023,1076690943,1076707327,1076734719,1076734975,1076735231,1076735487,1076756479,1076772863,1076782591,1076782847,1076783103,1076783359,1076784127,1076784639,1076850687,1076851455,1076854783,1076855039,1076879359,1076879871,1076880383,1076880639,1076881151,1076881663,1076881919,1076953087,1076969471,1077002495,1077002751,1077009919,1077010175,1077012991,1077013247,1077016063,1077016319,1077016575,1077016831,1077018111,1077018623,1077055487,1077059583,1077061119,1077061375,1077064703,1077065215,1077065727,1077067775,1077155071,1077155327,1077170431,1077170687,1077191679,1077191935,1077192191,1077192447,1077192703,1077444607,1077452799,1077453823,1077454079,1077456383,1077456639,1077457407,1077457919,1077458175,1077458431,1077460991,1077465855,1077466111,1077469183,1077477375,1077506047,1077510143,1077551103,1077555199,1077641215,1077659647,1077661695,1077665791,1077807615,1077807871,1077808895,1077809151,1077809919,1077810175,1077810687,1077810943,1077811199,1077811455,1077811711,1077812479,1077812991,1077813247,1077814271,1077814783,1077817855,1077818879,1077819391,1077819903,1077854207,1077854463,1077861375,1077861631,1077868287,1077868543,1077886975,1077903359,1077962495,1077962751,1077963775,1077964031,1077964799,1077965055,1077966847,1077967103,1077967359,1077967615,1077967871,1077976063,1077977087,1077985279,1078006015,1078006271,1078007807,1078008319,1078008575,1078010111,1078010367,1078012671,1078012927,1078017279,1078017535,1078018047,1078034431,1078067199,1078071295,1078076415,1078116351,1078128639,1078247423,1078251519,1078254847,1078255359,1078280191,1078288383,1078311935,1078312191,1078432255,1078432511,1078436863,1078437119,1078456319,1078460415,1078510591,1078511615,1078512639,1078512895,1078513407,1078513663,1078517759,1078525951,1078594559,1078594815,1078595583,1078596607,1078611967,1078612223,1078649087,1078649343,1078722559,1078725631,1078725887,1078726143,1078726399,1078727423,1078727935,1078729215,1078729727,1078733311,1078733823,1078734847,1078737919,1078738943,1078739455,1078739967,1078743039,1078746111,1078747135,1078749183,1078751231,1078753279,1078755327,1078757375,1078767615,1078768639,1078769663,1078771711,1078773759,1078775807,1078777855,1078780927,1078781183,1078781951,1078782463,1078782719,1078782975,1078783743,1078783999,1078784255,1078788095,1078791167,1078793471,1078793727,1078793983,1078794495,1078795007,1078795263,1078795519,1078796031,1078797311,1078800383,1078800639,1078801151,1078805503,1078805759,1078806015,1078806271,1078806783,1078807295,1078808831,1078809855,1078811903,1078812415,1078813951,1078814207,1078814463,1078814719,1078815999,1078816255,1078817791,1078818559,1078820863,1078894591,1078898687,1078978047,1078978559,1078979071,1078982655,1078982911,1079318527,1079319551,1079320575,1079328767,1079378943,1079379455,1079380735,1079381247,1079383039,1079383295,1079383807,1079384063,1079384319,1079384575,1079385087,1079385855,1079386623,1079386879,1079387135,1079387903,1079388159,1079389183,1079391743,1079392255,1079393279,1079394303,1079395327,1079396095,1079396351,1079397375,1079397631,1079399679,1079399935,1079402495,1079403263,1079403519,1079403775,1079405567,1079406079,1079407359,1079407615,1079408383,1079408639,1079408895,1079409407,1079409919,1079410175,1079411455,1079411711,1079413759,1079414271,1079415039,1079415295,1079422975,1079423999,1079425791,1079426047,1079427327,1079427583,1079431679,1079432191,1079432959,1079433215,1079433471,1079435263,1079435775,1079436287,1079439359,1079441407,1079443199,1079443455,1079459839,1079508991,1079566847,1079567103,1079567359,1079567615,1079569919,1079570175,1079574527,1079578623,1079615487,1079619583,1079623679,1079627775,1079664639,1079668735,1079854591,1079855103,1079861247,1079865343,1079917055,1079917311,1079917823,1079918079,1079918335,1079918591,1079924223,1079924479,1079926783,1079927039,1079962879,1079963135,1079992319,1079992575,1080000511,1080001535,1080006143,1080006655,1080016383,1080016639,1080016895,1080017919,1080018431,1080167935,1080168447,1080172543,1080176639,1080197119,1080198143,1080201215,1080213503,1080229887,1080233983,1080238079,1080255999,1080270847,1080279039,1080492031,1080502271,1080504319,1080508415,1080520703,1080524799,1080557567,1080573951,1080582143,1080590335,1080598527,1080606719,1080623103,1080958975,1080960255,1080960511,1080963071,1080967167,1080975359,1080981503,1080988671,1080989183,1080999935,1081016319,1081037311,1081037567,1081038335,1081040895,1081082879,1081083903,1081085951,1081086975,1081094655,1081095167,1081098495,1081098751,1081099263,1081100287,1081104383,1081105407,1081106431,1081106943,1081107199,1081129983,1081130495,1081149695,1081149951,1081150463,1081150975,1081151487,1081151743,1081151999,1081160703,1081160959,1081212927,1081278463,1081344255,1081346047,1081346559,1081348095,1081348351,1081352191,1081352447,1081353215,1081353471,1081354239,1081354751,1081368575,1081369087,1081369343,1081370111,1081376767,1081377279,1081377535,1081377791,1081378047,1081378559,1081379327,1081379839,1081384959,1081385215,1081385471,1081387519,1081387775,1081388031,1081388287,1081391103,1081393151,1081393407,1081393663,1081393919,1081397247,1081397759,1081398783,1081399295,1081401343,1081401599,1081402111,1081402367,1081402623,1081402879,1081403391,1081404415,1081404927,1081405183,1081405439,1081405695,1081405951,1081409535,1081410047,1081410303,1081410559,1081411583,1081413119,1081413375,1081413631,1081416191,1081416447,1081419775,1081420287,1081421823,1081422079,1081423871,1081424127,1081424383,1081424639,1081442303,1081442559,1081443071,1081443327,1081444351,1081445375,1081446399,1081460735,1081462783,1081463295,1081463807,1081464319,1081464575,1081465087,1081469439,1081469695,1081475071,1081479167,1081483263,1081521663,1081521919,1081532415,1081540607,1081544703,1081548799,1081565183,1081573375,1081589759,1081593855,1081597951,1081628671,1081629695,1081630719,1081634303,1081634815,1081637375,1081916415,1081916927,1081972735,1081972991,1082048511,1082064895,1082122239,1082130431,1082314751,1082315263,1082315519,1082318847,1082351103,1082351615,1082439167,1082439423,1082617599,1082617855,1082683391,1082687487,1082720255,1082722303,1082722559,1082722815,1082723327,1082723839,1082724351,1082724607,1082724863,1082725375,1082725887,1082726399,1082727423,1082727679,1082727935,1082728447,1082728959,1082729471,1082729983,1082730239,1082730495,1082731007,1082731519,1082732031,1082732287,1082732543,1082733055,1082733567,1082734335,1082734591,1082735103,1082735615,1082736639,1082737151,1082737407,1082737663,1082737919,1082738175,1082738687,1082738943,1082739455,1082739711,1082739967,1082740479,1082740735,1082741759,1082742015,1082742271,1082742527,1082742783,1082743039,1082743295,1082743551,1082743807,1082744319,1082744831,1082745855,1082746367,1082746623,1082746879,1082747135,1082747391,1082747647,1082747903,1082748159,1082748927,1082749183,1082749439,1082749695,1082749951,1082750207,1082750463,1082750719,1082750975,1082751231,1082751487,1082751999,1082752255,1082752511,1082752767,1082753023,1082761215,1082769407,1082785791,1082791167,1082791423,1082820351,1082820607,1082820863,1082821119,1082945535,1082949631,1082953727,1082957823,1082982399,1083015167,1083142399,1083142655,1083261695,1083261951,1083267583,1083268095,1083396095,1083400191,1083437055,1083441151,1083621375,1083637759,1083686911,1083703295,1083982335,1083982591,1084067583,1084067839,1084121087,1084121599,1084121855,1084122111,1084187647,1084187903,1084208383,1084208639,1085276159,1085284351,1085292543,1085296639,1085300735,1085317119,1085321215,1085325311,1085333503,1085341695,1085439999,1085448191,1085456383,1085457919,1085458175,1085464575,1085526015,1085530111,1085538303,1085603839,1085849599,1085857791,1085915135,1085923327,1085934079,1085934335,1085935103,1085935615,1085938687,1085939711,1085997055,1086013439,1086024703,1086024959,1086028543,1086028799,1086042111,1086046207,1086050559,1086050815,1086051327,1086068223,1086068735,1086070783,1086074879,1086209535,1086210047,1086222847,1086223359,1086223871,1086224383,1086236415,1086236671,1086241279,1086241535,1086245119,1086245375,1086254591,1086255103,1086267391,1086271487,1086309119,1086309375,1086310655,1086310911,1086311167,1086311679,1086314239,1086314495,1086315519,1086316031,1086317311,1086317567,1086318335,1086318591,1086320383,1086320639,1086322687,1086322943,1086358015,1086358271,1086421503,1086422015,1086922751,1086930943,1086955519,1086971903,1087005439,1087005951,1087006463,1087006719,1087006975,1087007487,1087016959,1087021055,1087062015,1087070207,1087360511,1087360767,1087361023,1087363071,1087364351,1087364607,1087377663,1087377919,1087399935,1087400447,1087415551,1087415807,1087419647,1087419903,1087420159,1087429631,1087429887,1087437311,1087437567,1087441919,1087442175,1087444223,1087444479,1087494143,1087496191,1087500543,1087500799,1087501055,1087501311,1087501567,1087501823,1087502591,1087502847,1087503103,1087503615,1087514623,1087516671,1087520767,1087521023,1087521279,1087521535,1087582719,1087582975,1087587583,1087587839,1087612927,1087613183,1087676927,1087677439,1087686143,1087686399,1087686655,1087686911,1087710719,1087710975,1087715327,1087717375,1087743743,1087743999,1087758335,1087766527,1087781119,1087781631,1087781887,1087782143,1087793663,1087793919,1087837695,1087837951,1087860991,1087861247,1087861503,1087861759,1087862783,1087864831,1087872767,1087873535,1087883263,1087883519,1088424447,1088424959,1088425983,1088426239,1088426495,1088426751,1088427007,1088427263,1088427519,1088446463,1088458751,1088462847,1088471039,1088477183,1088477439,1088485375,1088503807,1088508927,1088509951,1088510975,1088516095,1088520191,1088524287,1088526335,1088528383,1088544767,1088550655,1088550911,1088552959,1088557055,1088566271,1088566783,1088567039,1088567295,1088569343,1088585727,1088591871,1088592383,1088593407,1088593919,1088602111,1088618495,1088626687,1088630783,1088634879,1088638975,1088647167,1088651263,1088667647,1088671743,1088673791,1088675839,1088676863,1088684031,1088946175,1089055231,1089055487,1089106687,1089106943,1089107455,1089107711,1089151231,1089151487,1089152255,1089152511,1089153279,1089153535,1089153791,1089154047,1089154303,1089154559,1089158399,1089158655,1089167359,1089171455,1089191935,1089200127,1089200383,1089200639,1089200895,1089201407,1089201663,1089201919,1089202175,1089202431,1089202687,1089202943,1089203199,1089203455,1089203711,1089203967,1089204479,1089204735,1089206527,1089206783,1089207551,1089207807,1089208063,1089228799,1089229311,1089306623,1089339391,1089391359,1089391615,1089391871,1089405951,1089415167,1089419263,1089423359,1089423871,1089425407,1089429503,1089431551,1089432575,1089437695,1089462783,1089463039,1089463295,1089465343,1089466367,1089490175,1089490431,1089880063,1089881087,1089882111,1089884159,1089888255,1089961983,1089970175,1089974271,1090130175,1090130431,1090130943,1090131199,1090131455,1090146303,1090150399,1090207743,1090215935,1090276863,1090277887,1090278911,1090279935,1090281983,1090283007,1090284031,1090285055,1090286079,1090287103,1090288639,1090288895,1090290687,1090290943,1090291199,1090291455,1090291711,1090291967,1090292223,1090292479,1090292735,1090293503,1090293759,1090294015,1090294271,1090294527,1090294783,1090295039,1090295295,1090295807,1090296063,1090296575,1090297087,1090297599,1090297855,1090298367,1090298623,1090299135,1090299391,1090299647,1090299903,1090300415,1090300671,1090300927,1090301183,1090301439,1090301695,1090302207,1090302463,1090302719,1090302975,1090303231,1090303487,1090303743,1090303999,1090304255,1090304511,1090304767,1090305023,1090305279,1090305791,1090306047,1090330623,1090338815,1090345983,1090346239,1090346495,1090355199,1090363391,1090387967,1090396159,1090417663,1090417919,1090418431,1090418687,1090428159,1090428415,1090445311,1090453503,1090511871,1090512639,1090519039,1090781183,1091043327,1091043839,1091044095,1091044607,1091044863,1091045375,1091045631,1091045887,1091046399,1091046655,1091047167,1091047423,1091048703,1091048959,1091050751,1091054335,1091058175,1091061759,1091065599,1091066879,1091067647,1091067903,1091068927,1091072511,1091073535,1091074047,1091075583,1091076351,1091079935,1091080703,1091081983,1091082239,1091083007,1091083775,1091094527,1091098367,1091108863,1091109375,1091109631,1091110143,1091110399,1091110911,1091111167,1091111423,1091111935,1091112191,1091112703,1091112959,1091113727,1091116287,1091119871,1091123711,1091127295,1091131135,1091134463,1091138047,1091141887,1091145471,1091149311,1091156735,1091158015,1091727359,1091731455,1091747839,1091748607,1091748863,1091749119,1091749375,1091751935,1091756031,1091809535,1091809791,1091846143,1091854335,1091858431,1091862527,1091895295,1091960831,1092059135,1092065279,1092075519,1092091903,1093017599,1093018111,1093018367,1093018623,1093019135,1093021695,1093025791,1093033983,1093035007,1093035263,1093038079,1093038335,1093040127,1093040639,1093058559,1093066751,1093074943,1093091327,1093099519,1093107711,1093112063,1093112319,1093113855,1093114111,1093116927,1093117183,1093118207,1093118463,1093127423,1093128191,1093129215,1093129727,1093129983,1093130239,1093134335,1093135359,1093140479,1093157375,1093157631,1093160447,1093160703,1093173759,1093174271,1093176063,1093176319,1093176831,1093177087,1093221119,1093221375,1093221631,1093221887,1093258495,1093258751,1093285887,1093286143,1093697535,1093699071,1093700607,1093701631,1093703935,1093704447,1093708287,1093709311,1093716479,1093717759,1093719807,1093720319,1093721343,1093723391,1093723647,1093724415,1093725183,1093730303,1093736703,1093736959,1093755903,1093756927,1093758463,1093758975,1093767167,1093767679,1093768703,1093769215,1093771263,1093787647,1093790719,1093791743,1093943295,1093947391,1093959679,1093967871,1093976063,1093984255,1093986303,1093990399,1093992447,1094064127,1094064383,1094064639,1094064895,1094065663,1094065919,1094066175,1094066431,1094067711,1094068223,1094074879,1094075135,1094079743,1094079999,1094088703,1094089215,1094146047,1094146303,1094150911,1094151167,1094190591,1094191103,1094332415,1094333439,1094531071,1094531839,1094532607,1094532863,1094552575,1094552831,1094553599,1094553855,1094556415,1094556671,1094556927,1094557183,1094558207,1094558463,1094559231,1094559487,1094565887,1094582271,1095450623,1095467007,1095486463,1095487487,1095489791,1095490047,1096253439,1096269823,1096278015,1096286207,1096548351,1096810495,1096810751,1096884223,1096888319,1096925183,1096941567,1097007103,1097016319,1097016575,1097018367,1097018623,1097022719,1097023231,1097031679,1097039871,1097056255,1097131263,1097131519,1097596927,1097637887,1097646079,1097727999,1097736191,1097738239,1097738495,1097739263,1097739519,1097740031,1097740287,1097756415,1097756671,1097768959,1097776895,1097777151,1097785343,1097793535,1097801727,1097830399,1097834495,1097896191,1097897215,1097947135,1097949183,1097951231,1097953279,1098387967,1098388223,1098388479,1098804223,1098804479,1098891263,1098891519,1100226815,1100227071,1100447743,1100450815,1100451071,1100456959,1100457215,1100457727,1100457983,1100459007,1100459519,1100507647,1100507903,1100618751,1100619007,1100916991,1100917247,1101182975,1101183487,1101267711,1101267967,1101271807,1101272063,1101304831,1101305855,1101352959,1101355007,1101459455,1101461503,1101475839,1101479935,1101484031,1101488127,1101650431,1101650943,1101750783,1101751295,1101797375,1101798399,1101803519,1101804543,1101871103,1101873151,1101963263,1101963775,1102001151,1102001407,1102001663,1102001919,1102053375,1102315519,1102381055,1102382079,1102383103,1102383615,1102383871,1102385151,1102386175,1102387199,1102387711,1102388223,1102388479,1102388735,1102388991,1102389247,1102393343,1102397439,1102405631,1102409471,1102409727,1102446591,1102448383,1102449151,1102449407,1102454527,1102454783,1102512127,1102516223,1102707711,1102707967,1103244799,1103245055,1103548415,1103550463,1103603711,1103605759,1103623167,1103623679,1103874047,1103874303,1103930879,1103931135,1103987967,1103988223,1103996927,1103997439,1104003327,1104003583,1104166911,1104168959,1104265215,1104265727,1104492287,1104492543,1104510975,1104511487,1104776191,1104776447,1104842751,1104844799,1105034495,1105034751,1105099519,1105099775,1105529855,1105530367,1105558527,1105559039,1105559551,1105560063,1105561087,1105561599,1105562111,1105562623,1105563135,1105563647,1105564159,1105564671,1105565183,1105565695,1105566207,1105566719,1105567231,1105567743,1105568511,1105568767,1106469887,1106470911,1106475007,1106475519,1106758655,1106759167,1106759679,1106767871,1106768383,1106768895,1106769919,1107181567,1107185663,1107188735,1107189759,1107238911,1107239167,1107239679,1107240191,1107240447,1107240959,1107241215,1107241471,1107241727,1107242495,1107243007,1107247103,1107275775,1107279871,1107288063,1107292159,1107380223,1107381247,1107399167,1107399423,1107695103,1107695359,1107704831,1107705855,1107771391,1107779583,1107820543,1107853311,1107886079,1107894271,1107914751,1107927039,1107927295,1107927551,1107928063,1107928575,1107929087,1107929855,1107930111,1107930367,1107930623,1107931135,1107932159,1107933695,1107934207,1107935231,1107951615,1108025343,1108029439,1108033535,1108041727,1108054015,1108066303,1108492287,1108500479,1108525055,1108541439,1108748031,1108748287,1108762879,1108763135,1108774911,1108775167,1108779007,1108783103,1108788223,1108789247,1108790271,1108791295,1108792319,1108793343,1108793855,1108794367,1108794879,1108796415,1108796927,1108797439,1108797695,1108797951,1108798463,1108798719,1108798975,1108799231,1108799487,1108799743,1108799999,1108800255,1108800511,1108800767,1108801023,1108801279,1108801535,1108801791,1108803583,1108836351,1108844543,1108852735,1108852991,1109458943,1109460479,1109460735,1109460991,1109464063,1109464319,1109464575,1109465087,1109467135,1109467391,1109467647,1109469183,1109473279,1109474303,1109474559,1109474815,1109475071,1109475327,1109475583,1109475839,1109476095,1109479423,1109481471,1109481727,1109483519,1109483775,1109484287,1109484543,1109485567,1109487615,1109489663,1109594623,1109595135,1109595391,1109595647,1109595903,1109596159,1109596415,1109596927,1109597695,1109597951,1109598207,1109681151,1109682175,1109688319,1109696511,1109705727,1109705983,1109707519,1109707775,1109709823,1109710079,1109819391,1109848063,1109848575,1109848831,1109849087,1109852159,1109918463,1109918719,1109919487,1109919743,1109919999,1109920255,1109920767,1109921023,1109921279,1109921791,1109923583,1109923839,1109925887,1109926655,1109927167,1109927423,1109927679,1109928959,1109929983,1109930751,1109931007,1109931263,1109931519,1109932287,1109932543,1109932799,1109934591,1109934847,1109936127,1109936383,1109936639,1109937151,1109937663,1109950463,1109962751,1109966847,1109969407,1109970431,1109970687,1109979135,1109983231,1110056959,1110061055,1110065151,1110126591,1110130687,1110250751,1110251007,1110270207,1110270463,1110276095,1110278143,1110310911,1110355967,1110358015,1110376447,1110442239,1110442751,1110443007,1110443519,1110444287,1110446847,1110447103,1110447359,1110447615,1110448383,1110448639,1110449919,1110450175,1110451199,1110451455,1110451711,1110451967,1110452223,1110458367,1110458623,1110458879,1110459135,1110459391,1110459647,1110460159,1110460927,1110461183,1110461695,1110462207,1110462975,1110463231,1110463487,1110463999,1110464767,1110465023,1110465535,1110466047,1110466303,1110472447,1110473727,1110473983,1110474239,1110474495,1110474751,1110540287,1110573055,1110638591,1110642687,1110644735,1110663167,1110667263,1110671359,1110675455,1110679551,1110683647,1110700031,1110704127,1110854143,1110854399,1110863871,1110865919,1110867455,1110867967,1110887423,1110887679,1110917631,1110917887,1110929407,1110933503,1111195647,1111212031,1111217151,1111218175,1111218431,1111219967,1111220223,1111228415,1111244799,1111468031,1111468543,1111485183,1111485439,1111916543,1111949311,1111982079,1111998463,1112423935,1112424191,1112424447,1112440831,1112498175,1112506367,1112530943,1112539135,1112645631,1112653823,1112657919,1112666111,1112666367,1112801279,1112801535,1112801791,1112802047,1112802815,1112805375,1112805631,1112806399,1112808959,1112810239,1112810495,1112812799,1112813311,1112813567,1112813823,1112815359,1112815615,1112816127,1112816639,1112816895,1112817663,1112818175,1112818431,1112818687,1112818943,1112819711,1112819967,1112820223,1112820479,1112820735,1112820991,1112821247,1112821503,1112821759,1112825343,1112825599,1112867327,1112867583,1112869887,1112870143,1112873983,1112875007,1112875519,1112875775,1112889855,1112890367,1112931327,1112931839,1113033983,1113034239,1113038847,1113039103,1113048063,1113048575,1113211391,1113211903,1113212671,1113212927,1113213695,1113214207,1113214463,1113215231,1113215487,1113215999,1113216511,1113217023,1113217279,1113217535,1113218559,1113218815,1113219071,1113219839,1113220095,1113223423,1113223679,1113224191,1113473023,1113473279,1113474559,1113474815,1113475327,1113475583,1113476863,1113477119,1113479423,1113479679,1113591807,1113595903,1113596415,1113596927,1113597183,1113597439,1113597695,1113598463,1113599487,1113599999,1113600255,1113603071,1113603327,1113603583,1113603839,1113604095,1113636863,1113645055,1113653247,1113657343,1113661439,1113665535,1113669631,1113677823,1113684991,1113685247,1113695231,1113695487,1113697279,1113697791,1113699327,1113700351,1113702399,1113710591,1113718783,1113743359,1113997311,1114005503,1114013695,1114017791,1114050559,1114050815,1114051071,1114051327,1114051583,1114051839,1114052095,1114054655,1114062847,1114085375,1114086399,1114505215,1114506239,1114506751,1114507263,1114517503,1114518271,1114520063,1114520319,1114520575,1114520831,1114533375,1114533887,1114537983,1114550271,1114578943,1114583039,1114585087,1114586111,1114611711,1114615807,1114669055,1114669311,1114681343,1114685439,1114730495,1114734591,1114781695,1114781951,1114869247,1114869503,1114870015,1114870783,1114872575,1114872831,1114931199,1114963967,1115033599,1115034623,1115037695,1115038719,1115039743,1115039999,1115040255,1115040511,1115040767,1115043839,1115044095,1115044607,1115044863,1115045375,1115045887,1115062271,1115078655,1115086847,1115087871,1115092223,1115092479,1115092735,1115114495,1115114751,1115115007,1115117055,1115117311,1115118335,1115118591,1115119615,1115127807,1115131903,1115132671,1115132927,1115133183,1115133439,1115133951,1115134207,1115134463,1115134975,1115135487,1115135999,1115144191,1115693055,1115697151,1115705343,1115709439,1115783167,1115791359,1115795455,1115799551,1115815935,1115947007,1115979775,1115981055,1115981311,1115981567,1115987967,1115990015,1116001279,1116002303,1116004863,1116005119,1116006143,1116006399,1116012543,1116023807,1116024063,1116030975,1116033023,1116037119,1116168191,1116176383,1116897279,1116905471,1117137919,1117138175,1117142271,1117142527,1117200383,1117201407,1117202431,1117202943,1117203455,1117274111,1117282303,1117413375,1117414911,1117418751,1117419263,1117420543,1117420799,1117454335,1117456383,1117457151,1117458687,1117459711,1117459967,1117460223,1117460479,1117461247,1117462015,1117462527,1117463295,1117463551,1117464063,1117464319,1117472511,1117472767,1117473791,1117475839,1117481471,1117481727,1117487103,1117683711,1117691903,1117724671,1117728767,1117741055,1117741567,1117742847,1117743103,1117744127,1117749247,1117765631,1117766399,1117766911,1117767167,1117767423,1117767679,1117767935,1117768191,1117768959,1117769215,1117769471,1117769727,1117770495,1117770751,1117771007,1117771263,1117771519,1117771775,1117772287,1117772799,1117773055,1117773311,1117773567,1117773823,1117775871,1117776383,1117776895,1117777407,1117815039,1117815295,1117830911,1117831167,1117978623,1117986815,1117995007,1117999103,1118027775,1118031871,1118158847,1118167039,1118474239,1118478335,1118483455,1118484479,1118511103,1118513151,1118515199,1118519295,1118527487,1118531583,1118532095,1118532607,1118533119,1118535679,1118539775,1118543871,1118547967,1118563071,1118563327,1118765055,1118781439,1118790655,1118791167,1118796543,1118796799,1118962943,1118963199,1118966015,1118966271,1118969599,1118969855,1118970111,1118970367,1118970623,1118970879,1118971647,1118971903,1118972159,1118972415,1118972671,1118973183,1118973439,1118975487,1118975743,1118975999,1118976255,1118976767,1118977023,1118978047,1118978559,1118981631,1118981887,1118982399,1118982655,1118983423,1118983679,1118984447,1118984703,1118984959,1118986239,1118986495,1118986751,1118987007,1118988287,1118988543,1118988799,1118989055,1118989823,1118994175,1118994431,1118999807,1119000063,1119029247,1119030271,1119032319,1119032831,1119048703,1119048959,1119065599,1119065855,1119110143,1119111167,1119111935,1119112191,1119148031,1119148287,1119149055,1119149311,1119199231,1119207423,1119289343,1119354879,1119428607,1119432703,1119436799,1119440895,1119444991,1119469567,1119477759,1119502335,1119510527,1119535615,1119536127,1119536639,1119537151,1119538175,1119538687,1119538943,1119539199,1119555071,1119555327,1119580159,1119584255,1119600639,1119601663,1119996159,1119996415,1120086271,1120086527,1120149503,1120153599,1120257023,1120257279,1120257535,1120257791,1120258047,1120258303,1120259327,1120259583,1120259839,1120260095,1120260351,1120260607,1120260863,1120261119,1120261375,1120261631,1120261887,1120262143,1120262399,1120262655,1120263167,1120263423,1120263679,1120263935,1120264191,1120264447,1120264703,1120265983,1120266239,1120267519,1120267775,1120268031,1120268543,1120268799,1120269055,1120269311,1120270079,1120270335,1120282367,1120282623,1120282879,1120283135,1120283647,1120283903,1120284415,1120284671,1120286719,1120288767,1120289279,1120292863,1120293119,1120293631,1120293887,1120294911,1120297215,1120305407,1120305663,1120306687,1120306943,1120307199,1120307967,1120308223,1120310271,1120310783,1120312319,1120312831,1120313599,1120313855,1120314367,1120314623,1120314879,1120315135,1120315391,1120317439,1120330751,1120331007,1120346111,1120350207,1120370687,1120371711,1120371967,1120372479,1120372735,1120377855,1120378111,1120378367,1120378879,1120382975,1120383231,1120383487,1120383743,1120385535,1120386047,1120387071,1120509951,1120516095,1120517119,1120517375,1120517631,1120517887,1120518143,1120534527,1120628735,1120628991,1120629247,1120631807,1120632063,1120632831,1120636927,1120637183,1120637439,1120641023,1120657407,1120731135,1120731391,1120732415,1120732671,1120733183,1120733439,1120737023,1120737279,1120738559,1120738815,1120740095,1120740351,1120741375,1120741631,1120741887,1120747519,1120755711,1120788479,1120789503,1120791551,1120792575,1120794111,1120794367,1120794623,1120795647,1120796671,1120797183,1120797695,1120802815,1120803327,1120803583,1120803839,1120854015,1120862207,1120886783,1120894975,1120911359,1120919551,1121005567,1121009663,1121038335,1121042431,1121195519,1121195775,1121203199,1121204223,1121205247,1121205759,1121206271,1121214463,1121222655,1121230847,1121239039,1121247231,1121247487,1121248511,1121248767,1121250303,1121250815,1121252607,1121252863,1121253119,1121461247,1121461503,1121469183,1121469439,1121475327,1121475583,1121476607,1121476863,1121483263,1121483519,1121758207,1121759231,1121763327,1121767423,1121878015,1121910783,1121913343,1121913855,1121914879,1121918975,1121923071,1121923327,1121923583,1121925119,1121925631,1121926143,1121926655,1121926911,1121934847,1121936127,1121937407,1121943551,1122074623,1122091007,1122091263,1122091519,1122092031,1122092287,1122092799,1122093055,1122096127,1122096383,1122100735,1122100991,1122102783,1122103039,1122103807,1122104063,1122106879,1122107135,1122123775,1122125823,1122127871,1122131967,1122140159,1122148351,1122156543,1122203135,1122203391,1122238463,1122242559,1122412287,1122412543,1122414335,1122414591,1122416383,1122416639,1122417919,1122418175,1122433023,1122434047,1122451455,1122455551,1122476031,1122480127,1122493439,1122494207,1122495231,1122495999,1122497791,1122498047,1122498559,1122498815,1122499583,1122500095,1122500607,1122504703,1122515967,1122516991,1122533375,1122535423,1122538495,1122631679,1122632191,1122632703,1122648063,1122672639,1122673151,1122676735,1122742783,1122743295,1123057663,1123074047,1123123199,1123127295,1123180543,1123184639,1123336191,1123352575,1123395327,1123395583,1123401727,1123403775,1123409919,1123418111,1123534847,1123536895,1123590143,1123598335,1123598847,1123599103,1123599359,1123599615,1123601407,1123602431,1123609855,1123610111,1123651583,1123651839,1123652095,1123653119,1123653375,1123653631,1123654399,1123655679,1123663871,1123665663,1123665919,1123667967,1123670015,1123671039,1123672063,1123778559,1123778815,1123779071,1123779327,1123781887,1123782143,1123782399,1123782655,1123782911,1123783167,1123783423,1123783679,1123784447,1123785727,1123787775,1123788031,1123794943,1123795199,1123801087,1123801343,1123848191,1123852287,1123889407,1123889663,1123950591,1123958783,1124060159,1124061183,1125039871,1125040127,1125170431,1125170687,1125179391,1125179647,1125239039,1125239295,1125269503,1125270015,1125274111,1125274367,1125274879,1125275135,1125275647,1125275903,1125276415,1125276671,1125277183,1125277439,1125474303,1125478399,1125486591,1125490687,1125498879,1125515263,1125523455,1125530623,1125530879,1125531391,1125531647,1125543935,1125545983,1125550079,1125550335,1125552127,1125572607,1125576703,1125658623,1125658879,1125797887,1125798143,1125804031,1125804287,1125806079,1125806335,1125812223,1125812479,1125878783,1125879039,1125882879,1125883135,1125883647,1125883903,1125902335,1125902591,1126902783,1126903295,1126924287,1126928383,1126948863,1126952959,1127412991,1127413247,1127677951,1127694335,1127923711,1127931903,1128529919,1128792063,1128890367,1128892415,1128894463,1128896511,1128898559,1128900607,1128902655,1128903679,1128904703,1128906751,1128914943,1128922623,1128923135,1128927487,1128927743,1128932607,1128932863,1128990463,1128990719,1129058559,1129058815,1129059583,1129059839,1129060607,1129060863,1129061119,1129061375,1129061887,1129062143,1129094911,1129095167,1129105919,1129106175,1129116671,1129116927,1129125119,1129125375,1129126655,1129126911,1129150719,1129150975,1130536959,1130539007,1130612735,1130614527,1133789695,1133789951,1134440959,1134441215,1134441471,1134441727,1134443775,1134444031,1134444287,1134444543,1134448639,1134450431,1134450687,1134479871,1134480383,1134493695,1134495743,1134500351,1134500863,1134501119,1134501375,1134501631,1134544639,1134544895,1134546943,1134551039,1134559231,1136670975,1136671999,1136672255,1136672767,1136687103,1136688383,1136688895,1136689151,1136690431,1136690687,1136699135,1136699391,1136703999,1136704511,1136704767,1136705535,1136718079,1136718335,1136719103,1136719359,1136719615,1136719871,1136720383,1136720639,1136721919,1136787455,1137150719,1137150975,1137151487,1137151743,1137151999,1137152255,1137152511,1137152767,1137154047,1137154303,1137154559,1137154815,1137155071,1137155327,1137156095,1137173247,1137173503,1137195519,1137195775,1137278975,1137295359,1137352703,1137356799,1137369087,1137369855,1137376255,1137376511,1137426431,1137442815,1137491967,1137508351,1137524735,1137541119,1137621503,1137622015,1137623039,1137639423,1137656831,1137657855,1137659903,1137704959,1137707519,1137708799,1137709055,1137709311,1137710847,1137711359,1137712127,1137718271,1137719295,1137778687,1137780735,1137783807,1137784063,1137784319,1137784831,1137803263,1137811455,1137815551,1137836031,1137840127,1137840383,1137840639,1137841919,1137842175,1137842687,1137843455,1137843711,1137862399,1137862655,1137867775,1137868287,1137868543,1137868799,1137872895,1137876991,1137881087,1137889279,1137893375,1137917951,1137922047,1137926143,1137926655,1137927167,1137927423,1137928447,1137928959,1137929471,1137929727,1137929983,1137930239,1137934335,1137950719,1137954815,1137963007,1137967103,1137983487,1137991679,1138049023,1138061311,1138062847,1138063103,1138065151,1138065407,1138068479,1138069503,1138073599,1138088447,1138088703,1138088959,1138089215,1138163711,1138167807,1138175999,1138180095,1138182399,1138182655,1138184191,1138184447,1138184703,1138184959,1138185215,1138185727,1138185983,1138188287,1138192383,1138196479,1138204671,1138212863,1138216959,1138237439,1138245631,1138289663,1138289919,1138354175,1138356223,1138415871,1138416127,1138417407,1138417663,1138425855,1138450431,1138454527,1138460671,1138460927,1138474239,1138475007,1138499583,1138503679,1138524671,1138524927,1138525183,1138525439,1138525951,1138526207,1138526463,1138526719,1138526975,1138527231,1138527743,1138528255,1138528511,1138548735,1138552831,1138569215,1138573311,1138593791,1138597887,1138704383,1138716671,1138720767,1138728959,1138733567,1138733823,1138774015,1138778111,1138781183,1138781439,1138786303,1138819071,1138851839,1138917375,1138937855,1138938879,1138939903,1138940415,1138940671,1138941951,1138950143,1138979327,1138979583,1139080447,1139080703,1139146751,1139154943,1139167231,1139168255,1139168511,1139169023,1139169279,1139169535,1139169791,1139170047,1139170303,1139176191,1139177215,1139179519,1139187711,1139215103,1139215359,1139216383,1139220479,1139250687,1139251199,1139252735,1139253247,1139257343,1139261439,1139265535,1139269631,1142794239,1142795263,1142884351,1142884863,1145165823,1145166335,1145168895,1145171967,1145174527,1145175039,1145177855,1145178111,1145188351,1145192447,1145241599,1145245695,1145249791,1145257983,1145307135,1145311231,1145363967,1145364479,1145376767,1145380863,1145401343,1145405439,1145413631,1145421823,1145430015,1145475071,1145479167,1145487359,1145487615,1145488127,1145489919,1145490175,1145490431,1145490687,1145490943,1145491199,1145491455,1145503743,1145520127,1145552895,1145553407,1145566207,1145566463,1146028031,1146044415,1146775551,1146775807,1150182399,1150182655,1150182911,1150287871,1150812159,1151008767,1151041535,1151868671,1151868927,1151889407,1151893503,1151992319,1151992575,1151993855,1151994879,1151995903,1152065535,1152066047,1152066559,1152066815,1152069375,1152069631,1152071423,1152071679,1152073727,1152077823,1152114687,1152122879,1152552959,1152561151,1152581631,1152614399,1152778239,1152839679,1152843775,1152847871,1152851967,1152856063,1152860159,1152864255,1152868351,1152888831,1152892927,1152897023,1152901119,1152905215,1152906239,1152907263,1152908287,1152909311,1154613247,1154646015,1154678783,1154711551,1155137535,1155178495,1155203071,1155244031,1155252223,1155268607,1155334143,1155399679,1156063743,1156064255,1156065023,1156065279,1156065791,1156066047,1156066303,1156066559,1156066815,1156067071,1156067327,1156071423,1156079615,1156088831,1156089343,1156090367,1156090879,1156093439,1156093695,1156093951,1156094207,1156094975,1156095231,1156095487,1156095743,1156095999,1156145151,1156151295,1156153343,1156197119,1156197375,1156197631,1156197887,1156243455,1156243711,1156249599,1156249855,1156296703,1156300799,1157660671,1157677823,1157678079,1157693439,1157893119,1157893631,1157931007,1157935103,1157943295,1157947391,1157948415,1157948927,1157967871,1157971967,1158021119,1158029311,1158037503,1158041599,1158106623,1158106879,1158148095,1158152191,1158234111,1158242047,1158242303,1158249727,1158316031,1158322175,1158322431,1158324223,1158340607,1158344703,1158348799,1158381567,1158422527,1158423551,1158438911,1158440959,1158441215,1158441471,1158441983,1158443007,1158610943,1158676479,1158714111,1158714367,1158716671,1158716927,1158724607,1158724863,1158774783,1158791167,1158799359,1158807551,1158995967,1159004159,1159213055,1159217151,1159249919,1159253503,1159267327,1159267583,1159274495,1159274751,1159281919,1159282175,1159342847,1159343103,1159345407,1159345663,1159345919,1159346175,1159347199,1159347455,1159348223,1159356415,1159421951,1159430143,1159480063,1159480319,1159483903,1159484415,1159504639,1159504895,1159505407,1159505663,1159511039,1159511295,1159511551,1159513087,1159513343,1159516159,1159516415,1159516671,1159517183,1159518719,1159519231,1159520255,1159520511,1159523327,1159523583,1159524351,1159524607,1159524863,1159525375,1159526399,1159526655,1159527167,1159527423,1159527679,1159527935,1159528191,1159615487,1159615743,1159615999,1159616767,1159617023,1159694335,1159694847,1159695871,1159696383,1159700479,1159725055,1159860735,1159861247,1159861503,1159861759,1159863295,1159864319,1159883263,1159883519,1159901439,1159901695,1159901951,1159902207,1159902463,1159903231,1159918847,1159919103,1160011775,1160019967,1160364031,1160368127,1160392703,1160393215,1160393727,1160396799,1160405503,1160406015,1160409599,1160410111,1160425471,1160429567,1160505343,1160505855,1160563199,1160563711,1160609791,1160610815,1160667135,1160671487,1160671743,1160675327,1160678399,1160678655,1160681727,1160681983,1160682751,1160683007,1160683519,1160691711,1160809471,1160809727,1160810751,1160811007,1160814335,1160814591,1160828927,1160829183,1160834047,1160834303,1160847359,1160855551,1160863743,1160871935,1160921087,1160925183,1160926207,1160928767,1160929023,1160945663,1160953855,1160971007,1160971263,1160971775,1160972031,1160973055,1160973311,1160974335,1160974591,1160975359,1160975871,1160977663,1160977919,1161019391,1161035775,1161053439,1161053695,1161086463,1161086719,1161086975,1161162495,1161162751,1161164543,1161164799,1161165055,1161165311,1161165567,1161293823,1161297919,1161363455,1161367551,1161407487,1161407743,1161416703,1161420799,1161421311,1161421567,1161422079,1161422335,1161422591,1161422847,1161423103,1161423359,1161423615,1161423871,1161424127,1161424383,1161424639,1161424895,1161425151,1161425407,1161425663,1161425919,1161426943,1161427199,1161427455,1161428223,1161428991,1161433087,1161435903,1161451775,1161452031,1161452287,1161453567,1161457663,1161576447,1161580543,1161617407,1161625599,1161764863,1161773055,1161777151,1161818111,1161822207,1161854719,1161854975,1161883903,1161884159,1161885183,1161885439,1161885695,1161885951,1161925631,1161925887,1161926399,1161926655,1162018815,1162022911,1162027007,1162031103,1162056703,1162056959,1162059775,1162067967,1162158335,1162158591,1162215423,1162280959,1162297343,1162305535,1162354175,1162354687,1162358783,1162360831,1162366975,1162369023,1162461183,1162461695,1162462207,1162462975,1162463999,1162465279,1162465535,1162470911,1162471423,1162472703,1162473471,1162475007,1162477567,1162715135,1162723327,1162806527,1162806783,1162807039,1162807295,1162807807,1162808319,1162808831,1162811391,1162811647,1162812159,1162812415,1162813439,1162823679,1162825727,1162832127,1162833919,1162835967,1162836223,1162836735,1162836991,1162838015,1162839551,1162854399,1162858495,1162870783,1162871295,1162879999,1162882559,1162883839,1162884863,1162885887,1162887167,1162895359,1162899455,1162928383,1162928639,1162929151,1162932223,1163143167,1163143423,1163220735,1163220991,1163221247,1163222015,1163222271,1163222527,1163374591,1163378687,1163384319,1163384575,1163386367,1163386879,1163399167,1163399679,1163400447,1163400703,1163401983,1163402751,1163407359,1163411455,1163432959,1163433983,1163468799,1163469055,1163469311,1163470591,1163470847,1163472895,1163479295,1163479551,1163526143,1163529215,1163529727,1163529983,1163530239,1163534335,1163534591,1163536383,1163537151,1163541759,1163542015,1163547647,1163547903,1163555839,1163556095,1163556863,1163557119,1163557375,1163557887,1163558143,1163558399,1163558655,1163559167,1163560447,1163560703,1163563263,1163563519,1163565567,1163565823,1163566335,1163567103,1163568127,1163568383,1163568639,1163568895,1163569407,1163569919,1163570431,1163571199,1163573247,1163573503,1163574271,1163574527,1163575039,1163575295,1163577599,1163577855,1163579391,1163579647,1163583487,1163584255,1163584511,1163584767,1163585023,1163585279,1163586303,1163586559,1163587327,1163587583,1163589631,1163590655,1163590911,1163591167,1163591679,1163625471,1163625727,1163625983,1163626751,1163639807,1163640063,1163640319,1163640575,1163792127,1163792383,1163796479,1163800575,1163804671,1163805695,1163805951,1163806719,1163807231,1163807743,1163807999,1163808255,1163808767,1163812863,1163813119,1163813375,1163813631,1163813887,1163814399,1163814911,1163815167,1163815423,1163816191,1163816447,1163816703,1163816959,1163821055,1167851519,1168113663,1168121855,1168138239,1168146431,1168154879,1168155135,1168156671,1168158719,1168211967,1168220159,1168228351,1168230399,1168232959,1168234495,1168235775,1168236031,1168337663,1168338175,1168380927,1168381439,1168382975,1168383999,1168384511,1168385023,1168387071,1168387583,1168388863,1168389119,1168393471,1168393983,1168394239,1168394751,1168396287,1168396543,1168399103,1168399359,1168400895,1168401151,1168420863,1168424959,1168444671,1168444927,1168457727,1168457983,1168458239,1168461823,1168465919,1168474111,1168506879,1168510975,1168515071,1168535551,1168539647,1168567295,1168567551,1168670719,1168687103,1168697855,1168698111,1168698367,1168698623,1168708095,1168708607,1168711423,1168711679,1168727551,1168727807,1168760831,1168761343,1168761599,1168762879,1168817151,1168817407,1168850943,1168851455,1168855039,1168859135,1168863231,1168867327,1168883711,1168887807,1168888063,1168888319,1168888575,1168916479,1168924671,1168932863,1168936959,1168950015,1168950271,1168951295,1168951807,1168953599,1168955647,1168956927,1168957183,1168958463,1168960511,1168962815,1168963071,1168965631,1168973823,1168982015,1168998399,1169002495,1169006079,1169006335,1169035519,1169035775,1169047551,1169047807,1169056255,1169057279,1169062143,1169062399,1169062655,1169062911,1169203199,1169211391,1170190847,1170191103,1170191615,1170191871,1170192127,1170192383,1170192639,1170197247,1170197503,1170197759,1170198015,1170198271,1170198527,1170211071,1170211327,1170212351,1170212863,1170214911,1170224383,1170224639,1170226175,1170226431,1170228991,1170229247,1170229759,1170230015,1170231295,1170235391,1170237439,1170238463,1170239487,1170243583,1170245631,1170251775,1170252799,1170253823,1170254847,1170255359,1170255615,1170266367,1170266623,1170350079,1170358271,1170374655,1170378751,1170382847,1170386943,1170461183,1170461695,1170467839,1170468351,1170472959,1170481151,1170489343,1170497535,1170505727,1170522111,1170539775,1170540031,1170540287,1170540543,1170541823,1170542079,1170542335,1170542591,1170542847,1170543359,1170543615,1170543871,1170544127,1170544383,1170544639,1170544895,1171063807,1171064063,1171065087,1171065343,1171066111,1171066367,1171067135,1171067903,1171068415,1171069183,1171069695,1171070975,1171071231,1171071999,1171072255,1171072767,1171073023,1171074303,1171074559,1171075071,1171075327,1171076863,1171077119,1171077887,1171078143,1171080191,1171080447,1171080959,1171081215,1171084799,1171085055,1171085311,1171085567,1171086591,1171087103,1171087359,1171087615,1171087871,1171089663,1171090431,1171091199,1171093247,1171094015,1171095295,1171099135,1171100415,1171100671,1171101951,1171102207,1171103743,1171104511,1171105791,1171107327,1171107583,1171107839,1171109375,1171109887,1171110143,1171110399,1171110655,1171110911,1171111167,1171111423,1171111935,1171113727,1171113983,1171114239,1171114495,1171115007,1171116543,1171117055,1171118847,1171119103,1171119871,1171120127,1171120383,1171120639,1171121151,1171121663,1171126271,1171126783,1171127039,1171127807,1171128063,1172750335,1172766719,1172799487,1172815871,1173012479,1173028863,1173061631,1173078015,1175977983,1176502271,1176616959,1176621311,1176621567,1176627455,1176627967,1176631551,1176632575,1176632831,1176641535,1176645631,1176648191,1176648447,1176648703,1176648959,1176649471,1176682495,1176690687,1176694783,1176698879,1176731647,1176735743,1176735999,1176736767,1176737279,1176738303,1176739071,1176739583,1176739839,1176741887,1176742143,1176743935,1176752127,1176756223,1176764415,1176768511,1176771583,1176771839,1176776703,1176780799,1176864255,1176864511,1176864767,1176865535,1176868095,1176868351,1176868863,1176895487,1176928255,1176969215,1176969727,1176970239,1176999935,1177000191,1177022975,1177023231,1177059327,1177061375,1177062143,1177075455,1177105407,1177105663,1177110015,1177110271,1177111551,1177111807,1177116159,1177116415,1177155071,1177155327,1177163775,1177164799,1177212159,1177212415,1177354239,1177419775,1177550847,1178075135,1178599423,1179910143,1181307391,1181307647,1183056127,1183056383,1183056639,1183056895,1183057151,1183057663,1183057919,1183058175,1183058431,1183058687,1183058943,1183059199,1183059455,1183059711,1183059967,1183060223,1183060479,1183060735,1183060991,1183061247,1183061759,1183062527,1183062783,1183063039,1183063295,1183063551,1183064575,1183064831,1183065599,1183065855,1183066111,1183066367,1183066623,1183066879,1183067135,1183067391,1183067903,1183068415,1183068671,1183069183,1183069439,1183069695,1183069951,1183070207,1183071999,1183072255,1184366591,1184367103,1184367615,1184368127,1184368383,1184369151,1184369663,1184369919,1184370431,1184370943,1184371199,1184371455,1184371711,1184372223,1184372735,1184372991,1184373247,1184373503,1184374015,1184374527,1184375039,1184375551,1184375807,1184376063,1184376319,1184432127,1184489471,1184628735,1184661503,1184694271,1184727039,1185528063,1185528319,1189625855,1189633023,1189634047,1189641215,1189642239,1190614271,1190614527,1191183615,1191183871,1191673855,1191706623,1192296447,1192361983,1192371967,1192372223,1192378367,1192378623,1192378879,1192379135,1192425471,1192427007,1192427519,1192460287,1192468479,1192476671,1192488703,1192488959,1192493055,1194070783,1194071039,1194777855,1194778111,1199816703,1199849471,1200111615,1200127999,1200160767,1200177151,1200424959,1200427007,1201144063,1201144319,1201144575,1201144831,1201145087,1201145599,1201145855,1201146367,1201146623,1201146879,1201147135,1201147391,1201147647,1201147903,1201148159,1201149439,1201149695,1201150463,1201150719,1201150975,1201151231,1201151487,1201151743,1201151999,1201152511,1201153023,1201153279,1201153535,1201153791,1201154047,1201154815,1201155071,1201156863,1201157119,1201157375,1201157631,1201158655,1201158911,1201159167,1201159423,1201159679,1201160191,1201160447,1201160703,1201161215,1201161983,1201162239,1201162495,1201163519,1201163775,1201164287,1201164799,1201165055,1201165311,1201165567,1201165823,1201166335,1201167103,1201167359,1201168127,1201168383,1201168639,1201168895,1201169151,1201169407,1201169663,1201169919,1201170175,1201172479,1201172735,1201172991,1201173247,1201173503,1201174015,1201174271,1201175039,1201175295,1201176063,1201176319,1201563135,1201563391,1207975935,1207980031,1208008703,1208016895,1208020991,1208025087,1208074239,1208082431,1208086527,1208090623,1208107007,1208189695,1208189951,1208190719,1208190975,1208191743,1208191999,1208195071,1208195327,1208213503,1208214015,1208214271,1208214527,1208215807,1208216063,1208217087,1208217343,1208217599,1208217855,1208218111,1208218367,1208218879,1208219135,1208221439,1208221695,1208260863,1208261119,1208297983,1208298495,1208354303,1208354815,1208524287,1208524543,1208525823,1208526079,1208526847,1208527103,1208582143,1208586239,1208590335,1208598527,1208647679,1208659967,1208720383,1208720895,1208721407,1208729599,1208770559,1208774655,1208778751,1208795135,1208852479,1208860671,1208900863,1208901119,1208901375,1208902143,1208902655,1208906751,1208907007,1208910335,1208910591,1208914943,1208915199,1208915711,1208915967,1208918015,1208922111,1208930303,1208930559,1208935423,1208935679,1208954879,1208958975,1208979455,1208983551,1209040895,1209073663,1209155583,1209156607,1209210879,1209211903,1209277439,1209277695,1209278463,1209278719,1209279231,1209279487,1209279743,1209281535,1209281791,1209282559,1209282815,1209284095,1209284351,1209339903,1209340927,1209356799,1209357055,1209357823,1209358335,1209358847,1209359103,1209434111,1209436671,1209437183,1209438719,1209439231,1209439487,1209440767,1209441279,1209442303,1209647103,1209663487,1209719039,1209719295,1209729023,1209786367,1209810943,1209819135,1209917439,1209925631,1210254847,1210255103,1210257663,1210258175,1210258431,1210258687,1210258943,1210259199,1210259967,1210260223,1210314751,1210316799,1210317823,1210318335,1210420223,1210420479,1210444031,1210444287,1210446847,1210447103,1210447871,1210448127,1210448639,1210448895,1210449919,1210580991,1210847231,1210851327,1210925055,1210941439,1210980351,1210981375,1210994687,1210995711,1210995967,1210996223,1210996479,1210996735,1210997759,1211010047,1211011071,1211013119,1211013631,1211014143,1211015167,1211033087,1211033599,1211236351,1211269119,1211301887,1211303167,1211303423,1211304959,1211305983,1211306239,1211307007,1211308287,1211314687,1211315455,1211317759,1211318015,1211318271,1211319807,1211320575,1211321087,1211321343,1211322367,1211322623,1211324159,1211324927,1211333119,1211333631,1211333887,1211334655,1211367935,1211368191,1211368447,1211371519,1211372543,1211373567,1211375615,1211376639,1211379711,1211379967,1211381759,1211382015,1211382783,1211383295,1211394815,1211395071,1211432959,1211473919,1211482111,1211498495,1211564031,1211596799,1211613183,1216872447,1217396735,1218674687,1218699263,1218703359,1218703871,1218705407,1218706431,1218707455,1219248127,1219249151,1219256319,1219264511,1219265023,1219266559,1219267327,1219267839,1219272703,1219276799,1221095423,1221095679,1224085503,1224085759,1224087551,1224087807,1224088575,1224089599,1224092415,1224092671,1224092927,1224093183,1224093439,1224093695,1224094207,1224094463,1224094719,1224095231,1224095487,1224099839,1224100863,1224101887,1224102399,1224102911,1224105727,1224105983,1224107519,1224108031,1224118271,1224119807,1224120063,1224120319,1224121343,1224124415,1224125439,1224126463,1224134655,1224135679,1224136703,1224136959,1224144127,1224144383,1224144639,1224148479,1224148735,1224154111,1224155135,1224157183,1224157439,1224160767,1224161279,1224167679,1224167935,1224176639,1224177663,1224179455,1224179711,1224181759,1224182783,1224184319,1224184831,1224186111,1224186623,1224186879,1224187903,1224188927,1224189951,1224190975,1224191999,1224192255,1224193023,1224193279,1224193535,1224193791,1224197119,1224198143,1224200191,1224200703,1224201215,1224202239,1224204031,1224204287,1224205311,1224207871,1224208127,1224208639,1224208895,1224209407,1224209663,1224210175,1224210687,1224327167,1224327423,1224327935,1224328191,1224329215,1224329471,1224331263,1224333311,1224409087,1224441855,1224471551,1224471807,1224474623,1224475647,1224475903,1224476671,1224478719,1224480767,1224484863,1224493055,1224497151,1224501247,1224503551,1224503807,1224523519,1224523775,1224527615,1224527871,1224529663,1224529919,1224539903,1224671231,1224687615,1224728575,1224736767,1241743359,1241759743,1242300415,1242562559,1244717055,1244790783,1244791039,1244791295,1244793343,1244793599,1244793855,1244817919,1244818175,1244831743,1244839935,1244844031,1244846079,1244848127,1244852223,1244864511,1244872703,1244917759,1244918015,1245183999,1245446143,1245642751,1245646847,1245695743,1245695999,1246798847,1246799103,1246808063,1246809087,1246810367,1246810623,1246812671,1246813183,1246858239,1246858495,1246895103,1246895615,1246899711,1246899967,1246900223,1246900735,1246900991,1246901247,1246902783,1246903039,1246904319,1246912511,1247060991,1247061247,1247123967,1247124223,1247124479,1247124991,1247141375,1247141631,1247490047,1247490303,1247491071,1247491327,1247493119,1247493375,1247493631,1248864255,1248866303,1248877311,1248877567,1248879615,1248880639,1248885759,1248886783,1248890879,1248892927,1248899071,1248900095,1248902143,1248903167,1248913407,1248915455,1248919551,1248920575,1248922623,1248923647,1248924671,1248925695,1248936959,1248939007,1248944895,1248945151,1248946175,1248947199,1248957439,1248957695,1248964607,1248966655,1248976895,1248977919,1248987135,1248987391,1248988159,1248988415,1248989183,1248991231,1248997375,1248997631,1248998143,1248998399,1249003519,1249005567,1249010687,1249011711,1249014783,1249015039,1249019903,1249020927,1249023999,1249024511,1249028095,1249029119,1249030143,1249036287,1249037311,1249038335,1249040383,1249046527,1249047551,1249082367,1249083391,1249099775,1249101823,1249102847,1249103359,1249103615,1249103871,1249106943,1249107967,1249116927,1249117183,1249124351,1249124607,1249124863,1249125119,1249130495,1249131519,1249139711,1249140479,1249140735,1249144831,1249147903,1249156095,1249157119,1249163263,1249165311,1249171455,1249174527,1249188351,1249188607,1249195007,1249196031,1249197311,1249197567,1249203199,1249204223,1249217535,1249218559,1249236991,1249239039,1249245183,1249247231,1249256447,1249257471,1249260543,1249261567,1249267711,1249268735,1249272831,1249273855,1249282047,1249282303,1249282815,1249283327,1249283839,1249284095,1249296383,1249297407,1249304575,1249306623,1249310719,1249311743,1249312767,1249313791,1249318911,1249319935,1249335295,1249337343,1249349887,1249350143,1249350655,1249350911,1249351167,1249351679,1249359871,1249361919,1249362175,1249362431,1249362687,1249362943,1249379327,1249380351,1249384447,1249386495,1249391615,1249392639,1249396735,1249398783,1249404927,1249406975,1249409023,1249409279,1249434623,1249435647,1249437695,1249438719,1249452031,1249453055,1249474559,1249475583,1249480703,1249480959,1249482751,1249484799,1249486847,1249506303,1249507327,1249518591,1249519615,1249522687,1249523711,1249531903,1249533951,1249537279,1249537535,1249539327,1249539583,1249542143,1249544191,1249553407,1249554431,1249562623,1249564671,1249570559,1249570815,1249571839,1249572863,1249576959,1249577983,1249587199,1249588223,1249592319,1249593343,1249598463,1249599487,1249624575,1249625087,1249715967,1249716223,1249716479,1249716735,1249717759,1249718015,1249718271,1249724671,1249724927,1249725183,1249726207,1249726463,1249726719,1249726975,1249734655,1249734911,1249738239,1249738495,1249749759,1249750015,1249752319,1249752575,1249754623,1249754879,1249769215,1249769471,1249796095,1249804287,1249816575,1249820671,1249886207,1249902591,1254490111,1254555647,1254589439,1254589695,1254604543,1254604799,1254606079,1254606335,1254611967,1254612223,1254621183,1254629375,1254722815,1254723071,1254979839,1254980095,1254980607,1254981375,1254981631,1254989823,1254991359,1254992127,1254998015,1255002111,1255006207,1255011327,1255011839,1255047167,1255055359,1255210495,1255210751,1255245311,1255245567,1255276543,1255342079,1255489535,1255505919,1255514111,1255522303,1255542783,1255543551,1255571455,1255579647,1255669759,1255735295,1255768063,1255768319,1255770111,1255770367,1255771391,1255771647,1255935999,1255938047,1255940095,1255956735,1255956991,1255958783,1255959039,1255972863,1255981055,1256001535,1256005631,1256031999,1256032255,1256032511,1256032767,1256033023,1256033279,1256033535,1256033791,1256079359,1256087551,1256194047,1256325119,1256390655,1256427519,1256849407,1256882175,1256914943,1257242623,1257277439,1257308159,1257373695,1257392127,1257406463,1257439231,1257474047,1257766911,1257799679,1264715263,1264715519,1264717823,1264718079,1264718591,1264718847,1264719103,1264719359,1264746495,1264750591,1264762879,1264766975,1264978687,1264978943,1264980479,1264980735,1264983039,1264983295,1264988159,1264988415,1264990207,1264991231,1264991743,1264991999,1264992255,1265126143,1265126399,1265126911,1265127167,1265149951,1265150719,1265151487,1265151999,1265156607,1265156863,1265796095,1265796607,1265796863,1265797119,1266122751,1266130943,1266137343,1266137599,1266147327,1266155519,1268252671,1268776959,1268797695,1268797951,1268832255,1268832511,1275600895,1275604991,1275621375,1275625471,1275658239,1275658495,1275659007,1275659263,1275665151,1275665407,1275666431,1275674623,1275707391,1275715583,1275756543,1275772927,1275789311,1275822079,1278155519,1278156799,1278173183,1278175231,1278176255,1278181375,1278201855,1278205951,1278210559,1278211071,1278803967,1278820351,1278822399,1278828543,1279179519,1279179775,1279235839,1279236095,1279262719,1279787007,1279848447,1279852543,1279885311,1279918335,1279918591,1279921919,1279922175,1279927551,1279927807,1279929599,1279929855,1279931135,1279931391,1279932671,1279932927,1279934463,1279934975,1279950847,1279953151,1279953407,1279954175,1279954431,1279954943,1279955455,1279955711,1279956223,1279956735,1279956991,1279959295,1279959551,1279959807,1279960063,1279960575,1279961855,1279962111,1279962367,1279962623,1279963647,1279964415,1279964671,1279966207,1279967231,1279971327,1279971583,1279972351,1279973375,1279973887,1279974143,1279974399,1279974911,1279975167,1279975423,1279981567,1279999999,1280032767,1280040959,1280049151,1280049663,1280049919,1280051711,1280051967,1280052479,1280052735,1280052991,1280053247,1280073727,1280081919,1280090111,1280091135,1280092159,1280093183,1280094207,1280095231,1280095487,1280096511,1280096767,1280097023,1280097279,1280097791,1280098303,1280102399,1280126975,1280131071,1280139263,1280242175,1280243199,1285639935,1285640191,1285871615,1285872639,1289715711,1289715967,1289716735,1289717247,1289720831,1289721855,1289722367,1289722623,1289723391,1289723647,1289723903,1289724159,1289724415,1289724671,1289724927,1289725183,1289725439,1289725695,1289727999,1289728255,1289728511,1289728767,1289729023,1289729535,1289729791,1289730047,1289730815,1289731071,1289731839,1291845631,1292894207,1293156351,1293516799,1293549567,1293680639,1293811711,1293942783,1293975551,1294000127,1294004223,1294008319,1294073855,1294204927,1294205439,1294205951,1294209023,1294211071,1294212095,1294212351,1294212607,1294212863,1294213119,1294218751,1294219263,1294219519,1294219775,1294220287,1294220543,1294220799,1294221311,1294221567,1294221823,1294222335,1294223359,1294225407,1294227455,1294227711,1294227967,1294229503,1294233599,1294237695,1294270463,1294271231,1294271487,1294272511,1294272767,1294273023,1294273279,1294277887,1294278143,1294278911,1294279167,1294280191,1294280703,1294281727,1294282751,1294283007,1294283263,1294283775,1294284287,1294284799,1294286847,1294287103,1294287359,1294287615,1294287871,1294288383,1294289407,1294289663,1294289919,1294290431,1294291455,1294291967,1294292223,1294292479,1294292991,1294295039,1294295551,1294299903,1294300159,1294302719,1294303231,1294335999,1294368767,1294401535,1294434303,1294467071,1294499839,1294532607,1294598143,1294630911,1294663679,1294696447,1294729215,1294761983,1294794751,1294827519,1294860287,1294893055,1294925823,1294958591,1294962175,1294962431,1294963711,1294963967,1294965759,1294966783,1294971647,1294971903,1294972927,1294979583,1294980095,1294980607,1294987263,1294987519,1294987775,1294988287,1294989311,1294991359,1295024639,1295025151,1295047679,1295047935,1295056895,1295122431,1295253503,1295319039,1295384575,1295450111,1295469567,1295470591,1295471615,1295473151,1295473407,1295473663,1295473919,1295474175,1295474431,1295475711,1295477759,1295481855,1295482879,1295490559,1295491071,1295491583,1295491839,1295492095,1295492607,1295492863,1295493119,1295493631,1295496191,1295496703,1295497215,1295511551,1295512063,1295515647,1295777791,1296039935,1296072703,1296105471,1296171007,1296203775,1296236543,1296236799,1296237055,1296237311,1296237567,1296237823,1296238079,1296238591,1296239359,1296240383,1296241151,1296241407,1296241663,1296241919,1296242175,1296242431,1296242943,1296243455,1296243711,1296244223,1296244479,1296244735,1296244991,1296245247,1296245503,1296245759,1296246271,1296246527,1296246783,1296247039,1296247295,1296247807,1296248063,1296248319,1296248575,1296248831,1296249343,1296249599,1296249855,1296250111,1296250367,1296250879,1296251391,1296251647,1296251903,1296252159,1296252415,1296252671,1296252927,1296253183,1296253439,1296253695,1296253951,1296254207,1296254975,1296255231,1296255487,1296255743,1296255999,1296258047,1296258303,1296258815,1296259071,1296259583,1296259839,1296260095,1296260351,1296262143,1296262399,1296262655,1296262911,1296263167,1296263423,1296263679,1296263935,1296264191,1296264703,1296264959,1296265215,1296265983,1296266239,1296266751,1296267007,1296267263,1296268543,1296268799,1296269055,1296269311,1296302079,1296334847,1296367615,1296400383,1296433151,1296465919,1296467711,1296467967,1296468223,1296468479,1296469503,1296469759,1296470015,1296470271,1296470783,1296471039,1296472063,1296473087,1296473343,1296473599,1296473855,1296474367,1296474623,1296474879,1296475135,1296476159,1296476415,1296476927,1296477183,1296477695,1296478207,1296479231,1296479487,1296479743,1296480255,1296482303,1296483071,1296484095,1296484351,1296484607,1296484863,1296485119,1296485375,1296485887,1296486399,1296486655,1296486911,1296487423,1296487679,1296488447,1296488959,1296490239,1296490495,1296491007,1296498687,1296531455,1296564223,1296566271,1296568319,1296568831,1296569343,1296569855,1296570367,1296574463,1296576511,1296578559,1296580607,1296582655,1296584703,1296584959,1296585471,1296585727,1296585983,1296586239,1296586495,1296586751,1296588799,1296590847,1296592895,1296594943,1296596991,1296599039,1296601087,1296605183,1296607231,1296607743,1296607999,1296609023,1296609279,1296611327,1296613375,1296615423,1296617471,1296619519,1296621567,1296623615,1296625407,1296625663,1296629759,1296633855,1296634879,1296635903,1296637951,1296638207,1296638463,1296638719,1296638975,1296639999,1296642047,1296644095,1296646143,1296646655,1296647935,1296648191,1296650239,1296652287,1296654335,1296656383,1296657407,1296658431,1296658687,1296658943,1296659199,1296660223,1296660479,1296662527,1296662783,1296663039,1296663295,1296663551,1296663807,1296664063,1296664319,1296664575,1296666623,1296670719,1296672767,1296674815,1296676863,1296677119,1296678143,1296678399,1296678911,1296679167,1296680447,1296680959,1296683007,1296685055,1296687103,1296689151,1296691199,1296693247,1296695295,1296696831,1296697087,1296697343,1296699391,1296701439,1296703487,1296705535,1296707583,1296709631,1296711679,1296713727,1296715775,1296717823,1296719871,1296721919,1296723967,1296726015,1296726783,1296728063,1296730111,1296732159,1296734207,1296736255,1296738303,1296738815,1296739839,1296742399,1296744447,1296746495,1296747519,1296748543,1296750591,1296752639,1296752895,1296753151,1296753663,1296753919,1296754175,1296754431,1296754687,1296756735,1296758783,1296760831,1296764927,1296769023,1296771071,1296773119,1296774143,1296775167,1296776191,1296777215,1296779263,1296781311,1296783359,1296785407,1296787455,1296789503,1296791551,1296793599,1296795647,1296796927,1296797695,1296799743,1296801791,1296803839,1296805887,1296807935,1296809983,1296810239,1296810495,1296810751,1296811263,1296811519,1296811775,1296812031,1296814079,1296816127,1296818175,1296818431,1296818687,1296818943,1296819199,1296819455,1296819711,1296819967,1296820223,1296822271,1296824319,1296826367,1296828671,1296828927,1296842751,1296859135,1296875519,1296891903,1296908287,1296924671,1296926975,1296927231,1296927487,1296929791,1296931327,1296933631,1296934911,1296935423,1296935679,1296935935,1296936191,1296936447,1296936959,1296937215,1296937471,1296937727,1296938239,1296938495,1296940287,1296940543,1296940799,1296941055,1296957439,1296973823,1296975359,1296975871,1296976383,1296988159,1296988671,1296990207,1296998399,1297006591,1297022975,1297039359,1297055743,1297072127,1297088511,1297121279,1297154047,1297154303,1297154559,1297154815,1297155071,1297155327,1297155583,1297156095,1297162239,1297166335,1297166591,1297166847,1297167359,1297168383,1297170431,1297170687,1297170943,1297172991,1297173247,1297173503,1297173759,1297174015,1297174271,1297175039,1297175551,1297176063,1297176319,1297176575,1297176831,1297177599,1297178623,1297178879,1297179647,1297179903,1297180159,1297180415,1297180671,1297182719,1297184767,1297185279,1297185791,1297186815,1297188863,1297189375,1297189631,1297189887,1297190143,1297190399,1297190655,1297190911,1297195007,1297196031,1297196543,1297196799,1297199103,1297199359,1297199615,1297200639,1297200895,1297201663,1297202175,1297202687,1297202943,1297203199,1297211391,1297215487,1297217535,1297219583,1297285375,1297285631,1297286143,1297286911,1297287167,1297288191,1297289215,1297290239,1297291263,1297291519,1297291775,1297292031,1297292287,1297293311,1297294335,1297294591,1297294847,1297295103,1297295359,1297296383,1297296895,1297297407,1297297663,1297297919,1297298431,1297299455,1297300479,1297301503,1297302527,1297303039,1297303295,1297303551,1297304575,1297305599,1297306367,1297306623,1297307647,1297308671,1297309439,1297309695,1297310719,1297311231,1297311487,1297311999,1297312511,1297312767,1297313791,1297314815,1297315071,1297315839,1297316863,1297317887,1297318911,1297319935,1297320959,1297321983,1297323007,1297324031,1297324287,1297325055,1297326079,1297326847,1297327103,1297329151,1297330175,1297331199,1297332223,1297333247,1297334271,1297334527,1297334783,1297335039,1297335295,1297335551,1297335807,1297336063,1297336319,1297337343,1297338367,1297340415,1297341439,1297341951,1297342207,1297342463,1297343487,1297344511,1297346559,1297347071,1297347327,1297347583,1297348095,1297348351,1297348607,1297349631,1297349887,1297350655,1297416191,1297481727,1297514495,1297538815,1297539071,1297544191,1297544703,1297545215,1297545471,1297547263,1297549311,1297551359,1297553407,1297555455,1297559551,1297561599,1297563647,1297565695,1297567743,1297569791,1297571839,1297573887,1297575935,1297577983,1297578239,1297578495,1297578751,1297579007,1297579263,1297579519,1297579775,1297580031,1297582079,1297584127,1297588223,1297590271,1297592319,1297594367,1297596415,1297598463,1297602559,1297604607,1297606655,1297610751,1297612799,1297614079,1297614335,1297615103,1297615359,1297618943,1297619199,1297624831,1297625087,1297627391,1297627647,1297629183,1297645567,1297661951,1297670143,1297674239,1297678335,1297694719,1297711103,1297727487,1297743871,1297760255,1297776639,1297777407,1297777663,1297778431,1297778687,1297779199,1297779455,1297779711,1297779967,1297780223,1297782015,1297782271,1297782527,1297784063,1297784319,1297784575,1297785087,1297785599,1297785855,1297786111,1297786623,1297786879,1297787135,1297787647,1297787903,1297788159,1297788671,1297788927,1297789183,1297789439,1297790463,1297790719,1297790975,1297791487,1297791743,1297791999,1297792255,1297792511,1297793023,1297809407,1297825791,1297826047,1297826303,1297826559,1297826815,1297827071,1297827327,1297827583,1297827839,1297828095,1297828351,1297828607,1297828863,1297829119,1297829375,1297829631,1297829887,1297830911,1297831935,1297832191,1297832447,1297832703,1297833215,1297833471,1297833983,1297834239,1297834495,1297835007,1297835263,1297835519,1297835775,1297836031,1297838079,1297838335,1297838591,1297838847,1297839103,1297839359,1297839615,1297840127,1297840639,1297841151,1297841407,1297841663,1297841919,1297842175,1297858559,1297860607,1297862655,1297864703,1297866751,1297868799,1297870847,1297872895,1297874943,1297883135,1297891327,1297899519,1297915903,1297917951,1297924095,1297932287,1297940479,1297948671,1297956863,1297957887,1297959935,1297960959,1297965055,1297973247,1297981439,1297989631,1297997823,1298006015,1298006783,1298014207,1298014975,1298015231,1298015487,1298015999,1298016511,1298016767,1298017279,1298018303,1298018815,1298019071,1298022399,1298030591,1298038783,1298046975,1298063359,1298063615,1298063871,1298065407,1298067455,1298071551,1298073599,1298075647,1298076671,1298077695,1298079743,1298081791,1298083839,1298085887,1298087935,1298089983,1298092031,1298094079,1298096127,1298098175,1298100223,1298101247,1298102271,1298104319,1298106367,1298108415,1298110463,1298112511,1298114559,1298116607,1298118655,1298120703,1298122751,1298124799,1298126847,1298127871,1298128127,1298128895,1298130943,1298131455,1298132991,1298135039,1298137087,1298661375,1298677759,1298694143,1298710527,1298726911,1298727935,1298728191,1298732543,1298732799,1298743295,1298759679,1298761727,1298763775,1298764287,1298764799,1298768127,1298768383,1298768639,1298768895,1298769151,1298769407,1298769663,1298769919,1298776063,1298792447,1298825215,1298841599,1298857983,1298874367,1298907135,1298923519,1298939903,1298956287,1298972671,1298989055,1299005439,1299005951,1299006463,1299006975,1299008511,1299016447,1299016703,1299021823,1299038207,1299054591,1299070975,1299087359,1299103743,1299120127,1299136511,1299142655,1299169279,1299170815,1299172863,1299173375,1299174399,1299178495,1299180543,1299181567,1299182591,1299182847,1299183103,1299183359,1299183615,1299183871,1299184127,1299184639,1299185407,1299185663,1299447807,1299709951,1299724287,1299725055,1299725311,1299779071,1299779327,1299783679,1299791871,1299963903,1299972095,1300234239,1300824063,1300874239,1300889599,1301020671,1302331391,1303379967,1304428543,1305477119,1305739263,1306001407,1306134783,1306135551,1306198015,1306206207,1306263551,1306267647,1306271743,1306279935,1306288127,1306293247,1306294271,1306296319,1306312703,1306312959,1306313215,1306313471,1306313727,1306314751,1306315775,1306316031,1306316287,1306316799,1306317823,1306318847,1306320895,1306329087,1306337279,1306345471,1306353663,1306361855,1306362879,1306363391,1306363647,1306363903,1306365951,1306366207,1306366463,1306366719,1306366975,1306367231,1306367999,1306368511,1306369023,1306369535,1306370047,1306378239,1306386431,1306394623,1306402815,1306411007,1306419199,1306427391,1306435583,1306451967,1306460159,1306461183,1306462207,1306468351,1306476543,1306492927,1306501119,1306509311,1306511871,1306514943,1306515455,1306517503,1306525695,1307049983,1307066367,1307074559,1307082751,1307085823,1307086335,1307086847,1307092991,1307095039,1307097087,1307099135,1307099647,1307099903,1307100159,1307101183,1307102207,1307103231,1307105279,1307106303,1307107327,1307115519,1307123711,1307131903,1307140095,1307148287,1307156479,1307172863,1307181055,1307189247,1307191295,1307191551,1307192063,1307192319,1307192575,1307192831,1307193087,1307193343,1307195391,1307197439,1307205631,1307213823,1307222015,1307230207,1307238399,1307246591,1307254783,1307259135,1307259391,1307262975,1307271167,1307279359,1307287551,1307295743,1307303935,1307312127,1307320319,1307336703,1307337215,1307338495,1307338751,1307342847,1307353087,1307361279,1307369471,1307377663,1307385855,1307394047,1307402239,1307410431,1307418623,1307426815,1307435007,1307435263,1307435775,1307436287,1307436543,1307436799,1307437055,1307441151,1307442175,1307443199,1307451391,1307459583,1307467775,1307469823,1307475967,1307484159,1307487999,1307488255,1307489279,1307490303,1307491071,1307491327,1307492095,1307492351,1307500543,1307508735,1307516927,1307525119,1307533311,1307535359,1307535615,1307535871,1307536127,1307541503,1307549695,1307557887,1307574271,1307578367,1307582463,1307586559,1307590655,1307594751,1307598847,1307602943,1307607039,1307611135,1307619327,1307623423,1307627519,1307631615,1307635711,1307636735,1307637759,1307639807,1307643903,1307652095,1307656191,1307656447,1307657215,1307658239,1307659263,1307660287,1307664383,1307668479,1307672575,1307676671,1307680767,1307681791,1307684863,1307688959,1307693055,1307697151,1307701247,1307709439,1307713535,1307717631,1307721727,1307725823,1307729919,1307734015,1307738111,1307742207,1307743743,1307743999,1307745279,1307745535,1307745791,1307746303,1307750399,1307754495,1307755775,1307756031,1307756543,1307757567,1307758591,1307762687,1307766783,1307770879,1307774975,1307779071,1307779583,1307787263,1307791359,1307791871,1307792383,1307792895,1307793663,1307793919,1307794175,1307794431,1307795455,1307803647,1307807743,1307811839,1307815935,1307816959,1307817215,1307817471,1307817727,1307817983,1307818495,1307818751,1307819263,1307819519,1307819775,1307820031,1307824127,1307828223,1307832319,1307836415,1307840511,1307844607,1307848703,1307852799,1307856895,1307860991,1307865087,1307869183,1307873279,1307877375,1307881471,1307885567,1307889663,1307893759,1307897855,1307901951,1307906047,1307910143,1307914239,1307914495,1307917055,1307917311,1307918079,1307918335,1307922431,1307926527,1307930623,1307934719,1307938815,1307942911,1307947007,1307951103,1307959295,1307963391,1307967487,1307971583,1307979775,1307981823,1307982335,1307982847,1307983103,1307983359,1307983615,1307983871,1307987967,1307992063,1307996159,1308000255,1308004351,1308006399,1308007423,1308008447,1308012543,1308016639,1308020735,1308021503,1308021759,1308022783,1308023807,1308024063,1308024319,1308024575,1308024831,1308028927,1308029183,1308029439,1308029695,1308029951,1308030207,1308030463,1308030719,1308030975,1308033023,1308033279,1308033535,1308033791,1308034047,1308034559,1308034815,1308035071,1308035327,1308035583,1308035839,1308036095,1308036351,1308036607,1308036863,1308037119,1308041215,1308049407,1308053503,1308055551,1308057599,1308058623,1308059647,1308060671,1308060927,1308061439,1308061695,1308063743,1308064767,1308065279,1308065791,1308069887,1308073983,1308078079,1308080127,1308082175,1308082431,1308082687,1308082943,1308083199,1308083455,1308083711,1308083967,1308084223,1308086271,1308088319,1308090367,1308092415,1308096511,1308098559,1308360703,1308622847,1308884991,1309147135,1309409279,1309671423,1309933567,1310195711,1310197759,1310199807,1310201855,1310203903,1310205951,1310207999,1310208767,1310209279,1310209791,1310210047,1310212095,1310214143,1310214399,1310214911,1310215167,1310215423,1310215679,1310215935,1310216191,1310218239,1310219263,1310220287,1310221311,1310222335,1310224383,1310226431,1310226943,1310227199,1310227455,1310227967,1310228479,1310230527,1310232575,1310234623,1310236671,1310238719,1310240767,1310242815,1310244863,1310246911,1310247167,1310247423,1310247679,1310247935,1310248447,1310248703,1310248959,1310251007,1310255103,1310257151,1310261247,1310261503,1310261759,1310277631,1310310399,1310326783,1310343167,1310359551,1310392319,1310408703,1310425087,1310457855,1310474239,1310490623,1310507007,1310523391,1310556159,1310572543,1310588927,1310605311,1310621695,1310638079,1310654463,1310656511,1310658559,1310660607,1310662655,1310664703,1310666751,1310668799,1310670847,1310672895,1310674943,1310676991,1310679039,1310681087,1310683135,1310685183,1310687231,1310689279,1310695423,1310695935,1310696447,1310696703,1310696959,1310697471,1310699519,1310699775,1310700031,1310701567,1310703615,1310704639,1310706687,1310706943,1310707199,1310707455,1310707711,1310707967,1310708223,1310708479,1310708735,1310709247,1310709759,1310711807,1310713855,1310714879,1310715903,1310717951,1310718975,1310719999,1310851071,1310982143,1311113215,1311244287,1311246335,1311247359,1311248383,1311250431,1311252479,1311254527,1311256575,1311258623,1311261183,1311262719,1311264767,1311266815,1311268351,1311268607,1311268863,1311270911,1311271935,1311272447,1311272703,1311272959,1311273983,1311274495,1311275007,1311277055,1311279103,1311280127,1311280383,1311280895,1311281151,1311285247,1311289343,1311291391,1311293439,1311295487,1311296511,1311297023,1311297535,1311299583,1311299839,1311301631,1311303679,1311307775,1311309823,1311311871,1311315967,1311318015,1311320063,1311321087,1311322111,1311323135,1311324159,1311326207,1311328255,1311330303,1311332351,1311337215,1311337471,1311337727,1311337983,1311338495,1311340543,1311342591,1311344639,1311345151,1311345407,1311345663,1311346175,1311346431,1311346687,1311348735,1311350783,1311352831,1311354879,1311356927,1311357183,1311357439,1311357695,1311357951,1311358207,1311358719,1311358975,1311361023,1311363071,1311365119,1311367167,1311369215,1311371263,1311373311,1311375359,1311506431,1311637503,1312292863,1312817151,1313865727,1313931263,1313996799,1314062335,1314127871,1314193407,1314258943,1314324479,1314390015,1314455551,1314521087,1314586623,1314652159,1314717695,1314783231,1314848767,1314914303,1315045375,1315176447,1315307519,1315373055,1315438591,1315504127,1315569663,1315700735,1315704831,1315708927,1315713023,1315717119,1315725311,1315729407,1315729663,1315729919,1315730431,1315730943,1315731967,1315732223,1315732991,1315733247,1315733503,1315737599,1315741695,1315745791,1315748607,1315748863,1315749887,1315753983,1315755007,1315755519,1315756031,1315756543,1315756799,1315757055,1315758079,1315762175,1315766271,1315770367,1315774463,1315778559,1315780607,1315781631,1315781887,1315782399,1315782655,1315786751,1315790847,1315794943,1315803135,1315807231,1315815423,1315819519,1315823615,1315827711,1315831807,1315835903,1315839999,1315844095,1315848191,1315852287,1315856383,1315860479,1315864575,1315868671,1315872767,1315876863,1315880959,1315885055,1315889151,1315891199,1315893247,1315897343,1315901439,1315905535,1315909631,1315913727,1315917823,1315918847,1315919871,1315920383,1315920895,1315921919,1315922175,1315922687,1315922943,1315923199,1315923455,1315923711,1315924479,1315924735,1315924991,1315925247,1315925503,1315925759,1315926015,1315930111,1315931135,1315934207,1315938303,1315942399,1315942655,1315942911,1315944191,1315944447,1315946495,1315950591,1315954687,1315958783,1315962879,1317011455,1317040127,1317040639,1317044223,1317076991,1317109759,1317129471,1317129727,1317142527,1317175295,1317208063,1317240831,1317273599,1317306367,1317339135,1317371903,1317404671,1317437439,1317470207,1317486591,1317502975,1317535743,1317552127,1317568511,1317584895,1317585919,1317588991,1317599231,1317599743,1317600511,1317601023,1317601279,1317617663,1317625855,1317627903,1317629951,1317634047,1317650431,1317666815,1317667071,1317667327,1317667583,1317667839,1317668863,1317669119,1317669375,1317669887,1317670911,1317671167,1317671423,1317671935,1317672959,1317673215,1317673471,1317674495,1317674751,1317675007,1317676031,1317677055,1317677311,1317677567,1317678079,1317678335,1317678591,1317680127,1317680383,1317681151,1317681663,1317681919,1317682431,1317682687,1317682943,1317683199,1317691391,1317694463,1317697023,1317697279,1317699071,1317699583,1317715967,1317732351,1317748735,1317765119,1317781503,1317814271,1317830655,1317847039,1317854975,1317855231,1317860351,1317861375,1317862399,1317863423,1317879807,1317896191,1317912575,1317916671,1317920767,1317928959,1317929215,1317931007,1317931263,1317933567,1317933823,1317936383,1317936639,1317945343,1317957631,1317958143,1317978111,1317979135,1317980159,1317981183,1317982207,1317983231,1317984255,1317984511,1317985279,1317986303,1317987327,1317988351,1317989887,1317990143,1317990399,1317990655,1317990911,1317991167,1317991423,1317992447,1317993471,1317994495,1317996543,1317997567,1318010879,1318027263,1318043647,1318051839,1318052863,1318053887,1318055935,1318056191,1318056447,1318056959,1318057215,1318057471,1318057983,1318058239,1318584319,1318592511,1318600703,1318608895,1318617087,1318625279,1318633471,1318649855,1318658047,1318666239,1318674431,1318682623,1318683135,1318683391,1318684927,1318685439,1318685695,1318685951,1318686719,1318686975,1318687487,1318687743,1318690815,1318699007,1318707199,1318715391,1318723583,1318731775,1318739967,1318748159,1318756351,1318764543,1318780927,1318789119,1318797311,1318805503,1318813695,1318821887,1318838271,1318846463,1318854655,1318862847,1318866943,1318868991,1318871039,1318879231,1318887423,1318895615,1318897663,1318903807,1318911999,1318920191,1318928383,1318936575,1318944767,1318958079,1318960127,1318961151,1318969343,1318977535,1318985727,1319000063,1319002111,1319010303,1319018495,1319026687,1319034879,1319043071,1319051263,1319059455,1319067647,1319075839,1319076607,1319076863,1319077887,1319078911,1319079935,1319080959,1319081215,1319081727,1319081983,1319083007,1319083263,1319084031,1319092223,1319100415,1319108607,1321205759,1322254335,1323302911,1325400063,1329572863,1329573887,1329594367,1329725439,1330118655,1330122751,1330123775,1330184191,1330249727,1330315263,1330380799,1330642943,1331691519,1331757055,1331822591,1331824639,1331826687,1331828735,1331830783,1331832831,1331834879,1331836927,1331838463,1331838975,1331841023,1331843071,1331845119,1331847167,1331849215,1331851263,1331853311,1331855359,1331857407,1331859455,1331861503,1331863551,1331865599,1331868671,1331868927,1331869183,1331869439,1331869695,1331870719,1331871743,1331873791,1331877887,1331879935,1331881983,1331883007,1331883263,1331884031,1331885055,1331885567,1331885823,1331886079,1331888127,1331890175,1331892223,1331894271,1331896319,1331898367,1331900415,1331902463,1331904511,1331908607,1331910655,1331911679,1331912703,1331914751,1331916799,1331918847,1331920895,1331922943,1331924991,1331927039,1331929087,1331931135,1331933183,1331935231,1331937279,1331939327,1331941375,1331943423,1331945471,1331947519,1331948287,1331948543,1331949567,1331951615,1331953663,1332019199,1332084735,1332150271,1332215807,1332346879,1332412415,1332477951,1332609023,1332613119,1332617215,1332621311,1332621567,1332622079,1332622335,1332622591,1332623103,1332623359,1332624383,1332624639,1332624895,1332625407,1332629503,1332633599,1332637695,1332641791,1332645887,1332649983,1332651519,1332651775,1332652031,1332653055,1332654079,1332657151,1332658175,1332662271,1332663807,1332664319,1332666367,1332666623,1332666879,1332667135,1332667391,1332667647,1332667903,1332668671,1332669183,1332669439,1332669695,1332669951,1332670207,1332670463,1332740095,1333002239,1333133311,1333264383,1333297151,1333362687,1333395455,1333428223,1333460991,1333493759,1333526527,1333526783,1333527039,1333528575,1333528831,1333537023,1333537279,1333542399,1333542655,1333546495,1333546751,1333551103,1333559295,1333592063,1333624831,1333657599,1333690367,1333723135,1333755903,1333772287,1333773311,1333773567,1333773823,1333774079,1333774335,1333774591,1333775103,1333775359,1333775615,1333776127,1333776383,1333776639,1333776895,1333777407,1333777663,1333777919,1333778175,1333778431,1333778687,1333778943,1333779199,1333780479,1333780735,1333780991,1333781247,1333781503,1333781759,1333782015,1333782271,1333782783,1333783039,1333783295,1333783551,1333784063,1333784319,1333784575,1333784831,1333785087,1333785343,1333785599,1333785855,1333786111,1333786367,1333786623,1333786879,1333788159,1333788415,1333788671,1334050815,1334059007,1334067199,1334075391,1334083583,1334084095,1334084607,1334085119,1334085375,1334085631,1334085887,1334086143,1334086399,1334086655,1334086911,1334087167,1334087679,1334091775,1334099967,1334100479,1334102015,1334108159,1334116351,1334124543,1334127359,1334127615,1334132223,1334132479,1334132735,1334141951,1334142975,1334143999,1334144255,1334144767,1334145023,1334147071,1334147327,1334147583,1334147839,1334148095,1334148351,1334148607,1334148863,1334161407,1334161663,1334161919,1334162175,1334162431,1334162687,1334163455,1334165503,1334173695,1334181887,1334190079,1334194175,1334198271,1334206463,1334214655,1334222847,1334231039,1334239231,1334239487,1334239999,1334240255,1334242559,1334242815,1334246911,1334247423,1334255615,1334263807,1334271999,1334274047,1334274303,1334274559,1334275071,1334276095,1334278143,1334280191,1334288383,1334296575,1334304767,1334312959,1334345727,1334378495,1334379263,1334379519,1334382847,1334383103,1334395903,1334396927,1334411263,1334412543,1334412799,1334422015,1334422527,1334423551,1334424575,1334428159,1334429695,1334430207,1334430719,1334431231,1334431487,1334431743,1334441983,1334442239,1334444031,1334509567,1334509823,1334510335,1334510591,1334510847,1334511359,1334511615,1334511871,1334512383,1334512639,1334512895,1334513151,1334513663,1334517759,1334521855,1334522879,1334523903,1334525951,1334526463,1334526719,1334526975,1334527999,1334530047,1334530559,1334531071,1334532095,1334534143,1334540287,1334542335,1334575103,1334579199,1334583295,1334591487,1334595583,1334598143,1334598399,1334598655,1334599679,1334603775,1334607871,1334611967,1334616063,1334620159,1334624255,1334628351,1334632447,1334636543,1334640639,1334644735,1334644991,1334645759,1334646783,1334647039,1334648319,1334648831,1334652927,1334661119,1334665215,1334669311,1334673407,1334677503,1334681599,1334682623,1334683135,1334683647,1334684159,1334684671,1334685183,1334685695,1334689791,1334693887,1334697983,1334702079,1334706175,1334710271,1334714367,1334718463,1334722559,1334723839,1334724095,1334724351,1334725631,1334726399,1334726655,1334729983,1334730751,1334734847,1334738943,1334743039,1334747135,1334751231,1334751743,1334752255,1334753279,1334754303,1334755327,1334759423,1334763519,1334767615,1334771711,1334775807,1334776575,1334776831,1334777855,1334779903,1334783999,1334784767,1334785023,1334785791,1334786047,1334788095,1334792191,1334793215,1334793983,1334794239,1334796287,1334800383,1334804479,1334804735,1334804991,1334805247,1334805503,1334806527,1334806783,1334807039,1334807295,1334807551,1334808575,1334812671,1334816767,1334817023,1334817279,1334820607,1334820863,1334824959,1334829055,1334833151,1334837247,1335885823,1336016895,1336147967,1336279039,1336410111,1336541183,1336543231,1336545279,1336547327,1336549375,1336551423,1336553471,1336555519,1336556543,1336557311,1336557567,1336558591,1336559615,1336561663,1336563711,1336567807,1336569855,1336571903,1336573951,1336575999,1336578047,1336579071,1336580095,1336584191,1336586239,1336588287,1336590335,1336592383,1336594431,1336596479,1336598527,1336600575,1336602623,1336604671,1336606719,1336608767,1336610815,1336612863,1336613375,1336613887,1336614655,1336614911,1336616959,1336619007,1336621055,1336623103,1336625151,1336627199,1336629247,1336631295,1336633343,1336635391,1336637439,1336639487,1336643583,1336645631,1336647679,1336649727,1336651775,1336653823,1336655871,1336657919,1336659967,1336662015,1336663039,1336663295,1336663551,1336664063,1336668159,1336670207,1336672255,1336705023,1336721407,1336737791,1336754175,1336770559,1336786943,1336803327,1336804351,1336805375,1336806399,1336807423,1336808447,1336808703,1336809471,1336810495,1336811519,1336827903,1336836095,1336838399,1336838655,1336838911,1336839423,1336839679,1336841471,1336841727,1336842239,1336844287,1336846335,1336848383,1336850431,1336852479,1336868863,1336885247,1336893183,1336893695,1336898815,1336899071,1336901631,1336918015,1336934399,1337458687,1337982975,1342177279,1342701567,1342834687,1342842879,1342844927,1342853119,1342860799,1342861055,1342869503,1342871551,1342875647,1342877695,1342988799,1342989055,1343017983,1343018239,1343025151,1343025663,1343025919,1343026175,1343027455,1343027967,1343028479,1343028991,1343218687,1343218943,1343219199,1343219455,1343219711,1343219967,1343220223,1343220479,1343220735,1343221503,1343221759,1343222271,1343222527,1343222783,1343223039,1343223295,1343223551,1343223807,1343224063,1343224319,1343224575,1343224831,1343225087,1343225855,1343750143,1344798719,1345323007,1345601535,1345617919,1345847295,1345978367,1346109439,1346240511,1346371583,1346375679,1346377727,1346377983,1346378239,1346378495,1346378751,1346379775,1346383871,1346387967,1346392063,1346396159,1346400255,1346404351,1346408447,1346412543,1346416639,1346420735,1346424831,1346425855,1346426879,1346427903,1346428927,1346430975,1346439167,1346441215,1346445311,1346449407,1346452223,1346452479,1346452735,1346452991,1346453247,1346453503,1346461695,1346469887,1346473983,1346478079,1346482175,1346486271,1346490367,1346491135,1346491391,1346492415,1346493439,1346494463,1346498559,1346502655,1346510847,1346519039,1346519551,1346519807,1346520831,1346521087,1346522111,1346522367,1346522879,1346523135,1346523647,1346523903,1346524159,1346524415,1346524671,1346524927,1346525183,1346525439,1346527231,1346531327,1346535423,1346537471,1346537727,1346537983,1346538495,1346538751,1346539263,1346539519,1346543615,1346547711,1346551807,1346552831,1346553087,1346553343,1346553599,1346553855,1346554879,1346555903,1346559999,1346562815,1346563327,1346564095,1346568191,1346569983,1346570239,1346572287,1346572543,1346572799,1346573055,1346575615,1346575871,1346576127,1346576383,1346577407,1346578431,1346579455,1346580479,1346584575,1346584831,1346585087,1346585343,1346585599,1346585855,1346586111,1346586367,1346586879,1346587135,1346587391,1346587647,1346588671,1346588927,1346589183,1346589439,1346590719,1346590975,1346591231,1346592767,1346596863,1346600959,1346605055,1346609151,1346614527,1346614783,1346617087,1346617343,1346620415,1346620927,1346621439,1346625535,1346629631,1346637823,1346650111,1346654207,1346658303,1346666495,1346670591,1346670847,1346671103,1346671359,1346671615,1346672383,1346672639,1346672895,1346673151,1346673407,1346673663,1346673919,1346674175,1346674431,1346674687,1346678783,1346686975,1346691071,1346695167,1346699263,1346705407,1346705663,1346707455,1346711551,1346715647,1346723839,1346732031,1346736127,1346740223,1346742527,1346742783,1346744319,1346748415,1346752511,1346756607,1346760703,1346764799,1346768895,1346772991,1346777087,1346781183,1346789375,1346793471,1346795519,1346797567,1346801663,1346805759,1346813951,1346818047,1346821631,1346822143,1346826239,1346830335,1346838527,1346842623,1346846719,1346854911,1346859007,1346863103,1346867199,1346867711,1346867967,1346868223,1346868479,1346868735,1346869503,1346869759,1346870015,1346870271,1346870527,1346870783,1346871039,1346871295,1346879487,1346883583,1346887679,1346887935,1346888191,1346888447,1346889215,1346889727,1346889983,1346890239,1346890495,1346891007,1346891263,1346891519,1346891775,1346895871,1346899967,1346900991,1346901503,1346901759,1346902015,1346904063,1346908159,1346912255,1346920447,1346924543,1346928639,1346932735,1346936831,1346940927,1346945023,1346949119,1346951167,1346951423,1346951679,1346951935,1346957311,1346961407,1346965503,1346969599,1346973695,1346977791,1346985983,1346992127,1346994175,1346995711,1346995967,1346996223,1346998271,1347002367,1347006463,1347010559,1347014655,1347017471,1347018751,1347022847,1347023103,1347023359,1347023615,1347023871,1347024127,1347024383,1347024895,1347035135,1347039231,1347043327,1347047423,1347051519,1347059711,1347067903,1347071999,1347076095,1347084287,1347092479,1347096575,1347098623,1347100671,1347108863,1347112959,1347117055,1347121151,1347125247,1347129343,1347133439,1347141631,1347145727,1347145983,1347146239,1347146495,1347146751,1347147007,1347147263,1347147519,1347147775,1347148031,1347148543,1347148799,1347149055,1347149311,1347149567,1347149823,1347158015,1347160063,1347162111,1347166207,1347166719,1347167231,1347168255,1347169023,1347169279,1347170303,1347170559,1347170815,1347171071,1347171327,1347172351,1347173375,1347173887,1347174143,1347174399,1347182591,1347186687,1347190783,1347194879,1347198975,1347203071,1347207167,1347215359,1347223551,1347223807,1347224063,1347224575,1347224831,1347225087,1347226623,1347226879,1347227135,1347227391,1347227647,1347229951,1347230207,1347231743,1347235839,1347239935,1347240447,1347241471,1347241727,1347244031,1347245055,1347246079,1347247359,1347247871,1347248127,1347252223,1347256319,1347260415,1347264511,1347268607,1347272703,1347276799,1347280895,1347284991,1347289087,1347293183,1347293439,1347297279,1347305471,1347309567,1347313663,1347321855,1347322879,1347323391,1347323647,1347323903,1347324927,1347325951,1347330047,1347338239,1347342335,1347346431,1347350527,1347354623,1347355647,1347356671,1347357695,1347357951,1347358207,1347358463,1347358719,1347362815,1347366911,1347371007,1347375103,1347379199,1347383295,1347387391,1347391487,1347395583,1347399679,1347403775,1347407871,1347411967,1347416063,1347420159,1347428351,1347432447,1347436543,1347440639,1347441151,1347441663,1347442687,1347443199,1347443711,1347444735,1347452927,1347461119,1347465215,1347469311,1347473407,1347477503,1347481343,1347481599,1347485695,1347493887,1347502079,1347502335,1347502591,1347502847,1347503103,1347503359,1347503871,1347504383,1347504639,1347505151,1347505407,1347505663,1347505919,1347506431,1347506687,1347506943,1347507199,1347508223,1347508479,1347508735,1347509503,1347509759,1347510271,1347518463,1347522559,1347526655,1347534847,1347538943,1347543039,1347544063,1347544319,1347547135,1347551231,1347555327,1347559423,1347567615,1347571711,1347575807,1347579903,1347588095,1347592191,1347600383,1347602431,1347603455,1347603711,1347608575,1347612671,1347616767,1347620863,1347624959,1347633151,1347637247,1347639295,1347639807,1347640063,1347640319,1347641343,1347649535,1347653631,1347657727,1347661823,1347663871,1347664895,1347665919,1347670015,1347674111,1347682303,1347686399,1347687679,1347688447,1347688703,1347689727,1347689983,1347690239,1347690495,1347694591,1347706879,1347710975,1347715071,1347717119,1347717375,1347717631,1347718143,1347719167,1347720191,1347720447,1347720703,1347723263,1347723519,1347723775,1347724031,1347724287,1347724543,1347724799,1347725055,1347725311,1347725567,1347725823,1347727359,1347731455,1347739647,1347747839,1347751935,1347754751,1347755775,1347756031,1347760127,1347764223,1347772415,1347776511,1347780607,1347784703,1347788799,1347792895,1347796991,1347801087,1347805183,1347809279,1347809535,1347809791,1347810303,1347811327,1347813375,1347817471,1347817727,1347821567,1347825663,1347829759,1347833855,1347834111,1347835903,1347836415,1347837951,1347846143,1347850239,1347854335,1347856639,1347856895,1347857407,1347860735,1347860991,1347862527,1347866623,1347870719,1347874815,1347878911,1347887103,1347891199,1347895295,1347903487,1347907583,1347911679,1347915775,1347919871,1347923967,1347928063,1347931647,1347931903,1347932159,1347936255,1347940351,1347944447,1347944959,1347945215,1347945471,1347945983,1347946239,1347946751,1347947007,1347947263,1347947519,1347948543,1347952639,1347956735,1347960831,1347963903,1347964927,1347969023,1347977215,1347985407,1347989503,1347993599,1348001791,1348003839,1348005887,1348009983,1348010239,1348010495,1348010751,1348011007,1348012031,1348013055,1348013311,1348014079,1348018175,1348026367,1348028415,1348030463,1348034559,1348038655,1348038911,1348039679,1348039935,1348040703,1348040959,1348041215,1348041471,1348041727,1348041983,1348042239,1348042751,1348050943,1348055039,1348059135,1348063231,1348067327,1348071423,1348075519,1348083711,1348091903,1348095999,1348100095,1348104191,1348108287,1348112383,1348116479,1348120575,1348121343,1348121599,1348122623,1348124671,1348128767,1348131839,1348132351,1348132863,1348136959,1348141055,1348145151,1348149247,1348153343,1348157439,1348157951,1348159743,1348160255,1348160511,1348160767,1348161535,1348161791,1348162047,1348162559,1348162815,1348163071,1348163327,1348163583,1348163839,1348164095,1348164607,1348165631,1348169727,1348173823,1348177919,1348182015,1348190207,1348194303,1348194559,1348194815,1348195071,1348195327,1348195583,1348195839,1348196095,1348196351,1348196607,1348197119,1348197375,1348197631,1348197887,1348198143,1348198399,1348202495,1348206591,1348218879,1348221695,1348221951,1348222207,1348222463,1348222975,1348231167,1348235263,1348239359,1348241407,1348242943,1348243455,1348247551,1348251647,1348255743,1348257791,1348258815,1348259071,1348259327,1348259583,1348263935,1348268031,1348272127,1348275199,1348275711,1348275967,1348280319,1348284415,1348288511,1348292607,1348296703,1348300799,1348304895,1348308991,1348313087,1348317183,1348321279,1348325375,1348325631,1348325887,1348326143,1348326399,1348326911,1348327167,1348327423,1348327679,1348327935,1348328191,1348328447,1348328703,1348328959,1348329215,1348329471,1348337663,1348341759,1348345855,1348349951,1348354047,1348354559,1348354815,1348358143,1348358655,1348359167,1348360191,1348360447,1348360703,1348360959,1348361215,1348362239,1348366335,1348370431,1348374527,1348378623,1348382719,1348386815,1348390911,1348395007,1348399103,1348403199,1348407295,1348411391,1348415487,1348419583,1348427775,1348435967,1348440063,1348444159,1348448255,1348456447,1348460543,1348464639,1348468735,1348480255,1348480511,1348508671,1348508927,1348509183,1348509439,1348509695,1348544511,1348544767,1348545023,1348545279,1348545535,1348545791,1348546047,1348546303,1348546559,1348548607,1348549631,1348558847,1348559103,1348599807,1348730879,1348861951,1348993023,1349124095,1349255167,1349451775,1349517311,1349763071,1349771263,1349779455,1349910527,1350041599,1350303743,1350434815,1350565887,1351806975,1351807231,1352150783,1352151039,1352468479,1352469759,1352470015,1352470527,1352663039,1353187327,1353257983,1353258239,1353258495,1353259007,1353267455,1353268223,1353268479,1353269247,1353269503,1353269759,1353270527,1353271295,1353271551,1353271807,1353273343,1353274367,1353275391,1353277951,1353278207,1353278719,1353278975,1353279487,1353281023,1353281535,1353282047,1353282559,1353283071,1353283327,1353287679,1353289727,1353298687,1353300735,1353300991,1353306111,1353306367,1353306623,1353307135,1353308159,1353308671,1353308927,1353309183,1353310463,1353310719,1353311231,1353311743,1353312255,1353312767,1353313279,1353313791,1353314303,1353314815,1353315327,1353316351,1353317887,1353318143,1353318399,1353383935,1353449471,1353515007,1353646079,1353842687,1353973759,1354235903,1354301439,1354366975,1354432511,1354498047,1354563583,1354629119,1354647551,1354651647,1354694655,1354760191,1355022335,1355284479,1355415551,1355513855,1355546623,1355808767,1355841535,1355857919,1355862015,1355864063,1355865343,1355865599,1355866111,1355868159,1355870207,1355872255,1355873279,1355873791,1355874047,1355874303,1355907071,1355923455,1355931647,1355935743,1355936767,1355937791,1355938815,1355939327,1355939583,1355939839,1355956223,1355964415,1355972607,1356005375,1356054527,1356062719,1356066815,1356068863,1356070911,1356201983,1356333055,1356464127,1356595199,1356857343,1356922879,1356988415,1357053951,1357119487,1357185023,1357250559,1357316095,1357316607,1357317631,1357317887,1357318143,1357320703,1357320959,1357322495,1357323263,1357323519,1357324031,1357324287,1357324543,1357327359,1357328127,1357328895,1357329151,1357329407,1357329919,1357330687,1357330943,1357331711,1357331967,1357332223,1357332479,1357333247,1357333503,1357333759,1357334015,1357334271,1357334527,1357334783,1357335039,1357335295,1357335551,1357336319,1357336575,1357338111,1357338623,1357338879,1357339391,1357339647,1357340159,1357340415,1357340671,1357342719,1357342975,1357344511,1357344767,1357346815,1357347071,1357347327,1357347839,1357348095,1357348351,1357348607,1357349119,1357349887,1357350399,1357351167,1357351423,1357352959,1357353983,1357354495,1357354751,1357355007,1357355263,1357355775,1357356031,1357356543,1357357055,1357357567,1357358079,1357358335,1357358591,1357358847,1357359103,1357360127,1357360383,1357360639,1357360895,1357361151,1357363199,1357364223,1357365247,1357365759,1357366015,1357366271,1357366527,1357366783,1357367295,1357367551,1357368063,1357368319,1357368831,1357369343,1357369855,1357370111,1357370367,1357370879,1357371135,1357371647,1357371903,1357372159,1357372927,1357373183,1357377535,1357379327,1357379583,1357379839,1357381631,1357414399,1357447167,1357479935,1357512703,1357545471,1357577983,1357578239,1357611007,1357643775,1357676543,1357709311,1357742079,1357750271,1357754367,1357774847,1357791231,1357807615,1357808639,1357822975,1357823487,1357823743,1357823999,1357832191,1357840383,1357873151,1357873663,1357873919,1357874431,1357874687,1357875199,1357875711,1357875967,1357876991,1357877247,1357877503,1357877759,1357878271,1357879039,1357879295,1357879551,1357879807,1357880063,1357880319,1357880575,1357880831,1357881087,1357883391,1357885183,1357885439,1357886463,1357887487,1357887999,1357888511,1357888767,1357889535,1357889791,1357890047,1357890815,1357891071,1357891583,1357891839,1357892095,1357892351,1357893119,1357893375,1357893887,1357894143,1357894399,1357894655,1357894911,1357895167,1357895423,1357895679,1357895935,1357896191,1357896447,1357896703,1357896959,1357897215,1357898751,1357899007,1357899263,1357899519,1357899775,1357900287,1357900543,1357900799,1357901055,1357902335,1357902591,1357903359,1357903615,1357905663,1357905919,1357910015,1357914111,1357922303,1357926399,1357927935,1357928191,1357930495,1357930751,1357931007,1357931519,1357931775,1357932031,1357932287,1357932543,1357932799,1357933055,1357933311,1357933567,1357934079,1357934335,1357934847,1357935103,1357935359,1357935615,1357937663,1357937919,1357938175,1357938687,1357942783,1357946879,1357955071,1357959167,1357963263,1357967359,1357971455,1357975551,1357975807,1357976063,1357976575,1357976831,1357977087,1357977599,1357977855,1357978111,1357978367,1357978623,1357979135,1357979391,1357979647,1357983743,1357985791,1357987839,1357989631,1357989887,1357991679,1357991935,1357996031,1358000127,1358004223,1358006271,1358008319,1358012415,1358016511,1358020607,1358028799,1358032895,1358036991,1358041087,1358045183,1358049279,1358051327,1358051583,1358051839,1358052095,1358052863,1358053119,1358053375,1358065663,1358069759,1358086143,1358090239,1358094335,1358102527,1358106623,1358110719,1358118911,1358123007,1358127103,1358131199,1358132735,1358133247,1358135295,1358136319,1358139391,1358143487,1358147583,1358151679,1358155775,1358159871,1358160895,1358161151,1358161407,1358161919,1358162943,1358163967,1358168063,1358168319,1358168575,1358168831,1358169087,1358169343,1358169599,1358169855,1358170111,1358170367,1358170623,1358170879,1358171135,1358172159,1358176255,1358180351,1358184447,1358192639,1358196735,1358200831,1358209023,1358213119,1358217215,1358221311,1358223359,1358223871,1358224127,1358224895,1358225407,1358229503,1358233599,1358237695,1358241791,1358242047,1358242559,1358242815,1358243327,1358243839,1358244095,1358244351,1358244863,1358245375,1358245631,1358245887,1358248447,1358248959,1358249471,1358249983,1358254079,1358258175,1358259199,1358260223,1358262271,1358266367,1358274559,1358278655,1358282751,1358286847,1358290943,1358295039,1358299135,1358303231,1358306303,1358306559,1358306815,1358307071,1358307327,1358311423,1358314239,1358314751,1358315007,1358315519,1358323711,1358327807,1358331903,1358335999,1358344191,1358352383,1358356479,1358356735,1358356991,1358357247,1358357503,1358357759,1358358015,1358358271,1358358527,1358358783,1358359295,1358360575,1358364671,1358368767,1358372863,1358376959,1358381055,1358385151,1358389247,1358397439,1358397695,1358398463,1358399487,1358399999,1358400255,1358400511,1358400767,1358401279,1358401535,1358402047,1358402303,1358402559,1358402815,1358403071,1358403327,1358403583,1358403839,1358404863,1358405119,1358405375,1358405631,1358409727,1358413823,1358422015,1358426111,1358430207,1358434303,1358438399,1358442495,1358446591,1358450687,1358454783,1358462975,1358467071,1358471167,1358475263,1358479359,1358479615,1358483455,1358487551,1358491647,1358495743,1358499839,1358503935,1358508031,1358512127,1358516223,1358520319,1358524415,1358525183,1358525439,1358526463,1358527487,1358528511,1358528767,1358529023,1358529279,1358529535,1358529791,1358530047,1358530303,1358530815,1358532607,1358534655,1358536703,1358540799,1358548991,1358551039,1358553087,1358557183,1358561279,1358569471,1358573567,1358577663,1358585855,1358589951,1358594047,1358598143,1358602239,1358610431,1358614527,1358622719,1358626815,1358635007,1358639103,1358643199,1358647295,1358651391,1358654463,1358655487,1358665727,1358666239,1358667775,1358672383,1358672895,1358673407,1358673919,1358674175,1358674431,1358674687,1358674943,1358675199,1358675455,1358675967,1358676735,1358676991,1358677759,1358679295,1358680063,1358684159,1358688255,1358692351,1358696447,1358700543,1358704639,1358708735,1358712831,1358716927,1358721023,1358725119,1358733311,1358741503,1358745599,1358749695,1358753791,1358757887,1358766079,1358770175,1358774271,1358778367,1358782463,1358782719,1358782975,1358783231,1358783487,1358783743,1358785535,1358785791,1358790655,1358798847,1358802943,1358807039,1358811135,1358815231,1358819327,1358821375,1358821631,1358822399,1358823423,1358827519,1358831615,1358835711,1358839807,1358843903,1358847999,1358856191,1358860287,1358864383,1358872575,1358876671,1358880767,1358881791,1358882815,1358883071,1358883839,1358884863,1358888959,1358893055,1358897151,1358897919,1358898431,1358898687,1358898943,1358899199,1358899711,1358899967,1358900223,1358900735,1358901247,1358901503,1358902271,1358903551,1358904831,1358905087,1358905343,1358909439,1358913535,1358917631,1358921727,1358929919,1358934015,1358938111,1358946303,1358950399,1358954495,1358970879,1358987263,1359003647,1359010303,1359010559,1359010815,1359011071,1359011327,1359017471,1359017727,1359017983,1359018239,1359018495,1359020031,1359036415,1359052799,1359101951,1359118335,1359118591,1359118847,1359119103,1359119359,1359120383,1359121919,1359122431,1359123455,1359123711,1359123967,1359124223,1359124479,1359132671,1359133183,1359133439,1359133695,1359134207,1359134463,1359134719,1359151103,1359167487,1359183871,1359200255,1359216639,1359233023,1359249407,1359265791,1359282175,1359298559,1359314943,1359322111,1359322367,1359331327,1359347711,1359364095,1359380479,1359396863,1359413247,1359429631,1359446015,1359462399,1359470591,1359478783,1359511551,1359544319,1359577087,1359609855,1359642623,1359675391,1359708159,1359740927,1359773695,1359806463,1359839231,1359871999,1359904767,1359937535,1359970303,1360003071,1360007167,1360009215,1360010239,1360011263,1360015359,1360019455,1360023551,1360027647,1360031743,1360035839,1360036863,1360037887,1360038143,1360038911,1360039167,1360039935,1360044031,1360048127,1360048639,1360050175,1360050431,1360051455,1360051711,1360052223,1360056319,1360057343,1360058367,1360059391,1360060415,1360064511,1360068607,1360072703,1360076799,1360082943,1360089087,1360093183,1360099327,1360099583,1360099839,1360100095,1360100351,1360101375,1360105471,1360109567,1360113663,1360117759,1360121855,1360125951,1360126975,1360127487,1360127999,1360128511,1360129023,1360130047,1360134143,1360138239,1360142335,1360146431,1360150527,1360158719,1360162815,1360175103,1360179199,1360183295,1360191487,1360195583,1360199679,1360203775,1360207871,1360211967,1360216063,1360224255,1360224767,1360225023,1360225279,1360226047,1360226303,1360226559,1360226815,1360227071,1360227327,1360227583,1360227839,1360228095,1360228351,1360232447,1360233215,1360233471,1360233983,1360234239,1360234495,1360234751,1360235007,1360235263,1360235519,1360235775,1360236031,1360236543,1360240639,1360244735,1360249087,1360249343,1360249855,1360250111,1360250623,1360251391,1360251647,1360252927,1360253439,1360254975,1360255231,1360257023,1360265215,1360265983,1360267007,1360268031,1360268287,1360269311,1360273407,1360281599,1360282111,1360282367,1360283391,1360283647,1360283903,1360284159,1360284671,1360284927,1360285183,1360285439,1360289791,1360293887,1360302079,1360306175,1360310271,1360314367,1360318463,1360322559,1360323071,1360323327,1360325119,1360325375,1360325631,1360326399,1360326655,1360330751,1360331007,1360331263,1360331519,1360331775,1360332287,1360332799,1360333055,1360333823,1360334079,1360334335,1360334591,1360334847,1360338943,1360343039,1360347135,1360351231,1360355327,1360359423,1360363519,1360365567,1360367615,1360371711,1360375807,1360379903,1360383999,1360389119,1360390143,1360391167,1360392191,1360396287,1360400383,1360404479,1360405503,1360405759,1360406015,1360406271,1360406527,1360407551,1360407807,1360408063,1360412671,1360420863,1360424959,1360429055,1360430335,1360430591,1360431103,1360431359,1360431615,1360431871,1360432127,1360432383,1360432639,1360433151,1360437247,1360441343,1360445439,1360445695,1360445951,1360446463,1360447487,1360451583,1360453631,1360454655,1360455679,1360456703,1360457727,1360461823,1360465919,1360470015,1360474111,1360478207,1360482303,1360486399,1360494591,1360498687,1360515071,1360519167,1360525311,1360525567,1360525823,1360526335,1360526591,1360526847,1360527103,1360527359,1360530431,1360531455,1360535551,1360539647,1360543743,1360547839,1360551935,1360556031,1360564223,1360568319,1360572415,1360576511,1360580607,1360584703,1360588799,1360590847,1360592895,1360596991,1360601087,1360605183,1360610559,1360610815,1360611071,1360611327,1360612351,1360613375,1360617471,1360621567,1360625663,1360627967,1360628223,1360628479,1360628735,1360628991,1360629503,1360629759,1360633855,1360637951,1360642047,1360643071,1360643327,1360643583,1360644351,1360644607,1360644863,1360645119,1360645375,1360645631,1360646143,1360650239,1360654335,1360658431,1360666623,1360674815,1360676863,1360678911,1360683007,1360691199,1360698367,1360698623,1360699391,1360703487,1360707583,1360709631,1360711679,1360715775,1360728063,1360732159,1360736255,1360740351,1360748543,1360752639,1360756735,1360760831,1360764927,1360769023,1360773119,1360777215,1360781311,1360785407,1360790527,1360791039,1360791295,1360791551,1360792575,1360792831,1360793087,1360793343,1360793599,1360797695,1360805887,1360809983,1360814079,1360818175,1360822271,1360826367,1360830463,1360838655,1360842751,1360846847,1360850943,1360851967,1360852991,1360854015,1360854271,1360854527,1360854783,1360855039,1360859135,1360863231,1360867327,1360879615,1360883711,1360891903,1360892159,1360892415,1360892927,1360893183,1360893439,1360893695,1360893951,1360894207,1360894463,1360894719,1360894975,1360895231,1360895487,1360895743,1360895999,1360900095,1360905727,1360905983,1360909055,1360909311,1360916479,1360920575,1360928767,1360932863,1360936959,1360941055,1360945151,1360949247,1360953343,1360957439,1360961535,1360965631,1360977919,1360986111,1360986367,1360986623,1360987135,1360987391,1360987647,1360987903,1360988159,1360990207,1360990463,1360990719,1360991743,1360991999,1360994303,1360998399,1361002495,1361006591,1361010687,1361018879,1361022975,1361027071,1361035263,1361036287,1361036543,1361036799,1361037055,1361037311,1361037823,1361038335,1361039359,1361039615,1361039871,1361040383,1361040639,1361041407,1361043455,1361045247,1361045759,1361046015,1361046527,1361048063,1361048575,1361049087,1361049599,1361050623,1361051647,1362100223,1362399231,1362403327,1362406143,1362407167,1362407679,1362407935,1362409727,1362409983,1362415615,1362417663,1362419711,1362421759,1362624511,1362755583,1362886655,1363017727,1363148799,1363410943,1363673087,1363841279,1363841535,1363935231,1364197375,1364262911,1364328447,1364459519,1364525055,1364526335,1364526591,1364528639,1364528895,1364530175,1364531455,1364531711,1364540671,1364540927,1364541439,1364545535,1364571135,1364571647,1364577791,1364578303,1364581375,1364582399,1364585983,1364586239,1364586495,1364586751,1364590591,1364721663,1364725759,1364733951,1364738047,1364742143,1364746239,1364749311,1364749567,1364749823,1364750079,1364750335,1364754431,1364758527,1364762623,1364766719,1364770815,1364774911,1364779007,1364787199,1364795391,1364799487,1364803583,1364809727,1364815871,1364819967,1364824063,1364828159,1364832255,1364836351,1364840447,1364844543,1364852479,1364852735,1364856831,1364860927,1364865023,1364869119,1364872703,1364872959,1364873215,1364877311,1364881407,1364885503,1364889599,1364893695,1364897791,1364898815,1364899839,1364900863,1364901375,1364901631,1364901887,1364905983,1364910079,1364914175,1364918271,1364920575,1364920831,1364921343,1364921599,1364922367,1364924415,1364926463,1364934655,1364938751,1364942847,1364944895,1364946943,1364951039,1364959231,1364962303,1364964351,1364966655,1364966911,1364967423,1364971519,1364975615,1364979711,1364982783,1364983295,1364983551,1364983807,1364991999,1364996095,1365000191,1365004287,1365008383,1365012479,1365012735,1365013503,1365014527,1365015551,1365016063,1365016319,1365016575,1365020671,1365024767,1365028863,1365032959,1365033983,1365035007,1365039103,1365039359,1365040127,1365041151,1365045247,1365046271,1365047295,1365049343,1365057535,1365061631,1365065727,1365073919,1365078015,1365082111,1365090303,1365094399,1365094655,1365094911,1365095935,1365096191,1365096447,1365096703,1365096959,1365097215,1365097471,1365097727,1365097983,1365098495,1365102591,1365102847,1365103103,1365103359,1365103871,1365104127,1365105151,1365105407,1365105663,1365105919,1365106431,1365106687,1365110783,1365114879,1365118975,1365127167,1365131263,1365139455,1365145855,1365146111,1365147135,1365147391,1365147647,1365155839,1365159935,1365164031,1365170687,1365170943,1365171199,1365171711,1365171967,1365172223,1365176319,1365180415,1365184511,1365192703,1365196799,1365200895,1365204991,1365209087,1365213183,1365217279,1365221375,1365225471,1365229567,1365233663,1365237759,1365241855,1365245951,1366294527,1367343103,1369440255,1369473023,1369505791,1369507839,1369508863,1369509375,1369509631,1369509887,1369518079,1369519103,1369520127,1369520639,1369520895,1369521151,1369521663,1369521919,1369522175,1369526271,1369530367,1369530879,1369531391,1369534975,1369535231,1369535487,1369538559,1369554943,1369559039,1369563135,1369564159,1369564415,1369564671,1369564927,1369565183,1369566207,1369566463,1369566719,1369566975,1369567231,1369571327,1369585151,1369585663,1369591807,1369595903,1369604095,1369620479,1369624575,1369626623,1369636863,1369638911,1369640959,1369655295,1369657343,1369659391,1369661439,1369665535,1369669631,1369686015,1369687039,1369688063,1369690111,1369694207,1369702399,1369833471,1369964543,1369973503,1369973759,1369975039,1369975295,1369994239,1369994495,1369994751,1369995007,1369995263,1369996031,1369996287,1369996799,1369997055,1369997311,1370030079,1370062847,1370095615,1370128383,1370132991,1370133503,1370161151,1370174463,1370174719,1370175999,1370176255,1370176511,1370176767,1370177023,1370177279,1370177535,1370177791,1370178559,1370179071,1370179583,1370179839,1370180095,1370180351,1370180863,1370181375,1370181631,1370181887,1370182143,1370182399,1370182911,1370183167,1370183423,1370183679,1370185983,1370186239,1370186495,1370187775,1370188031,1370188287,1370188799,1370189055,1370189311,1370189567,1370190847,1370191871,1370193919,1370226687,1370259455,1370293759,1370294015,1370294783,1370295295,1370296319,1370296831,1370297343,1370298367,1370298623,1370298879,1370299391,1370299647,1370300415,1370301439,1370302463,1370302975,1370303487,1370312703,1370313215,1370313727,1370314751,1370316799,1370317823,1370318847,1370320895,1370321919,1370323967,1370324991,1370357759,1370390527,1370423295,1370439679,1370456063,1370488831,1370619903,1370750975,1370767359,1370769919,1370770175,1370771455,1370772479,1370772991,1370816255,1370816511,1370823423,1370823679,1370828799,1370830079,1370830335,1370830847,1370831103,1370831359,1370831615,1370831871,1370832127,1370832383,1370832639,1370832895,1370833919,1370834175,1370843135,1370843391,1370844159,1370844415,1370844671,1370844927,1370845183,1370866175,1370866431,1370882047,1371013119,1371078655,1371144191,1371201535,1371205631,1371209727,1371275263,1371340799,1371406335,1371471871,1371537407,1371602943,1371668479,1371734015,1371799551,1371865087,1371930623,1371996159,1371996415,1371996671,1371997183,1371997439,1371998207,1371998463,1371998719,1371999487,1371999743,1372000255,1372001279,1372001791,1372002303,1372002815,1372003071,1372003327,1372003583,1372003839,1372004095,1372005375,1372006399,1372007423,1372008447,1372012031,1372012287,1372012543,1372016639,1372019711,1372020223,1372020735,1372020991,1372022015,1372022271,1372022783,1372023039,1372023295,1372023551,1372024831,1372025343,1372025599,1372025855,1372026367,1372026879,1372028927,1372029439,1372030207,1372030463,1372030975,1372031999,1372032511,1372033023,1372033535,1372034047,1372035071,1372036607,1372037119,1372044031,1372045311,1372045567,1372045823,1372046079,1372047359,1372047615,1372048639,1372049407,1372049919,1372050175,1372050687,1372051199,1372051455,1372051711,1372052479,1372055039,1372055551,1372057599,1372058623,1372061695,1372069887,1372073983,1372078079,1372082175,1372086271,1372090367,1372094463,1372098559,1372101119,1372102143,1372102399,1372102655,1372106751,1372110847,1372114943,1372119039,1372123135,1372127231,1372131327,1372135423,1372139519,1372143615,1372147711,1372148479,1372148735,1372149247,1372149503,1372151807,1372153343,1372153599,1372153855,1372154111,1372154879,1372156927,1372157183,1372157695,1372158975,1372159999,1372164095,1372168191,1372172287,1372176383,1372180479,1372184575,1372188671,1372192767,1372323839,1372585983,1372610047,1372610303,1372618751,1372622847,1372651519,1372684287,1372686335,1372686591,1372686847,1372687359,1372691455,1372691711,1372691967,1372695551,1372695807,1372696063,1372704767,1372705023,1372705279,1372707583,1372707839,1372708607,1372717055,1372749823,1372782591,1372815359,1372848127,1373110271,1373124607,1373125119,1373126143,1373126655,1373175807,1373241343,1373306879,1373372415,1373437951,1373503487,1373569023,1373634559,1374683135,1375207423,1375208191,1375208447,1375208703,1375210239,1375210495,1375210751,1375211007,1375211519,1375215615,1375216639,1375219711,1375220735,1375220991,1375221759,1375223807,1375224063,1375235071,1375235583,1375240191,1375240447,1375241215,1375244287,1375248383,1375252479,1375258623,1375258879,1375259647,1375260671,1375262207,1375262463,1375265279,1375265535,1375266815,1375268863,1375559679,1375565823,1375596543,1375600639,1375731711,1375852543,1375852799,1378877439,1379926015,1380188159,1380450303,1380712447,1380974591,1381105663,1381236735,1381367807,1381394431,1381400575,1381433343,1381498879,1381761023,1382023167,1382023423,1382023679,1382039551,1382055935,1382072319,1382088703,1382097919,1382098687,1382105087,1382137855,1382138367,1382138879,1382139391,1382139647,1382140159,1382140671,1382140927,1382141183,1382141439,1382141695,1382141951,1382146047,1382150143,1382151679,1382151935,1382154239,1382170623,1382187007,1382203391,1382203647,1382204671,1382204927,1382205183,1382205439,1382211839,1382212095,1382212351,1382212607,1382212863,1382213119,1382213631,1382215679,1382216191,1382217471,1382217983,1382219007,1382219263,1382219775,1382227199,1382227455,1382252543,1382268927,1382285311,1382301695,1382318079,1382332415,1382334463,1382350847,1382367231,1382383615,1382399999,1382416383,1382417407,1382417663,1382418175,1382418431,1382420479,1382420735,1382420991,1382421247,1382421503,1382421759,1382422015,1382422271,1382422527,1382422783,1382423039,1382423295,1382423551,1382423807,1382424063,1382424575,1382449151,1382465535,1382481919,1382498303,1382514687,1382519039,1382519295,1382531071,1382547455,1382809599,1383071743,1383088127,1383096319,1383096575,1383096831,1383097087,1383097599,1383098111,1383098367,1383098879,1383099903,1383100415,1383102975,1383103231,1383103487,1383103999,1383104511,1383112703,1383114751,1383115263,1383116799,1383120895,1383129087,1383137279,1383145471,1383147775,1383148031,1383153663,1383161855,1383170047,1383186431,1383194623,1383202815,1383211007,1383219199,1383227391,1383239167,1383239423,1383243775,1383251967,1383260159,1383268351,1383270399,1383270911,1383271423,1383271935,1383272191,1383272447,1383276543,1383284735,1383292927,1383301119,1383309311,1383317503,1383321599,1383321855,1383322111,1383322623,1383322879,1383323135,1383323391,1383323647,1383324415,1383324671,1383324927,1383325183,1383325439,1383325695,1383333887,1383350271,1383358463,1383366655,1383367167,1383367679,1383367935,1383368447,1383368703,1383368959,1383369215,1383369471,1383369727,1383369983,1383370239,1383370495,1383372799,1383373055,1383374847,1383383039,1383391231,1383399423,1383407615,1383415807,1383419903,1383420159,1383420415,1383420671,1383420927,1383421183,1383421439,1383421695,1383421951,1383422207,1383422463,1383422719,1383422975,1383423743,1383423999,1383432191,1383440383,1383448575,1383456767,1383457023,1383457279,1383457535,1383457791,1383458047,1383458303,1383458815,1383460863,1383461119,1383461375,1383461887,1383462143,1383462399,1383463935,1383464703,1383464959,1383469055,1383470079,1383471103,1383471359,1383471615,1383472127,1383472383,1383472639,1383472895,1383473151,1383481343,1383482367,1383482879,1383487487,1383487743,1383497727,1383499775,1383501055,1383502079,1383502847,1383503615,1383505919,1383514111,1383522303,1383523327,1383523583,1383524607,1383524863,1383526911,1383527167,1383530495,1383538687,1383546879,1383555071,1383563263,1383571455,1383579647,1383587839,1383591935,1383596031,1383825407,1383858175,1384120319,1384153087,1384185855,1384186879,1384187135,1384187391,1384187903,1384188159,1384188415,1384189183,1384189439,1384189951,1384191999,1384192511,1384192767,1384193023,1384194047,1384195071,1384195583,1384195839,1384196095,1384197119,1384197375,1384198143,1384202239,1384202495,1384206335,1384210431,1384218623,1384242175,1384242431,1384251391,1384267775,1384284159,1384316927,1384349695,1384382463,1384415231,1384480767,1384491263,1384491519,1384497407,1384497663,1384498687,1384498943,1384502527,1384502783,1384508415,1384508671,1384511231,1384511999,1384512767,1384513023,1384513535,1384546303,1384562687,1384579071,1384611839,1384644607,1384660991,1384677375,1384693759,1384710143,1384726527,1384742911,1384759295,1384775679,1384792063,1384793599,1384793855,1384794111,1384794367,1384794879,1384795391,1384795647,1384797183,1384797695,1384797951,1384799231,1384799487,1384799999,1384800255,1384803327,1384804351,1384806399,1384808447,1384809215,1384809471,1384809983,1384810239,1384811007,1384811519,1384811775,1384812031,1384812287,1384812543,1384813567,1384814079,1384814591,1384815615,1384816127,1384816383,1384816639,1384816895,1384817151,1384817407,1384817663,1384818431,1384818943,1384819199,1384819711,1384820223,1384821759,1384822015,1384822271,1384822783,1384823295,1384823807,1384824831,1384841215,1384857599,1384873983,1384890367,1384923135,1384939519,1384940287,1384947455,1384947711,1384952063,1384952319,1384952831,1384953087,1384953343,1384953599,1384953855,1384955903,1384972287,1384988671,1385005055,1385021439,1385037823,1385054207,1385070591,1385086975,1385103359,1385119743,1385136127,1385152511,1385168895,1385177087,1385185279,1385193471,1385201663,1385209855,1385218047,1385226239,1385234431,1385242623,1385250815,1385259007,1385267199,1385275391,1385283583,1385285631,1385287679,1385289727,1385290751,1385291775,1385299967,1385303295,1385303551,1385308159,1385316351,1385324543,1385332735,1385340927,1385349119,1385357311,1385365503,1385373695,1385381887,1385398271,1385406463,1385414655,1385422847,1385431039,1385433087,1385439231,1385447423,1385455615,1385463807,1385480191,1385488383,1385496575,1385504767,1385512959,1385515007,1385516031,1385516287,1385516543,1385516799,1385517055,1385517311,1385517567,1385517823,1385518079,1385521151,1385529343,1385537535,1385545727,1385553919,1385557503,1385557759,1385559039,1385559295,1385560831,1385561087,1385562111,1385562367,1385562623,1385563391,1385564159,1385564415,1385564671,1385565183,1385565439,1385566207,1385567743,1385568255,1385569023,1385569535,1385570303,1385578495,1385586687,1385587711,1385588735,1385589247,1385589503,1385589759,1385590015,1385590783,1385591295,1385591807,1385592063,1385592319,1385594879,1385603071,1385611263,1385619455,1385625599,1385635839,1385644031,1385652223,1385660415,1385668607,1385676799,1385684991,1385738239,1385738751,1385739007,1385739263,1385757695,1385758207,1385758463,1385758719,1385758975,1385759231,1385759743,1385759999,1385761279,1385761535,1385775103,1385775615,1385776127,1385776383,1385776639,1385776895,1385777151,1385793535,1385793791,1385794047,1385794303,1385794815,1385811967,1385812479,1385812735,1385812991,1385815039,1385815295,1385815551,1385815807,1385816063,1385816831,1385817087,1385817599,1385820159,1385820415,1385820671,1385820927,1385821439,1385821951,1385822207,1385822463,1385822975,1385824255,1385955327,1386086399,1386217471,1386283007,1386348543,1386414079,1386422271,1386423295,1386424319,1386426367,1386426623,1386427135,1386427391,1386428415,1386429439,1386430463,1386431487,1386432511,1386437887,1386438143,1386438399,1386438655,1386440703,1386442751,1386444799,1386445823,1386447871,1386448895,1386449151,1386449407,1386449663,1386449919,1386450431,1386450943,1386455039,1386456063,1386457087,1386458111,1386459135,1386465279,1386465535,1386465791,1386466047,1386466303,1386466559,1386466815,1386467071,1386467327,1386467583,1386468863,1386469119,1386469375,1386469631,1386471423,1386472447,1386473471,1386477567,1386477823,1386478079,1386478335,1386478591,1386479615,1386545151,1386545663,1386546175,1386547199,1386547711,1386547967,1386548735,1386548991,1386549247,1386549503,1386549759,1386550271,1386550527,1386550783,1386551039,1386553343,1386554111,1386585599,1386585855,1386587391,1386587647,1386587903,1386589695,1386589951,1386590207,1386590719,1386590975,1386591231,1386591743,1386591999,1386592255,1386592511,1386592767,1386593023,1386593279,1386593535,1386596351,1386596863,1386597375,1386597887,1386598399,1386600447,1386601471,1386601983,1386604031,1386604287,1386605055,1386605311,1386605567,1386606591,1386606847,1386607103,1386607359,1386607615,1386608127,1386608383,1386608639,1386608895,1386609663,1386609919,1386610175,1386610431,1386610687,1386676223,1386741759,1387249663,1387250687,1387251199,1387251711,1387331583,1387397119,1387462655,1387528191,1387536383,1387544575,1387560959,1387562495,1387563007,1387564031,1387565055,1387565567,1387565823,1387566079,1387566335,1387566847,1387567103,1387567359,1387567615,1387567871,1387568127,1387569151,1387570175,1387571199,1387573247,1387575295,1387577343,1387593727,1387659263,1387790335,1388314623,1388315135,1388315647,1388322815,1388331007,1388339199,1388339711,1388340223,1388347391,1388355583,1388363775,1388371967,1388380159,1388396543,1388404735,1388412927,1388421119,1388429311,1388437503,1388445695,1388453887,1388462079,1388470271,1388478463,1388486655,1388494847,1388503039,1388519423,1388527615,1388535807,1388543999,1388552191,1388560383,1388568575,1388576767,1388580863,1388583167,1388583423,1388584959,1388589823,1388590079,1388590847,1388591103,1388591871,1388593151,1388601343,1388609535,1388617727,1388625919,1388634111,1388642303,1388650495,1388658687,1388658943,1388660735,1388661759,1388662015,1388662271,1388662527,1388662783,1388666879,1388675071,1388675327,1388677119,1388677375,1388679167,1388680191,1388683263,1388691455,1388699647,1388707839,1388709887,1388710911,1388711167,1388711423,1388711679,1388711935,1388712703,1388713215,1388713471,1388713983,1388714495,1388714751,1388715519,1388715775,1388716031,1388724223,1388732415,1388740607,1388748799,1388756991,1388765183,1388773375,1388781567,1388789759,1388797951,1388806143,1388806399,1388806655,1388806911,1388808191,1388808447,1388808959,1388809215,1388809471,1388810495,1388811263,1388811519,1388811775,1388812031,1388812543,1388812799,1388813055,1388813311,1388813567,1388813823,1388814079,1388814335,1388822527,1388826623,1388830719,1388838911,1388871679,1388904447,1388937215,1388969983,1389002751,1389017087,1389017599,1389035519,1389068287,1389101055,1389133823,1389166591,1389199359,1389201919,1389202175,1389202431,1389202687,1389205247,1389205503,1389207551,1389207807,1389208319,1389208575,1389208831,1389210367,1389210623,1389211391,1389211647,1389212159,1389212415,1389212671,1389212927,1389213183,1389213439,1389213951,1389214719,1389215743,1389215999,1389216767,1389217791,1389218047,1389218303,1389219839,1389223679,1389224191,1389225215,1389225471,1389231871,1389232127,1389232639,1389233151,1389234175,1389234687,1389235199,1389236223,1389238271,1389248511,1389264895,1389265407,1389265663,1389265919,1389266175,1389266431,1389266943,1389267199,1389267455,1389267967,1389268223,1389268479,1389269247,1389269503,1389269759,1389270015,1389272063,1389272319,1389272575,1389272831,1389273087,1389273343,1389273599,1389273855,1389274111,1389275903,1389276415,1389276671,1389278207,1389278463,1389278719,1389278975,1389279999,1389280255,1389280511,1389280767,1389281023,1389287935,1389288447,1389289471,1389290495,1389292031,1389292287,1389294847,1389295103,1389295359,1389295871,1389296383,1389296639,1389297151,1389297663,1389330431,1389363199,1389368319,1389368575,1389369343,1389379583,1389395967,1389412351,1389428735,1389445119,1389461503,1389477887,1389494271,1389510655,1389518847,1389527039,1389543423,1389557759,1389558015,1389562623,1389562879,1389563903,1389564159,1389566207,1389566463,1389576191,1389592575,1389608959,1389625343,1389641727,1389658111,1389674495,1389690879,1389707263,1389723647,1389756415,1389772799,1389775871,1389776639,1389776895,1389777151,1389777919,1389778431,1389780991,1389783039,1389785087,1389787135,1389787647,1389788159,1389788671,1389789183,1389805567,1389817855,1389819903,1389821951,1389838335,1389838591,1389838847,1389839871,1389840127,1389840383,1389841407,1389841663,1389843455,1389843711,1389854719,1389871103,1389887487,1389953023,1390018559,1390084095,1390149631,1390215167,1390257151,1390257407,1390257663,1390257919,1390280703,1390346239,1390395391,1390396415,1390396927,1390397183,1390411775,1392508927,1394606079,1396703231,1396834303,1396899839,1396965375,1396973567,1396981759,1396989951,1396998143,1396999679,1397000191,1397006335,1397014527,1397022719,1397030911,1397039103,1397047295,1397063679,1397071871,1397096447,1397227519,1397489663,1397751807,1398276095,1398800383,1398833151,1398865919,1398867967,1398870015,1398871039,1398871295,1398871551,1398871807,1398872063,1398874111,1398875391,1398875647,1398876159,1398880255,1398882303,1398884351,1398884607,1398884863,1398885375,1398885631,1398885887,1398886143,1398886399,1398888447,1398889471,1398889727,1398890495,1398892543,1398894591,1398894847,1398895103,1398895359,1398895615,1398896639,1398898687,1398931455,1398951935,1398956031,1398964223,1398983679,1398984703,1398996991,1399029759,1399062527,1399095295,1399128063,1399130111,1399160831,1399193599,1399226367,1399259135,1399291903,1399324671,1399586815,1399717887,1399848959,1400111103,1400242175,1400274943,1400291327,1400299519,1400300543,1400303615,1400305663,1400307711,1400311295,1400311551,1400324095,1400373247,1400635391,1400733695,1400737791,1400768511,1400769023,1400769535,1400770559,1400771583,1400772607,1400772863,1400773631,1400773887,1400778751,1400784895,1400785919,1400786175,1400786431,1400786687,1400786943,1400787199,1400787455,1400787711,1400789247,1400789759,1400790015,1400790271,1400791295,1400791551,1400792063,1400792319,1400793599,1400793855,1400794111,1400794623,1400796671,1400797183,1400797439,1400797695,1400798719,1400798975,1400800255,1400800767,1400801023,1400801279,1400802303,1400802559,1400802815,1400803327,1400807167,1400807423,1400807679,1400808447,1400812287,1400812543,1400813055,1400813311,1400813823,1400814079,1400814335,1400814591,1400815359,1400815615,1400817151,1400817407,1400818175,1400818431,1400819967,1400820223,1400820991,1400821247,1400821503,1400821759,1400822783,1400823039,1400823551,1400824063,1400824831,1400825087,1400830207,1400830463,1400830719,1400830975,1400833279,1400833791,1400834047,1400834303,1400834815,1400835071,1400836095,1400836351,1400839167,1400839423,1400839935,1400840191,1400841215,1400841471,1400842239,1400842495,1400842751,1400843007,1400844031,1400844287,1400844543,1400844799,1400846591,1400846847,1400847615,1400847871,1400848895,1400849151,1400849663,1400849919,1400850687,1400850943,1400851455,1400851711,1400852479,1400852735,1400854783,1400855039,1400856319,1400856575,1400856831,1400857087,1400857343,1400857599,1400858111,1400858367,1400859135,1400859391,1400859647,1400859903,1400860415,1400860671,1400862207,1400862719,1400863487,1400863999,1400865791,1400866047,1400866303,1400866559,1400871167,1400871423,1400871679,1400871935,1400872191,1400872447,1400872703,1400872959,1400873471,1400873727,1400876287,1400876799,1400879103,1400879871,1400881151,1400881407,1400885503,1400885759,1400886271,1400886527,1400886783,1400887039,1400891903,1400892415,1400892671,1400892927,1400893439,1400893695,1400894207,1400894719,1400895743,1400896255,1400897023,1400897279,1400963071,1401028607,1401094143,1401159679,1401225215,1401225471,1401226495,1401226751,1401230079,1401230335,1401233151,1401241855,1401242367,1401243135,1401243647,1401243903,1401246975,1401247231,1401249535,1401250303,1401250815,1401251071,1401251327,1401251583,1401251839,1401252095,1401252351,1401252607,1401253119,1401253375,1401254655,1401254911,1401255167,1401255423,1401256447,1401256703,1401257727,1401262079,1401264127,1401264639,1401265151,1401265919,1401266943,1401267199,1401268223,1401268991,1401270271,1401274367,1401274879,1401275135,1401275391,1401275647,1401276415,1401276671,1401279999,1401280511,1401280767,1401281023,1401281279,1401281535,1401283327,1401283583,1401285887,1401286399,1401286655,1401290751,1401356287,1401421823,1401423871,1401425919,1401427967,1401430015,1401432063,1401434111,1401435135,1401436159,1401438207,1401440255,1401444351,1401446399,1401448447,1401450495,1401452543,1401454591,1401456639,1401458687,1401459711,1401460735,1401462783,1401464831,1401466879,1401467903,1401468159,1401468415,1401468671,1401468927,1401470975,1401473023,1401475071,1401475583,1401476095,1401476607,1401477119,1401477631,1401478143,1401478399,1401478655,1401478911,1401479167,1401481215,1401482495,1401482751,1401485311,1401489407,1401491455,1401493503,1401495551,1401497599,1401499647,1401501695,1401503743,1401505791,1401509887,1401511935,1401513983,1401516031,1401518079,1401520127,1401522175,1401526271,1401526527,1401526783,1401527039,1401527295,1401528063,1401528319,1401530367,1401532415,1401534463,1401536511,1401538559,1401540607,1401542655,1401544703,1401546751,1401548799,1401549055,1401550847,1401552895,1401554943,1401556991,1401563135,1401565183,1401565439,1401565695,1401565951,1401566207,1401566463,1401566719,1401566975,1401567231,1401567487,1401567743,1401567999,1401568255,1401568511,1401568767,1401569023,1401569279,1401585663,1401602047,1401618431,1401634815,1401651199,1401667583,1401683967,1401749503,1401753087,1401753343,1401753599,1401759231,1401759487,1401760255,1401760767,1401764095,1401764351,1401765887,1401782271,1401802751,1401803007,1401815039,1401817087,1401819135,1401821183,1401825279,1401827327,1401828351,1401829375,1401831423,1401833471,1401835519,1401837567,1401839615,1401841663,1401843711,1401847807,1401849855,1401851903,1401853951,1401855999,1401858047,1401866239,1401868287,1401868799,1401870079,1401870335,1401872383,1401874175,1401874431,1401874687,1401874943,1401876223,1401876479,1401878527,1401880575,1401882623,1401884671,1401886719,1401888767,1401890815,1401892863,1401894911,1401896959,1401897983,1401899007,1401900031,1401901055,1401903103,1401905151,1401907199,1401908223,1401909247,1401909503,1401909759,1401910271,1401911295,1401913343,1401917439,1401919487,1401921535,1401923583,1401925631,1401927679,1401929727,1401933823,1401935871,1401937919,1401939967,1401942015,1401942271,1401943295,1401943551,1401944063,1401946111,1401962495,1401978879,1401995263,1402011647,1402018815,1402019327,1402028031,1402044415,1402060799,1402077183,1402093567,1402109951,1402142719,1402143743,1402144255,1402144767,1402145791,1402146815,1402147071,1402147839,1402148095,1402148863,1402149375,1402149887,1402150143,1402150399,1402150911,1402157055,1402158079,1402158591,1402159103,1402175487,1402191871,1402192639,1402196991,1402198015,1402198271,1402198527,1402199551,1402199807,1402200063,1402202111,1402203135,1402204159,1402205183,1402206207,1402207231,1402208255,1402224639,1402241023,1402257407,1402273791,1402277631,1402277887,1402290175,1402306559,1402322943,1402339327,1402355711,1402372095,1402388479,1402389503,1402390527,1402391551,1402392575,1402393599,1402394623,1402394879,1402395391,1402396671,1402397695,1402398719,1402399743,1402400255,1402400767,1402401791,1402402815,1402404863,1402408959,1402413055,1402417151,1402421247,1402422783,1402423039,1402423295,1402423807,1402424319,1402424575,1402424831,1402425343,1402425599,1402425855,1402426367,1402426623,1402427135,1402429439,1402431487,1402433535,1402434047,1402434559,1402434815,1402435071,1402437631,1402454015,1402455551,1402455807,1402456063,1402470399,1402863615,1402929151,1402994687,1403256831,1403322367,1403387903,1403396095,1403404287,1403407871,1403408383,1403412479,1403420671,1403428863,1403437055,1403440383,1403440639,1403441151,1403441407,1403443199,1403443455,1403445247,1403461631,1403469823,1403486207,1403494399,1403502591,1403510783,1403518975,1403535359,1403550463,1403550719,1403550975,1403551231,1403551743,1403568127,1403584511,1403590655,1403597823,1403598079,1403600895,1403617279,1403633663,1403650047,1403666431,1403693055,1403695103,1403695871,1403699199,1403715583,1403731967,1403748351,1403764735,1403765759,1403766783,1403767039,1403767295,1403767807,1403768831,1403769855,1403770879,1403771903,1403772927,1403773183,1403773439,1403773695,1403773951,1403774975,1403775999,1403777023,1403777279,1403778047,1403779071,1403779327,1403779583,1403780095,1403781119,1403796479,1403797503,1403813887,1403816191,1403816447,1403820543,1403821567,1403823615,1403824127,1403824639,1403825151,1403827199,1403828223,1403828735,1403828991,1403829247,1403830015,1403830271,1403846655,1403863039,1403879423,1403895807,1403912191,1403928575,1403944959,1403949055,1403950079,1403953151,1403961343,1403977727,1403994111,1404010495,1404026879,1404043263,1404051455,1404084223,1404108799,1404141567,1404149759,1404188671,1404189183,1404189695,1404207103,1404211199,1404215295,1404219391,1404221439,1404222463,1404227583,1404231679,1404234239,1404234751,1404239871,1404272639,1404280831,1404305407,1404313599,1404385279,1404403711,1404411903,1404420095,1404645631,1404645887,1404788735,1404796927,1404801023,1404802047,1404805119,1404815359,1404815871,1404816383,1404817407,1404821503,1404846079,1404862463,1404895231,1404911615,1404921855,1404923903,1404944383,1404960767,1405018111,1405026303,1405075455,1405091839,1405485055,1405491711,1405491967,1405495551,1405495807,1405504511,1405504767,1405510143,1405510399,1405514751,1405515007,1405516287,1405516543,1405526015,1405526271,1405533439,1405533695,1405536767,1405537023,1405543167,1405543423,1405543679,1405543935,1405545727,1405545983,1405546239,1405546495,1405550591,1405812735,1405845503,1406140415,1406205951,1406271487,1406337023,1406402559,1406468095,1406533631,1406599167,1406664703,1406672895,1406676991,1406679039,1406681087,1406689279,1406697471,1406705663,1406713855,1406721023,1406721279,1406722047,1406730239,1406732543,1406732799,1406733055,1406733311,1406746623,1406754815,1406763007,1406771199,1406775295,1406779391,1406787583,1406787839,1406788095,1406788351,1406788607,1406789375,1406789631,1406789887,1406790143,1406791679,1406791935,1406792191,1406792703,1406792959,1406793983,1406794239,1406794495,1406795775,1406803967,1406812159,1406820351,1406828543,1406836735,1406844927,1406853119,1406861311,1406869503,1406877695,1406885887,1406886143,1406886399,1406886655,1406886911,1406889983,1406894079,1406902271,1406910463,1406918655,1406926847,1406935039,1406951423,1406959615,1406967807,1406975999,1406984191,1407000575,1407016959,1407025151,1407033343,1407041535,1407049727,1407057919,1407059455,1407059967,1407066111,1407074303,1407090687,1407098879,1407107071,1407115263,1407123455,1407131647,1407134975,1407135231,1407139839,1407148031,1407148543,1407148799,1407152383,1407152639,1407156223,1407164415,1407172607,1407173887,1407174143,1407174399,1407174655,1407175935,1407176191,1407176703,1407180799,1407188991,1407320063,1407451135,1407483903,1407516671,1407517183,1407517439,1407517695,1407517951,1407518207,1407518463,1407518719,1407519743,1407520255,1407520511,1407520767,1407521023,1407521279,1407521535,1407521791,1407522303,1407522559,1407522815,1407523071,1407523327,1407523583,1407523839,1407524351,1407524607,1407524863,1407525119,1407525375,1407525631,1407525887,1407526399,1407526655,1407526911,1407528959,1407529983,1407531007,1407531519,1407532287,1407532543,1407532799,1407533055,1407533311,1407533567,1407533823,1407534079,1407534591,1407535871,1407536127,1407537151,1407537663,1407538175,1407539199,1407540223,1407540479,1407540735,1407540991,1407541247,1407542271,1407543039,1407543295,1407544319,1407544575,1407544831,1407545087,1407545343,1407545599,1407545855,1407546111,1407546367,1407547391,1407548415,1407549439,1407582207,1407614975,1407680511,1407681023,1407681535,1407682047,1407682303,1407682559,1407684351,1407684863,1407685119,1407686655,1407687167,1407687423,1407687679,1407687935,1407688959,1407689215,1407690239,1407690495,1407691007,1407691263,1407692799,1407693055,1407695359,1407695615,1407695871,1407696127,1407696383,1407701503,1407701759,1407702015,1407702271,1407702527,1407702783,1407703039,1407704063,1407705599,1407705855,1407707135,1407707391,1407708159,1407708415,1407708671,1407708927,1407709183,1407709695,1407709951,1407710207,1407710719,1407710975,1407711231,1407711743,1407712255,1407712767,1407713023,1407713279,1407778815,1407844351,1407909887,1407975423,1408040959,1408106495,1408172031,1408237567,1408270335,1408303103,1408335871,1408368639,1408376831,1408385023,1408393215,1408397311,1408401407,1408434175,1408436223,1408438271,1408440319,1408442367,1408444415,1408450559,1408454655,1408456703,1408458751,1408460799,1408462847,1408464895,1408465151,1408465407,1408465919,1408466943,1408499711,1408532479,1408584191,1408584703,1408590847,1408591103,1408598015,1408630783,1408663551,1408696319,1408729087,1408761855,1409286143,1409362943,1409363967,1409377791,1409378047,1409378559,1409379071,1409380607,1409380863,1409392383,1409392639,1409409535,1409409791,1409413375,1409415167,1409416703,1409416959,1409423359,1409423615,1409430015,1409430783,1409436159,1409436415,1409548287,1409810431,1409843199,1409847295,1409941503,1410007039,1410018559,1410019071,1410019327,1410021375,1410029055,1410029567,1410047999,1410050047,1410070527,1410070783,1410072575,1410203647,1410207999,1410208255,1410208767,1410209279,1410209535,1410209791,1410210303,1410210559,1410210815,1410211839,1410212095,1410212863,1410213119,1410213375,1410213887,1410219263,1410219519,1410219775,1410220799,1410221055,1410221823,1410222079,1410222335,1410222591,1410222847,1410223103,1410223359,1410223615,1410225663,1410226175,1410250751,1410251007,1410251263,1410251775,1410267391,1410267647,1410267903,1410269183,1410279679,1410279935,1410303999,1410306047,1410318335,1410319359,1410322431,1410326527,1410334719,1410338559,1410338815,1410342399,1410342655,1410342911,1410351103,1410359295,1410367487,1410375679,1410377215,1410377471,1410380031,1410380287,1410380543,1410381311,1410381823,1410382335,1410382591,1410382847,1410383103,1410383359,1410383871,1410392063,1410400255,1410408447,1410408959,1410409215,1410409471,1410409727,1410409983,1410410495,1410411007,1410411519,1410412031,1410412543,1410413055,1410413567,1410414079,1410414591,1410415103,1410415615,1410415871,1410416127,1410416383,1410416639,1410424831,1410433023,1410441215,1410449407,1410457599,1410465791,1410473983,1410490367,1410498559,1410506751,1410531327,1410539519,1410547711,1410555903,1410564095,1410572287,1410588671,1410596863,1410605055,1410613247,1410621439,1410629631,1410635263,1410635519,1410637823,1410646015,1410647807,1410648319,1410654207,1410662399,1410670591,1410678783,1410686975,1410695167,1410703359,1410704383,1410705407,1410705919,1410706175,1410706431,1410706687,1410706943,1410707455,1410708479,1410709503,1410710527,1410710783,1410711295,1410711551,1410719743,1410727935,1410736127,1410744319,1410745855,1410746111,1410746623,1410752511,1410760703,1410765823,1410766847,1410768895,1410777087,1410785279,1410793471,1410801663,1410809855,1410818047,1410826239,1410834431,1410842623,1410850815,1410859007,1411383295,1411384319,1411385087,1411385343,1411385599,1411385855,1411386111,1411386367,1411386879,1411387135,1411387391,1411388415,1411388671,1411388927,1411389439,1411389695,1411389951,1411390207,1411391487,1411391743,1411391999,1411392255,1411393279,1411393791,1411394047,1411395583,1411396607,1411397631,1411398143,1411398399,1411398655,1411399167,1411399423,1411399679,1411399935,1411400191,1411400447,1411400703,1411400959,1411401727,1411402751,1411403263,1411403519,1411403775,1411404287,1411404543,1411404799,1411405055,1411405567,1411405823,1411407871,1411409919,1411410175,1411410431,1411410943,1411411967,1411416063,1411416575,1411418111,1411419135,1411421439,1411421695,1411421951,1411422463,1411422719,1411422975,1411423231,1411423487,1411424255,1411427327,1411427583,1411427839,1411428351,1411428607,1411428863,1411430399,1411432447,1411436543,1411437055,1411437311,1411438079,1411439359,1411439615,1411439871,1411440383,1411440639,1411440895,1411441151,1411441407,1411441663,1411442175,1411442687,1411443711,1411443967,1411445759,1411446015,1411446783,1411447039,1411448831,1411451903,1411452415,1411452671,1411452927,1411453439,1411511295,1411511807,1411514367,1411579903,1411645439,1411710975,1411776511,1411777535,1411778559,1411780607,1411784703,1411788799,1411792895,1411796991,1411805183,1411809279,1411809535,1411811327,1411813375,1411817471,1411821567,1411825663,1411829759,1411833855,1411837951,1411838207,1411838463,1411838719,1411838975,1411839231,1411839487,1411839999,1411840255,1411840511,1411840767,1411841023,1411841279,1411841535,1411841791,1411842047,1411850239,1411858431,1411870719,1411870975,1411872767,1411874815,1411876863,1411877119,1411877375,1411878911,1411879423,1411879935,1411880447,1411880703,1411880959,1411881215,1411881471,1411882239,1411882495,1411882751,1411883007,1411887103,1411889151,1411891199,1411892223,1411893247,1411894271,1411895295,1411899391,1411901439,1411903487,1411907583,1411917823,1411919871,1411922175,1411922431,1411923967,1411940351,1411973119,1411999743,1412001279,1412002047,1412002303,1412002559,1412002815,1412003839,1412004351,1412005887,1412038655,1412071423,1412104191,1412136959,1412169727,1412202495,1412235263,1412254719,1412254975,1412258559,1412258815,1412300799,1412333567,1412343039,1412343295,1412344319,1412344575,1412344831,1412345343,1412345599,1412351999,1412352255,1412353023,1412353279,1412353791,1412354047,1412360703,1412361471,1412361983,1412362239,1412366335,1412399103,1412403711,1412403967,1412405759,1412406271,1412408831,1412409343,1412412159,1412412415,1412412671,1412413439,1412413951,1412414719,1412414975,1412415487,1412431871,1412464639,1412497407,1412562943,1412628479,1412644863,1412661247,1412677631,1412685823,1412694015,1412710399,1412726783,1412743167,1412775935,1412792319,1412792831,1412793087,1412793855,1412794879,1412795135,1412795391,1412795647,1412795903,1412798975,1412799231,1412799487,1412800511,1412800767,1412801023,1412801535,1412802559,1412803583,1412803839,1412804351,1412804607,1412804863,1412805119,1412806655,1412806911,1412807167,1412807423,1412807679,1412808703,1412825087,1412826111,1412827135,1412828159,1412828415,1412828927,1412829183,1412830207,1412830719,1412830975,1412831231,1412832255,1412833279,1412833535,1412833791,1412834047,1412834303,1412834559,1412834815,1412835071,1412835327,1412836351,1412837375,1412837631,1412837887,1412838399,1412838911,1412839167,1412840447,1412840703,1412840959,1412841215,1412841471,1412857855,1412874239,1412890623,1412907007,1412923391,1412939775,1412956159,1413480447,1414004735,1414266879,1414529023,1415053311,1415184383,1415315455,1415446527,1415577599,1416101887,1416364031,1416626175,1416891391,1416894463,1416900607,1416904703,1416905471,1416905727,1416935935,1416936191,1416939519,1416940031,1416941567,1416943615,1416944639,1416945663,1416946943,1416947199,1416950527,1416950783,1416953855,1417019391,1417150463,1417674751,1421869055,1422393343,1422466303,1422466559,1422491647,1422508031,1422512127,1422516223,1422520319,1422524415,1422589951,1422655487,1422721023,1422729215,1422737407,1422745599,1422753791,1422761983,1422770175,1422786559,1422852095,1422858239,1422858495,1422858751,1422859007,1422860031,1422860287,1422862847,1422863103,1422864127,1422864383,1422864895,1422865151,1422865407,1422865919,1422866431,1422866687,1422869247,1422869503,1422870271,1422870783,1422871039,1422871295,1422872831,1422873087,1422873599,1422873855,1422875391,1422875647,1422875903,1422876159,1422876671,1422876927,1422878719,1422878975,1422879231,1422879487,1422879999,1422880255,1422880511,1422881023,1422883071,1422883583,1422883839,1422884095,1422885375,1422885631,1422887167,1422887423,1422887935,1422888447,1422889983,1422890751,1422891007,1422891263,1422892031,1422892287,1422894591,1422894847,1422896895,1422897151,1422897407,1422897663,1422898431,1422898687,1422900735,1422901503,1422901759,1422902015,1422902783,1422903295,1422905343,1422907391,1422911743,1422914303,1422914559,1422917631,1423441919,1423704063,1423835135,1423966207,1424097279,1424228351,1424359423,1424490495,1424523263,1424556031,1424588799,1424589311,1424589567,1424590335,1424590591,1424590847,1424591359,1424592639,1424593151,1424593407,1424593919,1424594175,1424595199,1424595455,1424596479,1424596991,1424597247,1424597503,1424597759,1424598015,1424599039,1424599551,1424599807,1424600063,1424600319,1424600575,1424600831,1424601087,1424601343,1424601599,1424601855,1424602111,1424602623,1424602879,1424603135,1424603391,1424603903,1424604159,1424604671,1424604927,1424605183,1424605439,1424605695,1424605951,1424606207,1424606719,1424606975,1424607487,1424607743,1424607999,1424608511,1424609023,1424609279,1424609791,1424610303,1424610559,1424610815,1424611071,1424611327,1424611583,1424612095,1424612351,1424612863,1424613119,1424613375,1424613631,1424614143,1424614399,1424614655,1424614911,1424615167,1424615423,1424615935,1424616191,1424616447,1424616703,1424616959,1424617215,1424617471,1424617727,1424617983,1424618239,1424618495,1424618751,1424619007,1424619775,1424620031,1424621055,1424621311,1424621567,1424625663,1424629759,1424633855,1424637951,1424642047,1424646143,1424647167,1424648191,1424649215,1424650239,1424654335,1424687103,1424711679,1424713727,1424719871,1424728063,1424736255,1424736767,1424740351,1424744447,1424748543,1424752639,1424785407,1424818175,1424850943,1424883711,1424916479,1424949247,1424950527,1424951295,1424951807,1424952063,1424952319,1424952575,1424953343,1424953855,1424954111,1424955647,1424955903,1424956159,1424957439,1424957695,1424957951,1424958719,1424958975,1424959743,1424959999,1424960255,1424960511,1424960767,1424961023,1424961279,1424961791,1424962047,1424962303,1424963071,1424963327,1424964607,1424965119,1424965375,1424965631,1424973823,1424974847,1424982015,1425014783,1425031167,1425047551,1425063935,1425080319,1425096703,1425113087,1425145855,1425147903,1425149951,1425154047,1425158143,1425162239,1425178623,1425195007,1425211391,1425227775,1425244159,1425260543,1425276927,1425293311,1425309695,1425326079,1425342463,1425354751,1425357055,1425357311,1425358847,1425375231,1425391615,1425407999,1425424383,1425426431,1425428479,1425428735,1425428991,1425429247,1425429503,1425429759,1425430015,1425430527,1425432575,1425434623,1425434879,1425435135,1425435647,1425435903,1425436159,1425436415,1425436671,1425438463,1425438719,1425440767,1425442815,1425444863,1425446911,1425448959,1425451007,1425459199,1425459711,1425460991,1425461247,1425463295,1425467391,1425469439,1425471487,1425473535,1425473791,1425474047,1425474559,1425475583,1425477631,1425477887,1425478143,1425478399,1425478655,1425479167,1425479679,1425479935,1425480191,1425480447,1425480703,1425481727,1425482751,1425483775,1425484799,1425485311,1425485823,1425486079,1425486335,1425486591,1425487103,1425487359,1425488127,1425488383,1425488639,1425488895,1425489151,1425489407,1425489663,1425489919,1425490175,1425490431,1425490687,1425492223,1425492479,1425492991,1425493503,1425493759,1425496575,1425497087,1425497599,1425498111,1425498623,1425499135,1425499647,1425500159,1425500415,1425500927,1425501183,1425501695,1425501951,1425502719,1425503231,1425503743,1425504255,1425504511,1425504767,1425506303,1425522687,1425539071,1425801215,1425818623,1425818879,1425819135,1425820671,1425821695,1425822719,1425823231,1425823487,1425823743,1425824767,1425825023,1425825279,1425825791,1425826815,1425827327,1425827839,1425828095,1425828351,1425828607,1425828863,1425829887,1425830143,1425830399,1425830655,1425830911,1425831935,1425832959,1425833983,1425841151,1425842175,1425850367,1425866751,1425883135,1425899519,1425915903,1425932287,1425948671,1425952767,1425960959,1425965055,1425965311,1425965567,1425965823,1425966079,1425966335,1425966591,1425966847,1425967103,1425967359,1425967615,1425967871,1425968127,1425968383,1425968639,1425968895,1425969151,1425969663,1425969919,1425970175,1425970431,1425970687,1425970943,1425971199,1425971455,1425971711,1425971967,1425972223,1425972479,1425972735,1425972991,1425973247,1425973503,1425973759,1425974015,1425974271,1425974527,1425974783,1425975039,1425975295,1425975551,1425975807,1425976063,1425976319,1425976575,1425976831,1425977087,1425977343,1425980415,1425980927,1425981183,1425981439,1425997823,1426014207,1426030591,1426046975,1426063359,1426587647,1426604031,1426620415,1426620671,1426620927,1426621183,1426621439,1426622463,1426624511,1426625535,1426626559,1426626815,1426627071,1426627327,1426627583,1426629631,1426631679,1426632703,1426633727,1426634239,1426634751,1426635775,1426636031,1426636287,1426636799,1426653183,1426669567,1426685951,1426702335,1426718719,1426731007,1426735103,1426743295,1426751487,1426767871,1426784255,1426800639,1426817023,1426830335,1426831359,1426832127,1426832383,1426832895,1426833151,1426833407,1426849791,1426850303,1426858239,1426860031,1426860287,1426860799,1426861055,1426864383,1426864639,1426866175,1426882559,1426898943,1426915327,1426931711,1426948095,1426964479,1426980863,1426997247,1427013631,1427030015,1427046399,1427062783,1427095551,1427111935,1427177471,1427243007,1427308543,1427374079,1427439615,1427505151,1427570687,1427636223,1427668991,1427701759,1427706367,1427706879,1427707135,1427708415,1427708927,1427709951,1427718399,1427718655,1427719423,1427719935,1427722239,1427725311,1427726335,1427726847,1427727615,1427727871,1427730175,1427731455,1427732735,1427732991,1427742207,1427742463,1427743231,1427743743,1427744767,1427745791,1427746559,1427746815,1427753983,1427754495,1427756031,1427756287,1427758335,1427758591,1427760127,1427761151,1427761663,1427761919,1427763199,1427763711,1427764479,1427764735,1427764991,1427765247,1427767295,1427800063,1427832831,1427865599,1427898367,1427910655,1427912191,1427912703,1427913727,1427914239,1427914495,1427914751,1427931135,1427947519,1427963903,1427980287,1427996671,1428013055,1428029439,1428045823,1428062207,1428078591,1428094975,1428103167,1428104191,1428105215,1428106239,1428106495,1428106751,1428107007,1428107263,1428108287,1428108543,1428109311,1428110335,1428111359,1428119551,1428121599,1428123647,1428126975,1428127231,1428127487,1428127743,1428129791,1428131839,1428133887,1428135935,1428137983,1428139007,1428140031,1428142079,1428144127,1428152319,1428153343,1428154367,1428155391,1428156415,1428160511,1429209087,1429987071,1429987327,1430257663,1430388735,1430519807,1430650879,1430781951,1431044095,1431306239,1431568383,1431830527,1431838719,1431846911,1431855103,1431863295,1431868159,1431868415,1431868927,1431869439,1431871487,1431879679,1431887871,1431896063,1431904255,1431912447,1431920639,1431928831,1431937023,1431945215,1431953407,1431961599,1431969791,1431973887,1431975935,1431976959,1431977983,1431986175,1431994367,1432002559,1432010751,1432011007,1432011263,1432011519,1432011775,1432012031,1432012799,1432013823,1432014079,1432014335,1432014591,1432014847,1432015615,1432015871,1432016127,1432016639,1432016895,1432017151,1432017407,1432018431,1432018943,1432024063,1432025087,1432027135,1432035327,1432038399,1432039423,1432043519,1432051711,1432054015,1432054271,1432054527,1432055807,1432056831,1432057343,1432058623,1432058879,1432059903,1432068095,1432076287,1432084479,1432092671,1432100863,1432109055,1432117247,1432118271,1432119295,1432120319,1432120575,1432120831,1432121343,1432122367,1432123135,1432123391,1432124415,1432125439,1432133631,1432150015,1432158207,1432166399,1432174591,1432178687,1432178943,1432180735,1432182271,1432182783,1432190975,1432199167,1432207359,1432215551,1432223743,1432240127,1432248319,1432256511,1432264703,1432272895,1432281087,1432289279,1432306175,1432306431,1432307711,1432307967,1432308735,1432310271,1432310527,1432312063,1432312575,1432313855,1432322047,1432338431,1432346623,1432347903,1432348159,1432351999,1432352767,1432353279,1432353791,1432354047,1432354815,1433403391,1433407487,1433410047,1433410559,1433411071,1433411327,1433411583,1433419775,1433427967,1433436159,1433444351,1433452543,1433460735,1433468927,1433477119,1433485311,1433486335,1433486847,1433487103,1433487359,1433489407,1433490431,1433490687,1433490943,1433491455,1433491711,1433491967,1433492479,1433493503,1433501695,1433509887,1433518079,1433526271,1433526527,1433526783,1433527039,1433527295,1433527551,1433527807,1433528831,1433529855,1433530879,1433534463,1433542655,1433550847,1433559295,1433561087,1433562111,1433564671,1433565183,1433565439,1433565695,1433567231,1433575423,1433583615,1433591807,1433599999,1433608191,1433608447,1433608703,1433608959,1433609215,1433609471,1433609727,1433609983,1433610239,1433610495,1433611263,1433611519,1433611775,1433612031,1433612287,1433613055,1433613311,1433614079,1433614335,1433614591,1433614847,1433615103,1433615359,1433615615,1433615871,1433616127,1433616383,1433624575,1433632767,1433640959,1433649151,1433650175,1433651199,1433652223,1433652479,1433652991,1433654271,1433655295,1433656319,1433657343,1433665535,1433673727,1433681919,1433690111,1433698303,1433706495,1433714687,1433722879,1433731071,1433739263,1433747455,1433755647,1433763839,1433772031,1433788415,1433789439,1433790463,1433791487,1433792511,1433792767,1433793023,1433793279,1433793535,1433795583,1433796607,1433804799,1433812991,1433821183,1433829375,1433831423,1433833471,1433835519,1433835775,1433836031,1433836287,1433837567,1433839615,1433841663,1433843711,1433845759,1433847807,1433849855,1433851903,1433853951,1433855999,1433858047,1433860095,1433860351,1433860607,1433862143,1433864191,1433866239,1433866751,1433867007,1433867519,1433870335,1433872383,1433874431,1433875711,1433875967,1433876223,1433876479,1433876735,1433878527,1433880575,1433882623,1433884671,1433886719,1433888767,1433890815,1433892863,1433894911,1433896959,1433897471,1433897727,1433899007,1433901055,1433903103,1433905151,1433907199,1433909247,1433911295,1433913343,1433917439,1433919487,1433921535,1433923583,1433924095,1433924351,1433924607,1433925119,1433925631,1433927679,1433949183,1433949439,1433985023,1433985791,1433986047,1433986303,1433986559,1433986815,1433987071,1434005759,1434006015,1434006271,1434006527,1434006783,1434007039,1434007295,1434007551,1434024447,1434024703,1434024959,1434025215,1434025471,1434025727,1434025983,1434036223,1434036479,1434036735,1434036991,1434046463,1434046975,1434047487,1434047999,1434048511,1434052607,1434052863,1434053119,1434053375,1434053631,1434053887,1434054143,1434054655,1434054911,1434055167,1434055423,1434055679,1434055935,1434056191,1434056447,1434056703,1434089983,1434090239,1434090495,1434090751,1434091007,1434107903,1434109439,1434110463,1434111999,1434113791,1434114559,1434115071,1434115327,1434115839,1434116095,1434116351,1434116863,1434117119,1434117887,1434118143,1434119167,1434119679,1434120191,1434122751,1434123263,1434123775,1434124287,1434189823,1434451967,1434485759,1434486015,1434486271,1434488319,1434488831,1434517503,1434550271,1434583039,1434615807,1434648575,1434681343,1434697727,1434714111,1434746879,1434763263,1434771455,1434778111,1434778367,1434779647,1434812415,1434818815,1434819071,1434824191,1434824447,1434832895,1434833151,1434834687,1434834943,1434835711,1434835967,1434841343,1434841599,1434841855,1434843647,1434843903,1434845183,1434877951,1434910719,1434943487,1434976255,1435107327,1435238399,1435387903,1435388159,1435389695,1435389951,1435390463,1435391487,1435391743,1435391999,1435393279,1435393535,1435394047,1435394303,1435394559,1435394815,1435395071,1435395327,1435395583,1435398143,1435399167,1435406335,1435407359,1435416575,1435418623,1435420159,1435420415,1435420671,1435421439,1435421695,1435421951,1435422463,1435422719,1435423743,1435424767,1435425023,1435425279,1435425535,1435426303,1435426559,1435428351,1435428607,1435428863,1435429631,1435430143,1435430399,1435430911,1435431679,1435431935,1435432447,1435432703,1435432959,1435433471,1435433727,1435445247,1435447295,1435449087,1435451391,1435500543,1435959295,1436024831,1436090367,1436090623,1436091391,1436091647,1436091903,1436092927,1436093439,1436094463,1436096511,1436097535,1436097791,1436098047,1436098559,1436098815,1436099071,1436101375,1436101631,1436103679,1436104703,1436105215,1436105471,1436106751,1436107007,1436109311,1436110847,1436111615,1436111871,1436114175,1436114431,1436114943,1436118015,1436119039,1436119295,1436119551,1436120575,1436122623,1436123135,1436155903,1436221439,1436286975,1436418047,1436420095,1436421119,1436422143,1436424191,1436424447,1436424703,1436424959,1436426239,1436428287,1436430335,1436432383,1436432639,1436432895,1436433151,1436434431,1436436479,1436438527,1436440575,1436442623,1436444671,1436445695,1436446719,1436450815,1436452863,1436453119,1436453631,1436453887,1436454399,1436454655,1436454911,1436455167,1436455423,1436455679,1436455935,1436456959,1436459007,1436461055,1436463103,1436464383,1436464639,1436465151,1436466175,1436467199,1436469247,1436471295,1436471551,1436471807,1436473343,1436473599,1436473855,1436474111,1436474367,1436475391,1436477439,1436479487,1436479743,1436480767,1436481535,1436483583,1436485631,1436487679,1436489727,1436491775,1436495871,1436497919,1436499967,1436504063,1436508159,1436510207,1436512255,1436512511,1436512767,1436513023,1436513279,1436513535,1436513791,1436514047,1436514303,1436516351,1436520447,1436522495,1436524543,1436526591,1436528639,1436530687,1436532735,1436535807,1436536831,1436538879,1436540927,1436541439,1436541695,1436541951,1436542207,1436542463,1436542719,1436542975,1436545023,1436547071,1436549119,1436682495,1436682751,1436683007,1436683263,1436684799,1436685055,1436686335,1436687103,1436687359,1436687615,1436724991,1436725247,1436748543,1436748799,1436811263,1437073407,1437335551,1437597695,1438121983,1438123007,1438125823,1438126079,1438127359,1438127615,1438127871,1438130175,1438138367,1438146559,1438147583,1438147839,1438148095,1438148351,1438148607,1438150143,1438150655,1438154751,1438171135,1438173183,1438179327,1438180351,1438181375,1438183423,1438184447,1438185471,1438186495,1438187519,1438253055,1438318591,1438323967,1438324223,1438331903,1438333951,1438351359,1438359551,1438373119,1438373887,1438375423,1438375679,1438384127,1438400511,1438433279,1438515199,1438531583,1438532351,1438532607,1438535679,1438535935,1438536191,1438536703,1438536959,1438537215,1438537727,1438539775,1438547967,1438548479,1438548991,1438549503,1438550015,1438550271,1438552319,1438552575,1438552831,1438553087,1438553343,1438553599,1438553855,1438554111,1438554623,1438555135,1438556159,1438557183,1438558207,1438559231,1438560255,1438573567,1438573823,1438574079,1438574335,1438574591,1438575103,1438576127,1438576383,1438576639,1438578431,1438578687,1438579711,1438580223,1438580479,1438580735,1438646271,1438656511,1438657023,1438658559,1438659071,1438662399,1438662655,1438679039,1438695423,1438711807,1438728191,1438731263,1438731519,1438731775,1438732031,1438732287,1438735359,1438735871,1438736127,1438736383,1438744575,1438748671,1438752767,1438760959,1438777343,1438793727,1438810111,1438826495,1438827519,1438828543,1438829567,1438836991,1438837247,1438838783,1438840831,1438841855,1438842367,1438842879,1438859263,1438875647,1438892031,1438908415,1438924799,1438941183,1438957567,1438973951,1438999551,1438999807,1439002367,1439002623,1439006719,1439023103,1439039487,1439047679,1439051775,1439055871,1439062015,1439063039,1439072255,1439088639,1439105023,1439121407,1439154175,1439163903,1439164159,1439169535,1439170303,1439170559,1439236095,1439301631,1439305727,1439309823,1439318015,1439322111,1439322367,1439322623,1439323135,1439323391,1439323647,1439323903,1439324159,1439325183,1439326207,1439330303,1439334399,1439338495,1439342591,1439343103,1439343359,1439343615,1439344127,1439344383,1439344639,1439345663,1439346687,1439350783,1439351807,1439352831,1439353087,1439353343,1439353599,1439353855,1439354879,1439358975,1439367167,1439368191,1439368447,1439369471,1439369727,1439371007,1439371263,1439371519,1439372031,1439372287,1439372543,1439372799,1439373055,1439373311,1439373567,1439373823,1439375359,1439375615,1439375871,1439376127,1439376383,1439376639,1439376895,1439377151,1439377407,1439378431,1439378687,1439378943,1439379199,1439379455,1439380479,1439383551,1439399935,1439432703,1439437055,1439437311,1439437567,1439437823,1439438335,1439438847,1439439615,1439439871,1439440383,1439440895,1439441919,1439442175,1439442431,1439442943,1439443455,1439443711,1439444991,1439446015,1439446527,1439447039,1439449087,1439450111,1439450623,1439450879,1439451135,1439451391,1439451647,1439451903,1439452159,1439452671,1439452927,1439453183,1439457279,1439457791,1439459327,1439459839,1439460607,1439460863,1439461375,1439462399,1439462655,1439462911,1439463167,1439463423,1439463935,1439464703,1439464959,1439465215,1439465471,1439466495,1439467007,1439467263,1439467519,1439468031,1439468543,1439469567,1439469823,1439470079,1439470335,1439470591,1439471615,1439473663,1439474687,1439475711,1439476735,1439477759,1439479807,1439481855,1439482111,1439482367,1439482879,1439483391,1439483647,1439483903,1439485951,1439490047,1439494143,1439494399,1439494911,1439495167,1439495423,1439495679,1439495935,1439496191,1439496703,1439497215,1439497471,1439497727,1439497983,1439498239,1439513855,1439514111,1439514367,1439514623,1439516671,1439518207,1439518719,1439529983,1439530239,1439534079,1439535103,1439536127,1439537151,1439538175,1439538687,1439539199,1439549439,1439551487,1439556095,1439556607,1439558143,1439558911,1439560191,1439560447,1439560703,1439561215,1439561727,1439562239,1439562751,1439563007,1439563263,1439563775,1439629311,1439694847,1439695871,1439696895,1439698943,1439700991,1439702015,1439703039,1439704063,1439705087,1439706111,1439706623,1439707135,1439707647,1439707903,1439708159,1439709183,1439710207,1439710975,1439711231,1439712255,1439712511,1439713023,1439713279,1439713535,1439713791,1439714303,1439715327,1439716351,1439717375,1439718399,1439719423,1439719679,1439719935,1439720191,1439720447,1439721215,1439721471,1439721727,1439721983,1439722239,1439722495,1439722751,1439723007,1439723263,1439723519,1439724287,1439724543,1439725567,1439726591,1439728639,1439729663,1439729919,1439730175,1439730431,1439730687,1439731711,1439732735,1439732991,1439733247,1439733503,1439733759,1439735807,1439736831,1439737855,1439738879,1439739903,1439740927,1439741951,1439742975,1439743999,1439745023,1439746047,1439747071,1439748095,1439749119,1439750143,1439751167,1439752191,1439753215,1439754239,1439755263,1439756287,1439757311,1439759359,1439760383,1439760639,1439761151,1439762431,1439763455,1439764479,1439764735,1439764991,1439765247,1439765503,1439766527,1439767551,1439768575,1439769599,1439770623,1439771647,1439772671,1439774719,1439775743,1439776767,1439777791,1439778047,1439778559,1439778815,1439779839,1439780863,1439781887,1439782911,1439783935,1439784959,1439785983,1439787007,1439788031,1439789055,1439790079,1439791103,1439791359,1439791615,1439791871,1439792127,1439793151,1439793407,1439793919,1439794175,1439794431,1439794687,1439795199,1439796223,1439797247,1439798271,1439798527,1439799295,1439800319,1439800575,1439800831,1439801087,1439801343,1439801855,1439802111,1439802367,1439803391,1439804415,1439805439,1439805695,1439805951,1439806207,1439806463,1439807487,1439808511,1439809535,1439810559,1439811583,1439812607,1439813631,1439814655,1439815679,1439815935,1439816191,1439816703,1439816959,1439817215,1439817471,1439817727,1439818751,1439819007,1439819263,1439819519,1439819775,1439820799,1439821823,1439822079,1439822847,1439823871,1439824895,1439825151,1439825407,1439825663,1439825919,1440022527,1440027903,1440028159,1440088063,1440251903,1440284671,1440317439,1440317695,1440317951,1440318463,1440320511,1440320767,1440321535,1440322047,1440322559,1440323071,1440325631,1440326655,1440328703,1440329727,1440331775,1440332287,1440333311,1440333823,1440337919,1440339967,1440340991,1440341503,1440350207,1440375807,1440376063,1440382975,1440403455,1440403711,1440404991,1440405247,1440415743,1440448511,1440481279,1440514047,1440546815,1440579583,1440645119,1440646143,1440646655,1440647167,1440648191,1440648703,1440651263,1440653311,1440653823,1440654079,1440654335,1440657407,1440661503,1440663551,1440665599,1440669695,1440710655,1440743423,1441267711,1441275903,1441284095,1441292287,1441300479,1441308671,1441316863,1441325055,1441333247,1441349631,1441357823,1441366015,1441374207,1441382399,1441383167,1441383423,1441383935,1441384191,1441384447,1441385215,1441387007,1441387263,1441387519,1441388031,1441390079,1441390335,1441390591,1441398783,1441415167,1441423359,1441425919,1441426431,1441431551,1441439743,1441447935,1441456127,1441460735,1441461247,1441461759,1441462271,1441464319,1441472511,1441480703,1441481727,1441482751,1441483775,1441484799,1441485823,1441486847,1441487871,1441488895,1441489151,1441497087,1441505279,1441521663,1441529855,1441538047,1441546239,1441554431,1441556479,1441562623,1441564671,1441566719,1441568767,1441570815,1441579007,1441585663,1441586175,1441587199,1441603583,1441611775,1441613567,1441614847,1441615871,1441616895,1441618175,1441618431,1441618687,1441618943,1441619967,1441624319,1441625087,1441626111,1441628159,1441636351,1441645055,1441645311,1441646591,1441646847,1441647615,1441647871,1441648127,1441648639,1441648895,1441649151,1441649407,1441649663,1441650431,1441650943,1441651711,1441652223,1441652479,1441652735,1441660927,1441669119,1441677311,1441685503,1441693695,1441694719,1441696767,1441697791,1441698815,1441701887,1441710079,1441718271,1441726463,1441729023,1441729535,1441730559,1441730815,1441734655,1441734911,1441735423,1441735679,1441735935,1441736191,1441736447,1441736703,1441737215,1441737727,1441738751,1441739775,1441740543,1441740799,1441741823,1441742847,1441751039,1441759231,1441763327,1441764351,1441764607,1441767423,1441775615,1441783807,1441785343,1441786623,1441786879,1441787391,1441787647,1441789695,1441789951,1441790719,1441791999,1442316287,1442381823,1442447359,1442512895,1442578431,1442643967,1442709503,1442710015,1442710271,1442710527,1442710783,1442711295,1442711551,1442712063,1442712575,1442713087,1442713599,1442716927,1442717439,1442719743,1442719999,1442720255,1442720767,1442721535,1442721791,1442722559,1442722815,1442724607,1442724863,1442725375,1442726399,1442728959,1442729983,1442731007,1442731519,1442733823,1442734847,1442735871,1442736127,1442738175,1442739199,1442739455,1442740223,1442740735,1442741759,1442742015,1442742271,1442743295,1442743807,1442744063,1442744575,1442744831,1442745599,1442750207,1442750463,1442750719,1442750975,1442752511,1442753023,1442754047,1442754559,1442755071,1442755583,1442756095,1442775039,1442779135,1442779647,1442780159,1442780415,1442780671,1442780927,1442781183,1442781439,1442781695,1442782207,1442782719,1442782975,1442783231,1442787327,1442791423,1442795519,1442796543,1442797567,1442798591,1442799615,1442803711,1442805759,1442807807,1442811903,1442815999,1442820095,1442822143,1442824191,1442828287,1442832383,1442836479,1442840575,1444937727,1445068799,1445199871,1445330943,1445331455,1445331711,1445331967,1445332223,1445332479,1445332735,1445332991,1445337087,1445337343,1445337599,1445337855,1445339135,1445339391,1445340159,1445340415,1445340671,1445342207,1445342463,1445354239,1445354495,1445363711,1445364479,1445368063,1445368319,1445369599,1445369855,1445370367,1445370623,1445370879,1445371135,1445371391,1445372159,1445375743,1445375999,1445376255,1445376511,1445377023,1445377535,1445378047,1445378815,1445379071,1445379327,1445379583,1445379839,1445380095,1445382143,1445382399,1445382655,1445383679,1445384191,1445385727,1445385983,1445386239,1445387007,1445387263,1445387519,1445387775,1445388031,1445388287,1445388543,1445389055,1445390079,1445390335,1445390591,1445390847,1445391103,1445391359,1445391615,1445391871,1445392127,1445392639,1445392895,1445393151,1445393407,1445393919,1445394431,1445396479,1445462015,1445986303,1445987327,1445987583,1445987839,1445988095,1445988351,1445988607,1445988863,1445989375,1445989887,1445990399,1445994495,1445997567,1445998335,1445998591,1446003711,1446004735,1446019071,1446039551,1446039807,1446040063,1446040319,1446041599,1446041855,1446042111,1446042367,1446042623,1446042879,1446043135,1446043391,1446043647,1446047743,1446051839,1446117375,1446182911,1446248447,1446313983,1446445055,1446510591,1446543359,1446576127,1446608895,1446641663,1446674431,1446692863,1446693887,1446694911,1446696959,1446707199,1446739967,1446772735,1446805503,1446838271,1446862079,1446862591,1446871039,1446903807,1446904831,1446905855,1446906879,1446908927,1446909951,1446910975,1446911231,1446911487,1446911999,1446913023,1446914047,1446915071,1446916095,1446917119,1446917375,1446917631,1446917887,1446918143,1446919167,1446920191,1446936575,1446952959,1446969343,1446985727,1447002111,1447010303,1447018495,1447026687,1448083455,1449132031,1449394175,1449459711,1449525247,1449590783,1449656319,1449656831,1449657087,1449657599,1449657855,1449658111,1449658367,1449658623,1449659135,1449659391,1449659647,1449659903,1449660159,1449660415,1449661183,1449661439,1449661951,1449662463,1449663487,1449663999,1449664511,1449668607,1449672703,1449672959,1449673727,1449674751,1449675775,1449676799,1449684991,1449687039,1449688063,1449688575,1449688831,1449689087,1449690623,1449690879,1449691135,1449695231,1449697279,1449698303,1449699327,1449701375,1449702655,1449702911,1449703423,1449704447,1449705471,1449705727,1449706239,1449707519,1449709567,1449709823,1449710079,1449710335,1449710591,1449711103,1449711359,1449711615,1449712639,1449713151,1449714687,1449714943,1449715199,1449715711,1449719807,1449720063,1449720319,1449720831,1449721343,1449721855,1449722111,1449722367,1449722623,1449722879,1449723135,1449723391,1449723903,1449724159,1449724415,1449724927,1449725439,1449725695,1449726463,1449726719,1449726975,1449727999,1449728255,1449729023,1449730047,1449732095,1449734143,1449736191,1449738239,1449742335,1449744383,1449746431,1449748479,1449749503,1449750527,1449752575,1449754623,1449758719,1449759743,1449759999,1449760255,1449760511,1449761791,1449762815,1449763839,1449764863,1449765119,1449765887,1449766911,1449767167,1449767423,1449767679,1449767935,1449768447,1449768703,1449768959,1449769471,1449769727,1449769983,1449771007,1449771519,1449771775,1449772031,1449772287,1449772543,1449772799,1449773055,1449774079,1449774591,1449775103,1449776127,1449776639,1449776895,1449777151,1449778175,1449778431,1449778687,1449779199,1449779455,1449779711,1449779967,1449780223,1449780479,1449780991,1449781247,1449781503,1449781759,1449782015,1449782271,1449783295,1449783551,1449784319,1449785343,1449786367,1449786623,1449786879,1449787391,1449789439,1449789951,1449791487,1449791743,1449792511,1449792767,1449793023,1449793279,1449793535,1449793791,1449794047,1449794303,1449794559,1449795071,1449795327,1449795583,1449803775,1449805823,1449806335,1449806591,1449807103,1449807359,1449808383,1449808639,1449809663,1449809919,1449810175,1449810431,1449810687,1449810943,1449811199,1449811455,1449811967,1449812223,1449812479,1449813503,1449813759,1449814015,1449814271,1449815039,1449815295,1449816319,1449816575,1449817087,1449817599,1449817855,1449818111,1449818367,1449818623,1449819135,1449820927,1449821439,1449821951,1449822463,1449822719,1449823743,1449823999,1449824255,1449826303,1449827327,1449827583,1449827839,1449828095,1449828351,1449830399,1449831423,1449831679,1449831935,1449832959,1449833215,1449833727,1449833983,1449834495,1449835519,1449836543,1449838591,1449840639,1449852927,1449857023,1449858047,1449858303,1449858559,1449860607,1449860863,1449861119,1449863167,1449863679,1449863935,1449864191,1449864703,1449865215,1449865727,1449865983,1449866239,1449866495,1449866751,1449867007,1449867263,1449867519,1449868799,1449869055,1449869311,1449870335,1449871359,1449871615,1449873407,1449877503,1449878527,1449878783,1449879039,1449879295,1449879551,1449879807,1449880319,1449880575,1449881087,1449881343,1449881599,1449882623,1449883647,1449885695,1449889791,1449893887,1449895935,1449896191,1449896447,1449896959,1449897983,1449899263,1449899775,1449900543,1449901055,1449901311,1449901823,1449902079,1449902335,1449903103,1449903359,1449903615,1449904127,1449906175,1449910271,1449914623,1449914879,1449915391,1449916415,1449918463,1449951231,1449983999,1449985023,1449985535,1449987327,1449987583,1449988095,1449990143,1449992191,1450000383,1450008575,1450016767,1450024959,1450033151,1450041343,1450049535,1450057727,1450065919,1450069759,1450070015,1450074111,1450082303,1450090495,1450093823,1450094079,1450101759,1450102783,1450106879,1450115071,1450123263,1450127359,1450127871,1450128895,1450129407,1450130431,1450131455,1450139647,1450147839,1450151935,1450153983,1450156031,1450160127,1450160383,1450160895,1450161151,1450161663,1450162175,1450163455,1450163711,1450164223,1450166271,1450168319,1450169343,1450169599,1450169855,1450170111,1450170367,1450172415,1450173439,1450173951,1450174463,1450176511,1450178559,1450180607,1450311679,1450442751,1450512895,1450513407,1450520319,1450520575,1450544127,1450544639,1450704895,1451220991,1451229183,1455423487,1458493183,1458493439,1459617791,1461714943,1462763519,1463304191,1463320575,1463435263,1463451647,1463812095,1464074239,1464336383,1464467455,1464598527,1464602623,1464606719,1464614911,1464631295,1464664063,1464860671,1465273343,1465273599,1465384959,1465647103,1465909247,1465942015,1465974783,1466007551,1466040319,1466041343,1466041855,1466048767,1466049023,1466049535,1466050303,1466051071,1466052095,1466064895,1466071039,1466072063,1466073087,1466099967,1466101759,1466102015,1466103807,1466104575,1466105343,1466105855,1466122239,1466130431,1466138623,1466171391,1466204159,1466236927,1466241023,1466249215,1466253311,1466257407,1466258431,1466259455,1466260479,1466260735,1466260991,1466261247,1466261503,1466265599,1466269695,1466302463,1466335231,1466367999,1466400767,1466433535,1466499071,1466564607,1466589183,1466590207,1466591999,1466592255,1466592511,1466592767,1466593023,1466595327,1466596351,1466596863,1466608895,1466609151,1466615807,1466616575,1466617343,1466617599,1466622975,1466623487,1466624255,1466624511,1466625023,1466625535,1466630143,1466695679,1466696959,1466697215,1466698239,1466698495,1466699263,1466699519,1466710015,1466710271,1466712319,1466712575,1466712831,1466713343,1466713599,1466719743,1466719999,1466720255,1466721023,1466721279,1466724095,1466724351,1466724863,1466725631,1466729471,1466729727,1466729983,1466730239,1466732287,1466732543,1466733567,1466733823,1466734335,1466734847,1466735103,1466735359,1466735615,1466735871,1466736127,1466736383,1466736639,1466742527,1466743039,1466744831,1466745087,1466746367,1466746623,1466747647,1466747903,1466748159,1466748415,1466748671,1466748927,1466750975,1466751231,1466751487,1466751743,1466752511,1466752767,1466753023,1466754047,1466754303,1466755071,1466755327,1466756863,1466757119,1466761215,1466826751,1466886399,1466886655,1466892287,1466957823,1467219967,1467236351,1467252735,1467269119,1467285503,1467301887,1467303423,1467303935,1467310079,1467314175,1467316223,1467318271,1467334655,1467351039,1467367423,1467383807,1467400191,1467416575,1467417087,1467417343,1467418367,1467418879,1467419135,1467419647,1467419903,1467432959,1467435519,1467435775,1467436031,1467436543,1467436799,1467437567,1467437823,1467438335,1467438591,1467438847,1467439103,1467440127,1467442175,1467443711,1467444223,1467447295,1467448063,1467448319,1467449087,1467449343,1467457535,1467465727,1467466495,1467466751,1467472895,1467473919,1467482111,1467483391,1467483647,1467484671,1467485183,1467486207,1467486975,1467487743,1467488511,1467489279,1467490303,1467490559,1467490815,1467491327,1467491583,1467493887,1467494399,1467496447,1467496959,1467497215,1467497983,1467498239,1467498495,1467499007,1467499263,1467499519,1467499775,1467500031,1467500543,1467502591,1467503103,1467503615,1467503871,1467504383,1467504639,1467504895,1467505407,1467505663,1467505919,1467506175,1467506687,1467507199,1467507711,1467508735,1467509247,1467509503,1467509759,1467510015,1467510271,1467510527,1467510783,1467515391,1467515647,1467518975,1467521023,1467523071,1467523583,1467524095,1467524351,1467524863,1467525119,1467527167,1467527423,1467527679,1467530239,1467530751,1467531263,1467531775,1467532287,1467532543,1467533823,1467534079,1467534335,1467534591,1467534847,1467535359,1467537407,1467537663,1467537919,1467538175,1467538431,1467538943,1467539199,1467539455,1467539711,1467539967,1467540223,1467541503,1467542527,1467542783,1467543039,1467543551,1467544575,1467545343,1467545599,1467546623,1467546879,1467548415,1467548671,1467551743,1467552255,1467552511,1467552767,1467553535,1467553791,1467554815,1467555839,1467556095,1467556351,1467556863,1467557375,1467557887,1467558911,1467559167,1467559423,1467559679,1467559935,1467561215,1467561471,1467561727,1467561983,1467562495,1467562751,1467563007,1467563263,1467563519,1467564031,1467564543,1467565311,1467565567,1467566079,1467567103,1467568127,1467568639,1467569151,1467569407,1467569663,1467570175,1467571199,1467572223,1467572735,1467572991,1467573247,1467573759,1467574271,1467574527,1467574783,1467576831,1467577343,1467577599,1467577855,1467578879,1467579391,1467579903,1467580415,1467582463,1467584511,1467585023,1467585535,1467586047,1467589119,1467589375,1467590655,1467592703,1467596799,1467600895,1467602943,1467603199,1467603711,1467603967,1467604223,1467604479,1467604735,1467604991,1467609087,1467611135,1467612159,1467613183,1467744255,1467777023,1467875327,1467940863,1468006399,1472200703,1472266239,1472331775,1472397311,1472462847,1472528383,1472563967,1472564223,1472593919,1472659455,1472724991,1472856063,1472987135,1473249279,1473773567,1474297855,1474330623,1474396159,1474428927,1474461695,1474494463,1474527231,1474559999,1474592767,1474625535,1474658303,1474691071,1474700287,1474703359,1474703871,1474710527,1474712063,1474712575,1474715647,1474723839,1474756607,1474822143,1474856447,1474856703,1474887679,1474953215,1475018751,1475084287,1475086335,1475092479,1475092735,1475092991,1475093503,1475093759,1475094015,1475094527,1475096575,1475098623,1475102719,1475104767,1475106815,1475108863,1475110911,1475112959,1475115007,1475117055,1475119103,1475121151,1475121407,1475121663,1475121919,1475122175,1475122431,1475122687,1475122943,1475123199,1475125247,1475125503,1475125759,1475126015,1475126271,1475126527,1475126783,1475127039,1475127295,1475129343,1475129599,1475129855,1475130367,1475131391,1475133439,1475135487,1475137535,1475137791,1475138559,1475138815,1475139583,1475141631,1475143679,1475145727,1475147775,1475149823,1475151871,1475153919,1475155967,1475158015,1475158527,1475159551,1475160063,1475162111,1475163135,1475164159,1475170303,1475170815,1475171327,1475171583,1475171839,1475172351,1475174399,1475176447,1475178495,1475180543,1475182591,1475184639,1475186687,1475188735,1475190783,1475191807,1475192063,1475192319,1475192575,1475192831,1475194879,1475196927,1475197183,1475197695,1475197951,1475198975,1475201023,1475203071,1475205119,1475205887,1475206143,1475206399,1475207167,1475209215,1475211263,1475215359,1475223551,1475233791,1475235071,1475235327,1475235839,1475237887,1475239935,1475241983,1475242751,1475243007,1475244031,1475248127,1475250175,1475250687,1475251199,1475251455,1475251711,1475251967,1475252223,1475254271,1475256319,1475258367,1475260415,1475262463,1475266559,1475268607,1475270655,1475272703,1475274751,1475276799,1475277055,1475278335,1475278847,1475280895,1475282943,1475284991,1475287039,1475291135,1475293183,1475293439,1475293951,1475294207,1475295231,1475297279,1475299327,1475301375,1475303423,1475305471,1475307519,1475309567,1475311615,1475313663,1475317759,1475319807,1475321855,1475323903,1475327999,1475329023,1475329279,1475329535,1475330047,1475332095,1475336191,1475338239,1475340287,1475342335,1475344383,1475344639,1475345919,1475346175,1475346431,1475362815,1475379199,1475395583,1475411967,1475428351,1475444735,1475461119,1475477503,1475493887,1475510271,1475543039,1475545087,1475559423,1475560703,1475560959,1475575807,1475592191,1475608575,1475624959,1475636735,1475636991,1475641343,1475657727,1475674111,1475690495,1475706879,1475727359,1475728639,1475728895,1475729151,1475729407,1475731455,1475732735,1475732991,1475736063,1475736319,1475736831,1475737087,1475737343,1475737599,1475737855,1475738111,1475738367,1475738623,1475739647,1475741695,1475743743,1475745791,1475746815,1475747839,1475749887,1475750911,1475756031,1475772415,1475788799,1475805183,1475821567,1475837951,1475838975,1475839999,1475841023,1475841791,1475842047,1475843071,1475844095,1475845119,1475846143,1475848191,1475854335,1475862527,1475864575,1475866623,1475868671,1475870719,1475878911,1475887103,1475895295,1475897343,1475898367,1475899135,1475899903,1475901439,1475901951,1475902719,1475903487,1475903743,1475903999,1475904255,1475904511,1475904767,1475905023,1475905791,1475907327,1475907583,1475907839,1475908095,1475908351,1475908607,1475909119,1475910399,1475910655,1475910911,1475911167,1475911423,1475911679,1475919871,1475920383,1475920895,1475922943,1475923455,1475923711,1475923967,1475926015,1475926271,1475927039,1475927295,1475927551,1475927807,1475928063,1475949055,1475949311,1475952639,1475955199,1475955711,1475955967,1475956223,1475956479,1475956735,1475960831,1475969023,1475969279,1475969535,1475969791,1475970047,1475970303,1475970559,1475970815,1475971071,1475971327,1475971583,1475971839,1475972095,1475977215,1475985407,1476009983,1476018175,1476026367,1476034559,1476042751,1476048383,1476048895,1476050943,1476064255,1476064511,1476064767,1476067327,1476068095,1476068351,1476073215,1476073471,1476073727,1476073983,1476074239,1476074495,1476074751,1476075007,1476075263,1476075519,1476083711,1476083967,1476084735,1476085759,1476086015,1476086527,1476086783,1476087295,1476087551,1476087807,1476089343,1476090111,1476100095,1476108287,1476116479,1476124671,1476132863,1476141055,1476149247,1476157439,1476159999,1476160511,1476161535,1476163583,1476165119,1476165631,1476173823,1476182015,1476182271,1476183039,1476184063,1476184575,1476190207,1476198399,1476206591,1476214783,1476222975,1476231167,1476239359,1476247551,1476255743,1476257791,1476259839,1476263935,1476267007,1476267519,1476268287,1476268543,1476268799,1476269055,1476269567,1476270079,1476271871,1476272127,1476280319,1476288511,1476296703,1476304895,1476313087,1476321279,1476329471,1476337663,1476345855,1476354047,1476354303,1476354815,1476355583,1476355839,1476357119,1476362239,1476370431,1476378623,1476386815,1476390399,1476390655,1476395007,1478492159,1480589311,1480851455,1480851711,1481637887,1481646079,1481654271,1481662463,1481672703,1481672959,1481673215,1481673471,1481673727,1481673983,1481674239,1481674751,1481675007,1481676031,1481676287,1481678847,1481684991,1481687039,1481688319,1481688575,1481692671,1481692927,1481694207,1481694463,1481694719,1481694975,1481695231,1481703423,1481711615,1481719807,1481727999,1481736191,1481744383,1481752575,1481760767,1481768959,1481777151,1481785343,1481793535,1481801727,1481809919,1481818111,1481826303,1481834495,1481842687,1481850879,1481859071,1481867263,1481875455,1481883647,1481891839,1481893119,1481893375,1481900031,1481908223,1481916415,1481922303,1481922559,1481924607,1481932799,1481933311,1481933567,1481934591,1481936895,1481937919,1481938175,1481938431,1481938687,1481938943,1481939199,1481939711,1481940991,1481949183,1481957375,1481965567,1481973759,1481981951,1481990143,1481998335,1482006527,1482022911,1482031103,1482039295,1482039807,1482040831,1482041855,1482042111,1482042367,1482043903,1482044927,1482045951,1482046463,1482046975,1482047487,1482055679,1482063871,1482072063,1482080255,1482088447,1482096639,1482104831,1482105855,1482106367,1482108671,1482110975,1482111231,1482111487,1482111999,1482112767,1482113023,1482121215,1482129407,1482137599,1482145791,1482153983,1482162175,1482686463,1482842111,1482850303,1482883071,1482948607,1483197951,1483198207,1483201535,1483201791,1483202303,1483202559,1483210751,1483735039,1483997183,1484128255,1484237311,1484237823,1484238591,1484238847,1484259327,1484783615,1484849151,1484914687,1484980223,1485033983,1485034495,1485045759,1485111295,1485148159,1485151231,1485242367,1485246463,1485250559,1485254655,1485258751,1485259775,1485260031,1485260287,1485260543,1485260799,1485261823,1485262847,1485266943,1485271039,1485275135,1485283327,1485291519,1485307903,1485324287,1485324543,1485832191,1485963263,1486028799,1486061567,1486094335,1486127103,1486159871,1486192639,1486225407,1486258175,1486292991,1486293247,1486293503,1486293759,1486294015,1486294271,1486294527,1486294783,1486295039,1486297087,1486299135,1486301183,1486303231,1486305279,1486305535,1486306047,1486306815,1486307071,1486307327,1486309375,1486311423,1486313471,1486315519,1486317567,1486319615,1486319871,1486320127,1486320383,1486320639,1486320895,1486321151,1486321407,1486321663,1486323711,1486325759,1486327807,1486329855,1486331903,1486333951,1486335999,1486338047,1486340095,1486340351,1486340607,1486340863,1486341119,1486341375,1486341887,1486342143,1486344191,1486346239,1486349823,1486350079,1486350335,1486352383,1486354431,1486356479,1486487551,1486618623,1486684159,1486749695,1486815231,1486880767,1488977919,1489240063,1489305599,1489338367,1489371135,1489378559,1489378815,1489436671,1489502207,1489534975,1489567743,1489600511,1489633279,1489633535,1489634303,1489634559,1489634815,1489635071,1489635327,1489635583,1489635839,1489636863,1489637119,1489637631,1489637887,1489638143,1489639423,1489639679,1489640959,1489641215,1489641471,1489641727,1489641983,1489642495,1489642751,1489644543,1489645311,1489645567,1489645823,1489646335,1489646591,1489646847,1489647103,1489647359,1489647615,1489648383,1489648639,1489648895,1489649151,1489649407,1489649663,1489649919,1489650175,1489650431,1489650687,1489651199,1489653247,1489653503,1489653759,1489654015,1489654271,1489654527,1489654783,1489655295,1489655551,1489655807,1489656063,1489656319,1489656575,1489656831,1489657087,1489658111,1489658367,1489658623,1489658879,1489659391,1489659647,1489659903,1489660159,1489660415,1489660671,1489660927,1489661183,1489661439,1489661695,1489661951,1489662207,1489662463,1489662719,1489662975,1489664255,1489664511,1489664767,1489665023,1489665535,1489674239,1489676287,1489678335,1489682431,1489688575,1489688831,1489689087,1489690111,1489690367,1489690623,1489693695,1489694719,1489698815,1489731583,1489764351,1489774591,1489775615,1489775871,1489776639,1489797119,1489829887,1489833983,1489834495,1489861119,1489861375,1489862655,1489928191,1489935871,1489936127,1489960959,1489993727,1490026495,1490028799,1490029055,1490029823,1490030079,1490034175,1490034431,1490038783,1490039295,1490042879,1490059263,1490075647,1490092031,1490108415,1490124799,1490141183,1490141439,1490141695,1490141951,1490142207,1490142463,1490142719,1490143487,1490143743,1490143999,1490144255,1490144511,1490145023,1490145279,1490145535,1490145791,1490147327,1490147583,1490147839,1490148351,1490148607,1490149119,1490149375,1490149887,1490150143,1490150399,1490150655,1490151167,1490151423,1490152447,1490154751,1490155007,1490155519,1490156031,1490156543,1490156799,1490157311,1490157567,1490158335,1490158591,1490159103,1490159359,1490159871,1490161407,1490166783,1490167295,1490167807,1490173951,1490190335,1490190847,1490191103,1490191615,1490191871,1490192895,1490193151,1490193407,1490193919,1490194175,1490194431,1490194943,1490195199,1490195455,1490195711,1490196223,1490196479,1490196735,1490197247,1490197503,1490198015,1490198527,1490200063,1490200319,1490200575,1490200831,1490201087,1490201343,1490201599,1490201855,1490202623,1490202879,1490203135,1490203647,1490203903,1490206719,1490223103,1490255871,1490288639,1490305023,1490321407,1490325503,1490328575,1490336767,1490337023,1490337279,1490337535,1490337791,1490354175,1490386943,1490403327,1490404607,1490405375,1490411263,1490411519,1490419711,1490420735,1490421759,1490422783,1490423807,1490424831,1490425855,1490426111,1490426367,1490426623,1490426879,1490427903,1490428927,1490429951,1490430975,1490431999,1490432767,1490433023,1490434047,1490434815,1490435071,1490436095,1490452479,1490468863,1490469119,1490469631,1490471167,1490471423,1490472191,1490472447,1490472703,1490473983,1490474239,1490478591,1490479103,1490480127,1490481151,1490484223,1490484479,1490484735,1490485247,1490501631,1490518015,1490534399,1490550783,1490551807,1490554879,1490555135,1490555391,1490555647,1490555903,1490556927,1490558975,1490559487,1490559743,1490559999,1490560255,1490560511,1490560767,1490561023,1490561279,1490561535,1490563071,1490565119,1490565375,1490565631,1490565887,1490566143,1490567167,1490567679,1490568191,1490573823,1490574335,1490574847,1490575359,1490575615,1490576383,1490576639,1490578431,1490578687,1490579455,1490583551,1490585599,1490596863,1490597119,1490597375,1490597887,1490598143,1490598399,1490598655,1490598911,1490599935,1490600959,1490601215,1490601727,1490601983,1490604031,1490604799,1490605055,1490606079,1490607359,1490607615,1490608127,1490609151,1490612223,1490614271,1490616319,1490681855,1490682879,1490683903,1490684927,1490685951,1490686207,1490686463,1490686975,1490687999,1490689023,1490689279,1490690047,1490690815,1490691071,1490691327,1490691583,1490692095,1490692351,1490692607,1490693375,1490693631,1490693887,1490694143,1490695167,1490696191,1490698495,1490699263,1490701311,1490702591,1490702847,1490703359,1490704383,1490705407,1490705663,1490705919,1490706175,1490706431,1490707711,1490707967,1490708479,1490708735,1490708991,1490709503,1490710527,1490710783,1490711039,1490711295,1490711551,1490712063,1490712575,1490713599,1490714623,1490715647,1490716671,1490717695,1490718719,1490719743,1490720767,1490721791,1490722815,1490723839,1490724351,1490724607,1490724863,1490725887,1490726911,1490727935,1490728959,1490729215,1490729471,1490729727,1490729983,1490731007,1490732031,1490733055,1490733311,1490733567,1490734079,1490734335,1490734591,1490734847,1490735103,1490736127,1490738175,1490738687,1490738943,1490739199,1490740223,1490741247,1490742271,1490743039,1490743295,1490745343,1490745599,1490745855,1490746111,1490746367,1490747391,1490812927,1490878463,1490879231,1490879487,1490880511,1490881535,1490882559,1490883583,1490883839,1490884351,1490884607,1490885119,1490885375,1490885631,1490886655,1490887679,1490888703,1490889727,1490890751,1490892287,1490892799,1490893055,1490893311,1490893823,1490894847,1490895871,1490896895,1490897663,1490897919,1490898943,1490899199,1490899455,1490899711,1490899967,1490900223,1490900735,1490901247,1490901759,1490902015,1490902271,1490902527,1490902783,1490903039,1490904063,1490905087,1490905343,1490906111,1490906367,1490906623,1490906879,1490907135,1490909183,1490909439,1490909695,1490911231,1490911487,1490911743,1490912255,1490912511,1490913279,1490915327,1490915583,1490915839,1490916351,1490917375,1490919423,1490919935,1490920447,1490921471,1490922495,1490923007,1490923263,1490923519,1490925567,1490927615,1490929151,1490929663,1490931711,1490931967,1490932223,1490932479,1490932735,1490932991,1490933247,1490933503,1490934271,1490934527,1490935039,1490935295,1490935807,1490937855,1490938879,1490939903,1490942975,1490943487,1490943999,1491075071,1493172223,1493303295,1493434367,1493565439,1493696511,1493958655,1494220799,1494228479,1494228735,1494228991,1494237183,1494245375,1494253567,1494261759,1494269951,1494278143,1494281983,1494282239,1494282495,1494282751,1494283007,1494286335,1494294527,1494302719,1494310911,1494319103,1494327295,1494335487,1494343679,1494351871,1494360063,1494368255,1494376447,1494384639,1494392831,1494401023,1494409215,1494417407,1494425599,1494426111,1494426623,1494427647,1494428159,1494428671,1494428927,1494429183,1494429439,1494429695,1494429951,1494430463,1494430719,1494431743,1494432767,1494433791,1494441983,1494458367,1494470655,1494472191,1494473215,1494474751,1494482943,1494495231,1494495487,1494495743,1494496255,1494499327,1494507519,1494523903,1494532095,1494540287,1494548479,1494556671,1494564863,1494565119,1494565375,1494565631,1494565887,1494566911,1494568959,1494569983,1494573055,1494581247,1494589439,1494597631,1494605823,1494614015,1494616063,1494618111,1494622207,1494624255,1494626303,1494626559,1494626815,1494627071,1494627327,1494630399,1494638591,1494646783,1494663167,1494665215,1494667263,1494669311,1494671359,1494673407,1494674431,1494675455,1494679551,1494695935,1494699007,1494699263,1494699775,1494700543,1494700799,1494701311,1494701567,1494701823,1494702079,1494702335,1494702591,1494703103,1494703359,1494704127,1494705919,1494706175,1494706431,1494706687,1494706943,1494707199,1494707455,1494707711,1494707967,1494710015,1494710271,1494711039,1494711295,1494711551,1494711807,1494712063,1494712319,1494736895,1494745087,1494810623,1494843391,1494876159,1494908927,1494917119,1494925311,1494941695,1494974463,1495007231,1495039999,1495042047,1495044095,1495046143,1495048191,1495050239,1495052287,1495054335,1495056383,1495058431,1495060479,1495062527,1495064575,1495066623,1495067903,1495068159,1495068671,1495070719,1495072767,1495105535,1495138303,1495139327,1495139583,1495139839,1495140095,1495140351,1495142399,1495142655,1495143679,1495143935,1495145983,1495146239,1495146751,1495147007,1495148543,1495150591,1495151103,1495151359,1495152639,1495153151,1495153407,1495153663,1495153919,1495154175,1495154687,1495154943,1495155711,1495156735,1495158015,1495158271,1495158527,1495158783,1495159295,1495159807,1495160063,1495160575,1495160831,1495161855,1495162111,1495162367,1495163647,1495163903,1495164671,1495164927,1495165183,1495165439,1495165695,1495165951,1495167231,1495167487,1495168767,1495169023,1495169791,1495170047,1495171071,1495191551,1495192831,1495193087,1495193599,1495194111,1495195647,1495197695,1495199487,1495199743,1495203839,1495205887,1495207935,1495209983,1495211007,1495212031,1495214079,1495216127,1495218175,1495220223,1495222271,1495224319,1495228415,1495230463,1495234559,1495234815,1495235071,1495235327,1495235583,1495235839,1495236351,1495236607,1495237631,1495238143,1495238399,1495240703,1495242751,1495244799,1495246847,1495248895,1495250943,1495252991,1495255039,1495257087,1495259135,1495259647,1495259903,1495260159,1495261183,1495263231,1495265279,1495265791,1495266047,1495267327,1495269375,1495277567,1495279615,1495279871,1495280127,1495280383,1495280639,1495281663,1495283711,1495285759,1495287807,1495289855,1495291903,1495293951,1495298047,1495300095,1495301119,1495301375,1495301631,1495301887,1495302143,1495302399,1495302655,1495303167,1495304191,1495306239,1495308287,1495308799,1495309311,1495310335,1495312383,1495312895,1495313151,1495313407,1495314431,1495316479,1495316735,1495317503,1495317759,1495318271,1495318527,1495319039,1495319551,1495320063,1495320575,1495320831,1495321087,1495321343,1495321599,1495321855,1495322111,1495322367,1495322623,1495324671,1495326719,1495330815,1495332863,1495333887,1495334911,1495335167,1495335423,1495335679,1495335935,1495336447,1495336959,1495337983,1495338239,1495338495,1495338751,1495339007,1495339263,1495339519,1495340031,1495342079,1495342591,1495342847,1495345151,1495345407,1495345663,1495346175,1495346687,1495347199,1495349247,1495351295,1495351551,1495351807,1495352319,1495353343,1495355903,1495356159,1495356415,1495356927,1495360511,1495361535,1495361791,1495362559,1495363583,1495364607,1495364863,1495365119,1495365375,1495367679,1495368191,1495368959,1495369215,1495369471,1495369727,1495371775,1495373823,1495375871,1495376383,1495376639,1495376895,1495377407,1495377919,1495380991,1495384063,1495384319,1495384575,1495384831,1495385087,1495385599,1495386623,1495387135,1495387647,1495388159,1495392255,1495394303,1495394559,1495394815,1495395327,1495396351,1495396863,1495397631,1495397887,1495398911,1495399423,1495399679,1495399935,1495400447,1495400703,1495400959,1495401215,1495401471,1495401727,1495401983,1495402239,1495402495,1495404543,1495405311,1495405567,1495406079,1495406591,1495407615,1495408639,1495416831,1495418879,1495419391,1495419903,1495420159,1495420415,1495420927,1495422975,1495423487,1495424511,1495425023,1495426047,1495426559,1495426815,1495427071,1495427583,1495427839,1495428095,1495428607,1495428863,1495429119,1495431167,1495432191,1495432703,1495433215,1495441407,1495441663,1495441919,1495442431,1495443455,1495443967,1495444223,1495444479,1495444735,1495445247,1495445503,1495446015,1495446271,1495446527,1495447551,1495449599,1495451647,1495452159,1495452415,1495452671,1495453695,1495455743,1495455999,1495456255,1495456511,1495456767,1495457279,1495457791,1495458303,1495458559,1495458815,1495459071,1495459327,1495459839,1495460863,1495461375,1495461631,1495461887,1495463935,1495465983,1495466239,1495467007,1495468031,1495470079,1495472127,1495472383,1495472639,1495473151,1495474175,1495474431,1495474687,1495474943,1495475199,1495475711,1495475967,1495476223,1495478271,1495478527,1495478783,1495479295,1495479551,1495479807,1495480063,1495480319,1495480575,1495480831,1495481343,1495481855,1495482367,1495483391,1495484415,1495484671,1495484927,1495485439,1495485695,1495485951,1495486463,1495486975,1495487487,1495488511,1495488767,1495489023,1495489279,1495489535,1495490559,1495494655,1495495167,1495495423,1495496191,1495496447,1495496703,1495497727,1495498239,1495498495,1495498751,1495499007,1495499263,1495499519,1495499775,1495500287,1495500543,1495500799,1495502847,1495503871,1495504895,1495505151,1495505407,1495505919,1495506431,1495506687,1495506943,1495507711,1495507967,1495508991,1495510015,1495510527,1495511039,1495511551,1495511807,1495512063,1495513087,1495515391,1495515647,1495516159,1495517183,1495518207,1495518463,1495518719,1495519231,1495521279,1495523839,1495524095,1495524351,1495524607,1495525119,1495525375,1495525631,1495525887,1495526143,1495526655,1495526911,1495527167,1495527423,1495529471,1495529727,1495529983,1495530495,1495531519,1495533567,1495535615,1495536127,1495537151,1495537407,1495537663,1495539711,1495540735,1495540991,1495541247,1495541759,1495543807,1495547903,1495549951,1495550207,1495550463,1495550975,1495551231,1495551487,1495551743,1495551999,1495554047,1495554559,1495555071,1495555839,1495556095,1495560191,1495564287,1495566335,1495566591,1495566847,1495567359,1495567615,1495567871,1495568127,1495571199,1495571455,1495572479,1495572735,1495572991,1495573247,1495573503,1495574527,1495575039,1495575551,1495575807,1495576319,1495576575,1495580671,1495581183,1495581695,1495581951,1495582207,1495582463,1495582719,1495583743,1495585791,1495586815,1495587839,1495588863,1495589119,1495589375,1495589887,1495590143,1495590399,1495590655,1495590911,1495591935,1495592959,1495596031,1495596543,1495596799,1495597055,1495601151,1495603199,1495604223,1495604479,1495604735,1495605247,1495607295,1495607551,1495607807,1495608319,1495609343,1495611903,1495612159,1495612415,1495612927,1495613439,1495614975,1495615487,1495618559,1495619583,1495620607,1495621375,1495621631,1495621887,1495622143,1495622399,1495622655,1495622911,1495623167,1495623679,1495623935,1495624191,1495624447,1495624703,1495629823,1495630847,1495631359,1495631615,1495631871,1495632127,1495632383,1495632639,1495632895,1495633151,1495633919,1495636991,1495640063,1495641087,1495641343,1495641599,1495642111,1495644159,1495645183,1495646207,1495646463,1495646719,1495646975,1495647231,1495647487,1495647743,1495648255,1495650303,1495651327,1495652351,1495652863,1495653375,1495654399,1495655423,1495656447,1495656959,1495657215,1495657471,1495658495,1495662591,1495666687,1495668735,1495669247,1495669503,1495669759,1495670783,1495671807,1495672319,1495672575,1495672831,1495673087,1495673343,1495673599,1495673855,1495674111,1495674367,1495674623,1495674879,1495676927,1495677183,1495677951,1495678975,1495679999,1495680511,1495680767,1495681023,1495682047,1495683071,1495687167,1495688191,1495688447,1495688703,1495689215,1495689471,1495689727,1495690239,1495691263,1495693311,1495695359,1495695615,1495695871,1495696127,1495696383,1495696895,1495697407,1495697663,1495699455,1495700479,1495701503,1495702271,1495702527,1495703551,1495704575,1495705599,1495707647,1495709695,1495713791,1495715839,1495716863,1495717887,1495719935,1495720191,1495720447,1495720703,1495720959,1495722495,1495722751,1495723007,1495723519,1495724031,1495724287,1495724543,1495726079,1495730175,1495731199,1495732223,1495744511,1495745791,1495746047,1495747583,1495748607,1495749631,1495750655,1495751423,1495751679,1495751935,1495752191,1495752703,1495754751,1495755775,1495756031,1495756799,1495758847,1495759359,1495759615,1495759871,1495760127,1495760383,1495760895,1495762943,1495764991,1495765503,1495765759,1495766015,1495766527,1495766783,1495767039,1495769343,1495769599,1495769855,1495770111,1495770623,1495770879,1495771135,1495772159,1495772671,1495774207,1495775231,1495775743,1495776255,1495777279,1495779327,1495779839,1495780095,1495780351,1495781375,1495781631,1495781887,1495782143,1495782655,1495783167,1495783423,1495785471,1495789567,1495789823,1495790079,1495790335,1495791359,1495791615,1495792639,1495792895,1495793151,1495793407,1495793663,1495797759,1495799039,1495799295,1495799807,1495800063,1495800319,1495800575,1495800831,1495801087,1495801343,1495802623,1495802879,1495803135,1495803391,1495803903,1495804159,1495804415,1495804671,1495804927,1495805439,1495805951,1495810047,1495810303,1495810559,1495810815,1495811071,1495811327,1495811583,1495811839,1495812607,1495812863,1495813119,1495813375,1495813631,1495814143,1495814399,1495814911,1495815167,1495816191,1495816703,1495817215,1495817471,1495820799,1495821311,1495821823,1495822335,1495823359,1495824383,1495825407,1495826431,1495826943,1495827199,1495827455,1495827967,1495828479,1495828991,1495829247,1495829503,1495830015,1495830527,1495831551,1495832575,1495834623,1495834879,1495835135,1495835647,1495836159,1495836415,1495836671,1495836927,1495837183,1495837439,1495837695,1495838719,1495839999,1495840255,1495840511,1495840767,1495842815,1495843839,1495845631,1495845887,1495846143,1495847167,1495847423,1495847679,1495847935,1495848191,1495848447,1495848703,1495848959,1495849471,1495849983,1495850495,1495851519,1495851775,1495852031,1495853055,1495853567,1495854079,1495854591,1495854847,1495855103,1495859199,1495861247,1495865343,1495865599,1495865855,1495866111,1495866367,1495866879,1495867135,1495867391,1495867903,1495868415,1495869439,1495870463,1495871487,1495871743,1495872511,1495873535,1495874047,1495874559,1495875071,1495875327,1495875583,1495891967,1495894015,1495894527,1495896063,1495900159,1495902207,1495903231,1495903487,1495903743,1495906303,1495907327,1495907583,1495908351,1495916543,1495920639,1495922687,1495924735,1495926783,1495927039,1495927295,1495927551,1495927807,1495928063,1495929855,1495930367,1495930879,1495931135,1495931391,1495932159,1495932415,1495932671,1495932927,1495933439,1495933695,1495934975,1495935231,1495935743,1495935999,1495937023,1495937535,1495938047,1495938559,1495939071,1495939583,1495939839,1495940095,1495941119,1495942143,1495942655,1495943167,1495945215,1495945471,1495945727,1495945983,1495946239,1495946751,1495947007,1495948287,1495948799,1495949055,1495949311,1495951359,1495952383,1495953407,1495953919,1495954175,1495954431,1495955455,1495957503,1495958527,1495959039,1495959295,1495959551,1495960575,1495961087,1495961343,1495961599,1495962623,1495963135,1495963647,1495964159,1495964671,1495965695,1495966719,1495967743,1495967999,1495968255,1495968511,1495968767,1495969279,1495969791,1495970303,1495970559,1495970815,1495971839,1495973887,1495974911,1495975935,1495976959,1495977983,1495979007,1495979263,1495979519,1495979775,1495980031,1495982079,1495983103,1495983615,1495983871,1495984127,1495984639,1495985151,1495985663,1495986175,1495990271,1495994367,1495995391,1495996415,1495997439,1495998463,1495998719,1495998975,1495999487,1495999999,1496000255,1496000511,1496000767,1496001791,1496002047,1496002303,1496002559,1496002815,1496003071,1496003327,1496003583,1496003839,1496004607,1496005631,1496005887,1496006143,1496006399,1496006655,1496007679,1496008191,1496008703,1496008959,1496009215,1496010239,1496010495,1496011775,1496012799,1496016895,1496017151,1496017407,1496017663,1496017919,1496018175,1496018431,1496018687,1496018943,1496019967,1496020991,1496023039,1496024063,1496025087,1496026111,1496026367,1496026623,1496026879,1496027135,1496029183,1496031231,1496032255,1496033279,1496034303,1496034815,1496036863,1496037375,1496038399,1496038911,1496039423,1496039679,1496040447,1496040959,1496041215,1496041471,1496041983,1496042495,1496043007,1496043519,1496045567,1496049663,1496051711,1496055807,1496057855,1496058111,1496058367,1496058623,1496058879,1496059903,1496064511,1496064767,1496066047,1496067071,1496068095,1496074239,1496075263,1496075519,1496075775,1496076543,1496076799,1496077055,1496078335,1496079359,1496081407,1496081919,1496082175,1496082431,1496082943,1496083199,1496083455,1496083967,1496084479,1496084991,1496085247,1496085503,1496086015,1496086527,1496088063,1496088319,1496088575,1496090623,1496092927,1496093183,1496093695,1496094207,1496094719,1496095743,1496096767,1496098303,1496098815,1496100863,1496102911,1496103935,1496104191,1496104447,1496104959,1496105215,1496105471,1496105727,1496105983,1496106239,1496106495,1496106751,1496107007,1496107263,1496107519,1496108031,1496108287,1496108543,1496108799,1496109055,1496109567,1496109823,1496110079,1496110591,1496111103,1496113151,1496116223,1496116479,1496117247,1496118271,1496118527,1496118783,1496119039,1496119295,1496121343,1496122367,1496122879,1496123135,1496123391,1496123647,1496123903,1496124927,1496125183,1496127487,1496129535,1496130303,1496130559,1496131583,1496132607,1496133631,1496137727,1496138495,1496138751,1496139263,1496139775,1496141823,1496142335,1496142591,1496142847,1496143871,1496144127,1496144383,1496144639,1496144895,1496145151,1496145407,1496145663,1496145919,1496150015,1496152063,1496153087,1496153599,1496154111,1496158207,1496160255,1496162303,1496162815,1496163071,1496163583,1496163839,1496166399,1496170495,1496174591,1496175103,1496175615,1496177663,1496178687,1496178943,1496179199,1496179455,1496179711,1496180223,1496180735,1496182783,1496184831,1496186879,1496187135,1496187391,1496187903,1496188159,1496188927,1496189183,1496189439,1496189951,1496190975,1496193023,1496195071,1496195327,1496195839,1496196607,1496196863,1496197119,1496197631,1496197887,1496198143,1496198655,1496198911,1496199167,1496202239,1496202751,1496203007,1496203263,1496207359,1496207615,1496207871,1496208127,1496208383,1496208895,1496209151,1496209407,1496210431,1496210687,1496210943,1496211455,1496211711,1496211967,1496212223,1496212479,1496213503,1496215551,1496215807,1496216063,1496216319,1496216575,1496217599,1496217855,1496218111,1496218367,1496218623,1496218879,1496219135,1496219647,1496220671,1496221695,1496223743,1496225791,1496227839,1496228863,1496229887,1496231935,1496232959,1496233983,1496236031,1496238079,1496240127,1496242175,1496243199,1496243711,1496243967,1496244223,1496246271,1496248575,1496248831,1496249087,1496250111,1496250367,1496251391,1496252415,1496252671,1496252927,1496253183,1496253439,1496254463,1496254975,1496255231,1496255487,1496255743,1496255999,1496256255,1496256511,1496260607,1496261119,1496261375,1496261631,1496261887,1496262143,1496262655,1496263167,1496263423,1496263679,1496264703,1496265727,1496265983,1496266495,1496266751,1496267263,1496267775,1496268287,1496268543,1496268799,1496272895,1496274943,1496275199,1496275455,1496275711,1496276479,1496276735,1496276991,1496277759,1496278015,1496281343,1496281599,1496281855,1496282111,1496282367,1496282623,1496282879,1496283135,1496283391,1496283647,1496283903,1496284415,1496284671,1496284927,1496285183,1496293375,1496296191,1496296447,1496297471,1496298239,1496298495,1496299263,1496299519,1496301567,1496302591,1496304639,1496312319,1496312575,1496312831,1496313855,1496315391,1496315903,1496316159,1496316415,1496316927,1496317183,1496317439,1496317951,1496977407,1496979455,1496988671,1496989695,1497366527,1498415103,1499463679,1499594751,1499725823,1499856895,1499987967,1499996159,1500004351,1500014079,1500014335,1500015359,1500015615,1500018431,1500018687,1500018943,1500019199,1500019711,1500019967,1500020223,1500020735,1500028927,1500037119,1500045311,1500061695,1500069887,1500078079,1500086271,1500094463,1500102655,1500107775,1500108031,1500109567,1500110079,1500110847,1500119039,1500127231,1500135423,1500143615,1500151807,1500153855,1500155903,1500157951,1500159999,1500162047,1500164095,1500166143,1500168191,1500170239,1500170495,1500170751,1500171007,1500171263,1500171519,1500171775,1500172031,1500172287,1500174335,1500176383,1500178431,1500180479,1500182527,1500184575,1500185087,1500186623,1500187135,1500187391,1500187647,1500187903,1500188159,1500188671,1500191999,1500192255,1500192767,1500194815,1500196863,1500198911,1500200959,1500203007,1500205055,1500207103,1500209151,1500211199,1500213247,1500217343,1500219391,1500220415,1500221439,1500223487,1500225535,1500227583,1500229631,1500231679,1500233727,1500237823,1500241919,1500243967,1500246015,1500248063,1500250111,1500266495,1500282879,1500299263,1500315647,1500332031,1500348415,1500397567,1500413951,1500430335,1500446719,1500447743,1500447999,1500448511,1500448767,1500463103,1500479487,1500495871,1500512255,1500643327,1500683519,1500683775,1500774399,1500774655,1500777983,1500778239,1500779007,1500779263,1500779519,1500780031,1500780543,1500782591,1500783359,1500784383,1500784639,1500784895,1500785663,1500785919,1500786175,1500786687,1500787711,1500788479,1500788735,1500788991,1500789247,1500791039,1500791551,1500791807,1500792063,1500792319,1500792575,1500792831,1500793087,1500793599,1500793855,1500794111,1500794879,1500796927,1500797439,1500797695,1500798207,1500798975,1500799231,1500799487,1500799743,1500799999,1500800255,1500800767,1500801023,1500801535,1500801791,1500802047,1500802303,1500802559,1500803071,1500803327,1500803583,1500803839,1500804095,1500805119,1500805375,1500805887,1500806399,1500806655,1500806911,1500807167,1500807423,1500807679,1500807935,1500808191,1500808447,1500808959,1500809215,1500809471,1500809727,1500809983,1500810239,1500810495,1500810751,1500811007,1500811263,1500811775,1500812287,1500812543,1500812799,1500813055,1500813311,1500813823,1500814079,1500814335,1500815359,1500815615,1500815871,1500816127,1500816383,1500816639,1500816895,1500817151,1500817407,1500817919,1500818431,1500818687,1500818943,1500819199,1500819455,1500819711,1500819967,1500820223,1500820479,1500821247,1500821503,1500822015,1500822271,1500822783,1500823039,1500824319,1500824575,1500825087,1500825343,1500825599,1500825855,1500826111,1500826367,1500827647,1500827903,1500828159,1500828927,1500829439,1500830975,1500831231,1500831487,1500831743,1500832255,1500832767,1500833279,1500833791,1500834047,1500834559,1500835583,1500835839,1500836351,1500836607,1500836863,1500837119,1500837375,1500837887,1500838143,1500838655,1500839679,1500839935,1500840191,1500840447,1500840703,1500841215,1500841471,1500841983,1500842495,1500842751,1500843263,1500843519,1500843775,1500846079,1500846335,1500846591,1500846847,1500847103,1500847359,1500847615,1500847871,1500848127,1500848639,1500848895,1500849151,1500849663,1500849919,1500850175,1500850431,1500850687,1500850943,1500851455,1500857343,1500857599,1500857855,1500858367,1500860671,1500860927,1500861439,1500861695,1500861951,1500862207,1500862463,1500862719,1500863231,1500863487,1500863999,1500864255,1500864511,1500864767,1500865535,1500865791,1500866047,1500866559,1500867583,1500867839,1500868095,1500868351,1500868607,1500868863,1500869375,1500870143,1500870399,1500870655,1500870911,1500871167,1500871423,1500871935,1500872191,1500872447,1500872959,1500873215,1500873727,1500874239,1500874495,1500875007,1500875519,1500875775,1500876287,1500876799,1500878847,1500879103,1500879871,1500880127,1500880383,1500880639,1500880895,1500881919,1500882175,1500882687,1500882943,1500883455,1500883711,1500884223,1500884991,1500888063,1500888319,1500888575,1500888831,1500889087,1500894207,1500894463,1500894719,1500894975,1500895231,1500895487,1500895743,1500895999,1500896767,1500897023,1500897791,1500898047,1500898303,1500898815,1500899327,1500901375,1500901631,1500901887,1500902143,1500902399,1500902655,1500902911,1500904191,1500904703,1500904959,1500905215,1500905471,1501036543,1501298687,1501560831,1501822975,1502085119,1502216191,1502347263,1502478335,1502605311,1502606335,1502609407,1502625791,1502642175,1502658559,1502674943,1502691327,1502692607,1502692863,1502694911,1502695167,1502697727,1502698239,1502707711,1502715903,1502716927,1502717951,1502719999,1502722047,1502724095,1502740479,1502756863,1502773247,1502789631,1502794239,1502794495,1502806015,1502814207,1502814463,1502814719,1502822399,1502826495,1502830591,1502831615,1502832639,1502833663,1502834687,1502836735,1502837759,1502838783,1502855167,1502871551,1502887935,1502904319,1502920703,1502937087,1502940671,1502941439,1502941695,1502941951,1502942719,1502942975,1502943231,1502943487,1502943743,1502943999,1502946559,1502946815,1502947071,1502947327,1502947583,1502947839,1502948351,1502948863,1502949631,1502950399,1502950655,1502950911,1502951423,1502951679,1502952959,1502953215,1502953471,1502969855,1502974975,1502975487,1502975999,1502976255,1502976767,1502977535,1502978047,1502979327,1502979583,1502979839,1502980095,1502980351,1502980607,1502980863,1502981119,1502981375,1502981887,1502982143,1502983423,1502983679,1502986239,1503002623,1503003135,1503006719,1503010815,1503011071,1503011327,1503012863,1503013119,1503014911,1503015167,1503015423,1503015679,1503015935,1503016191,1503016703,1503016959,1503018751,1503019007,1503051775,1503068159,1503084543,1503100927,1503117311,1503133695,1503395839,1503657983,1503690751,1503723519,1503789055,1503821823,1503854591,1503887359,1503920127,1503985663,1504018431,1504051199,1504083967,1504149503,1504149759,1504150015,1504150271,1504150527,1504151039,1504151295,1504152575,1504152831,1504154623,1504155647,1504156927,1504157183,1504161279,1504161535,1504164607,1504164863,1504169983,1504170239,1504171007,1504171263,1504171775,1504172031,1504173055,1504173311,1504174591,1504175103,1504176383,1504176639,1504178431,1504178687,1504182271,1504184319,1504186367,1504190463,1504198655,1504215039,1504247807,1504261119,1504262143,1504268031,1504268287,1504272383,1504280575,1504313343,1504378879,1504444415,1504509951,1504575487,1504641023,1504706559,1504837631,1504968703,1505099775,1505230847,1505234943,1505235199,1505235455,1505235711,1505235967,1505236991,1505239039,1505247231,1505255423,1505263615,1505271807,1505279999,1505288191,1505296383,1505296639,1505296895,1505297151,1505297407,1505302271,1505302527,1505304575,1505312767,1505315839,1505316607,1505316863,1505317887,1505318143,1505318399,1505319423,1505320959,1505329151,1505331199,1505332479,1505332735,1505332991,1505335807,1505336063,1505336575,1505336831,1505337343,1505345535,1505353727,1505361919,1505370111,1505378303,1505386495,1505394687,1505402879,1505411071,1505413119,1505415167,1505417215,1505419263,1505427455,1505428479,1505428735,1505428991,1505429759,1505430015,1505430271,1505430527,1505432831,1505433087,1505433343,1505433599,1505434623,1505434879,1505435135,1505435391,1505435647,1505443839,1505448703,1505448959,1505453311,1505453567,1505460223,1505468415,1505468927,1505469439,1505469695,1505469951,1505470463,1505470719,1505470975,1505471999,1505472255,1505475583,1505478655,1505482751,1505484799,1505492991,1505501183,1505509375,1505511423,1505517567,1505525759,1505533951,1505542143,1505550335,1505566719,1505574911,1505583103,1505607679,1505615871,1505624063,1505632255,1505644799,1505645055,1505646847,1505647103,1505648639,1505656831,1505657855,1505658879,1505659903,1505660927,1505661951,1505662975,1505663999,1505665023,1505673215,1505681407,1505689599,1505697791,1505705983,1505708543,1505709055,1505714175,1505722367,1505738751,1505746943,1505747455,1505747711,1505747967,1505748223,1505748991,1505749247,1505749503,1505749759,1505755135,1506017279,1506082815,1506148351,1506279423,1506312191,1506316287,1506322431,1506324479,1506326527,1506328575,1506330623,1506332671,1506334719,1506335743,1506336767,1506338815,1506340863,1506341375,1506341887,1506342143,1506342911,1506344959,1506377727,1506410495,1506440959,1506441215,1506443263,1506443775,1506445311,1506446335,1506447359,1506448383,1506448639,1506448895,1506449407,1506449663,1506449919,1506450431,1506450687,1506450943,1506451199,1506452223,1506452479,1506452735,1506452991,1506453247,1506453503,1506453759,1506454015,1506454271,1506454527,1506454783,1506455039,1506455295,1506455551,1506456063,1506456319,1506456575,1506456831,1506457087,1506457343,1506457599,1506457855,1506458367,1506458623,1506459391,1506459647,1506460671,1506461695,1506461951,1506462207,1506462463,1506462719,1506463231,1506463487,1506463999,1506464255,1506464511,1506464767,1506465279,1506465791,1506466047,1506466303,1506466559,1506466815,1506467327,1506467583,1506468351,1506468607,1506469375,1506470143,1506470399,1506470911,1506471423,1506471935,1506472191,1506472447,1506472703,1506472959,1506473727,1506473983,1506474495,1506474751,1506475007,1506475519,1506475775,1506476031,1506508799,1506541567,1506574335,1506582527,1506607103,1506639871,1506672639,1506689023,1506705407,1506727935,1506728959,1506740223,1506741247,1506742271,1506743807,1506744319,1506746367,1506750463,1506752511,1506754559,1506758655,1506760703,1506764799,1506766847,1506767103,1506767615,1506767871,1506768383,1506768639,1506768895,1506770943,1506772991,1506775039,1506776063,1506777087,1506777343,1506777599,1506777855,1506778111,1506778367,1506778623,1506778879,1506779135,1506779903,1506780159,1506781183,1506781695,1506781951,1506782207,1506783231,1506785279,1506785791,1506786303,1506787327,1506789375,1506791423,1506793471,1506795519,1506797055,1506797311,1506799615,1506801663,1506803711,1506805759,1506817023,1506818047,1506820095,1506830079,1506830335,1506831359,1506835199,1506835455,1506836479,1506838527,1506838783,1506839039,1506840063,1506840319,1506849791,1506850815,1506865151,1506869247,1506934783,1507000319,1507065855,1507131391,1507132415,1507132671,1507132927,1507133439,1507141631,1507141887,1507142143,1507142399,1507142655,1507158015,1507158527,1507158783,1507159039,1507160063,1507160831,1507161087,1507161343,1507161599,1507162111,1507162367,1507162623,1507162879,1507163135,1507163647,1507164159,1507164671,1507164927,1507165183,1507165439,1507165695,1507165951,1507166207,1507166463,1507166975,1507167231,1507167743,1507167999,1507168255,1507168511,1507168767,1507169023,1507169279,1507169535,1507169791,1507170047,1507170303,1507170815,1507171071,1507171327,1507171583,1507172095,1507172351,1507172607,1507172863,1507173119,1507173375,1507173887,1507174143,1507174399,1507174655,1507174911,1507175167,1507175423,1507175679,1507175935,1507176191,1507176447,1507176703,1507176959,1507177215,1507177471,1507177727,1507177983,1507178239,1507178495,1507178751,1507179007,1507179519,1507180031,1507180287,1507180543,1507182591,1507184639,1507186687,1507186943,1507187199,1507187455,1507187711,1507187967,1507188223,1507188479,1507188735,1507189247,1507189503,1507189759,1507192831,1507196927,1507262463,1507327999,1507393535,1507459071,1507524607,1507524863,1507525631,1507533823,1507540991,1507557375,1507557631,1507558399,1507558911,1507559167,1507560191,1507560447,1507560959,1507561215,1507564287,1507565823,1507566079,1507566335,1507567615,1507567871,1507573759,1507590143,1507655679,1507659775,1507663871,1507664127,1507664383,1507664639,1507664895,1507665663,1507665919,1507666431,1507666687,1507666943,1507667455,1507667711,1507667967,1507672063,1507676159,1507680255,1507684351,1507688447,1507696639,1507700735,1507704831,1507707647,1507707903,1507708159,1507708415,1507708671,1507708927,1507713023,1507713279,1507713535,1507717119,1507717631,1507717887,1507718143,1507718911,1507721215,1507753983,1507775487,1507776511,1507786751,1507787007,1507787263,1507787519,1507787775,1507788031,1507789567,1507789823,1507790335,1507790847,1507791359,1507791871,1507792383,1507792895,1507805951,1507806207,1507809279,1507809535,1507809791,1507810047,1507810303,1507810559,1507810815,1507811071,1507811327,1507815423,1507817471,1507819519,1507852287,1508114431,1508376575,1508392959,1508420607,1508420863,1508421631,1508423679,1508424703,1508442111,1508458495,1508466687,1508468735,1508468991,1508469247,1508469759,1508470015,1508470271,1508470783,1508474879,1508491263,1508507647,1508524031,1508540415,1508556799,1508573183,1508589567,1508605951,1508622335,1508638719,1508655103,1508671487,1508687871,1508704255,1508720639,1508737023,1508753407,1508769791,1508786175,1508802559,1508815103,1508815359,1508815615,1508817151,1508817407,1508817663,1508818943,1508819711,1508819967,1508830719,1508832255,1508835327,1508843519,1508844031,1508844287,1508847615,1508851711,1508868095,1508884479,1508900863,1509163007,1509425151,1509429247,1509433343,1509437439,1509441535,1509441791,1509442047,1509442303,1509442559,1509442815,1509443071,1509443327,1509443583,1509445631,1509449727,1509453823,1509457919,1509462015,1509465599,1509466111,1509470207,1509478399,1509482495,1509486591,1509490687,1509494783,1509498879,1509502975,1509503231,1509503487,1509503743,1509503999,1509505023,1509506047,1509507071,1509507583,1509509375,1509509631,1509511167,1509515263,1509519359,1509535743,1509537791,1509539839,1509541887,1509542143,1509542399,1509542655,1509543167,1509543423,1509543935,1509548031,1509564415,1509568511,1509572607,1509576703,1509580799,1509584895,1509587199,1509587455,1509588991,1509593087,1509601279,1509605375,1509609471,1509617663,1509621759,1509622783,1509623807,1509624063,1509624319,1509624575,1509624831,1509625855,1509626111,1509626367,1509626623,1509626879,1509627135,1509627391,1509627647,1509628159,1509628415,1509628671,1509629183,1509629439,1509629695,1509629951,1509634047,1509638143,1509642239,1509646335,1509650431,1509654527,1509658623,1509666815,1509670911,1509677311,1509677823,1509679103,1509683199,1509687295,1509703679,1509720063,1509736447,1509752831,1509769215,1509785599,1509801983,1509818367,1509851135,1509867519,1509883903,1509900287,1509916671,1509933055,1509935103,1509939967,1509940479,1509940735,1509940991,1509941247,1509947391,1509947647,1509947903,1509948415,1509948671,1509949439,1510932479,1510932735,1510932991,1510941439,1510941695,1510951935,1510952191,1510953727,1510953983,1510973183,1510973439,1510998015,1511999743,1512000255,1512011007,1512011519,1512308735,1512341503,1514143743,1514209279,1514405887,1514536959,1514602495,1514668031,1514799103,1514930175,1514995711,1515061247,1515467775,1515468031,1515470847,1515479039,1515487231,1515487487,1515487999,1515488255,1515492351,1515492607,1515492863,1515495679,1515495935,1515496191,1515496447,1515496703,1515496959,1515507711,1515509759,1515511807,1515515903,1515518463,1515518719,1515519743,1515519999,1516109823,1516175359,1516240895,1516896255,1516961791,1518338047,1518354431,1518472191,1518473215,1518476287,1518476799,1518477311,1518481407,1518488063,1518488319,1518493695,1518501887,1518503935,1518505983,1518510079,1518518271,1518538495,1518538751,1518540543,1518540799,1518542847,1518551039,1518567423,1518575615,1518583807,1518633471,1518633727,1518665727,1518698495,1518714879,1518727167,1518731263,1518739455,1518796799,1518862335,1518927871,1518960639,1518961663,1518962175,1518993407,1519058943,1519083519,1519091711,1519124479,1519190015,1519206399,1519208447,1519208703,1519210495,1519292415,1519294463,1519296511,1519304703,1519308799,1519321087,1519337471,1519353855,1519400703,1519400959,1519452159,1519517439,1519517695,1519583231,1519648767,1519714303,1519779839,1519910911,1519927551,1519927807,1519943679,1519976447,1520009215,1520041983,1520074751,1520107519,1520140287,1520173055,1520205823,1520214015,1520216063,1520222207,1520224255,1520231423,1520231679,1520231935,1520232191,1520232447,1520236543,1520237567,1520271359,1520304127,1520435199,1521483775,1521491967,1521998847,1521999103,1522008063,1522139135,1522270207,1522401279,1522532351,1524629503,1525678079,1526726655,1531183103,1531445247,1531707391,1531969535,1532100607,1532199935,1532200959,1532231679,1532248063,1532256255,1532338175,1532346367,1532362751,1532493823,1532559359,1532624895,1532626943,1532631039,1532633087,1532635135,1532637183,1532639231,1532641279,1532643327,1532645375,1532647423,1532649471,1532651519,1532653567,1532655615,1532655871,1532656127,1532656383,1532656639,1532656895,1532657151,1532657407,1532657663,1532661759,1532665855,1532666111,1532666367,1532666623,1532666879,1532667391,1532667647,1532667903,1532668415,1532668671,1532668927,1532674047,1532674303,1532674559,1532674815,1532675071,1532675583,1532676095,1532678143,1532678399,1532680191,1532681215,1532681727,1532682239,1532690431,1532755967,1532756223,1532756479,1532756735,1532756991,1532757503,1532758015,1532760319,1532760575,1532761087,1532761343,1532761599,1532762111,1532762623,1532762879,1532763135,1532764159,1532764415,1532764671,1532765183,1532765439,1532765695,1532766207,1532767999,1532768255,1532769279,1532769535,1532772351,1532772607,1532773119,1532773375,1532782591,1532782847,1532784639,1532785151,1532785407,1532785663,1532786687,1532786943,1532788735,1532788991,1532790783,1532791295,1532791551,1532791807,1532792831,1532793087,1532794879,1532795903,1532796927,1532797183,1532797439,1532797951,1532798975,1532799999,1532801023,1532801535,1532802047,1532805631,1532805887,1532806143,1532806399,1532807167,1532808191,1532811263,1532812031,1532812287,1532813311,1532813823,1532814079,1532814335,1532814847,1532815103,1532815359,1532816383,1532817407,1532821503,1532887039,1532952575,1533018111,1533149183,1533214719,1533280255,1533386751,1533387007,1533411327,1533413375,1533415423,1533417471,1533419519,1533420287,1533420543,1533421567,1533422079,1533422335,1533423615,1533425663,1533429759,1533431807,1533433855,1533435903,1533437951,1533438207,1533438463,1533438719,1533438975,1533439231,1533439487,1533439743,1533439999,1533442047,1533444095,1533446143,1533448191,1533450239,1533452287,1533453311,1533453567,1533453823,1533454335,1533456383,1533457407,1533457663,1533457919,1533458175,1533458431,1533460479,1533462527,1533464575,1533466623,1533468671,1533470719,1533472767,1533474815,1533476863,1533478911,1533479167,1533479423,1533479679,1533480959,1533481727,1533482495,1533482751,1533483007,1533485055,1533485823,1533487103,1533487359,1533487615,1533487871,1533488639,1533488895,1533489151,1533491199,1533493247,1533495295,1533497343,1533497599,1533497855,1533498367,1533499135,1533499391,1533501439,1533503487,1533504511,1533505023,1533505535,1533507583,1533508607,1533509631,1533511935,1533512191,1533512447,1533512703,1533512959,1533513215,1533513471,1533513727,1533514751,1533515775,1533517823,1533519871,1533526015,1533532159,1533534207,1533536255,1533538303,1533540351,1533541375,1533541887,1533542143,1533542399,1533607935,1533640703,1533657087,1533657599,1533659135,1533661183,1533663231,1533665279,1533667327,1533669375,1533671423,1533673471,1533677567,1533679615,1533681663,1533682943,1533683199,1533689855,1533698047,1533702143,1533704191,1533722623,1533724671,1533726719,1533727231,1533727743,1533728767,1533729791,1533730815,1533732863,1533734911,1533739007,1533757439,1533759487,1533761535,1533763583,1533771775,1533804543,1533805567,1533807615,1533808639,1533809663,1533810687,1533813759,1533814271,1533814783,1533815039,1533818879,1533819903,1533820927,1533829119,1533829631,1533830143,1533830399,1533830911,1533831167,1533833215,1533834239,1533835263,1533836287,1533837311,1533845503,1533847551,1533849599,1533850623,1533850879,1533851135,1533851391,1533851647,1533851903,1533852159,1533852415,1533852671,1533852927,1533853183,1533853439,1533853695,1533855743,1533857791,1533859839,1533861887,1533862399,1533862911,1533863935,1533864191,1533864447,1533864959,1533865215,1533865471,1533865727,1533865983,1533866239,1533866495,1533867007,1533867775,1533868031,1533869823,1533870591,1533871103,1533872127,1533874175,1533878271,1533880319,1533882367,1533886463,1533894655,1533896703,1533898751,1533900799,1533902847,1533911039,1533911295,1533911551,1533912063,1533913087,1533915135,1533919231,1533921279,1533923327,1533924607,1533925375,1533927423,1533929471,1533932799,1533933055,1534066687,1534328831,1534459903,1534590975,1534656511,1534722047,1534787583,1534789631,1534790655,1534791679,1534795775,1534803967,1534808063,1534812159,1534813183,1534813439,1534816255,1534820351,1534824447,1534828543,1534836735,1534839551,1534839807,1534840831,1534844927,1534849023,1534853119,1534853375,1534853631,1534853887,1534854143,1534854399,1534854655,1534857215,1534857471,1534857727,1534857983,1534858239,1534859519,1534859775,1534860543,1534860799,1534861055,1534862079,1534862335,1534862847,1534863359,1534865407,1534865663,1534865919,1534866687,1534866943,1534867199,1534867455,1534867711,1534868223,1534868479,1534868735,1534868991,1534870015,1534870271,1534873599,1534873855,1534874111,1534876415,1534876671,1534885375,1534885631,1534885887,1534886143,1534886911,1534887167,1534887423,1534887679,1534888447,1534888703,1534890751,1534891263,1534897151,1534897407,1534897663,1534898431,1534898687,1534900735,1534900991,1534902271,1534902527,1534902783,1534904319,1534904575,1534908671,1534908927,1534909183,1534909695,1534909951,1534913535,1534913791,1534914303,1534914559,1534914815,1534915071,1534918143,1534918399,1534918655,1534984191,1534988287,1535049727,1535115263,1535197183,1535201279,1535203583,1535204095,1535205375,1535213567,1535311871,1535344639,1535377407,1535378431,1535378943,1535379455,1535380479,1535381503,1535382527,1535383551,1535385599,1535386623,1535387647,1535388671,1535389695,1535389951,1535390207,1535390463,1535390719,1535391743,1535391999,1535392255,1535392767,1535393791,1535394815,1535395839,1535396351,1535396863,1535397887,1535398911,1535399167,1535399679,1535399935,1535400959,1535401215,1535401471,1535401727,1535401983,1535403007,1535403263,1535404031,1535405055,1535406079,1535407103,1535408127,1535409151,1535409663,1535409919,1535410175,1535411199,1535412223,1535412479,1535412735,1535412991,1535413247,1535414271,1535415295,1535416319,1535418367,1535419391,1535420415,1535421439,1535422463,1535423487,1535424511,1535425535,1535426559,1535427583,1535427839,1535428095,1535428351,1535428607,1535429631,1535429887,1535430655,1535431679,1535432703,1535433727,1535434751,1535435007,1535435263,1535435519,1535435775,1535436799,1535437823,1535438847,1535439871,1535440895,1535441919,1535442943,1535451135,1535459327,1535475711,1535508479,1535515391,1535515647,1535545599,1535545855,1535552767,1535553023,1535554303,1535554559,1535556863,1535557119,1535559935,1535560191,1535560447,1535560703,1535567615,1535567871,1535568127,1535570943,1535571199,1535574015,1535578111,1535582207,1535590399,1535591423,1535591679,1535593471,1535593727,1535594495,1535598591,1535602687,1535606783,1535610879,1535614975,1535619071,1535623167,1535627263,1535631359,1535635455,1535639551,1535672319,1535737855,1535770623,1535803391,1535836159,1535868927,1535901695,1535934463,1535967231,1535999999,1536032767,1536036863,1536040959,1536045055,1536045567,1536046079,1536047103,1536047615,1536048127,1536048383,1536049151,1536051199,1536057343,1536061439,1536065535,1536065791,1536066047,1536066303,1536066815,1536067071,1536067327,1536067583,1536067839,1536068095,1536068351,1536068607,1536068863,1536069119,1536069375,1536069631,1536073727,1536077823,1536081919,1536086015,1536090111,1536094207,1536098303,1536114687,1536118783,1536122879,1536126975,1536131071,1536143359,1536147455,1536151551,1536155647,1536159743,1536163839,1536180223,1536196607,1536212991,1536229375,1536245759,1536262143,1536278527,1536294911,1536311295,1536319487,1536321535,1536325631,1536327679,1536344063,1536360447,1536376831,1536380927,1536391167,1536391423,1536391679,1536392191,1536392703,1536393215,1536409599,1536421887,1536423935,1536425983,1536442367,1536458239,1536458751,1536460031,1536460287,1536460543,1536460799,1536475135,1536476159,1536476671,1536479231,1536483327,1536485375,1536486399,1536486655,1536491519,1536499711,1536503807,1536507903,1536524287,1536540671,1536540927,1536541183,1536541695,1536542207,1536542719,1536543231,1536543743,1536547327,1536547583,1536547839,1536548351,1536548863,1536549887,1536550143,1536550911,1536551423,1536551679,1536551935,1536552959,1536553727,1536555007,1536556543,1536573439,1536589823,1536614399,1536622591,1536626687,1536627711,1536630783,1536634879,1536643071,1536644607,1536645119,1536647167,1536651263,1536655359,1536659455,1536661503,1536661759,1536662527,1536662783,1536663551,1536667647,1536675839,1536679935,1536684031,1536688127,1537212415,1538260991,1538785279,1538793471,1538797055,1538801663,1538809855,1538818047,1538826239,1538834431,1538842623,1538843647,1538844159,1538847231,1538847743,1538848255,1538848511,1538848767,1538849791,1538850047,1538850815,1538859007,1538875391,1538883583,1538891775,1538897919,1538899967,1538908159,1538916351,1538924543,1538932735,1538940927,1538949119,1538957311,1538957567,1538957823,1538958335,1538958847,1538959103,1538959615,1538960127,1538960639,1538961407,1538963455,1538963711,1538963967,1538964223,1538964479,1538964735,1538964991,1538965503,1538966015,1538966527,1538967551,1538968575,1538968831,1538969087,1538969599,1538970623,1538971647,1538971903,1538972159,1538972671,1538973695,1538981887,1538990079,1538998271,1539006463,1539022847,1539031039,1539039231,1539047423,1539055615,1539063807,1539071999,1539080191,1539088383,1539096575,1539097599,1539098623,1539099647,1539100671,1539101695,1539102719,1539103743,1539104767,1539105791,1539106815,1539107839,1539108863,1539111167,1539111679,1539111935,1539112191,1539112447,1539112703,1539112959,1539115007,1539115263,1539115519,1539117055,1539123199,1539125247,1539127295,1539129343,1539131391,1539133439,1539135487,1539137535,1539139583,1539141631,1539143679,1539145727,1539147775,1539149823,1539151871,1539153919,1539155967,1539160063,1539160575,1539160831,1539161087,1539162111,1539164159,1539166207,1539167231,1539168255,1539170303,1539172351,1539176447,1539178495,1539186687,1539194623,1539194879,1539201023,1539203071,1539203327,1539203583,1539203839,1539204095,1539204351,1539204607,1539205119,1539205375,1539205631,1539205887,1539206143,1539207167,1539211263,1539211519,1539212031,1539212287,1539212799,1539213311,1539215359,1539217407,1539217663,1539217919,1539218175,1539218431,1539218687,1539218943,1539219199,1539219455,1539221503,1539223551,1539225599,1539225855,1539226111,1539226367,1539226623,1539226879,1539227135,1539227391,1539227647,1539229695,1539231743,1539233791,1539234303,1539235071,1539235839,1539237887,1539239935,1539244031,1539260415,1539276799,1539280895,1539284991,1539289087,1539290111,1539290623,1539291135,1539291391,1539291647,1539291903,1539292159,1539292415,1539293183,1539297279,1539297535,1539297791,1539299071,1539299839,1539300095,1539301375,1539309567,1539310591,1539311615,1539311871,1539312127,1539313407,1539314687,1539315711,1539316735,1539317759,1539318783,1539319807,1539320831,1539321855,1539322879,1539323903,1539324927,1539325951,1539326975,1539329023,1539330047,1539330303,1539330559,1539330815,1539331071,1539331327,1539331583,1539331839,1539332095,1539333119,1539335167,1539336191,1539336703,1539337215,1539338239,1539339263,1539340287,1539341311,1539342335,1539345407,1539346431,1539347455,1539348479,1539349503,1539350527,1539351551,1539352575,1539354623,1539355647,1539357695,1539358719,1539359743,1539360767,1539361279,1539361791,1539362815,1539363839,1539364863,1539365887,1539366911,1539367423,1539367679,1539367935,1539368959,1539369983,1539371007,1539372031,1539373055,1539374079,1539375103,1539376127,1539376383,1539376639,1539376895,1539377151,1539378175,1539379199,1539379711,1539379967,1539380223,1539381247,1539381503,1539381759,1539382015,1539382271,1539382783,1539383295,1539384319,1539385343,1539385855,1539386111,1539386367,1539387391,1539388415,1539388671,1539388927,1539389439,1539389951,1539390463,1539391487,1539392511,1539393535,1539393791,1539394303,1539394559,1539395583,1539396607,1539397631,1539398143,1539398399,1539398655,1539399679,1539400703,1539401727,1539402239,1539402751,1539403263,1539403775,1539404031,1539404287,1539404543,1539404799,1539405823,1539406847,1539408895,1539409919,1539410943,1539411967,1539412991,1539414015,1539415039,1539416063,1539417087,1539418111,1539419135,1539420159,1539422207,1539423231,1539424255,1539425279,1539426303,1539427327,1539428351,1539429375,1539434495,1539434751,1539435007,1539435263,1539435519,1539437567,1539438591,1539439615,1539439871,1539440127,1539440383,1539440639,1539441151,1539441663,1539442175,1539442431,1539442687,1539443199,1539443455,1539443711,1539444223,1539444735,1539445247,1539445759,1539446271,1539446783,1539447295,1539447551,1539447807,1539448831,1539449343,1539449855,1539450367,1539450879,1539451391,1539451903,1539452415,1539452927,1539453439,1539453951,1539454975,1539455487,1539455999,1539456511,1539457023,1539457535,1539458047,1539459071,1539459583,1539460607,1539461631,1539462143,1539462655,1539463167,1539463679,1539464191,1539464703,1539465215,1539466751,1539467263,1539467775,1539468287,1539468799,1539469055,1539469311,1539469823,1539470335,1539470847,1539471359,1539471871,1539472383,1539472895,1539473919,1539474431,1539474943,1539475455,1539475967,1539476223,1539476479,1539476991,1539477503,1539478015,1539478527,1539478783,1539479039,1539480063,1539480575,1539481087,1539481599,1539481855,1539482111,1539483135,1539483647,1539484159,1539484671,1539485695,1539485951,1539486207,1539486719,1539487231,1539487743,1539488255,1539488767,1539489279,1539489791,1539490303,1539490559,1539490815,1539491327,1539491839,1539492095,1539492351,1539492863,1539493119,1539493375,1539493887,1539494399,1539494911,1539495423,1539495935,1539496447,1539496959,1539497471,1539497983,1539498495,1539499007,1539499519,1539500543,1539501055,1539501311,1539501567,1539502079,1539502591,1539503103,1539504127,1539504639,1539505151,1539505663,1539506175,1539506687,1539507199,1539508223,1539508735,1539509247,1539509759,1539510271,1539510783,1539511295,1539511807,1539512319,1539512831,1539513343,1539513855,1539514367,1539514879,1539515391,1539515647,1539515903,1539516415,1539516927,1539517439,1539517951,1539518463,1539519487,1539519999,1539520511,1539521023,1539521535,1539522047,1539522559,1539523583,1539524095,1539524607,1539525119,1539525631,1539526143,1539526655,1539527167,1539527679,1539528191,1539528703,1539529215,1539529727,1539530239,1539530751,1539531263,1539531775,1539532287,1539532799,1539533311,1539533823,1539534335,1539534847,1539535359,1539535871,1539536383,1539536895,1539537407,1539537919,1539540479,1539540991,1539541503,1539542015,1539542527,1539543039,1539543551,1539544063,1539544575,1539545087,1539545599,1539546111,1539546623,1539547135,1539547647,1539548159,1539548671,1539549695,1539550207,1539550719,1539551231,1539551743,1539552255,1539552767,1539553279,1539553791,1539554303,1539554815,1539555327,1539555839,1539556863,1539557375,1539557887,1539558399,1539558911,1539559423,1539559935,1539560447,1539560959,1539561471,1539561727,1539561983,1539563007,1539564031,1539564543,1539565055,1539565567,1539566079,1539567103,1539567615,1539568639,1539569151,1539569663,1539570175,1539570687,1539571199,1539571711,1539572735,1539572991,1539573247,1539573503,1539575807,1539576831,1539577855,1539578879,1539579903,1539580927,1539581951,1539582975,1539583999,1539585023,1539586047,1539587071,1539588095,1539589119,1539589375,1539589631,1539589887,1539590143,1539591167,1539592191,1539593215,1539594239,1539598335,1539599359,1539600383,1539601407,1539602431,1539603455,1539604479,1539605503,1539606527,1539607551,1539609599,1539610879,1539611391,1539611647,1539613695,1539614207,1539614719,1539615743,1539616767,1539617791,1539618815,1539619839,1539620095,1539620351,1539620863,1539621887,1539622911,1539624959,1539625983,1539627007,1539628031,1539628287,1539629055,1539630079,1539631103,1539631359,1539631615,1539632127,1539633151,1539634175,1539637247,1539638271,1539638527,1539639039,1539639295,1539640319,1539641343,1539642367,1539643391,1539644415,1539645439,1539646463,1539647487,1539648511,1539649023,1539649535,1539650559,1539651327,1539651583,1539651839,1539652095,1539652607,1539653631,1539654655,1539655679,1539656703,1539657727,1539658751,1539659775,1539660799,1539661823,1539662847,1539663871,1539664895,1539665919,1539667967,1539668991,1539670015,1539672063,1539673087,1539674111,1539675135,1539677183,1539679231,1539680255,1539681279,1539684351,1539685375,1539687423,1539688447,1539688703,1539689471,1539690495,1539691519,1539692543,1539694591,1539695615,1539696639,1539697663,1539698687,1539699711,1539700735,1539701759,1539702783,1539703039,1539703295,1539703551,1539703807,1539704063,1539704319,1539704575,1539704831,1539705087,1539705343,1539705599,1539706111,1539706367,1539706623,1539707135,1539707391,1539707647,1539707903,1539708159,1539708415,1539708671,1539708927,1539709183,1539709439,1539709695,1539709951,1539710207,1539710463,1539710719,1539710975,1539711231,1539711487,1539711743,1539711999,1539712255,1539712511,1539713023,1539713279,1539713535,1539713791,1539714047,1539714303,1539714559,1539714815,1539715071,1539715327,1539715583,1539715839,1539716095,1539716351,1539716607,1539716863,1539717375,1539717631,1539717887,1539718143,1539718399,1539718655,1539718911,1539719167,1539719423,1539719679,1539719935,1539720191,1539720703,1539720959,1539721215,1539721727,1539721983,1539722239,1539722495,1539722751,1539723007,1539723263,1539723519,1539723775,1539724031,1539724287,1539724543,1539724799,1539725055,1539725311,1539725567,1539725823,1539726079,1539726335,1539726591,1539726847,1539727103,1539727359,1539727615,1539727871,1539728127,1539728383,1539728639,1539728895,1539729151,1539729407,1539729663,1539729919,1539730175,1539730431,1539730943,1539731455,1539731711,1539732223,1539732479,1539732735,1539732991,1539733247,1539733503,1539733759,1539734015,1539734271,1539734527,1539734783,1539735039,1539735295,1539735551,1539735807,1539736063,1539736319,1539736575,1539736831,1539737087,1539737343,1539737599,1539738111,1539738367,1539738623,1539738879,1539739135,1539739391,1539739647,1539739903,1539740415,1539740671,1539740927,1539741183,1539741439,1539741695,1539741951,1539742207,1539742463,1539742719,1539742975,1539743231,1539743487,1539743743,1539743999,1539744255,1539744511,1539744767,1539745023,1539745279,1539745535,1539745791,1539746303,1539746815,1539747071,1539747327,1539747583,1539747839,1539748095,1539748351,1539748607,1539748863,1539749119,1539749375,1539749631,1539749887,1539750143,1539750399,1539750655,1539751167,1539751423,1539751679,1539751935,1539752191,1539752447,1539752703,1539752959,1539753471,1539753727,1539753983,1539754239,1539754495,1539754751,1539755007,1539755263,1539755519,1539755775,1539756031,1539756287,1539756543,1539757567,1539757823,1539758079,1539758335,1539758591,1539758847,1539759103,1539759615,1539759871,1539760127,1539760383,1539760639,1539760895,1539761151,1539761407,1539761663,1539761919,1539762175,1539762431,1539762687,1539762943,1539763199,1539763455,1539763711,1539763967,1539764223,1539764479,1539764735,1539764991,1539765247,1539765503,1539766015,1539766271,1539766527,1539766783,1539767039,1539767295,1539767551,1539767807,1539768063,1539768319,1539768575,1539768831,1539769087,1539769343,1539769599,1539769855,1539770111,1539770367,1539770623,1539770879,1539771135,1539771391,1539771647,1539771903,1539772159,1539772415,1539772671,1539772927,1539773183,1539773439,1539773695,1539773951,1539774207,1539774463,1539774719,1539774975,1539775231,1539775487,1539775743,1539775999,1539776255,1539776511,1539776767,1539777023,1539777279,1539777535,1539777791,1539778047,1539778303,1539778559,1539778815,1539779071,1539779327,1539779583,1539779839,1539780095,1539780351,1539780863,1539781375,1539781631,1539781887,1539782143,1539782399,1539782655,1539782911,1539783167,1539783679,1539783935,1539784191,1539784447,1539784703,1539784959,1539785215,1539785471,1539785727,1539785983,1539786239,1539786495,1539786751,1539787007,1539787263,1539787519,1539787775,1539788031,1539788287,1539788543,1539788799,1539789055,1539789311,1539789567,1539789823,1539790079,1539790335,1539790591,1539790847,1539791103,1539791359,1539791615,1539792383,1539792639,1539792895,1539793151,1539793407,1539793663,1539794175,1539794431,1539794687,1539794943,1539795199,1539795455,1539795711,1539795967,1539796223,1539796479,1539796735,1539796991,1539797247,1539797503,1539798015,1539798271,1539798527,1539798783,1539799039,1539799295,1539799551,1539799807,1539800063,1539800319,1539800575,1539800831,1539801087,1539801343,1539801855,1539802111,1539802367,1539802623,1539802879,1539803135,1539803391,1539803647,1539804159,1539804671,1539804927,1539805183,1539805439,1539805695,1539805951,1539806207,1539806463,1539806719,1539806975,1539807231,1539807487,1539807743,1539807999,1539808255,1539808511,1539808767,1539809023,1539809279,1539809535,1539809791,1539810047,1539810303,1539810559,1539810815,1539811071,1539811327,1539811839,1539812095,1539812351,1539812607,1539812863,1539813119,1539813375,1539813631,1539813887,1539814143,1539814399,1539814655,1539814911,1539815167,1539815423,1539815935,1539816191,1539816447,1539816703,1539816959,1539817215,1539817471,1539817727,1539817983,1539818239,1539818495,1539819007,1539819263,1539819519,1539819775,1539820031,1539820287,1539820543,1539820799,1539821055,1539821311,1539821567,1539821823,1539822079,1539822335,1539822591,1539822847,1539823103,1539823359,1539823615,1539823871,1539824127,1539824383,1539824639,1539824895,1539825151,1539825407,1539825663,1539825919,1539826175,1539826431,1539826687,1539826943,1539827199,1539827455,1539827711,1539827967,1539828479,1539828735,1539828991,1539829247,1539829503,1539829759,1539830015,1539830271,1539830527,1539830783,1539831039,1539831295,1539831551,1539831807,1539832063,1539832319,1539832575,1539832831,1539833087,1539833343,1539833855,1539837951,1539838975,1539839999,1539841023,1539842047,1539844095,1539845119,1539846143,1539847167,1539848191,1539849215,1539849471,1539849727,1539850239,1539851263,1539852287,1539853055,1539853311,1539854335,1539855359,1539855871,1539856127,1539856383,1539857407,1539858431,1539859455,1539860479,1539861503,1539862527,1539863551,1539864575,1539865599,1539866623,1539867647,1539867903,1539868159,1539868671,1539869695,1539870719,1539870975,1539871231,1539871487,1539871743,1539871999,1539872255,1539872511,1539872767,1539873791,1539874815,1539876863,1539877887,1539878911,1539879167,1539879423,1539879679,1539879935,1539880959,1539881983,1539883007,1539884031,1539885055,1539886079,1539887103,1539888127,1539889151,1539890175,1539890431,1539890687,1539891199,1539893247,1539894271,1539895295,1539895551,1539895807,1539896319,1539897343,1539898367,1539899391,1539900415,1539901439,1539901951,1539902207,1539902463,1539903487,1539904511,1539905535,1539905791,1539906047,1539906559,1539907583,1539908607,1539909631,1539910655,1539911679,1539913727,1539914751,1539915775,1539916799,1539917823,1539918847,1539920895,1539921663,1539921919,1539922943,1539923967,1539924991,1539926015,1539926271,1539926527,1539926783,1539927039,1539928063,1539929087,1539930111,1539931135,1539932159,1539933183,1539934207,1539935231,1539936255,1539937279,1539938303,1539939327,1539940351,1539941375,1539942399,1539942655,1539942911,1539943167,1539943423,1539944447,1539945471,1539946495,1539947519,1539948543,1539949567,1539949823,1539950079,1539950335,1539950591,1539950847,1539951103,1539951615,1539953663,1539954175,1539955711,1539956735,1539957759,1539958783,1539959807,1539960575,1539962879,1539964927,1539965951,1539966463,1539966975,1539972095,1539973119,1539974143,1539975167,1539976191,1539977215,1539978239,1539979263,1539980287,1539981311,1539982335,1539983359,1539984383,1539985407,1539986431,1539987455,1539988479,1539990527,1539991551,1539993599,1539994623,1539995647,1539996671,1539997695,1539999743,1540000767,1540001791,1540002815,1540003839,1540004863,1540005887,1540006911,1540007935,1540008959,1540011007,1540013055,1540014079,1540015103,1540016127,1540016383,1540017151,1540018175,1540018431,1540018687,1540018943,1540019199,1540020223,1540022271,1540023295,1540024319,1540024575,1540025343,1540026367,1540027391,1540028415,1540029439,1540031487,1540032511,1540033535,1540034559,1540035583,1540036607,1540037631,1540037887,1540038143,1540038399,1540038655,1540039679,1540040703,1540041727,1540042751,1540043775,1540044799,1540045823,1540046847,1540047871,1540048895,1540049919,1540050943,1540052991,1540054015,1540055039,1540056063,1540057087,1540057343,1540057599,1540057855,1540058111,1540059135,1540060159,1540061183,1540062207,1540063231,1540064255,1540065279,1540068351,1540069375,1540070399,1540071423,1540072447,1540073471,1540074495,1540075519,1540077567,1540078591,1540081663,1540083711,1540084735,1540085759,1540086783,1540087039,1540087807,1540088575,1540088831,1540089343,1540089599,1540089855,1540092927,1540094975,1540095999,1540097023,1540099071,1540100095,1540102143,1540103167,1540105215,1540106239,1540107263,1540108287,1540109311,1540110335,1540111359,1540112383,1540113407,1540114431,1540115455,1540116479,1540116735,1540117247,1540117503,1540118527,1540119551,1540120575,1540124671,1540125695,1540126719,1540127743,1540128767,1540129791,1540130815,1540131839,1540132863,1540134911,1540135935,1540136959,1540137983,1540139007,1540140031,1540141055,1540142335,1540142591,1540143103,1540144127,1540145151,1540146175,1540147199,1540148223,1540149247,1540150271,1540151295,1540152319,1540153343,1540153599,1540154367,1540156415,1540157439,1540158463,1540159487,1540160511,1540162559,1540163583,1540164607,1540165631,1540166655,1540167679,1540168703,1540169727,1540170751,1540171775,1540172031,1540172287,1540172543,1540172799,1540173823,1540174847,1540175871,1540176895,1540177919,1540178943,1540179967,1540180991,1540182015,1540183039,1540184063,1540185087,1540186111,1540187135,1540188671,1540189183,1540190207,1540191231,1540192255,1540193279,1540193535,1540193791,1540194047,1540194303,1540195327,1540198399,1540199423,1540200447,1540201471,1540201727,1540201983,1540202239,1540202495,1540203519,1540204543,1540205567,1540206591,1540208639,1540209663,1540210687,1540211455,1540211711,1540212735,1540213759,1540214783,1540215807,1540216831,1540217855,1540218111,1540218367,1540218623,1540218879,1540219903,1540220159,1540220415,1540220671,1540220927,1540221951,1540223999,1540225023,1540226047,1540227071,1540227583,1540227839,1540228607,1540229119,1540229631,1540229887,1540230143,1540232191,1540232703,1540233215,1540233727,1540234239,1540234495,1540234751,1540235775,1540236287,1540236799,1540237311,1540238847,1540239359,1540239871,1540240383,1540240895,1540242175,1540242431,1540242943,1540243455,1540243967,1540244735,1540244991,1540245247,1540245503,1540246015,1540246527,1540247039,1540247551,1540248063,1540248575,1540249087,1540249599,1540250111,1540250367,1540250623,1540251135,1540251391,1540251647,1540252159,1540252671,1540253183,1540253695,1540254207,1540254719,1540255231,1540255743,1540255999,1540256255,1540256767,1540257279,1540257791,1540258303,1540258559,1540258815,1540259327,1540259839,1540260351,1540260863,1540261375,1540261887,1540262399,1540262911,1540263423,1540263935,1540264447,1540265471,1540265983,1540266495,1540267007,1540267519,1540268543,1540268799,1540269055,1540269567,1540269823,1540270079,1540270335,1540270591,1540271103,1540271615,1540272127,1540272383,1540272639,1540273663,1540274175,1540274687,1540275199,1540275711,1540276223,1540276735,1540277247,1540277759,1540278271,1540278783,1540279807,1540280319,1540280575,1540280831,1540281343,1540281855,1540282367,1540282879,1540283903,1540284415,1540284927,1540285439,1540285695,1540285951,1540286207,1540286463,1540286975,1540287487,1540288511,1540289535,1540290047,1540290559,1540291071,1540291583,1540292095,1540292607,1540293119,1540293631,1540294655,1540294911,1540295167,1540295679,1540296191,1540296703,1540297215,1540297471,1540297727,1540298239,1540298751,1540299775,1540300287,1540300799,1540301311,1540301823,1540302847,1540303871,1540304895,1540305407,1540305919,1540306431,1540306943,1540307199,1540307455,1540307967,1540308223,1540308479,1540308991,1540309503,1540310015,1540310527,1540311039,1540311551,1540312831,1540313087,1540313599,1540315135,1540315647,1540316159,1540317183,1540318207,1540318463,1540318719,1540319231,1540319743,1540320767,1540321279,1540321791,1540322303,1540322559,1540322815,1540323327,1540323839,1540324351,1540324863,1540325375,1540325887,1540326399,1540326911,1540327423,1540327935,1540328447,1540329471,1540329983,1540330495,1540331007,1540331519,1540332031,1540332543,1540333055,1540333567,1540334079,1540334591,1540335103,1540336127,1540336639,1540336895,1540337151,1540337407,1540337663,1540338175,1540338687,1540339199,1540339455,1540339711,1540340735,1540341247,1540341759,1540342271,1540342783,1540343295,1540343807,1540344831,1540345087,1540345343,1540345599,1540345855,1540346367,1540346879,1540347391,1540347903,1540348415,1540348927,1540349439,1540349951,1540350463,1540350975,1540351487,1540351999,1540352511,1540353023,1540353535,1540354047,1540354559,1540355071,1540355583,1540356095,1540356351,1540356607,1540357119,1540357631,1540358143,1540358399,1540358655,1540358911,1540359167,1540359423,1540359935,1540360191,1540360447,1540360703,1540360959,1540361215,1540361471,1540361727,1540361983,1540362239,1540362495,1540363007,1540363263,1540363519,1540363775,1540364031,1540364287,1540364543,1540364799,1540365055,1540365311,1540365567,1540365823,1540366079,1540366335,1540366591,1540366847,1540367103,1540367359,1540367615,1540367871,1540368127,1540368383,1540368639,1540368895,1540369407,1540369663,1540370687,1540370943,1540371199,1540371455,1540371711,1540371967,1540372223,1540372479,1540372735,1540372991,1540373247,1540373759,1540374015,1540374271,1540374527,1540374783,1540375039,1540375295,1540375551,1540375807,1540376063,1540376319,1540376575,1540376831,1540377087,1540377343,1540377599,1540377855,1540378111,1540378367,1540378623,1540378879,1540379135,1540379391,1540379647,1540379903,1540380159,1540380415,1540380671,1540380927,1540381183,1540381439,1540381695,1540381951,1540382207,1540382463,1540382719,1540382975,1540383231,1540383487,1540383743,1540383999,1540384255,1540384511,1540384767,1540385023,1540385279,1540385535,1540385791,1540386303,1540386559,1540386815,1540387071,1540387327,1540387583,1540388095,1540388351,1540388607,1540388863,1540389119,1540389375,1540389631,1540389887,1540390143,1540390399,1540390655,1540390911,1540391167,1540391423,1540391935,1540392191,1540392447,1540392703,1540392959,1540393215,1540393471,1540393727,1540394239,1540394495,1540394751,1540395007,1540395263,1540395519,1540395775,1540396031,1540396287,1540396543,1540396799,1540397055,1540397311,1540397823,1540398079,1540398335,1540398591,1540399359,1540399615,1540399871,1540400127,1540400383,1540400639,1540400895,1540401151,1540401407,1540401663,1540401919,1540402175,1540402431,1540402687,1540402943,1540403199,1540403711,1540404223,1540404479,1540404735,1540404991,1540405247,1540405503,1540405759,1540406015,1540406271,1540406527,1540407039,1540407807,1540408063,1540408319,1540408575,1540408831,1540409087,1540409343,1540409599,1540409855,1540410111,1540410367,1540410623,1540410879,1540411135,1540411391,1540411647,1540411903,1540412159,1540412415,1540412671,1540413183,1540413439,1540413695,1540413951,1540414207,1540414463,1540414719,1540414975,1540415231,1540415487,1540415743,1540415999,1540416255,1540416511,1540416767,1540417023,1540417279,1540417535,1540417791,1540418047,1540418559,1540418815,1540419071,1540419327,1540419583,1540419839,1540420095,1540420607,1540420863,1540421375,1540421631,1540422143,1540422399,1540422655,1540422911,1540423423,1540423679,1540423935,1540424191,1540424447,1540424703,1540424959,1540425215,1540425471,1540425727,1540425983,1540426239,1540426495,1540426751,1540427007,1540427519,1540427775,1540428031,1540428287,1540428543,1540428799,1540429055,1540429567,1540429823,1540430079,1540430335,1540430591,1540430847,1540431103,1540431359,1540431871,1540432127,1540432383,1540432639,1540432895,1540433151,1540433407,1540433663,1540433919,1540434175,1540434431,1540434687,1540434943,1540435199,1540435455,1540435711,1540435967,1540436223,1540436479,1540436735,1540436991,1540437247,1540437503,1540438015,1540438271,1540438527,1540438783,1540439039,1540439295,1540439551,1540440063,1540440319,1540440575,1540440831,1540441087,1540441343,1540441855,1540442111,1540442367,1540442623,1540442879,1540443135,1540443391,1540443647,1540443903,1540444159,1540444415,1540444671,1540444927,1540445183,1540445439,1540445695,1540445951,1540446207,1540446463,1540446719,1540446975,1540447231,1540447487,1540447743,1540447999,1540448255,1540448511,1540448767,1540449023,1540449535,1540449791,1540450047,1540450303,1540450559,1540450815,1540451071,1540451327,1540451583,1540451839,1540452095,1540452351,1540452607,1540452863,1540453119,1540453631,1540453887,1540454143,1540454399,1540454911,1540455167,1540455423,1540455679,1540455935,1540456191,1540457215,1540457471,1540457727,1540457983,1540458239,1540458495,1540458751,1540459007,1540459519,1540459775,1540460031,1540460287,1540460543,1540460799,1540461055,1540461311,1540461823,1540462079,1540462335,1540463103,1540463359,1540463615,1540463871,1540464127,1540464383,1540464895,1540465151,1540465407,1540465663,1540465919,1540466175,1540466431,1540466687,1540466943,1540467455,1540467711,1540467967,1540468223,1540468479,1540468735,1540468991,1540469247,1540469503,1540469759,1540470015,1540470271,1540470527,1540471039,1540471295,1540471551,1540471807,1540472063,1540472319,1540472575,1540472831,1540473087,1540473343,1540473599,1540473855,1540474111,1540474367,1540474623,1540474879,1540475135,1540475903,1540476159,1540476415,1540476671,1540476927,1540477183,1540477439,1540477695,1540477951,1540478207,1540478463,1540478719,1540478975,1540479231,1540479487,1540479743,1540479999,1540480255,1540480767,1540481023,1540481279,1540481535,1540481791,1540482047,1540482303,1540482559,1540483071,1540483327,1540483583,1540483839,1540484095,1540484351,1540484607,1540484863,1540485119,1540485375,1540485631,1540485887,1540486143,1540486399,1540486655,1540486911,1540487167,1540487423,1540487679,1540487935,1540488191,1540488447,1540488703,1540488959,1540489215,1540491263,1540492287,1540493311,1540494335,1540495359,1540496383,1540499455,1540500479,1540501503,1540502527,1540503551,1540504575,1540505599,1540506623,1540506879,1540507135,1540507391,1540507647,1540508671,1540509695,1540510719,1540511743,1540512767,1540513791,1540514815,1540515839,1540516863,1540517887,1540518911,1540519935,1540520959,1540521215,1540521471,1540521727,1540521983,1540523007,1540524031,1540525055,1540526079,1540527103,1540528127,1540528383,1540528639,1540528895,1540529151,1540531199,1540531711,1540531967,1540532223,1540533247,1540534271,1540535295,1540536319,1540537343,1540538367,1540542463,1540543487,1540544511,1540545535,1540546559,1540547583,1540548607,1540549631,1540552703,1540553727,1540554751,1540555007,1540555263,1540555519,1540555775,1540556799,1540557823,1540558847,1540560895,1540561407,1540562943,1540563967,1540564991,1540566015,1540567039,1540568063,1540571135,1540572159,1540573183,1540574207,1540576255,1540576511,1540576767,1540577023,1540577279,1540577535,1540578047,1540578303,1540579327,1540580351,1540581375,1540582399,1540583423,1540583679,1540583935,1540584191,1540584447,1540586495,1540588543,1540589567,1540590591,1540593663,1540594687,1540595711,1540596735,1540597759,1540598783,1540599039,1540599551,1540600831,1540602879,1540603903,1540604927,1540605951,1540606975,1540607999,1540609023,1540610047,1540611071,1540613119,1540614143,1540615167,1540616191,1540617215,1540618239,1540619263,1540620287,1540620543,1540620799,1540621055,1540621311,1540621567,1540621823,1540622079,1540622335,1540622591,1540622847,1540623103,1540623359,1540623615,1540623871,1540624127,1540624383,1540624639,1540624895,1540625151,1540625407,1540625663,1540625919,1540626175,1540626431,1540626687,1540626943,1540627199,1540627455,1540627711,1540627967,1540628223,1540628479,1540628735,1540628991,1540629247,1540629503,1540629759,1540630015,1540630271,1540630527,1540631039,1540631295,1540631551,1540631807,1540632063,1540632319,1540632575,1540632831,1540633599,1540633855,1540634111,1540634623,1540634879,1540635135,1540635391,1540635647,1540636159,1540636415,1540636671,1540637183,1540637439,1540637695,1540637951,1540638207,1540638463,1540638719,1540639231,1540639487,1540639743,1540639999,1540640255,1540640511,1540640767,1540641023,1540641279,1540641535,1540641791,1540642047,1540642303,1540642559,1540642815,1540643071,1540643327,1540643583,1540643839,1540644095,1540644607,1540644863,1540645119,1540645375,1540645631,1540645887,1540646143,1540646399,1540646655,1540646911,1540647167,1540647423,1540647679,1540647935,1540648191,1540648447,1540648959,1540649215,1540649471,1540649727,1540649983,1540650239,1540650495,1540650751,1540651007,1540651263,1540651519,1540651775,1540652031,1540652287,1540652543,1540652799,1540653055,1540653311,1540653567,1540653823,1540654079,1540654335,1540654591,1540654847,1540655103,1540655359,1540655615,1540655871,1540656127,1540656383,1540656895,1540657151,1540657407,1540657663,1540657919,1540658175,1540658431,1540658687,1540659199,1540659455,1540659711,1540659967,1540660223,1540660479,1540660735,1540660991,1540661247,1540661759,1540662015,1540662271,1540662527,1540662783,1540663039,1540663295,1540663551,1540663807,1540664063,1540664319,1540664575,1540665087,1540665343,1540665599,1540665855,1540666111,1540666367,1540666623,1540666879,1540667135,1540667647,1540667903,1540668159,1540668415,1540668671,1540668927,1540669695,1540669951,1540670207,1540670463,1540670719,1540670975,1540671231,1540671487,1540671743,1540671999,1540672255,1540672511,1540672767,1540673023,1540673279,1540673535,1540673791,1540674047,1540674303,1540674559,1540674815,1540675071,1540675327,1540675583,1540675839,1540676351,1540676607,1540676863,1540677119,1540677375,1540677631,1540677887,1540678143,1540678399,1540678655,1540678911,1540679167,1540679423,1540679679,1540679935,1540680191,1540680447,1540680703,1540680959,1540681215,1540681471,1540681727,1540681983,1540682239,1540682495,1540682751,1540683007,1540683263,1540683519,1540683775,1540684031,1540684287,1540684543,1540684799,1540685055,1540685311,1540685823,1540686079,1540686335,1540686591,1540686847,1540687103,1540687359,1540687615,1540687871,1540688127,1540688383,1540688639,1540688895,1540689151,1540689407,1540689663,1540689919,1540690175,1540690431,1540690687,1540690943,1540691711,1540691967,1540692223,1540692735,1540692991,1540693247,1540693503,1540693759,1540694015,1540694271,1540694527,1540694783,1540695039,1540695295,1540695551,1540695807,1540696063,1540696319,1540696575,1540696831,1540697087,1540697343,1540697599,1540697855,1540698111,1540698367,1540698623,1540699135,1540699391,1540699647,1540699903,1540700159,1540700415,1540700671,1540700927,1540701183,1540701695,1540701951,1540702207,1540702463,1540702719,1540702975,1540703231,1540703487,1540703743,1540703999,1540704255,1540704511,1540704767,1540705279,1540705535,1540705791,1540706047,1540706303,1540706559,1540706815,1540707071,1540707327,1540707583,1540707839,1540708095,1540708351,1540708607,1540708863,1540709119,1540709375,1540709631,1540710399,1540710655,1540710911,1540711167,1540711423,1540711679,1540711935,1540712191,1540712447,1540712703,1540713215,1540713727,1540713983,1540714239,1540714751,1540715263,1540715519,1540715775,1540716031,1540716287,1540716543,1540717055,1540717311,1540717823,1540718079,1540718335,1540718591,1540718847,1540719103,1540719359,1540719615,1540719871,1540720127,1540720383,1540720639,1540720895,1540721151,1540721663,1540721919,1540722431,1540722687,1540722943,1540723455,1540723711,1540723967,1540724223,1540724479,1540724735,1540724991,1540725247,1540725503,1540725759,1540726015,1540726271,1540726527,1540726783,1540727039,1540727295,1540727551,1540727807,1540728063,1540728319,1540728575,1540728831,1540729343,1540729599,1540729855,1540730111,1540730367,1540730623,1540730879,1540731135,1540731391,1540731647,1540731903,1540732159,1540732415,1540732671,1540732927,1540733183,1540733439,1540733695,1540733951,1540734207,1540734463,1540734719,1540734975,1540735231,1540735487,1540735743,1540735999,1540736255,1540736511,1540736767,1540737023,1540737279,1540737535,1540737791,1540738047,1540738303,1540738559,1540738815,1540739071,1540739327,1540739583,1540739839,1540740095,1540740351,1540740607,1540740863,1540741631,1540742143,1540742399,1540742655,1540742911,1540743167,1540743423,1540743679,1540743935,1540744191,1540744447,1540744703,1540744959,1540745215,1540745471,1540745727,1540745983,1540746239,1540746495,1540746751,1540747263,1540747519,1540747775,1540748031,1540748543,1540748799,1540749055,1540749311,1540749567,1540749823,1540750079,1540750335,1540750591,1540751103,1540752383,1540753407,1540754431,1540755455,1540756479,1540757503,1540758527,1540759551,1540761599,1540762111,1540762623,1540763391,1540763647,1540764671,1540765695,1540766719,1540767743,1540768255,1540768511,1540768767,1540769791,1540770815,1540771839,1540772095,1540772863,1540773887,1540774911,1540775935,1540776959,1540777983,1540779007,1540780031,1540780287,1540781055,1540783103,1540783359,1540783615,1540783871,1540784127,1540787199,1540789247,1540790271,1540791295,1540792319,1540793343,1540794367,1540795391,1540795647,1540795903,1540796159,1540796415,1540798463,1540799487,1540800511,1540801535,1540802559,1540803583,1540804607,1540805631,1540806655,1540807679,1540809727,1540810751,1540811775,1540812799,1540813823,1540815871,1540816895,1540817919,1540818943,1540819967,1540820991,1540823039,1540824063,1540825087,1540826111,1540828159,1540829183,1540830207,1540833279,1540834303,1540835327,1540836351,1540837375,1540838399,1540838911,1540839167,1540839423,1540840447,1540841471,1540842495,1540843519,1540844543,1540846591,1540847615,1540848639,1540849663,1540850687,1540851711,1540852735,1540853759,1540854783,1540855807,1540856831,1540857855,1540858879,1540859903,1540861951,1540862975,1540865023,1540872191,1540873215,1540875263,1540876287,1540877311,1540878335,1540879359,1540882431,1540882687,1540883199,1540883455,1540883711,1540883967,1540884223,1540884479,1540884735,1540884991,1540885247,1540885503,1540885759,1540886015,1540886271,1540886527,1540886783,1540887039,1540887295,1540887551,1540887807,1540888063,1540888319,1540888575,1540888831,1540889087,1540889343,1540889599,1540889855,1540890111,1540890367,1540890623,1540890879,1540891135,1540891391,1540891647,1540891903,1540892159,1540892415,1540892671,1540892927,1540893183,1540893439,1540893695,1540894207,1540894463,1540894719,1540895487,1540895743,1540895999,1540896255,1540896511,1540896767,1540897023,1540897279,1540897535,1540897791,1540898047,1540898303,1540898559,1540898815,1540899071,1540899327,1540899583,1540899839,1540900351,1540900607,1540900863,1540901119,1540901375,1540901631,1540901887,1540902143,1540902399,1540902655,1540902911,1540903167,1540903423,1540903679,1540904447,1540904703,1540904959,1540905471,1540905727,1540905983,1540906239,1540906495,1540906751,1540907007,1540907263,1540907519,1540907775,1540908031,1540908287,1540908543,1540908799,1540909055,1540909311,1540909567,1540909823,1540910079,1540910335,1540910591,1540910847,1540911103,1540911359,1540911615,1540911871,1540912127,1540912383,1540912639,1540912895,1540913151,1540913407,1540913663,1540913919,1540914175,1540914431,1540914687,1540914943,1540915199,1540915455,1540915967,1540916479,1540916735,1540916991,1540917247,1540917503,1540918015,1540918271,1540918527,1540919039,1540919295,1540919551,1540919807,1540920063,1540920319,1540920575,1540920831,1540921087,1540921599,1540922111,1540922367,1540922879,1540923135,1540923391,1540923647,1540923903,1540924159,1540924415,1540924671,1540924927,1540925183,1540925439,1540925695,1540925951,1540926207,1540926463,1540926719,1540926975,1540927231,1540927487,1540927743,1540927999,1540928255,1540928511,1540928767,1540929023,1540929279,1540929535,1540929791,1540930047,1540930303,1540930559,1540930815,1540931071,1540931327,1540931839,1540932095,1540932351,1540932607,1540932863,1540933119,1540933375,1540933631,1540933887,1540934143,1540934399,1540934655,1540934911,1540935167,1540935423,1540935679,1540935935,1540936191,1540936447,1540936959,1540937471,1540937727,1540937983,1540938239,1540938751,1540939007,1540939263,1540939519,1540939775,1540940031,1540940287,1540940543,1540940799,1540941055,1540941311,1540941567,1540942079,1540942335,1540942591,1540942847,1540943103,1540943359,1540943615,1540943871,1540944127,1540944383,1540944639,1540944895,1540945151,1540945407,1540945663,1540945919,1540946175,1540946431,1540946687,1540946943,1540947199,1540947455,1540947711,1540947967,1540948479,1540948991,1540949503,1540950015,1540951039,1540951551,1540952063,1540952575,1540953087,1540953599,1540953855,1540954111,1540954623,1540955135,1540955647,1540956159,1540956671,1540957183,1540957695,1540958207,1540958719,1540959231,1540959743,1540960255,1540960767,1540961023,1540961279,1540961791,1540962303,1540962815,1540963839,1540964351,1540964863,1540965887,1540966399,1540966911,1540967423,1540967679,1540967935,1540968447,1540968959,1540969471,1540969983,1540970495,1540971007,1540971263,1540971519,1540972031,1540972543,1540973055,1540973567,1540974591,1540975103,1540975615,1540976639,1540977151,1540977663,1540978175,1540978431,1540978687,1540979199,1540979711,1540979967,1540980223,1540980735,1540980991,1540981247,1540981503,1540981759,1540982015,1540982271,1540982527,1540982783,1540983295,1540983551,1540983807,1540984063,1540984319,1540984575,1540984831,1540985087,1540985343,1540985599,1540985855,1540986111,1540986367,1540986623,1540986879,1540987135,1540987391,1540987647,1540987903,1540988159,1540988415,1540988671,1540988927,1540989183,1540989439,1540989695,1540989951,1540990207,1540990463,1540990719,1540990975,1540991231,1540991487,1540991743,1540991999,1540992255,1540992511,1540993279,1540993535,1540993791,1540994047,1540994303,1540994559,1540994815,1540995071,1540995327,1540995583,1540995839,1540996095,1540996351,1540996607,1540996863,1540997119,1540997375,1540997631,1540997887,1540998143,1540998399,1540998655,1540998911,1540999167,1540999423,1540999679,1540999935,1541000191,1541000447,1541000703,1541000959,1541001215,1541001471,1541001727,1541002239,1541002495,1541002751,1541003007,1541003263,1541003519,1541004031,1541004287,1541004543,1541004799,1541005311,1541005567,1541005823,1541006079,1541006335,1541006591,1541006847,1541007103,1541007359,1541007615,1541007871,1541008127,1541008383,1541008639,1541008895,1541009151,1541009407,1541009663,1541009919,1541010175,1541010431,1541010687,1541010943,1541011199,1541011455,1541011711,1541011967,1541012223,1541012479,1541012735,1541012991,1541013247,1541013503,1541014527,1541015551,1541016575,1541018623,1541018879,1541019135,1541019391,1541019647,1541022719,1541022975,1541023231,1541023487,1541023743,1541024767,1541025791,1541026815,1541027839,1541028095,1541028351,1541028607,1541028863,1541029887,1541030911,1541031935,1541032959,1541033215,1541033471,1541033983,1541035007,1541036031,1541037055,1541038079,1541039103,1541040127,1541041151,1541044223,1541045247,1541046271,1541049343,1541049599,1541051391,1541052415,1541052927,1541053439,1541054463,1541055487,1541056511,1541057535,1541058303,1541058559,1541059583,1541060095,1541060351,1541060607,1541061631,1541062655,1541063679,1541065727,1541066751,1541067775,1541068799,1541069823,1541070847,1541071871,1541072895,1541073919,1541074943,1541075967,1541078015,1541079039,1541080063,1541081087,1541082111,1541083135,1541084159,1541084415,1541084671,1541084927,1541086207,1541086463,1541086719,1541086975,1541087231,1541089279,1541090303,1541091327,1541092351,1541093375,1541094399,1541094911,1541095423,1541096447,1541097471,1541098495,1541099519,1541100543,1541101567,1541102591,1541103615,1541105663,1541106687,1541107711,1541108735,1541109759,1541110783,1541111807,1541112831,1541113855,1541115903,1541116927,1541117951,1541118975,1541122047,1541123071,1541124095,1541126143,1541127167,1541132287,1541133311,1541133567,1541133823,1541134079,1541134335,1541135359,1541136383,1541138431,1541139455,1541140479,1541142527,1541143551,1541144575,1541144831,1541145087,1541145343,1541145599,1541145855,1541146111,1541146367,1541146623,1541146879,1541147135,1541147391,1541147903,1541148415,1541148671,1541148927,1541149439,1541149695,1541149951,1541150207,1541150463,1541150719,1541151231,1541151487,1541151743,1541151999,1541152255,1541152511,1541152767,1541153023,1541153279,1541153535,1541153791,1541154047,1541154303,1541154559,1541154815,1541155071,1541155327,1541155583,1541155839,1541156095,1541156351,1541156607,1541156863,1541157119,1541157375,1541157631,1541157887,1541158143,1541158399,1541158655,1541158911,1541159167,1541159423,1541159679,1541159935,1541160447,1541160703,1541160959,1541161215,1541161471,1541161727,1541161983,1541162239,1541162495,1541162751,1541163007,1541163263,1541163519,1541163775,1541164031,1541164287,1541164543,1541164799,1541165055,1541165567,1541165823,1541166079,1541166335,1541166591,1541166847,1541167103,1541167359,1541167615,1541167871,1541168127,1541168639,1541168895,1541169151,1541169407,1541169663,1541169919,1541170431,1541170687,1541170943,1541171199,1541171455,1541171711,1541171967,1541172223,1541172479,1541172735,1541172991,1541173247,1541173503,1541173759,1541174015,1541174271,1541174527,1541174783,1541175039,1541175295,1541175551,1541175807,1541176063,1541176319,1541176575,1541176831,1541177087,1541177343,1541177599,1541177855,1541178111,1541178367,1541178623,1541178879,1541179135,1541179391,1541179647,1541179903,1541180159,1541180415,1541180671,1541180927,1541181183,1541181439,1541181695,1541182207,1541182463,1541182719,1541182975,1541183231,1541183487,1541183743,1541183999,1541184255,1541184511,1541184767,1541185023,1541185279,1541185535,1541185791,1541186047,1541186303,1541186559,1541186815,1541187071,1541187327,1541187583,1541187839,1541188351,1541188607,1541188863,1541189119,1541189375,1541189631,1541189887,1541190143,1541190399,1541190655,1541190911,1541191167,1541191423,1541191679,1541191935,1541192191,1541192447,1541192703,1541192959,1541193215,1541193471,1541193727,1541193983,1541194239,1541194495,1541194751,1541195007,1541195263,1541195519,1541195775,1541196031,1541196287,1541196799,1541197055,1541197311,1541197567,1541197823,1541198079,1541198335,1541198591,1541198847,1541199103,1541199359,1541199615,1541199871,1541200127,1541200383,1541201151,1541201407,1541201663,1541201919,1541202175,1541202431,1541202687,1541202943,1541203199,1541203455,1541203711,1541203967,1541204223,1541204479,1541204735,1541204991,1541205247,1541205503,1541205759,1541206015,1541206271,1541206527,1541206783,1541207039,1541207295,1541207807,1541208063,1541208319,1541208575,1541208831,1541209087,1541209599,1541209855,1541210111,1541210623,1541211135,1541211647,1541212159,1541212671,1541213183,1541213695,1541214207,1541215231,1541215743,1541216255,1541216767,1541217279,1541218303,1541218815,1541219839,1541220095,1541220351,1541220863,1541221375,1541221887,1541222399,1541222911,1541223423,1541223935,1541224447,1541224959,1541225471,1541225983,1541226495,1541227007,1541227519,1541227775,1541228031,1541228543,1541229055,1541229567,1541230079,1541230591,1541231103,1541231615,1541232127,1541232639,1541233151,1541233663,1541234175,1541234687,1541235199,1541235455,1541235711,1541236223,1541236735,1541237247,1541237759,1541238271,1541239295,1541239807,1541240063,1541240319,1541240831,1541241343,1541241855,1541242367,1541242879,1541243391,1541243903,1541244415,1541244927,1541245439,1541245951,1541246463,1541246975,1541247487,1541247999,1541248511,1541249023,1541249535,1541250047,1541250559,1541251071,1541251583,1541252607,1541253119,1541253631,1541254143,1541254655,1541255679,1541256191,1541256703,1541257215,1541257727,1541258239,1541258751,1541259263,1541259775,1541260287,1541260799,1541261823,1541262335,1541262847,1541263359,1541263871,1541264383,1541264895,1541265407,1541265919,1541266431,1541266943,1541267455,1541267967,1541268479,1541268991,1541269503,1541269759,1541270015,1541270527,1541271039,1541271551,1541272063,1541272575,1541273087,1541274111,1541274623,1541275135,1541275647,1541276671,1541277695,1541278719,1541280767,1541281791,1541282815,1541283839,1541285887,1541286399,1541286655,1541286911,1541287935,1541288959,1541289983,1541291007,1541293055,1541295103,1541297151,1541298175,1541299199,1541300223,1541301247,1541302271,1541303295,1541304319,1541305343,1541306367,1541307391,1541308415,1541309439,1541310463,1541311487,1541314559,1541315583,1541316607,1541317631,1541318655,1541319679,1541320703,1541321727,1541322751,1541323775,1541324799,1541325823,1541326847,1541327871,1541328895,1541329919,1541330943,1541331967,1541332991,1541334015,1541335039,1541336063,1541338111,1541341183,1541341439,1541341695,1541341951,1541342463,1541342719,1541342975,1541343231,1541343487,1541343743,1541343999,1541344255,1541344511,1541345023,1541345279,1541345535,1541345791,1541346047,1541346303,1541346559,1541346815,1541347071,1541347327,1541347583,1541347839,1541348095,1541348351,1541348607,1541348863,1541349119,1541349375,1541349631,1541349887,1541350143,1541350399,1541350655,1541350911,1541351167,1541351423,1541351679,1541351935,1541352191,1541352447,1541352703,1541352959,1541353215,1541353471,1541353727,1541353983,1541354239,1541354495,1541354751,1541355007,1541355263,1541355519,1541355775,1541356031,1541356287,1541356543,1541356799,1541357055,1541357311,1541357567,1541357823,1541358079,1541358335,1541358591,1541358847,1541359103,1541359359,1541359615,1541359871,1541360127,1541360383,1541360639,1541360895,1541361151,1541361407,1541361663,1541361919,1541362175,1541362431,1541362687,1541362943,1541363199,1541363455,1541363711,1541363967,1541364479,1541364735,1541364991,1541365247,1541365503,1541365759,1541366015,1541366271,1541366527,1541366783,1541367039,1541367295,1541367551,1541367807,1541368063,1541368319,1541368575,1541368831,1541369343,1541369599,1541369855,1541370111,1541370367,1541370623,1541370879,1541371135,1541371391,1541371647,1541371903,1541372159,1541372415,1541372671,1541373183,1541373439,1541373695,1541373951,1541374207,1541374463,1541374719,1541374975,1541375231,1541375487,1541375999,1541376255,1541376767,1541377023,1541377279,1541377535,1541377791,1541378047,1541378303,1541378559,1541378815,1541379071,1541379327,1541379583,1541379839,1541380095,1541380351,1541380607,1541380863,1541381119,1541381375,1541381631,1541381887,1541382143,1541382399,1541382655,1541382911,1541383167,1541383423,1541383679,1541383935,1541384447,1541384703,1541384959,1541385215,1541385471,1541385727,1541385983,1541386239,1541386495,1541386751,1541387007,1541387263,1541387519,1541387775,1541388031,1541388287,1541388543,1541388799,1541389055,1541389311,1541389567,1541389823,1541390079,1541390335,1541390591,1541390847,1541391103,1541391359,1541391615,1541391871,1541392127,1541392383,1541392639,1541392895,1541393151,1541393407,1541393663,1541393919,1541394175,1541394431,1541394687,1541394943,1541395199,1541395455,1541395711,1541395967,1541396223,1541396479,1541396735,1541396991,1541397247,1541397503,1541397759,1541398015,1541398271,1541398527,1541398783,1541399039,1541399295,1541399551,1541400063,1541400319,1541400831,1541401087,1541401343,1541401599,1541401855,1541402111,1541402367,1541402623,1541402879,1541403135,1541403391,1541403647,1541403903,1541404159,1541404415,1541404671,1541404927,1541405183,1541405439,1541405951,1541406207,1541406463,1541406719,1541407231,1541407743,1541408255,1541408767,1541409791,1541410303,1541410815,1541411071,1541411839,1541412351,1541413375,1541413887,1541414399,1541414911,1541415935,1541416447,1541416959,1541417215,1541417471,1541417983,1541418495,1541419007,1541419519,1541420031,1541420543,1541421055,1541421567,1541422079,1541422591,1541423103,1541423615,1541424127,1541424639,1541425151,1541425663,1541426175,1541426687,1541427199,1541428223,1541428735,1541429247,1541429759,1541430271,1541430783,1541431295,1541431807,1541432319,1541432831,1541433343,1541433855,1541434367,1541434879,1541435391,1541435903,1541436415,1541437951,1541438463,1541439487,1541439999,1541441023,1541441535,1541442815,1541443071,1541444607,1541445119,1541445631,1541446143,1541446655,1541447167,1541447679,1541448191,1541448703,1541448959,1541449215,1541449727,1541450239,1541450495,1541450751,1541451263,1541451775,1541452287,1541452799,1541453311,1541453823,1541454335,1541454847,1541455359,1541455871,1541456383,1541456895,1541457919,1541458943,1541460479,1541460991,1541461247,1541461503,1541462527,1541463039,1541463551,1541464063,1541464575,1541465087,1541465599,1541466111,1541467135,1541467647,1541468159,1541468671,1541469183,1541470207,1541470719,1541471231,1541471743,1541472255,1541472511,1541472767,1541473023,1541473279,1541474303,1541475327,1541475839,1541476095,1541476351,1541477375,1541478911,1541479167,1541479423,1541480447,1541481471,1541482495,1541482751,1541483007,1541483519,1541485567,1541486591,1541487615,1541488639,1541489663,1541490687,1541492735,1541493759,1541494783,1541495807,1541496831,1541497855,1541498879,1541499903,1541500927,1541501951,1541503999,1541504255,1541504511,1541505023,1541506047,1541507071,1541510143,1541512191,1541513215,1541517311,1541518335,1541519359,1541521407,1541522431,1541524479,1541525503,1541527807,1541528063,1541528575,1541529599,1541529855,1541530111,1541530623,1541532671,1541533695,1541534719,1541535743,1541536255,1541536767,1541537791,1541538047,1541538303,1541538815,1541539327,1541539839,1541540351,1541540863,1541541375,1541541887,1541542399,1541542911,1541543423,1541543935,1541544447,1541544959,1541545471,1541545983,1541546495,1541547007,1541547519,1541548031,1541548543,1541549567,1541550079,1541550591,1541551103,1541552127,1541552383,1541552639,1541552895,1541553151,1541555199,1541556223,1541556479,1541556735,1541557247,1541557503,1541557759,1541558015,1541558271,1541559295,1541560319,1541561343,1541562367,1541562623,1541562879,1541563135,1541563391,1541564415,1541565439,1541565951,1541566463,1541567487,1541567743,1541567999,1541568511,1541569535,1541570559,1541574655,1541575167,1541575423,1541575679,1541577727,1541578751,1541579007,1541579263,1541579775,1541580799,1541581311,1541581567,1541582847,1541583359,1541583615,1541583871,1541584127,1541584383,1541584895,1541585151,1541585663,1541585919,1541586431,1541587199,1541587455,1541588991,1541589247,1541589503,1541590015,1541590527,1541590783,1541591039,1541592063,1541592575,1541593087,1541594111,1541594367,1541594623,1541595135,1541595647,1541595903,1541596159,1541597695,1541597951,1541598207,1541599231,1541600255,1541600511,1541600767,1541601023,1541601279,1541601791,1541602047,1541602303,1541603327,1541604351,1541605119,1541605375,1541606911,1541607423,1541608447,1541608703,1541608959,1541609215,1541609471,1541609983,1541610239,1541610495,1541611775,1541612031,1541612543,1541613567,1541614079,1541614335,1541614591,1541615615,1541615871,1541616127,1541617407,1541617663,1541619199,1541619455,1541620735,1541620991,1541621247,1541621759,1541622271,1541622527,1541622783,1541623039,1541623295,1541623551,1541623807,1541624831,1541625855,1541626367,1541626623,1541627903,1541628415,1541628927,1541629183,1541629439,1541630975,1541631231,1541631487,1541631999,1541632511,1541632767,1541634303,1541634559,1541635071,1541636095,1541636863,1541637119,1541637631,1541638143,1541638399,1541638655,1541639167,1541640191,1541641215,1541641727,1541642239,1541643263,1541644287,1541645311,1541645823,1541646079,1541646335,1541646591,1541646847,1541647359,1541648383,1541648639,1541648895,1541649151,1541649407,1541650431,1541650687,1541650943,1541651199,1541651455,1541652479,1541652735,1541652991,1541653247,1541653503,1541654015,1541654271,1541655551,1541656063,1541656575,1541656831,1541657087,1541657599,1541659647,1541660671,1541661695,1541661951,1541662207,1541662719,1541663743,1541665279,1541666047,1541666303,1541666815,1541667839,1541668095,1541668351,1541668607,1541668863,1541670911,1541671423,1541671679,1541671935,1541672191,1541672447,1541672959,1541674495,1541675007,1541675519,1541676031,1541676287,1541676543,1541677055,1541678079,1541678591,1541678847,1541679103,1541679615,1541680127,1541681151,1541682175,1541682687,1541683199,1541683455,1541683711,1541684223,1541684735,1541686271,1541687295,1541688319,1541688831,1541689343,1541690367,1541691391,1541691647,1541691903,1541692159,1541692415,1541693439,1541694463,1541694719,1541694975,1541695487,1541696511,1541697535,1541698047,1541698303,1541698559,1541699327,1541699583,1541700095,1541700607,1541700863,1541701119,1541701631,1541702655,1541703167,1541703423,1541703679,1541704703,1541705983,1541706239,1541706751,1541707007,1541707263,1541707519,1541707775,1541708799,1541709823,1541710079,1541710335,1541710847,1541711871,1541712127,1541712383,1541713919,1541714175,1541716223,1541716479,1541716735,1541716991,1541717247,1541717503,1541718015,1541718271,1541719039,1541720063,1541720575,1541720831,1541721087,1541721343,1541721599,1541721855,1541722111,1541723135,1541723647,1541723903,1541724159,1541724415,1541725183,1541726975,1541727231,1541727487,1541727743,1541727999,1541728255,1541729023,1541729279,1541729535,1541729791,1541730303,1541730815,1541731071,1541731327,1541731839,1541732351,1541732607,1541732863,1541733119,1541733375,1541734143,1541734399,1541734911,1541735167,1541735423,1541735679,1541735935,1541736191,1541736447,1541737471,1541738495,1541739007,1541739519,1541739775,1541740031,1541740287,1541740543,1541740799,1541741055,1541741567,1541742079,1541742335,1541742591,1541743103,1541743615,1541744639,1541745663,1541746175,1541746687,1541746943,1541747199,1541747711,1541748735,1541748991,1541749247,1541749503,1541749759,1541750783,1541751295,1541751807,1541752831,1541753087,1541753343,1541753855,1541754879,1541755903,1541757439,1541757951,1541758207,1541758463,1541758719,1541758975,1541760255,1541760511,1541761023,1541761535,1541762047,1541763071,1541763327,1541763583,1541763839,1541764095,1541764607,1541764863,1541765119,1541766143,1541767167,1541767679,1541768191,1541768703,1541769215,1541769471,1541770239,1541770495,1541770751,1541771263,1541771775,1541772031,1541772287,1541773311,1541773823,1541774079,1541774335,1541775103,1541775359,1541776895,1541777151,1541777407,1541778431,1541778687,1541779455,1541779967,1541780479,1541780735,1541780991,1541781247,1541781503,1541781759,1541782015,1541782271,1541782527,1541782783,1541783551,1541783807,1541784063,1541784575,1541785855,1541786111,1541786623,1541787647,1541788159,1541788415,1541788671,1541788927,1541789183,1541789695,1541790719,1541790975,1541791231,1541791743,1541791999,1541792255,1541792511,1541792767,1541793279,1541793791,1541794047,1541794815,1541795071,1541795327,1541795583,1541795839,1541796863,1541797375,1541797631,1541797887,1541798143,1541798911,1541799935,1541800447,1541800959,1541801471,1541801983,1541802495,1541803007,1541804031,1541804287,1541804543,1541805567,1541805823,1541806079,1541806335,1541806591,1541806847,1541807103,1541808127,1541808383,1541809151,1541809663,1541810175,1541810431,1541810687,1541811199,1541811711,1541811967,1541812223,1541812479,1541812735,1541812991,1541813247,1541814015,1541814783,1541815295,1541816319,1541816575,1541816831,1541817343,1541818367,1541818623,1541818879,1541819903,1541820159,1541820415,1541820671,1541820927,1541821183,1541821439,1541821695,1541821951,1541822975,1541823231,1541823487,1541823999,1541824511,1541824767,1541825023,1541825535,1541826047,1541826559,1541827071,1541827327,1541827583,1541828095,1541828351,1541828607,1541830911,1541831167,1541831423,1541831679,1541832191,1541833983,1541834239,1541834495,1541835775,1541836287,1541836799,1541837055,1541837311,1541837567,1541837823,1541838079,1541838335,1541839871,1541840383,1541840639,1541840895,1541841407,1541842943,1541843455,1541843967,1541844991,1541846015,1541846271,1541846527,1541846783,1541847039,1541848063,1541848319,1541848575,1541849087,1541850111,1541850623,1541851135,1541852671,1541853183,1541854207,1541854463,1541854719,1541854975,1541855231,1541855487,1541855743,1541855999,1541856255,1541856511,1541857279,1541857535,1541857791,1541858815,1541859327,1541859583,1541859839,1541860095,1541860351,1541860607,1541860863,1541861119,1541861375,1541861887,1541862143,1541862399,1541862911,1541863167,1541863423,1541863679,1541863935,1541864191,1541864959,1541865471,1541865727,1541865983,1541866239,1541866495,1541867263,1541867519,1541867775,1541868031,1541868287,1541868543,1541869567,1541870079,1541871103,1541871359,1541872639,1541873663,1541874175,1541874687,1541875711,1541876735,1541877247,1541877503,1541877759,1541878783,1541879295,1541879807,1541880831,1541881343,1541881599,1541881855,1541882367,1541882879,1541883135,1541883391,1541884927,1541885951,1541886975,1541887999,1541888255,1541888511,1541889023,1541889535,1541890303,1541890559,1541891071,1541893119,1541893631,1541894143,1541895167,1541897727,1541897983,1541898239,1541900799,1541901055,1541901311,1541901567,1541901823,1541902335,1541902847,1541903103,1541903359,1541904383,1541904639,1541904895,1541905407,1541905663,1541905919,1541906431,1541906687,1541907455,1541908479,1541908991,1541909247,1541909503,1541910015,1541910527,1541911039,1541911295,1541911551,1541911807,1541912319,1541912575,1541912831,1541913087,1541913343,1541913599,1541913855,1541914111,1541914367,1541914623,1541915647,1541916671,1541917695,1541917951,1541918207,1541918463,1541919743,1541919999,1541920767,1541921279,1541921791,1541922047,1541922303,1541922559,1541922815,1541923327,1541923583,1541923839,1541924095,1541924351,1541924863,1541925119,1541926911,1541927167,1541927679,1541927935,1541929983,1541931007,1541932031,1541932543,1541933055,1541934079,1541935103,1541935615,1541935871,1541936127,1541936383,1541936639,1541937151,1541937663,1541937919,1541938175,1541939199,1541939711,1541939967,1541940223,1541940479,1541940735,1541940991,1541941247,1541942271,1541944831,1541945087,1541945343,1541946111,1541946879,1541947391,1541948927,1541949183,1541949439,1541950463,1541951487,1541951743,1541951999,1541952255,1541952511,1541953535,1541954047,1541954559,1541955583,1541956095,1541956351,1541956607,1541957119,1541957375,1541957631,1541957887,1541958143,1541958655,1541959679,1541959935,1541960191,1541960703,1541962751,1541963263,1541963519,1541963775,1541964031,1541964287,1541964543,1541965823,1541966847,1541967871,1541968895,1541969919,1541970175,1541970431,1541971199,1541971967,1541972479,1541972735,1541972991,1541974015,1541975551,1541975807,1541976319,1541977087,1541977343,1541977599,1541977855,1541978111,1541978623,1541978879,1541979135,1541979647,1541981183,1541981695,1541981951,1541982207,1541982719,1541984255,1541984511,1541984767,1541985279,1541986303,1541986815,1541988351,1541988607,1541988863,1541989375,1541989631,1541989887,1541990399,1541990911,1541991167,1541991423,1541991935,1541992191,1541992447,1541992959,1541993215,1541994239,1541994495,1541994751,1541995519,1541996031,1541997055,1541997567,1541997823,1541998079,1541998335,1541998591,1541999615,1542000127,1542000383,1542000639,1542000895,1542001151,1542001663,1542001919,1542002175,1542002687,1542002943,1542003199,1542003711,1542004735,1542004991,1542005247,1542005503,1542005759,1542006271,1542006783,1542008831,1542009343,1542009599,1542009855,1542010367,1542010623,1542010879,1542011903,1542012159,1542012415,1542012927,1542013183,1542013439,1542013695,1542013951,1542014207,1542017023,1542017279,1542017535,1542017791,1542018047,1542019071,1542019327,1542019583,1542020095,1542021119,1542023167,1542023423,1542023679,1542023935,1542024191,1542025215,1542026239,1542026751,1542027007,1542027263,1542027519,1542027775,1542028031,1542028287,1542028543,1542028799,1542029055,1542029311,1542029823,1542030335,1542031359,1542032383,1542032639,1542032895,1542033407,1542034943,1542035199,1542036479,1542038271,1542038527,1542040575,1542041087,1542041343,1542041599,1542042623,1542043135,1542043391,1542043647,1542044671,1542045183,1542045439,1542045695,1542045951,1542046719,1542047231,1542047487,1542047743,1542047999,1542048255,1542048767,1542049279,1542049791,1542050815,1542051327,1542051839,1542053887,1542054399,1542054655,1542054911,1542055423,1542055935,1542057471,1542060031,1542060287,1542060543,1542061055,1542062079,1542064127,1542064383,1542064639,1542064895,1542065151,1542066175,1542066431,1542066687,1542067199,1542067455,1542067711,1542067967,1542068223,1542069759,1542070015,1542071295,1542071551,1542071807,1542072319,1542073343,1542073855,1542074111,1542074367,1542074623,1542074879,1542075391,1542075647,1542075903,1542076159,1542077439,1542078975,1542079487,1542080511,1542082559,1542083583,1542084607,1542085631,1542086655,1542087423,1542087679,1542088703,1542089727,1542090751,1542091775,1542092799,1542093311,1542093823,1542095871,1542096895,1542098431,1542099199,1542099455,1542099711,1542099967,1542100223,1542100479,1542100735,1542100991,1542102015,1542103039,1542103295,1542103551,1542104063,1542105087,1542105599,1542105855,1542106111,1542107135,1542107391,1542107903,1542108159,1542109183,1542109695,1542110207,1542110463,1542110719,1542111231,1542111487,1542111743,1542112255,1542112767,1542113279,1542113535,1542113791,1542114047,1542114303,1542114815,1542115071,1542115327,1542115839,1542116351,1542116607,1542116863,1542117119,1542117375,1542117631,1542117887,1542118399,1542118655,1542119423,1542119935,1542120447,1542120703,1542120959,1542121471,1542121727,1542121983,1542122239,1542122495,1542122751,1542123007,1542123263,1542123519,1542123775,1542124543,1542124799,1542125567,1542126591,1542127103,1542127359,1542127615,1542128127,1542128383,1542129151,1542129407,1542129663,1542130687,1542131711,1542134271,1542136319,1542136831,1542137855,1542138367,1542138623,1542138879,1542139135,1542139391,1542139647,1542139903,1542140927,1542141951,1542142975,1542143999,1542144255,1542144511,1542144767,1542146047,1542147071,1542147583,1542148095,1542148607,1542148863,1542149119,1542152191,1542153215,1542153471,1542153727,1542153983,1542154239,1542154751,1542155007,1542155263,1542156287,1542156543,1542156799,1542157311,1542157567,1542157823,1542158079,1542158335,1542158847,1542159103,1542159359,1542160127,1542160383,1542160895,1542161407,1542162943,1542163199,1542163455,1542163711,1542163967,1542164479,1542165759,1542166015,1542166527,1542167551,1542168063,1542168319,1542168575,1542169599,1542169855,1542170623,1542170879,1542171135,1542171391,1542171647,1542172159,1542172415,1542172671,1542173695,1542174207,1542174463,1542174719,1542176767,1542177791,1542178047,1542178815,1542179327,1542179583,1542179839,1542180095,1542180351,1542180607,1542180863,1542181887,1542182143,1542182399,1542182655,1542182911,1542183935,1542184447,1542184959,1542185983,1542187007,1542187263,1542187519,1542187775,1542188031,1542188287,1542188543,1542189055,1542189311,1542189567,1542189823,1542190079,1542191103,1542192127,1542193407,1542193663,1542194175,1542195711,1542196479,1542196735,1542197247,1542197503,1542198015,1542198271,1542198783,1542199551,1542199807,1542200319,1542200575,1542201343,1542202367,1542202623,1542202879,1542203391,1542204415,1542204671,1542204927,1542205439,1542206463,1542207487,1542207743,1542207999,1542208255,1542208511,1542209535,1542210559,1542211583,1542212095,1542212351,1542212863,1542213119,1542213375,1542214143,1542214399,1542214655,1542215679,1542216703,1542217727,1542218751,1542220031,1542220287,1542220799,1542222335,1542222591,1542222847,1542223103,1542223359,1542223871,1542224383,1542224639,1542224895,1542225151,1542225407,1542225919,1542227455,1542228223,1542228479,1542228991,1542230015,1542231039,1542232063,1542232319,1542232575,1542234111,1542234367,1542234623,1542234879,1542235135,1542236159,1542236671,1542236927,1542237183,1542238207,1542239743,1542239999,1542240255,1542240767,1542241023,1542241279,1542241535,1542241791,1542242303,1542243071,1542243327,1542244607,1542244863,1542245375,1542245887,1542246143,1542246911,1542247423,1542247679,1542247935,1542248447,1542249471,1542249727,1542249983,1542250239,1542250495,1542251519,1542251775,1542252031,1542252287,1542252543,1542253055,1542253567,1542253823,1542254079,1542254335,1542254591,1542255615,1542256127,1542256639,1542257663,1542258175,1542258687,1542259711,1542262783,1542263295,1542263807,1542264063,1542264831,1542265855,1542266879,1542267135,1542267391,1542267903,1542268159,1542268415,1542268927,1542269439,1542269695,1542269951,1542271231,1542271487,1542271743,1542271999,1542272255,1542273023,1542274047,1542275071,1542275327,1542275583,1542276095,1542277631,1542278143,1542278399,1542278655,1542278911,1542279679,1542280191,1542280959,1542281215,1542281727,1542281983,1542282239,1542282495,1542282751,1542283007,1542283263,1542283519,1542283775,1542284287,1542284799,1542285311,1542285567,1542285823,1542286079,1542286335,1542286591,1542286847,1542287359,1542287871,1542288639,1542288895,1542289151,1542289407,1542290431,1542290687,1542291711,1542291967,1542292479,1542293503,1542294527,1542295039,1542295295,1542295551,1542296831,1542297087,1542297343,1542297599,1542297855,1542298111,1542300159,1542300415,1542301695,1542302463,1542303231,1542303743,1542303999,1542304255,1542305279,1542305535,1542305791,1542306047,1542306303,1542307327,1542307583,1542307839,1542308095,1542308351,1542308863,1542309119,1542309375,1542309631,1542311935,1542312191,1542312447,1542312959,1542313215,1542313471,1542313727,1542313983,1542314495,1542314751,1542315007,1542316031,1542317567,1542317823,1542318079,1542319103,1542320127,1542322175,1542322431,1542322687,1542322943,1542323199,1542323711,1542324479,1542324735,1542325247,1542325503,1542325759,1542326271,1542326527,1542326783,1542327295,1542328319,1542328831,1542329087,1542329343,1542329855,1542330111,1542330367,1542331903,1542332671,1542332927,1542333439,1542333695,1542334207,1542334463,1542334975,1542335487,1542337023,1542337279,1542337535,1542339839,1542340095,1542340351,1542340607,1542342143,1542342399,1542342655,1542343167,1542343679,1542344447,1542345215,1542345471,1542345983,1542346239,1542347775,1542348287,1542348799,1542349823,1542351359,1542351615,1542351871,1542352895,1542353151,1542353407,1542353663,1542353919,1542354943,1542355711,1542355967,1542356479,1542356735,1542357503,1542357759,1542358015,1542358271,1542358527,1542359039,1542360319,1542360575,1542361087,1542361343,1542361599,1542362111,1542362623,1542363135,1542363647,1542364159,1542365183,1542366719,1542367231,1542368255,1542369279,1542369791,1542370303,1542370559,1542370815,1542371839,1542372351,1542373375,1542374399,1542375167,1542375423,1542376191,1542376447,1542376959,1542377215,1542377471,1542377983,1542378495,1542378751,1542379007,1542379519,1542379775,1542380031,1542380287,1542380543,1542380799,1542381055,1542381823,1542382079,1542382335,1542383615,1542384639,1542384895,1542385151,1542385407,1542385663,1542386687,1542387199,1542387711,1542388223,1542388479,1542388735,1542389247,1542389503,1542389759,1542390783,1542391295,1542391807,1542392831,1542393087,1542393343,1542393599,1542393855,1542394879,1542395135,1542395391,1542395903,1542396159,1542396415,1542396927,1542397951,1542398463,1542398975,1542399231,1542399487,1542399999,1542400767,1542401023,1542401535,1542401791,1542402047,1542403071,1542403327,1542403583,1542403839,1542404095,1542404351,1542404607,1542404863,1542405119,1542405375,1542405631,1542405887,1542406143,1542406399,1542406655,1542407167,1542408191,1542408703,1542408959,1542409215,1542411263,1542411519,1542411775,1542412031,1542412287,1542412799,1542413055,1542413311,1542413823,1542414079,1542414335,1542414847,1542415359,1542415615,1542415871,1542416383,1542417407,1542418431,1542418687,1542419455,1542419711,1542419967,1542420223,1542420479,1542420735,1542420991,1542421247,1542421503,1542422015,1542422527,1542422783,1542423039,1542423295,1542424575,1542425599,1542426623,1542426879,1542427135,1542427391,1542427647,1542427903,1542428159,1542428415,1542428671,1542429695,1542429951,1542430207,1542430719,1542431743,1542432767,1542433791,1542434047,1542434303,1542434815,1542435071,1542435327,1542435583,1542435839,1542436863,1542437119,1542437375,1542437631,1542437887,1542438399,1542438911,1542439167,1542439423,1542439679,1542439935,1542440959,1542441983,1542442239,1542442495,1542443007,1542443263,1542443519,1542443775,1542444031,1542444287,1542444543,1542444799,1542445055,1542445567,1542445823,1542446079,1542446591,1542447103,1542447615,1542447871,1542448639,1542448895,1542449151,1542450175,1542450687,1542450943,1542451199,1542451455,1542451711,1542451967,1542452223,1542454271,1542454783,1542455039,1542455295,1542455551,1542455807,1542456319,1542456831,1542457343,1542458367,1542459391,1542459647,1542459903,1542460415,1542460671,1542460927,1542461439,1542461695,1542461951,1542462207,1542462463,1542463487,1542463743,1542463999,1542464255,1542464511,1542464767,1542465023,1542465535,1542466559,1542466815,1542467071,1542467327,1542467583,1542468607,1542469631,1542470655,1542471679,1542471935,1542472191,1542472703,1542472959,1542473215,1542473471,1542473727,1542473983,1542474239,1542474751,1542475007,1542475263,1542475775,1542476799,1542477823,1542478079,1542478335,1542478847,1542479103,1542479359,1542479615,1542479871,1542480895,1542481407,1542481919,1542482431,1542482943,1542483199,1542483455,1542484991,1542485247,1542485503,1542488063,1542488319,1542488575,1542491135,1542492159,1542492415,1542492671,1542493183,1542493439,1542494207,1542494719,1542494975,1542495231,1542496255,1542496767,1542497023,1542497535,1542497791,1542498303,1542499583,1542499839,1542500095,1542500351,1542500607,1542500863,1542501119,1542501375,1542502399,1542502655,1542503423,1542503679,1542503935,1542504447,1542504703,1542504959,1542505215,1542505471,1542506495,1542507007,1542507263,1542507519,1542508543,1542510079,1542510591,1542510847,1542511103,1542511871,1542512127,1542512383,1542512639,1542512895,1542513151,1542513663,1542513919,1542514175,1542514687,1542514943,1542515199,1542515711,1542516223,1542516735,1542516991,1542517247,1542517503,1542517759,1542518015,1542518271,1542518783,1542519807,1542520319,1542520575,1542520831,1542521343,1542521599,1542521855,1542522111,1542522367,1542522879,1542523903,1542524415,1542524927,1542525951,1542526463,1542526719,1542526975,1542527999,1542528255,1542528511,1542528767,1542531583,1542531839,1542532095,1542532351,1542533119,1542534399,1542534655,1542534911,1542535167,1542535423,1542535679,1542536191,1542537215,1542538239,1542538751,1542539007,1542539263,1542540287,1542540799,1542541055,1542541311,1542542335,1542542847,1542543359,1542544383,1542544639,1542544895,1542545407,1542561791,1542563839,1542564095,1542565887,1542566911,1542586367,1542594559,1542597631,1542598143,1542599679,1542600703,1542602751,1542603775,1542604287,1542605823,1542607103,1542607359,1542607615,1542607871,1542611967,1542612479,1542612735,1542612991,1542613247,1542613503,1542613759,1542615039,1542619135,1542619903,1542621183,1542627327,1542627583,1542627839,1542628095,1542628351,1542630399,1542630655,1542630911,1542631423,1542635519,1542637567,1542639615,1542640639,1542640895,1542641151,1542641407,1542641663,1542641919,1542642175,1542642431,1542642687,1542643199,1542643711,1542643967,1542644223,1542644479,1542644735,1542644991,1542645247,1542645503,1542645759,1542646271,1542646527,1542646783,1542647039,1542647295,1542647551,1542647807,1542648063,1542648319,1542648575,1542648831,1542649087,1542649343,1542649599,1542649855,1542650111,1542650367,1542650623,1542650879,1542651135,1542651391,1542651903,1542660095,1542660607,1542660863,1542661119,1542662143,1542662399,1542662911,1542663167,1542664191,1542664703,1542664959,1542665215,1542666239,1542667263,1542668287,1542668799,1542669311,1542669567,1542669823,1542670079,1542670335,1542670847,1542671359,1542671871,1542672383,1542672639,1542672895,1542673663,1542673919,1542674175,1542674431,1542676479,1542681087,1542681343,1542681599,1542681855,1542682111,1542682367,1542682623,1542683135,1542683391,1542683647,1542684159,1542684671,1542692863,1542696959,1542697215,1542697471,1542697727,1542697983,1542699007,1542700031,1542700287,1542700543,1542700799,1542701055,1542709247,1542717439,1542733823,1542734847,1542735103,1542735359,1542735871,1542742015,1542746111,1542747135,1542747391,1542747647,1542748159,1542749183,1542749439,1542749695,1542749951,1542750207,1542763519,1542763775,1542764031,1542764287,1542764543,1542766591,1542767871,1542768127,1542768383,1542768639,1542769663,1542770687,1542774783,1542775039,1542775295,1542775807,1542776063,1542776319,1542776831,1542777855,1542778367,1542778623,1542778879,1542780159,1542780415,1542780671,1542780927,1542781951,1542782975,1542791167,1542801407,1542803455,1542805503,1542806015,1542806527,1542807551,1542815743,1542823935,1542828031,1542831103,1542832127,1542832383,1542832639,1542832895,1542833151,1542834175,1542836223,1542836479,1542836735,1542837247,1542837503,1542837759,1542838015,1542838271,1542838783,1542839039,1542839295,1542839551,1542839807,1542840063,1542840319,1542840831,1542841087,1542841343,1542842367,1542842879,1542843135,1542843391,1542843647,1542843903,1542844159,1542844415,1542845439,1542846463,1542847487,1542847743,1542847999,1542848255,1542848511,1542849535,1542850559,1542851583,1542851839,1542852095,1542852351,1542852607,1542855167,1542856191,1542856447,1542856703,1542856959,1542857215,1542857471,1542857727,1542858239,1542858495,1542858751,1542859263,1542859519,1542859775,1542860031,1542860287,1542860543,1542860799,1542861055,1542861311,1542861567,1542861823,1542862079,1542862591,1542862847,1542863103,1542863871,1542864127,1542864383,1542864639,1542864895,1542868991,1542875135,1542877183,1542881279,1542889471,1542891519,1542892543,1542893567,1542896639,1542897151,1542897407,1542897663,1542898687,1542899711,1542899967,1542900223,1542900479,1542900735,1542901759,1542903807,1542904063,1542904319,1542904575,1542904831,1542905855,1542914047,1542923263,1542923775,1542924031,1542924287,1542927359,1542928383,1542930431,1542930943,1542931455,1542932479,1542932735,1542932991,1542933247,1542933503,1542933759,1542934015,1542934271,1542934527,1542938623,1542950911,1542951423,1542951935,1542955007,1542955263,1542955775,1542956031,1542956287,1542957055,1542957311,1542957823,1542958079,1542958335,1542958591,1542958847,1542959103,1542959359,1542959615,1542959871,1542960127,1542960383,1542960639,1542961151,1542961407,1542961663,1542961919,1542962175,1542962431,1542962687,1542962943,1542963199,1542970623,1542970879,1542971391,1542972415,1542973439,1542975487,1542977535,1542978559,1542978815,1542979071,1542979583,1543110655,1543127039,1543131135,1543134207,1543135231,1543137279,1543139327,1543141375,1543143423,1543159807,1543167999,1543172095,1543172351,1543172607,1543172863,1543173119,1543173375,1543173631,1543174143,1543174399,1543174655,1543175423,1543175679,1543176191,1543241727,1543503871,1545601023,1545674495,1545674751,1545863167,1545895935,1545928703,1545961471,1545995519,1545995775,1545996287,1545999359,1545999871,1546000383,1546001407,1546002431,1546002943,1546003199,1546003455,1546003967,1546004223,1546004479,1546004735,1546004991,1546006527,1546007039,1546008575,1546014719,1546015743,1546016255,1546018047,1546018303,1546018559,1546018815,1546027007,1546028031,1546028543,1546029055,1546030079,1546030335,1546030591,1546030847,1546031359,1546031615,1546032127,1546032639,1546033151,1546033663,1546034175,1546034431,1546034687,1546034943,1546035199,1546035711,1546036223,1546037247,1546038015,1546038271,1546038527,1546038783,1546039295,1546039807,1546040063,1546040319,1546040831,1546041343,1546041599,1546041855,1546042367,1546047487,1546048511,1546055679,1546056191,1546059775,1546063871,1546067967,1546072063,1546074111,1546075135,1546076159,1546080255,1546084351,1546088447,1546088959,1546089471,1546089727,1546090239,1546091263,1546092543,1546096639,1546100735,1546104831,1546108927,1546113023,1546121215,1546125311,1546256383,1546256639,1546256895,1546257151,1546257407,1546257663,1546257919,1546258175,1546258431,1546260479,1546261503,1546262527,1546264575,1546266623,1546267647,1546268671,1546270719,1546272767,1546274815,1546276863,1546278911,1546280959,1546281215,1546281471,1546281727,1546281983,1546282239,1546282495,1546282751,1546283007,1546285055,1546287103,1546289151,1546291199,1546292479,1546292735,1546293247,1546295295,1546297343,1546299391,1546301439,1546303487,1546305535,1546307583,1546311679,1546313727,1546315775,1546317823,1546318335,1546319871,1546321919,1546323967,1546324991,1546325503,1546326015,1546328063,1546330111,1546332159,1546333439,1546333695,1546333951,1546334207,1546335231,1546335743,1546335999,1546336255,1546338303,1546340351,1546342399,1546343423,1546344447,1546346495,1546348543,1546350591,1546352639,1546354687,1546356735,1546358783,1546360831,1546362879,1546363903,1546364415,1546364927,1546366975,1546369023,1546371071,1546373119,1546375167,1546377215,1546379263,1546381311,1546383359,1546385407,1546387455,1546518527,1546649599,1546665983,1546682367,1546698751,1546715135,1546731519,1546747903,1546764287,1546780671,1546784255,1546797055,1546813439,1546846719,1546846975,1546854399,1546855423,1546855935,1546856447,1546857471,1546858495,1546860543,1546862591,1546878975,1546885119,1546887167,1546889215,1546894591,1546894847,1546895359,1546911743,1546928127,1546944511,1546960895,1546966527,1546966783,1546977279,1546993663,1547010047,1547018239,1547019263,1547020287,1547021311,1547022335,1547023359,1547026431,1547034623,1547036671,1547038719,1547040767,1547042815,1547059199,1547075583,1547091967,1547108351,1547124735,1547141119,1547149311,1547157503,1547173887,1547436031,1547440127,1547444223,1547444991,1547445247,1547446271,1547447039,1547447295,1547448319,1547452415,1547453951,1547454207,1547454463,1547454975,1547455487,1547456511,1547460607,1547468799,1547472895,1547476991,1547481087,1547485183,1547489279,1547493375,1547497471,1547500031,1547500287,1547501311,1547501567,1547505663,1547509759,1547513855,1547517951,1547518207,1547518463,1547519487,1547519743,1547519999,1547522047,1547526143,1547526399,1547526655,1547527679,1547527935,1547528191,1547528447,1547528703,1547528959,1547529215,1547529471,1547529727,1547529983,1547530239,1547534335,1547538431,1547542527,1547546623,1547550719,1547554815,1547558911,1547560447,1547560703,1547561983,1547562239,1547563007,1547567103,1547571199,1547575295,1547579391,1547583487,1547587583,1547591679,1547595775,1547596799,1547597823,1547598079,1547598335,1547598591,1547598847,1547599871,1547603967,1547608063,1547612159,1547616255,1547620351,1547620607,1547620863,1547621375,1547622911,1547623167,1547624447,1547628543,1547632639,1547636735,1547640831,1547644927,1547649023,1547653119,1547657215,1547661311,1547665407,1547669503,1547673599,1547677695,1547678719,1547678975,1547679231,1547679743,1547682815,1547683071,1547683327,1547684863,1547685887,1547689983,1547694079,1547698175,1548156927,1548157951,1548158207,1548159487,1548159999,1548160767,1548161279,1548161791,1548162815,1548163327,1548163583,1548172799,1548173311,1548206079,1548222463,1548746751,1549271039,1549795327,1550057471,1550188543,1550319615,1550581759,1550843903,1550974975,1550975231,1550975487,1550975999,1550976255,1550976511,1550976767,1550977023,1550979071,1550983167,1550983423,1550983679,1550983935,1550984191,1550984447,1550985215,1550985471,1550986239,1550987263,1550988287,1550988543,1550988799,1550989055,1550989311,1550990335,1550991359,1550995455,1550995711,1550995967,1550996223,1550996479,1550996991,1550997503,1550998527,1550998783,1550999551,1551000063,1551000319,1551000575,1551001599,1551002367,1551002623,1551002879,1551003391,1551007743,1551106047,1551237119,1551238143,1551239167,1551239679,1551239935,1551240191,1551241215,1551241727,1551242239,1551242751,1551243007,1551243263,1551244287,1551245311,1551246335,1551246591,1551246847,1551247359,1551248383,1551248639,1551248895,1551249151,1551252479,1551252991,1551253247,1551253503,1551254527,1551254783,1551255039,1551255295,1551255551,1551256575,1551257599,1551258623,1551259647,1551260415,1551260671,1551261695,1551262719,1551263743,1551264767,1551265023,1551265279,1551265535,1551265791,1551266047,1551266559,1551266815,1551267839,1551268863,1551269887,1551270911,1551271935,1551272959,1551273983,1551275007,1551275263,1551275519,1551275775,1551276031,1551277055,1551278079,1551278335,1551278591,1551279103,1551280127,1551280383,1551280639,1551280895,1551281151,1551282175,1551283199,1551284223,1551284479,1551284735,1551284991,1551285247,1551285503,1551285759,1551286015,1551286271,1551287295,1551289343,1551289599,1551289855,1551290111,1551290367,1551291391,1551292415,1551293439,1551294463,1551295487,1551295743,1551297279,1551297535,1551297791,1551298559,1551299583,1551300607,1551303679,1551305727,1551306751,1551307775,1551308799,1551309823,1551310847,1551311103,1551311359,1551312127,1551312383,1551312639,1551312895,1551313919,1551314175,1551314431,1551314687,1551314943,1551315967,1551316991,1551317247,1551317503,1551317759,1551318015,1551319039,1551320063,1551321087,1551322111,1551323135,1551324159,1551326207,1551327231,1551328255,1551329023,1551329279,1551330303,1551331327,1551332351,1551333375,1551334399,1551335423,1551335679,1551335935,1551336191,1551336447,1551337471,1551338495,1551339519,1551340543,1551340799,1551341055,1551341567,1551342591,1551342847,1551343103,1551343359,1551343871,1551344127,1551344383,1551344639,1551345663,1551346687,1551347967,1551348223,1551348479,1551348735,1551348991,1551349247,1551349503,1551349759,1551350015,1551350271,1551350783,1551351807,1551352063,1551352831,1551353343,1551353599,1551353855,1551354367,1551354879,1551355903,1551356927,1551357183,1551357439,1551357695,1551357951,1551358975,1551359999,1551361023,1551361279,1551361535,1551361791,1551362047,1551363071,1551364095,1551365119,1551366143,1551367167,1551368191,1551368703,1551369215,1551369727,1551450111,1551452159,1551454207,1551456255,1551499263,1551502335,1551503359,1551504383,1551506431,1551507455,1551509503,1551510527,1551511551,1551511807,1551513087,1551513343,1551513599,1551514623,1551515647,1551516671,1551517695,1551518719,1551519743,1551520767,1551521791,1551522815,1551523071,1551523327,1551523583,1551523839,1551524863,1551525119,1551525375,1551525887,1551526911,1551527935,1551528191,1551528447,1551528959,1551529983,1551530495,1551530751,1551531007,1551531519,1551531775,1551532031,1551536127,1551537151,1551538175,1551538431,1551538687,1551538943,1551539199,1551539711,1551540223,1551541247,1551544319,1551545343,1551545855,1551546111,1551546367,1551546879,1551547135,1551547391,1551547647,1551547903,1551548159,1551548415,1551548927,1551549183,1551550463,1551550719,1551551487,1551551999,1551552255,1551552511,1551553279,1551553535,1551554559,1551555583,1551556095,1551556863,1551557119,1551558655,1551560703,1551560959,1551561215,1551561727,1551562239,1551563775,1551564799,1551567615,1551567871,1551568383,1551568639,1551568895,1551570943,1551571455,1551571711,1551571967,1551572991,1551574015,1551575039,1551576063,1551577343,1551579135,1551580159,1551582463,1551582719,1551582975,1551583231,1551583743,1551583999,1551584511,1551584767,1551585279,1551586303,1551587327,1551588351,1551588863,1551589375,1551590655,1551590911,1551591423,1551591935,1551592191,1551592447,1551593471,1551594495,1551595007,1551595775,1551596031,1551596287,1551596543,1551597567,1551598079,1551598591,1551598847,1551599103,1551599615,1551600639,1551601663,1551601919,1551602175,1551602431,1551602687,1551603711,1551604735,1551605759,1551606783,1551607807,1551608831,1551609855,1551610879,1551611391,1551611647,1551611903,1551612927,1551613183,1551613439,1551614975,1551615999,1551617023,1551618047,1551619071,1551620095,1551621119,1551626239,1551627263,1551627519,1551627775,1551628287,1551629055,1551629311,1551630335,1551892479,1552023807,1552025087,1552025343,1552033535,1552033791,1552034815,1552035071,1552043007,1552043263,1552045311,1552045567,1552048895,1552049151,1552049663,1552049919,1552051199,1552051455,1552061183,1552061439,1552063487,1552063743,1552067839,1552068095,1552080127,1552080639,1552084991,1552085247,1552089087,1552809983,1552815871,1552816127,1552826111,1552826367,1552842751,1552845567,1552845823,1552846335,1552846591,1552850431,1552850687,1552853247,1552853503,1552855807,1552856063,1552856831,1552857087,1552865023,1552865279,1552867327,1552941055,1552946943,1552947199,1552947455,1552947711,1552948991,1552949247,1552961535,1552961791,1552966143,1552966399,1552968447,1552968703,1552979711,1552980223,1552980991,1552981247,1552981503,1552981759,1552986879,1552987135,1552991999,1552992255,1552995327,1552995583,1552997119,1552997375,1553006591,1554776063,1554841599,1555038207,1555234815,1555300351,1555333119,1555349503,1555365887,1555406847,1555628031,1555824639,1555890175,1556086783,1556676607,1556742143,1556873215,1556877311,1556883455,1556884479,1556885503,1556891647,1556893695,1556895743,1556897791,1556899839,1556901887,1556902143,1556905983,1556910079,1556914175,1556922367,1556926463,1556946943,1556948991,1556950015,1556951039,1556959231,1556961279,1556977663,1556979711,1556987903,1556991999,1556995071,1556996095,1557004287,1557069823,1557135359,1557921791,1558052863,1558054399,1558054655,1558060799,1558061055,1558061311,1558087935,1558088191,1558094591,1558094847,1558095359,1558095615,1558097919,1558098175,1558098687,1558098943,1558118399,1558118655,1558118911,1558119167,1558119423,1558120191,1558120447,1558120959,1558121727,1558121983,1558122239,1558122495,1558123007,1558123263,1558125567,1558126079,1558126335,1558126591,1558127871,1558128127,1558128383,1558128895,1558129151,1558129407,1558129663,1558129919,1558130175,1558130431,1558130687,1558130943,1558131199,1558131711,1558131967,1558132223,1558132479,1558132735,1558133247,1558133759,1558134015,1558134271,1558134527,1558134783,1558135295,1558135551,1558135807,1558136831,1558137087,1558137343,1558137855,1558138111,1558138367,1558138623,1558138879,1558139135,1558139391,1558139903,1558140159,1558140671,1558140927,1558141439,1558141695,1558141951,1558142207,1558142463,1558142719,1558142975,1558143743,1558143999,1558144255,1558144767,1558145023,1558145535,1558145791,1558146047,1558147071,1558147583,1558148095,1558148607,1558149375,1558149631,1558150143,1558150655,1558151167,1558183935,1558708223,1558904831,1558921215,1558929407,1558933503,1558937599,1558970367,1559240703,1559248895,1559257087,1559265279,1559269375,1559270399,1559270655,1559270911,1559271167,1559271423,1559273471,1559281663,1559283711,1559283967,1559284223,1559284735,1559284991,1559285247,1559285759,1559287295,1559287551,1559287807,1559288063,1559288319,1559289855,1559298047,1559306239,1559314431,1559322623,1559330815,1559339007,1559347199,1559351295,1559353343,1559355391,1559379455,1559379967,1559389183,1559391999,1559393279,1559394047,1559394303,1559396351,1559405567,1559406591,1559407615,1559408639,1559409663,1559410687,1559410943,1559411199,1559411455,1559411711,1559412735,1559420927,1559429119,1559437311,1559445503,1559445759,1559446015,1559446271,1559446527,1559446783,1559447039,1559447295,1559447551,1559448063,1559448575,1559449599,1559449855,1559450111,1559450367,1559450623,1559450879,1559451135,1559451647,1559451903,1559452159,1559452671,1559452927,1559453183,1559453695,1559461887,1559470079,1559478271,1559486463,1559494655,1559502847,1559511039,1559519231,1559527423,1559535615,1559543807,1559551999,1559560191,1559568383,1559576575,1559584767,1559592959,1559601151,1559609343,1559617535,1559625727,1559633919,1559642111,1559643135,1559644159,1559645183,1559646207,1559647231,1559649279,1559650303,1559658495,1559659007,1559659519,1559660031,1559660543,1559660799,1559661055,1559661311,1559662079,1559662335,1559662591,1559663615,1559665663,1559666687,1559683071,1559691263,1559756799,1559789567,1559823615,1559823871,1559824127,1559824383,1559825407,1559825663,1559825919,1559826175,1559826431,1559827455,1559828479,1559828735,1559828991,1559829503,1559829759,1559830015,1559830271,1559830527,1559831551,1559832575,1559833599,1559834623,1559834879,1559835135,1559835391,1559835647,1559836671,1559837695,1559838719,1559855103,1559887871,1559920639,1559921407,1559921663,1559922431,1559922687,1559923711,1559923967,1559924479,1559924735,1559928319,1559929343,1559932159,1559932415,1559932671,1559932927,1559934975,1559937023,1559943167,1559943423,1559943935,1559945215,1559945727,1559946751,1559947519,1559947775,1559948031,1559948799,1559949311,1559950847,1559951359,1559952383,1559953407,1559986175,1560018943,1560051711,1560084479,1560117247,1560133631,1560135679,1560135935,1560136191,1560136447,1560136703,1560137215,1560137727,1560138751,1560139775,1560140799,1560141823,1560143871,1560144127,1560144639,1560144895,1560145919,1560150015,1560182783,1560215551,1560215807,1560223743,1560225791,1560228863,1560229119,1560229887,1560230143,1560231935,1560232191,1560232959,1560233983,1560236031,1560237055,1560237311,1560237567,1560238079,1560244223,1560248319,1560281087,1562378239,1564999679,1565368319,1565376511,1565523967,1565655039,1565786111,1565917183,1566048255,1566052351,1566053375,1566054399,1566055423,1566056447,1566060543,1566064639,1566067199,1566067711,1566068735,1566072831,1566081023,1566085119,1566089215,1566097407,1566099455,1566101503,1566105599,1566109695,1566113791,1566117887,1566121983,1566126079,1566130175,1566134271,1566138367,1566142463,1566146559,1566150655,1566154751,1566158847,1566162943,1566167039,1566167295,1566167551,1566168063,1566168319,1566168575,1566169087,1566169343,1566169599,1566169855,1566170111,1566170367,1566170879,1566171135,1566175231,1566179327,1566183423,1566187519,1566191615,1566195711,1566196735,1566197759,1566198271,1566198527,1566198783,1566199807,1566207999,1566212095,1566216191,1566220287,1566224383,1566226175,1566226431,1566227711,1566227967,1566232575,1566248959,1566257151,1566261247,1566265343,1566269439,1566271487,1566271999,1566272511,1566273535,1566277631,1566281727,1566285823,1566289919,1566294015,1566298111,1566302207,1566306303,1566310399,1566312447,1566314495,1566314751,1566315007,1566315519,1566315775,1566316543,1566318591,1566320639,1566321151,1566321407,1566321663,1566321919,1566322431,1566322687,1566324735,1566326783,1566328831,1566330879,1566334975,1566337023,1566339071,1566339327,1566340095,1566341119,1566343167,1566345215,1566347263,1566348287,1566348799,1566349311,1566350591,1566350847,1566351359,1566353407,1566355455,1566357503,1566359551,1566363647,1566365695,1566367743,1566371839,1566373887,1566375935,1566377983,1566378495,1566378751,1566379007,1566379263,1566380031,1566382079,1566384127,1566386175,1566388223,1566388479,1566388735,1566389247,1566389503,1566389759,1566390271,1566392319,1566394367,1566396415,1566398463,1566400511,1566402559,1566403583,1566404607,1566406655,1566408703,1566410751,1566412799,1566414847,1566416895,1566418943,1566419967,1566420991,1566423039,1566425087,1566427135,1566427391,1566427903,1566428159,1566428415,1566428671,1566428927,1566429183,1566437375,1566438399,1566438655,1566438911,1566439167,1566441215,1566441471,1566443519,1566445567,1566447615,1566451711,1566451967,1566452223,1566452479,1566452735,1566453759,1566455807,1566457855,1566459903,1566461951,1566463999,1566466047,1566468095,1566470143,1566472191,1566474239,1566476287,1566478335,1566482431,1566484479,1566486527,1566488575,1566490623,1566492671,1566494719,1566496767,1566498815,1566500863,1566502911,1566504959,1566507007,1566509055,1566511103,1566513151,1566513407,1566513663,1566513919,1566514175,1566514431,1566514687,1566514943,1566515199,1566517247,1566519295,1566521343,1566523391,1566525183,1566525439,1566527487,1566529535,1566531583,1566533631,1566535679,1566535935,1566536191,1566536447,1566536703,1566536959,1566537215,1566537471,1566537727,1566539775,1566541823,1566543871,1566545919,1566552063,1566554111,1566556159,1566558207,1566560255,1566561023,1566561279,1566561791,1566562047,1566562303,1566564351,1566566399,1566568447,1566570495,1566572543,1566703615,1566769151,1566793215,1566793471,1566834687,1566900223,1566965759,1567031295,1567096831,1567162367,1567227903,1567293439,1567358975,1567424511,1567490047,1567555583,1567621119,1567686655,1567690751,1567692799,1567693311,1567693823,1567694591,1567694847,1567695871,1567696127,1567696383,1567696639,1567696895,1567697919,1567698175,1567698431,1567698687,1567698943,1567699967,1567700479,1567702015,1567703039,1567705087,1567707135,1567709183,1567709439,1567709695,1567710207,1567711231,1567711487,1567711743,1567712255,1567712511,1567712767,1567713023,1567713279,1567713791,1567714303,1567714559,1567714815,1567715327,1567717375,1567718399,1567718911,1567719167,1567719423,1567719679,1567719935,1567720191,1567720447,1567720959,1567721471,1567723519,1567725567,1567727103,1567727359,1567727615,1567728639,1567729663,1567730431,1567730687,1567731455,1567731711,1567731967,1567732735,1567732991,1567733247,1567733503,1567733759,1567735807,1567737855,1567738367,1567738623,1567739391,1567739903,1567740927,1567741183,1567741439,1567741951,1567742975,1567743231,1567743487,1567743999,1567748095,1567749119,1567750143,1567750655,1567751167,1567751679,1567751935,1567752191,1567754239,1567754751,1567755263,1567755775,1567756287,1567760383,1567764479,1567764991,1567765247,1567766271,1567766527,1567767039,1567768063,1567768319,1567768575,1567769087,1567769343,1567769599,1567769855,1567770111,1567773439,1567773951,1567774207,1567774719,1567775743,1567776767,1567777535,1567777791,1567778815,1567780863,1567784959,1567785215,1567785471,1567785727,1567785983,1567786239,1567786495,1567787007,1567787519,1567788287,1567788543,1567788799,1567789055,1567793151,1567795199,1567795455,1567795711,1567795967,1567796223,1567797247,1567798271,1567798783,1567799039,1567799295,1567799807,1567800063,1567800319,1567800831,1567801343,1567801599,1567801855,1567802111,1567802367,1567803391,1567805439,1567807487,1567809535,1567811583,1567812095,1567812607,1567813631,1567814911,1567815167,1567815423,1567815679,1567815935,1567816191,1567816447,1567816703,1567817727,1567817983,1567818751,1567819263,1567819519,1567819775,1567820031,1567820287,1567820543,1567820799,1567821311,1567821567,1567821823,1567822591,1567822847,1567823615,1567823871,1567825919,1567826175,1567826431,1567826687,1567826943,1567827199,1567827455,1567827711,1567827967,1567830015,1567831039,1567832831,1567833087,1567833599,1567834111,1567836159,1567837183,1567838207,1567840255,1567841279,1567842303,1567842815,1567843839,1567844351,1567844607,1567844863,1567845119,1567845375,1567845631,1567845887,1567846143,1567846399,1567848447,1567850495,1567852543,1567854591,1567856639,1567856895,1567857151,1567857407,1567857663,1567858687,1567860735,1567861247,1567861759,1567862783,1567867903,1567868927,1567869183,1567869439,1567869695,1567869951,1567870975,1567871487,1567871743,1567871999,1567873023,1567879167,1567879423,1567879679,1567879935,1567880959,1567881215,1567882239,1567882495,1567882751,1567883007,1567883263,1567948799,1567961087,1567965183,1567965439,1567965695,1567966207,1567969279,1567973375,1567981567,1567983615,1567983871,1567984127,1567984639,1567987711,1567988223,1567988735,1567992831,1567993343,1567993599,1567993855,1567997951,1568014335,1568022527,1568023551,1568023807,1568024063,1568024319,1568024575,1568025599,1568025855,1568026623,1568030719,1568034815,1568038911,1568059391,1568060415,1568062463,1568063487,1568079871,1568083967,1568084991,1568086015,1568087039,1568088063,1568104447,1568106751,1568107263,1568107519,1568108543,1568110079,1568111103,1568111359,1568111615,1568112127,1568112639,1568114687,1568115711,1568118783,1568119295,1568119551,1568119807,1568120831,1568122879,1568125439,1568125951,1568126207,1568126463,1568126975,1568129023,1568129279,1568129535,1568129791,1568130047,1568133119,1568137215,1568138239,1568141311,1568145407,1568147455,1568147967,1568148479,1568149503,1568152063,1568152319,1568152575,1568153343,1568153599,1568153855,1568154111,1568154623,1568154879,1568155135,1568155391,1568155647,1568156159,1568156415,1568156671,1568157183,1568157439,1568158463,1568158719,1568158975,1568159743,1568160511,1568160767,1568163327,1568163839,1568164863,1568165887,1568166911,1568167167,1568167935,1568168447,1568168703,1568168959,1568169471,1568176127,1568177151,1568178175,1568210943,1568243711,1568246015,1568246527,1568247295,1568247551,1568252927,1568253183,1568254719,1568254975,1568255743,1568255999,1568257791,1568258047,1568258303,1568259071,1568262143,1568262399,1568263679,1568263935,1568272639,1568272895,1568273663,1568274431,1568276223,1568276479,1568309247,1568342015,1568344831,1568345087,1568345599,1568346111,1568346367,1568346623,1568348159,1568348671,1568349695,1568349951,1568350207,1568351743,1568351999,1568359423,1568360447,1568360703,1568360959,1568361215,1568361471,1568363007,1568363519,1568363775,1568364031,1568364543,1568367615,1568368127,1568368383,1568369663,1568369919,1568370431,1568371711,1568371967,1568372223,1568372479,1568374783,1568440319,1568473087,1568491007,1568491263,1568505855,1568538623,1568555007,1568571391,1568604159,1568636927,1568645119,1568645631,1568646143,1568646655,1568647679,1568648191,1568648703,1568648959,1568649215,1568649471,1568649727,1568650239,1568651263,1568651519,1568651775,1568652031,1568652287,1568653311,1568653823,1568654335,1568654591,1568654847,1568655359,1568655615,1568655871,1568658431,1568658687,1569193983,1569718271,1570242559,1570275327,1570295039,1570295551,1570296063,1570296831,1570297087,1570297855,1570298111,1570298623,1570298879,1570299391,1570299647,1570299903,1570300159,1570300415,1570300927,1570301439,1570301695,1570308095,1570334463,1570334719,1570340863,1570373631,1570406399,1570439167,1570471935,1570504703,1570570239,1570572287,1570576383,1570578431,1570580479,1570582527,1570584575,1570585087,1570585343,1570586623,1570590719,1570592767,1570596863,1570597119,1570597375,1570597631,1570597887,1570598143,1570598399,1570598655,1570598911,1570600959,1570603007,1570605055,1570607103,1570609151,1570611199,1570615295,1570617343,1570617599,1570617855,1570618111,1570618367,1570619391,1570621439,1570621951,1570623231,1570623487,1570625535,1570627583,1570629631,1570635775,1570644991,1570645247,1570652159,1570668543,1570674943,1570675199,1570676991,1570677247,1570678271,1570678527,1570678783,1570680319,1570680575,1570686975,1570693119,1570695167,1570696191,1570697215,1570701311,1570717695,1570725887,1570734079,1570750463,1570752511,1570754559,1570756607,1570757631,1570757887,1570758143,1570758399,1570759167,1570759423,1570764799,1570766847,1571291135,1571422207,1571422719,1571423231,1571423487,1571423743,1571423999,1571424255,1571424511,1571424767,1571425279,1571425535,1571425791,1571426047,1571426303,1571428351,1571428607,1571429119,1571429375,1571430399,1571430911,1571431167,1571431423,1571432447,1571434495,1571435775,1571436543,1571438591,1571440639,1571441151,1571441663,1571442431,1571442687,1571443199,1571443711,1571444735,1571445759,1571447039,1571447295,1571447807,1571448319,1571448575,1571451391,1571452927,1571453439,1571453951,1571454975,1571456767,1571457023,1571457535,1571458047,1571458815,1571459071,1571463167,1571465727,1571466239,1571467007,1571467263,1571467775,1571468287,1571469311,1571469823,1571470079,1571470335,1571470847,1571471103,1571471359,1571473407,1571475455,1571476479,1571477503,1571478015,1571478271,1571478527,1571479551,1571481599,1571482623,1571483647,1571484159,1571484671,1571485695,1571486719,1571486975,1571487231,1571487487,1571487743,1571488255,1571488767,1571489279,1571489535,1571490815,1571491071,1571491327,1571491839,1571495935,1571504127,1571506175,1571507199,1571507711,1571508223,1571514367,1571516415,1571520511,1571521535,1571522559,1571522815,1571523327,1571524607,1571526655,1571526911,1571527167,1571528191,1571528703,1571529215,1571529471,1571529727,1571531007,1571531263,1571532031,1571532287,1571532543,1571532799,1571533055,1571533823,1571534079,1571535103,1571535359,1571535615,1571535871,1571536895,1571538943,1571539967,1571540735,1571540991,1571541247,1571541503,1571542015,1571542271,1571542527,1571542783,1571543039,1571544063,1571545087,1571545599,1571545855,1571546879,1571547135,1571548159,1571548671,1571548927,1571549183,1571550207,1571550463,1571553279,1571684351,1571686399,1571688447,1571690495,1571692543,1571694591,1571696639,1571700735,1571702783,1571704831,1571706879,1571708927,1571709439,1571709695,1571709951,1571710207,1571710463,1571710719,1571710975,1571713023,1571715071,1571717119,1571719167,1571721215,1571723263,1571725311,1571727359,1571729407,1571731455,1571733503,1571735551,1571737599,1571738367,1571738623,1571741695,1571743743,1571743999,1571744255,1571744511,1571745791,1571747839,1571748095,1571748351,1571748607,1571748863,1571749119,1571749375,1571749631,1571749887,1571758079,1571766271,1571786751,1571790591,1571790847,1571794943,1571799039,1571811327,1571812351,1571813375,1571814399,1571815423,1571831807,1571848191,1571864575,1571880959,1571897343,1571898367,1571899391,1571899647,1571899903,1571900159,1571900415,1571901183,1571901439,1571901695,1571901951,1571902463,1571903487,1571904511,1571905023,1571905535,1571906559,1571907583,1571907839,1571908095,1571908351,1571908607,1571909631,1571910143,1571911167,1571911679,1571912703,1571912959,1571913215,1571913471,1571913727,1571930111,1571946495,1571962879,1571979263,1571995647,1572012031,1572020223,1572028415,1572029439,1572029951,1572034559,1572035583,1572035839,1572036607,1572038655,1572040703,1572042751,1572043775,1572044799,1572061183,1572077567,1572093951,1572095999,1572098047,1572100095,1572102143,1572110335,1572110591,1572110847,1572111359,1572112383,1572114431,1572116479,1572116735,1572116991,1572118015,1572118271,1572118527,1572126719,1572131839,1572132863,1572134911,1572139007,1572159487,1572175871,1572192255,1572225023,1572241407,1572257791,1572274175,1572277247,1572277503,1572290559,1572295679,1572296703,1572297727,1572298751,1572299775,1572300799,1572304895,1572305919,1572306943,1572323327,1572339711,1572343807,1572347903,1572351999,1572356095,1572360191,1572364287,1572368383,1572372479,1572376575,1572380671,1572384767,1572388863,1572392959,1572393471,1572393727,1572393983,1572394751,1572395775,1572397055,1572401151,1572405247,1572409343,1572413439,1572417535,1572421631,1572425727,1572429823,1572433919,1572438015,1572442111,1572444159,1572444415,1572444671,1572445183,1572445695,1572445951,1572446207,1572446719,1572446975,1572447231,1572447487,1572447743,1572447999,1572448255,1572448767,1572449279,1572458495,1572462591,1572466687,1572470783,1572474879,1572483071,1572487167,1572488191,1572488447,1572491263,1572495359,1572499455,1572503551,1572504063,1572504319,1572504575,1572504831,1572505087,1572505855,1572506623,1572507647,1572511743,1572515839,1572519935,1572524031,1572528127,1572532223,1572536319,1572538367,1572540415,1572541439,1572541695,1572541951,1572542207,1572542463,1572544511,1572546559,1572548607,1572550655,1572552703,1572552959,1572553215,1572553471,1572553727,1572553983,1572554239,1572554495,1572554751,1572556799,1572558847,1572560895,1572562943,1572564479,1572564735,1572564991,1572567039,1572569087,1572570111,1572571135,1572573183,1572575231,1572577279,1572579327,1572579583,1572579839,1572580351,1572581375,1572585471,1572587519,1572589567,1572591615,1572592639,1572593663,1572594687,1572594943,1572595711,1572596479,1572596735,1572596991,1572597759,1572599807,1572601855,1572603903,1572605951,1572607999,1572610047,1572612095,1572614143,1572616191,1572618239,1572620287,1572622335,1572624383,1572626431,1572628479,1572630527,1572632575,1572634623,1572635135,1572635391,1572635647,1572635903,1572636159,1572636415,1572636671,1572638719,1572640767,1572641535,1572641791,1572642815,1572644863,1572646911,1572648959,1572651007,1572653055,1572654591,1572654847,1572657151,1572659199,1572661247,1572663295,1572665343,1572667391,1572669439,1572673535,1572675583,1572677375,1572677631,1572681727,1572681983,1572682239,1572683007,1572683263,1572683519,1572683775,1572685823,1572689919,1572691967,1572694015,1572696063,1572698111,1572699647,1572700159,1572702207,1572704255,1572706303,1572708351,1572710399,1572712447,1572714495,1572716543,1572718591,1572720639,1572722687,1572724735,1572726783,1572728831,1572730879,1572732927,1572734975,1572737023,1572739071,1572741119,1572742143,1572743167,1572745215,1572749311,1572751359,1572753407,1572755455,1572757503,1572759551,1572761599,1572763647,1572763903,1572764159,1572764415,1572764671,1572764927,1572765183,1572765439,1572765695,1572767743,1572769791,1572771839,1572773887,1572775935,1572777983,1572780031,1572782079,1572784127,1572786175,1572788223,1572790271,1572792319,1572794367,1572795391,1572795647,1572795903,1572796159,1572796415,1572798463,1572800511,1572804607,1572808703,1572810751,1572812799,1572814847,1572816895,1572818943,1572820991,1572823039,1572825087,1572827135,1572828159,1572829183,1572831231,1572833279,1572835327,1572837375,1572839423,1572841471,1572841983,1572842239,1572842495,1572842751,1572843007,1572843263,1572843519,1572845567,1572847615,1572848127,1572848639,1572848895,1572849151,1572849407,1572849663,1572851711,1572853759,1572854527,1572854783,1572855807,1572857855,1572859903,1572861951,1572863999,1577058303,1578106879,1578107647,1578107903,1578108159,1578108415,1578108927,1578109183,1578109439,1578109951,1578110207,1578110463,1578110719,1578111231,1578111487,1578112255,1578112511,1578112767,1578113023,1578113279,1578113535,1578113791,1578123263,1578131711,1578131967,1578132223,1578132479,1578132735,1578133247,1578133503,1578138623,1578138879,1578139135,1578139391,1578139647,1578172415,1578237951,1578303487,1578369023,1578434559,1578500095,1578565631,1578588159,1578590207,1578596351,1578596863,1578604543,1578606591,1578608639,1578631167,1578637311,1578638335,1578638591,1578638847,1578639359,1578640383,1578640639,1578640895,1578643455,1578645503,1578647551,1578649599,1578651391,1578651647,1578657791,1578658815,1578659327,1578659839,1578663935,1578762239,1578768383,1578768895,1578769151,1578769407,1578770175,1578770431,1578773503,1578773759,1578774015,1578774527,1578778623,1578779135,1578779391,1578779647,1578780927,1578781183,1578783743,1578784255,1578785023,1578785279,1578785535,1578786047,1578786303,1578786559,1578786815,1578787071,1578787839,1578788095,1578788351,1578788607,1578788863,1578790143,1578790399,1578790911,1578795007,1578811391,1578819583,1578827775,1578860543,1578893311,1578991615,1579024383,1579057151,1579089919,1579090175,1579093759,1579094015,1579094271,1579094527,1579094783,1579095039,1579097599,1579097855,1579101183,1579101439,1579103999,1579104255,1579106303,1579122687,1579155455,1579417599,1579679743,1579745279,1579810815,1579876351,1579941887,1580007423,1580015615,1580048383,1580056575,1580064767,1580072959,1580075007,1580076031,1580077055,1580078079,1580081151,1580083199,1580089343,1580097535,1580098047,1580098303,1580105727,1580107775,1580109055,1580109567,1580109823,1580112127,1580112383,1580112639,1580113919,1580120063,1580121087,1580122111,1580123135,1580125183,1580125695,1580125951,1580126207,1580128255,1580129279,1580130303,1580134399,1580135423,1580136447,1580137215,1580137471,1580138495,1580204031,1580335103,1580339455,1580339711,1580466175,1580597247,1580728319,1580990463,1581252607,1581776895,1581793279,1581801471,1581811711,1581812991,1581813247,1581815807,1581816831,1581817855,1581819903,1581821951,1581822207,1581822463,1581822719,1581822975,1581823231,1581823487,1581823743,1581823999,1581826047,1581842431,1581850623,1581858815,1581875199,1581891583,1581907967,1581924351,1581928447,1581932543,1581936639,1581938687,1581940735,1581941759,1581942015,1581943039,1581943295,1581943807,1581944063,1581945599,1581945855,1581946879,1581947903,1581948159,1581948415,1581948927,1581949951,1581950207,1581950975,1581951487,1581951743,1581951999,1581952255,1581952511,1581954559,1581954815,1581955071,1581955583,1581955839,1581956095,1581956863,1581957119,1581973503,1581989887,1582006271,1582022655,1582039039,1582055423,1582071807,1582088191,1582104575,1582153727,1582170111,1582186495,1582202879,1582219263,1582252031,1582268415,1582284799,1582301183,1583349759,1583611903,1583615999,1583616255,1583616511,1583617023,1583617279,1583617791,1583618047,1583618303,1583618559,1583618815,1583619071,1583620095,1583624191,1583628287,1583632383,1583636479,1583640575,1583644671,1583648767,1583652863,1583656959,1583665151,1583669247,1583673343,1583677439,1583680767,1583681023,1583681535,1583685631,1583689727,1583693823,1583697919,1583702015,1583702527,1583702783,1583703551,1583703807,1583704063,1583704319,1583704575,1583704831,1583705087,1583705343,1583705599,1583705855,1583706111,1583706367,1583706623,1583706879,1583707135,1583708159,1583709183,1583710207,1583714303,1583722495,1583726591,1583730687,1583730943,1583734783,1583738879,1583742975,1583747071,1583751167,1583755263,1583759359,1583763455,1583765503,1583766015,1583766527,1583767551,1583771647,1583775743,1583779839,1583783935,1583788031,1583792127,1583796223,1583800319,1583804415,1583808511,1583809535,1583810559,1583810815,1583811583,1583812095,1583812607,1583812863,1583813119,1583816703,1583820799,1583824895,1583828991,1583829759,1583832575,1583833087,1583837183,1583838207,1583839231,1583840255,1583840767,1583841023,1583841279,1583845375,1583849471,1583853567,1583854591,1583854847,1583855103,1583855615,1583855871,1583856127,1583856383,1583856639,1583857151,1583857407,1583857663,1583861759,1583865855,1583869951,1583870975,1583871999,1583872255,1583872511,1583872767,1583874047,1584398335,1584529407,1584660479,1584857087,1584858111,1584858879,1584859135,1584922623,1585184767,1585190911,1585192959,1585193983,1585194239,1585195007,1585197055,1585199103,1585201151,1585203199,1585203455,1585203711,1585203967,1585204223,1585204479,1585204735,1585204991,1585205247,1585207295,1585209343,1585210367,1585211391,1585213439,1585213695,1585213951,1585214207,1585214463,1585214719,1585215231,1585215487,1585217535,1585219583,1585221631,1585223679,1585223935,1585224191,1585224447,1585224703,1585224959,1585225471,1585225727,1585226239,1585227775,1585231359,1585231615,1585231871,1585233919,1585238015,1585240063,1585242111,1585244159,1585246207,1585248255,1585250303,1585254399,1585255935,1585258495,1585260543,1585264639,1585264895,1585265407,1585265663,1585266175,1585266687,1585270783,1585272831,1585274879,1585275391,1585275647,1585275903,1585276415,1585276927,1585278975,1585281023,1585283071,1585285119,1585285375,1585285631,1585287167,1585289215,1585291263,1585293567,1585293823,1585295359,1585297407,1585299455,1585301503,1585303551,1585305599,1585307647,1585309695,1585311743,1585313791,1585315839,1585317887,1585319935,1585321983,1585324031,1585324287,1585324543,1585324799,1585325055,1585326079,1585328127,1585330175,1585332223,1585334271,1585336319,1585338111,1585338367,1585340415,1585340927,1585341183,1585342463,1585344511,1585346559,1585348607,1585348863,1585349375,1585350399,1585350655,1585352703,1585354751,1585356799,1585358847,1585360895,1585361663,1585361919,1585362943,1585364991,1585367039,1585367295,1585367551,1585369087,1585371135,1585375231,1585377279,1585379327,1585381375,1585383423,1585385471,1585387519,1585389567,1585391615,1585393663,1585395711,1585397759,1585399807,1585401855,1585403903,1585405951,1585407999,1585410047,1585412095,1585414143,1585416191,1585422335,1585424383,1585428479,1585432575,1585434623,1585436671,1585438719,1585440767,1585442815,1585446911,1585577983,1585643519,1585644031,1585644287,1585644543,1585645055,1585645311,1585645567,1585645823,1585646079,1585646335,1585646591,1585646847,1585647359,1585647615,1585650687,1585651711,1585655807,1585668095,1585668351,1585668607,1585668863,1585669119,1585669375,1585669631,1585669887,1585670143,1585670399,1585671167,1585671423,1585672191,1585672447,1585672703,1585672959,1585673215,1585673471,1585673727,1585673983,1585674239,1585674495,1585674751,1585675007,1585675263,1585676287,1585688575,1585692671,1585693695,1585694719,1585695743,1585696767,1585697023,1585698815,1585699583,1585709055,1585840127,1585971199,1585979391,1585987583,1585995775,1586000895,1586001151,1586003967,1586012159,1586014207,1586015231,1586020351,1586028543,1586036735,1586055167,1586055423,1586055679,1586055935,1586056191,1586056447,1586056703,1586060287,1586060543,1586060799,1586061055,1586061311,1586069503,1586073599,1586075647,1586077695,1586085887,1586110463,1586118655,1586126847,1586135039,1586143231,1586151423,1586159615,1586167807,1586175999,1586177023,1586177535,1586178047,1586180095,1586182143,1586183679,1586184191,1586192383,1586200575,1586208767,1586216959,1586225151,1586229247,1586229503,1586229759,1586233343,1586233599,1586233855,1586234367,1586235391,1586236927,1586237439,1586237695,1586237951,1586239487,1586239743,1586239999,1586240511,1586241535,1586249727,1586257919,1586261503,1586261759,1586265087,1586266111,1586274303,1586282495,1586298879,1586307071,1586315263,1586323455,1586323711,1586323967,1586324223,1586324479,1586324991,1586325503,1586331647,1586339839,1586340351,1586348031,1586356223,1586361343,1586362367,1586363391,1586372607,1586380799,1586388991,1586389247,1586389503,1586389759,1586390015,1586396927,1586397183,1586397439,1586397695,1586397951,1586398207,1586399743,1586399999,1586401279,1586403327,1586405375,1586407423,1586409471,1586410495,1586411519,1586412031,1586412287,1586412543,1586412799,1586413055,1586413567,1586415615,1586417663,1586419711,1586421759,1586423807,1586425855,1586427903,1586428159,1586428415,1586428671,1586428927,1586429183,1586429439,1586429695,1586429951,1586431999,1586434047,1586436095,1586438143,1586446335,1586448383,1586450431,1586452479,1586454527,1586456575,1586456831,1586457855,1586458623,1586458879,1586459135,1586460671,1586461695,1586462719,1586464767,1586466815,1586468863,1586470911,1586472959,1586475007,1586477055,1586479103,1586481151,1586483199,1586485247,1586487295,1586487551,1586487807,1586488063,1586488319,1586488575,1586488831,1586489087,1586489343,1586491391,1586493439,1586495487,1587019775,1587071999,1587072255,1587085311,1587150847,1587151615,1587151871,1587152639,1587152895,1587153151,1587153407,1587153663,1587153919,1587154175,1587154431,1587154943,1587159039,1587159295,1587159551,1587159807,1587160319,1587161087,1587162623,1587162879,1587163135,1587165183,1587167231,1587175423,1587177471,1587179519,1587179775,1587180031,1587180287,1587180543,1587180799,1587181055,1587181311,1587181567,1587181823,1587182079,1587182335,1587182591,1587182847,1587183103,1587183615,1587184639,1587185663,1587186687,1587187711,1587188735,1587189759,1587190783,1587191551,1587191807,1587192063,1587192319,1587192575,1587192831,1587193855,1587194623,1587194879,1587195135,1587195391,1587195903,1587196415,1587196671,1587197951,1587198975,1587199487,1587199743,1587199999,1587216383,1587283455,1587283711,1587284479,1587284735,1587286015,1587287039,1587288575,1587289087,1587290111,1587290367,1587290623,1587291391,1587291647,1587292159,1587292671,1587292927,1587293183,1587293439,1587293695,1587294207,1587296255,1587297791,1587298303,1587300351,1587300863,1587301119,1587301887,1587302143,1587304447,1587305471,1587305727,1587305983,1587306239,1587306495,1587306751,1587307263,1587307519,1587307775,1587308031,1587308287,1587309567,1587310591,1587311871,1587312127,1587312383,1587312639,1587313151,1587313919,1587314175,1587314431,1587314687,1587315711,1587316223,1587319039,1587319295,1587319807,1587320831,1587321087,1587321343,1587321855,1587322367,1587322623,1587322879,1587323391,1587324927,1587325439,1587327231,1587327487,1587327743,1587327999,1587328511,1587329279,1587329535,1587329791,1587330047,1587331071,1587331583,1587333119,1587334143,1587335167,1587339263,1587339775,1587340287,1587341311,1587341823,1587342335,1587342591,1587343103,1587343359,1587344383,1587344639,1587344895,1587345407,1587345663,1587345919,1587346175,1587346687,1587346943,1587347455,1587412991,1587418111,1587418367,1587418623,1587418879,1587419135,1587420159,1587421183,1587425279,1587429375,1587433471,1587437567,1587445759,1587449855,1587453951,1587458047,1587459071,1587460095,1587461119,1587461887,1587462143,1587467519,1587467775,1587468031,1587468287,1587468543,1587468799,1587469311,1587470079,1587470335,1587474431,1587475455,1587475711,1587476223,1587476479,1587477503,1587478527,1587511295,1587544063,1588068351,1588330495,1588396031,1588592639,1588593151,1588593663,1588593919,1588594687,1588596735,1588600831,1588602879,1588603135,1588603391,1588603903,1588604927,1588609023,1588613119,1588617215,1588617471,1588617727,1588618239,1588619263,1588619775,1588620031,1588620287,1588620543,1588620799,1588621055,1588621311,1588625407,1588625663,1588625919,1588626175,1588626431,1588626943,1588627455,1588629503,1588630015,1588630271,1588630527,1588631039,1588631295,1588631551,1588633599,1588634111,1588634367,1588634623,1588635647,1588637695,1588638719,1588639231,1588639487,1588639743,1588640255,1588640767,1588641791,1588642303,1588642815,1588643839,1588645887,1588646399,1588646911,1588647167,1588647423,1588647935,1588648959,1588649983,1588652031,1588654079,1588658175,1588659199,1588659711,1588660223,1588660735,1588661247,1588661503,1588661759,1588662271,1588662527,1588662783,1588663295,1588663551,1588663807,1588664319,1588664575,1588664831,1588665087,1588665343,1588665599,1588670463,1588670975,1588671487,1588672511,1588673023,1588673535,1588673791,1588674047,1588674303,1588674559,1588674815,1588675071,1588675327,1588675583,1588676607,1588678655,1588680703,1588682751,1588683263,1588683775,1588684799,1588685055,1588685311,1588685567,1588686847,1588687103,1588687359,1588687871,1588688383,1588688639,1588688895,1588689407,1588689663,1588689919,1588690431,1588690687,1588690943,1588691199,1588691455,1588691711,1588691967,1588692223,1588692479,1588692991,1588693503,1588694015,1588695039,1588695295,1588695551,1588696063,1588696575,1588696831,1588697087,1588699135,1588715519,1588717567,1588719615,1588720639,1588722687,1588723711,1588854783,1588985855,1589182463,1589198847,1589200895,1589202943,1589204991,1589207039,1589215231,1589247999,1589256191,1589258239,1589280767,1589311231,1589311487,1589313535,1589346303,1589354495,1589379071,1589411839,1589414143,1589414399,1589431551,1589432831,1589434111,1589434623,1589438463,1589438719,1589439231,1589439743,1589444607,1589477375,1589510143,1589542911,1589543935,1589544959,1589547007,1589547263,1589547519,1589547775,1589548031,1589548287,1589548543,1589548799,1589549055,1589550079,1589551103,1589560063,1589560319,1589561343,1589563391,1589571583,1589573631,1589574655,1589575679,1589608447,1589623807,1589624831,1589626879,1589641215,1590034431,1590036479,1590038527,1590040575,1590042623,1590044671,1590044927,1590045183,1590045439,1590045695,1590046719,1590047231,1590048767,1590049023,1590049279,1590049535,1590050815,1590052863,1590054911,1590056959,1590059007,1590061055,1590063103,1590065151,1590067199,1590069247,1590071295,1590073343,1590075391,1590077439,1590078207,1590078463,1590079487,1590080767,1590081023,1590081535,1590083583,1590085631,1590087679,1590089727,1590090751,1590091263,1590091519,1590091775,1590092287,1590093823,1590095871,1590096895,1590097919,1590099967,1590100223,1590100479,1590100735,1590100991,1590101247,1590101503,1590101759,1590102015,1590104063,1590106111,1590108159,1590110207,1590112255,1590114303,1590116351,1590120447,1590122495,1590124543,1590125567,1590126335,1590126591,1590128639,1590130687,1590132735,1590133759,1590134015,1590134783,1590135807,1590138879,1590140927,1590142975,1590145023,1590147071,1590149119,1590151167,1590153215,1590155263,1590157311,1590159359,1590161407,1590161663,1590162175,1590163455,1590165503,1590689791,1591214079,1591738367,1592000511,1592004607,1592008703,1592012799,1592016895,1592020991,1592025087,1592029183,1592031743,1592031999,1592033279,1592037375,1592041471,1592041727,1592041983,1592042239,1592043007,1592043519,1592043775,1592044031,1592045567,1592049663,1592053759,1592057855,1592061951,1592066047,1592067583,1592067839,1592068095,1592068607,1592068863,1592069119,1592070143,1592074239,1592078335,1592082431,1592086527,1592087295,1592088063,1592090623,1592094719,1592098815,1592102911,1592107007,1592111103,1592115199,1592119295,1592123391,1592135679,1592139775,1592143871,1592147967,1592152063,1592156159,1592160255,1592168447,1592172543,1592176639,1592180735,1592184831,1592188927,1592193023,1592197119,1592201215,1592205311,1592206335,1592206847,1592207359,1592209407,1592213503,1592217599,1592221695,1592225791,1592242175,1592246271,1592246527,1592246783,1592247039,1592247295,1592247807,1592248063,1592248319,1592248575,1592248831,1592249087,1592249343,1592249599,1592249855,1592250111,1592250367,1592251391,1592251647,1592251903,1592252159,1592252415,1592253439,1592254463,1592258559,1592262655,1592268799,1592269823,1592270335,1592270591,1592270847,1592272895,1592273919,1592274687,1592274943,1592281087,1592283135,1592285183,1592287231,1592288255,1592289279,1592291327,1592293375,1592295423,1592299519,1592303615,1592305663,1592307711,1592309759,1592311807,1592313855,1592315903,1592317951,1592319999,1592322047,1592324095,1592325119,1592326143,1592327167,1592328191,1592393727,1592459263,1592524799,1592557567,1592590335,1592590847,1592591359,1592592383,1592596479,1592598527,1592600575,1592602623,1592606719,1592610815,1592616959,1592617983,1592619007,1592621055,1592622079,1592622591,1592623103,1592655871,1592786943,1592801279,1592802303,1592803327,1592819711,1592836095,1592852479,1592868863,1592885247,1592886271,1592887295,1592887807,1592888063,1592889343,1592893439,1592893951,1592894463,1592894975,1592895487,1592896511,1592897535,1592899583,1592900607,1592901631,1592933631,1592933887,1592934399,1592950783,1592967167,1592969215,1592971263,1592972287,1592973311,1592974335,1592975359,1592981503,1592983551,1592999935,1593016319,1593049087,1593065471,1593081855,1593098239,1593114623,1593131007,1593131263,1593132031,1593132287,1593132543,1593132799,1593133055,1593133311,1593133567,1593133823,1593134591,1593135103,1593135359,1593135615,1593136895,1593139199,1593139455,1593139711,1593140223,1593147391,1593163775,1593180159,1593196543,1593206783,1593207039,1593210879,1593211391,1593212927,1593229311,1593245695,1593247743,1593249791,1593251839,1593253887,1593255935,1593256447,1593256703,1593257983,1593260031,1593262079,1593264127,1593266175,1593268223,1593270271,1593272319,1593274367,1593276415,1593278463,1593280511,1593280767,1593281023,1593281279,1593281535,1593281791,1593282047,1593282303,1593282559,1593284607,1593286655,1593288703,1593290751,1593292799,1593294847,1593296895,1593298943,1593300991,1593303039,1593305087,1593307135,1593311231,1593327615,1593343999,1593358335,1593360383,1593370623,1593372671,1593376767,1593409535,1593442303,1593475071,1593491455,1593492479,1593492735,1593493503,1593493759,1593495295,1593495551,1593497343,1593497599,1593497855,1593498111,1593498367,1593498879,1593499135,1593499647,1593503743,1593504767,1593505023,1593505279,1593505535,1593505791,1593540607,1593573375,1593606143,1593638911,1593671679,1593704447,1593737215,1593769983,1593802751,1593835519,1594884095,1595408383,1595998207,1596063743,1596129279,1596194815,1596260351,1596325887,1596391423,1596456959,1596588031,1596719103,1596850175,1596850431,1596850687,1596851199,1596851455,1596851711,1596852479,1596852735,1596852991,1596853247,1596854271,1596858367,1596858623,1596858879,1596859391,1596859903,1596861439,1596861951,1596862207,1596862463,1596866559,1596868607,1596869887,1596870655,1596875007,1596875775,1596876799,1596877055,1596877311,1596877567,1596878079,1596879359,1596879615,1596881407,1596882175,1596882431,1596884991,1596886015,1596887039,1596887295,1596887551,1596888063,1596889599,1596889855,1596890111,1596890367,1596890623,1596891135,1596892159,1596897279,1596899327,1596900863,1596901375,1596903679,1596903935,1596904447,1596905471,1596909567,1596911615,1596923903,1596924927,1596925951,1596930047,1596930303,1596930559,1596930815,1596931071,1596931839,1596932095,1596941311,1596941823,1596942079,1596942335,1596943359,1596944383,1596945407,1596945919,1596946431,1596946943,1596947455,1596947967,1596948223,1596948479,1596950527,1596950783,1596951039,1596951295,1596951551,1596951807,1596953087,1596953599,1596954623,1596954879,1596955135,1596955391,1596955903,1596956159,1596956415,1596956671,1596956927,1596957951,1596958463,1596958719,1596959231,1596959743,1596959999,1596960255,1596961023,1596961791,1596963327,1596963839,1596964095,1596964863,1596965887,1596966399,1596966911,1596967423,1596967935,1596975103,1596975359,1596976127,1596976383,1596977151,1596977663,1596977919,1596978431,1596978687,1596979199,1596980223,1596980479,1596980735,1596981247,1597243391,1597505535,1597767679,1598029823,1598062591,1598095359,1598128127,1598160895,1598193663,1598226431,1598259199,1598291967,1598324735,1598357503,1598390271,1598423039,1598455807,1598488575,1598685183,1598816255,1598947327,1599078399,1599094783,1599111167,1599127551,1599133695,1599133951,1599143935,1599152127,1599160319,1599176703,1599193087,1599209471,1599211519,1599211775,1599213567,1599219711,1599221759,1599225855,1599242239,1599258623,1599324159,1599326207,1599328255,1599333375,1599333631,1599340543,1599356927,1599373311,1599406079,1599422463,1599422719,1599423231,1599423487,1599423743,1599423999,1599424255,1599424511,1599424767,1599425023,1599425279,1599425535,1599425791,1599426047,1599426303,1599426559,1599427327,1599427583,1599428863,1599429119,1599429375,1599429631,1599429887,1599430143,1599430399,1599430655,1599438847,1599455231,1599471615,1599479807,1599481855,1599482623,1599482879,1599483903,1599485951,1599486975,1599487999,1599504383,1599520767,1599537151,1599553535,1599561727,1599562239,1599562495,1599565823,1599567871,1599569919,1599586303,1599602687,1599864831,1600126975,1600389119,1600393215,1600397311,1600398335,1600398847,1600399103,1600399359,1600400383,1600400895,1600401407,1600405503,1600410623,1600411391,1600411647,1600411903,1600412415,1600412671,1600412927,1600413695,1600414207,1600414463,1600414719,1600414975,1600415743,1600415999,1600416255,1600416767,1600417023,1600417279,1600417535,1600417791,1600421887,1600422911,1600423167,1600423679,1600423935,1600424959,1600425983,1600426495,1600426751,1600427007,1600428031,1600428543,1600429055,1600429311,1600429567,1600430079,1600431103,1600432127,1600432383,1600432639,1600432895,1600433407,1600433663,1600433919,1600434175,1600435199,1600435455,1600435711,1600436223,1600437247,1600438271,1600438527,1600439295,1600440319,1600441343,1600442367,1600443391,1600443647,1600444415,1600445439,1600446463,1600450559,1600451071,1600451327,1600451583,1600452607,1600453119,1600453631,1600453887,1600454143,1600454655,1600456703,1600456959,1600457215,1600457727,1600457983,1600458239,1600458751,1600459775,1600460031,1600460287,1600460543,1600460799,1600461055,1600461311,1600461567,1600461823,1600462079,1600462335,1600462847,1600463103,1600463359,1600463615,1600463871,1600464127,1600464383,1600464895,1600465919,1600466943,1600467967,1600468479,1600468735,1600470015,1600470783,1600471039,1600472063,1600473087,1600473599,1600473855,1600474111,1600474367,1600474623,1600475135,1600476159,1600477183,1600478207,1600479231,1600480255,1600481279,1600482303,1600482559,1600482815,1600483071,1600483327,1600483583,1600483839,1600484095,1600484607,1600484863,1600485119,1600485375,1600485887,1600486399,1600487423,1600488447,1600488703,1600488959,1600489215,1600489471,1600489983,1600490239,1600490495,1600491007,1600491263,1600491519,1600492543,1600494591,1600495615,1600496639,1600497663,1600498175,1600498431,1600498687,1600499711,1600500735,1600501247,1600501759,1600502783,1600503807,1600504831,1600506879,1600507135,1600507391,1600507903,1600511999,1600513023,1600514303,1600514559,1600514815,1600515071,1600520191,1600651263,1600684031,1600749567,1600782335,1600880639,1600913407,1600946175,1600953343,1600953855,1600968191,1600968703,1600978943,1601011711,1601044479,1601077247,1601110015,1601142783,1601150975,1601159167,1601163263,1601164287,1601165311,1601167359,1601699839,1602224127,1602226175,1602228223,1602230271,1602232319,1602234367,1602236415,1602238463,1602240511,1602242559,1602244607,1602246655,1602248703,1602250751,1602252799,1602254847,1602255359,1602255871,1602256639,1602256895,1602258943,1602260991,1602263039,1602263295,1602263807,1602264063,1602264319,1602264575,1602264831,1602265087,1602267135,1602267903,1602268159,1602269183,1602271231,1602273279,1602273535,1602273791,1602274047,1602274303,1602275071,1602275327,1602279423,1602281471,1602283519,1602285567,1602287615,1602291711,1602293759,1602295807,1602296831,1602297855,1602298879,1602299391,1602299903,1602301951,1602303999,1602306047,1602308095,1602310143,1602312191,1602314239,1602316287,1602318335,1602320383,1602324479,1602328575,1602330623,1602336767,1602338815,1602340863,1602342911,1602344959,1602347007,1602349055,1602351103,1602353151,1602355199,1602356223,1602357247,1602359295,1602361343,1602363391,1602365439,1602367487,1602369535,1602371583,1602373631,1602375679,1602377727,1602379775,1602383871,1602384127,1602384383,1602385919,1602387967,1602390015,1602392063,1602394111,1602396159,1602398207,1602400255,1602402303,1602402815,1602403071,1602404351,1602405887,1602406143,1602406399,1602408447,1602410495,1602412543,1602412799,1602413055,1602413311,1602413567,1602414079,1602414335,1602414591,1602416639,1602418687,1602420735,1602424831,1602426879,1602428927,1602430975,1602433023,1602435071,1602437119,1602439167,1602441215,1602443263,1602445311,1602447359,1602447871,1602448383,1602448895,1602449407,1602451455,1602453503,1602455551,1602457599,1602459647,1602461695,1602465791,1602467839,1602469887,1602471935,1602473983,1602476031,1602478079,1602480127,1602482175,1602484223,1602486271,1602748415,1602781183,1602813951,1602846719,1602879487,1602912255,1602928639,1602930687,1602932735,1602936831,1603010559,1603014655,1603018751,1603022847,1603026687,1603026943,1603031039,1603031295,1603031807,1603032063,1603035135,1603039231,1603043327,1603047423,1603047935,1603048447,1603049471,1603051007,1603051519,1603055615,1603059711,1603063807,1603067903,1603068927,1603069439,1603069951,1603070719,1603070975,1603071487,1603071999,1603076095,1603080191,1603084287,1603088383,1603092479,1603100671,1603108863,1603112959,1603121151,1603129343,1603133439,1603137535,1603137791,1603138047,1603138303,1603138559,1603138815,1603139071,1603139327,1603139583,1603139839,1603140095,1603140351,1603140607,1603140863,1603141119,1603141375,1603141631,1603141887,1603142143,1603144191,1603144447,1603145215,1603145727,1603146239,1603146751,1603147007,1603147263,1603147519,1603147775,1603148031,1603148287,1603148799,1603149055,1603149567,1603149823,1603150079,1603152127,1603152383,1603153919,1603158015,1603162111,1603166207,1603167231,1603167743,1603170303,1603170559,1603170815,1603171071,1603171327,1603171583,1603171839,1603172095,1603172351,1603172607,1603172863,1603173119,1603173887,1603174143,1603174399,1603178495,1603182591,1603186687,1603190783,1603194879,1603198975,1603203071,1603207167,1603215359,1603219455,1603223551,1603227647,1603231743,1603235839,1603239935,1603244031,1603248127,1603252223,1603256319,1603260415,1603264511,1603268607,1603272703,1603796991,1603813375,1603829759,1603846143,1603862527,1603878911,1603895295,1603928063,1603944447,1603977215,1603990015,1603990271,1603993599,1604009983,1604026367,1604042751,1604059135,1604075519,1604091903,1604108287,1604108799,1604109055,1604109823,1604110079,1604111103,1604112383,1604112895,1604113151,1604113663,1604113919,1604114431,1604115455,1604115967,1604116479,1604118783,1604120063,1604120319,1604120575,1604122623,1604123135,1604123391,1604123647,1604124671,1604141055,1604149247,1604149503,1604157439,1604190207,1604206591,1604222975,1604233983,1604234239,1604239359,1604255743,1604272127,1604288511,1604304895,1604321279,1604386815,1604403199,1604407295,1604407551,1604408319,1604409343,1604410111,1604410367,1604419583,1604422655,1604433919,1604434943,1604436991,1604438015,1604444159,1604445183,1604452351,1604517887,1604555007,1604555263,1604555775,1604556799,1604558847,1604562943,1604567039,1604571135,1604583423,1604583679,1604583935,1604584447,1604584959,1604585215,1604585471,1604585727,1604585983,1604586239,1604586495,1604587519,1604587775,1604588031,1604588287,1604588543,1604588799,1604589055,1604589311,1604589567,1604591615,1604591871,1604592127,1604592383,1604592639,1604592895,1604593151,1604593407,1604593663,1604594687,1604594943,1604595199,1604595455,1604595711,1604596479,1604596735,1604596991,1604597247,1604598783,1604599039,1604599295,1604599807,1604600831,1604601087,1604601343,1604601599,1604601855,1604603135,1604603903,1604604927,1604605183,1604605439,1604605951,1604606207,1604606463,1604606719,1604606975,1604607999,1604612095,1604612351,1604612607,1604612863,1604613119,1604613375,1604613631,1604613887,1604614143,1604614399,1604614911,1604615167,1604616191,1604621567,1604621823,1604624383,1604626431,1604626943,1604627967,1604628479,1604632575,1604636671,1604640767,1604642815,1604643071,1604643583,1604643839,1604646911,1604647423,1604647679,1604647935,1604648959,1604714495,1604730879,1604780031,1604845567,1604853759,1604870143,1604878335,1604886527,1604890623,1604892927,1604893183,1604893695,1604894207,1604894719,1604902911,1604911103,1604919295,1604927487,1604935679,1604952063,1604960255,1604960511,1604960767,1604961023,1604962559,1604962815,1604963327,1604963839,1604968447,1604976639,1604993023,1605001215,1605025791,1605033983,1605042175,1605050367,1605058559,1605066751,1605074943,1605083135,1605091327,1605099519,1605099775,1605100031,1605101055,1605103871,1605104127,1605104383,1605104639,1605104895,1605105151,1605105407,1605107711,1605115903,1605124095,1605124863,1605126143,1605126911,1605127167,1605127679,1605128191,1605128447,1605128703,1605130239,1605130495,1605130751,1605131263,1605131775,1605132287,1605148671,1605156863,1605165055,1605173247,1605181439,1605189631,1605189887,1605197823,1605206015,1605214207,1605222399,1605222655,1605223679,1605223935,1605224191,1605224447,1605230591,1605238783,1605246975,1605255167,1605255423,1605255679,1605255935,1605256191,1605256703,1605257215,1605259263,1605261311,1605271551,1605279743,1605287935,1605296127,1605304319,1605312511,1605320703,1605328895,1605337087,1605345279,1605353471,1605361663,1605369855,1605402623,1605435391,1605468159,1605500927,1605502975,1605505023,1605509119,1605511167,1605513215,1605523455,1605524479,1605528063,1605528575,1605529599,1605531647,1605533695,1605566463,1605599231,1605607423,1605611519,1605615615,1605619711,1605623807,1605627903,1605631999,1605664767,1605697535,1605736191,1605736447,1605738751,1605739007,1605739263,1605739519,1605741567,1605741823,1605742079,1605743103,1605743359,1605745663,1605746687,1605752831,1605753855,1605754879,1605756927,1605757183,1605757439,1605757695,1605757951,1605758207,1605758463,1605758719,1605758975,1605763071,1605769215,1605771263,1605782527,1605782783,1605783039,1605783295,1605787647,1605789695,1605790719,1605795839,1605828607,1605828863,1605829631,1605829887,1605830143,1605830399,1605830655,1605840895,1605844991,1605861375,1605894143,1606156287,1606418431,1607467007,1607532543,1607569407,1607572479,1607581695,1607598079,1607598591,1607599103,1607599359,1607599615,1607599871,1607600127,1607600383,1607600639,1607600895,1607601151,1607601407,1607601919,1607602175,1607602431,1607602687,1607602943,1607603199,1607603455,1607603967,1607604479,1607604735,1607604991,1607605247,1607605759,1607606015,1607606271,1607606527,1607607295,1607607551,1607607807,1607608063,1607608319,1607608831,1607609087,1607609343,1607609599,1607609855,1607610111,1607610367,1607610623,1607611391,1607611647,1607611903,1607612415,1607612671,1607612927,1607613183,1607613439,1607613695,1607613951,1607614207,1607614463,1607615487,1607615999,1607616255,1607616511,1607616767,1607617023,1607617279,1607617535,1607617791,1607618047,1607618303,1607618559,1607618815,1607619071,1607619327,1607619583,1607619839,1607620095,1607620351,1607620607,1607620863,1607621119,1607621375,1607621887,1607622143,1607622399,1607622655,1607624703,1607625215,1607625471,1607625727,1607626239,1607626495,1607627775,1607628543,1607628799,1607630847,1607631103,1607631871,1607632127,1607632639,1607632895,1607633407,1607633919,1607634175,1607634431,1607634687,1607634943,1607635199,1607635455,1607635711,1607635967,1607636479,1607636991,1607637503,1607638015,1607638527,1607639039,1607642111,1607642623,1607647231,1607651583,1607653375,1607655423,1607657471,1607662591,1607663103,1607663615,1607729151,1607794687,1607860223,1607861247,1607862271,1607862783,1607863295,1607864319,1607864575,1607864831,1607865343,1607866367,1607866623,1607867135,1607867391,1607868415,1607869439,1607869951,1607870463,1607871487,1607872511,1607873535,1607874559,1607876607,1607877631,1607878655,1607878911,1607879167,1607879423,1607879679,1607879935,1607880191,1607880447,1607880703,1607880959,1607881215,1607881471,1607882751,1607883775,1607884799,1607885823,1607886847,1607887871,1607888895,1607889151,1607889407,1607889663,1607889919,1607890943,1607891967,1607892991,1607894015,1607895039,1607896063,1607897087,1607898111,1607899135,1607900159,1607901183,1607902207,1607903231,1607904511,1607904767,1607905023,1607905279,1607905535,1607905791,1607906303,1607906559,1607906815,1607907071,1607907327,1607908351,1607909375,1607910399,1607911423,1607912447,1607913471,1607914495,1607915519,1607916031,1607916287,1607916543,1607918591,1607919615,1607920639,1607921663,1607922687,1607923711,1607924735,1607925759,1607926783,1607927807,1607928063,1607928319,1607928575,1607928831,1607929855,1607930879,1607933951,1607934975,1607935999,1607937023,1607938047,1607939071,1607940095,1607940351,1607940607,1607940863,1607941119,1607942143,1607943167,1607944191,1607945215,1607946239,1607947263,1607948287,1607949311,1607950335,1607952383,1607953407,1607956479,1607957503,1607958527,1607959551,1607960575,1607961599,1607962623,1607963647,1607965695,1607966719,1607967743,1607968767,1607969791,1607970047,1607970303,1607970815,1607972863,1607974911,1607976959,1607977983,1607979007,1607980031,1607981055,1607982079,1607982847,1607983103,1607984127,1607985151,1607986175,1607986431,1607986687,1607988223,1607989247,1607991295,1608122367,1608253439,1608384511,1608515583,1610612735,1610615807,1610618879,1610621951,1610625023,1610628095,1610631167,1610634239,1610636799,1610637311,1610640383,1610640639,1610641407,1610646271,1610646527,1610649599,1610651647,1610653695,1610678271,1610743807,1611006975,1611007999,1611010047,1611011071,1611014143,1611016191,1611016447,1611016703,1611017215,1611017471,1611036159,1611036415,1611036671,1611037183,1611037695,1611037951,1611038207,1611042815,1611043071,1611043327,1611043583,1611043839,1611044095,1611044351,1611044607,1611044863,1611046399,1611046911,1611055103,1611059199,1611063295,1611071487,1611075583,1611079935,1611080191,1611080447,1611080703,1611081215,1611081727,1611084287,1611084543,1611086847,1611087871,1611088895,1611089919,1611096063,1611100159,1611104767,1611106303,1611108351,1611109375,1611110399,1611111423,1611122687,1611124735,1611125759,1611127551,1611127807,1611128319,1611130111,1611130623,1611130879,1611131903,1611132927,1611133183,1611133439,1611133695,1611134207,1611134975,1611135231,1611135743,1611135999,1611137023,1611218943,1611227135,1611235327,1611243519,1611247615,1611248639,1611249407,1611250687,1611251199,1611251455,1611251711,1611256319,1611257343,1611260415,1611260671,1611260927,1611261439,1611662335,1611662847,1611668479,1611668735,1611669503,1611670527,1611670783,1611671039,1611671295,1611671551,1611673599,1611673855,1611674879,1611675135,1611675391,1611675647,1611676671,1611677439,1611677695,1611678719,1611681791,1611682815,1611684095,1611684351,1611684863,1611686655,1611686911,1611687935,1611688959,1611689983,1611691007,1611692031,1611692287,1611692543,1611693055,1611693567,1611694079,1611696383,1611696639,1611696895,1611697151,1611702271,1611704319,1611705343,1611706623,1611706879,1611709951,1611710207,1611712511,1611713535,1611713791,1611714047,1611715327,1611715583,1611716095,1611717631,1611718655,1611720191,1611720447,1611722495,1611722751,1611724799,1611725311,1611725823,1611726847,1611727871,1611728895,1611730943,1611735039,1611744767,1611745023,1611745279,1611745535,1611745791,1611746047,1611749375,1611750143,1611751423,1611751679,1611753471,1611753983,1611754751,1611755007,1611760639,1611760895,1611765247,1611765503,1611768319,1611768575,1611768831,1611769087,1611769855,1611770367,1611771391,1611771647,1611772415,1611772927,1611773183,1611773439,1611773695,1611773951,1611774975,1611775999,1611776511,1611776767,1611777791,1611778047,1611779583,1611780095,1611786751,1611787007,1611788287,1611792383,1611923455,1612185599,1612595199,1612611583,1612627967,1613471743,1613479935,1613488127,1613492223,1613504511,1613529087,1613545471,1613565951,1613571583,1613571839,1613572095,1613572351,1613572863,1613573119,1613573375,1613573887,1613574143,1613578239,1613579263,1613579519,1613583359,1613583615,1613611007,1613615103,1613635583,1613643775,1613676543,1613680639,1613711871,1613712127,1613733887,1613737983,1613742079,1613758463,1614282751,1614741503,1614757887,1614774271,1614786559,1618837503,1618841599,1618845695,1618849791,1618850303,1618850815,1618862079,1618866175,1618870271,1618886655,1618886911,1618887167,1618887423,1618888191,1618888447,1618983423,1618983679,1618984959,1619001343,1631597055,1631597567,1631600895,1631601151,1632260095,1632262143,1632305151,1632321535,1632354303,1632362495,1634414591,1634418687,1634447359,1634451455,1634455551,1634460671,1634467839,1634729983,1644720127,1644723199,1644723455,1644724223,1644761087,1644761855,1644762623,1644765183,1644793855,1644795647,1644795903,1644796159,1644796415,1644796671,1644796927,1644797183,1644797439,1644797695,1648361471,1648427007,1648558079,1648576511,1648590847,1648623615,1648754687,1648787455,1648820223,1648852991,1648885759,1650499583,1650503679,1650505727,1650507775,1650522879,1650523135,1650536447,1650536703,1650536959,1650537215,1650537471,1650537727,1650537983,1650538239,1650538495,1650543103,1650543359,1650543615,1650543871,1650544127,1650544639,1650558207,1650558463,1650565119,1650565631,1650566143,1650581503,1650585599,1650589695,1650590207,1650591231,1650591743,1650591999,1650592255,1650592767,1650595071,1650595327,1650596351,1650596607,1650596863,1650597119,1650597375,1650597887,1650598655,1650598911,1650599167,1650599423,1650599935,1650600959,1650601471,1650601983,1650603007,1650603519,1650603775,1650605055,1650609151,1650609663,1650615807,1650616063,1650616319,1650616831,1650617343,1650617855,1650618367,1650618879,1650619391,1650620415,1650622463,1650622975,1650623487,1650624511,1650625535,1650626047,1650626559,1650627071,1650627583,1650628095,1650628607,1650629119,1650629631,1650630655,1650631167,1650631423,1650631679,1650632191,1650632959,1650633215,1650633727,1650634239,1650634751,1650635263,1650635775,1650636287,1650636543,1650636799,1650637055,1650637311,1650637823,1650638079,1650638335,1650638847,1650639359,1650639871,1650640383,1650640639,1650640895,1650641407,1650641919,1650642431,1650642943,1650643455,1650643967,1650644991,1650645503,1650646015,1650646527,1650646783,1650647039,1650647295,1650647551,1650648063,1650648319,1650648575,1650649855,1650650367,1650650623,1650650879,1650651135,1650652159,1650652671,1650653439,1650654207,1650654463,1650654719,1650655231,1652293631,1652310015,1652327679,1652327935,1652329471,1652329727,1652330239,1652330495,1652339711,1652339967,1652341503,1652341759,1652555775,1652621311,1652626943,1652627455,1652630271,1652630527,1652653567,1652653823,1652664575,1652664831,1652668671,1652668927,1652677631,1652677887,1652678143,1652678399,1652679167,1652679423,1652679679,1652680447,1652680703,1652681727,1652683263,1652684799,1652685055,1652686335,1652686591,1652686847,1652817919,1653514239,1653518335,1653535487,1653535743,1653535999,1653536255,1653536767,1653537023,1653537279,1653537535,1653537791,1653538047,1653538303,1653538559,1653538815,1653555199,1653567487,1653571583,1653575679,1653592063,1653596159,1653600255,1653604351,1654525951,1654530047,1654542335,1654543103,1654543359,1654546431,1654549503,1654549759,1654550015,1654550527,1654554623,1654558719,1654567167,1654567679,1654567935,1654568191,1654568703,1654582783,1654583039,1654584575,1654585343,1654586367,1654587391,1654596607,1654596863,1654597119,1654597375,1654597631,1654598399,1654598655,1654599167,1654599423,1654645247,1654645503,1654646271,1654646527,1654647039,1654647295,1654648831,1654652927,1656635391,1656635647,1656636927,1656637183,1656642047,1656642303,1665990655,1665997823,1666004991,1666007039,1666024703,1666024959,1666025215,1666025471,1666025727,1666025983,1666026239,1666026751,1666027007,1666027263,1666027519,1666027775,1666028031,1666028287,1666028543,1666028799,1666029055,1666029311,1666030335,1666030591,1666030847,1666031103,1666031359,1666031615,1666031871,1666032127,1666032383,1666032639,1666050303,1666050559,1666050815,1666051071,1666051327,1666051583,1666051839,1666052095,1666052351,1666052607,1666052863,1666053375,1666053631,1666053887,1666054143,1666054399,1666054655,1666054911,1666088959,1666096127,1666099711,1666100223,1666100479,1666103295,1666105343,1666109439,1666110463,1666111487,1666112511,1666113535,1666114559,1666121727,1666187263,1666318335,1666319359,1666351103,1666358271,1666359295,1666359551,1666359807,1666360063,1666360319,1666360575,1666361343,1666361599,1666361855,1666362111,1666362623,1666362879,1666363135,1666365439,1666366463,1666402303,1666404351,1666405375,1666406399,1666408447,1666408703,1666409215,1666409471,1666409727,1666409983,1666410239,1666410495,1666410751,1666414591,1666415615,1666449407,1666453503,1666457599,1666461695,1666465791,1666469887,1666473983,1666482175,1666486271,1666490367,1666580479,1666582783,1666588671,1666590975,1666595071,1666596863,1666597119,1666603007,1666605055,1666607359,1666611455,1666613247,1666615551,1666617343,1666619647,1666623743,1666627839,1666629631,1666631935,1666633727,1666636031,1666637823,1666640127,1666644223,1666646015,1666647039,1666654207,1666655231,1670778879,1670780927,1670782975,1670785023,1670787071,1670789119,1670791167,1670793215,1670795263,1670797311,1670799359,1670801407,1670803455,1670805503,1670807551,1670856703,1670858751,1670860799,1670862847,1670864895,1670866943,1670868991,1670871039,1670873087,1670875135,1670877183,1670879231,1670881279,1670883327,1670885375,1670888447,1670888959,1672822783,1672826879,1672828927,1672832511,1672832767,1673527295,1673560063,1673936895,1673938943,1673945087,1673986047,1674051583,1674575871,1674883839,1674884095,1674884351,1674884607,1677721599,1680479231,1680480255,1680535551,1680539647,1680556031,1680556287,1680558079,1680558591,1680558847,1680559103,1680559615,1680560127,1680561919,1680562175,1680564223,1680572415,1681915903,1686110207,1694498815,1694499839,1694500863,1694501375,1694501631,1694501887,1694503935,1694504447,1694504959,1694505471,1694507007,1694515199,1694531583,1694564351,1694565375,1694565631,1694565887,1694566399,1694568447,1694568959,1694569215,1694572543,1694580735,1694629887,1694662655,1694670847,1694672895,1694673919,1694674943,1694679039,1694695423,1694760959,1695023103,1695547391,1696595967,1696616447,1696620543,1696622591,1696641023,1696653311,1696654335,1696656895,1696662015,1696662527,1696663551,1696664063,1696664575,1696665599,1696665855,1696666111,1696666623,1696667135,1696667391,1696667647,1696667903,1696668671,1696669183,1696669695,1696671999,1696674815,1696675839,1696676863,1696677887,1696687103,1696691199,1696694271,1696882687,1696883199,1696883711,1696884223,1696884735,1696885247,1696887295,1696887551,1696887807,1696890879,1697382399,1697386495,1697390591,1697394687,1697394943,1697395199,1697411071,1697415167,1697419263,1697423359,1697427455,1697431551,1697435647,1697436671,1697437695,1697438719,1697439743,1697440767,1697441791,1697442815,1697446911,1697447167,1697447423,1697447679,1697447935,1697513471,1697517567,1697521663,1697525759,1697529855,1697533951,1697538047,1697546239,1697548287,1697550335,1697552383,1697554431,1697556479,1697558527,1697560575,1697562623,1697564671,1697566719,1697570815,1697571839,1697572863,1697573887,1697576959,1697577983,1697578239,1697578495,1697578751,1697595391,1697595647,1697596415,1697596671,1697599487,1697599999,1697600255,1697600511,1697644543,1697775615,1697776639,1697777663,1697779711,1697783807,1697789951,1697790975,1697791999,1697808383,1697841151,1697906687,1697972223,1697988607,1697996799,1697997823,1697998847,1698004991,1698013183,1698021375,1698029567,1698037759,1698103295,1698136063,1698160639,1698162687,1698168831,1698430975,1698562047,1698693119,1699611647,1699612671,1699614719,1699618815,1699627007,1699643391,1699676159,1699741695,1700793343,1700794367,1700798463,1700806655,1700823039,1700855807,1700863999,1700872191,1700873215,1700888575,1700921343,1700986879,1701003263,1701011455,1701019647,1701052415,1701093375,1701117951,1701134335,1701142527,1701143039,1701143295,1701143551,1701143807,1701144063,1701150719,1701183487,1701199871,1701208063,1701209087,1701209855,1701210111,1701216255,1701249023,1701314559,1701576703,1701707775,1701724159,1701736447,1701737471,1701740543,1701838847,1702363135,1702821887,1702887423,1702888447,1702889471,1702903807,1702920191,1702952959,1703411711,1703673855,1703935999,1704984575,1705488383,1705489407,1705490431,1705491455,1705494527,1705497599,1705500671,1707081727,1707737087,1707802623,1707824127,1707824639,1707835391,1707845631,1707846655,1707851775,1707868159,1708130303,1709178879,1709834239,1709841151,1709841407,1709850623,1709852671,1709853695,1709867007,1709872127,1709872639,1709873151,1709899775,1709965311,1710882815,1710948351,1710949375,1710950399,1711210495,1711276031,1711800319,1712324607,1712717823,1712726015,1712739327,1712740351,1712742399,1712743423,1712744447,1712745471,1712746495,1712750591,1712766975,1712771071,1712773119,1712775167,1712777215,1712778239,1712783359,1712799743,1712803839,1712804863,1712805887,1712807935,1712808959,1712812031,1712813055,1712814079,1712815103,1712817151,1712818175,1712819199,1712820223,1712825343,1712826367,1712839167,1712839679,1712840703,1712848895,1713373183,1713504255,1713569791,1713635327,1713668095,1713669119,1713670143,1713671167,1713672191,1713672447,1713672703,1713672959,1713673215,1713674239,1713676287,1713676543,1713676799,1713677311,1713678335,1713679359,1713680383,1713681407,1713681663,1713681919,1713682175,1713682431,1713682943,1713683455,1713684479,1713684991,1713685503,1713689599,1713690623,1713692671,1713693695,1713694719,1713695743,1713696767,1713697791,1713698815,1713766399,1713774591,1713778687,1713779711,1713780735,1713781759,1713799167,1713807359,1713815551,1713817343,1713817599,1713818623,1713818879,1713823743,1713823999,1713824255,1713825023,1713825279,1713825535,1713825791,1713826047,1713826303,1713826559,1713826815,1713827071,1713827327,1713827583,1713827839,1713828095,1713828351,1713829375,1713829631,1713829887,1713830143,1713830399,1713831167,1713831423,1713831679,1713831935,1713897471,1714421759,1714946047,1715470335,1715471359,1715471871,1715472383,1715474431,1715482623,1715484671,1715485183,1715485439,1715485695,1715486719,1715488767,1715489791,1715490815,1715493887,1715494911,1715495167,1715495423,1715495935,1715496191,1715496447,1715496959,1715497471,1715497727,1715497983,1715498239,1715498495,1715499007,1715500031,1715501055,1715502079,1715503103,1715535871,1715666943,1715679231,1715682303,1715683327,1715691519,1715699711,1715703807,1715704831,1715705855,1715706879,1715707903,1715708927,1715709951,1715710975,1715711999,1715715071,1715716095,1715732479,1715734527,1715735551,1715736575,1715737599,1715738111,1715738367,1715738623,1715740671,1715742719,1715744767,1715745791,1715746815,1715748863,1715749887,1715750399,1715750655,1715750911,1715751935,1715752959,1715753727,1715753983,1715754495,1715755007,1715757567,1715757823,1715758079,1715759103,1715761151,1715764223,1715764479,1715764735,1715764991,1715765247,1715767295,1715768319,1715768575,1715769087,1715769343,1715771391,1715772415,1715775487,1715776511,1715777535,1715778559,1715779583,1715780607,1715781631,1715798015,1715830783,1715834879,1715835903,1715836159,1715836671,1715836927,1715837951,1715838975,1715839231,1715839743,1715839999,1715841023,1715844095,1715845119,1715852287,1715853311,1715854335,1715855359,1715858431,1715859199,1715859455,1715860479,1715860991,1715861503,1715863551,1715994623,1716518911,1717043199,1717043455,1717043711,1717567487,1717572863,1717573119,1718091775,1718616063,1719140351,1719664639,1719681023,1719683583,1719683839,1719684095,1719685119,1719697407,1719699455,1719706623,1719706879,1719707135,1719707391,1719707647,1719709695,1719711743,1719712767,1719713791,1719730175,1719738367,1719739391,1719740415,1719746559,1719746815,1719747071,1719747327,1719754751,1719762943,1719763455,1719763711,1719764479,1719764735,1719765503,1719766015,1719766783,1719767039,1719767295,1719769855,1719770111,1719770367,1719770623,1719770879,1719771135,1719771391,1719771647,1719772415,1719772671,1719772927,1719773183,1719773439,1719774463,1719774719,1719776255,1719776511,1719776767,1719777279,1719777535,1719777791,1719778047,1719778303,1719778815,1719779327,1719779839,1719780095,1719780863,1719781119,1719781375,1719782399,1719782655,1719782911,1719783423,1719783935,1719784191,1719784447,1719786495,1719787007,1719787775,1719788031,1719788287,1719788543,1719788799,1719789055,1719791359,1719791615,1719791871,1719792127,1719792639,1719792895,1719793151,1719793407,1719795711,1719797759,1719798783,1719803903,1719805951,1719807999,1719808255,1719809023,1719810047,1719812095,1719814143,1719820799,1719821311,1719821567,1719821823,1719822079,1719822335,1719844863,1719853055,1719855103,1719856127,1719859199,1719861247,1719865343,1719865599,1719865855,1719867391,1719868415,1719869439,1719870463,1719871487,1719875583,1719876607,1719877631,1719926783,1719930879,1719934975,1719948287,1719951359,1719951615,1719951871,1719952639,1719952895,1719953407,1719954175,1719954431,1719955455,1719955711,1719955967,1719956223,1719956479,1719956735,1719956991,1719957247,1719957503,1719957759,1719958015,1719958271,1719958527,1719958783,1719959295,1719959551,1720061951,1720063487,1720063999,1720065023,1720066047,1720077311,1720078335,1720079359,1720080383,1720082431,1720086527,1720087551,1720090879,1720091135,1720091647,1720092671,1720093695,1720096767,1720098815,1720102911,1720123391,1720127487,1720131583,1720135679,1720139775,1720141823,1720143871,1720147967,1720165375,1720166399,1720168447,1720170495,1720171519,1720171775,1720172031,1720172287,1720172543,1720180735,1720181247,1720181759,1720182015,1720182271,1720184831,1720188927,1720451071,1720455167,1720457983,1720459007,1720459263,1720463359,1720475647,1720477695,1720479743,1720481791,1720483839,1720492031,1720496127,1720500223,1720505343,1720505599,1720516607,1720532991,1720545279,1720547327,1720566783,1720567807,1720568831,1720569855,1720570879,1720571903,1720573951,1720574975,1720575999,1720576255,1720576767,1720577023,1720578047,1720582143,1720647679,1720680447,1720713215,1721237503,1721761791,1721972991,1721973247,1722023935,1722032127,1722034175,1722035199,1722036223,1722037247,1722038271,1722039295,1722040319,1722048511,1722050559,1722052607,1722053119,1722053631,1722054655,1722054911,1722055167,1722055423,1722055679,1722056703,1722073087,1722081279,1722085375,1722086399,1722087167,1722087423,1722089471,1722089727,1722089983,1722090239,1722090495,1722090751,1722091007,1722091263,1722092031,1722092287,1722092543,1722092799,1722093823,1722094079,1722094335,1722094847,1722095103,1722095359,1722095615,1722095871,1722096127,1722096639,1722096895,1722097919,1722098431,1722098687,1722099711,1722100223,1722100479,1722100991,1722101247,1722101503,1722101759,1722102271,1722102527,1722102783,1722103807,1722104063,1722104319,1722104575,1722105087,1722105343,1722114047,1722118143,1722119167,1722121215,1722122239,1722130431,1722136575,1722137599,1722137855,1722138111,1722138367,1722138623,1722155007,1722286079,1722810367,1722843135,1722843647,1722843903,1722851327,1722855423,1722856447,1722857471,1722857727,1722857983,1722858495,1722859519,1722871807,1722873855,1722874367,1722874623,1722874879,1722875647,1722875903,1722894335,1722895359,1722896383,1722898431,1722901503,1722902527,1722904575,1722905087,1722905343,1722907391,1722907647,1722907903,1722908415,1722908671,1722910719,1722911743,1722911999,1722913279,1722913791,1722914815,1722915839,1722916863,1722920959,1722921215,1722921471,1722921983,1722922239,1722923007,1722923263,1722923519,1722924031,1722924287,1722924543,1722924799,1722925055,1722927103,1722941439,1723138047,1723195391,1723203583,1723269119,1723334655,1723858943,1724999679,1725000703,1725001727,1725002751,1725005823,1725006847,1725007871,1725008895,1725010943,1725011967,1725012223,1725012479,1725012735,1725012991,1725014015,1725015039,1725016063,1725017087,1725018111,1725019135,1725020159,1725021183,1725021695,1725021951,1725023231,1725024255,1725025279,1725026303,1725027327,1725028351,1725029375,1725032447,1725033471,1725033983,1725034239,1725034495,1725035519,1725036543,1725037567,1725038591,1725039615,1725040639,1725041663,1725042687,1725043711,1725044735,1725046783,1725047807,1725048831,1725049855,1725050879,1725051903,1725052159,1725052415,1725052927,1725053951,1725054975,1725055999,1725057023,1725058047,1725059071,1725060095,1725061119,1725062143,1725063167,1725064191,1725064703,1725065215,1725066239,1725067263,1725068287,1725069311,1725070335,1725071359,1725074431,1725075455,1725076479,1725078527,1725079039,1725079295,1725079551,1725080575,1725081599,1725081855,1725082111,1725082367,1725082623,1725083647,1725084671,1725085695,1725087231,1725087743,1725087999,1725088255,1725088767,1725089791,1725090815,1725091839,1725092095,1725092351,1725092863,1725093887,1725094911,1725095935,1725096959,1725097983,1725099007,1725100031,1725100543,1725100799,1725101055,1725101311,1725101567,1725102079,1725103103,1725103359,1725103615,1725104127,1725105151,1725106175,1725107199,1725108223,1725109247,1725109759,1725110015,1725110271,1725111295,1725112319,1725113343,1725114367,1725115391,1725117439,1725117951,1725118207,1725118463,1725119487,1725120511,1725121535,1725122559,1725123583,1725124607,1725125631,1725126655,1725127679,1725128703,1725129727,1725130751,1725131007,1725131263,1725131519,1725131775,1725132799,1725133311,1725133823,1725134847,1725135103,1725135359,1725135615,1725136895,1725137919,1725138943,1725139967,1725140991,1725142015,1725143039,1725143807,1725144063,1725145087,1725145855,1725147135,1725148159,1725149183,1725153279,1725154303,1725154815,1725155071,1725155327,1725156351,1725157375,1725157631,1725158399,1725160447,1725161471,1725162495,1725163007,1725166591,1725167615,1725168639,1725170943,1725171199,1725171711,1725172223,1725172479,1725172735,1725172991,1725176831,1725177855,1725179903,1725180927,1725183999,1725185023,1725186559,1725186815,1725187071,1725188095,1725189119,1725190143,1725190399,1725190655,1725191167,1725192191,1725193215,1725194239,1725195263,1725197311,1725200383,1725203455,1725204479,1725205503,1725206015,1725206527,1725210623,1725211135,1725211391,1725211647,1725214207,1725214463,1725214719,1725215743,1725216767,1725217791,1725218815,1725220863,1725221887,1725222143,1725222399,1725223935,1725224959,1725225983,1725227007,1725228031,1725228287,1725228543,1725228799,1725229055,1725230079,1725231103,1725232127,1725233151,1725234175,1725235199,1725237247,1725238271,1725239295,1725239807,1725240319,1725242367,1725243391,1725244415,1725245439,1725246463,1725247487,1725248511,1725249023,1725249279,1725249535,1725250559,1725251583,1725252607,1725253631,1725254655,1725255679,1725256703,1725258751,1725259775,1725263871,1725264895,1725265919,1725266943,1725270015,1725271039,1725274111,1725274623,1725276159,1725277183,1725278207,1725278463,1725278719,1725278975,1725279231,1725280255,1725280511,1725280767,1725281023,1725281279,1725282303,1725283327,1725284351,1725285375,1725286399,1725287423,1725288447,1725289471,1725289983,1725290495,1725291519,1725292543,1725293567,1725294591,1725295615,1725296639,1725296895,1725297407,1725297663,1725298687,1725299711,1725300735,1725301759,1725302783,1725304063,1725304319,1725304575,1725304831,1725305855,1725306879,1725307903,1725309951,1725310975,1725311999,1725314047,1725315071,1725317119,1725317887,1725318143,1725321215,1725322239,1725323263,1725323519,1725323775,1725324031,1725324287,1725325311,1725326335,1725327359,1725328383,1725329407,1725330431,1725331455,1725332479,1725332991,1725333247,1725333503,1725334527,1725335551,1725336575,1725337087,1725337343,1725337599,1725338623,1725339647,1725340671,1725341695,1725342719,1725343743,1725344767,1725348095,1725348351,1725348863,1725349119,1725349375,1725349631,1725349887,1725353983,1725355007,1725356031,1725357055,1725357567,1725358079,1725359103,1725361151,1725362175,1725363199,1725363711,1725363967,1725364223,1725365247,1725366271,1725367295,1725368319,1725369343,1725370367,1725371391,1725372415,1725373439,1725374463,1725375487,1725376511,1725377535,1725378559,1725379071,1725379583,1725380607,1725381119,1725381375,1725381631,1725382655,1725385727,1725386751,1725387775,1725388799,1725389823,1725390079,1725390335,1725390591,1725390847,1725391103,1725391615,1725391871,1725392895,1725393919,1725394943,1725395967,1725398015,1725399039,1725401087,1725402111,1725403135,1725404159,1725405183,1725406207,1725407231,1725408255,1725409279,1725410303,1725411327,1725412351,1725414399,1725415423,1725416447,1725417471,1725418495,1725419519,1725421567,1725422079,1725422591,1725423103,1725423615,1725424639,1725425151,1725425663,1725426687,1725430783,1725431807,1725433855,1725434879,1725435903,1725437183,1725437439,1725437695,1725437951,1725438207,1725438463,1725438719,1725438975,1725439999,1725441023,1725441535,1725441791,1725442047,1725443071,1725447167,1725448191,1725450239,1725452799,1725453311,1725454335,1725455359,1725456383,1725457407,1725458431,1725459455,1725460479,1725461503,1725462015,1725462271,1725462527,1725463551,1725464575,1725465087,1725465343,1725465599,1725465855,1725466111,1725466623,1725467647,1725468671,1725470719,1725471231,1725471743,1725473791,1725474815,1725475839,1725476863,1725477887,1725478911,1725480959,1725481983,1725483007,1725484031,1725485055,1725486079,1725486591,1725487103,1725488127,1725490175,1725491199,1725492223,1725492735,1725493247,1725494271,1725495295,1725496319,1725497343,1725498367,1725499391,1725500415,1725501439,1725502463,1725503487,1725504511,1725509631,1725510655,1725511167,1725511679,1725512703,1725513727,1725514751,1725515519,1725515775,1725516799,1725517823,1725518847,1725520895,1725521919,1725522943,1725523967,1725526015,1725527039,1725528063,1725531135,1725531391,1725531647,1725532159,1725533183,1725534207,1725535231,1725536255,1725537279,1725538303,1725539327,1725539583,1725539839,1725540095,1725540351,1725541375,1725541887,1725543423,1725544447,1725546495,1725547519,1725549567,1725550847,1725551103,1725551359,1725551615,1725552639,1725557759,1725558015,1725558271,1725558527,1725558783,1725559807,1725560831,1725562367,1725562623,1725562879,1725563903,1725564927,1725565439,1725565951,1725566975,1725567999,1725569023,1725570047,1725571071,1725572095,1725573119,1725575167,1725576191,1725577215,1725578239,1725580287,1725581311,1725582335,1725584383,1725585407,1725586431,1725587455,1725587967,1725588223,1725588479,1725588991,1725589247,1725589503,1725590527,1725591551,1725592575,1725593599,1725594623,1725595647,1725595903,1725596159,1725596415,1725596671,1725597695,1725598719,1725599743,1725600767,1725601791,1725603839,1725604863,1725605887,1725606911,1725607935,1725608959,1725609983,1725611007,1725612031,1725613055,1725614079,1725615103,1725616127,1725617151,1725620223,1725621247,1725622271,1725623295,1725624319,1725625343,1725626367,1725627391,1725628415,1725629439,1725630463,1725634047,1725634303,1725634559,1725635583,1725635839,1725636095,1725636351,1725636607,1725637631,1725638655,1725639679,1725640703,1725641727,1725642751,1725645823,1725646847,1725647359,1725647615,1725647871,1725648895,1725649151,1725649407,1725649663,1725649919,1725650431,1725650943,1725651967,1725652223,1725652479,1725652991,1725654015,1725655039,1725656063,1725657087,1725658111,1725659135,1725660159,1725661183,1725661439,1725662207,1725663231,1725663999,1725664255,1725665279,1725667327,1725668351,1725670399,1725671423,1725672447,1725672703,1725672959,1725673471,1725673727,1725673983,1725674239,1725674495,1725675007,1725675519,1725676543,1725677055,1725678079,1725678591,1725680639,1725681151,1725681407,1725681663,1725682687,1725683711,1725684735,1725685759,1725686271,1725686527,1725686783,1725688831,1725689087,1725689343,1725689855,1725690879,1725691903,1725692927,1725693951,1725695999,1725697023,1725698047,1725698303,1725698559,1725698815,1725699071,1725699327,1725699583,1725700095,1725701119,1725702143,1725702399,1725703167,1725704191,1725705215,1725706239,1725708287,1725709311,1725712383,1725713407,1725717503,1725718527,1725719551,1725719807,1725720063,1725721599,1725722623,1725723647,1725724159,1725724415,1725724671,1725725695,1725725951,1725726207,1725726719,1725727231,1725727743,1725728767,1725729791,1725730815,1725731839,1725732863,1725733887,1725734399,1725734911,1725735935,1725736959,1725737983,1725738239,1725738495,1725738751,1725739007,1725740031,1725741055,1725742079,1725743103,1725744127,1725745151,1725746175,1725747199,1725748223,1725749247,1725750271,1725750527,1725750783,1725751039,1725751295,1725752319,1725753343,1725754367,1725755391,1725756415,1725757439,1725757695,1725757951,1725758207,1725758463,1725760511,1725760767,1725761535,1725762559,1725763583,1725764607,1725765631,1725766655,1725767679,1725768703,1725770751,1725771775,1725772799,1725773823,1725774847,1725775871,1725776895,1725777919,1725778175,1725778431,1725778687,1725778943,1725780991,1725783039,1725784063,1725784575,1725785087,1725786111,1725787135,1725788159,1725788671,1725789183,1725789439,1725789695,1725791231,1725792255,1725793279,1725794303,1725795327,1725795839,1725796351,1725798399,1725798655,1725798911,1725800447,1725802495,1725803519,1725804543,1725806079,1725806591,1725807615,1725807871,1725808127,1725808383,1725808639,1725809663,1725816831,1725817855,1725818879,1725819903,1725820927,1725821951,1725826047,1725827071,1725828095,1725829119,1725830143,1725831167,1725831935,1725832191,1725833215,1725834239,1725835263,1725836287,1725837311,1725838335,1725839359,1725840383,1725840639,1725840895,1725841407,1725841919,1725842431,1725843455,1725843711,1725843967,1725844479,1725844735,1725844991,1725846015,1725846527,1725847551,1725848575,1725849599,1725850623,1725851647,1725852671,1725854719,1725855743,1725856767,1725858815,1725859839,1725860863,1725861887,1725862911,1725863935,1725864959,1725869055,1725869311,1725869567,1725870079,1725871103,1725876223,1725877247,1725878271,1725879295,1725880319,1725881343,1725882367,1725883391,1725884415,1725885439,1725885951,1725886463,1725887487,1725888511,1725889535,1725890047,1725890303,1725890559,1725890815,1725891071,1725891327,1725891583,1725892095,1725892351,1725893631,1725894655,1725895679,1725896703,1725897727,1725898751,1725899775,1725900799,1725902847,1725903103,1725903359,1725903871,1725904895,1725905919,1725906431,1725906943,1725907967,1725908991,1725909247,1725910015,1725910271,1725910527,1725910783,1725911039,1725912063,1725913087,1725914111,1725914623,1725914879,1725915135,1725916159,1725916415,1725916671,1725916927,1725918207,1725918719,1725918975,1725919231,1725919743,1725920255,1725921279,1725922303,1725923327,1725924351,1725925375,1725926399,1725927423,1725928447,1725929471,1725929983,1725930495,1725931519,1725932543,1725933567,1725934591,1725934847,1725935103,1725935615,1725936639,1725937151,1725937663,1725938687,1725939711,1725940735,1725942783,1725943295,1725943807,1725944831,1725945855,1725946879,1725947903,1725952511,1725953023,1725954047,1725954303,1725954559,1725954815,1725955071,1725955583,1725955839,1725956095,1727004671,1727266815,1727528959,1728053247,1728120063,1728120319,1728120575,1728120831,1728121855,1728123903,1728125951,1728126975,1728130047,1728131071,1728131583,1728132095,1728134399,1728134655,1728134911,1728135167,1728135423,1728136191,1728137215,1728138239,1728139263,1728140287,1728141311,1728142335,1728143359,1728144383,1728145407,1728146431,1728147455,1728148479,1728149503,1728150527,1728152575,1728153599,1728154623,1728155647,1728157695,1728158463,1728158719,1728159231,1728159487,1728159743,1728161791,1728162815,1728163839,1728164863,1728165887,1728168959,1728169215,1728169471,1728169983,1728171007,1728172031,1728173055,1728175103,1728176127,1728177151,1728178175,1728179199,1728180223,1728181247,1728203775,1728204799,1728205823,1728206847,1728207871,1728208895,1728210943,1728211967,1728212991,1728214015,1728215039,1728216063,1728218111,1728219135,1728220159,1728221183,1728222207,1728224255,1728225279,1728226303,1728227327,1728230399,1728231423,1728232447,1728232959,1728233471,1728235519,1728239615,1728240639,1728243711,1728245759,1728246783,1728254207,1728254719,1728254975,1728255999,1728257023,1728258047,1728259071,1728260095,1728261119,1728262143,1728264191,1728265215,1728266239,1728267263,1728268287,1728269311,1728270335,1728271359,1728286719,1728287743,1728290815,1728291839,1728292095,1728292351,1728292607,1728292863,1728293887,1728294399,1728294911,1728295935,1728299007,1728300031,1728300287,1728300543,1728300799,1728301055,1728302079,1728303103,1728305151,1728306175,1728307199,1728308223,1728309247,1728309759,1728310271,1728310783,1728311295,1728312319,1728315391,1728316415,1728317439,1728319487,1728320511,1728321535,1728321791,1728322559,1728323583,1728324607,1728325631,1728326655,1728327679,1728328703,1728329471,1728329727,1728330751,1728331775,1728332799,1728333823,1728334847,1728335359,1728335871,1728336895,1728337919,1728338943,1728339967,1728340991,1728341503,1728342015,1728342271,1728342527,1728343039,1728344063,1728344575,1728345087,1728346111,1728346367,1728346623,1728347135,1728348159,1728349183,1728349695,1728350207,1728351231,1728352255,1728353279,1728354303,1728355327,1728356351,1728357375,1728358399,1728359423,1728359935,1728360447,1728362495,1728363519,1728364543,1728365567,1728366591,1728367615,1728367871,1728368127,1728368639,1728369663,1728370687,1728371711,1728372735,1728373759,1728374783,1728375039,1728375295,1728376831,1728377855,1728378623,1728379903,1728380927,1728382975,1728383999,1728385023,1728386047,1728387071,1728388095,1728388351,1728388607,1728389119,1728390143,1728391167,1728392191,1728393215,1728394239,1728394751,1728395263,1728396287,1728397311,1728397823,1728398335,1728398847,1728399103,1728400383,1728400895,1728401151,1728401407,1728402431,1728403455,1728406527,1728407551,1728407807,1728408063,1728408319,1728408575,1728409599,1728410623,1728411647,1728412159,1728412671,1728413695,1728414719,1728415743,1728416767,1728417791,1728418815,1728419327,1728419583,1728419839,1728420863,1728421887,1728422911,1728423935,1728424959,1728425983,1728427007,1728428031,1728430079,1728431103,1728431871,1728432127,1728433151,1728435199,1728435967,1728436223,1728436735,1728436991,1728438271,1728439295,1728439807,1728440319,1728441343,1728442367,1728443391,1728444415,1728445439,1728446463,1728446975,1728447231,1728447487,1728448511,1728449535,1728450559,1728451583,1728452607,1728453119,1728453631,1728454655,1728455167,1728455423,1728455679,1728457727,1728458751,1728459775,1728460799,1728462847,1728463871,1728464895,1728465919,1728466943,1728467967,1728468735,1728469247,1728469503,1728470015,1728471039,1728472063,1728473087,1728473343,1728473599,1728474111,1728475135,1728476159,1728476415,1728476927,1728477183,1728477695,1728478207,1728479231,1728480255,1728481279,1728483327,1728484351,1728485375,1728486399,1728487423,1728487935,1728488191,1728488447,1728488703,1728488959,1728489215,1728489471,1728489983,1728490495,1728491519,1728492543,1728492799,1728493055,1728493567,1728494591,1728495615,1728496639,1728497663,1728499711,1728500735,1728501247,1728501503,1728502783,1728503807,1728504831,1728505855,1728506367,1728506879,1728507903,1728508927,1728509951,1728510463,1728510975,1728511999,1728512511,1728512767,1728513023,1728513535,1728514047,1728515071,1728516095,1728517119,1728518143,1728519167,1728520191,1728521215,1728523263,1728524287,1728525311,1728525823,1728526335,1728527359,1728528383,1728529407,1728529919,1728530431,1728531455,1728532479,1728533503,1728534527,1728535551,1728536575,1728537087,1728537599,1728538623,1728539647,1728540671,1728541695,1728542719,1728543743,1728544767,1728545791,1728546559,1728546815,1728547839,1728548863,1728549119,1728549375,1728549631,1728549887,1728550911,1728551935,1728552959,1728553215,1728553471,1728553983,1728555007,1728556031,1728556287,1728556543,1728557055,1728557311,1728557567,1728558079,1728559103,1728560127,1728560639,1728561151,1728561663,1728562175,1728562431,1728562687,1728563199,1728564223,1728565247,1728566271,1728569343,1728569599,1728571391,1728572415,1728573439,1728574463,1728575487,1728576511,1728577535,1728580607,1728580863,1728581119,1728581631,1728582655,1728583679,1728584703,1728584959,1728585215,1728585727,1728586751,1728589823,1728590847,1728591871,1728592895,1728593151,1728593407,1728593663,1728594943,1728595967,1728596479,1728598015,1728598271,1728599039,1728599807,1728601087,1728602111,1728603135,1728604159,1728605183,1728606207,1728607231,1728608255,1728608511,1728608767,1728609023,1728610303,1728611327,1728613375,1728614399,1728615423,1728616447,1728617471,1728618495,1728619519,1728620543,1728622591,1728623615,1728623871,1728624127,1728624383,1728624639,1728625663,1728626175,1728626431,1728626687,1728627711,1728628735,1728630783,1728631807,1728632319,1728632575,1728632831,1728633855,1728634879,1728636159,1728636415,1728636671,1728636927,1728637951,1728638463,1728638719,1728638975,1728639487,1728639743,1728639999,1728641023,1728642047,1728643071,1728645119,1728646143,1728647167,1728648703,1728648959,1728649215,1728650239,1728651263,1728652287,1728653311,1728654335,1728655359,1728655871,1728656127,1728656383,1728661503,1728662527,1728665599,1728666623,1728668415,1728668671,1728669695,1728670207,1728670463,1728670719,1728671743,1728672767,1728673791,1728674815,1728675839,1728676863,1728678399,1728678655,1728678911,1728679423,1728679935,1728680959,1728681983,1728683007,1728684031,1728685055,1728686079,1728687103,1728688127,1728689151,1728689407,1728689663,1728689919,1728690175,1728691199,1728692223,1728693247,1728698367,1728699391,1728699903,1728700415,1728700671,1728700927,1728701183,1728701439,1728701951,1728702207,1728702463,1728703487,1728705535,1728706559,1728709631,1728710655,1728710911,1728711167,1728711423,1728711679,1728712703,1728713727,1728714751,1728715775,1728716799,1728717823,1728718079,1728718335,1728718847,1728719871,1728720895,1728721919,1728722943,1728723199,1728723455,1728726015,1728726527,1728727039,1728728063,1728728575,1728729087,1728729599,1728729855,1728730111,1728731135,1728732159,1728733183,1728734207,1728735231,1728736255,1728736511,1728736767,1728737279,1728738303,1728739327,1728740351,1728740863,1728741119,1728741375,1728742399,1728743423,1728744447,1728745471,1728747519,1728748543,1728750591,1728751615,1728751871,1728752639,1728753663,1728754687,1728755711,1728756735,1728757759,1728758271,1728758783,1728759807,1728760831,1728761855,1728762879,1728763903,1728764927,1728765439,1728765695,1728765951,1728766975,1728767999,1728768255,1728768511,1728769023,1728769279,1728770047,1728772095,1728772607,1728772863,1728773119,1728773375,1728773631,1728774143,1728775167,1728775679,1728776191,1728777215,1728778239,1728779263,1728779519,1728780287,1728781311,1728781567,1728781823,1728782335,1728783359,1728784383,1728785407,1728786431,1728787455,1728788479,1728789503,1728790527,1728792575,1728793087,1728793599,1728794623,1728796671,1728798719,1728799743,1728801279,1728801791,1728802815,1728803839,1728804863,1728805887,1728806911,1728807935,1728808959,1728809983,1728810495,1728810751,1728811007,1728812031,1728812543,1728813055,1728814079,1728815103,1728816127,1728816383,1728816639,1728816895,1728817151,1728818175,1728819199,1728819711,1728819967,1728820223,1728821247,1728821759,1728822271,1728823295,1728824319,1728824831,1728825343,1728826367,1728827391,1728828415,1728829439,1728830463,1728830719,1728830975,1728831487,1728832511,1728833535,1728834559,1728834815,1728835071,1728835583,1728836607,1728837631,1728838655,1728839679,1728839935,1728840191,1728840447,1728842751,1728843775,1728844799,1728845311,1728845567,1728845823,1728846847,1728847871,1728848895,1728849919,1728850943,1728851967,1728852223,1728852991,1728854015,1728854527,1728854783,1728855039,1728855551,1728857087,1728857599,1728858111,1728859135,1728859647,1728860159,1728860671,1728861183,1728861439,1728861695,1728862207,1728863231,1728863487,1728864255,1728864767,1728865279,1728866303,1728867327,1728868351,1728869375,1728870399,1728871423,1728872447,1728873471,1728874495,1728875519,1728877567,1728878591,1728879615,1728880127,1728880383,1728880639,1728881663,1728881919,1728882175,1728882431,1728882687,1728883711,1728885759,1728886271,1728886783,1728887807,1728888831,1728889855,1728890879,1728891903,1728892415,1728892927,1728893439,1728893695,1728893951,1728894975,1728895999,1728898047,1728899071,1728900095,1728901119,1728901375,1728901631,1728902143,1728902911,1728903167,1728905215,1728905471,1728905727,1728906239,1728907263,1728908287,1728909311,1728910335,1728912383,1728913407,1728914431,1728915199,1728915455,1728916479,1728916991,1728918527,1728919551,1728920575,1728921599,1728922623,1728923647,1728924159,1728924671,1728925695,1728927743,1728928767,1728929791,1728930815,1728931839,1728934911,1728935935,1728936959,1728937983,1728939007,1728939519,1728939775,1728940031,1728941055,1728942079,1728942335,1728942591,1728942847,1728943103,1728944127,1728945151,1728946175,1728947199,1728947711,1728948223,1728949247,1728950271,1728950783,1728951551,1728951807,1728952063,1728952319,1728952831,1728953343,1728954367,1728954879,1728955391,1728956415,1728957951,1728958463,1728958975,1728959231,1728959487,1728960511,1728961279,1728961535,1728962559,1728963583,1728964607,1728965631,1728966655,1728966911,1728967423,1728967679,1728968703,1728970751,1728971007,1728971263,1728971519,1728971775,1728972799,1728973823,1728974847,1728976383,1728976895,1728977151,1728977407,1728977663,1728977919,1728978943,1728979967,1728980991,1728982015,1728982527,1728982783,1728983039,1728983551,1728984063,1728985599,1728986111,1728987135,1728988159,1728989183,1728989695,1728990207,1728990719,1728990975,1728991231,1728992255,1728993279,1728994303,1728994815,1728995327,1728996351,1728996607,1728997375,1728998399,1728998655,1728998911,1728999423,1729000447,1729000959,1729001215,1729001471,1729003519,1729004543,1729006591,1729007615,1729008127,1729008639,1729008895,1729009663,1729010175,1729010687,1729011711,1729012735,1729013759,1729014271,1729014783,1729015807,1729016319,1729016575,1729016831,1729017855,1729018111,1729018367,1729018879,1729019903,1729020159,1729020415,1729020671,1729020927,1729021951,1729022207,1729022975,1729023999,1729025023,1729026047,1729027071,1729028095,1729029119,1729029375,1729029631,1729029887,1729030143,1729031167,1729032191,1729033215,1729034239,1729035263,1729036287,1729037311,1729039359,1729040383,1729041407,1729042687,1729042943,1729044479,1729044991,1729045247,1729045503,1729046015,1729046271,1729046527,1729047551,1729048575,1729049599,1729050623,1729053695,1729054719,1729055231,1729055487,1729055743,1729055999,1729056255,1729056767,1729057791,1729058815,1729059839,1729060351,1729060863,1729061887,1729062911,1729063935,1729064959,1729065983,1729067007,1729068031,1729068287,1729068543,1729069055,1729070079,1729071103,1729072127,1729072895,1729073151,1729074175,1729075199,1729076223,1729076735,1729076991,1729077247,1729077759,1729078271,1729079295,1729079807,1729080319,1729081343,1729081599,1729082111,1729082367,1729083391,1729085439,1729087487,1729088511,1729090559,1729091071,1729091583,1729093119,1729093631,1729094143,1729094399,1729094655,1729095679,1729096703,1729097215,1729097727,1729098751,1729099775,1729100543,1729100799,1729101823,1729102847,1729103359,1729103871,1729104895,1729105663,1729105919,1729106943,1729107967,1729108479,1729108991,1729111039,1729112063,1729113087,1729114111,1729114623,1729114879,1729115135,1729116159,1729117183,1729118207,1729119231,1729120255,1729121279,1729121535,1729122303,1729125375,1729127423,1729127935,1729128447,1729129471,1729130495,1729132543,1729133567,1729134591,1729135615,1729136127,1729136639,1729137663,1729139711,1729140735,1729141759,1729142783,1729143295,1729143807,1729144831,1729145855,1729146879,1729147903,1729148415,1729148927,1729149951,1729150975,1729151999,1729152255,1729153023,1729154047,1729155071,1729155583,1729156095,1729157119,1729158143,1729158399,1729158911,1729159167,1729159679,1729160191,1729161215,1729162239,1729163263,1729165311,1729166335,1729166847,1729167359,1729168383,1729169151,1729169407,1729170431,1729171455,1729171967,1729172223,1729172479,1729173503,1729174527,1729175551,1729176575,1729177599,1729178623,1729179647,1729180671,1729181695,1729182207,1729182463,1729182719,1729183743,1729184767,1729185791,1729186815,1729187327,1729187583,1729187839,1729189887,1729190911,1729191167,1729191423,1729191679,1729191935,1729192959,1729195007,1729195519,1729196031,1729197055,1729198079,1729199103,1729199615,1729199871,1729200127,1729201151,1729202175,1729203199,1729203711,1729204223,1729205247,1729205759,1729206271,1729207295,1729208319,1729209343,1729209599,1729210367,1729211391,1729212415,1729212927,1729213439,1729213951,1729214463,1729216511,1729216767,1729217535,1729217791,1729218047,1729218303,1729218559,1729219583,1729220607,1729221631,1729222655,1729225727,1729226751,1729227775,1729228799,1729229823,1729231103,1729231359,1729232895,1729233919,1729234943,1729236991,1729238015,1729239039,1729240063,1729242111,1729244159,1729245183,1729247231,1729247487,1729247743,1729248255,1729249279,1729250303,1729252351,1729253375,1729254399,1729255167,1729255423,1729257471,1729258495,1729259519,1729260543,1729261567,1729262591,1729262847,1729263103,1729263615,1729264639,1729265663,1729266687,1729267711,1729268735,1729269759,1729270783,1729271807,1729272063,1729272319,1729272831,1729273599,1729273855,1729274879,1729276927,1729277951,1729278975,1729279231,1729279487,1729279999,1729280511,1729281023,1729281279,1729281535,1729282047,1729283071,1729284095,1729285119,1729285631,1729285887,1729288191,1729289215,1729290239,1729291263,1729292287,1729292799,1729293311,1729294591,1729294847,1729295103,1729295359,1729296383,1729297407,1729298431,1729299455,1729300479,1729300991,1729301503,1729302527,1729302783,1729303551,1729304575,1729305599,1729306623,1729307647,1729307903,1729308159,1729308415,1729308671,1729310719,1729311231,1729311743,1729312767,1729313791,1729314815,1729317887,1729319423,1729319935,1729320959,1729321983,1729323007,1729324031,1729325055,1729326079,1729327103,1729328127,1729329151,1729329663,1729330175,1729331199,1729331711,1729332223,1729335295,1729336319,1729338367,1729339391,1729340415,1729341439,1729341951,1729343487,1729346559,1729347583,1729348095,1729348607,1729349631,1729350655,1729352703,1729353471,1729353727,1729353983,1729354239,1729354495,1729354751,1729355775,1729356799,1729357823,1729358847,1729359871,1729360895,1729361919,1729362943,1729364991,1729367039,1729368063,1729368319,1729369343,1729369599,1729370111,1729371135,1729372159,1729373183,1729374207,1729375231,1729376255,1729376767,1729377279,1729378303,1729378559,1729378815,1729379071,1729379327,1729380351,1729381375,1729382399,1729383423,1729384447,1729385471,1729386751,1729387007,1729387519,1729388543,1729389055,1729389567,1729389823,1729390079,1729390591,1729391103,1729392127,1729392639,1729393663,1729394687,1729394943,1729395199,1729395711,1729395967,1729396735,1729397759,1729398783,1729399807,1729400831,1729402879,1729403903,1729404159,1729404415,1729404927,1729405951,1729406207,1729406463,1729406975,1729407999,1729409023,1729410047,1729411071,1729411839,1729412095,1729413119,1729414143,1729414655,1729415167,1729416191,1729417215,1729418239,1729419263,1729419519,1729419775,1729420031,1729420287,1729421311,1729422335,1729422847,1729423359,1729423871,1729424383,1729425407,1729425919,1729426431,1729426687,1729427455,1729428479,1729429247,1729429503,1729431039,1729431551,1729432063,1729432319,1729432575,1729433599,1729433855,1729434111,1729434623,1729435647,1729436671,1729437183,1729437695,1729438719,1729439743,1729440767,1729441791,1729442815,1729443071,1729443839,1729444351,1729444863,1729445887,1729446399,1729447935,1729448959,1729449983,1729450495,1729451007,1729452031,1729453055,1729454079,1729454591,1729455103,1729455615,1729456127,1729457151,1729458175,1729460223,1729461247,1729462271,1729464319,1729464575,1729464831,1729465087,1729465343,1729466367,1729467391,1729468415,1729469439,1729470463,1729471487,1729472511,1729473535,1729474559,1729475583,1729476607,1729477631,1729478655,1729478911,1729479423,1729479679,1729480703,1729481727,1729481983,1729482751,1729483775,1729485823,1729486335,1729486847,1729488383,1729488895,1729489919,1729490943,1729491967,1729492991,1729494015,1729495039,1729519615,1729520127,1729520639,1729527807,1729528831,1729530879,1729531903,1729532927,1729533951,1729534975,1729535999,1729537023,1729537791,1729538047,1729539071,1729540095,1729541119,1729542143,1729543167,1729544191,1729544447,1729544703,1729544959,1729545215,1729546239,1729546495,1729547007,1729547263,1729548287,1729548543,1729549311,1729550335,1729550847,1729551359,1729552383,1729553151,1729553407,1729554431,1729554943,1729555455,1729556479,1729557503,1729558527,1729559551,1729560575,1729561599,1729562623,1729563647,1729564671,1729565695,1729566719,1729567743,1729567999,1729568255,1729568511,1729568767,1729569791,1729570815,1729571839,1729572095,1729572863,1729573887,1729574911,1729575935,1729576447,1729576959,1729577983,1729578495,1729578751,1729579007,1729579263,1729579519,1729580031,1729581055,1729583103,1729584127,1729584639,1729584895,1729585151,1729587199,1729588223,1729589247,1729590271,1729590783,1729591295,1729592319,1729593343,1729593855,1729594367,1729596415,1729596671,1729596927,1729597439,1729598463,1729598975,1729599231,1729599487,1729600511,1729601535,1729603583,1729603839,1729604095,1729604607,1729605119,1729605375,1729605631,1729606655,1729607679,1729609727,1729610751,1729612799,1729613823,1729614847,1729615103,1729615359,1729615615,1729615871,1729616895,1729617919,1729618943,1729619967,1729620991,1729622015,1729623295,1729623551,1729623807,1729624063,1729625087,1729625599,1729626111,1729627135,1729628159,1729629183,1729629695,1729629951,1729630207,1729630719,1729631231,1729632255,1729633279,1729634303,1729635327,1729636351,1729637375,1729637887,1729638143,1729638399,1729639423,1729639679,1729639935,1729640447,1729641471,1729642495,1729643519,1729644031,1729644543,1729645823,1729646079,1729646591,1729648639,1729649151,1729649663,1729650175,1729650431,1729650687,1729651711,1729652735,1729653759,1729654783,1729655807,1729656831,1729657855,1729658879,1729659903,1729660415,1729660671,1729660927,1729662975,1729663999,1729665023,1729666047,1729667071,1729667327,1729668095,1729669119,1729670143,1729671167,1729672191,1729673215,1729674239,1729675263,1729675775,1729676287,1729677311,1729678335,1729679359,1729680383,1729681407,1729681663,1729682431,1729683455,1729684479,1729685503,1729686527,1729687551,1729688575,1729689599,1729690623,1729691647,1729693695,1729694207,1729694719,1729695743,1729696767,1729702911,1729703935,1729704959,1729705215,1729705471,1729705983,1729707007,1729707519,1729707775,1729708031,1729710079,1729711103,1729712127,1729713151,1729713407,1729713663,1729714175,1729715199,1729716223,1729717247,1729718271,1729719295,1729720319,1729721343,1729722367,1729723391,1729723647,1729723903,1729726463,1729727487,1729728511,1729729535,1729730559,1729731583,1729732607,1729733631,1729733887,1729734655,1729736703,1729737215,1729737471,1729737727,1729738751,1729739775,1729740799,1729742335,1729742847,1729743871,1729744895,1729745919,1729746943,1729747967,1729748223,1729748479,1729748991,1729750015,1729750527,1729750783,1729751039,1729753087,1729754111,1729755135,1729756159,1729757183,1729758207,1729759231,1729760255,1729761279,1729762303,1729763327,1729764351,1729764607,1729764863,1729765375,1729766399,1729767423,1729768447,1729769471,1729772543,1729773567,1729774591,1729775615,1729776127,1729776639,1729777663,1729779711,1729780735,1729781503,1729781759,1729782783,1729783551,1729783807,1729785855,1729786879,1729787903,1729788927,1729789951,1729790975,1729791999,1729793023,1729794047,1729794303,1729795071,1729796095,1729797119,1729799167,1729800191,1729800703,1729801215,1729802239,1729803263,1729804287,1729805311,1729806335,1729807359,1729808383,1729808639,1729808895,1729809407,1729810431,1729812479,1729813503,1729814527,1729815551,1729816575,1729817599,1729818111,1729818623,1729819647,1729820671,1729821695,1729822719,1729822975,1729823231,1729823487,1729823743,1729824767,1729825791,1729826815,1729827839,1729828863,1729829887,1729831935,1729832191,1729832447,1729832959,1729833983,1729835007,1729836031,1729837055,1729838079,1729840127,1729841151,1729842175,1729842687,1729843199,1729844223,1729845247,1729846271,1729847295,1729848319,1729849343,1729850367,1729851391,1729852415,1729852671,1729853439,1729853695,1729853951,1729854463,1729855487,1729856511,1729858559,1729859583,1729860607,1729861631,1729862655,1729863679,1729864191,1729864447,1729864703,1729866751,1729867775,1729869823,1729870847,1729871871,1729872895,1729873919,1729874943,1729875455,1729875967,1729876991,1729878015,1729879039,1729880063,1729880831,1729881087,1729882111,1729883135,1729884159,1729885183,1729886207,1729887743,1729887999,1729888255,1729889279,1729891327,1729892863,1729893375,1729893631,1729894399,1729896447,1729898495,1729899519,1729900543,1729901567,1729902079,1729902335,1729902591,1729903615,1729905663,1729906431,1729906687,1729906943,1729907199,1729907711,1729908735,1729909759,1729910783,1729911295,1729911807,1729912063,1729912831,1729913855,1729914879,1729915135,1729915391,1729918975,1729919999,1729921023,1729922047,1729923071,1729924095,1729925119,1729926143,1729926655,1729928191,1729929215,1729929471,1729929727,1729929983,1729930239,1729931775,1729932031,1729932287,1729933311,1729934335,1729935359,1729936383,1729938431,1729939455,1729939967,1729940479,1729941503,1729942527,1729943551,1729944063,1729946623,1729949695,1729950207,1729950719,1729951743,1729952767,1729953791,1729954815,1729955839,1729956351,1729956863,1729957887,1729958911,1729959935,1729960447,1729960959,1729961215,1729961471,1729961983,1729964031,1729964543,1729964799,1729965055,1729966079,1729967103,1729968127,1729968383,1729968639,1729969151,1729969663,1729970175,1729971199,1729972223,1729973247,1729974271,1729974783,1729976831,1729977343,1729978367,1729979391,1729980415,1729980927,1729982463,1729982719,1729982975,1729983231,1729983487,1729984511,1729985535,1729986559,1729989631,1729990655,1729991679,1729992703,1729993727,1729994751,1729995519,1729995775,1729996799,1729997311,1729997823,1729998847,1729999871,1730000383,1730000895,1730001919,1730002943,1730003967,1730004223,1730004479,1730004735,1730004991,1730007039,1730008063,1730009087,1730010111,1730011135,1730012159,1730013183,1730014207,1730014719,1730015231,1730016255,1730016767,1730017279,1730017791,1730019327,1730020351,1730021375,1730021887,1730022399,1730024447,1730025471,1730025983,1730026495,1730027519,1730028543,1730029567,1730030591,1730031615,1730032639,1730032895,1730033151,1730033407,1730033663,1730034687,1730035711,1730036735,1730037503,1730037759,1730038783,1730039807,1730040831,1730043903,1730044927,1730045951,1730046975,1730047999,1730049023,1730050047,1730050303,1730050559,1730051071,1730052095,1730054143,1730055167,1730056191,1730057215,1730058239,1730059263,1730060287,1730061311,1730062335,1730062591,1730062847,1730064383,1730065407,1730066431,1730067455,1730068479,1730068991,1730069503,1730070527,1730070783,1730071039,1730071551,1730072575,1730073087,1730073343,1730073599,1730073855,1730074111,1730074367,1730074623,1730075647,1730076671,1730077695,1730078719,1730079231,1730079743,1730080767,1730081791,1730082815,1730083839,1730084863,1730085887,1730086911,1730087423,1730087935,1730088959,1730091007,1730091519,1730091775,1730092031,1730093055,1730093567,1730094079,1730095103,1730095615,1730097151,1730103295,1730104319,1730105343,1730106367,1730107391,1730108415,1730109439,1730110463,1730112511,1730112767,1730113535,1730114559,1730115071,1730115583,1730117631,1730118655,1730119679,1730120703,1730122751,1730123775,1730124799,1730125823,1730126847,1730127871,1730128895,1730129919,1730130943,1730131967,1730132479,1730132991,1730134015,1730135039,1730136063,1730137087,1730138111,1730139135,1730140159,1730141183,1730141695,1730142207,1730143231,1730144255,1730145279,1730146303,1730146815,1730147327,1730148351,1730149375,1730149631,1730149887,1730150143,1730150399,1730360319,1730361343,1730362367,1730363391,1730364415,1730365439,1730366463,1730366975,1730367487,1730368511,1730369535,1730370047,1730370303,1730370559,1730371583,1730372607,1730373631,1730374655,1730375679,1730376191,1730376703,1730377727,1730378239,1730378495,1730378751,1730379775,1730380799,1730381823,1730382847,1730383359,1730383615,1730383871,1730385919,1730386943,1730387967,1730388991,1730389503,1730390015,1730391039,1730392063,1730392575,1730393087,1730394111,1730395135,1730396159,1730398207,1730399231,1730399999,1730400255,1730402303,1730402559,1730402815,1730403327,1730404351,1730406399,1730407423,1730408447,1730410495,1730411519,1730412543,1730414591,1730415615,1730416127,1730416639,1730417663,1730418687,1730419199,1730419711,1730420735,1730421759,1730422783,1730423807,1730425855,1730426367,1730426879,1730429951,1730430207,1730430463,1730430719,1730430975,1730431999,1730435071,1730435583,1730435839,1730437119,1730438143,1730439167,1730440191,1730441215,1730442239,1730443263,1730445311,1730445567,1730446335,1730448383,1730449407,1730449919,1730450687,1730450943,1730451455,1730452479,1730453503,1730476031,1730476543,1730476799,1730477055,1730477567,1730478079,1730479103,1730479615,1730480127,1730480639,1730481151,1730483199,1730484223,1730485247,1730487295,1730488319,1730489343,1730490367,1730491391,1730493439,1730493951,1730494463,1730495487,1730496511,1730497535,1730499583,1730500607,1730501119,1730501631,1730502655,1730503679,1730505727,1730508799,1730509823,1730510079,1730510335,1730510847,1730511871,1730512895,1730521087,1730522111,1730524159,1730525183,1730525695,1730526207,1730527231,1730528255,1730529279,1730529791,1730530303,1730531327,1730535423,1730536447,1730536703,1730537471,1730538495,1730539519,1730540543,1730541567,1730544639,1730545663,1730545919,1730546687,1730547711,1730548735,1730548991,1730549759,1730550783,1730551807,1730552831,1730553855,1730555903,1730557439,1730557951,1730558975,1730559999,1730561023,1730562047,1730563071,1730564095,1730565119,1730566143,1730566655,1730567167,1730569215,1730572287,1730573311,1730574335,1730575359,1730577407,1730578431,1730579455,1730580479,1730580735,1730580991,1730581503,1730582015,1730582271,1730582527,1730582783,1730583039,1730583551,1730585599,1730586623,1730587647,1730588671,1730589695,1730590207,1730590719,1730591743,1730591999,1730592767,1730593791,1730594815,1730596863,1730597375,1730597887,1730598911,1730599423,1730599935,1730600191,1730600447,1730600959,1730604031,1730605055,1730606079,1730607103,1730607615,1730608127,1730608639,1730609151,1730609407,1730610687,1730610943,1730611199,1730612223,1730613247,1730614271,1730615295,1730616319,1730617855,1730618367,1730619391,1730619903,1730620415,1730621439,1730622719,1730622975,1730623231,1730623487,1730624511,1730625535,1730626559,1730628607,1730629631,1730630655,1730631679,1730632703,1730634751,1730636799,1730637823,1730638079,1730638335,1730638847,1730639871,1730640383,1730640895,1730641407,1730643967,1730644735,1730644991,1730646015,1730646527,1730647039,1730649087,1730650111,1730658303,1730659327,1730659839,1730660351,1730669567,1730670079,1730670591,1730672639,1730673407,1730673663,1730674687,1730675199,1730675711,1730676735,1730677759,1730686975,1730687999,1730688511,1730689023,1730692095,1730692607,1730693119,1730694143,1730695167,1730695423,1730695679,1730696191,1730697215,1730698239,1730699263,1730700287,1730701311,1730702335,1730702591,1730702847,1730704383,1730705407,1730706431,1730708479,1730713599,1730714623,1730715135,1730715647,1730716671,1730717183,1730717695,1730718719,1730719231,1730719743,1730720767,1730723839,1730724863,1730727935,1730728959,1730729983,1730731007,1730732031,1730732287,1730732543,1730733055,1730741247,1730742271,1730742783,1730743295,1730744319,1730745343,1730751487,1730752511,1730752767,1730753535,1730754559,1730755071,1730755583,1730756607,1730757631,1730758655,1730760191,1730760703,1730761727,1730762751,1730763775,1730764287,1730764799,1730766847,1730767871,1730768127,1730768639,1730768895,1730769407,1730769919,1730770943,1730771967,1730772991,1730773503,1730773759,1730774015,1730775039,1730776063,1730777087,1730778111,1730780159,1730781183,1730783231,1730783487,1730783743,1730783999,1730784255,1730785279,1730785535,1730785791,1730786303,1730788351,1730790399,1730791423,1730794495,1730795007,1730795519,1730796543,1730800639,1730801663,1730802687,1730803199,1730804735,1730805759,1730806783,1730807295,1730807807,1730808831,1730809343,1730809855,1730810367,1730810623,1730811903,1730812927,1730813183,1730813439,1730813951,1730814975,1730815999,1730817023,1730818047,1730818559,1730819071,1730819583,1730821119,1730821631,1730822143,1730824191,1730825215,1730826239,1730827263,1730829311,1730831359,1730832383,1730833407,1730834431,1730834943,1730835199,1730835455,1730837503,1730839039,1730839551,1730840575,1730841087,1730841599,1730842623,1730844671,1730845695,1730848767,1730849791,1730850815,1730852607,1730852863,1730853887,1730854143,1730854399,1730854655,1730854911,1730855679,1730855935,1730856959,1730857215,1730857471,1730857983,1730858239,1730858495,1730859007,1730860031,1730861055,1730862079,1730862591,1730863103,1730864127,1730864639,1730865151,1730866175,1730866431,1730867199,1730867455,1730869247,1730870271,1730871807,1730873343,1730874367,1730875391,1730877439,1730878463,1730879487,1730881023,1730881535,1730882559,1730883583,1730884607,1730885631,1730887679,1730887935,1730888191,1730888703,1730889727,1730890751,1730891775,1730892799,1730893055,1730893567,1730893823,1730895103,1730895359,1730895871,1730898943,1730899967,1730900223,1730900479,1730900991,1730901247,1730901503,1730901759,1730902015,1730903039,1730904063,1730905087,1730906111,1730906367,1730907135,1730908159,1730909183,1730910207,1730911231,1730912255,1730913279,1730913791,1730914303,1730915071,1730915327,1730916351,1730918399,1730919423,1730920447,1730922495,1730923519,1730924031,1730924543,1730925567,1730926591,1730927615,1730929663,1730929919,1730930175,1730930431,1730930687,1730931711,1730932735,1730933759,1730934783,1730936063,1730936831,1730937855,1730938879,1730939903,1730940927,1730941439,1730941695,1730941951,1730942975,1730943487,1730943999,1730945023,1730946047,1730947071,1730948095,1730948351,1730948607,1730949119,1730951167,1730952191,1730954239,1730954495,1730954751,1730955007,1730955263,1730956287,1730957311,1730958335,1730959359,1730960383,1730961407,1730962431,1730962687,1730962943,1730963199,1730963455,1730964479,1730964735,1730964991,1730965503,1730966527,1730967551,1730969599,1730970623,1730971647,1730973695,1730974719,1730974975,1730975231,1730975743,1730976767,1730977791,1730978815,1730979839,1730980863,1730981887,1730990079,1730991103,1730992127,1730993151,1730993407,1730993663,1730993919,1730994175,1730995199,1730996223,1730996479,1730996735,1730997247,1731018751,1731020799,1731060735,1731063807,1731064831,1731065087,1731065343,1731065599,1731065855,1731066879,1731067391,1731067903,1731068927,1731070975,1731103743,1731103999,1731104255,1731104511,1731104767,1731105791,1731106815,1731115007,1731115519,1731116031,1731117055,1731118591,1731118847,1731120127,1731121151,1731122175,1731123199,1731124223,1731125247,1731126271,1731127039,1731127295,1731130367,1731132415,1731133951,1731134207,1731134463,1731135487,1731136511,1731138559,1731139839,1731140095,1731140351,1731140607,1731141631,1731142655,1731144703,1731144959,1731145727,1731146751,1731147775,1731148031,1731148287,1731148799,1731149055,1731149311,1731149823,1731150847,1731151871,1731152895,1731153407,1731153919,1731154943,1731155967,1731156479,1731158015,1731159039,1731159551,1731160063,1731161087,1731162111,1731163135,1731165183,1731166719,1731167231,1731168255,1731170303,1731170815,1731171071,1731171327,1731172863,1731173119,1731173375,1731174399,1731178495,1731179519,1731180031,1731180543,1731181055,1731181311,1731181567,1731182591,1731183615,1731184639,1731185663,1731186687,1731187711,1731188735,1731189759,1731190783,1731191807,1731192319,1731192831,1731193087,1731193855,1731194879,1731196159,1731196927,1731197951,1731198975,1731199487,1731199999,1731201023,1731202047,1731202303,1731202559,1731203071,1731204095,1731204607,1731205119,1731205631,1731205887,1731206143,1731206399,1731206655,1731206911,1731207167,1731207935,1731208191,1731209727,1731211263,1731211775,1731212287,1731213311,1731218431,1731221503,1731221759,1731222015,1731222527,1731223551,1731228671,1731228927,1731229183,1731229439,1731229695,1731230719,1731231743,1731232767,1731233791,1731234815,1731235839,1731236863,1731239935,1731240959,1731241983,1731243007,1731244031,1731246079,1731247103,1731249151,1731250175,1731250687,1731251199,1731252223,1731253247,1731253759,1731254271,1731262463,1731263999,1731264511,1731265535,1731266559,1731267583,1731268607,1731269631,1731270655,1731271679,1731272703,1731273727,1731273983,1731274239,1731274751,1731275007,1731275263,1731275519,1731275775,1731276799,1731277311,1731277823,1731279871,1731280895,1731281919,1731282175,1731282431,1731282943,1731284991,1731286015,1731287039,1731288063,1731289087,1731290111,1731290623,1731291135,1731291647,1731292159,1731293183,1731293695,1731294207,1731295743,1731296767,1731297023,1731297279,1731298303,1731298559,1731299071,1731299327,1731300351,1731301375,1731301887,1731302143,1731302399,1731302911,1731303167,1731303423,1731304191,1731304447,1731306495,1731307519,1731308543,1731308799,1731309567,1731311615,1731314687,1731315711,1731316735,1731316991,1731317247,1731317503,1731317759,1731318783,1731319807,1731320831,1731321855,1731322879,1731323903,1731325439,1731325951,1731327487,1731329023,1731330047,1731330303,1731331071,1731332095,1731333119,1731333631,1731334143,1731335167,1731336191,1731337215,1731338239,1731338495,1731338751,1731339263,1731340287,1731341311,1731349503,1731351551,1731352575,1731353087,1731353343,1731353599,1731354623,1731355647,1731356671,1731357695,1731362815,1731363839,1731366911,1731368191,1731368447,1731369983,1731371007,1731372031,1731373055,1731374079,1731382271,1731383295,1731385343,1731386111,1731386367,1731394559,1731395071,1731395583,1731396095,1731396607,1731397631,1731398143,1731398655,1731399679,1731400703,1731403775,1731404799,1731405823,1731406079,1731406335,1731406591,1731406847,1731407871,1731408895,1731409407,1731410943,1731411199,1731411455,1731411967,1731412991,1731414015,1731415039,1731416063,1731417087,1731417599,1731418111,1731419135,1731420159,1731420671,1731421183,1731421695,1731421951,1731422207,1731422719,1731423231,1731424255,1731425279,1731426303,1731426815,1731427327,1731427839,1731428351,1731428863,1731429119,1731429375,1731431423,1731432447,1731433471,1731435519,1731436031,1731436287,1731436543,1731437567,1731438079,1731438335,1731438591,1731441663,1731442687,1731447807,1731448831,1731449855,1731450879,1731451903,1731452159,1731452415,1731452927,1731453951,1731454975,1731457023,1731461119,1731461375,1731461631,1731462143,1731462655,1731463167,1731464191,1731465215,1731466239,1731467263,1731469311,1731469823,1731470335,1731471359,1731472383,1731473407,1731475455,1731476479,1731476991,1731477247,1731477503,1731479551,1731483647,1731484671,1731485695,1731488767,1731489023,1731489279,1731489791,1731490303,1731490815,1731491839,1731492863,1731493887,1731495167,1731495423,1731495935,1731496959,1731497983,1731499007,1731500031,1731501055,1731502079,1731504127,1731504639,1731505151,1731507199,1731508223,1731509247,1731509759,1731510015,1731510271,1731510527,1731510783,1731511295,1731512319,1731513343,1731514367,1731515391,1731515903,1731516159,1731516415,1731517439,1731519487,1731520511,1731523583,1731526655,1731527679,1731528703,1731529727,1731530751,1731531775,1731532031,1731532287,1731532799,1731533823,1731534335,1731534847,1731535871,1731536895,1731537151,1731537919,1731538943,1731539199,1731539967,1731540991,1731542015,1731543039,1731545087,1731546111,1731547135,1731547647,1731548159,1731548671,1731549183,1731550207,1731551231,1731552255,1731553279,1731555839,1731556095,1731557375,1731558399,1731564543,1731565567,1731566079,1731566591,1731567103,1731567615,1731568127,1731568639,1731569663,1731570687,1731571711,1731572735,1731573759,1731574271,1731574527,1731574783,1731576831,1731577087,1731577599,1731577855,1731578879,1731581951,1731582975,1731583999,1731585023,1731586047,1731587071,1731588095,1731590143,1731591167,1731592191,1731593215,1731594239,1731595263,1731601407,1731603455,1731604479,1731605503,1731606015,1731606271,1731606527,1731607295,1731607551,1731608575,1731609599,1731610623,1731611647,1731612159,1731612671,1731613695,1731614719,1731615743,1731616767,1731619839,1731620351,1731620607,1731620863,1731621887,1731625983,1731626495,1731626751,1731628543,1731628799,1731629055,1731630079,1731631103,1731632127,1731633151,1731635199,1731636479,1731639295,1731640319,1731641343,1731642367,1731643391,1731644415,1731646463,1731647487,1731648511,1731649535,1731649791,1731650559,1731651071,1731651583,1731652607,1731653119,1731653631,1731654655,1731655679,1731657727,1731657983,1731658495,1731658751,1731659263,1731659775,1731660031,1731660287,1731660543,1731660799,1731661823,1731662847,1731663359,1731663871,1731664895,1731665919,1731666175,1731666431,1731666687,1731666943,1731667967,1731668991,1731670015,1731671039,1731671295,1731671551,1731672063,1731672575,1731672831,1731673087,1731675135,1731676159,1731677183,1731678207,1731679231,1731681279,1731682303,1731683327,1731684351,1731686399,1731686911,1731688447,1731689471,1731690495,1731691519,1731691775,1731692031,1731692543,1731693055,1731693311,1731693567,1731694591,1731695615,1731696639,1731697663,1731698175,1731698431,1731698943,1731699199,1731699711,1731701759,1731702783,1731703295,1731703551,1731703807,1731705855,1731706879,1731708927,1731709951,1731711999,1731712255,1731713023,1731713279,1731713535,1731713791,1731714047,1731716095,1731717119,1731718143,1731719167,1731719679,1731720191,1731721215,1731723263,1731724287,1731725311,1731726335,1731727359,1731728383,1731729407,1731730431,1731731199,1731731455,1731732479,1731734527,1731735551,1731736575,1731736831,1731737087,1731737343,1731737599,1731739647,1731741183,1731741439,1731741695,1731743743,1731744511,1731744767,1731745279,1731745791,1731746815,1731747327,1731747839,1731748863,1731750911,1731751935,1731753983,1731755007,1731756031,1731758079,1731759103,1731760127,1731761663,1731762175,1731763199,1731767295,1731767551,1731767807,1731768063,1731770367,1731771391,1731772415,1731773439,1731774463,1731775487,1731776511,1731777023,1731777535,1731778559,1731779071,1731779583,1731782655,1731783679,1731788799,1731789823,1731790847,1731791871,1731792895,1731793919,1731794943,1731795967,1731796991,1731798015,1731799039,1731800063,1731802111,1731804159,1731805183,1731806207,1731806463,1731807231,1731808255,1731809279,1731811583,1731811839,1731812095,1731812351,1731813375,1731813887,1731814399,1731815423,1731816447,1731817471,1731818495,1731819519,1731820543,1731821567,1731822591,1731823615,1731824639,1731825663,1731826687,1731827199,1731827455,1731827711,1731828735,1731829759,1731830783,1731831807,1731832831,1731836927,1731837951,1731838975,1731839999,1731841023,1731842047,1731843071,1731845119,1731846143,1731846655,1731846911,1731847167,1731848191,1731849215,1731852287,1731852543,1731852799,1731853055,1731853311,1731856383,1731857407,1731858431,1731859455,1731860479,1731861503,1731862527,1731862783,1731863039,1731863551,1731864575,1731864831,1731865087,1731865343,1731871743,1731872767,1731873791,1731877887,1731878911,1731879935,1731881983,1731882495,1731882751,1731883007,1731883263,1731883519,1731884799,1731885055,1731891199,1731891711,1731892223,1731893247,1731895295,1731896319,1731899391,1731900415,1731900927,1731901439,1731903487,1731904511,1731905535,1731908607,1731909119,1731909631,1731911679,1731912703,1731913215,1731913471,1731913727,1731913983,1731928063,1731929087,1731930111,1731930623,1731931135,1731932159,1731932415,1731932671,1731933183,1731934207,1731939327,1731940351,1731942655,1731942911,1731943423,1731944447,1731945471,1731946239,1731946495,1731947519,1731948543,1731953663,1731954687,1731955711,1731956735,1731957759,1731958783,1731959807,1731960831,1731961343,1731961855,1731963391,1731963903,1731964927,1731965951,1731966463,1731966975,1731975167,1731975679,1731976191,1731977215,1731979519,1731979775,1731980287,1731986943,1731987455,1731987711,1731987967,1731988479,1731989503,1731990527,1731990783,1731991039,1731991551,1731992575,1731993599,1731994623,1731995647,1731996671,1731997695,1731999743,1732000767,1732001791,1732002815,1732007935,1732008703,1732008959,1732009983,1732010239,1732010495,1732010751,1732011007,1732012287,1732013055,1732014079,1732016127,1732018175,1732019199,1732019967,1732022271,1732023295,1732024319,1732025343,1732026367,1732027391,1732028415,1732029439,1732030463,1732031487,1732032511,1732032767,1732033023,1732033535,1732034047,1732034559,1732035583,1732036607,1732037631,1732038143,1732038655,1732040703,1732040959,1732041215,1732041727,1732042751,1732043775,1732044799,1732045823,1732046847,1732047871,1732048895,1732049663,1732049919,1732050943,1732051967,1732052991,1732054015,1732055039,1732055551,1732056063,1732056831,1732057087,1732058111,1732059135,1732060159,1732061183,1732061439,1732061695,1732062207,1732064255,1732066303,1732067327,1732068607,1732069119,1732069375,1732074495,1732075519,1732076543,1732077567,1732078591,1732080639,1732081663,1732082687,1732083711,1732084735,1732085759,1732086783,1732087807,1732088831,1732089599,1732089855,1732092927,1732093951,1732094975,1732097023,1732098047,1732099071,1732100095,1732100607,1732107263,1732108287,1732108799,1732109311,1732109823,1732110335,1732111359,1732112383,1732112895,1732113407,1732114431,1732115455,1732116479,1732117503,1732118527,1732119551,1732122623,1732123647,1732124159,1732124671,1732125183,1732125439,1732125951,1732126207,1732126463,1732126719,1732127743,1732128767,1732129023,1732129279,1732129791,1732130047,1732130303,1732130559,1732130815,1732134911,1732140031,1732141055,1732151295,1732152319,1732153855,1732154367,1732154879,1732155391,1732156415,1732157439,1732166655,1732167167,1732167679,1732168191,1732168703,1732174847,1732175871,1732176895,1732177919,1732178943,1732179967,1732182015,1732184063,1732188159,1732188927,1732189183,1732190207,1732205567,1732206591,1732207615,1732207871,1732208127,1732208383,1732208639,1732213759,1732215807,1732217855,1732219903,1732220159,1732220415,1732220927,1732221951,1732222975,1732230143,1732230399,1732230655,1732230911,1732231167,1732236287,1732237311,1732237823,1732238335,1732239359,1732240383,1732241407,1732241663,1732241919,1732242431,1732243455,1732249599,1732250623,1732250879,1732251135,1732251647,1732251903,1732252671,1732253695,1732280319,1732281343,1732282367,1732283391,1732285439,1732286463,1732318207,1732318719,1732318975,1732322303,1732322559,1732322815,1732323071,1732323327,1732323583,1732324351,1732325375,1732337663,1732338175,1732338687,1732342783,1732343295,1732343807,1732345855,1732346111,1732346367,1732346879,1732347903,1732348415,1732348927,1732349183,1732349439,1732349951,1732358143,1732359167,1732360191,1732361215,1732362239,1732364287,1732364799,1732365311,1732366335,1732367359,1732368383,1732369919,1732370431,1732370943,1732371455,1732372479,1732372991,1732373503,1732374271,1732374527,1732375039,1732375551,1732376575,1732377087,1732377599,1732377855,1732378111,1732378623,1732384767,1732385279,1732385791,1732386815,1732387839,1732388095,1732388351,1732388607,1732388863,1732389887,1732390911,1732391935,1732392447,1732392703,1732392959,1732393983,1732394495,1732395007,1732396031,1732397055,1732400639,1732400895,1732401151,1732402175,1732403199,1732404223,1732405247,1732406271,1732407295,1732410367,1732411391,1732412415,1732413439,1732414463,1732414975,1732415487,1732416511,1732417023,1732417535,1732418559,1732421631,1732422143,1732422399,1732422655,1732423679,1732424191,1732424703,1732425215,1732425471,1732425727,1732426751,1732428799,1732429823,1732430847,1732433919,1732434943,1732435199,1732435455,1732435967,1732436991,1732438015,1732439551,1732440063,1732447231,1732449279,1732449791,1732450303,1732450815,1732451071,1732451327,1732452351,1732452863,1732453375,1732454399,1732455423,1732455935,1732456959,1732457471,1732457983,1732458495,1732459007,1732459519,1732460031,1732461567,1732461823,1732462079,1732462591,1732463103,1732463615,1732464127,1732466943,1732467199,1732467711,1732468223,1732468735,1732469759,1732483071,1732483839,1732484095,1732485119,1732485631,1732486143,1732486399,1732486655,1732486911,1732487167,1732488191,1732488703,1732489215,1732489471,1732489727,1732491263,1732491775,1732492287,1732493311,1732494335,1732495359,1732496383,1732497407,1732498431,1732499455,1732499711,1732499967,1732500479,1732501503,1732502527,1732503551,1732504063,1732504575,1732505599,1732506623,1732507647,1732508671,1732509695,1732510719,1732511743,1732512767,1732513791,1732520959,1732521983,1732524543,1732525055,1732527103,1732531711,1732532223,1732533247,1732533759,1732534015,1732534271,1732535295,1732536319,1732536575,1732536831,1732537087,1732537343,1732538367,1732539391,1732540415,1732541439,1732541695,1732541951,1732542463,1732543487,1732543743,1732543999,1732544255,1732544511,1732545023,1732545279,1732545535,1732546559,1732547583,1732549631,1732550655,1732551935,1732552447,1732552703,1732554751,1732555263,1732555775,1732556799,1732557823,1732558847,1732559871,1732560127,1732560383,1732560639,1732560895,1732561407,1732562431,1732562943,1732563967,1732564991,1732566527,1732566783,1732567039,1732568063,1732569087,1732569599,1732570111,1732571135,1732575231,1732575743,1732575999,1732576255,1732579327,1732580351,1732583167,1732583423,1732587519,1732588031,1732588543,1732589567,1732590079,1732590591,1732590847,1732591103,1732591615,1732592639,1732593663,1732594175,1732594431,1732594687,1732595199,1732595455,1732595711,1732596223,1732597759,1732598783,1732599295,1732599807,1732601343,1732601855,1732602367,1732602879,1732603135,1732603391,1732603903,1732604927,1732605951,1732606975,1732607999,1732608511,1732609023,1732612095,1732613119,1732614143,1732615167,1732616191,1732616703,1732617215,1732618239,1732619263,1732620287,1732621311,1732622335,1732623359,1732625407,1732625663,1732625919,1732626175,1732626431,1732627455,1732627967,1732628479,1732629503,1732630527,1732632575,1732633599,1732634623,1732635135,1732635647,1732636159,1732638719,1732639743,1732640255,1732640511,1732640767,1732641791,1732642815,1732643839,1732644351,1732644863,1732645887,1732646911,1732647935,1732648959,1732650495,1732651007,1732653055,1732654079,1732655103,1732655615,1732655871,1732656127,1732657151,1732657407,1732658175,1732658431,1732658687,1732660223,1732660479,1732660735,1732660991,1732661247,1732662271,1732663295,1732663807,1732664319,1732665343,1732669439,1732669951,1732670975,1732671487,1732672511,1732675583,1732675839,1732676095,1732676351,1732676607,1732677631,1732678655,1732679679,1732683775,1732684287,1732684799,1732685823,1732686335,1732686847,1732687871,1732688127,1732688895,1732689919,1732690943,1732695039,1732696063,1732697087,1732699135,1732700159,1732701183,1732702207,1732703231,1732704255,1732704511,1732704767,1732705279,1732707327,1732707839,1732708351,1732709375,1732710143,1732710399,1732712447,1732712703,1732712959,1732713215,1732713471,1732715519,1732716543,1732717567,1732718079,1732718591,1732719615,1732720639,1732720895,1732721151,1732721407,1732721663,1732722687,1732723711,1732725759,1732726783,1732729855,1732730879,1732731391,1732731903,1732732415,1732732927,1732733951,1732734463,1732734975,1732735487,1732735999,1732737023,1732740095,1732741119,1732742143,1732743167,1732744191,1732746239,1732747263,1732748287,1732750335,1732751359,1732752383,1732754431,1732754687,1732754943,1732755455,1732756479,1732758527,1732758783,1732759039,1732759551,1732762623,1732763135,1732763647,1732764671,1732765695,1732766719,1732767743,1732768255,1732768767,1732769791,1732770815,1732771327,1732771583,1732771839,1732772863,1732773375,1732774911,1732786175,1732786687,1732787199,1732788479,1732788735,1732790271,1732791295,1732793343,1732794367,1732794623,1732794879,1732795391,1732796415,1732797439,1732798463,1732798975,1732799487,1732799743,1732799999,1732800511,1732806655,1732807167,1732807679,1732808703,1732809727,1732809983,1732810239,1732810751,1732811775,1732812799,1732813055,1732813311,1732813823,1732814847,1732815871,1732816895,1732817919,1732818943,1732819967,1732820991,1732821247,1732822527,1732823039,1732823295,1732824063,1732825087,1732825599,1732826111,1732827135,1732829183,1732845567,1732846079,1732846591,1732847615,1732848639,1732849663,1732850687,1732851711,1732851967,1732852223,1732852479,1732852735,1732853759,1732854271,1732854783,1732855807,1732857855,1732858367,1732859391,1732859903,1732860927,1732861951,1732862975,1732863999,1732865023,1732867071,1732869119,1732869375,1732869631,1732869887,1732870143,1732875263,1732877311,1732877823,1732878335,1732879359,1732880383,1732881407,1732882431,1732883455,1732884479,1732884991,1732885503,1732886527,1732886783,1732887039,1732887295,1732887551,1732888575,1732889599,1732891647,1732892671,1732893183,1732893695,1732894719,1732895743,1732896767,1732897279,1732897535,1732897791,1732898815,1732899583,1732899839,1732900863,1732901887,1732902143,1732902911,1732903167,1732903679,1732903935,1732904191,1732904959,1732905471,1732905983,1732906495,1732907007,1732908031,1732909055,1732916223,1732916735,1732917247,1732919295,1732919807,1732920319,1732922367,1732922879,1732923391,1732924415,1732925439,1732928511,1732930559,1732931583,1732934655,1732935679,1732936703,1732937727,1732939263,1732939519,1732939775,1732940799,1732943871,1732944895,1732945919,1732946175,1732946431,1732946687,1732946943,1732947967,1732948991,1732950015,1732952063,1732953087,1732954111,1732955135,1732956159,1732957183,1732957695,1732958207,1732959231,1732960511,1732960767,1732961023,1732961279,1732962303,1732963327,1732964351,1732965375,1732966399,1732966655,1732967167,1732967423,1732968447,1732969471,1732971263,1732971519,1732973567,1732974079,1732974335,1732974591,1732975615,1732977663,1732978687,1732979711,1732980735,1732981247,1732982783,1732984319,1732985855,1732986879,1732988415,1732988927,1732989439,1732989951,1732990975,1732993023,1732995071,1732998143,1732998399,1732998655,1732998911,1732999167,1733000191,1733001215,1733002239,1733003263,1733003775,1733004287,1733005311,1733006335,1733006847,1733007103,1733007359,1733008383,1733011455,1733012479,1733013247,1733013503,1733016575,1733017599,1733018623,1733019647,1733020159,1733021695,1733022719,1733023743,1733024767,1733025791,1733026815,1733027839,1733028863,1733029119,1733029375,1733029887,1733030911,1733031935,1733032959,1733033983,1733034495,1733034751,1733035007,1733037055,1733041151,1733041663,1733041919,1733042175,1733043199,1733044223,1733045247,1733046271,1733046783,1733047039,1733047295,1733048319,1733049343,1733053439,1733055487,1733055743,1733056511,1733057023,1733057279,1733057535,1733058559,1733059583,1733060607,1733062143,1733062655,1733063679,1733064191,1733064703,1733065215,1733065727,1733065983,1733066751,1733067007,1733067263,1733067519,1733067775,1733068799,1733070847,1733071871,1733072895,1733073407,1733073919,1733074175,1733074431,1733074943,1733075455,1733075967,1733076223,1733076479,1733076991,1733079039,1733079551,1733079807,1733080063,1733081087,1733081599,1733082111,1733083647,1733084159,1733085183,1733086463,1733086719,1733089279,1733092351,1733094399,1733095423,1733096447,1733096703,1733096959,1733097215,1733097471,1733099263,1733099519,1733100543,1733101055,1733101311,1733101567,1733102591,1733102847,1733103103,1733103359,1733103615,1733104639,1733105663,1733106175,1733106687,1733107711,1733108735,1733111807,1733112831,1733114879,1733115903,1733116927,1733117951,1733118975,1733119999,1733120511,1733121023,1733122047,1733124095,1733125119,1733126143,1733127167,1733128191,1733128447,1733128703,1733128959,1733129215,1733129727,1733130239,1733131263,1733132287,1733132543,1733132799,1733133311,1733134335,1733135359,1733136383,1733137407,1733138431,1733139455,1733140479,1733144575,1733145087,1733145599,1733146111,1733146623,1733146879,1733147135,1733147647,1733148671,1733149695,1733150207,1733150719,1733150975,1733151231,1733151743,1733152767,1733153279,1733153791,1733154303,1733154815,1733155327,1733155839,1733156863,1733157119,1733157375,1733157887,1733158911,1733159935,1733160959,1733163007,1733164031,1733164543,1733164799,1733165055,1733167103,1733168127,1733171199,1733172223,1733172991,1733173247,1733174271,1733175295,1733176319,1733176831,1733177087,1733177855,1733178111,1733178367,1733179391,1733183487,1733184511,1733185535,1733186559,1733189631,1733191167,1733191679,1733192447,1733192703,1733193215,1733193471,1733193727,1733194751,1733195263,1733195775,1733196031,1733196287,1733196799,1733197823,1733198847,1733199359,1733199871,1733200127,1733200383,1733202943,1733204223,1733204479,1733204991,1733205503,1733205759,1733206015,1733207039,1733209087,1733211135,1733212415,1733212671,1733213183,1733214207,1733214719,1733214975,1733215231,1733216255,1733218303,1733221375,1733221631,1733221887,1733222399,1733223423,1733224447,1733225471,1733226495,1733226751,1733227007,1733227263,1733227519,1733228543,1733230591,1733230847,1733231615,1733232639,1733233663,1733234687,1733235711,1733235967,1733236223,1733236479,1733236735,1733238783,1733239807,1733242879,1733243391,1733243903,1733249023,1733249279,1733249791,1733250047,1733251071,1733253119,1733253631,1733254143,1733254399,1733254911,1733255167,1733255423,1733255679,1733256191,1733257215,1733258751,1733259263,1733260543,1733260799,1733261055,1733261311,1733262335,1733263359,1733264383,1733265407,1733266431,1733268479,1733269503,1733270527,1733271039,1733271295,1733271551,1733274623,1733275647,1733276159,1733276671,1733277183,1733277695,1733278719,1733285887,1733286911,1733287935,1733288959,1733289471,1733289727,1733289983,1733291007,1733292031,1733293055,1733294079,1733296127,1733297151,1733298175,1733298687,1733300223,1733301247,1733301759,1733302271,1733303295,1733304319,1733305343,1733306367,1733307391,1733308415,1733309439,1733309695,1733309951,1733313791,1733314047,1733314559,1733315583,1733315839,1733316095,1733316607,1733317631,1733318143,1733318655,1733321727,1733322239,1733322751,1733323775,1733324799,1733326847,1733327871,1733328895,1733329151,1733329407,1733329663,1733329919,1733330687,1733330943,1733331967,1733332991,1733334015,1733338111,1733338367,1733338623,1733339647,1733340159,1733341183,1733344255,1733345279,1733346303,1733347327,1733348351,1733349375,1733349631,1733349887,1733350399,1733351423,1733352447,1733353471,1733354495,1733355519,1733356543,1733358591,1733359615,1733360383,1733360639,1733361151,1733361663,1733362687,1733364735,1733365759,1733367807,1733368831,1733369343,1733369855,1733371903,1733372927,1733374975,1733375743,1733375999,1733377023,1733379071,1733380095,1733381119,1733381375,1733382143,1733384191,1733386239,1733387263,1733387775,1733388031,1733388287,1733388799,1733389823,1733390335,1733390591,1733391359,1733392383,1733393407,1733394431,1733394687,1733394943,1733395199,1733395455,1733396479,1733396735,1733396991,1733397247,1733397503,1733398015,1733398271,1733398527,1733399551,1733400575,1733403135,1733403391,1733403647,1733404671,1733404927,1733405183,1733405695,1733406719,1733407743,1733407999,1733408511,1733408767,1733409023,1733409279,1733409791,1733411327,1733411839,1733412863,1733413887,1733414911,1733416959,1733417471,1733417727,1733417983,1733419007,1733420031,1733420287,1733420543,1733421055,1733422079,1733424127,1733424639,1733424895,1733425151,1733425663,1733426175,1733427199,1733428223,1733428735,1733429247,1733430271,1733431295,1733432319,1733437439,1733438975,1733439487,1733440511,1733441535,1733442559,1733443583,1733444095,1733444607,1733445631,1733448703,1733449727,1733450751,1733451263,1733451775,1733453311,1733453823,1733454847,1733455871,1733456895,1733457919,1733458943,1733459199,1733459455,1733459967,1733460991,1733462015,1733463039,1733464063,1733466111,1733466879,1733467135,1733469183,1733469439,1733469695,1733470207,1733471231,1733472255,1733473279,1733474303,1733476351,1733478399,1733479423,1733479935,1733481471,1733483263,1733483519,1733484543,1733485567,1733486591,1733486847,1733487103,1733487615,1733488639,1733490431,1733490687,1733491711,1733492735,1733492991,1733493759,1733494783,1733496319,1733496575,1733496831,1733497343,1733497855,1733498879,1733499903,1733500415,1733500927,1733501439,1733501951,1733503487,1733503999,1733505023,1733506047,1733507071,1733507327,1733508095,1733510143,1733511167,1733512191,1733513727,1733514239,1733514495,1733514751,1733515263,1733515519,1733515775,1733516031,1733516287,1733518847,1733519103,1733519359,1733521407,1733522431,1733523455,1733523967,1733524479,1733525247,1733527039,1733527551,1733528575,1733529599,1733532671,1733533951,1733534207,1733534719,1733535743,1733536767,1733538815,1733539839,1733540863,1733541887,1733542143,1733542399,1733542655,1733542911,1733543167,1733543423,1733543679,1733543935,1733544959,1733545983,1733546495,1733550079,1733551103,1733551615,1733551871,1733552127,1733553151,1733553663,1733554175,1733555199,1733558271,1733559295,1733561343,1733566463,1733567487,1733568511,1733569535,1733570559,1733571583,1733573119,1733573631,1733574655,1733575679,1733576703,1733577727,1733578751,1733579775,1733582847,1733583103,1733583359,1733583871,1733584383,1733584895,1733585919,1733586175,1733586431,1733586687,1733586943,1733587711,1733587967,1733588991,1733590015,1733591039,1733592063,1733592319,1733592575,1733592831,1733593087,1733594111,1733596159,1733597183,1733597439,1733597695,1733598207,1733599231,1733600255,1733601023,1733601279,1733601791,1733602303,1733603327,1733603839,1733604351,1733605375,1733607423,1733608447,1733609471,1733609983,1733610495,1733611007,1733612543,1733613567,1733614591,1733615615,1733616639,1733618687,1733620735,1733621759,1733622015,1733622271,1733622783,1733623807,1733624831,1733625855,1733626879,1733627903,1733628927,1733630975,1733631999,1733633023,1733634047,1733634559,1733635071,1733637119,1733641215,1733642239,1733643263,1733644287,1733645311,1733646335,1733647871,1733648383,1733650431,1733651455,1733652479,1733653503,1733654015,1733654527,1733655551,1733656575,1733656831,1733657087,1733657343,1733657599,1733658111,1733658367,1733658623,1733659647,1733660671,1733661695,1733662719,1733663231,1733663487,1733663743,1733665791,1733669887,1733670399,1733670911,1733671423,1733671935,1733672959,1733675007,1733675263,1733675519,1733675775,1733676031,1733678079,1733678335,1733678591,1733679103,1733680127,1733681151,1733682175,1733684223,1733686271,1733686783,1733687295,1733688319,1733689343,1733691391,1733692415,1733692927,1733693439,1733695487,1733695999,1733696255,1733696511,1733698559,1733699583,1733700607,1733701631,1733702655,1733703679,1733704191,1733704703,1733705727,1733706751,1733707775,1733708799,1733709055,1733709823,1733710847,1733711871,1733712383,1733712895,1733713407,1733713663,1733713919,1733714431,1733714687,1733714943,1733715455,1733715711,1733715967,1733716991,1733718015,1733719039,1733720063,1733720319,1733720575,1733720831,1733721087,1733722111,1733722623,1733723135,1733724159,1733724415,1733724671,1733731327,1733732351,1733733375,1733734911,1733735423,1733736447,1733737471,1733738495,1733741567,1733756927,1733757951,1733758975,1733759999,1733761023,1733763071,1733764095,1733764351,1733764607,1733765119,1733770239,1733771263,1733771775,1733772543,1733772799,1733773311,1733774335,1733777407,1733777663,1733778175,1733778431,1733779455,1733780479,1733782527,1733783551,1733784575,1733785599,1733785855,1733786111,1733786623,1733787647,1733788671,1733789695,1733790719,1733791743,1733792767,1733793279,1733793791,1733794815,1733795839,1733796351,1733796607,1733796863,1733799935,1733800959,1733801983,1733803007,1733803263,1733804031,1733805055,1733806079,1733806335,1733806847,1733807103,1733808127,1733809151,1733810175,1733810431,1733810687,1733811199,1733812223,1733813247,1733814271,1733815295,1733816063,1733816319,1733817343,1733819391,1733819903,1733820159,1733820415,1733821439,1733826559,1733827583,1733828607,1733830655,1733831167,1733831423,1733831679,1733832703,1733833727,1733835775,1733837823,1733838847,1733839871,1733840383,1733840639,1733840895,1733842943,1733843199,1733843455,1733843967,1733844991,1733846015,1733847039,1733848063,1733852159,1733855231,1733855743,1733855999,1733856255,1733857279,1733859327,1733859839,1733860095,1733860351,1733861887,1733862143,1733862399,1733863423,1733864447,1733865471,1733866495,1733867007,1733867263,1733867519,1733869567,1733870591,1733874687,1733875711,1733879039,1733879295,1733879807,1733880319,1733880575,1733880831,1733882879,1733887999,1733888255,1733889023,1733890047,1733890559,1733891071,1733891327,1733892095,1733893119,1733894143,1733895167,1733895423,1733895679,1733896191,1733898239,1733899263,1733903359,1733903871,1733904127,1733904639,1733904895,1733905407,1733906431,1733907455,1733910527,1733916671,1733917695,1733918719,1733919743,1733920767,1733921023,1733921279,1733921791,1733923327,1733923839,1733924863,1733925375,1733925887,1733926911,1733928703,1733929983,1733931007,1733933055,1733945343,1733946367,1733947391,1733947903,1733948415,1733949439,1733949695,1733949951,1733950463,1733951487,1733952255,1733952511,1733953279,1733953535,1733954559,1733955071,1733955327,1733955583,1733956607,1733957631,1733958655,1733959679,1733961727,1733962751,1733963775,1733964543,1733964799,1733965823,1733966335,1733966847,1733968127,1733968383,1733968895,1733970943,1733971199,1733971455,1733971711,1733971967,1733972991,1733974015,1733975039,1733976063,1733977087,1733986303,1733987327,1733988351,1733989375,1733990399,1733991423,1733992447,1733993471,1733994495,1733995519,1733995775,1733996031,1733996543,1733997567,1733998591,1733999103,1733999615,1734001663,1734002687,1734003199,1734003455,1734003711,1734004735,1734004991,1734005247,1734005503,1734005759,1734006783,1734007807,1734011903,1734013951,1734014975,1734018047,1734019071,1734020095,1734021119,1734022143,1734026239,1734028287,1734029311,1734030335,1734030847,1734031103,1734031359,1734031615,1734031871,1734032127,1734032383,1734033407,1734034431,1734039295,1734039551,1734043647,1734044159,1734044671,1734046207,1734046719,1734046975,1734047231,1734049023,1734049279,1734049535,1734049791,1734050815,1734052095,1734052351,1734052863,1734053887,1734054399,1734054911,1734055423,1734055935,1734056959,1734057983,1734059007,1734060031,1734060543,1734061055,1734062079,1734063103,1734064127,1734064383,1734064639,1734065151,1734066175,1734066687,1734066943,1734067199,1734068223,1734069247,1734070271,1734072319,1734072575,1734072831,1734073087,1734073343,1734075391,1734077439,1734078463,1734079487,1734081535,1734086655,1734086911,1734087167,1734087423,1734087679,1734088703,1734091775,1734092799,1734094847,1734104063,1734104575,1734104831,1734105087,1734106111,1734107135,1734108159,1734109183,1734109439,1734109695,1734110207,1734111231,1734114303,1734115327,1734115583,1734115839,1734116095,1734116351,1734117375,1734118399,1734119423,1734119679,1734119935,1734120447,1734121471,1734122495,1734123519,1734124031,1734124543,1734132735,1734133759,1734134783,1734136063,1734136319,1734136831,1734138879,1734139903,1734140927,1734141951,1734142463,1734142719,1734142975,1734150143,1734151167,1734152191,1734152703,1734152959,1734153727,1734154239,1734155263,1734156287,1734157311,1734159871,1734160127,1734161407,1734163455,1734164479,1734165503,1734166527,1734167551,1734168575,1734169343,1734169599,1734170623,1734171135,1734171391,1734171647,1734171903,1734172159,1734172415,1734172671,1734175743,1734176767,1734178815,1734179071,1734179327,1734179839,1734180863,1734182911,1734183423,1734183679,1734183935,1734184447,1734184959,1734185983,1734187007,1734188031,1734188543,1734190591,1734190847,1734191103,1734192127,1734194175,1734195199,1734197247,1734200319,1734201343,1734201599,1734201855,1734202367,1734202879,1734203391,1734204415,1734205439,1734207487,1734208511,1734209279,1734209535,1734210559,1734211583,1734212607,1734213119,1734213375,1734213631,1734216703,1734217727,1734218751,1734219775,1734220287,1734220543,1734220799,1734225919,1734226943,1734227967,1734228991,1734230015,1734231039,1734232063,1734233087,1734234111,1734236159,1734237183,1734238207,1734239231,1734239743,1734239999,1734240255,1734243327,1734244351,1734246399,1734247423,1734247935,1734248447,1734250495,1734251519,1734251775,1734252031,1734252543,1734253823,1734254079,1734254591,1734255615,1734255871,1734256127,1734256639,1734257663,1734258687,1734259711,1734260735,1734260991,1734261247,1734261503,1734261759,1734262783,1734263807,1734264831,1734265855,1734266623,1734267903,1734268415,1734268671,1734268927,1734269951,1734270975,1734271999,1734273023,1734273535,1734274047,1734274559,1734275071,1734276095,1734276351,1734276607,1734277119,1734278143,1734279167,1734280191,1734280703,1734282239,1734283263,1734284287,1734285311,1734286335,1734287359,1734288383,1734288639,1734288895,1734289151,1734289407,1734290431,1734291455,1734291711,1734291967,1734292479,1734293503,1734294527,1734295551,1734296575,1734297599,1734298623,1734298879,1734299647,1734301695,1734303743,1734304767,1734305023,1734305535,1734305791,1734306815,1734307327,1734308863,1734309375,1734309631,1734309887,1734310911,1734311935,1734312959,1734313983,1734317055,1734318079,1734319103,1734320127,1734320895,1734321151,1734322175,1734323199,1734324223,1734325247,1734327295,1734328831,1734329343,1734330367,1734331391,1734331647,1734331903,1734332159,1734332415,1734333439,1734333951,1734334207,1734334463,1734337535,1734338559,1734339071,1734339583,1734344703,1734345727,1734346751,1734347775,1734349823,1734352383,1734352895,1734353919,1734354943,1734358015,1734359039,1734360063,1734361087,1734362111,1734363135,1734364159,1734364415,1734365183,1734365439,1734365695,1734366207,1734367231,1734367487,1734368255,1734371327,1734372351,1734372607,1734372863,1734373119,1734373375,1734374399,1734374655,1734374911,1734375423,1734376447,1734377471,1734378495,1734378751,1734379007,1734379519,1734380543,1734380799,1734381055,1734381567,1734382591,1734383615,1734401023,1734402047,1734402559,1734403071,1734403327,1734403583,1734404351,1734404607,1734405119,1734406655,1734407167,1734408191,1734408447,1734408703,1734409215,1734410239,1734411263,1734412287,1734412799,1734413055,1734421503,1734422015,1734422527,1734423551,1734423807,1734424063,1734424319,1734424575,1734429695,1734430719,1734430975,1734431231,1734431487,1734431743,1734432511,1734432767,1734433279,1734433535,1734433791,1734435839,1734436607,1734438399,1734438655,1734438911,1734440959,1734441983,1734443007,1734444031,1734445055,1734446079,1734446591,1734447103,1734449151,1734449407,1734449663,1734449919,1734450175,1734451199,1734452223,1734453247,1734453759,1734454783,1734455039,1734456319,1734458367,1734460415,1734460927,1734461439,1734461951,1734462207,1734462463,1734462975,1734463487,1734463999,1734465791,1734467583,1734468095,1734468607,1734469119,1734469375,1734469631,1734471679,1734474239,1734474495,1734474751,1734475775,1734476287,1734477823,1734478591,1734478847,1734479359,1734479871,1734480127,1734480383,1734480639,1734480895,1734481919,1734482943,1734483455,1734483967,1734486015,1734489087,1734489343,1734489855,1734490111,1734491135,1734491391,1734491647,1734492159,1734493183,1734494207,1734495231,1734495743,1734496255,1734497279,1734497535,1734497791,1734498303,1734502399,1734502911,1734503423,1734504447,1734504703,1734504959,1734505471,1734507519,1734508543,1734509567,1734510335,1734510591,1734513663,1734515711,1734516735,1734517759,1734519807,1734520831,1734521855,1734522879,1734523903,1734525951,1734526975,1734529023,1734530047,1734530815,1734531071,1734536191,1734536447,1734536703,1734536959,1734537215,1734541311,1734542335,1734543359,1734544127,1734544383,1734546431,1734546943,1734547199,1734547455,1734547967,1734548223,1734548479,1734549503,1734549759,1734550271,1734550527,1734551551,1734552063,1734552319,1734552575,1734553599,1734554111,1734554623,1734554879,1734555135,1734556671,1734556927,1734557695,1734558207,1734559743,1734560767,1734561791,1734562815,1734563327,1734563583,1734563839,1734564863,1734565887,1734566911,1734567167,1734567423,1734567679,1734567935,1734568959,1734569983,1734570495,1734570751,1734571007,1734573055,1734574079,1734575103,1734576127,1734576639,1734578175,1734580223,1734581247,1734582271,1734583295,1734584319,1734585343,1734585855,1734586367,1734586879,1734587391,1734588415,1734589183,1734589439,1734594559,1734595071,1734595327,1734595583,1734596607,1734597631,1734598655,1734599679,1734600703,1734602751,1734603775,1734604799,1734605823,1734606847,1734607871,1734609407,1734609663,1734609919,1734612991,1734613503,1734613759,1734614015,1734615039,1734616063,1734616575,1734617087,1734618111,1734618623,1734619135,1734622207,1734623231,1734625279,1734626303,1734628351,1734628863,1734629375,1734630399,1734631423,1734632447,1734632959,1734633215,1734633471,1734633983,1734634239,1734634495,1734635519,1734636543,1734637567,1734638591,1734639615,1734641663,1734642175,1734642687,1734643711,1734644735,1734645247,1734645759,1734646783,1734647551,1734647807,1734648831,1734649855,1734650879,1734651903,1734652415,1734652927,1734653951,1734654975,1734655231,1734655999,1734656255,1734656511,1734656767,1734657023,1734658047,1734658303,1734658559,1734659071,1734660095,1734661119,1734664191,1734665215,1734666239,1734667263,1734669311,1734669567,1734669823,1734670335,1734672383,1734672639,1734673407,1734673919,1734676479,1734677503,1734678527,1734679551,1734679807,1734680063,1734680575,1734681599,1734682623,1734683135,1734683391,1734683647,1734684671,1734685695,1734685951,1734686719,1734687743,1734688767,1734689023,1734689279,1734689791,1734690815,1734691839,1734692863,1734693887,1734694655,1734694911,1734695423,1734695679,1734695935,1734696447,1734696703,1734697471,1734697983,1734699007,1734700031,1734703103,1734704127,1734704639,1734705151,1734706175,1734706431,1734706687,1734706943,1734707199,1734709247,1734711295,1734711551,1734711807,1734712319,1734713343,1734714367,1734714879,1734716415,1734716671,1734716927,1734717439,1734718463,1734720511,1734721535,1734721791,1734722559,1734723583,1734724607,1734725631,1734726655,1734727167,1734727423,1734727679,1734728703,1734729727,1734731775,1734732031,1734732287,1734732799,1734733311,1734733567,1734733823,1734734847,1734735871,1734736127,1734736895,1734737151,1734737407,1734737919,1734738431,1734738687,1734738943,1734739967,1734740991,1734742527,1734743039,1734744063,1734744319,1734744575,1734744831,1734745087,1734746111,1734747135,1734747647,1734747903,1734748159,1734748671,1734749183,1734749695,1734749951,1734750207,1734750719,1734751487,1734751743,1734752255,1734753279,1734754303,1734757375,1734759423,1734764799,1734765055,1734765567,1734765823,1734766079,1734766335,1734766591,1734767615,1734768127,1734768383,1734769663,1734770687,1734771711,1734773759,1734774783,1734775295,1734775551,1734775807,1734777855,1734778879,1734779391,1734779647,1734779903,1734780415,1734780671,1734780927,1734782975,1734783487,1734783999,1734790143,1734791167,1734793215,1734794239,1734794751,1734796287,1734797311,1734797823,1734798079,1734798335,1734799359,1734800383,1734800639,1734800895,1734801407,1734802175,1734802431,1734803455,1734803711,1734803967,1734804479,1734804991,1734805503,1734806527,1734808575,1734810623,1734811135,1734811647,1734812671,1734813695,1734814207,1734814719,1734815743,1734816767,1734818815,1734819071,1734819583,1734819839,1734820351,1734820607,1734820863,1734822911,1734823935,1734824959,1734825983,1734826495,1734828031,1734828543,1734830079,1734832127,1734832383,1734832639,1734832895,1734833151,1734834175,1734835199,1734836223,1734837247,1734838271,1734839295,1734839807,1734840319,1734841343,1734842367,1734843391,1734844415,1734845439,1734847487,1734847743,1734847999,1734848255,1734848511,1734849535,1734850047,1734850559,1734851583,1734852607,1734853119,1734853375,1734853631,1734854655,1734856703,1734857215,1734857727,1734858751,1734859263,1734859519,1734859775,1734863871,1734864383,1734864639,1734864895,1734865919,1734866943,1734871039,1734871807,1734872063,1734873087,1734874111,1734874367,1734875135,1734876159,1734877183,1734877695,1734878207,1734880255,1734883583,1734883839,1734884351,1734884863,1734885375,1734886399,1734886655,1734886911,1734889471,1734890495,1734891007,1734891263,1734891519,1734892543,1734893567,1734894079,1734894335,1734894591,1734895615,1734896383,1734896639,1734897663,1734898687,1734900735,1734901759,1734902271,1734902527,1734902783,1734904831,1734905855,1734906367,1734906879,1734907903,1734908927,1734909951,1734910975,1734911999,1734912255,1734912511,1734912767,1734914047,1734914303,1734914559,1734914815,1734915071,1734916095,1734917119,1734918143,1734919167,1734919423,1734919679,1734920191,1734920703,1734921215,1734922239,1734923263,1734924287,1734925311,1734925567,1734927359,1734927615,1734927871,1734928127,1734928383,1734929407,1734930943,1734931455,1734931711,1734931967,1734932479,1734933247,1734933503,1734936575,1734937087,1734937599,1734939647,1734940159,1734940415,1734940671,1734943743,1734946815,1734947071,1734947583,1734947839,1734949887,1734950911,1734952959,1734953215,1734953471,1734953983,1734956031,1734957055,1734958079,1734958591,1734959615,1734960127,1734961151,1734962175,1734963199,1734963455,1734963711,1734964223,1734965247,1734965759,1734966271,1734967295,1734968319,1734968575,1734968831,1734969087,1734969343,1734969855,1734970111,1734970367,1734970879,1734971135,1734971391,1734973439,1734974463,1734976511,1734976767,1734977023,1734977535,1734978559,1734979583,1734980607,1734982655,1734982911,1734983423,1734983679,1734985215,1734985471,1734985727,1734987775,1734988799,1734989823,1734990335,1734990591,1734990847,1734991871,1734999039,1735000063,1735000319,1735000575,1735000831,1735001087,1735001599,1735002111,1735003135,1735003647,1735004159,1735005183,1735006207,1735007231,1735008255,1735009279,1735012351,1735013375,1735014399,1735014911,1735015167,1735015423,1735016447,1735016959,1735017215,1735017471,1735018495,1735018751,1735019007,1735021567,1735021823,1735022079,1735022335,1735023615,1735024639,1735025663,1735026687,1735027199,1735027711,1735028223,1735028735,1735030015,1735030271,1735030783,1735031807,1735032831,1735034879,1735035903,1735036927,1735037183,1735037439,1735037951,1735039999,1735041023,1735042047,1735043071,1735044095,1735045119,1735046655,1735046911,1735047167,1735048191,1735049215,1735050239,1735051263,1735051519,1735051775,1735052287,1735053311,1735054335,1735055359,1735056383,1735058431,1735058687,1735058943,1735059199,1735059455,1735060479,1735062527,1735063551,1735064575,1735066623,1735067647,1735067903,1735068159,1735069695,1735069951,1735070207,1735070719,1735072767,1735074815,1735075327,1735075583,1735075839,1735076351,1735076607,1735076863,1735077887,1735078399,1735078911,1735079935,1735080191,1735083007,1735083519,1735083775,1735084031,1735085055,1735086079,1735087103,1735087871,1735088127,1735089151,1735091199,1735092223,1735093247,1735094271,1735095295,1735096319,1735096575,1735096831,1735097343,1735098367,1735099391,1735100415,1735101951,1735102463,1735103743,1735103999,1735104255,1735104511,1735105535,1735106559,1735107583,1735109631,1735110655,1735111167,1735111679,1735112703,1735112959,1735113215,1735113727,1735115775,1735116287,1735116799,1735117823,1735118591,1735118847,1735122943,1735123967,1735124991,1735126015,1735127039,1735127551,1735128063,1735128575,1735129087,1735130111,1735131647,1735132159,1735133183,1735133439,1735133695,1735136255,1735141375,1735142399,1735142911,1735143423,1735143679,1735143935,1735144191,1735144447,1735145471,1735146495,1735147519,1735148031,1735148543,1735149567,1735151615,1735152127,1735152383,1735152639,1735153151,1735153407,1735153663,1735154687,1735155199,1735155455,1735155711,1735156223,1735156735,1735157759,1735158783,1735159807,1735160831,1735161087,1735161599,1735161855,1735162879,1735163391,1735164927,1735166975,1735167231,1735167487,1735167743,1735167999,1735169023,1735171071,1735172095,1735174143,1735174399,1735175167,1735175423,1735175679,1735176191,1735176447,1735176703,1735177215,1735178239,1735178751,1735179007,1735179263,1735179519,1735179775,1735180287,1735182335,1735182847,1735183359,1735184383,1735186943,1735187455,1735187711,1735187967,1735188479,1735189503,1735190015,1735190271,1735190527,1735192575,1735193599,1735194623,1735195391,1735195647,1735195903,1735196159,1735197695,1735198207,1735198719,1735199231,1735199743,1735200767,1735201791,1735202815,1735203839,1735207935,1735208959,1735209983,1735212031,1735213055,1735214079,1735215103,1735215615,1735216127,1735216383,1735216639,1735217151,1735217663,1735218175,1735219199,1735220223,1735222271,1735223551,1735223807,1735224319,1735225343,1735226367,1735227391,1735227647,1735227903,1735228159,1735228415,1735229439,1735229695,1735230975,1735232511,1735233535,1735234047,1735234559,1735234815,1735235071,1735235583,1735241727,1735243775,1735244287,1735244799,1735249919,1735250175,1735250687,1735250943,1735251967,1735255039,1735256063,1735257087,1735258111,1735259135,1735259391,1735259903,1735260159,1735261183,1735262207,1735263231,1735263487,1735263743,1735264255,1735265279,1735268351,1735269375,1735269887,1735270399,1735270911,1735271423,1735272447,1735272703,1735272959,1735273215,1735273471,1735274495,1735275007,1735275519,1735275775,1735276543,1735277567,1735277823,1735278591,1735279615,1735280639,1735281151,1735281407,1735281663,1735282175,1735282687,1735283199,1735283455,1735283711,1735284735,1735285759,1735286783,1735287807,1735288319,1735289087,1735289343,1735289599,1735289855,1735290111,1735290879,1735291903,1735292927,1735293951,1735294719,1735294975,1735295487,1735295743,1735295999,1735298047,1735298559,1735299071,1735300095,1735301119,1735303167,1735304191,1735307263,1735308287,1735308799,1735309311,1735309823,1735310335,1735311359,1735311871,1735312127,1735312383,1735313407,1735314431,1735315455,1735316479,1735318527,1735319039,1735319295,1735319551,1735320575,1735321599,1735325695,1735326207,1735326463,1735328767,1735329279,1735329791,1735331839,1735332863,1735333887,1735334911,1735335935,1735336447,1735337215,1735337471,1735337983,1735341055,1735342847,1735343103,1735343615,1735343871,1735344127,1735345151,1735345407,1735346175,1735347199,1735347711,1735347967,1735348223,1735349247,1735349759,1735350015,1735350271,1735351295,1735355391,1735357439,1735357951,1735358463,1735359487,1735359743,1735359999,1735360255,1735360511,1735362559,1735367679,1735368703,1735369215,1735369471,1735369727,1735370751,1735371775,1735372799,1735373823,1735374335,1735374591,1735374847,1735383039,1735383295,1735385087,1735386111,1735388159,1735391231,1735392255,1735393279,1735393535,1735393791,1735394047,1735394303,1735394559,1735394815,1735400447,1735401471,1735402495,1735403519,1735404031,1735404543,1735405055,1735405567,1735406591,1735408639,1735408895,1735409151,1735410175,1735410431,1735410687,1735411711,1735412735,1735413247,1735413759,1735414015,1735414271,1735415807,1735417855,1735418111,1735418367,1735418623,1735418879,1735419135,1735419391,1735420415,1735420671,1735420927,1735422975,1735423999,1735424255,1735424511,1735425023,1735426047,1735427071,1735428095,1735429119,1735430143,1735430655,1735430911,1735432191,1735433215,1735434239,1735434751,1735435263,1735436287,1735436799,1735437311,1735437567,1735437823,1735438335,1735438591,1735439359,1735440383,1735441407,1735441663,1735442175,1735442431,1735444479,1735445503,1735446527,1735447551,1735449599,1735450111,1735450623,1735451647,1735452159,1735452671,1735453183,1735453439,1735453695,1735454719,1735455743,1735456767,1735459071,1735459327,1735459583,1735459839,1735460863,1735461887,1735463935,1735464959,1735465471,1735465727,1735465983,1735466239,1735466495,1735467007,1735469055,1735470079,1735471103,1735473151,1735474175,1735475199,1735476223,1735476479,1735476735,1735476991,1735477247,1735479295,1735480319,1735481343,1735482367,1735483391,1735484415,1735485439,1735486719,1735486975,1735488511,1735493631,1735495679,1735496703,1735497215,1735497727,1735498751,1735499775,1735500799,1735501055,1735501311,1735501823,1735502079,1735502335,1735502847,1735503871,1735504895,1735505407,1735505919,1735506943,1735507967,1735511039,1735512063,1735513087,1735513343,1735513599,1735513855,1735514111,1735515135,1735516159,1735517183,1735518207,1735520255,1735520511,1735521279,1735521791,1735522047,1735522303,1735522815,1735523327,1735525375,1735526399,1735526655,1735526911,1735527423,1735528447,1735528703,1735528959,1735529215,1735529471,1735530495,1735531519,1735532543,1735533055,1735533311,1735533567,1735534591,1735535615,1735536639,1735538175,1735538431,1735538687,1735539199,1735539711,1735540223,1735540479,1735540991,1735541247,1735541503,1735541759,1735542783,1735543807,1735546879,1735547903,1735549951,1735550975,1735551999,1735556095,1735557119,1735557631,1735558143,1735558399,1735558655,1735558911,1735559167,1735561471,1735561727,1735562239,1735563263,1735564287,1735565311,1735566335,1735566847,1735567103,1735567359,1735568383,1735568639,1735568895,1735569407,1735570431,1735572479,1735572991,1735573503,1735574527,1735574783,1735575039,1735575551,1735576575,1735577087,1735577343,1735577599,1735578623,1735579647,1735579903,1735580671,1735583743,1735584767,1735586815,1735587071,1735589375,1735589887,1735590655,1735590911,1735591679,1735591935,1735592959,1735593471,1735593983,1735594751,1735595007,1735595263,1735595519,1735595775,1735596031,1735597055,1735598335,1735598591,1735598847,1735600127,1735603199,1735604223,1735605247,1735607295,1735608319,1735609343,1735610367,1735610879,1735611391,1735612415,1735612927,1735613439,1735614463,1735614719,1735614975,1735615231,1735615487,1735615999,1735616255,1735616511,1735616767,1735617023,1735617535,1735618047,1735618559,1735619583,1735620607,1735621631,1735623679,1735624703,1735625727,1735625983,1735626239,1735626751,1735627519,1735627775,1735628799,1735629823,1735630847,1735631871,1735632127,1735632383,1735632639,1735632895,1735633919,1735634943,1735635967,1735636479,1735636991,1735637247,1735637503,1735637759,1735638015,1735639039,1735639551,1735640063,1735641087,1735642111,1735642623,1735643135,1735644159,1735644415,1735644671,1735645183,1735646207,1735647231,1735647999,1735649279,1735649535,1735649791,1735650303,1735650815,1735651327,1735652351,1735653375,1735654399,1735655423,1735656447,1735657471,1735657983,1735658495,1735658751,1735659007,1735659519,1735660031,1735660543,1735661567,1735661823,1735662079,1735665151,1735665663,1735666687,1735666943,1735667199,1735667711,1735667967,1735668223,1735668735,1735669759,1735670783,1735671807,1735672831,1735673855,1735674623,1735674879,1735675903,1735676415,1735676927,1735677951,1735678463,1735678975,1735679999,1735681023,1735683071,1735683839,1735684095,1735685119,1735686143,1735687167,1735688191,1735689471,1735689727,1735689983,1735690239,1735690751,1735691263,1735693311,1735694335,1735695359,1735695615,1735696127,1735696383,1735697407,1735698431,1735698687,1735698943,1735699455,1735700479,1735701503,1735702527,1735703551,1735704063,1735705343,1735705599,1735706623,1735708159,1735708671,1735709183,1735709439,1735709695,1735710719,1735711743,1735714815,1735715327,1735715839,1735716863,1735717887,1735718399,1735718655,1735718911,1735719935,1735720959,1735721983,1735723007,1735723263,1735723519,1735723775,1735724031,1735725055,1735726079,1735726335,1735726591,1735727103,1735728127,1735728383,1735728639,1735729151,1735731199,1735732223,1735734271,1735735295,1735736319,1735737087,1735737343,1735739391,1735740415,1735741439,1735741695,1735741951,1735742463,1735743487,1735744511,1735745535,1735746047,1735746303,1735746559,1735747071,1735747583,1735748095,1735748351,1735748607,1735749631,1735750655,1735750911,1735751167,1735751679,1735752703,1735753727,1735754751,1735755775,1735756799,1735757055,1735757311,1735757823,1735758847,1735759871,1735761151,1735761407,1735761919,1735762943,1735763455,1735763967,1735764991,1735767551,1735767807,1735768063,1735769087,1735770111,1735771135,1735772159,1735773183,1735774207,1735777279,1735778303,1735779327,1735780351,1735782399,1735784447,1735785471,1735785727,1735785983,1735786495,1735787007,1735787263,1735787519,1735788543,1735789055,1735789567,1735790591,1735791103,1735791615,1735792639,1735793663,1735794687,1735795199,1735795711,1735797759,1735798783,1735799295,1735799551,1735799807,1735805951,1735806975,1735807487,1735807743,1735807999,1735809023,1735810047,1735811071,1735815167,1735817215,1735817471,1735817727,1735817983,1735818239,1735823359,1735824383,1735824895,1735825407,1735825919,1735826431,1735826687,1735827711,1735828479,1735830783,1735831039,1735831295,1735831551,1735832575,1735833599,1735834623,1735835647,1735836927,1735837183,1735837695,1735838719,1735838975,1735839231,1735843839,1735847935,1735852031,1735853055,1735855103,1735857151,1735858175,1735859199,1735860223,1735860735,1735860991,1735861247,1735863295,1735864319,1735866367,1735867391,1735869439,1735870463,1735870975,1735871231,1735871487,1735872511,1735873023,1735873535,1735874559,1735875583,1735875839,1735876095,1735876607,1735877631,1735878655,1735879423,1735879679,1735879935,1735880447,1735880703,1735880959,1735881215,1735881471,1735881727,1735882751,1735883775,1735884031,1735884287,1735884543,1735884799,1735886079,1735886335,1735887103,1735887359,1735889919,1735890943,1735891967,1735892991,1735895039,1735895551,1735896575,1735897087,1735897599,1735898111,1735899135,1735903231,1735904255,1735905279,1735906303,1735907327,1735908863,1735909119,1735909375,1735910399,1735911423,1735912447,1735912959,1735914495,1735914751,1735915263,1735915519,1735916799,1735917055,1735918591,1735919103,1735919359,1735920639,1735920895,1735921407,1735921663,1735922687,1735923199,1735923711,1735924735,1735925759,1735927807,1735928063,1735928319,1735928831,1735929855,1735930111,1735930367,1735930879,1735931903,1735933951,1735935231,1735935487,1735935999,1735937023,1735937279,1735937535,1735938047,1735939071,1735940095,1735941119,1735942143,1735944191,1735945471,1735945727,1735945983,1735946239,1735947263,1735948287,1735949311,1735949823,1735951103,1735951359,1735952383,1735952639,1735952895,1735953407,1735954431,1735955455,1735956479,1735956991,1735957503,1735958527,1735960575,1735962623,1735963647,1735965695,1735966719,1735967743,1735968767,1735969791,1735970303,1735970559,1735970815,1735971839,1735972863,1735973375,1735973631,1735973887,1735974911,1735975935,1735976447,1735976959,1735977471,1735979007,1735979263,1735979519,1735980031,1735980287,1735980543,1735980799,1735981055,1735984639,1735985151,1735987199,1735989247,1735989759,1735990271,1735991295,1735991551,1735991807,1735992319,1735993343,1735994367,1735995391,1735995647,1735995903,1735996415,1735997439,1735997695,1735997951,1735998207,1735998463,1735999487,1735999999,1736002559,1736003583,1736004607,1736005631,1736006655,1736007679,1736009727,1736010751,1736011775,1736013823,1736014335,1736014847,1736016895,1736018943,1736019967,1736021503,1736023551,1736023807,1736024063,1736026111,1736027135,1736027647,1736027903,1736028671,1736029183,1736030207,1736030719,1736031231,1736032255,1736032767,1736033279,1736035327,1736035839,1736036095,1736036351,1736037375,1736038399,1736040447,1736042495,1736043007,1736044031,1736044543,1736045567,1736046591,1736047103,1736047359,1736047615,1736048639,1736049663,1736049919,1736050175,1736050431,1736051199,1736052735,1736054783,1736055807,1736056831,1736057855,1736058879,1736059903,1736060159,1736060415,1736060927,1736061951,1736062207,1736062463,1736062719,1736062975,1736065023,1736067071,1736067583,1736068095,1736068607,1736068863,1736069119,1736069631,1736070143,1736071167,1736071679,1736072191,1736073215,1736074239,1736074751,1736075263,1736077311,1736078335,1736078847,1736079359,1736079615,1736079871,1736080127,1736080383,1736081407,1736083455,1736084479,1736084991,1736085503,1736086015,1736086527,1736087551,1736088575,1736089087,1736089599,1736090623,1736090879,1736091135,1736091647,1736093695,1736093951,1736094207,1736094463,1736094719,1736095231,1736095487,1736095743,1736096767,1736097791,1736098815,1736099839,1736100351,1736100863,1736101375,1736101887,1736102911,1736103423,1736103935,1736104959,1736105471,1736105983,1736107007,1736109055,1736110079,1736111103,1736111359,1736111615,1736112127,1736114175,1736115199,1736116223,1736117247,1736117503,1736120831,1736121087,1736121343,1736121599,1736121855,1736122367,1736123391,1736124159,1736124415,1736125439,1736128511,1736129535,1736130047,1736132607,1736133375,1736133631,1736134655,1736135679,1736135935,1736136191,1736136703,1736138751,1736139775,1736140799,1736142079,1736142335,1736142591,1736142847,1736143871,1736144895,1736145919,1736146943,1736147199,1736148991,1736150015,1736151039,1736152063,1736153087,1736154623,1736154879,1736155135,1736156159,1736157183,1736158207,1736158719,1736159231,1736160255,1736161279,1736165375,1736169471,1736170495,1736171519,1736172543,1736173567,1736174079,1736174591,1736174847,1736175103,1736175615,1736176639,1736178687,1736179711,1736180735,1736182015,1736183807,1736184831,1736185343,1736185855,1736186879,1736187391,1736188927,1736189439,1736189951,1736190975,1736191999,1736193023,1736194047,1736196095,1736197119,1736198143,1736199167,1736202239,1736203263,1736204287,1736205311,1736206335,1736207359,1736207871,1736208383,1736210431,1736211711,1736211967,1736212223,1736212479,1736213503,1736214527,1736215551,1736216575,1736217599,1736218623,1736219391,1736219647,1736220159,1736220671,1736221695,1736224767,1736225791,1736226815,1736227327,1736227583,1736227839,1736228863,1736229887,1736230911,1736231935,1736233983,1736236031,1736237055,1736238079,1736239103,1736241151,1736242175,1736243199,1736244223,1736246271,1736250367,1736251391,1736251647,1736252415,1736253439,1736254463,1736256511,1736257535,1736258815,1736259071,1736259583,1736260607,1736260863,1736261631,1736262655,1736263679,1736266239,1736266495,1736266751,1736267775,1736268799,1736269823,1736270847,1736272895,1736273919,1736274687,1736274943,1736275967,1736276991,1736278015,1736279039,1736280063,1736281087,1736282111,1736282623,1736282879,1736283135,1736284159,1736284671,1736285183,1736285695,1736286207,1736287231,1736288255,1736289279,1736290303,1736291327,1736291839,1736292351,1736292863,1736293119,1736293375,1736295423,1736296447,1736296959,1736297471,1736298495,1736300543,1736300799,1736301055,1736301311,1736301567,1736302079,1736302335,1736302591,1736304639,1736305151,1736305663,1736306687,1736307711,1736308735,1736308991,1736309247,1736309759,1736310783,1736311807,1736312319,1736312831,1736313855,1736314879,1736315903,1736316927,1736317183,1736317439,1736317695,1736317951,1736318975,1736319999,1736321023,1736321535,1736322047,1736323071,1736324095,1736325119,1736326143,1736326655,1736327167,1736328191,1736330239,1736331263,1736331775,1736332031,1736333311,1736334335,1736335359,1736336383,1736337407,1736338431,1736340479,1736341759,1736342015,1736342527,1736345599,1736346367,1736346623,1736347135,1736347647,1736348671,1736349695,1736352767,1736353791,1736354047,1736354559,1736354815,1736355839,1736356863,1736357887,1736358399,1736358911,1736359935,1736360703,1736360959,1736361983,1736363007,1736363519,1736364031,1736364543,1736364799,1736365055,1736367103,1736368127,1736368639,1736368895,1736369151,1736370175,1736370687,1736371199,1736371711,1736371967,1736372479,1736372735,1736372991,1736373247,1736374271,1736375295,1736376319,1736378367,1736380927,1736381183,1736381439,1736382463,1736383487,1736385535,1736386559,1736387583,1736388607,1736389119,1736389631,1736390655,1736391679,1736392191,1736392703,1736393727,1736394751,1736395519,1736395775,1736396287,1736396799,1736397823,1736398847,1736399359,1736399615,1736399871,1736400895,1736401919,1736403455,1736403967,1736404991,1736406015,1736407039,1736408063,1736409087,1736409343,1736409599,1736410111,1736412159,1736413183,1736413695,1736414207,1736415231,1736415743,1736416255,1736416767,1736417023,1736417791,1736418303,1736419327,1736419839,1736420095,1736420351,1736421375,1736422143,1736422399,1736423423,1736425471,1736429567,1736430591,1736431615,1736432639,1736433151,1736433663,1736434687,1736438783,1736439807,1736440831,1736441087,1736441343,1736441599,1736441855,1736507391,1736508415,1736509439,1736510719,1736511487,1736511999,1736512511,1736514559,1736515583,1736517631,1736518655,1736519167,1736519679,1736520703,1736521727,1736523007,1736523263,1736523775,1736524799,1736525823,1736526847,1736527871,1736530943,1736531967,1736534015,1736535039,1736536575,1736537087,1736537599,1736538111,1736539135,1736539647,1736540159,1736541183,1736542207,1736543231,1736544255,1736545279,1736546559,1736546815,1736547071,1736547327,1736548351,1736551423,1736552447,1736554495,1736555519,1736556543,1736557567,1736558591,1736559615,1736559871,1736560127,1736560383,1736562687,1736564735,1736565759,1736566271,1736566783,1736567807,1736568831,1736569855,1736570879,1736571903,1736572927,1736573951,1736574975,1736575487,1736575743,1736575999,1736577023,1736578047,1736586239,1736588287,1736589311,1736590335,1736590847,1736591359,1736592383,1736593407,1736594431,1736595455,1736596479,1736599551,1736601343,1736601599,1736602623,1736603135,1736603647,1736605695,1736606719,1736607743,1736608767,1736609791,1736610047,1736610303,1736610559,1736610815,1736611839,1736612095,1736612351,1736612863,1736613887,1736614911,1736615935,1736617983,1736618239,1736618495,1736618751,1736619007,1736619519,1736621055,1736621567,1736622079,1736623103,1736623615,1736624127,1736624383,1736624639,1736625151,1736625663,1736625919,1736626175,1736630271,1736631295,1736632319,1736633343,1736633855,1736634111,1736634367,1736635391,1736636415,1736638463,1736640511,1736641535,1736642559,1736643583,1736644607,1736645631,1736646143,1736646655,1736647167,1736647423,1736647679,1736648703,1736649727,1736650751,1736651263,1736651775,1736652799,1736653311,1736653823,1736654079,1736654335,1736654847,1736655103,1736655359,1736655615,1736655871,1736658943,1736659455,1736659967,1736660479,1736660991,1736662015,1736662527,1736662783,1736663039,1736664063,1736665087,1736665599,1736665855,1736667135,1736668159,1736669183,1736670207,1736671231,1736671743,1736671999,1736672767,1736673279,1736673791,1736674303,1736675327,1736676351,1736677375,1736678399,1736679423,1736680191,1736680447,1736681471,1736682495,1736683519,1736684287,1736684543,1736685055,1736686591,1736686847,1736687103,1736687615,1736687871,1736688127,1736688639,1736689151,1736689663,1736690687,1736691711,1736692735,1736693759,1736694783,1736695039,1736695295,1736695551,1736695807,1736697855,1736698879,1736699135,1736699391,1736699903,1736700927,1736701951,1736702975,1736703999,1736705023,1736706047,1736707071,1736708095,1736708607,1736709119,1736709631,1736710143,1736712191,1736714239,1736714751,1736715263,1736716287,1736717311,1736718335,1736719359,1736725503,1736726527,1736728831,1736729087,1736729599,1736730111,1736730623,1736735743,1736735999,1736736255,1736736767,1736737791,1736738815,1736739839,1736740863,1736743167,1736743935,1736747007,1736747263,1736747519,1736749055,1736751615,1736751871,1736752127,1736753151,1736754175,1736755199,1736755711,1736755967,1736757247,1736759295,1736762367,1736762879,1736763391,1736763647,1736763903,1736764415,1736765439,1736767487,1736768511,1736769535,1736769791,1736770303,1736770559,1736771583,1736772607,1736773631,1736775167,1736775423,1736775679,1736776703,1736777727,1736778751,1736779007,1736779519,1736779775,1736780799,1736781823,1736782847,1736783871,1736784127,1736784895,1736785919,1736786943,1736787967,1736788735,1736788991,1736790015,1736790527,1736791039,1736792063,1736792575,1736793087,1736794111,1736795135,1736798207,1736798719,1736799231,1736799487,1736800255,1736802303,1736803327,1736803839,1736804351,1736804863,1736805119,1736805375,1736806399,1736808447,1736809471,1736810495,1736810751,1736811007,1736811519,1736812543,1736813567,1736814591,1736815615,1736815871,1736816127,1736816639,1736817663,1736818175,1736818687,1736819711,1736820735,1736823807,1736824063,1736824319,1736824831,1736825855,1736826367,1736826879,1736827903,1736828927,1736829951,1736830463,1736830975,1736831487,1736831999,1736832511,1736833023,1736834047,1736835071,1736836095,1736838143,1736838399,1736838655,1736839167,1736840191,1736841215,1736843775,1736844287,1736846335,1736847359,1736848383,1736848895,1736849407,1736851455,1736851967,1736852479,1736853503,1736853759,1736854015,1736854271,1736854527,1736855551,1736856575,1736856831,1736857087,1736857343,1736857599,1736858623,1736859647,1736861695,1736862719,1736865279,1736865535,1736865791,1736866815,1736867839,1736869887,1736870911,1736872959,1736873471,1736873983,1736875007,1736878079,1736880127,1736881151,1736881663,1736882175,1736884223,1736885247,1736886271,1736887295,1736888319,1736889343,1736890367,1736891391,1736892415,1736892927,1736893439,1736894463,1736894975,1736895487,1736896511,1736897535,1736898559,1736900095,1736900607,1736902655,1736903935,1736904191,1736904703,1736906751,1736907775,1736908799,1736909823,1736910079,1736910335,1736910847,1736911871,1736912383,1736912895,1736913919,1736914943,1736915199,1736915711,1736915967,1736918015,1736918527,1736918783,1736919039,1736920063,1736921087,1736922111,1736923135,1736924159,1736924671,1736924927,1736925183,1736925695,1736926207,1736927743,1736927999,1736928255,1736928511,1736928767,1736929023,1736929279,1736930303,1736931327,1736932351,1736933375,1736933887,1736934399,1736936447,1736938495,1736939519,1736940543,1736943615,1736944639,1736945663,1736946687,1736947711,1736948735,1736948991,1736949759,1736951807,1736952831,1736953855,1736954879,1736955903,1736956927,1736958975,1736959743,1736959999,1736961023,1736962047,1736963327,1736963583,1736964095,1736965119,1736967167,1736968703,1736968959,1736969215,1736971263,1736972287,1736974335,1736975359,1736976383,1736977151,1736977407,1736978431,1736979455,1736979967,1736980479,1736981503,1736982015,1736982527,1736983551,1736983807,1736984063,1736984575,1736985599,1736987135,1736987903,1736988159,1736988415,1736990719,1736991743,1736992767,1736993791,1736994815,1736995327,1736995839,1736996351,1736996863,1736997887,1736998911,1736999935,1737000959,1737001471,1737001983,1737004031,1737005055,1737006079,1737007103,1737008127,1737009151,1737009407,1737009663,1737010175,1737011199,1737012223,1737012735,1737013247,1737014015,1737014271,1737014783,1737015295,1737016319,1737017343,1737019391,1737019903,1737020415,1737020927,1737021951,1737022207,1737022463,1737023487,1737023999,1737024511,1737025023,1737025535,1737026559,1737027583,1737027839,1737028095,1737028607,1737029119,1737029631,1737029887,1737030143,1737030399,1737030655,1737031167,1737031423,1737031679,1737032191,1737032703,1737033215,1737033727,1737034239,1737034495,1737034751,1737035775,1737036287,1737036543,1737036799,1737037311,1737037823,1737038847,1737039871,1737040895,1737041151,1737041919,1737042175,1737042431,1737042943,1737043455,1737043967,1737044991,1737046015,1737046271,1737046527,1737047295,1737047551,1737048063,1737048575,1737049087,1737050111,1737051135,1737051647,1737051903,1737052159,1737052671,1737053183,1737053695,1737053951,1737054207,1737055231,1737056255,1737056767,1737057279,1737058303,1737058815,1737059327,1737059839,1737060351,1737060863,1737061375,1737062399,1737063423,1737064447,1737064703,1737064959,1737066495,1737067007,1737067263,1737068031,1737068543,1737069567,1737069823,1737070079,1737070335,1737071615,1737072127,1737073663,1737073919,1737074175,1737074687,1737076735,1737076991,1737077247,1737077759,1737078783,1737079807,1737080319,1737080831,1737081855,1737082367,1737082879,1737083903,1737085439,1737085695,1737085951,1737086975,1737087487,1737087999,1737089023,1737090047,1737091071,1737092095,1737093119,1737094143,1737094399,1737094655,1737095167,1737096191,1737096447,1737096703,1737097215,1737097727,1737098239,1737098751,1737099263,1737099775,1737100031,1737100287,1737100799,1737101311,1737102335,1737103103,1737103359,1737104383,1737104895,1737105407,1737105663,1737105919,1737107455,1737108479,1737108991,1737110015,1737110527,1737110783,1737112575,1737113087,1737113599,1737114623,1737115647,1737116671,1737116927,1737117183,1737117695,1737118719,1737119231,1737119743,1737120767,1737121279,1737121535,1737121791,1737122047,1737122303,1737122815,1737123839,1737124351,1737124863,1737126911,1737127423,1737127935,1737129471,1737129727,1737129983,1737130495,1737131007,1737131519,1737132031,1737133055,1737133567,1737133823,1737134079,1737135103,1737135359,1737135615,1737136127,1737136639,1737136895,1737137151,1737137663,1737138175,1737138687,1737139199,1737139711,1737140223,1737142271,1737143295,1737143551,1737143807,1737144319,1737144575,1737144831,1737145343,1737145855,1737146367,1737146879,1737147391,1737148415,1737148927,1737149439,1737150463,1737150975,1737151231,1737151487,1737152511,1737153535,1737154047,1737154559,1737154815,1737155071,1737155583,1737156095,1737156351,1737156607,1737158655,1737159167,1737160191,1737160447,1737160703,1737161215,1737161727,1737162239,1737162751,1737163775,1737164799,1737165311,1737165823,1737166847,1737167359,1737167871,1737168383,1737168895,1737169919,1737170431,1737171455,1737171967,1737172479,1737172735,1737172991,1737174527,1737175039,1737175295,1737175551,1737175807,1737176063,1737176575,1737178623,1737178879,1737179135,1737181183,1737181695,1737182207,1737182719,1737183231,1737183487,1737183743,1737184255,1737184767,1737185279,1737185791,1737186047,1737186303,1737186815,1737187327,1737187839,1737188351,1737188863,1737189375,1737189887,1737190143,1737190399,1737190655,1737190911,1737191423,1737191679,1737191935,1737192447,1737192959,1737193471,1737193983,1737194239,1737194495,1737195007,1737195519,1737196031,1737196287,1737196543,1737197055,1737198079,1737198591,1737199103,1737199359,1737199615,1737200127,1737200639,1737201663,1737201919,1737202175,1737202687,1737203711,1737204223,1737204735,1737205247,1737205759,1737206783,1737207295,1737207807,1737208319,1737208831,1737209087,1737209343,1737209855,1737210367,1737210623,1737210879,1737211391,1737211903,1737212415,1737212671,1737212927,1737213439,1737213951,1737214463,1737214975,1737215487,1737215743,1737215999,1737216511,1737216767,1737217023,1737217535,1737218559,1737218815,1737221119,1737222143,1737222655,1737223423,1737223679,1737224191,1737224703,1737225215,1737225727,1737226239,1737226495,1737226751,1737227263,1737227519,1737227775,1737228799,1737229055,1737229311,1737229823,1737230335,1737230591,1737230847,1737231359,1737231871,1737232383,1737233407,1737234175,1737234431,1737234943,1737235455,1737235967,1737236479,1737236991,1737237759,1737238015,1737239551,1737239807,1737240063,1737240575,1737241087,1737241855,1737242111,1737242623,1737243135,1737243647,1737243903,1737244159,1737245183,1737245695,1737245951,1737246207,1737246719,1737247231,1737249279,1737249791,1737250047,1737250303,1737250815,1737251839,1737252351,1737252863,1737253119,1737253375,1737253887,1737254399,1737254911,1737255423,1737255935,1737256447,1737256959,1737257471,1737257983,1737258495,1737259007,1737259519,1737259775,1737260031,1737260543,1737261055,1737261567,1737262079,1737262591,1737262847,1737263103,1737263615,1737264127,1737264639,1737264895,1737265151,1737265663,1737266175,1737266431,1737267199,1737267711,1737267967,1737268223,1737268735,1737269247,1737269503,1737269759,1737270015,1737270271,1737270783,1737271295,1737271551,1737271807,1737272319,1737272831,1737273343,1737273855,1737274367,1737274879,1737275391,1737275647,1737275903,1737276159,1737276415,1737276927,1737277439,1737277951,1737278463,1737278975,1737279231,1737279487,1737279999,1737280511,1737281023,1737281535,1737282559,1737283071,1737283583,1737284095,1737284351,1737284607,1737285119,1737285631,1737286143,1737286655,1737287167,1737287679,1737288191,1737288703,1737289215,1737289727,1737290239,1737290751,1737291263,1737291775,1737292799,1737293055,1737293311,1737293823,1737294335,1737294847,1737295359,1737295871,1737296383,1737296895,1737297407,1737297919,1737298431,1737298943,1737299455,1737299967,1737300479,1737300991,1737301247,1737301503,1737302015,1737302271,1737302527,1737303039,1737303551,1737304575,1737304831,1737305087,1737305599,1737306111,1737306623,1737308671,1737309183,1737309439,1737310207,1737311231,1737311743,1737312255,1737312767,1737313279,1737313535,1737314303,1737315327,1737315839,1737317887,1737318911,1737319167,1737319423,1737319935,1737320447,1737320959,1737321471,1737321983,1737323007,1737323263,1737324031,1737324543,1737325055,1737325311,1737325567,1737326079,1737326591,1737327103,1737327615,1737327871,1737328127,1737328639,1737331199,1737331711,1737333503,1737333759,1737334271,1737334783,1737335807,1737336319,1737337343,1737337599,1737337855,1737338111,1737338367,1737338879,1737339391,1737339903,1737340415,1737340927,1737341183,1737341439,1737341951,1737342463,1737342975,1737343487,1737344511,1737344767,1737345023,1737345535,1737346047,1737346559,1737346815,1737347071,1737347583,1737348351,1737348607,1737349119,1737350143,1737350655,1737351167,1737351423,1737351679,1737351935,1737352191,1737352447,1737352703,1737353215,1737353471,1737353727,1737353983,1737354239,1737354751,1737355263,1737355775,1737356287,1737356799,1737357311,1737357823,1737358335,1737358591,1737359359,1737359871,1737360383,1737360639,1737360895,1737361407,1737361919,1737362431,1737362943,1737363455,1737364479,1737364991,1737366527,1737367039,1737367551,1737367807,1737368063,1737368575,1737369087,1737369343,1737369599,1737370111,1737370623,1737371135,1737371647,1737372159,1737372415,1737372927,1737373183,1737373695,1737374207,1737374719,1737375487,1737376255,1737376767,1737377791,1737378303,1737378815,1737379071,1737379327,1737379839,1737380351,1737380863,1737381631,1737381887,1737383935,1737384447,1737384959,1737385471,1737385983,1737386495,1737387263,1737387519,1737388031,1737389823,1737390079,1737390591,1737391103,1737391615,1737391871,1737392127,1737392639,1737393151,1737393663,1737394175,1737395199,1737395455,1737395711,1737396223,1737396735,1737397247,1737397503,1737397759,1737398783,1737399807,1737400319,1737400575,1737402367,1737402623,1737402879,1737403391,1737403903,1737404415,1737404927,1737405439,1737405951,1737406463,1737406975,1737407487,1737407999,1737408511,1737409023,1737409535,1737410047,1737410559,1737411583,1737412095,1737412607,1737413119,1737413631,1737414143,1737414655,1737415167,1737415679,1737416191,1737416447,1737416703,1737416959,1737417215,1737417727,1737418239,1737418495,1737418751,1737419263,1737419775,1737420287,1737420799,1737421567,1737421823,1737423103,1737423359,1737423871,1737424383,1737424895,1737425407,1737425663,1737425919,1737426431,1737427455,1737427967,1737428991,1737430015,1737430271,1737430527,1737431551,1737431807,1737432575,1737432831,1737433087,1737433599,1737434111,1737435135,1737435647,1737436159,1737436671,1737436927,1737437183,1737437695,1737438207,1737439231,1737439743,1737440255,1737440767,1737443327,1737443839,1737444351,1737444607,1737444863,1737445375,1737445887,1737446143,1737446399,1737446655,1737446911,1737447423,1737447935,1737448191,1737448447,1737448959,1737449215,1737452543,1737453055,1737453567,1737454079,1737455103,1737455615,1737455871,1737456639,1737457151,1737457663,1737458687,1737459711,1737460223,1737460735,1737462271,1737462783,1737463039,1737463295,1737463807,1737464575,1737464831,1737465343,1737466367,1737466623,1737466879,1737467391,1737468415,1737468927,1737469183,1737469439,1737469951,1737470463,1737470975,1737471487,1737471999,1737472255,1737472511,1737473023,1737476095,1737476607,1737477119,1737477631,1737478655,1737478911,1737479167,1737480191,1737480703,1737480959,1737481215,1737482751,1737483263,1737483775,1737484287,1737484799,1737485823,1737486335,1737486847,1737487103,1737487359,1737487871,1737488383,1737488895,1737489407,1737489663,1737489919,1737490431,1737490943,1737491455,1737491967,1737492479,1737492991,1737493503,1737496319,1737496575,1737497599,1737498111,1737498623,1737499647,1737500159,1737500671,1737501183,1737501695,1737501951,1737502719,1737503231,1737503487,1737503743,1737504255,1737504767,1737505279,1737505791,1737506047,1737506303,1737507327,1737507839,1737508095,1737508351,1737509375,1737511679,1737511935,1737512959,1737513215,1737513471,1737513983,1737514751,1737515007,1737515519,1737516543,1737517055,1737517567,1737518079,1737518591,1737520383,1737520639,1737521663,1737522175,1737522431,1737522687,1737523711,1737524223,1737525247,1737525759,1737526015,1737526271,1737526783,1737527039,1737528319,1737528831,1737529343,1737530367,1737530879,1737531391,1737531903,1737532415,1737532927,1737534463,1737534975,1737535487,1737535999,1737537535,1737538047,1737538559,1737539071,1737539583,1737540095,1737540351,1737540607,1737541119,1737542143,1737542399,1737542655,1737543167,1737543679,1737545215,1737546239,1737546751,1737547775,1737548287,1737549823,1737550847,1737551103,1737551359,1737551615,1737551871,1737552383,1737552895,1737553919,1737554431,1737555967,1737557503,1737558527,1737559039,1737559551,1737560063,1737560319,1737560575,1737561087,1737561343,1737561599,1737562111,1737562623,1737562879,1737563135,1737563647,1737565183,1737565695,1737567231,1737567743,1737568255,1737568511,1737568767,1737569279,1737569791,1737570559,1737570815,1737571327,1737571839,1737572351,1737572863,1737573887,1737574399,1737574911,1737575935,1737576447,1737576959,1737577471,1737577983,1737578239,1737578495,1737579007,1737579519,1737580031,1737580543,1737581055,1737581567,1737581823,1737582079,1737582591,1737583103,1737583359,1737583615,1737584127,1737584639,1737585151,1737585407,1737585663,1737586175,1737586687,1737587199,1737587711,1737589759,1737590783,1737591295,1737591807,1737592831,1737593343,1737594879,1737595391,1737596159,1737596415,1737596671,1737596927,1737597951,1737598463,1737600767,1737602559,1737603071,1737603583,1737603839,1737604095,1737605119,1737605631,1737608191,1737608703,1737609215,1737610239,1737610751,1737611263,1737611775,1737614335,1737614847,1737615359,1737615871,1737616383,1737617407,1737618943,1737619455,1737619711,1737619967,1737621503,1737622015,1737622527,1737622783,1737623039,1737623551,1737624063,1737624575,1737625087,1737625599,1737626111,1737627647,1737627903,1737628159,1737629695,1737630207,1737630719,1737631231,1737631487,1737631743,1737632255,1737632767,1737633279,1737633535,1737633791,1737634303,1737635327,1737636351,1737636607,1737636863,1737637887,1737638399,1737638911,1737639423,1737639935,1737640447,1737640703,1737640959,1737641471,1737641727,1737641983,1737642239,1737642495,1737643007,1737643519,1737643775,1737644031,1737644543,1737644799,1737645055,1737646079,1737646335,1737646591,1737646847,1737647103,1737647359,1737647615,1737648127,1737648383,1737648639,1737648895,1737650175,1737650687,1737651199,1737651455,1737651711,1737652735,1737653247,1737653759,1737654271,1737654783,1737655295,1737655807,1737656063,1737656319,1737656831,1737657343,1737658367,1737658879,1737659135,1737659391,1737659903,1737660415,1737660927,1737661951,1737662463,1737662975,1737663487,1737663999,1737664511,1737664767,1737665023,1737667071,1737667583,1737668095,1737670655,1737671167,1737671679,1737672191,1737672447,1737672703,1737673215,1737673727,1737674239,1737674751,1737675263,1737676287,1737676543,1737677311,1737677823,1737678335,1737679359,1737679871,1737680383,1737680895,1737681919,1737682431,1737683967,1737684991,1737685247,1737685503,1737686015,1737686527,1737687551,1737688831,1737689087,1737690111,1737690623,1737690879,1737692671,1737692927,1737693183,1737693695,1737694207,1737694719,1737694975,1737695231,1737695743,1737696767,1737697279,1737697791,1737698303,1737698559,1737698815,1737699327,1737699839,1737701375,1737701887,1737702399,1737702655,1737702911,1737703423,1737704959,1737705215,1737705471,1737707007,1737707519,1737709055,1737709567,1737710335,1737710847,1737712639,1737713151,1737713663,1737714175,1737714687,1737715199,1737715711,1737716223,1737717759,1737718271,1737718783,1737719295,1737719807,1737720319,1737720831,1737721343,1737721855,1737722879,1737725439,1737726463,1737726719,1737726975,1737727999,1737728511,1737729023,1737729535,1737730559,1737730815,1737731071,1737731327,1737733119,1737733375,1737733631,1737734143,1737735679,1737736191,1737736703,1737737215,1737739775,1737740287,1737741055,1737741311,1737741823,1737742335,1737742847,1737744127,1737744383,1737744639,1737744895,1737745407,1737745919,1737746175,1737746431,1737746943,1737747455,1737747967,1737748479,1737748735,1737748991,1737749503,1737749759,1737750527,1737751295,1737751551,1737751807,1737752575,1737752831,1737753087,1737753599,1737754111,1737755135,1737756671,1737756927,1737757695,1737758207,1737758719,1737759231,1737759743,1737760255,1737760767,1737761279,1737761791,1737762303,1737762815,1737763327,1737763839,1737765375,1737766399,1737766911,1737767423,1737767935,1737768191,1737768447,1737769983,1737770495,1737771007,1737771263,1737771519,1737772031,1737773567,1737774079,1737775615,1737775871,1737776127,1737776639,1737777151,1737777663,1737778175,1737778687,1737779199,1737779455,1737779711,1737780223,1737780479,1737780735,1737781759,1737782271,1737782527,1737782783,1737784319,1737784575,1737784831,1737785087,1737785343,1737785855,1737786367,1737786879,1737788415,1737788671,1737788927,1737789439,1737789695,1737789951,1737790463,1737790975,1737791487,1737791999,1737792511,1737793023,1737793535,1737794047,1737794303,1737794559,1737796607,1737797119,1737797631,1737798655,1737799679,1737800191,1737800703,1737804287,1737804799,1737805823,1737806335,1737808383,1737808895,1737809151,1737809407,1737809919,1737810431,1737810943,1737811455,1737811711,1737811967,1737812479,1737812735,1737812991,1737813503,1737813759,1737814015,1737814271,1737814527,1737815039,1737815551,1737816063,1737816575,1737816831,1737817087,1737817599,1737818111,1737818623,1737819135,1737819647,1737820159,1737820671,1737820927,1737821183,1737821695,1737822207,1737822463,1737822719,1737823231,1737823743,1737823999,1737824255,1737824767,1737825279,1737825791,1737826303,1737826815,1737827327,1737827839,1737828095,1737828351,1737828863,1737829119,1737829375,1737829887,1737830143,1737830399,1737830911,1737831423,1737831935,1737832447,1737832959,1737833471,1737833983,1737834239,1737834495,1737835519,1737836287,1737836543,1737837567,1737838079,1737839103,1737839615,1737840127,1737840639,1737841151,1737842175,1737843199,1737843711,1737844223,1737844479,1737844735,1737845759,1737846271,1737846783,1737847295,1737848063,1737848319,1737849343,1737850879,1737851391,1737851903,1737852415,1737853439,1737854463,1737854975,1737855487,1737855999,1737856255,1737856511,1737857023,1737857535,1737857791,1737858047,1737858559,1737859583,1737860095,1737860351,1737860863,1737861119,1737861631,1737862655,1737863167,1737864447,1737864703,1737865215,1737865727,1737866239,1737866751,1737867263,1737867775,1737869311,1737869823,1737870079,1737870335,1737870847,1737871359,1737871871,1737872383,1737872895,1737873407,1737873663,1737874175,1737874431,1737874943,1737875455,1737876223,1737876479,1737878527,1737878783,1737879039,1737879551,1737880063,1737881599,1737882111,1737884159,1737884415,1737885183,1737885695,1737885951,1737886207,1737886719,1737888255,1737889279,1737889535,1737889791,1737890303,1737890815,1737891071,1737891327,1737891583,1737891839,1737892863,1737893375,1737893631,1737893887,1737894399,1737894911,1737895423,1737895935,1737896447,1737897471,1737897983,1737898495,1737898751,1737899007,1737899519,1737900031,1737900543,1737901055,1737901567,1737901823,1737902079,1737902591,1737903103,1737903359,1737903615,1737904127,1737904639,1737905151,1737907711,1737907967,1737908223,1737910271,1737910527,1737910783,1737911295,1737913855,1737914367,1737914879,1737915391,1737915903,1737917439,1737917951,1737918463,1737918719,1737918975,1737919487,1737919999,1737920511,1737921023,1737921535,1737922559,1737923071,1737923583,1737924095,1737924607,1737924863,1737925119,1737925631,1737926143,1737926655,1737927167,1737927423,1737927679,1737927935,1737928191,1737928703,1737929215,1737929727,1737930239,1737930751,1737931263,1737931775,1737932287,1737934335,1737934591,1737934847,1737935359,1737935871,1737936383,1737937407,1737937919,1737938175,1737938431,1737938943,1737939455,1737939967,1737940479,1737940735,1737940991,1737941503,1737942015,1737942527,1737943039,1737943295,1737943551,1737944063,1737944575,1737945087,1737945599,1737946111,1737946623,1737947647,1737948159,1737948415,1737948671,1737949695,1737950207,1737950719,1737951231,1737951743,1737952255,1737952511,1737953279,1737953791,1737955583,1737955839,1737956351,1737956863,1737957375,1737958911,1737959167,1737959423,1737959935,1737960447,1737960959,1737961471,1737961727,1737961983,1737962495,1737964031,1737965055,1737965311,1737965567,1737965823,1737966079,1737966591,1737967103,1737967359,1737968127,1737968639,1737969151,1737969663,1737970175,1737970431,1737970943,1737971199,1737971711,1737971967,1737972223,1737972479,1737973759,1737974271,1737975295,1737975551,1737975807,1737976319,1737977087,1737977343,1737977855,1737978623,1737978879,1737979391,1737979903,1737981439,1737981695,1737981951,1737982207,1737982463,1737982975,1737983487,1737983999,1737984511,1737984767,1737985023,1737985535,1737986047,1737986303,1737986559,1737987071,1737988095,1737988607,1737988863,1737989119,1737989631,1737990143,1737990655,1737991679,1737992191,1737993215,1737993471,1737993727,1737994239,1737994495,1737994751,1737995263,1737995775,1737996287,1737997055,1737997311,1737997823,1737998335,1737998591,1737998847,1737999359,1737999871,1738000383,1738000895,1738001407,1738001919,1738002431,1738002943,1738003199,1738003455,1738003967,1738004479,1738004991,1738006527,1738007039,1738007551,1738008063,1738008319,1738008575,1738009599,1738010111,1738012159,1738012671,1738012927,1738013183,1738013695,1738014207,1738014719,1738014975,1738015231,1738015743,1738015999,1738016255,1738016511,1738016767,1738017023,1738017279,1738017791,1738018303,1738018815,1738019071,1738019327,1738019839,1738020095,1738020351,1738020607,1738020863,1738021375,1738021887,1738022911,1738023167,1738023423,1738023935,1738024447,1738025471,1738025983,1738026239,1738026495,1738028031,1738028287,1738028543,1738028799,1738029055,1738029567,1738030079,1738030591,1738030847,1738031103,1738031615,1738032127,1738032639,1738033663,1738034175,1738034687,1738035199,1738035711,1738036223,1738036735,1738037247,1738039807,1738040063,1738040319,1738040831,1738042367,1738042623,1738042879,1738043391,1738043903,1738044159,1738044415,1738044927,1738045439,1738046463,1738046719,1738046975,1738047487,1738047999,1738048511,1738049023,1738049279,1738050047,1738050559,1738051071,1738051583,1738052095,1738052351,1738052607,1738053119,1738053631,1738054143,1738054655,1738055679,1738057215,1738057727,1738058751,1738059263,1738059519,1738059775,1738060287,1738060543,1738061311,1738061823,1738062335,1738062847,1738063359,1738064383,1738064895,1738065407,1738065663,1738065919,1738066431,1738066943,1738067455,1738067711,1738067967,1738068735,1738068991,1738069503,1738070527,1738071039,1738071551,1738072063,1738072575,1738072831,1738073087,1738073599,1738074111,1738075135,1738075647,1738077439,1738077695,1738078207,1738078719,1738079231,1738079743,1738080255,1738080511,1738080767,1738081279,1738081791,1738082303,1738082815,1738083583,1738083839,1738084351,1738084863,1738085887,1738086143,1738086399,1738086911,1738087423,1738087935,1738088191,1738088447,1738088959,1738089471,1738089983,1738090495,1738091519,1738092031,1738092287,1738092543,1738093055,1738093567,1738094079,1738094335,1738094591,1738094847,1738095359,1738095615,1738096639,1738097151,1738097407,1738097663,1738100735,1738100991,1738101247,1738102271,1738102783,1738103295,1738103807,1738104319,1738105343,1738105855,1738106367,1738106879,1738107391,1738107903,1738108159,1738108415,1738108927,1738109439,1738109951,1738110463,1738110719,1738110975,1738111487,1738111999,1738112511,1738113023,1738113535,1738113791,1738114047,1738114559,1738115583,1738116095,1738116351,1738116607,1738117119,1738117631,1738118143,1738118911,1738119167,1738119679,1738120191,1738120447,1738120703,1738121215,1738121727,1738122239,1738122495,1738122751,1738123263,1738123775,1738124287,1738124799,1738125311,1738125823,1738126847,1738127359,1738127615,1738127871,1738129919,1738130431,1738130943,1738131455,1738131967,1738132223,1738132479,1738133503,1738134015,1738135039,1738137599,1738138623,1738139135,1738139647,1738140159,1738140671,1738141695,1738142207,1738142719,1738142975,1738143231,1738144255,1738145279,1738146303,1738147327,1738147839,1738148351,1738148863,1738149375,1738149887,1738150399,1738150911,1738151423,1738151935,1738152447,1738152959,1738153471,1738154495,1738154751,1738156031,1738156543,1738156799,1738157055,1738157567,1738158079,1738158591,1738158847,1738159103,1738159615,1738161151,1738161663,1738162175,1738162687,1738163199,1738163711,1738164223,1738164991,1738165247,1738169855,1738170367,1738170879,1738171135,1738171391,1738172415,1738172671,1738173183,1738173439,1738179583,1738180095,1738185215,1738185727,1738187263,1738188287,1738188799,1738189311,1738190847,1738191359,1738191871,1738192383,1738192895,1738193407,1738193919,1738194431,1738194943,1738195455,1738195967,1738196479,1738196735,1738196991,1738197503,1738199551,1738205183,1738205439,1738206207,1738206719,1738207231,1738207743,1738207999,1738208255,1738208767,1738209535,1738209791,1738210047,1738212351,1738212863,1738213375,1738213887,1738214399,1738214655,1738214911,1738215423,1738215679,1738215935,1738216447,1738217471,1738218239,1738218495,1738219007,1738220031,1738220543,1738221567,1738222079,1738222335,1738222591,1738222847,1738223103,1738223615,1738224127,1738224383,1738224639,1738225151,1738225407,1738225663,1738226175,1738227199,1738227711,1738228223,1738228479,1738228735,1738229247,1738229759,1738230783,1738231295,1738232831,1738233343,1738233855,1738234367,1738234879,1738235391,1738236159,1738236415,1738236927,1738237183,1738237439,1738237951,1738238975,1738239487,1738239999,1738240255,1738240511,1738241023,1738241535,1738242047,1738242559,1738242815,1738243071,1738243327,1738243583,1738243839,1738244095,1738245119,1738245631,1738246911,1738247167,1738247679,1738247935,1738248191,1738248447,1738248703,1738249215,1738249727,1738250239,1738250751,1738251263,1738252287,1738253823,1738254847,1738255871,1738256383,1738256895,1738257407,1738257663,1738257919,1738258431,1738258943,1738259455,1738259967,1738260991,1738261503,1738263039,1738263551,1738263807,1738264063,1738266111,1738266623,1738267135,1738267647,1738267903,1738268159,1738268671,1738269183,1738269695,1738270719,1738271231,1738273279,1738273791,1738274047,1738274303,1738274815,1738275327,1738275839,1738276351,1738280447,1738281471,1738282495,1738283007,1738283519,1738284031,1738284543,1738286079,1738286335,1738286591,1738289663,1738290175,1738290687,1738291199,1738291455,1738291711,1738292735,1738293759,1738294271,1738294783,1738296319,1738296831,1738297343,1738297855,1738298879,1738299903,1738300927,1738301439,1738301695,1738301951,1738303487,1738303999,1738304511,1738305023,1738305279,1738305535,1738306559,1738307071,1738307839,1738308607,1738309631,1738310399,1738310655,1738311167,1738311423,1738311679,1738312191,1738312703,1738313215,1738314239,1738314751,1738315263,1738315775,1738316287,1738316799,1738317311,1738317823,1738318335,1738318847,1738319359,1738319871,1738321407,1738321919,1738322431,1738322943,1738323455,1738323967,1738324479,1738324991,1738325247,1738325503,1738326015,1738326527,1738326783,1738327039,1738327551,1738328063,1738330879,1738331135,1738331647,1738332159,1738333183,1738333439,1738333695,1738334207,1738335231,1738335743,1738336255,1738337279,1738337791,1738338303,1738338815,1738339327,1738339839,1738340863,1738341375,1738342399,1738342911,1738343935,1738344191,1738346751,1738347007,1738348031,1738348543,1738349567,1738350079,1738350591,1738351103,1738351359,1738351615,1738352127,1738352639,1738353151,1738353663,1738354175,1738355199,1738356479,1738356735,1738357247,1738359295,1738359807,1738360063,1738361343,1738361599,1738361855,1738363903,1738364159,1738364415,1738364927,1738365439,1738365951,1738366975,1738367487,1738367743,1738367999,1738368255,1738368511,1738368767,1738369023,1738369535,1738370559,1738370815,1738371071,1738371583,1738372607,1738373119,1738373631,1738376703,1738377215,1738377727,1738377983,1738378239,1738378751,1738379263,1738380031,1738381823,1738382335,1738382847,1738383359,1738386431,1738386687,1738386943,1738387455,1738389503,1738390015,1738391039,1738392063,1738392575,1738393087,1738393343,1738393599,1738394111,1738394623,1738395135,1738395647,1738396159,1738396671,1738397183,1738397695,1738398719,1738402303,1738402815,1738403071,1738403327,1738404351,1738404863,1738405119,1738405375,1738405887,1738406399,1738406911,1738407167,1738407423,1738408447,1738409471,1738409983,1738410495,1738411007,1738411263,1738411519,1738412031,1738412543,1738412799,1738413055,1738415359,1738415615,1738416127,1738416383,1738416639,1738416895,1738417151,1738417663,1738418175,1738420991,1738421247,1738422271,1738423295,1738423807,1738424319,1738424575,1738424831,1738426879,1738427391,1738428415,1738428927,1738429439,1738429951,1738430463,1738431487,1738431999,1738432511,1738434559,1738435839,1738436095,1738436351,1738436607,1738437631,1738438143,1738438655,1738438911,1738439167,1738439679,1738440191,1738441471,1738441727,1738442239,1738442495,1738442751,1738444543,1738444799,1738446335,1738446847,1738447359,1738447871,1738448383,1738448895,1738449407,1738450431,1738450687,1738450943,1738452991,1738453247,1738455551,1738456063,1738456575,1738457087,1738458623,1738459135,1738459647,1738459903,1738460159,1738460671,1738461183,1738461695,1738462207,1738464767,1738465023,1738465279,1738465791,1738466303,1738466815,1738467327,1738467839,1738468351,1738468863,1738470143,1738470399,1738471423,1738471935,1738472959,1738473471,1738474239,1738474495,1738475007,1738475519,1738476031,1738476543,1738479103,1738479615,1738480127,1738480639,1738481151,1738482687,1738483199,1738485759,1738489343,1738489855,1738490367,1738491647,1738491903,1738492415,1738492927,1738493183,1738493439,1738493951,1738494207,1738494463,1738494719,1738494975,1738495487,1738495999,1738496511,1738496767,1738498303,1738501887,1738502655,1738503167,1738503679,1738504703,1738505727,1738507263,1738507775,1738508287,1738508799,1738509311,1738509823,1738510335,1738510847,1738511103,1738513919,1738514431,1738514943,1738515199,1738515455,1738516991,1738517503,1738518015,1738518527,1738519039,1738521087,1738522111,1738522623,1738523135,1738524671,1738525183,1738526207,1738526719,1738527231,1738527743,1738528511,1738528767,1738529279,1738529791,1738531327,1738531839,1738533887,1738534399,1738538239,1738538495,1738539519,1738541055,1738541311,1738541567,1738542079,1738543103,1738543615,1738544127,1738544383,1738544639,1738545151,1738547199,1738548223,1738548479,1738548735,1738548991,1738549247,1738550271,1738550783,1738551295,1738551551,1738551807,1738552319,1738552831,1738553855,1738554111,1738554367,1738554879,1738555391,1738555903,1738556415,1738556927,1738557951,1738559487,1738559999,1738560511,1738561023,1738561535,1738562559,1738563071,1738563583,1738564095,1738564607,1738564863,1738565119,1738565631,1738565887,1738567167,1738567679,1738568703,1738569215,1738569727,1738570239,1738570751,1738572287,1738572799,1738573823,1738574079,1738574335,1738574847,1738575359,1738576383,1738576639,1738578175,1738578431,1738578943,1738579455,1738579711,1738579967,1738580479,1738580735,1738580991,1738581503,1738582015,1738582527,1738584575,1738585087,1738585599,1738586623,1738588415,1738588671,1738590207,1738591231,1738591487,1738591743,1738592255,1738592511,1738593279,1738593791,1738594303,1738594815,1738595327,1738595839,1738596351,1738597375,1738597887,1738601471,1738601983,1738602495,1738603007,1738603519,1738604031,1738604543,1738604799,1738605055,1738605311,1738605567,1738606079,1738606591,1738607103,1738608127,1738608639,1738609663,1738610175,1738610687,1738610943,1738613247,1738613759,1738614783,1738615807,1738616319,1738616831,1738617343,1738619391,1738619647,1738619903,1738620415,1738620927,1738621439,1738622975,1738623487,1738623999,1738624255,1738624511,1738625023,1738625535,1738626047,1738626559,1738627071,1738627583,1738628095,1738629119,1738629631,1738630655,1738631167,1738632191,1738633215,1738633727,1738634751,1738637311,1738638335,1738638847,1738639359,1738639871,1738640383,1738641407,1738641919,1738642431,1738642687,1738642943,1738643967,1738644479,1738644991,1738645503,1738647039,1738647551,1738648063,1738651135,1738651647,1738652159,1738652671,1738654975,1738655231,1738655743,1738656767,1738657279,1738657791,1738658303,1738659327,1738660351,1738660863,1738661375,1738661631,1738661887,1738662399,1738662655,1738662911,1738663167,1738663423,1738664959,1738665471,1738665983,1738666495,1738666751,1738667007,1738667519,1738668031,1738668543,1738669055,1738669311,1738669567,1738670079,1738670591,1738671103,1738671615,1738671871,1738672127,1738672639,1738673151,1738673663,1738674175,1738675199,1738676735,1738677247,1738678271,1738678783,1738679807,1738680319,1738680831,1738681087,1738681343,1738682367,1738682879,1738683391,1738683903,1738684415,1738685439,1738686463,1738687487,1738687999,1738688511,1738688767,1738691071,1738691327,1738691583,1738692095,1738692607,1738693119,1738693631,1738694655,1738695167,1738695679,1738696191,1738696703,1738696959,1738697727,1738698239,1738698751,1738699775,1738700287,1738700543,1738700799,1738701311,1738701823,1738702335,1738702591,1738702847,1738703359,1738703871,1738704383,1738704895,1738705407,1738705919,1738706175,1738706431,1738706943,1738707967,1738708479,1738709503,1738710015,1738713087,1738713343,1738713599,1738714623,1738715135,1738715647,1738716159,1738716671,1738716927,1738717183,1738718207,1738719231,1738719743,1738721791,1738722303,1738722559,1738722815,1738723327,1738723839,1738725887,1738727423,1738728191,1738728447,1738729471,1738729983,1738730495,1738732031,1738732543,1738733055,1738733567,1738734079,1738734335,1738735103,1738735359,1738736127,1738736639,1738736895,1738737151,1738737663,1738738175,1738739199,1738740735,1738740991,1738741759,1738742783,1738743295,1738743807,1738744319,1738744831,1738745855,1738747391,1738747903,1738748415,1738748927,1738749183,1738749439,1738753535,1738754047,1738754559,1738755071,1738755327,1738755583,1738756095,1738758655,1738759679,1738759935,1738760191,1738760703,1738761727,1738762239,1738763775,1738764287,1738765055,1738765311,1738765823,1738766335,1738766847,1738767359,1738768383,1738768895,1738769407,1738769919,1738770687,1738770943,1738771967,1738772479,1738774527,1738775039,1738775807,1738776319,1738776575,1738777087,1738777599,1738778111,1738778623,1738779647,1738780159,1738780927,1738781695,1738782207,1738782719,1738783231,1738783487,1738783743,1738788351,1738788863,1738789375,1738789887,1738791935,1738792191,1738792447,1738792959,1738793215,1738793471,1738795007,1738796031,1738796543,1738797055,1738797567,1738798591,1738799103,1738799615,1738800127,1738800639,1738801151,1738801663,1738801919,1738802175,1738802687,1738803199,1738803711,1738805759,1738806271,1738807295,1738808831,1738809343,1738809855,1738810879,1738811391,1738812415,1738812671,1738812927,1738813439,1738813951,1738814463,1738814719,1738814975,1738815487,1738817023,1738817535,1738818047,1738818303,1738818559,1738819071,1738819583,1738820607,1738821119,1738821631,1738821887,1738822143,1738822399,1738822911,1738823167,1738823935,1738824191,1738825215,1738825727,1738825983,1738833407,1738833919,1738834431,1738834943,1738836479,1738836991,1738838015,1738838271,1738838527,1738839039,1738840063,1738841087,1738841599,1738841855,1738842111,1738842367,1738842623,1738843135,1738843647,1738844671,1738846207,1738846719,1738847231,1738847487,1738847743,1738848255,1738848767,1738849279,1738849791,1738851327,1738853119,1738853375,1738855423,1738858495,1738859007,1738859519,1738860543,1738861055,1738861311,1738861567,1738862079,1738862591,1738863615,1738864127,1738864639,1738866175,1738866687,1738867199,1738870783,1738871295,1738871807,1738874879,1738877951,1738878463,1738878719,1738878975,1738879999,1738880511,1738881023,1738881535,1738882559,1738886143,1738886399,1738886655,1738887167,1738887679,1738888191,1738888703,1738888959,1738889215,1738889727,1738890239,1738890751,1738891519,1738891775,1738894847,1738895359,1738895871,1738897407,1738897919,1738903039,1738904063,1738907135,1738907647,1738907903,1738908671,1738908927,1738911743,1738911999,1738912255,1738912767,1738913023,1738913279,1738913791,1738914303,1738914815,1738915327,1738915839,1738916351,1738928639,1738928895,1738932735,1738932991,1738933247,1738935295,1738936319,1738936831,1738937343,1738937855,1738938879,1738940159,1738940415,1738941951,1738942975,1738943487,1738944255,1738944511,1738945023,1738946559,1738947071,1738947583,1738948095,1738948351,1738949631,1738950143,1738950655,1738951167,1738951679,1738952191,1738952703,1738952959,1738953215,1738953727,1738954239,1738954751,1738955263,1738956287,1738956543,1738956799,1738957311,1738957823,1738958335,1738958847,1738959871,1738961407,1738961919,1738962431,1738962687,1738962943,1738963455,1738964479,1738965503,1738966527,1738966783,1738967039,1738967551,1738968063,1738969087,1738969343,1738969855,1738970111,1738970623,1738971135,1738971903,1738972159,1738974463,1738974719,1738975231,1738975743,1738976255,1738976767,1738977279,1738977791,1738978047,1738978303,1738978815,1738979839,1738980351,1738980863,1738981631,1738981887,1738983935,1738984447,1738984959,1738985471,1738985983,1738987007,1738987263,1738987519,1738989055,1738989567,1738989823,1738990079,1738990591,1738990847,1738991103,1738991615,1738992127,1738992383,1738992639,1738992895,1738993151,1738993663,1738994175,1738994687,1738995199,1738995711,1738996223,1738997247,1738997759,1738998271,1738998527,1738998783,1738999295,1738999807,1739000319,1739000575,1739001343,1739002879,1739003135,1739003391,1739004415,1739004927,1739005183,1739005439,1739005951,1739006463,1739006975,1739007487,1739007999,1739008511,1739009791,1739010047,1739010559,1739011071,1739011583,1739012095,1739012607,1739013119,1739013631,1739014143,1739014655,1739014911,1739015167,1739016191,1739017727,1739018239,1739018495,1739018751,1739019263,1739021823,1739023359,1739023871,1739024383,1739027199,1739027455,1739027711,1739027967,1739028991,1739029759,1739030015,1739031551,1739032063,1739032575,1739033087,1739033599,1739034111,1739036159,1739036671,1739037183,1739037439,1739037695,1739037951,1739038207,1739038719,1739039231,1739039743,1739040255,1739041791,1739044095,1739044351,1739044863,1739045375,1739045887,1739046399,1739046911,1739047423,1739047935,1739049471,1739050495,1739051007,1739051519,1739052031,1739052287,1739052543,1739053055,1739053311,1739054847,1739055103,1739055359,1739055615,1739056127,1739056639,1739057151,1739057663,1739058175,1739058687,1739058943,1739059199,1739061503,1739061759,1739062271,1739062783,1739063295,1739063551,1739063807,1739064831,1739065343,1739065855,1739066367,1739067391,1739067647,1739067903,1739068671,1739068927,1739069439,1739070975,1739071487,1739071743,1739071999,1739072511,1739073023,1739073535,1739074047,1739074559,1739074815,1739075071,1739075583,1739076095,1739077631,1739077887,1739078143,1739078655,1739078911,1739079167,1739080191,1739080703,1739081215,1739081727,1739084799,1739085055,1739085311,1739085823,1739086335,1739086847,1739087359,1739088383,1739088895,1739089407,1739089919,1739090431,1739098623,1739099135,1739099647,1739100159,1739100671,1739102207,1739102463,1739102719,1739103231,1739103743,1739104255,1739104767,1739105023,1739105279,1739105791,1739106047,1739106303,1739106815,1739107327,1739107583,1739107839,1739108607,1739108863,1739109119,1739109375,1739110399,1739112703,1739112959,1739116031,1739116799,1739117055,1739119103,1739119359,1739119615,1739120127,1739120639,1739121151,1739122175,1739122687,1739126015,1739126783,1739127295,1739127807,1739128319,1739132415,1739132927,1739137535,1739138047,1739138559,1739140607,1739141119,1739141631,1739142143,1739144703,1739145215,1739145727,1739145983,1739146239,1739146751,1739147775,1739151871,1739152383,1739152895,1739153407,1739153919,1739154431,1739154943,1739155455,1739155967,1739156479,1739156991,1739161087,1739161599,1739164671,1739165439,1739165695,1739166207,1739166719,1739167231,1739167743,1739169279,1739170303,1739170815,1739171839,1739172351,1739172863,1739173375,1739174911,1739175167,1739175423,1739175935,1739176447,1739177471,1739177983,1739179007,1739179519,1739180543,1739181055,1739182079,1739182335,1739182591,1739183103,1739183615,1739184127,1739184639,1739185151,1739187199,1739187711,1739188735,1739189759,1739190271,1739190783,1739191039,1739191295,1739192319,1739192831,1739193343,1739194367,1739194879,1739195135,1739195391,1739195903,1739197951,1739198463,1739198719,1739198975,1739199487,1739199999,1739201023,1739201535,1739202047,1739203071,1739203583,1739203839,1739204095,1739204351,1739204607,1739210495,1739210751,1739212799,1739213055,1739213311,1739213823,1739214335,1739214847,1739215871,1739216127,1739216383,1739217151,1739217407,1739218431,1739218943,1739219455,1739219967,1739220479,1739220991,1739221503,1739223807,1739224063,1739224575,1739226111,1739226623,1739226879,1739227135,1739227647,1739228159,1739228671,1739229183,1739230719,1739231231,1739233791,1739234047,1739234303,1739237887,1739238143,1739238399,1739239423,1739239935,1739240447,1739241471,1739241983,1739242751,1739243007,1739244543,1739245311,1739245567,1739246591,1739247103,1739247615,1739248127,1739248639,1739249151,1739250175,1739250687,1739251455,1739251711,1739253247,1739253759,1739254271,1739255295,1739256319,1739257343,1739258879,1739259391,1739260415,1739263487,1739263743,1739263999,1739264511,1739265023,1739265535,1739266047,1739266559,1739267071,1739267583,1739268095,1739268607,1739269119,1739269631,1739270655,1739270911,1739277311,1739277823,1739278335,1739280127,1739280383,1739280895,1739281919,1739282687,1739282943,1739284479,1739286015,1739286527,1739287039,1739288063,1739288575,1739289087,1739290111,1739290367,1739291135,1739291391,1739291647,1739294719,1739295231,1739296767,1739297279,1739302399,1739302911,1739304191,1739304447,1739304959,1739305471,1739305727,1739305983,1739306495,1739307519,1739309055,1739309311,1739312127,1739312639,1739314175,1739314687,1739315199,1739315711,1739316223,1739318271,1739318527,1739319295,1739319807,1739320319,1739320831,1739321343,1739321855,1739322367,1739322879,1739323647,1739323903,1739324415,1739324927,1739326463,1739329023,1739329535,1739329791,1739332095,1739332607,1739333119,1739333375,1739333631,1739334143,1739335167,1739335679,1739336191,1739336703,1739337215,1739338239,1739338495,1739338751,1739339263,1739340799,1739343359,1739343871,1739344383,1739344895,1739345407,1739345919,1739346431,1739350015,1739350271,1739351039,1739352063,1739352575,1739353087,1739353343,1739353599,1739354111,1739355135,1739355647,1739356927,1739357183,1739357695,1739358207,1739358463,1739358719,1739359487,1739359743,1739360255,1739360511,1739360767,1739361279,1739361535,1739362303,1739362559,1739366399,1739366911,1739367423,1739367935,1739368447,1739368959,1739369727,1739369983,1739370495,1739371007,1739371519,1739372031,1739372543,1739373055,1739373567,1739374335,1739374591,1739375103,1739376127,1739377663,1739378175,1739380223,1739380735,1739381247,1739381759,1739384831,1739385343,1739386879,1739389439,1739389951,1739390975,1739391487,1739391999,1739392511,1739393023,1739393279,1739393535,1739394047,1739394559,1739397631,1739398143,1739398655,1739399167,1739399679,1739400191,1739400703,1739400959,1739404287,1739404799,1739405311,1739405567,1739405823,1739406335,1739406847,1739407359,1739407871,1739408383,1739408895,1739409407,1739411199,1739411455,1739412479,1739412735,1739412991,1739414015,1739414527,1739415039,1739415551,1739416063,1739416575,1739417087,1739417599,1739418111,1739418623,1739419135,1739419647,1739420159,1739420671,1739423231,1739423743,1739424255,1739425023,1739425279,1739426303,1739427839,1739428095,1739428351,1739429119,1739429375,1739429887,1739430399,1739431935,1739432447,1739434495,1739435007,1739436031,1739436287,1739436543,1739437567,1739438591,1739438847,1739439103,1739439615,1739445247,1739445759,1739446271,1739446783,1739447039,1739447295,1739448319,1739448831,1739449855,1739451135,1739451391,1739451903,1739453951,1739454463,1739454719,1739454975,1739455487,1739455999,1739456511,1739457023,1739457279,1739457535,1739458047,1739458559,1739459071,1739459583,1739459839,1739461631,1739461887,1739462143,1739462655,1739463167,1739465727,1739466239,1739467775,1739468799,1739469311,1739469823,1739471359,1739471871,1739472383,1739473919,1739474431,1739474943,1739475967,1739476479,1739476991,1739477759,1739478015,1739478527,1739479039,1739479551,1739480063,1739480575,1739481087,1739481599,1739481855,1739482111,1739482623,1739485183,1739486463,1739487231,1739488255,1739488511,1739490815,1739491327,1739491839,1739492351,1739492863,1739493375,1739493887,1739494399,1739494911,1739495935,1739496447,1739496959,1739499519,1739500031,1739500543,1739503871,1739504127,1739505151,1739505663,1739506175,1739506687,1739507199,1739507711,1739508223,1739508735,1739509247,1739509759,1739510271,1739510527,1739510783,1739511295,1739511807,1739513343,1739513855,1739514367,1739514623,1739515391,1739515903,1739517695,1739517951,1739520511,1739520767,1739521023,1739525631,1739526143,1739526399,1739526655,1739527167,1739527679,1739528191,1739528703,1739528959,1739529215,1739530751,1739531263,1739531519,1739531775,1739532287,1739532799,1739534847,1739535359,1739536383,1739536895,1739538431,1739539967,1739542015,1739542271,1739542527,1739544063,1739544319,1739544575,1739545599,1739546111,1739547135,1739547647,1739550207,1739550719,1739551231,1739551743,1739552255,1739552767,1739553279,1739553535,1739553791,1739554303,1739554559,1739554815,1739555327,1739556351,1739558399,1739559935,1739560191,1739560447,1739560959,1739561471,1739563775,1739564031,1739564543,1739565055,1739567871,1739568127,1739570175,1739570687,1739571199,1739571711,1739572223,1739572735,1739573247,1739573759,1739581439,1739581695,1739581951,1739582463,1739583999,1739585023,1739585535,1739586047,1739587071,1739587583,1739588095,1739588607,1739589119,1739590655,1739591167,1739591423,1739591679,1739592191,1739592703,1739594239,1739599359,1739600383,1739600895,1739601407,1739601663,1739601919,1739602431,1739602943,1739603455,1739604479,1739605503,1739606015,1739606271,1739607039,1739608063,1739608575,1739609087,1739609599,1739610623,1739611135,1739611647,1739615231,1739616767,1739617279,1739617791,1739618559,1739618815,1739619327,1739624191,1739624447,1739626495,1739626751,1739627007,1739627263,1739629567,1739630079,1739630591,1739631103,1739632127,1739632639,1739632895,1739633151,1739633663,1739634687,1739637759,1739638271,1739639295,1739639807,1739640319,1739640831,1739642623,1739642879,1739644415,1739644927,1739645183,1739645439,1739645695,1739645951,1739646463,1739647999,1739648511,1739650047,1739650559,1739651071,1739651583,1739652095,1739652607,1739654655,1739656191,1739656703,1739657215,1739657727,1739657983,1739658239,1739658751,1739660287,1739660799,1739661311,1739661823,1739662335,1739662847,1739663359,1739664383,1739664895,1739665407,1739665919,1739666431,1739666943,1739667455,1739667967,1739668479,1739668735,1739669759,1739670015,1739670527,1739671039,1739671551,1739672319,1739672575,1739673087,1739673599,1739674111,1739674879,1739675135,1739675647,1739675903,1739676159,1739680767,1739681791,1739682815,1739683071,1739683327,1739683839,1739684351,1739685375,1739685887,1739687423,1739687935,1739688191,1739688447,1739688959,1739689471,1739689983,1739690495,1739691007,1739691519,1739692031,1739692543,1739693567,1739694591,1739695103,1739695615,1739696639,1739697151,1739698175,1739698687,1739700735,1739701247,1739701759,1739702527,1739702783,1739703295,1739703807,1739704063,1739704319,1739704831,1739705855,1739706367,1739706879,1739707391,1739707647,1739707903,1739709439,1739709951,1739710463,1739710975,1739711231,1739711487,1739714559,1739715071,1739715583,1739716095,1739716607,1739717119,1739718399,1739718655,1739719167,1739719679,1739720191,1739720703,1739721215,1739721727,1739723263,1739723775,1739724799,1739725311,1739725567,1739725823,1739726079,1739726335,1739727359,1739727871,1739728383,1739728639,1739728895,1739729919,1739731967,1739732223,1739732479,1739732991,1739733503,1739735551,1739736063,1739736575,1739737599,1739738623,1739739135,1739739647,1739739903,1739742207,1739742719,1739743231,1739743487,1739743743,1739744255,1739744767,1739745279,1739748863,1739749375,1739749887,1739750655,1739750911,1739756031,1739758079,1739759615,1739760127,1739761151,1739761407,1739761663,1739762175,1739763711,1739766271,1739767807,1739768319,1739768575,1739768831,1739769343,1739770367,1739770879,1739773439,1739773951,1739774463,1739774719,1739774975,1739775487,1739777023,1739779071,1739779583,1739780095,1739780607,1739781119,1739782655,1739783167,1739783423,1739785727,1739786239,1739787519,1739787775,1739788287,1739790335,1739790847,1739791359,1739791871,1739793407,1739793919,1739795455,1739795711,1739795967,1739798015,1739798527,1739799039,1739800575,1739802111,1739802367,1739803647,1739804671,1739805183,1739805439,1739805695,1739807231,1739807487,1739807743,1739808255,1739808511,1739808767,1739809023,1739809279,1739809791,1739810303,1739812863,1739813119,1739813375,1739813887,1739814143,1739814399,1739814655,1739814911,1739815167,1739815423,1739815935,1739817471,1739817983,1739818239,1739818495,1739820031,1739820543,1739820799,1739821055,1739821567,1739822079,1739822591,1739823103,1739823615,1739824639,1739825663,1739826687,1739827199,1739828223,1739829247,1739830527,1739830783,1739831295,1739833343,1739834879,1739835903,1739836927,1739837439,1739837951,1739838975,1739840511,1739841791,1739842047,1739842303,1739842559,1739845119,1739845631,1739846143,1739846655,1739847167,1739847679,1739850239,1739850751,1739852287,1739852799,1739853311,1739855871,1739856383,1739856895,1739857407,1739857663,1739857919,1739859455,1739862015,1739862527,1739862783,1739863039,1739864063,1739865087,1739865599,1739866623,1739867135,1739868159,1739868671,1739870207,1739870719,1739872255,1739872767,1739873279,1739874047,1739874303,1739874815,1739876351,1739876863,1739877375,1739877631,1739877887,1739878399,1739878911,1739879167,1739879423,1739880447,1739880959,1739882495,1739883519,1739890687,1739891199,1739891455,1739891711,1739892735,1739893247,1739893759,1739894015,1739894271,1739894527,1739894783,1739895039,1739895295,1739896319,1739897343,1739897855,1739898111,1739898367,1739899135,1739899391,1739900927,1739901439,1739901951,1739902463,1739902975,1739903487,1739903999,1739904255,1739904511,1739904767,1739905023,1739907583,1739908095,1739908607,1739909631,1739910143,1739910655,1739911167,1739911679,1739912191,1739912703,1739913471,1739913727,1739914239,1739914751,1739915263,1739915519,1739915775,1739916287,1739916799,1739918335,1739918847,1739919871,1739920127,1739921407,1739921919,1739922431,1739923455,1739926015,1739926527,1739927039,1739927551,1739928063,1739928319,1739931647,1739931903,1739932159,1739932671,1739934719,1739935999,1739936255,1739936767,1739937023,1739937279,1739937535,1739937791,1739939839,1739940351,1739940863,1739941887,1739942399,1739942911,1739943423,1739943935,1739944447,1739944703,1739944959,1739946239,1739946495,1739947007,1739947519,1739948031,1739948287,1739948543,1739949055,1739949567,1739950079,1739951103,1739951615,1739952127,1739953663,1739953919,1739955199,1739956735,1739957247,1739957759,1739958783,1739959807,1739960063,1739960319,1739961343,1739961855,1739962367,1739964927,1739965183,1739965439,1739965951,1739966207,1739966463,1739967487,1739968511,1739969023,1739969535,1739970047,1739970559,1739971071,1739972095,1739972607,1739973119,1739973631,1739974143,1739975167,1739975679,1739976703,1739977215,1739981311,1739983359,1739984383,1739984895,1739986943,1739991039,1739991551,1739992575,1739994623,1739995135,1739995647,1739996159,1739996671,1739997183,1739999231,1739999487,1739999743,1740000255,1740001791,1740002303,1740003839,1740004351,1740005375,1740005887,1740006399,1740006911,1740009983,1740010495,1740011007,1740011519,1740012031,1740012287,1740012543,1740013055,1740013567,1740015615,1740016639,1740018687,1740019711,1740019967,1740023807,1740024319,1740024831,1740025087,1740025343,1740025855,1740026879,1740027903,1740028159,1740030975,1740031999,1740034559,1740035071,1740035583,1740036863,1740037119,1740037631,1740038655,1740039167,1740043775,1740044287,1740044799,1740045311,1740046847,1740047359,1740050431,1740050943,1740052479,1740052991,1740053503,1740056063,1740056575,1740056831,1740057087,1740058623,1740059647,1740060671,1740062207,1740062719,1740063231,1740063743,1740064255,1740065279,1740065791,1740066303,1740066815,1740069887,1740070655,1740070911,1740071423,1740072447,1740073471,1740073983,1740074751,1740075007,1740076031,1740076543,1740077567,1740078591,1740078847,1740079103,1740082175,1740082687,1740083199,1740085759,1740086271,1740091903,1740095487,1740095999,1740096511,1740097023,1740097535,1740101631,1740101887,1740102143,1740102655,1740102911,1740103167,1740108799,1740109311,1740109823,1740110335,1740111871,1740112383,1740112895,1740114431,1740114687,1740114943,1740117503,1740118015,1740118527,1740120063,1740120575,1740123135,1740124159,1740126719,1740127231,1740127743,1740129279,1740132351,1740132863,1740133375,1740133887,1740134399,1740134911,1740135423,1740135935,1740136447,1740136959,1740137471,1740137983,1740138239,1740139519,1740140543,1740141055,1740141567,1740142591,1740143615,1740144127,1740144639,1740144895,1740145151,1740145663,1740146687,1740146943,1740147199,1740147711,1740148735,1740151295,1740151807,1740152319,1740153855,1740154367,1740154623,1740154879,1740155903,1740156415,1740156927,1740157439,1740158975,1740159487,1740161023,1740165119,1740169727,1740170239,1740172287,1740173311,1740173823,1740174335,1740176383,1740176639,1740176895,1740179967,1740180479,1740182527,1740183039,1740183551,1740184063,1740184319,1740184575,1740185087,1740186623,1740187135,1740191231,1740196351,1740196863,1740197375,1740198399,1740198911,1740199935,1740203007,1740203263,1740203519,1740205567,1740206079,1740211711,1740212223,1740214783,1740215295,1740217855,1740218367,1740219391,1740221951,1740222463,1740222975,1740223999,1740224511,1740225535,1740226559,1740226815,1740228095,1740231167,1740231679,1740232191,1740232703,1740233471,1740233727,1740234239,1740234751,1740235775,1740236287,1740236543,1740236799,1740237311,1740240895,1740241407,1740241919,1740243967,1740244479,1740244991,1740246271,1740246527,1740248063,1740248575,1740249087,1740249599,1740250111,1740250623,1740252159,1740255743,1740256767,1740257279,1740257535,1740257791,1740259327,1740260351,1740261887,1740262399,1740263423,1740263679,1740263935,1740264191,1740264447,1740265471,1740268543,1740269055,1740269567,1740270079,1740270591,1740271103,1740271359,1740271615,1740271871,1740272127,1740272639,1740273151,1740273663,1740274175,1740274687,1740275199,1740275711,1740277247,1740277759,1740278271,1740278783,1740279295,1740279807,1740280319,1740281343,1740281855,1740282879,1740283135,1740283391,1740283903,1740284415,1740284927,1740286463,1740286975,1740288255,1740289023,1740290047,1740290559,1740291071,1740291583,1740292095,1740293119,1740293631,1740294143,1740295423,1740295679,1740296191,1740297727,1740298239,1740299263,1740300799,1740301311,1740301823,1740303103,1740303359,1740303871,1740304383,1740304895,1740305407,1740305919,1740306687,1740306943,1740307455,1740307967,1740308479,1740310015,1740310527,1740310783,1740311039,1740311551,1740312063,1740312575,1740314111,1740315135,1740315647,1740316159,1740316671,1740317183,1740317695,1740318207,1740318719,1740319231,1740321279,1740321791,1740323327,1740325375,1740326143,1740326399,1740326655,1740326911,1740327935,1740328447,1740330495,1740332031,1740332287,1740332543,1740333055,1740333567,1740334079,1740335103,1740335359,1740335615,1740335871,1740336127,1740336639,1740337151,1740337919,1740338175,1740338687,1740339967,1740340223,1740340735,1740341759,1740343295,1740343551,1740343807,1740344319,1740344831,1740345343,1740345855,1740346367,1740346879,1740348927,1740349951,1740350975,1740351487,1740351999,1740352511,1740354047,1740354559,1740355071,1740355583,1740357119,1740357631,1740358143,1740360191,1740362239,1740363263,1740363775,1740364287,1740366847,1740368383,1740369407,1740369663,1740370431,1740370687,1740370943,1740371199,1740371455,1740372479,1740376575,1740377599,1740378623,1740379135,1740379647,1740380159,1740382207,1740384767,1740385279,1740385791,1740386815,1740387839,1740393471,1740394495,1740395519,1740395775,1740396031,1740396543,1740396799,1740397055,1740397311,1740397567,1740398079,1740398591,1740403199,1740403711,1740404223,1740404735,1740405247,1740405759,1740406271,1740406783,1740408319,1740408831,1740409343,1740415487,1740415999,1740417023,1740419583,1740420095,1740420607,1740421119,1740425215,1740425727,1740426239,1740426751,1740429823,1740430847,1740432895,1740433151,1740433407,1740433919,1740434431,1740434943,1740435967,1740436991,1740437759,1740438015,1740438527,1740440063,1740440319,1740440575,1740441599,1740442111,1740442623,1740449791,1740450303,1740451839,1740452095,1740452351,1740453887,1740454399,1740456447,1740456959,1740457471,1740457727,1740457983,1740460031,1740460543,1740460799,1740461055,1740463103,1740463615,1740464639,1740466175,1740466687,1740467199,1740467711,1740468991,1740469247,1740471295,1740471807,1740472319,1740472831,1740473343,1740473855,1740474367,1740474879,1740475391,1740475903,1740476415,1740476927,1740478463,1740479487,1740480511,1740481023,1740481535,1740483583,1740484095,1740484607,1740485119,1740485631,1740486143,1740486911,1740487167,1740487679,1740488191,1740488703,1740489215,1740489727,1740489983,1740491263,1740491775,1740492799,1740493311,1740493567,1740493823,1740494335,1740495359,1740495871,1740496383,1740496895,1740497407,1740497919,1740498175,1740498431,1740498687,1740498943,1740499455,1740499711,1740499967,1740500479,1740500991,1740501503,1740502015,1740502271,1740502527,1740503039,1740504831,1740505087,1740505599,1740507903,1740508159,1740509183,1740509695,1740510207,1740510719,1740511231,1740512255,1740513791,1740514303,1740515327,1740515839,1740516863,1740518399,1740519935,1740520447,1740521727,1740521983,1740522495,1740523007,1740523263,1740523519,1740524543,1740525567,1740526079,1740527103,1740527615,1740528383,1740529151,1740529407,1740531199,1740531455,1740531711,1740532223,1740532735,1740533503,1740533759,1740534783,1740535295,1740535551,1740535807,1740536319,1740536831,1740537343,1740537599,1740537855,1740538367,1740539391,1740539903,1740540415,1740540927,1740541951,1740542463,1740547583,1740547839,1740548095,1740548607,1740549119,1740550655,1740551167,1740553727,1740554239,1740554751,1740555263,1740555775,1740556031,1740556287,1740557311,1740557823,1740558335,1740559359,1740559871,1740562431,1740562687,1740562943,1740563967,1740564223,1740564479,1740564991,1740566015,1740566527,1740567039,1740567551,1740569087,1740570111,1740570623,1740575231,1740575487,1740575743,1740576767,1740577791,1740579839,1740580351,1740580607,1740580863,1740582399,1740582911,1740583935,1740586495,1740586751,1740587007,1740587519,1740588031,1740588543,1740589567,1740590335,1740590591,1740592127,1740592639,1740594175,1740594943,1740595199,1740595711,1740596223,1740596735,1740597247,1740597503,1740597759,1740598527,1740598783,1740599295,1740600319,1740600831,1740601343,1740601855,1740602367,1740603903,1740604415,1740606719,1740606975,1740607487,1740608511,1740610559,1740610815,1740611071,1740611583,1740612095,1740612607,1740612863,1740613119,1740613631,1740614143,1740614399,1740614655,1740615167,1740615679,1740616191,1740616703,1740616959,1740617215,1740617727,1740618239,1740618751,1740620799,1740621311,1740621823,1740622335,1740623359,1740623871,1740624383,1740625919,1740626943,1740630527,1740631039,1740632063,1740632575,1740633087,1740634623,1740635135,1740635647,1740636159,1740644351,1740645375,1740647423,1740648447,1740651519,1740653567,1740654591,1740655615,1740656639,1740656895,1740657151,1740657663,1740665855,1740666879,1740667903,1740668927,1740674047,1740675071,1740676095,1740677119,1740678143,1740679167,1740680447,1740680703,1740680959,1740681215,1740681727,1740681983,1740682239,1740683263,1740684287,1740685311,1740686591,1740686847,1740687359,1740688383,1740688895,1740689151,1740689407,1740692479,1740693503,1740694527,1740695551,1740696575,1740697599,1740698623,1740700671,1740701695,1740702719,1740703743,1740704255,1740704767,1740705279,1740705791,1740706047,1740706303,1740706559,1740706815,1740709887,1740710911,1740711423,1740711935,1740713983,1740719103,1740720127,1740720383,1740720639,1740721151,1740721407,1740721663,1740721919,1740722175,1740723199,1740731391,1740732415,1740733439,1740733951,1740734207,1740734719,1740735231,1740735487,1740736511,1740736767,1740737023,1740737535,1740738559,1740738815,1740739583,1740740607,1740742655,1740743679,1740743935,1740744191,1740744703,1740745727,1740746751,1740747775,1740748799,1740749055,1740749311,1740749823,1740751871,1740753919,1740754943,1740755967,1740763135,1740764159,1740764415,1740764927,1740766207,1740767231,1740769279,1740771327,1740772351,1740776447,1740777471,1740778239,1740778495,1740779007,1740779519,1740780543,1740784639,1740784895,1740785663,1740786687,1740787711,1740788735,1740789759,1740790783,1740791807,1740792831,1740794879,1740795903,1740796159,1740796415,1740796671,1740796927,1740797439,1740797695,1740797951,1740798207,1740798463,1740798975,1740799999,1740800511,1740800767,1740805119,1740806143,1740809215,1740810239,1740810751,1740811007,1740811263,1740812287,1740813311,1740814335,1740815359,1740816383,1740821503,1740822015,1740822527,1740825855,1740826111,1740826623,1740827647,1740828671,1740829695,1740830719,1740831743,1740832767,1740833791,1740834815,1740835839,1740836863,1740837119,1740837375,1740837887,1740838911,1740839935,1740840959,1740841983,1740845055,1740846079,1740846591,1740847103,1740848127,1740849407,1740849663,1740850175,1740855295,1740856319,1740858367,1740859391,1740860415,1740861439,1740862463,1740862719,1740863487,1740865535,1740865791,1740866559,1740867583,1740868095,1740868607,1740869119,1740869375,1740869631,1740870655,1740871167,1740871423,1740872703,1740873727,1740874751,1740876287,1740876799,1740880639,1740880895,1740881919,1740882943,1740884991,1740885503,1740886015,1740893183,1740895231,1740900351,1740901375,1740901887,1740902399,1740903423,1740904447,1740904959,1740905471,1740907519,1740907775,1740908543,1740910591,1740910847,1740911103,1740911359,1740911615,1740912639,1740913663,1740914687,1740915711,1740916735,1740917759,1740918783,1740919807,1740920063,1740920319,1740920831,1740923903,1740924927,1740925951,1740926463,1740926719,1740926975,1740927999,1740928255,1740928511,1740929023,1740930047,1740931071,1740932095,1740933119,1740934143,1740935167,1740935679,1740936191,1740937215,1740938495,1740938751,1740939263,1740940287,1740941311,1740942335,1740943359,1740943871,1740944127,1740944383,1740945407,1740947967,1740948223,1740948479,1740950527,1740951551,1740957695,1740958719,1740959743,1740960767,1740962815,1740963839,1740964863,1740965887,1740966911,1740967935,1740968191,1740968959,1740969983,1740971007,1740972031,1740975103,1740976127,1740976895,1740977151,1740978175,1740979199,1740980223,1740981247,1740982271,1740985343,1740986367,1740986623,1740986879,1740987391,1740988415,1740989439,1740990463,1740990975,1741000703,1741001727,1741002751,1741003775,1741004287,1741004799,1741005823,1741006847,1741007871,1741008895,1741009919,1741010943,1741011455,1741011967,1741012991,1741013247,1741013759,1741014015,1741015039,1741016063,1741017087,1741018111,1741019135,1741019903,1741020159,1741022207,1741023231,1741025279,1741026303,1741027327,1741028351,1741028863,1741029375,1741029631,1741029887,1741030399,1741031423,1741031935,1741032447,1741033471,1741033983,1741034495,1741035519,1741036031,1741036543,1741037567,1741038079,1741038591,1741039615,1741040639,1741041663,1741042687,1741043199,1741043711,1741044735,1741046783,1741047807,1741048831,1741049855,1741050367,1741050623,1741050879,1741051903,1741052927,1741053183,1741053439,1741053951,1741055999,1741056511,1741057023,1741058047,1741058559,1741061119,1741062143,1741062399,1741062655,1741062911,1741063167,1741065215,1741067263,1741068287,1741068799,1741069311,1741070335,1741071359,1741072383,1741073407,1741074431,1741075455,1741076479,1741077247,1741077503,1741078015,1741078527,1741079551,1741080575,1741080831,1741081087,1741081343,1741082623,1741083391,1741083647,1741084671,1741090815,1741091071,1741091327,1741091583,1741092863,1741093887,1741094911,1741095423,1741095935,1741115391,1741115647,1741115903,1741116415,1741117439,1741118463,1741119487,1741119743,1741120511,1741121535,1741122559,1741123583,1741124863,1741125375,1741125631,1741128703,1741129727,1741130751,1741131263,1741132799,1741133823,1741134847,1741136895,1741137919,1741138431,1741138943,1741139967,1741140991,1741142015,1741142783,1741143039,1741145087,1741146111,1741150207,1741151231,1741152255,1741153279,1741154303,1741155327,1741156351,1741157375,1741157631,1741158399,1741160447,1741161471,1741161727,1741162239,1741162495,1741164543,1741165567,1741167615,1741168639,1741169663,1741170687,1741173759,1741174783,1741175807,1741176831,1741178879,1741179391,1741183999,1741185023,1741185279,1741186047,1741188095,1741188607,1741189119,1741189631,1741190143,1741191167,1741192191,1741193215,1741194239,1741195263,1741210623,1741211647,1741212671,1741213695,1741214719,1741215743,1741216767,1741232127,1741233151,1741243391,1741243903,1741245439,1741257727,1741258751,1741259775,1741264895,1741303807,1741304831,1741305599,1741305855,1741329407,1741330431,1741344767,1741345791,1741346815,1741347327,1741347583,1741347839,1741348863,1741349375,1741349887,1741350911,1741351935,1741366271,1741367295,1741368319,1741369343,1741369599,1741370367,1741371391,1741372415,1741374463,1741375487,1741376511,1741377535,1741378559,1741379583,1741380095,1741380607,1741381631,1741390847,1741391871,1741392895,1741393919,1741394943,1741395967,1741396991,1741398015,1741398783,1741399039,1741401087,1741402111,1741403135,1741404159,1741405183,1741405439,1741405695,1741406207,1741407231,1741408255,1741409279,1741410303,1741411327,1741413375,1741413631,1741413887,1741414143,1741414399,1741416447,1741417215,1741417471,1741417983,1741418495,1741418751,1741419007,1741419519,1741419775,1741420543,1741421055,1741423103,1741423615,1741425663,1741425919,1741426175,1741426431,1741426687,1741427711,1741428735,1741429759,1741430271,1741430783,1741431295,1741432831,1741433343,1741433855,1741434367,1741434879,1741436927,1741437951,1741438975,1741439999,1741440511,1741441023,1741442047,1741443071,1741445119,1741446143,1741447935,1741448191,1741449215,1741450239,1741450495,1741451007,1741451263,1741452287,1741452543,1741452799,1741453055,1741454335,1741455359,1741456383,1741457407,1741462527,1741466623,1741466879,1741467135,1741467647,1741468159,1741468671,1741469695,1741472767,1741473791,1741474815,1741475839,1741476863,1741478399,1741478655,1741478911,1741479423,1741479935,1741480447,1741480959,1741481471,1741481727,1741481983,1741484031,1741485055,1741486079,1741487103,1741489151,1741490175,1741490687,1741490943,1741491199,1741492223,1741493247,1741494271,1741495295,1741496319,1741497343,1741497855,1741498111,1741498367,1741500415,1741501439,1741502463,1741502975,1741503231,1741503487,1741503999,1741504511,1741505535,1741506559,1741507583,1741508607,1741508863,1741509119,1741509375,1741509631,1741510655,1741511679,1741512703,1741515775,1741516799,1741517823,1741518847,1741519103,1741519871,1741521919,1741522943,1741523967,1741528063,1741528575,1741528831,1741529087,1741529599,1741529855,1741530111,1741531135,1741532159,1741533183,1741534207,1741535231,1741535487,1741535743,1741536255,1741540351,1741541375,1741542399,1741544447,1741545471,1741546495,1741547519,1741548543,1741549567,1741550591,1741551103,1741551615,1741554687,1741557759,1741558271,1741558783,1741559807,1741560063,1741560319,1741560831,1741561087,1741561343,1741561855,1741562879,1741563903,1741564927,1741565951,1741571071,1741572095,1741572607,1741573119,1741574143,1741575167,1741576191,1741577215,1741578239,1741578751,1741579007,1741581311,1741582335,1741583359,1741583871,1741584383,1741584639,1741584895,1741586431,1741591551,1741592575,1741593087,1741594111,1741594367,1741594623,1741596671,1741597695,1741597951,1741598207,1741600767,1741601279,1741601535,1741601791,1741602815,1741603839,1741604863,1741605887,1741606911,1741607935,1741609983,1741612031,1741613055,1741614079,1741615103,1741617151,1741618175,1741619199,1741623295,1741623551,1741623807,1741624063,1741624319,1741625343,1741626367,1741627391,1741629439,1741629951,1741630207,1741630463,1741631487,1741632511,1741634559,1741635071,1741636607,1741637375,1741637631,1741638655,1741639679,1741640703,1741641727,1741642751,1741643007,1741643263,1741643775,1741644799,1741645311,1741645567,1741645823,1741646847,1741647871,1741648895,1741649151,1741649407,1741649919,1741658111,1741658623,1741659135,1741659391,1741659647,1741659903,1741660159,1741661183,1741662207,1741666303,1741674495,1741675519,1741676543,1741677567,1741679615,1741680639,1741683711,1741684735,1741685247,1741685503,1741685759,1741686783,1741687807,1741689855,1741690367,1741690623,1741690879,1741691903,1741692927,1741693183,1741693439,1741693951,1741694975,1741698047,1741701119,1741701375,1741701631,1741701887,1741702143,1741703167,1741704191,1741706239,1741706495,1741707263,1741707775,1741708287,1741708799,1741709311,1741710335,1741711359,1741718527,1741719551,1741720063,1741720575,1741721599,1741724415,1741724671,1741725695,1741726719,1741726975,1741727231,1741727743,1741729791,1741730815,1741731839,1741733887,1741734911,1741735423,1741735679,1741735935,1741736959,1741737983,1741739007,1741740031,1741741055,1741742079,1741747199,1741748223,1741749247,1741750783,1741751807,1741753087,1741753343,1741754367,1741755391,1741756415,1741756927,1741757439,1741758463,1741759487,1741760511,1741761535,1741762559,1741763583,1741764095,1741764351,1741764607,1741765631,1741766143,1741769215,1741769727,1741769983,1741770239,1741770495,1741770751,1741771775,1741772799,1741773823,1741774335,1741774591,1741774847,1741775359,1741775615,1741775871,1741776383,1741776895,1741777919,1741778431,1741778943,1741779967,1741780991,1741782015,1741782271,1741783039,1741783551,1741784063,1741785087,1741786111,1741788159,1741789183,1741789695,1741790207,1741791231,1741792255,1741794303,1741794559,1741794815,1741797375,1741798399,1741798911,1741799167,1741799423,1741799935,1741800191,1741800447,1741801471,1741802495,1741803519,1741804543,1741805055,1741805567,1741806591,1741807615,1741808639,1741809151,1741809407,1741809663,1741810687,1741811711,1741812223,1741813759,1741814783,1741815039,1741815295,1741815551,1741815807,1741816319,1741816831,1741817855,1741818367,1741818879,1741819135,1741819391,1741819647,1741819903,1741820927,1741821951,1741822975,1741824511,1741825023,1741829119,1741829631,1741830143,1741832191,1741833215,1741834239,1741835263,1741836287,1741837311,1741838335,1741840383,1741841407,1741842687,1741842943,1741843455,1741844479,1741844991,1741845503,1741847551,1741848063,1741848575,1741849087,1741849599,1741850623,1741851647,1741853695,1741854719,1741855231,1741855743,1741856767,1741857279,1741864959,1741865215,1741865471,1741869055,1741869311,1741869567,1741869823,1741870079,1741871103,1741872127,1741872383,1741872639,1741872895,1741873151,1741873663,1741874175,1741875199,1741875967,1741876223,1741877759,1741878015,1741879295,1741879807,1741880063,1741880319,1741881343,1741882367,1741882879,1741883391,1741887487,1741887999,1741888511,1741889535,1741890559,1741892607,1741893631,1741893887,1741894655,1741897727,1741898751,1741899775,1741900799,1741902335,1741902847,1741904895,1741905151,1741905407,1741905663,1741905919,1741906943,1741907967,1741908479,1741908991,1741911039,1741911551,1741912063,1741913087,1741914111,1741917183,1741917951,1741918207,1741919231,1741920255,1741921279,1741922303,1741922815,1741923327,1741924351,1741925375,1741925631,1741925887,1741926399,1741927423,1741928959,1741930495,1741930751,1741931007,1741931263,1741931519,1741931775,1741932031,1741932287,1741932543,1741933055,1741934079,1741934591,1741935615,1741936639,1741937663,1741939711,1741939967,1741940479,1741940735,1741941759,1741942271,1741942527,1741942783,1741943807,1741944831,1741945855,1741946623,1741946879,1741950975,1741953023,1741954047,1741955071,1741956095,1741957119,1741957375,1741957631,1741957887,1741958143,1741960191,1741961215,1741962239,1741963263,1741963775,1741964287,1741965311,1741966335,1741967359,1741967615,1741967871,1741968127,1741968383,1741969407,1741971455,1741972479,1741973503,1741974527,1741975551,1741976319,1741976575,1741977599,1741978111,1741978367,1741978623,1741979647,1741980671,1741981439,1741981695,1741984767,1741985791,1741987839,1741988351,1741988863,1741989887,1741990143,1741990399,1741990911,1741991935,1741992191,1741992959,1741993983,1741994239,1741994495,1741995007,1741996031,1741996543,1741997055,1741999103,1742000895,1742001151,1742002175,1742003199,1742004223,1742005247,1742006271,1742007039,1742007295,1742008319,1742009343,1742011391,1742012415,1742013439,1742013951,1742014463,1742014975,1742015487,1742016511,1742019583,1742020095,1742020351,1742020607,1742021631,1742022655,1742038015,1742039039,1742040063,1742042111,1742043135,1742043647,1742044159,1742045183,1742046207,1742061567,1742062591,1742063615,1742063871,1742064639,1742065663,1742067711,1742068735,1742069247,1742070015,1742070271,1742070783,1742071039,1742071295,1742071807,1742072319,1742072831,1742074879,1742075135,1742075391,1742075903,1742076927,1742077439,1742078463,1742078975,1742079999,1742081023,1742082047,1742083071,1742083583,1742083839,1742084095,1742085119,1742086143,1742087167,1742088191,1742088447,1742088703,1742089215,1742090239,1742091263,1742092287,1742093311,1742094335,1742095359,1742095615,1742096383,1742097407,1742098431,1742099455,1742100479,1742101503,1742102527,1742103039,1742103295,1742104575,1742104831,1742105087,1742105599,1742106111,1742106367,1742106623,1742107135,1742108671,1742109183,1742113791,1742115839,1742116863,1742117887,1742118911,1742119935,1742120959,1742121471,1742121983,1742123007,1742123263,1742123519,1742124031,1742125055,1742126079,1742127103,1742128127,1742129151,1742130175,1742130687,1742132223,1742133247,1742134271,1742135295,1742136319,1742136575,1742136831,1742138367,1742139391,1742141439,1742141951,1742142463,1742142975,1742143487,1742144511,1742145535,1742146559,1742146815,1742147071,1742147327,1742147583,1742148607,1742149631,1742150655,1742153727,1742154751,1742156799,1742157823,1742158847,1742159871,1742160895,1742162431,1742162943,1742164991,1742166015,1742167039,1742167551,1742168063,1742169087,1742170111,1742171135,1742172159,1742172415,1742172671,1742173183,1742175231,1742176255,1742177791,1742178303,1742179327,1742180351,1742181375,1742182911,1742183167,1742184447,1742185471,1742187519,1742188543,1742189567,1742190079,1742191103,1742191359,1742191615,1742192639,1742193663,1742197247,1742197759,1742198783,1742199039,1742199295,1742199551,1742199807,1742200831,1742201855,1742202367,1742202879,1742203391,1742207999,1742209023,1742210047,1742221311,1742222335,1742223359,1742224383,1742225407,1742226431,1742227455,1742228479,1742230527,1742231039,1742231295,1742231551,1742233599,1742234111,1742234623,1742235135,1742235391,1742235647,1742236671,1742237695,1742242815,1742243071,1742243583,1742243839,1742244863,1742247935,1742249471,1742249983,1742250239,1742250495,1742251007,1742256127,1742257151,1742257407,1742257663,1742258175,1742259199,1742259455,1742259711,1742259967,1742260223,1742260735,1742261247,1742264319,1742265343,1742266111,1742266367,1742268415,1742270463,1742290943,1742291199,1742291455,1742291967,1742292479,1742292991,1742293503,1742294015,1742294271,1742295039,1742295295,1742295551,1742295807,1742296063,1742298111,1742299135,1742299647,1742300159,1742301183,1742301695,1742301951,1742302207,1742304255,1742309375,1742309887,1742311423,1742312447,1742314495,1742315519,1742315775,1742316031,1742316287,1742316543,1742317567,1742318591,1742319103,1742319615,1742320639,1742327807,1742328063,1742328319,1742328831,1742329855,1742330879,1742331903,1742332927,1742338047,1742338303,1742338559,1742339071,1742339583,1742339839,1742342143,1742346239,1742347263,1742364671,1742365695,1742366719,1742366975,1742370815,1742371327,1742371839,1742374911,1742375423,1742375935,1742380031,1742382079,1742382335,1742383103,1742384127,1742384639,1742385151,1742385663,1742386175,1742386943,1742387199,1742388223,1742389247,1742396415,1742397439,1742397951,1742398463,1742401535,1742402559,1742407167,1742407423,1742407679,1742409727,1742410751,1742411775,1742415871,1742419967,1742420991,1742421503,1742422015,1742423039,1742424063,1742425343,1742425599,1742425855,1742426111,1742427135,1742432255,1742433279,1742434303,1742434559,1742434815,1742435327,1742436351,1742437375,1742439423,1742440447,1742441471,1742442495,1742443007,1742443263,1742443519,1742444543,1742445567,1742446591,1742447615,1742448639,1742448895,1742449151,1742449407,1742449663,1742449919,1742450687,1742451711,1742452735,1742453759,1742454783,1742455039,1742455295,1742455551,1742455807,1742456063,1742456831,1742460415,1742460671,1742461951,1742462975,1742463487,1742463999,1742465023,1742465535,1742466047,1742466559,1742467071,1742467583,1742469119,1742470399,1742470655,1742471167,1742472191,1742473215,1742474239,1742476799,1742477311,1742482431,1742482943,1742483199,1742483455,1742488575,1742489599,1742491647,1742492671,1742493695,1742494719,1742499839,1742500863,1742511103,1742512127,1742523391,1742524415,1742526463,1742526975,1742527487,1742528511,1742528767,1742529279,1742532607,1742550015,1742551039,1742552063,1742553087,1742553599,1742554111,1742558207,1742558719,1742558975,1742559231,1742589951,1742590975,1742596095,1742596351,1742596607,1742596863,1742597119,1742597631,1742598143,1742599167,1742599423,1742599679,1742600191,1742601215,1742602239,1742607359,1742608383,1742662655,1742663167,1742663423,1742663679,1742665727,1742666751,1742667263,1742668799,1742669823,1742671871,1742698495,1742699519,1742702591,1742703615,1742714879,1742715903,1742734335,1742735359,1742736383,1742737407,1742738431,1742738687,1742738943,1742739199,1742739455,1742740479,1742741503,1742743551,1742745599,1742745855,1742746111,1742746623,1742747135,1742747391,1742747647,1742748671,1742749695,1742749951,1742750207,1742750719,1742751743,1742751999,1742752255,1742752767,1742753791,1742754815,1742756863,1742757119,1742757375,1742757887,1742758911,1742759935,1742760191,1742760447,1742760703,1742760959,1742761983,1742763007,1742764031,1742764287,1742764543,1742764799,1742765055,1742765567,1742765823,1742766079,1742767103,1742768127,1742769663,1742769919,1742770175,1742774271,1742774527,1742774783,1742775039,1742775295,1742776319,1742777343,1742777855,1742778111,1742778367,1742779647,1742779903,1742780415,1742782463,1742783487,1742784511,1742786559,1742788095,1742788607,1742789631,1742793727,1742796799,1742797823,1742798847,1742799871,1742800895,1742801919,1742802943,1742803455,1742803711,1742803967,1742804991,1742806015,1742806527,1742808063,1742809087,1742810111,1742810879,1742811135,1742812159,1742813183,1742815231,1742815487,1742815743,1742815999,1742816255,1742816767,1742817023,1742817279,1742818303,1742818815,1742819071,1742819327,1742820351,1742820607,1742820863,1742821119,1742821375,1742822399,1742823423,1742823679,1742824191,1742826495,1742827519,1742829055,1742829567,1742830591,1742831615,1742831871,1742832127,1742832383,1742832639,1742833663,1742834687,1742835711,1742836735,1742837759,1742838783,1742841855,1742842367,1742843391,1742843647,1742843903,1742844927,1742845951,1742846463,1742847999,1742849023,1742850047,1742852095,1742852607,1742853119,1742854143,1742854655,1742855167,1742856191,1742857215,1742859263,1742860287,1742860799,1742861055,1742861311,1742862335,1742862847,1742863103,1742863359,1742863871,1742864383,1742866431,1742867199,1742867455,1742868479,1742869503,1742870015,1742870527,1742871039,1742871551,1742872575,1742873343,1742874623,1742875647,1742876671,1742877695,1742877951,1742878207,1742878463,1742878719,1742879743,1742880767,1742881791,1742882815,1742884863,1742885887,1742887935,1742888959,1742889983,1742891007,1742892031,1742893055,1742894079,1742894591,1742895103,1742895615,1742895871,1742896127,1742896639,1742896895,1742897151,1742898175,1742899199,1742900223,1742903295,1742904319,1742905343,1742907391,1742908415,1742908927,1742909183,1742909439,1742910463,1742911487,1742913535,1742914559,1742915583,1742918655,1742919679,1742920191,1742920447,1742921727,1742923775,1742924799,1742926847,1742927359,1742927615,1742927871,1742928895,1742929919,1742930175,1742930431,1742930943,1742931455,1742931711,1742931967,1742932991,1742933503,1742933759,1742934015,1742935039,1742936063,1742936575,1742937087,1742938111,1742939135,1742940159,1742941183,1742942207,1742943231,1742945279,1742945791,1742946047,1742947327,1742948351,1742951423,1742951935,1742952191,1742952447,1742953471,1742955519,1742956543,1742957055,1742957567,1742958591,1742959615,1742960639,1742961663,1742962687,1742963711,1742965759,1742966015,1742968319,1742970879,1742971903,1742972927,1742973439,1742973951,1742974975,1742975999,1742977023,1742978047,1742979071,1742980095,1742981119,1742982143,1742983167,1742984191,1742985215,1742986239,1742987263,1742988287,1742989311,1742989567,1742989823,1742990335,1742991359,1742992383,1742993407,1742995455,1742996223,1742996479,1742997503,1742997759,1742998015,1742998527,1742999551,1742999807,1743000319,1743000575,1743001599,1743002623,1743003647,1743004671,1743005183,1743005695,1743007743,1743007999,1743008255,1743008767,1743010815,1743011839,1743012863,1743013887,1743014399,1743014911,1743015935,1743016447,1743016703,1743016959,1743017983,1743019007,1743020031,1743020543,1743021055,1743021311,1743021567,1743021823,1743022079,1743022591,1743023103,1743024127,1743025151,1743026175,1743027199,1743027711,1743028223,1743029247,1743029503,1743029759,1743030271,1743031295,1743033343,1743033599,1743033855,1743034111,1743035391,1743036415,1743037439,1743038463,1743039487,1743040511,1743041535,1743042559,1743043583,1743044607,1743045119,1743045631,1743046655,1743047679,1743049727,1743050751,1743051775,1743052799,1743053823,1743055871,1743059199,1743059967,1743060991,1743061247,1743061503,1743062015,1743062271,1743062527,1743063039,1743064063,1743065087,1743065599,1743066111,1743067135,1743068159,1743068415,1743068927,1743069183,1743070207,1743071231,1743072255,1743073279,1743073791,1743074047,1743074303,1743074815,1743075327,1743076351,1743076863,1743077375,1743079423,1743080959,1743081471,1743081727,1743081983,1743083519,1743084031,1743084543,1743085567,1743086079,1743086591,1743087615,1743088639,1743089663,1743090687,1743090943,1743091199,1743091455,1743091711,1743092735,1743093759,1743094015,1743094271,1743094527,1743094783,1743095807,1743097087,1743098879,1743099903,1743100927,1743101951,1743103999,1743105023,1743106047,1743107071,1743108095,1743108607,1743108863,1743109119,1743109631,1743110143,1743111167,1743112191,1743113215,1743115263,1743118335,1743119359,1743120383,1743120639,1743120895,1743121407,1743123455,1743124479,1743124991,1743125503,1743126015,1743126527,1743127551,1743128575,1743128831,1743129087,1743129599,1743130623,1743131647,1743132671,1743133695,1743134719,1743134975,1743135231,1743135743,1743136767,1743137279,1743137791,1743138815,1743139327,1743139839,1743140863,1743141887,1743142911,1743143935,1743144191,1743144447,1743144703,1743144959,1743145983,1743147007,1743147263,1743147519,1743147775,1743148031,1743149055,1743150079,1743150591,1743151103,1743152127,1743152383,1743153151,1743154175,1743154687,1743155199,1743156223,1743157247,1743158271,1743159295,1743159807,1743160319,1743161343,1743162367,1743162623,1743162879,1743163135,1743163391,1743164415,1743166463,1743167487,1743168511,1743169535,1743170559,1743171583,1743171839,1743172095,1743172607,1743173631,1743174655,1743175679,1743176703,1743179775,1743180799,1743181823,1743182847,1743184895,1743185919,1743186943,1743187967,1743188991,1743189503,1743189759,1743190015,1743190527,1743191039,1743192063,1743195135,1743196159,1743198207,1743198719,1743198975,1743199231,1743200255,1743200767,1743201279,1743202303,1743204351,1743205375,1743206399,1743207167,1743207423,1743208447,1743210495,1743211519,1743212543,1743213567,1743214591,1743215103,1743215615,1743216639,1743217407,1743217663,1743218687,1743219711,1743221759,1743222783,1743223551,1743223807,1743224831,1743225855,1743226367,1743226623,1743226879,1743227647,1743227903,1743228927,1743229695,1743229951,1743230975,1743231999,1743232511,1743233023,1743234047,1743235071,1743235583,1743236095,1743236607,1743237119,1743238143,1743240191,1743241215,1743242239,1743244287,1743245311,1743248383,1743248895,1743249407,1743250431,1743251455,1743252479,1743252991,1743253503,1743254527,1743255551,1743256063,1743256319,1743256575,1743258623,1743259647,1743260671,1743261695,1743261951,1743262463,1743262719,1743263231,1743263743,1743264767,1743265279,1743265535,1743265791,1743266303,1743267839,1743268863,1743269887,1743270911,1743273983,1743275007,1743276031,1743277055,1743278079,1743279103,1743281151,1743283199,1743284223,1743286271,1743287295,1743288319,1743289343,1743291391,1743292415,1743293439,1743293951,1743294463,1743295487,1743296511,1743297535,1743298303,1743300095,1743300607,1743301631,1743302655,1743303679,1743304703,1743305727,1743306751,1743307775,1743308799,1743309823,1743310335,1743310847,1743311871,1743312127,1743312895,1743313663,1743313919,1743314943,1743315199,1743315455,1743315967,1743316991,1743319039,1743319295,1743319551,1743320063,1743321087,1743323135,1743324159,1743325183,1743325951,1743326207,1743328255,1743329279,1743330303,1743331327,1743333375,1743334399,1743335423,1743336447,1743337471,1743338495,1743339519,1743340543,1743341567,1743341823,1743342079,1743342591,1743343615,1743344639,1743345663,1743346687,1743347711,1743348735,1743348991,1743349247,1743349759,1743350783,1743351807,1743354111,1743354367,1743355903,1743356927,1743357951,1743358975,1743359487,1743361023,1743362047,1743364095,1743364607,1743365119,1743366143,1743367167,1743367935,1743368191,1743368703,1743369215,1743369727,1743369983,1743370239,1743371263,1743372287,1743373311,1743374335,1743375359,1743376383,1743377407,1743378431,1743379455,1743380479,1743381503,1743382527,1743383551,1743384575,1743385087,1743385343,1743386623,1743388671,1743389695,1743390719,1743391743,1743391999,1743392767,1743393279,1743393791,1743394815,1743395839,1743396863,1743397375,1743397887,1743398911,1743399935,1743400959,1743401983,1743403007,1743404031,1743405055,1743407103,1743408127,1743410175,1743411199,1743412223,1743412479,1743412991,1743413247,1743414271,1743415295,1743416319,1743417855,1743418879,1743419391,1743420927,1743421439,1743422463,1743423487,1743424511,1743425535,1743426559,1743426815,1743427071,1743427583,1743428095,1743428607,1743429631,1743430143,1743430399,1743430655,1743431679,1743432703,1743433727,1743434751,1743435775,1743436799,1743437311,1743437823,1743438335,1743438591,1743438847,1743439871,1743440895,1743441919,1743442943,1743443967,1743444991,1743446015,1743448063,1743449087,1743451135,1743452159,1743453183,1743454207,1743455231,1743456255,1743457279,1743458303,1743459327,1743459583,1743459839,1743460095,1743460351,1743461375,1743462399,1743463423,1743464447,1743465471,1743466495,1743467519,1743468543,1743470591,1743470847,1743471615,1743472639,1743473663,1743474687,1743476735,1743477247,1743477759,1743478783,1743479807,1743480831,1743481855,1743482111,1743482367,1743482879,1743483903,1743484927,1743485951,1743486975,1743493119,1743493631,1743493887,1743494143,1743495167,1743495679,1743496191,1743497215,1743499263,1743500287,1743500543,1743501311,1743502335,1743503359,1743504383,1743505407,1743506431,1743506943,1743507455,1743509503,1743510527,1743545343,1743546111,1743546367,1743546879,1743547391,1743549439,1743549951,1743550207,1743550463,1743551487,1743552511,1743553023,1743553535,1743554559,1743555583,1743556607,1743557631,1743558655,1743560703,1743561215,1743561727,1743563775,1743564287,1743564799,1743565823,1743566847,1743567871,1743569151,1743569407,1743569919,1743570943,1743571199,1743571455,1743571967,1743574527,1743575039,1743576063,1743577087,1743577599,1743578111,1743579135,1743580159,1743581183,1743589375,1743590399,1743591423,1743593471,1743594495,1743595519,1743596543,1743597567,1743598079,1743598591,1743599103,1743599615,1743600639,1743602687,1743603711,1743604735,1743605759,1743606015,1743606271,1743606527,1743606783,1743607039,1743607295,1743607807,1743609087,1743609343,1743609855,1743610879,1743611391,1743611647,1743611903,1743612927,1743613951,1743615999,1743616511,1743616767,1743617023,1743618047,1743619071,1743619583,1743619839,1743620095,1743621119,1743621631,1743622143,1743624191,1743625215,1743626239,1743627263,1743628287,1743628799,1743629055,1743629311,1743630335,1743652863,1743654911,1743666175,1743666431,1743666687,1743666943,1743667199,1743667711,1743668223,1743672319,1743673087,1743673343,1743676415,1743679999,1743680511,1743681535,1743682559,1743683583,1743683839,1743684351,1743684607,1743685631,1743686655,1743688703,1743689215,1743689471,1743689727,1743690239,1743690751,1743691263,1743691775,1743699967,1743700479,1743700735,1743700991,1743702015,1743703039,1743704063,1743706111,1743706623,1743707135,1743708159,1743709183,1743710207,1743710719,1743711231,1743712255,1743713279,1743714303,1743715327,1743717375,1743718399,1743719423,1743719935,1743720447,1743721471,1743722495,1743723519,1743724543,1743725567,1743726591,1743727103,1743727615,1743728639,1743729151,1743729407,1743729663,1743730687,1743731711,1743732735,1743733247,1743733759,1743734783,1743735295,1743735807,1743736319,1743736575,1743736831,1743737343,1743737855,1743739391,1743740927,1743741951,1743742975,1743743231,1743743487,1743743999,1743745023,1743746047,1743748095,1743748607,1743748863,1743749119,1743751167,1743754239,1743754751,1743755263,1743757311,1743758335,1743758591,1743758847,1743759359,1743760383,1743760895,1743761407,1743762431,1743764479,1743765503,1743767551,1743768575,1743770623,1743770879,1743771135,1743771647,1743772671,1743773695,1743774719,1743775743,1743776767,1743778815,1743779839,1743780863,1743781887,1743782143,1743783423,1743783935,1743784959,1743785983,1743787007,1743788031,1743789055,1743790079,1743791103,1743792127,1743792639,1743793151,1743794175,1743795199,1743796223,1743796735,1743797247,1743798271,1743799295,1743800319,1743801343,1743802367,1743803391,1743804415,1743804671,1743805439,1743806463,1743809535,1743810559,1743811583,1743812607,1743813631,1743814655,1743815679,1743815935,1743816191,1743816703,1743817727,1743818751,1743819775,1743820799,1743821823,1743822847,1743823871,1743824895,1743825919,1743826943,1743827967,1743828991,1743830015,1743831039,1743832063,1743832319,1743832575,1743833087,1743834111,1743838207,1743838463,1743838719,1743841279,1743843327,1743844351,1743845375,1743845631,1743845887,1743846399,1743847423,1743848447,1743848959,1743849471,1743850495,1743851519,1743852543,1743853567,1743853823,1743854079,1743854335,1743854591,1743856639,1743857663,1743858175,1743858687,1743859711,1743860735,1743861247,1743861759,1743862783,1743863807,1743864319,1743864575,1743864831,1743865855,1743866879,1743867903,1743868927,1743869695,1743869951,1743870975,1743873023,1743874047,1743874303,1743875071,1743876095,1743877119,1743877631,1743878143,1743879167,1743881215,1743881983,1743882239,1743885311,1743885567,1743885823,1743886335,1743887359,1743888383,1743889407,1743890431,1743891455,1743891967,1743892479,1743892991,1743893503,1743894527,1743896575,1743896831,1743897087,1743897599,1743897855,1743898111,1743898623,1743899647,1743900671,1743901695,1743902719,1743903743,1743904767,1743905791,1743906815,1743908863,1743909375,1743910911,1743911935,1743912959,1743913983,1743915007,1743915519,1743916031,1743916287,1743916543,1743916799,1743917055,1743918079,1743919103,1743920127,1743921151,1743922175,1743923199,1743923455,1743924223,1743925247,1743925503,1743925759,1743926271,1743927295,1743928319,1743929343,1743930367,1743931391,1743931647,1743932415,1743934207,1743934463,1743935231,1743935487,1743936511,1743937535,1743938559,1743939071,1743939583,1743940607,1743941631,1743942655,1743944703,1743945215,1743945727,1743947775,1743948799,1743949823,1743950847,1743951359,1743951871,1743953919,1743954943,1743955967,1743959039,1743959551,1743959807,1743960063,1743962111,1743963135,1743964159,1743965183,1743966719,1743967231,1743968255,1743969279,1743970303,1743971327,1743972351,1743972607,1743973119,1743973375,1743974399,1743975423,1743976447,1743977471,1743978495,1743979519,1743980543,1743981055,1743981567,1743982591,1743983359,1743983615,1743984639,1743985663,1743990783,1743991807,1743994879,1743995647,1743995903,1743996927,1743997695,1743997951,1743999999,1744001023,1744001535,1744001791,1744002047,1744003071,1744004095,1744004607,1744005119,1744006143,1744006655,1744006911,1744007167,1744009215,1744010239,1744011263,1744012287,1744013311,1744014335,1744015359,1744016383,1744017407,1744018431,1744019455,1744020479,1744021503,1744022015,1744022527,1744023551,1744023807,1744024319,1744024575,1744025599,1744026623,1744027647,1744028671,1744029695,1744030719,1744031743,1744032767,1744033791,1744034815,1744035839,1744038143,1744038399,1744038911,1744039423,1744039679,1744039935,1744040959,1744041471,1744041983,1744043007,1744044031,1744045055,1744046079,1744047103,1744048127,1744049151,1744049919,1744050175,1744050687,1744051199,1744052223,1744053247,1744054271,1744055295,1744056319,1744056575,1744056831,1744057087,1744057343,1744058367,1744058623,1744058879,1744066559,1744067583,1744068095,1744068607,1744069631,1744070655,1744071679,1744072703,1744073471,1744073727,1744074751,1744076799,1744077823,1744078335,1744078847,1744079871,1744080895,1744081151,1744081407,1744081919,1744082687,1744082943,1744083711,1744083967,1744084991,1744085503,1744085759,1744086015,1744087039,1744088063,1744090111,1744091135,1744092159,1744092671,1744092927,1744093183,1744093695,1744094207,1744096255,1744097279,1744098303,1744099071,1744099327,1744100351,1744100607,1744101375,1744101887,1744102143,1744102399,1744103423,1744104447,1744105471,1744106751,1744107007,1744107263,1744107519,1744108543,1744109567,1744110591,1744111615,1744113663,1744114687,1744115455,1744115711,1744115967,1744116223,1744116735,1744117759,1744118783,1744119807,1744120831,1744122879,1744123903,1744124927,1744125951,1744127999,1744128511,1744128767,1744129023,1744130047,1744131071,1744132095,1744133119,1744134143,1744135167,1744137215,1744138239,1744139263,1744140287,1744140799,1744141311,1744143359,1744144383,1744145407,1744146431,1744146687,1744146943,1744147199,1744147455,1744148479,1744149503,1744149759,1744150271,1744150527,1744151551,1744151807,1744152319,1744152575,1744153087,1744153599,1744154623,1744154879,1744156671,1744158207,1744158719,1744159743,1744161791,1744162815,1744163839,1744165375,1744165631,1744166399,1744166655,1744166911,1744167167,1744167679,1744167935,1744168959,1744169471,1744169727,1744169983,1744171007,1744172031,1744175103,1744175615,1744175871,1744176127,1744177151,1744179199,1744180223,1744181247,1744182271,1744184575,1744184831,1744185087,1744185343,1744187903,1744188159,1744188415,1744189439,1744190463,1744191487,1744191999,1744194047,1744194303,1744194559,1744194815,1744195071,1744195583,1744196607,1744197631,1744198655,1744199679,1744201727,1744201983,1744202239,1744202495,1744202751,1744203775,1744204799,1744205823,1744207871,1744208127,1744208383,1744208895,1744209919,1744210943,1744211967,1744212991,1744213503,1744214015,1744216063,1744217087,1744218111,1744218623,1744219135,1744220159,1744221183,1744222207,1744222719,1744222975,1744223231,1744224255,1744226303,1744227327,1744228351,1744229375,1744230399,1744230655,1744230911,1744231423,1744232447,1744233471,1744234495,1744234751,1744235519,1744236543,1744237567,1744238591,1744239103,1744239359,1744239615,1744239871,1744240639,1744241663,1744242687,1744245503,1744245759,1744247807,1744248319,1744248831,1744249855,1744250367,1744250879,1744251903,1744252927,1744253951,1744254975,1744255999,1744257023,1744257279,1744257535,1744257791,1744258047,1744258559,1744258815,1744259071,1744260095,1744261119,1744261631,1744262143,1744264191,1744265215,1744266239,1744267263,1744268287,1744269311,1744270335,1744270591,1744270847,1744271359,1744272383,1744272895,1744273407,1744274431,1744275455,1744275967,1744276479,1744278527,1744278783,1744279039,1744279295,1744279551,1744280575,1744283647,1744286719,1744286975,1744287231,1744287743,1744289023,1744289535,1744289791,1744290815,1744291327,1744291583,1744291839,1744292863,1744293887,1744294655,1744294911,1744295935,1744296959,1744297983,1744298495,1744299007,1744300031,1744301055,1744301567,1744302079,1744302335,1744302591,1744303615,1744303871,1744304127,1744305151,1744306175,1744306687,1744308223,1744308735,1744309247,1744310271,1744311295,1744312319,1744312575,1744312831,1744313343,1744315391,1744316415,1744317439,1744318463,1744318975,1744319487,1744320511,1744321535,1744321791,1744322047,1744322559,1744323583,1744324607,1744325631,1744326655,1744328703,1744329727,1744330751,1744331263,1744331775,1744332799,1744333055,1744333311,1744333823,1744334847,1744335871,1744337919,1744338943,1744339967,1744340223,1744340479,1744340991,1744342015,1744342527,1744342783,1744343039,1744343551,1744343807,1744344063,1744344319,1744345087,1744346111,1744347135,1744349183,1744350207,1744351231,1744352255,1744353279,1744354303,1744355327,1744356351,1744357375,1744357631,1744357887,1744358399,1744359423,1744360447,1744361471,1744361983,1744362239,1744362495,1744363007,1744363519,1744364543,1744365055,1744365567,1744366591,1744367615,1744368639,1744369663,1744369919,1744370175,1744370431,1744370687,1744371711,1744372735,1744373759,1744374783,1744375807,1744376319,1744376831,1744377855,1744378879,1744379903,1744380927,1744383999,1744384255,1744385023,1744386047,1744386303,1744386559,1744387071,1744387583,1744388095,1744388607,1744389375,1744389631,1744389887,1744390143,1744391167,1744393215,1744394239,1744395263,1744396287,1744397311,1744398335,1744400383,1744400895,1744401407,1744401919,1744403455,1744404479,1744405503,1744406527,1744407551,1744408575,1744409599,1744409855,1744410111,1744410367,1744410623,1744411647,1744412671,1744413183,1744413695,1744417791,1744418303,1744418815,1744419071,1744419327,1744419839,1744420863,1744421887,1744422399,1744422911,1744423423,1744423679,1744423935,1744424959,1744425471,1744425727,1744425983,1744427007,1744428031,1744429055,1744429567,1744430079,1744431103,1744434175,1744435199,1744436223,1744437247,1744438271,1744438527,1744438783,1744439039,1744439295,1744439807,1744440319,1744441343,1744442367,1744443391,1744444415,1744444927,1744445439,1744446463,1744447487,1744447743,1744447999,1744448511,1744449535,1744450559,1744451583,1744452607,1744453119,1744453375,1744453631,1744454655,1744455679,1744456703,1744456959,1744457215,1744457727,1744458239,1744458495,1744458751,1744459775,1744460799,1744461823,1744462847,1744463359,1744463615,1744463871,1744464895,1744466943,1744467967,1744468479,1744468991,1744470015,1744471039,1744472063,1744473087,1744474111,1744481279,1744482303,1744483327,1744484351,1744486399,1744487423,1744487935,1744488191,1744488447,1744489471,1744489727,1744489983,1744490239,1744490495,1744491519,1744492543,1744493567,1744494079,1744494591,1744495615,1744497663,1744498687,1744499711,1744500735,1744502783,1744503807,1744504831,1744505343,1744505855,1744506367,1744506623,1744506879,1744509183,1744509439,1744509951,1744510975,1744511999,1744513023,1744513535,1744513791,1744514047,1744514559,1744514815,1744515071,1744519167,1744520191,1744520447,1744520703,1744521215,1744523263,1744524287,1744525311,1744526335,1744527359,1744528383,1744529407,1744530431,1744530687,1744530943,1744531455,1744532479,1744533503,1744534527,1744536575,1744537087,1744538623,1744539647,1744540671,1744541695,1744542719,1744543743,1744544767,1744545791,1744546047,1744546303,1744547839,1744548863,1744549887,1744551935,1744552959,1744553471,1744553983,1744555007,1744556031,1744562175,1744563199,1744563711,1744563967,1744564223,1744565247,1744566271,1744567807,1744568319,1744569343,1744570367,1744571391,1744571903,1744572415,1744573439,1744574463,1744575487,1744576511,1744577535,1744578559,1744579071,1744579327,1744579583,1744580351,1744580607,1744580863,1744581119,1744581631,1744582655,1744583679,1744584703,1744585727,1744586751,1744587775,1744588799,1744589823,1744590079,1744590847,1744591871,1744592895,1744593919,1744594431,1744594943,1744595967,1744596223,1744596479,1744596735,1744596991,1744598015,1744599039,1744599551,1744600063,1744601087,1744602111,1744603135,1744603647,1744604159,1744607231,1744608255,1744609023,1744609279,1744609535,1744609791,1744610047,1744610303,1744612351,1744613375,1744614399,1744616447,1744616959,1744617471,1744617983,1744618495,1744619519,1744620543,1744622591,1744624639,1744625663,1744626687,1744627711,1744628735,1744630783,1744631039,1744631295,1744631551,1744631807,1744632831,1744633855,1744634879,1744635903,1744636927,1744637951,1744638463,1744638975,1744639999,1744641023,1744642047,1744643071,1744643583,1744644095,1744645119,1744646143,1744647167,1744648191,1744649215,1744650239,1744651263,1744651775,1744652287,1744653311,1744655871,1744656383,1744657407,1744658431,1744659455,1744659967,1744660479,1744660735,1744660991,1744661503,1744662527,1744663551,1744663807,1744664063,1744664575,1744665599,1744665855,1744666111,1744666367,1744666623,1744667647,1744668671,1744669695,1744670719,1744671743,1744673791,1744674815,1744675839,1744676351,1744678911,1744679423,1744679935,1744680959,1744681983,1744683007,1744683263,1744683519,1744684031,1744685055,1744686079,1744687103,1744688127,1744689151,1744690175,1744692223,1744692479,1744693247,1744694271,1744695295,1744696319,1744696831,1744697343,1744698367,1744699135,1744699391,1744700415,1744701439,1744702463,1744704511,1744705535,1744705791,1744706047,1744706303,1744708607,1744709631,1744710655,1744711679,1744712191,1744712447,1744712703,1744714751,1744715775,1744717823,1744718079,1744718335,1744718591,1744718847,1744719871,1744720895,1744721919,1744722687,1744722943,1744723455,1744723711,1744723967,1744726015,1744727039,1744728063,1744729087,1744730111,1744731135,1744732159,1744733183,1744734207,1744736255,1744737279,1744738303,1744739327,1744740351,1744741375,1744741631,1744741887,1744742143,1744742399,1744743423,1744744447,1744745471,1744747519,1744748543,1744749055,1744749567,1744749823,1744750079,1744750591,1744752639,1744753663,1744754175,1744754431,1744754687,1744755711,1744756735,1744757759,1744758271,1744758527,1744758783,1744759807,1744762879,1744763903,1744765439,1744765951,1744766975,1744767999,1744768255,1744768511,1744769023,1744770047,1744771071,1744772095,1744772351,1744772607,1744772863,1744773119,1744774143,1744775167,1744776191,1744777215,1744778239,1744778751,1744779263,1744780287,1744781311,1744781823,1744782335,1744783359,1744784895,1744785407,1744786431,1744787455,1744789503,1744790015,1744790527,1744792575,1744793599,1744794623,1744795647,1744797183,1744797439,1744797695,1744798719,1744799231,1744799743,1744801791,1744802815,1744803839,1744804863,1744805375,1744805887,1744806399,1744807935,1744808447,1744808959,1744809983,1744811007,1744812031,1744813055,1744814079,1744814591,1744815103,1744815615,1744815871,1744816127,1744817151,1744817663,1744818175,1744818687,1744819199,1744820223,1744823295,1744824319,1744825343,1744826367,1744827391,1744828415,1744828927,1744829183,1744829439,1744830463,1746239487,1746253055,1746253567,1746255871,1746268159,1746272255,1746292735,1746303999,1746304255,1746321407,1746321663,1746362367,1746374655,1746388991,1746389503,1746403327,1746427903,1746436095,1746538495,1746552575,1746552831,1746599935,1746632703,1746649087,1746653183,1746665471,1746666751,1746667007,1746667519,1746667775,1746668031,1746668287,1746668543,1746668799,1746674943,1746675199,1746675711,1746675967,1746676479,1746676735,1746676991,1746677503,1746677759,1746678527,1746678783,1746680831,1746681087,1746681599,1746681855,1746682367,1746682623,1746682879,1746683135,1746683391,1746683647,1746686719,1746686975,1746690815,1746691071,1746691327,1746691583,1746694399,1746694655,1746695423,1746695679,1746695935,1746696191,1746696447,1746696703,1746700287,1746701055,1746701567,1746702335,1746703103,1746703359,1746703615,1746704895,1746705151,1746705407,1746705663,1746706687,1746714367,1746731007,1746732031,1746732287,1746732799,1746733055,1746733311,1746733567,1746733823,1746734079,1746734335,1746734591,1746734847,1746735103,1746735359,1746735615,1746735871,1746736127,1746736383,1746738943,1746739199,1746739967,1746740223,1746740479,1746740735,1746741247,1746741503,1746742527,1746742783,1746744319,1746744575,1746745343,1746745855,1746746111,1746746367,1746746623,1746747135,1746747391,1746747647,1746748159,1746748927,1746749183,1746749695,1746749951,1746750463,1746750719,1746751487,1746752511,1746752767,1746753023,1746753279,1746753791,1746754047,1746754559,1746755327,1746755839,1746757375,1746757631,1746757887,1746758655,1746758911,1746759167,1746759423,1746759679,1746760191,1746760447,1746760703,1746761215,1746761983,1746762751,1746771711,1746771967,1746795007,1746795263,1746796543,1746797055,1746797311,1746797567,1746798079,1746825983,1746826239,1746829311,1746829823,1746830335,1746831103,1746842111,1746842623,1746866175,1746866687,1746911999,1746912255,1746927615,1747191807,1747193855,1747210239,1747210495,1747210751,1747211263,1747215359,1747216383,1747219455,1747220479,1747227647,1747228671,1747229695,1747230719,1747232767,1747234815,1747235839,1747236863,1747255807,1747256063,1747256319,1747256575,1747256831,1747257087,1747257343,1747260415,1747261439,1747263487,1747265023,1747265535,1747266047,1747266559,1747270655,1747272703,1747273727,1747274751,1747275775,1747276799,1747283967,1747284991,1747293183,1747294207,1747304447,1747308543,1747316735,1747317759,1747484671,1747517439,1747533823,1747550207,1747558399,1747566591,1747582975,1747648511,1747681279,1747716863,1747717119,1747717631,1747720191,1747720447,1747722751,1747723007,1747726847,1747727103,1747727359,1747730431,1747730687,1747730943,1747731199,1747736319,1747736575,1747737087,1747737343,1747737855,1747738111,1747738879,1747739135,1747740927,1747741183,1747741439,1747744255,1747744511,1747744767,1747746815,1747763711,1747763967,1747768575,1747768831,1747769855,1747770111,1747770623,1747770879,1747771135,1747779071,1747800063,1747812351,1747847167,1747849215,1747851263,1747852287,1747853311,1747861503,1747869695,1747886079,1747894271,1747898367,1747906559,1747910655,1747910911,1747911167,1747911679,1747911935,1747912191,1747912447,1747912703,1747912959,1747913215,1747913471,1747913727,1747913983,1747914239,1747914495,1747914751,1747915007,1747915263,1747915519,1747915775,1747916287,1747916543,1747916799,1747917311,1747917567,1747917823,1747918079,1747918335,1747918591,1747918847,1747919359,1747919615,1747920639,1747920895,1747921407,1747921663,1747923455,1747923711,1747926015,1747926271,1747928831,1747929087,1747929855,1747930111,1747930367,1747931391,1747931903,1747932415,1747932671,1747934207,1747934719,1747936255,1747936511,1747938303,1747938815,1747939071,1747940351,1747940863,1747941119,1747941375,1747941631,1747941887,1747942143,1747942655,1747942911,1747943167,1747943423,1747959807,1747964415,1747965951,1747966463,1747966975,1749025535,1749025791,1749026815,1749027071,1749028863,1749032959,1749036287,1749036543,1749047551,1749047807,1749050111,1749050367,1749053439,1749057535,1749058047,1749058303,1749062399,1749062655,1749065727,1749069823,1749073919,1749078015,1749086207,1749090303,1749106687,1749114879,1749115903,1749116159,1749118975,1749119231,1749120511,1749121535,1749122047,1749122303,1749122559,1749122815,1749123071,1749148671,1749149695,1749172223,1749180415,1749181439,1749182463,1749184511,1749186559,1749188607,1749229567,1749237759,1749262335,1749270527,1749278719,1749295103,1749303295,1749311487,1749344255,1749346303,1749360639,1749364735,1749389311,1749397503,1749406719,1749407743,1749409279,1749409535,1749422079,1749430271,1749438463,1749442559,1749446655,1749446911,1749447423,1749447679,1749448447,1749448703,1749449215,1749449471,1749449727,1749450239,1749459199,1749459455,1749459711,1749459967,1749460991,1749461503,1749461759,1749462783,1749463039,1749463807,1749464063,1749464319,1749465087,1749477375,1749477887,1749478143,1749479423,1749495807,1749496831,1749498879,1749499391,1749508095,1749516287,1749516799,1749517055,1749517311,1749518335,1749519871,1749520383,1749528575,1749538815,1749539327,1749545983,1749547007,1749566975,1749567487,1749568511,1749569279,1749569535,1749616383,1749616639,1749638143,1749639167,1749655551,1749655807,1749656063,1749656319,1749656575,1749657599,1749658623,1749658879,1749659647,1749661695,1749671935,1749676031,1749684223,1749684991,1749685247,1749686271,1749686783,1749696511,1749698303,1749698559,1749712895,1749713151,1749713407,1749713663,1749716991,1749718015,1749719551,1749721087,1749729279,1749745663,1749746687,1749747199,1749748735,1749749759,1749757951,1749767167,1749767423,1749768191,1749769215,1749788927,1749789183,1749789695,1749794815,1749803007,1749805567,1749817343,1749818367,1749819391,1749827583,1749836287,1749836543,1749836799,1749843967,1749848063,1749858047,1749858303,1749858559,1749860095,1749860351,1749860607,1749860863,1749861119,1749861631,1749862399,1749863423,1749864447,1749864703,1749865215,1749865471,1749866239,1749866495,1749867519,1749867775,1749868031,1749868287,1749868543,1749876735,1749879807,1749880319,1749880831,1749889023,1749897215,1749897471,1749898495,1749898751,1749899007,1749899263,1749899519,1749899775,1749900031,1749900287,1749900543,1749900799,1749901055,1749901311,1749901823,1749902079,1749902335,1749902591,1749902847,1749903103,1749906943,1749907199,1749917695,1749918207,1749918975,1749919231,1749919487,1749919743,1749919999,1749920255,1749920511,1749920767,1749921023,1749921279,1749921791,1749922303,1749924095,1749924351,1749925119,1749925375,1749927423,1749927679,1749928447,1749928703,1749928959,1749930495,1749931007,1749932031,1749959423,1749959679,1749960703,1749962239,1749962751,1749970943,1749983231,1749988351,1749989375,1749990143,1749990399,1750008319,1750009855,1750010367,1750010623,1750010879,1750011903,1750015999,1750020095,1750030335,1750031359,1750031871,1750058239,1750058495,1750060031,1750060543,1750061055,1750069247,1750078463,1750079487,1750080511,1750081535,1750085631,1750089727,1750123007,1750123519,1750126591,1750127615,1750128127,1750132735,1750134783,1750142975,1750147071,1750154239,1750155263,1750157311,1750159359,1750163455,1750172671,1750174207,1750174463,1750174719,1750175743,1750188031,1750192127,1750200319,1750201343,1750201855,1750202111,1750202367,1750202623,1750202879,1750203391,1750204415,1750222847,1750224383,1750224895,1750233087,1750252543,1750253055,1750270975,1750271487,1750273023,1750274047,1750278143,1750282239,1750286335,1750290943,1750294015,1750294527,1750310911,1750319103,1750320127,1750321151,1750321663,1750323199,1750331391,1750339583,1750349311,1750349823,1750350847,1750351871,1750360063,1750372351,1750373375,1750373887,1750374143,1750374399,1750374911,1750394367,1750394623,1750401023,1750403071,1750404095,1750405119,1750413311,1750413823,1750415359,1750425599,1750425855,1750426367,1750429439,1750429695,1750430463,1750430719,1750431999,1750432255,1750441983,1750458367,1750462463,1750464511,1750464767,1750465023,1750466559,1750474751,1750482943,1750483199,1750483455,1750483711,1750483967,1750484223,1750484479,1750494719,1750495231,1750503423,1750505471,1750511615,1750512639,1750513151,1750514687,1750515199,1750534143,1750534399,1750539263,1750540287,1750544383,1750548479,1750552575,1750573055,1750581247,1750583295,1750585343,1750593535,1750615551,1750616063,1750635519,1750636543,1750637567,1750638591,1750646783,1750647039,1750650111,1750650367,1750654975,1750663167,1750679551,1750687743,1750688255,1750688767,1750690303,1750691839,1750692863,1750693375,1750694911,1750704127,1750705151,1750706175,1750707199,1750708223,1750714367,1750725631,1750727679,1750728703,1750729727,1750730495,1750730751,1750731775,1750734847,1750735871,1750754303,1750754559,1750778879,1750779903,1750780927,1750781183,1750781439,1750781951,1750794239,1750802431,1750805503,1750806527,1750807551,1750809087,1750809343,1750809599,1750810623,1750811647,1750812159,1750812671,1750816767,1750827007,1750836735,1750856703,1750857727,1750876159,1750877183,1750896639,1750897663,1750899199,1750925311,1750926335,1750926847,1750927359,1750928383,1750929407,1750930431,1750930687,1750931711,1750931967,1750933503,1750937599,1750941951,1750942207,1750942719,1750942975,1750944511,1750944767,1750945791,1750946047,1750946815,1750948351,1750948863,1750949887,1750958079,1750958335,1750958591,1750959871,1750960127,1750961151,1750961407,1750961919,1750962431,1750963199,1750963711,1750965759,1750966015,1750966271,1750975999,1750977535,1750978559,1750980607,1750980863,1750981375,1750981631,1750990335,1750990847,1750992639,1750992895,1750994943,1750995199,1750995455,1750995967,1750998015,1750998527,1750999039,1750999551,1750999807,1751000831,1751001343,1751002879,1751003135,1751011327,1751015423,1751016703,1751016959,1751017215,1751017471,1751018495,1751027711,1751031807,1751035903,1751036671,1751036927,1751038207,1751038463,1751044095,1751044351,1751046143,1751047167,1751056639,1751056895,1751066111,1751066367,1751070463,1751070719,1751073535,1751073791,1751081215,1751081471,1751083007,1751084031,1751084799,1751085055,1751087871,1751088127,1751088639,1751088895,1751090943,1751091199,1751099647,1751099903,1751101183,1751101439,1751102207,1751102463,1751103487,1751104511,1751105023,1751105279,1751106559,1751106815,1751144959,1751146495,1751154687,1751163391,1751165183,1751165439,1751165951,1751166975,1751167487,1751167743,1751167999,1751168511,1751168767,1751172095,1751173119,1751174143,1751175167,1751175679,1751175935,1751188223,1751188479,1751189503,1751190527,1751191039,1751191551,1751192575,1751193599,1751196671,1751199743,1751203839,1751206911,1751207167,1751207423,1751207935,1751208959,1751209471,1751209727,1751209983,1751211519,1751212031,1751224319,1751228415,1751235583,1751236607,1751253503,1751253759,1751254015,1751256063,1751257087,1751283711,1751284735,1751285759,1751289855,1751291135,1751291391,1751295231,1751295487,1751295743,1751295999,1751298303,1751298559,1751300607,1751300863,1751303167,1751304191,1751305727,1751310335,1751314431,1751322623,1751333119,1751333375,1751333631,1751333887,1751335167,1751335423,1751349759,1751350015,1751354367,1751354623,1751355391,1751355903,1751358207,1751358463,1751363839,1751364095,1751365119,1751366655,1751376383,1751376895,1751377919,1751378943,1751407615,1751407871,1751408127,1751408383,1751429119,1751433215,1751453695,1751454719,1751454975,1751455231,1751455743,1751456767,1751457791,1751476223,1751477247,1751506175,1751506431,1751510015,1751521279,1751521535,1751522303,1751523327,1751531519,1751577599,1751577855,1751578111,1751578367,1751578623,1751597055,1751598079,1751599103,1751609343,1751611391,1751613439,1751617535,1751619583,1751620607,1751621631,1751625727,1751629823,1751633919,1751638527,1751639039,1751641087,1751641599,1751642111,1751646207,1751650303,1751659519,1751659775,1751660031,1751660543,1751661567,1751662591,1751679487,1751681023,1751681535,1751681791,1751683071,1751691263,1751699455,1751699711,1751703551,1751703807,1751707647,1751707903,1751708671,1751711743,1751719935,1751780351,1751780863,1751781119,1751781375,1751797759,1751798015,1751798271,1751799807,1751800831,1751801855,1751810047,1751828991,1751830527,1751857151,1751858175,1751870463,1751870975,1751871487,1751872511,1751874047,1751874303,1751874559,1751875583,1751879679,1751883775,1751884799,1751885311,1751885823,1751886079,1751886335,1751887615,1751887871,1751895807,1751896063,1751896319,1751896831,1751897087,1751899391,1751899647,1751900159,1751904255,1751905023,1751905279,1751907839,1751908095,1751912959,1751913215,1751916287,1751916543,1751917311,1751917567,1751923199,1751923455,1751928831,1751932927,1751943423,1751943679,1751945215,1751946239,1751947263,1751949311,1751951871,1751952127,1751952895,1751953151,1751957503,1751974911,1751976703,1751976959,1751977215,1751977471,1751987199,1751987455,1751987711,1751987967,1751988479,1751988991,1751989503,1751989759,1751992319,1751992575,1751996415,1751996671,1751999743,1751999999,1752002303,1752002559,1752006655,1752006911,1752007167,1752008703,1752008959,1752010239,1752010751,1752012543,1752012799,1752015615,1752015871,1752019967,1752020223,1752024831,1752025087,1752028415,1752028671,1752033279,1752033535,1752035327,1752036351,1752037375,1752037887,1752038143,1752038399,1752039423,1752047615,1752047871,1752056831,1752057855,1752059903,1752062463,1752062719,1752063231,1752063487,1752066303,1752066559,1752069887,1752070143,1752070911,1752071167,1752082175,1752082431,1752087807,1752088063,1752088575,1752097535,1752097791,1752098559,1752098815,1752099839,1752100095,1752100863,1752101119,1752101887,1752102911,1752104703,1752104959,1752107007,1752107263,1752108543,1752108799,1752115455,1752115711,1752120575,1752120831,1752123391,1752123647,1752129791,1752130047,1752132351,1752132607,1752154111,1752158207,1752171007,1752172543,1752195071,1752199167,1752208895,1752228607,1752228863,1752270847,1752272383,1752272895,1752281087,1752289279,1752298495,1752299519,1752300543,1752301567,1752317951,1752318207,1752318463,1752319999,1752322047,1752330239,1752338431,1752342527,1752346623,1752350719,1752358911,1752367103,1752375295,1752376319,1752376575,1752376831,1752377087,1752377343,1752383487,1752385535,1752385791,1752386815,1752387071,1752387583,1752387839,1752388095,1752388351,1752388607,1752389631,1752390655,1752409087,1752410111,1752411647,1752420351,1752428543,1752436735,1752437759,1752438783,1752439295,1752440831,1752444927,1752446207,1752446463,1752449023,1752457215,1752458239,1752458751,1752474111,1752474367,1752475647,1752476671,1752477695,1752494847,1752495103,1752495359,1752495615,1752497151,1752498175,1752515327,1752515583,1752516607,1752517631,1752517887,1752518143,1752539135,1752543231,1752544511,1752544767,1752545023,1752545279,1752564991,1752565247,1752565503,1752565759,1752568831,1752569855,1752570111,1752570367,1752570623,1752570879,1752571903,1752589311,1752590335,1752590847,1752592383,1752600575,1752608767,1752618495,1752619007,1752619263,1752619519,1752637951,1752638463,1752639487,1752639999,1752640255,1752641023,1752641279,1752641535,1752653823,1752655871,1752656895,1752657919,1752660223,1752660479,1752665599,1752665855,1752666111,1752670207,1752690687,1752692735,1752696831,1752697855,1752707071,1752708095,1752709119,1752710143,1752711167,1752719359,1752727551,1752728063,1752729599,1752730367,1752730623,1752731647,1752739839,1752750079,1752751615,1752752127,1752754175,1752760319,1752768511,1752776703,1752778239,1752779775,1752780031,1752797183,1752798207,1752818687,1752820223,1752820735,1752821759,1752829951,1752831999,1752833023,1752834047,1752836095,1752846335,1752847359,1752848383,1752850175,1752850431,1752858623,1752862719,1752875007,1752879103,1752880127,1752881151,1752882175,1752882687,1752883199,1752897535,1752899583,1752901631,1752903679,1752904191,1752904447,1752904703,1752905727,1752905983,1752906495,1752906751,1752907007,1752908543,1752908799,1752909055,1752912895,1752913919,1752915967,1752918015,1752920063,1752928255,1752930303,1752941567,1752941823,1752945151,1752945663,1752946687,1752947711,1752948735,1752956927,1752957183,1752959487,1752959743,1752959999,1752970751,1752971007,1752984575,1752985599,1752997887,1753003519,1753023231,1753023487,1753024511,1753025535,1753026303,1753026559,1753043455,1753043711,1753075711,1753076735,1753078783,1753079807,1753097215,1753097727,1753118719,1753120767,1753157631,1753165823,1753182207,1753186303,1753223167,1753227263,1753251839,1753255935,1753260031,1753264639,1753265151,1753266175,1753267199,1753267711,1753268223,1753280511,1753284607,1753309183,1753317887,1753318911,1753319423,1753324543,1753324799,1753325055,1753325567,1753327103,1753327615,1753329151,1753329407,1753329663,1753330687,1753331711,1753381887,1753382655,1753411583,1753411839,1753412351,1753412607,1753413375,1753413631,1753414143,1753414399,1753414655,1753414911,1753415167,1753415423,1753481727,1753481983,1753482239,1753482751,1753483007,1753483263,1753483519,1753483775,1753484031,1753484287,1753484543,1753484799,1753485823,1753486079,1753486335,1753486591,1753486847,1753487103,1753487359,1753487615,1753487871,1753488127,1753488383,1753488639,1753489151,1753489407,1753489663,1753489919,1753490175,1753490431,1753490687,1753490943,1753491199,1753491455,1753491711,1753491967,1753492223,1753492479,1753492735,1753492991,1753493503,1753493759,1753494015,1753494271,1753494527,1753494783,1753495039,1753495295,1753495551,1753495807,1753496063,1753496319,1753496575,1753496831,1753497087,1753497343,1753497599,1753498367,1753498623,1753499135,1753499391,1753499647,1753499903,1753500159,1753500415,1753500671,1753500927,1753501951,1753502207,1753502975,1753503231,1753503487,1753503999,1753504255,1753505023,1753505535,1753505791,1753507071,1753507327,1753507583,1753508095,1753508351,1753509119,1753509375,1753509887,1753510143,1753510655,1753510911,1753511167,1753511423,1753511679,1753511935,1753512447,1753512703,1753512959,1753513471,1753513727,1753513983,1753514239,1753515007,1753515263,1753515775,1753516031,1753516287,1753516543,1753516799,1753517567,1753517823,1753518079,1753518335,1753518591,1753518847,1753519359,1753519615,1753519871,1753520127,1753520383,1753520639,1753521407,1753521663,1753521919,1753522175,1753522431,1753522687,1753522943,1753524223,1753524479,1753524735,1753525247,1753525503,1753525759,1753526015,1753526783,1753527039,1753527295,1753527551,1753527807,1753528319,1753528575,1753528831,1753529087,1753529343,1753529599,1753529855,1753530111,1753530623,1753531135,1753531391,1753531647,1753531903,1753532159,1753532415,1753532671,1753532927,1753533183,1753533439,1753533695,1753533951,1753534463,1753534719,1753534975,1753535743,1753535999,1753536255,1753536511,1753536767,1753537023,1753537279,1753538815,1753539071,1753539327,1753539583,1753539839,1753540607,1753540863,1753541375,1753541631,1753541887,1753542143,1753542399,1753542655,1753542911,1753543167,1753543423,1753543679,1753543935,1753544447,1753544703,1753544959,1753545215,1753545471,1753545727,1753545983,1753546239,1753546495,1753546751,1753548287,1753548543,1753549311,1753549567,1753549823,1753550079,1753550335,1753550591,1753550847,1753551103,1753551615,1753552639,1753552895,1753554431,1753554687,1753554943,1753555455,1753555711,1753557759,1753558015,1753558271,1753558527,1753558783,1753559295,1753559551,1753559807,1753560063,1753560319,1753560575,1753560831,1753561087,1753561343,1753561599,1753562367,1753562623,1753563647,1753563903,1753564159,1753564415,1753564671,1753564927,1753567231,1753567487,1753567743,1753567999,1753568255,1753568511,1753569279,1753570047,1753570303,1753570559,1753570815,1753571071,1753571327,1753571583,1753571839,1753572095,1753572351,1753572607,1753572863,1753573375,1753573631,1753573887,1753574399,1753574655,1753574911,1753575423,1753575679,1753575935,1753576703,1753576959,1753577215,1753577471,1753577727,1753577983,1753578239,1753578751,1753579007,1753580031,1753580287,1753580543,1753580799,1753581055,1753581311,1753581567,1753581823,1753582079,1753582335,1753582591,1753582847,1753583103,1753583359,1753583615,1753583871,1753584639,1753584895,1753585407,1753585663,1753586175,1753586431,1753586687,1753586943,1753587199,1753587455,1753587967,1753588223,1753588479,1753588735,1753589247,1753589503,1753589759,1753590015,1753590527,1753590783,1753591039,1753591295,1753591551,1753591807,1753592063,1753592319,1753592575,1753592831,1753593087,1753593343,1753593599,1753593855,1753594111,1753594367,1753594623,1753595135,1753595391,1753595647,1753595903,1753596159,1753596671,1753596927,1753598207,1753598463,1753598719,1753598975,1753599231,1753599999,1753600255,1753600511,1753600767,1753601023,1753601279,1753601535,1753601791,1753602047,1753602303,1753603071,1753603327,1753604351,1753604607,1753605119,1753605375,1753605631,1753605887,1753606143,1753606655,1753606911,1753607167,1753607423,1753608191,1753608447,1753608959,1753609215,1753609727,1753609983,1753610239,1753610495,1753610751,1753611263,1753611519,1753611775,1753612031,1753612287,1753612543,1753614847,1753615359,1753615871,1753616383,1753617407,1753617663,1753617919,1753618431,1753618687,1753619199,1753619455,1753628671,1753628927,1753632767,1753633023,1753636351,1753636607,1753645055,1753645567,1753648383,1753648639,1753650431,1753650687,1753650943,1753651199,1753651455,1753651711,1753651967,1753652223,1753652735,1753652991,1753653759,1753654015,1753654527,1753654783,1753655807,1753656063,1753656319,1753657599,1753657855,1753658111,1753658367,1753658623,1753658879,1753659135,1753659391,1753659647,1753659903,1753660159,1753660415,1753660671,1753660927,1753661183,1753661439,1753663743,1753663999,1753664511,1753664767,1753665791,1753666047,1753667839,1753668095,1753669631,1753669887,1753670399,1753670655,1753670911,1753671167,1753672703,1753672959,1753673727,1753673983,1753674239,1753674495,1753718783,1753719039,1753719807,1753720063,1753720319,1753720575,1753721343,1753721599,1753729023,1753729279,1753729535,1753729791,1754136575,1754169343,1754181887,1754182143,1754182911,1754183167,1754183935,1754184191,1754184447,1754184703,1754184959,1754185215,1754185471,1754185727,1754186751,1754204159,1754204415,1754206207,1754210303,1754214399,1754227199,1754227455,1754251263,1754259455,1754260479,1754260735,1754260991,1754261503,1754264575,1754265087,1754265343,1754333183,1754337279,1754431487,1754432511,1754436607,1754437119,1754439679,1754440703,1754443775,1754444031,1754449407,1754449919,1754450943,1754453247,1754453503,1754454015,1754455551,1754456063,1754456319,1754456575,1754458623,1754458879,1754459903,1754460159,1754461183,1754461695,1754462719,1754463231,1754605567,1754605823,1754623487,1754623743,1754626303,1754626559,1754726399,1754759167,1754761215,1754799103,1754800127,1754804223,1754804479,1754804735,1754822655,1754823679,1754828287,1754828543,1754830847,1754831871,1754832895,1754835967,1754845183,1754846207,1754849279,1754850303,1754852351,1754853375,1754863615,1754864639,1754869759,1754870783,1754871807,1754872831,1754886655,1754886911,1754890239,1754892287,1754894335,1754899455,1754899967,1754900223,1754900479,1754911743,1754912767,1754920959,1754921983,1754923007,1754988543,1755021311,1755037695,1755049983,1755070463,1755074559,1755075071,1755075327,1755076863,1755077119,1755077375,1755077631,1755077887,1755078143,1755078399,1755090687,1755090943,1755091967,1755095039,1755095551,1755103231,1755111423,1755113471,1755113983,1755115007,1755115519,1755119615,1755283455,1755316735,1755316991,1755317247,1755317759,1755318015,1755319295,1755319807,1755320063,1755320319,1755320575,1755320831,1755323391,1755324159,1755352575,1755352831,1755364607,1755364863,1755365375,1755374591,1755375103,1755375359,1755375615,1755376639,1755379455,1755381759,1755443199,1755443711,1755444223,1755444735,1755445247,1755512831,1755578367,1755578623,1755578879,1755579903,1755580415,1755580671,1755580927,1755581183,1755581439,1755582207,1755582463,1755583999,1755584255,1755586559,1755586815,1755587583,1755587839,1755588095,1755588351,1755588607,1755588863,1755589631,1755589887,1755590399,1755590655,1755599359,1755599615,1755601663,1755601919,1755607295,1755607551,1755609087,1755609343,1755613439,1755613695,1755615231,1755615487,1755616255,1755616511,1755617535,1755617791,1755620095,1755620351,1755620607,1755620863,1755621631,1755621887,1755622143,1755622655,1755623423,1755623679,1755625983,1755626239,1755629055,1755629311,1755629567,1755629823,1755630847,1755631103,1755631871,1755632127,1755634431,1755634687,1755644671,1755644927,1755645439,1755645695,1755647231,1755647487,1755647743,1755648767,1755649023,1755649279,1755650559,1755650815,1755656191,1755656447,1755659519,1755659775,1755662591,1755662847,1755663871,1755664127,1755664639,1755664895,1755665151,1755665407,1755666687,1755666943,1755667199,1755667455,1755667711,1755667967,1755669503,1755669759,1755671295,1755671551,1755671807,1755672063,1755672831,1755673343,1755675391,1755675647,1755676927,1755677183,1755677695,1755677951,1755679231,1755679487,1755680255,1755680511,1755680767,1755681023,1755681279,1755684863,1755685119,1755685375,1755685631,1755685887,1755686143,1755686399,1755686655,1755687679,1755687935,1755688191,1755688447,1755688703,1755688959,1755689727,1755689983,1755690239,1755690495,1755692031,1755692287,1755695103,1755695359,1755695615,1755695871,1755696383,1755696639,1755696895,1755702783,1755703039,1755703295,1755703551,1755704319,1755704575,1755706367,1755706623,1755707135,1755707903,1755717631,1755721727,1755734527,1755734783,1755735039,1755737087,1755742207,1755742719,1755743231,1755743487,1755743743,1755744255,1755745279,1755746303,1755747327,1755748351,1755749375,1755749887,1755750399,1755750911,1755751423,1755752447,1755753471,1755753727,1755753983,1755754239,1755754495,1755755519,1755756287,1755756543,1755756799,1755757055,1755757567,1755758079,1755758335,1755758591,1755774975,1755775231,1755777535,1755777791,1755779071,1755779327,1755779583,1755783167,1755824127,1755824383,1755829503,1755829759,1755830015,1755830271,1755831295,1755833343,1755833599,1755835391,1755836415,1755837951,1755838207,1755839487,1755840511,1756042239,1756042495,1756049407,1756053503,1756075263,1756075519,1756086271,1756086783,1756087039,1756087295,1756089343,1756090367,1757417471,1757419519,1757424127,1757424383,1757424639,1757425663,1757426687,1757427711,1757431807,1757432063,1757432831,1757433855,1757436927,1757437951,1757439231,1757439487,1757443071,1757446143,1757447167,1757448191,1757450239,1757451263,1757452287,1757453311,1757457407,1757458431,1757460479,1757462527,1757466623,1757468671,1757472767,1757473791,1757480959,1757481983,1757487103,1757488383,1757488639,1757489151,1757491199,1757497343,1757502463,1757503487,1757505535,1757506559,1757512703,1757513727,1757522943,1757523967,1757529087,1757530111,1757532159,1757534207,1757548543,1757549567,1757551615,1757560831,1757577215,1757578239,1757584383,1757585407,1757642751,1757675519,1757827071,1757831167,1757835263,1757839359,1757872127,1757888511,1757889023,1757900799,1757904895,1757933567,1757934079,1757937663,1757941759,1757958143,1757962239,1757966335,1757970431,1757971455,1757971711,1757972991,1757973247,1757976063,1757976575,1757977087,1757977343,1757977599,1757977855,1757978111,1758199807,1758330879,1758333951,1758334463,1758394623,1758394879,1758404607,1758412799,1758415871,1758416127,1758420991,1758429695,1758430207,1758478335,1758494719,1758543871,1758552063,1758609407,1758625791,1758674943,1758724095,1758733567,1758734079,1758739455,1758739711,1758741247,1758741503,1758741759,1758887935,1758896127,1758904319,1758920703,1758937087,1758953471,1758986239,1759016959,1759017215,1759128575,1759129599,1759131647,1759133695,1759135743,1759136767,1759138815,1759139839,1759140863,1759141887,1759149055,1759150079,1759158783,1759159039,1759159295,1759159807,1759160063,1759160319,1759162367,1759163391,1759166463,1759166719,1759166975,1759167231,1759167487,1759167743,1759167999,1759168255,1759172607,1759173631,1759178239,1759178495,1759178751,1759179775,1759184895,1759186943,1759188991,1759190015,1759191039,1759197183,1759199231,1759201791,1759202303,1759208447,1759209471,1759213567,1759217663,1759222783,1759223807,1759230975,1759233023,1759234047,1759236095,1759239167,1759240191,1759242495,1759242751,1759313919,1759346687,1759408127,1759412223,1759420415,1759420671,1759420927,1759421183,1759422719,1759424511,1759426559,1759427583,1759428607,1759436799,1759453695,1759454207,1759465471,1759465983,1759514879,1759515135,1759516671,1759517695,1759518719,1759520767,1759522815,1759523839,1759524863,1759525887,1759529727,1759529983,1759531519,1759531775,1759535103,1759543295,1759547391,1759548415,1759600383,1759600639,1759601151,1759601407,1759603199,1759603711,1759612415,1759612927,1759632127,1759632383,1759640831,1759641087,1759724543,1759724799,1759741439,1759741951,1759752703,1759752959,1759770623,1759770879,1760037887,1760038911,1760044031,1760044287,1760045311,1760045567,1760047103,1760051199,1760084479,1760084991,1760086015,1760088063,1760090623,1760092159,1760100351,1760102399,1760104447,1760105471,1760105727,1760106495,1760107007,1760116735,1760133119,1760144127,1760144383,1760166143,1760166399,1760167423,1760167679,1760167935,1760168959,1760169215,1760169727,1760169983,1760170239,1760170495,1760172799,1760173055,1760173311,1760173567,1760174335,1760174591,1760176895,1760177151,1760177407,1760177919,1760178175,1760178431,1760178687,1760179199,1760179455,1760180223,1760180479,1760180735,1760182015,1760182271,1760182527,1760182783,1760183295,1760183551,1760184063,1760184319,1760184575,1760184831,1760185087,1760185343,1760185599,1760185855,1760186111,1760186367,1760186623,1760186879,1760187135,1760187391,1760187647,1760188671,1760188927,1760189183,1760190463,1760190719,1760190975,1760191487,1760191743,1760192255,1760192511,1760192767,1760193023,1760193535,1760193791,1760194047,1760194303,1760194559,1760196863,1760197119,1760197631,1760197887,1760198655,1760199679,1760199935,1760200191,1760200447,1760200959,1760201215,1760201471,1760201727,1760201983,1760202239,1760205567,1760205823,1760206847,1760207871,1760208127,1760208895,1760209151,1760210431,1760210687,1760210943,1760211199,1760211455,1760211967,1760212223,1760212479,1760212991,1760213247,1760213503,1760213759,1760214015,1760214271,1760214527,1760215295,1760215551,1760215807,1760216063,1760216319,1760216575,1760217087,1760218111,1760218367,1760219903,1760220159,1760220927,1760221183,1760221439,1760221695,1760221951,1760222463,1760222719,1760222975,1760223231,1760223487,1760226047,1760226303,1760227071,1760227327,1760227583,1760228351,1760228607,1760230143,1760230399,1760230655,1760382975,1760387071,1760428031,1760429055,1760429567,1760429823,1760430079,1760430591,1760431615,1760431871,1760432895,1760433407,1760438015,1760438271,1760439295,1760439551,1760439807,1760465919,1760466943,1760468479,1760468991,1760469503,1760470527,1760471039,1760473087,1760473599,1760475135,1760476159,1760477183,1760477439,1760477695,1760478207,1760487423,1760487935,1760488191,1760488447,1760488703,1760488959,1760493567,1760495103,1760495615,1760496127,1760496639,1760496895,1760497151,1760497663,1760499711,1760500735,1760500991,1760501759,1760504831,1760505087,1760506879,1760507391,1760510975,1760511999,1760512255,1760512511,1760513023,1760513535,1760514559,1760514815,1760515071,1760515583,1760515839,1760516095,1760516351,1760516607,1760517631,1760517887,1760518143,1760518655,1760518911,1760519423,1760519679,1760521215,1760521471,1760524287,1760525311,1760526591,1760527103,1760527359,1760527615,1760527871,1760528127,1760528383,1760528639,1760528895,1760529151,1760529663,1760529919,1760530431,1760530687,1760530943,1760531199,1760531967,1760532223,1760533503,1760533759,1760534015,1760534271,1760555007,1760555775,1760556287,1760556543,1760556799,1760557055,1760657407,1760673791,1760690175,1760747519,1760776191,1760784383,1760808959,1760809215,1760811007,1760812031,1760812543,1760813055,1760817151,1760817407,1760817663,1760818431,1760818687,1760818943,1760819199,1760819711,1760819967,1760820223,1760820479,1760820735,1760820991,1760823295,1760824319,1760837631,1760839679,1760841727,1760846847,1760847359,1760847615,1760847871,1760867327,1760868351,1760869375,1760869631,1760869887,1760870399,1760871423,1760872447,1760878591,1760880639,1760883711,1760884735,1760886783,1760888831,1760889087,1760889343,1760897023,1760899071,1760900095,1760903167,1760904191,1760909567,1760910335,1760911359,1760913407,1760915455,1760917503,1760923647,1760924671,1760925695,1760929791,1760937983,1760939007,1760939263,1760939519,1760940031,1760941823,1760942079,1760944127,1760945151,1760946175,1760985087,1761017855,1761026047,1761034239,1761035519,1761035775,1761036031,1761038335,1761039871,1761041407,1761041663,1761043455,1761044479,1761046783,1761047039,1761047295,1761047551,1761050111,1761050367,1761056767,1761057023,1761057279,1761057791,1761058815,1761067007,1761075199,1761083391,1761087487,1761095679,1761103871,1761107967,1761108991,1761110015,1761111039,1761116159,1761120255,1761124351,1761128447,1761132543,1761136639,1761144831,1761148927,1761150975,1761151743,1761152255,1761155071,1761156351,1761156607,1761157119,1761158143,1761158399,1761163007,1761163263,1761164287,1761164799,1761182719,1761183231,1761184767,1761185791,1761197823,1761198079,1761214463,1761221375,1761221631,1761222143,1761222399,1761222655,1761227775,1761229311,1761230847,1761239039,1761241599,1761241855,1761242111,1761242367,1761255423,1761255679,1761255935,1761256191,1761256447,1761256703,1761256959,1761257215,1761257471,1761257727,1761258239,1761258495,1761258751,1761259007,1761259519,1761259775,1761260031,1761260287,1761260543,1761261055,1761261311,1761261567,1761261823,1761262335,1761262591,1761263103,1761263359,1761265663,1761266687,1761267711,1761271807,1761288191,1761292287,1761301247,1761301503,1761302527,1761302783,1761304063,1761304319,1761304575,1761308671,1761316863,1761320959,1761325055,1761326079,1761338367,1761338623,1761346047,1761346303,1761347071,1761347327,1761348863,1761349119,1761350143,1761350399,1761350655,1761350911,1761351167,1761352191,1761352447,1761352703,1761352959,1761353215,1761353471,1761354239,1761354495,1761356543,1761356799,1761357311,1761357567,1761360383,1761360639,1761360895,1761361407,1761361663,1761364735,1761364991,1761366271,1761366527,1761368575,1761368831,1761370367,1761370623,1761370879,1761371135,1761373183,1761373439,1761374719,1761374975,1761375231,1761375487,1761375999,1761376255,1761376767,1761377535,1761377791,1761378047,1761378303,1761378559,1761378815,1761379327,1761379583,1761381631,1761381887,1761382143,1761382399,1761382655,1761382911,1761383167,1761383935,1761384191,1761386239,1761386495,1761387007,1761387263,1761387775,1761388031,1761388287,1761388543,1761389311,1761390591,1761390847,1761391359,1761391615,1761392639,1761392895,1761393663,1761393919,1761394175,1761394431,1761396479,1761396735,1761398271,1761398527,1761398783,1761399039,1761400831,1761401343,1761403135,1761403391,1761403647,1761404671,1761404927,1761405183,1761405439,1761406463,1761406719,1761407231,1761407487,1761408767,1761409023,1761409535,1761409791,1761410047,1761410303,1761410559,1761411327,1761411583,1761412095,1761412351,1761413119,1761413375,1761413887,1761414399,1761414911,1761415167,1761418495,1761419007,1761420543,1761420799,1761421055,1761421311,1761423103,1761423359,1761425663,1761426175,1761427199,1761427455,1761428223,1761428479,1761430527,1761430783,1761435391,1761435647,1761435903,1761436415,1761436671,1761437951,1761438207,1761438975,1761439231,1761439487,1761439743,1761439999,1761445375,1761445631,1761445887,1761446143,1761446399,1761446911,1761447423,1761447679,1761447935,1761448703,1761449215,1761449727,1761449983,1761451519,1761451775,1761452031,1761453311,1761453567,1761453823,1761454335,1761454847,1761455103,1761455615,1761455871,1761456127,1761456383,1761456895,1761457151,1761457663,1761457919,1761458943,1761459199,1761460223,1761460479,1761461247,1761461503,1761461759,1761462271,1761462527,1761463295,1761463551,1761464063,1761464319,1761465087,1761465343,1761465599,1761465855,1761466367,1761466623,1761466879,1761467135,1761474559,1761474815,1761475071,1761475327,1761478655,1761479679,1761484799,1761485823,1761488895,1761489919,1761497087,1761499135,1761501183,1761501695,1761509119,1761509375,1761513215,1761513471,1761515519,1761517567,1761519615,1761521663,1761522687,1761523711,1761525759,1761526015,1761526271,1761526783,1761527807,1761529855,1761530367,1761544191,1761544703,1761544959,1761546239,1761550335,1761550591,1761551359,1761552383,1761554431,1761555455,1761556735,1761556991,1761557247,1761557503,1761557759,1761558527,1761560575,1761574911,1761576959,1761581055,1761583103,1761587199,1761587711,1761588223,1761589247,1761595391,1761596415,1761599231,1761599487,1761599743,1761601535,1761602559,1761606655,1761607679,1762656255,1762660351,1762661375,1762661887,1762662399,1762662911,1762664447,1762664959,1762665471,1762684927,1762689023,1762691071,1762693119,1762695167,1762701311,1762703359,1762705407,1762764799,1762766847,1762768895,1762770943,1762783231,1762791423,1762795519,1762799615,1762803711,1762820095,1762824191,1762865151,1762869247,1762942975,1762947071,1762951167,1762955263,1762983935,1763000319,1763008511,1763016703,1763024895,1763033087,1763041279,1763049471,1763074047,1763082239,1763090431,1763131391,1763139583,1763172351,1763180543,1763213311,1763215359,1763221503,1763229695,1763270655,1763278847,1763287039,1763288063,1763288319,1763295231,1763311615,1763319807,1763327999,1763336191,1763344383,1763352575,1763385343,1763393535,1763401727,1763402751,1763403263,1763403775,1763404287,1763405823,1763407359,1763408383,1763409407,1763409919,1763410431,1763411455,1763412991,1763415039,1763415551,1763419647,1763420159,1763423743,1763424255,1763424767,1763425791,1763429887,1763438591,1763442687,1763446783,1763450879,1763459071,1763463167,1763475455,1763479551,1763483647,1763504127,1763508223,1763524607,1763532799,1763545087,1763549183,1763553279,1763565567,1763569663,1763573759,1763577855,1763581951,1763586047,1763590143,1763598335,1763602431,1763606527,1763610623,1763614719,1763631103,1763635199,1763639295,1763655679,1763661823,1763688447,1763694591,1763704831,1764753407,1765801983,1766850559,1767899135,1768947711,1769996287,1772093439,1772617727,1773142015,1773207551,1773273087,1773305855,1773338623,1773346815,1773404159,1773666303,1773928447,1774190591,1775239167,1776680959,1776812031,1776877567,1776943103,1777008639,1777041407,1777045503,1777049599,1777053695,1777057791,1777061887,1777063935,1777065983,1777069823,1777070079,1777074175,1777205247,1777336319,1778384895,1778385151,1778385407,1778393087,1778396159,1778397183,1778397695,1778398207,1778399231,1778400255,1778400767,1778401279,1778417663,1778450431,1778515967,1778603007,1778603263,1779040255,1779073023,1779105791,1781727231,1781792767,1782579199,1782710271,1782841343,1783103487,1783234559,1783365631,1783627775,1784676351,1785200639,1785462783,1786773503,1790585855,1790586111,1790640127,1790640383,1790967807,1793064959,1794113535,1795162111,1795555327,1795555583,1795555839,1795556351,1795556607,1795557375,1795557887,1795558143,1795558655,1795559423,1795559679,1795559935,1795560191,1795563519,1795564031,1795564799,1795565567,1795566591,1795567359,1795571711,1795590143,1795590399,1795591167,1795592191,1795593727,1795595775,1795596287,1795598847,1795599103,1795603455,1804865279,1804865535,1805009919,1805010431,1805010687,1805010943,1805016319,1805016575,1805017087,1805021183,1805021439,1805021695,1805021951,1805022463,1805022719,1805024767,1805025279,1805034751,1805035007,1805036031,1805036287,1805037055,1805037311,1805037823,1805038079,1805038591,1805049855,1805058047,1805091839,1805092095,1805092607,1805092863,1805094399,1805094655,1805097471,1805097727,1805101311,1805101567,1805105663,1805105919,1805107199,1805107455,1805107711,1805108991,1805111295,1805119999,1805120511,1805123071,1805123327,1805123583,1805144063,1805148159,1805150463,1805150719,1805189119,1805254655,1805255167,1805255423,1805255679,1805255935,1805257471,1805257727,1805257983,1805258751,1805259007,1805259263,1805259519,1805259775,1805260031,1805260287,1805260543,1805260799,1805261055,1805261311,1805261567,1805261823,1805262079,1805262335,1805262591,1805262847,1805263103,1805263359,1805263615,1805263871,1805264383,1805264895,1805265663,1805265919,1805266175,1805266431,1805266687,1805266943,1805267199,1805268223,1805268479,1805269247,1805269503,1805269759,1805270015,1805270527,1805271295,1805271807,1805272063,1805272319,1805272575,1805272831,1805273087,1805273343,1805273599,1805273855,1805274623,1805274879,1805276415,1805276671,1805276927,1805277183,1805277439,1805277695,1805277951,1805278463,1805278719,1805278975,1805279487,1805279743,1805279999,1805280255,1805280767,1805281023,1805281279,1805281535,1805281791,1805282303,1805283327,1805285375,1805285631,1805286143,1805286399,1805286655,1805287167,1805287423,1805287679,1805287935,1805288191,1805288447,1805288703,1805288959,1805289727,1805290495,1805291263,1805292031,1805292543,1805293055,1805293567,1805294335,1805296127,1805297919,1805299711,1805302271,1805302527,1805302783,1805303039,1805303295,1805303551,1805304575,1805304831,1805305087,1805305343,1805305599,1805306367,1805306623,1805307391,1805307647,1805308159,1805308415,1805308927,1805309951,1805310463,1805311231,1805311487,1805311743,1805311999,1805312255,1805312511,1805312767,1805313279,1805316095,1805316351,1805317375,1805317631,1805318143,1805318399,1805318655,1805318911,1805319167,1805319423,1805321215,1805321471,1805321727,1805321983,1805322495,1805322751,1805323007,1805323263,1805323775,1805324031,1805324287,1805324543,1805324799,1805325055,1805325311,1805325567,1805325823,1805326079,1805326591,1805326847,1805327103,1805327359,1805327615,1805327871,1805328127,1805328383,1805328639,1805328895,1805329151,1805329407,1805329663,1805329919,1805330431,1805330943,1805331967,1805332479,1805332735,1805332991,1805333247,1805334015,1805334271,1805335039,1805335295,1805335551,1805335807,1805336063,1805336319,1805336575,1805336831,1805337087,1805339391,1805339647,1805339903,1805344511,1805344767,1805345279,1805345535,1805346303,1805346559,1805346815,1805348095,1805348351,1805348607,1805349375,1805349631,1805351423,1805351679,1805352191,1805352447,1805532671,1805533183,1805537279,1805537535,1805582335,1805647871,1805713407,1805717503,1805721599,1805723647,1805727743,1805733887,1805737983,1805742079,1805752319,1805752575,1805752831,1805753087,1805910527,1805910783,1805911551,1805912063,1805915903,1805916159,1805916927,1805917183,1805918463,1805918719,1805920511,1805920767,1805921279,1805921535,1805922815,1805923071,1805923327,1805923583,1805924351,1805924607,1805925119,1805925375,1805925887,1805926655,1805926911,1805927167,1805927423,1805928959,1805929215,1805930495,1805931007,1805931519,1805931775,1805932287,1805932543,1805933055,1805933311,1805933567,1805933823,1805934847,1805935103,1805935359,1805935615,1805937663,1805937919,1805938175,1805938431,1805939199,1805939455,1805940479,1805940735,1805941247,1805941503,1805942271,1805942527,1805944319,1805944575,1805949695,1805949951,1805950719,1805950975,1805951743,1805951999,1805952255,1805952511,1805956607,1805956863,1805957119,1805957375,1805957631,1805959167,1805959679,1805960191,1805960447,1805962239,1805962495,1805964799,1805965055,1805965567,1805965823,1805974271,1805974783,1805976319,1805976575,1805977599,1805977855,1805980159,1805980415,1805981183,1805981439,1805983231,1805983487,1805983999,1805984255,1805986559,1805986815,1805987839,1805988095,1805993215,1805993471,1805996543,1805996799,1805997055,1805997311,1806000639,1806000895,1806002431,1806002687,1806002943,1806003199,1806003711,1806003967,1806005247,1806005503,1806006271,1806006527,1806007295,1806007551,1806009087,1806009599,1806012927,1806013183,1806018559,1806018815,1806020095,1806020351,1806024959,1806025215,1806025471,1806025727,1806025983,1806026239,1806028799,1806029311,1806031103,1806031359,1806035455,1806035711,1806151679,1806155775,1806170111,1806172159,1806303231,1806401535,1806434303,1806680319,1806680575,1806696447,1806827519,1806841599,1806841855,1806925823,1806958591,1806993407,1806993919,1806994431,1807040511,1807044607,1807054079,1807054335,1807055871,1807056127,1807056895,1807058687,1807058943,1807059199,1807059455,1807059967,1807060991,1807061503,1807062527,1807062783,1807063807,1807064063,1807065087,1807069439,1807069695,1807070207,1807070463,1807072255,1807073023,1807118335,1807122431,1807122687,1807122943,1807123455,1807124479,1807155199,1807187967,1807220735,1807353855,1807354111,1807355903,1807356159,1807360255,1807360511,1807362303,1807362559,1807373567,1807373823,1807374079,1807374591,1807376895,1807377407,1807381247,1807381503,1807381759,1807382015,1807383551,1807383807,1807385087,1807385343,1807387135,1807387391,1807387647,1807387903,1807388159,1807388415,1807389183,1807389439,1807390463,1807390719,1807391999,1807392255,1807393023,1807393279,1807394559,1807394815,1807395839,1807396095,1807397375,1807397631,1807397887,1807398143,1807398655,1807398911,1807400191,1807400447,1807401471,1807401727,1807402239,1807402495,1807403007,1807403263,1807405311,1807405567,1807407359,1807407615,1807408383,1807408639,1807408895,1807409151,1807414783,1807415039,1807417087,1807417343,1807427071,1807427327,1807427583,1807432447,1807432703,1807442431,1807442687,1807444735,1807444991,1807461119,1807461375,1807548415,1807551487,1807551743,1807552255,1807555583,1807556607,1807597567,1807646719,1807654911,1807659007,1807691263,1807691775,1807692799,1807693311,1807693823,1807694335,1807694847,1807695359,1807695871,1807696895,1807697151,1807732735,1807736831,1815822335,1815826431,1815871487,1815875583,1815879679,1815912447,1815920639,1815928831,1815937023,1815961599,1815961855,1815962111,1815962623,1815963135,1815963391,1815963647,1815963903,1815964159,1815965695,1815966207,1815966719,1815966975,1815967231,1815967999,1815968255,1815968767,1815969279,1815969791,1815977983,1815979007,1815980031,1815980543,1815981055,1815982079,1815982591,1815983103,1815984127,1815984639,1815985151,1815985663,1815985919,1815987199,1815987711,1815988223,1815988735,1815990271,1815990783,1815991295,1815991807,1815993599,1815993855,1815994111,1815994367,1815994623,1815994879,1815995135,1815995391,1815995903,1815996159,1815996671,1815996927,1815997695,1815997951,1815999999,1816000511,1816001023,1816001279,1816001535,1816001791,1816002303,1816068095,1816133631,1820327935,1820852223,1820983295,1820994303,1820998143,1821017343,1821021183,1821028863,1821036543,1821044223,1821063423,1821071103,1821086463,1821090303,1821097983,1821101823,1821102079,1821102335,1821102591,1821102847,1821103359,1821103615,1821104127,1821104383,1821105151,1821105407,1821105919,1821106431,1821107455,1821108223,1821114367,1821179903,1821310975,1822162943,1822165759,1822169599,1822177279,1822181119,1822227199,1822234879,1822238719,1822250239,1822261759,1822273279,1822280959,1822288639,1822288895,1822289151,1822289663,1822290687,1822290943,1822291199,1822291711,1822292479,1822296319,1822300159,1822303999,1822311679,1822319359,1822323199,1822338559,1822346239,1822350079,1822365439,1822366975,1822367487,1822367743,1822367999,1822368255,1822368511,1822369023,1822369279,1822369791,1822370047,1822371071,1822371327,1822371583,1822371839,1822372095,1822372351,1822372607,1822372863,1822373119,1822380799,1822381311,1822381823,1822382079,1822382335,1822382591,1822383103,1822383615,1822383871,1822384127,1822384383,1822384639,1822392319,1822393343,1822393855,1822395391,1822395647,1822396159,1822396415,1822397439,1822398207,1822398463,1822398719,1822399743,1822399999,1822400511,1822401023,1822401279,1822401791,1822402047,1822403327,1822405119,1822405887,1822408447,1822409215,1822409727,1822409983,1822410495,1822413055,1822413567,1822429183,1822433279,1822445567,1822451199,1822451455,1822451711,1822457855,1822461951,1822486527,1822490623,1822498815,1822502911,1822519295,1822523391,1822531583,1822535679,1822553855,1822554111,1822572543,1822605311,1822612479,1822612991,1822614015,1822614527,1822615039,1822617343,1822618367,1822619391,1822620415,1822654463,1822670847,1822760959,1822761215,1822761471,1822761727,1822764287,1822764543,1822765567,1822765823,1822766079,1822766847,1822767103,1822767871,1822768127,1822769151,1822769407,1822769919,1822770175,1822772991,1822773247,1822773503,1822773759,1822774015,1822774271,1822774783,1822775295,1822775807,1822776063,1822776319,1822776831,1822777087,1822777599,1822777855,1822778111,1822778367,1822779135,1822779391,1822779647,1822780159,1822780415,1822780927,1822781183,1822782463,1822782719,1822782975,1822783231,1822783487,1822784511,1822784767,1822785023,1822785279,1822785535,1822785791,1822786047,1822786303,1822786559,1822787071,1822787327,1822787839,1822788095,1822788351,1822788607,1822788863,1822789119,1822789375,1822789631,1822790143,1822790655,1822790911,1822791167,1822791679,1822791935,1822792191,1822792703,1822792959,1822793215,1822793471,1822794751,1822795007,1822795775,1822796031,1822797055,1822797311,1822798591,1822798847,1822802943,1822803199,1822803455,1822803711,1822803967,1822804223,1822804479,1822804735,1822806015,1822806271,1822806527,1822807039,1822807295,1822807551,1822807807,1822808063,1822809087,1822809343,1822810111,1822810367,1822811391,1822811647,1822816255,1822816511,1822817279,1822817791,1822834943,1822835711,1822835967,1822836479,1822836735,1822837503,1822837759,1822839039,1822839295,1822839551,1822840319,1822841343,1822841855,1822842111,1822842623,1822842879,1822949375,1822982143,1823113215,1823129599,1823140351,1823140607,1823142399,1823142655,1823162367,1823170559,1823191039,1823191295,1823192319,1823192575,1823192831,1823193087,1823194111,1823211519,1823342591,1823346687,1823350783,1823361791,1823362303,1823375359,1823379455,1823381759,1823382015,1823383551,1823387647,1823428607,1823432703,1823440895,1823444991,1823465471,1823469567,1823539455,1823539711,1823618815,1823619071,1823686655,1823703039,1823735807,1823801343,1823813631,1823813887,1823814143,1823815167,1823816191,1823816703,1823816959,1823817215,1823817727,1823818239,1823818751,1823819263,1823819775,1823823871,1823832063,1823832319,1823832575,1823835135,1823836159,1823837183,1823838207,1823839231,1823865343,1823865599,1823866367,1823866623,1828716543,1830813695,1831337983,1831862271,1832124415,1832386559,1832648703,1832681471,1832714239,1832715263,1832716287,1832718335,1832719359,1832722431,1832722687,1832724735,1832724991,1832726527,1832734719,1832734975,1832735231,1832735487,1832735743,1832735999,1832736255,1832736511,1832736767,1832737023,1832737279,1832737535,1832738303,1832738559,1832738815,1832740863,1832742911,1832744959,1832747007,1832779775,1832797439,1832797695,1832812543,1832845311,1832878079,1832910847,1833172991,1833177087,1833179135,1833181183,1833183231,1833185279,1833187583,1833187839,1833188095,1833189119,1833189375,1833190143,1833190399,1833190911,1833191423,1833193471,1833195519,1833197567,1833199615,1833201663,1833203711,1833205759,1833207807,1833209855,1833211903,1833213951,1833215999,1833218047,1833220095,1833222143,1833223167,1833224191,1833228287,1833232383,1833234431,1833236479,1833238527,1833240575,1833242623,1833246719,1833248767,1833250815,1833252863,1833253887,1833254911,1833256959,1833259007,1833261055,1833263103,1833265151,1833266687,1833266943,1833267199,1833269247,1833271295,1833273343,1833275391,1833277439,1833279487,1833281535,1833283583,1833285631,1833289727,1833291775,1833293823,1833295871,1833297919,1833299967,1833302015,1833304063,1833308159,1833310207,1833312255,1833314303,1833315327,1833315583,1833315839,1833316351,1833318399,1833320447,1833320959,1833321471,1833322495,1833324543,1833326591,1833327359,1833327615,1833328639,1833330687,1833331455,1833331711,1833332735,1833334783,1833336831,1833337855,1833338879,1833341183,1833341439,1833342207,1833342463,1833342975,1833345023,1833347071,1833349119,1833351167,1833353215,1833355263,1833357311,1833359359,1833361407,1833363455,1833364479,1833364735,1833364991,1833365247,1833365503,1833367551,1833369599,1833371647,1833373695,1833377791,1833379839,1833381887,1833383935,1833385983,1833388031,1833389055,1833389311,1833389567,1833389823,1833390079,1833391871,1833392127,1833396223,1833398271,1833400319,1833402367,1833406463,1833408511,1833409535,1833410559,1833412607,1833414655,1833416703,1833418751,1833422847,1833424895,1833426943,1833428991,1833431039,1833431295,1833432063,1833432319,1833432575,1833432831,1833433087,1833434111,1833434879,1833435135,1833439231,1833443327,1833447423,1833451519,1833455615,1833459711,1833463807,1833464063,1833464319,1833465343,1833465599,1833465855,1833466367,1833466623,1833466879,1833467903,1833469439,1833469951,1833470463,1833471999,1833474047,1833475071,1833476095,1833480191,1833484287,1833488383,1833492479,1833504767,1833508863,1833512959,1833517055,1833521151,1833525247,1833529343,1833533439,1833534463,1833535487,1833536511,1833537535,1833541631,1833541887,1833542143,1833543167,1833543423,1833545727,1833549823,1833553919,1833558015,1833562111,1833566207,1833570303,1833571327,1833572351,1833573375,1833574399,1833578495,1833582591,1833586687,1833590783,1833594879,1833603071,1833607167,1833611263,1833615359,1833619455,1833623551,1833625599,1833627647,1833631743,1833635839,1833639935,1833644031,1833648127,1833652223,1833660415,1833664511,1833668607,1833672703,1833676799,1833680895,1833684991,1833689087,1833692415,1833692671,1833693183,1833697279,1833959423,1834090495,1834221567,1834352639,1834483711,1834614783,1834745855,1834876927,1834885119,1834893311,1834901503,1834903551,1834904575,1834905087,1834905343,1834909695,1834913791,1834918143,1834918655,1834918911,1834919935,1834920191,1834920959,1834921215,1834921727,1834921983,1834930175,1834930431,1834930687,1834931199,1834932223,1834932991,1834933247,1834934271,1834938367,1834944511,1834946559,1834948607,1834950655,1834956799,1834957055,1834957311,1834957567,1834957823,1834960895,1834964991,1834967039,1834971135,1834973183,1834974207,1834975231,1834977279,1834983423,1834985471,1834989567,1834991615,1834993663,1834995711,1835001855,1835003903,1835005951,1835007999,1835532287,1835540479,1835548671,1835565055,1835569663,1835570175,1835571199,1835571455,1835571711,1835571967,1835572223,1835573247,1835581439,1835589631,1835597823,1835606015,1835614207,1835622399,1835623423,1835623935,1835624191,1835624447,1835624703,1835625471,1835625727,1835625983,1835626239,1835626751,1835627263,1835627519,1835630079,1835630591,1835635199,1835638527,1835638783,1835646975,1835647231,1835647487,1835647743,1835647999,1835648255,1835648511,1835648767,1835649023,1835651071,1835653119,1835655167,1835663359,1835663615,1835663871,1835664383,1835665407,1835666431,1835667455,1835668479,1835669503,1835670527,1835671551,1835679743,1835687935,1835696127,1835704319,1835712511,1835720703,1835724799,1835726847,1835727871,1835728895,1835737087,1835745279,1835753471,1835761663,1835761919,1835762175,1835762431,1835762687,1835762943,1835763199,1835763455,1835763711,1835763967,1835764223,1835764479,1835764735,1835764991,1835766015,1835766271,1835766527,1835767039,1835767295,1835767551,1835767807,1835768063,1835768319,1835768575,1835768831,1835769087,1835769343,1835769599,1835769855,1835770111,1835770367,1835770879,1835771903,1835772415,1835772671,1835772927,1835774975,1835775231,1835775487,1835775743,1835775999,1835777023,1835777535,1835777791,1835778047,1835786239,1835794431,1835802623,1835810815,1835819007,1835827199,1835835391,1835843583,1835851775,1835859967,1835868159,1835876351,1835884543,1835892735,1835909119,1835909375,1835913215,1835917311,1835925503,1835933695,1835941887,1835950079,1835958271,1835966463,1835966719,1835966975,1835968511,1835969023,1835969279,1835969535,1835970047,1835970303,1835970559,1835970815,1835971583,1835971839,1835972095,1835972351,1835972607,1835972863,1835973119,1835973375,1835973631,1835974143,1835974655,1835982847,1835991039,1835999231,1835999487,1835999743,1836000511,1836001535,1836002303,1836002559,1836003327,1836004351,1836006399,1836007423,1836015615,1836023807,1836040191,1836048383,1836056575,1836580863,1836597247,1836598015,1836605439,1836606463,1836611583,1836613631,1836621823,1836625919,1836626943,1836627967,1836628479,1836628735,1836628991,1836630015,1836646399,1836654591,1836654847,1836655359,1836655615,1836655871,1836656127,1836656383,1836657663,1836657919,1836658175,1836658431,1836678911,1836679167,1836684031,1836684287,1836687359,1836688127,1836688895,1836689151,1836711935,1836722175,1836722431,1836722687,1836722943,1836723711,1836724223,1836726271,1836728319,1836744703,1836746751,1836747007,1836761087,1836761599,1836761855,1836762111,1836762367,1836762879,1836763135,1836763391,1836763647,1836763903,1836764159,1836764415,1836764671,1836764927,1836765183,1836765439,1836765695,1836765951,1836766463,1836766719,1836766975,1836767231,1836767487,1836767743,1836767999,1836768767,1836769023,1836769279,1836776959,1836777471,1836793855,1836794367,1836794623,1836797951,1836798207,1836803583,1836803839,1836810239,1836826623,1836834815,1836835327,1836835583,1836835839,1836836095,1836836351,1836836607,1836836863,1836838911,1836839167,1836841727,1836841983,1836843007,1836875775,1836892159,1836908543,1836924927,1836941311,1836957695,1836974079,1836990463,1837006847,1837023231,1837039615,1837055999,1837072383,1837088767,1837105151,1838153727,1839202303,1839205119,1839205375,1839235071,1839267839,1839300607,1839333375,1839366143,1839398911,1839431679,1839448063,1839450111,1839452159,1839454207,1839456255,1839456511,1839456767,1839459327,1839460351,1839462399,1839464447,1839497215,1839529983,1839562751,1839595519,1839603711,1839604735,1839605503,1839609855,1839618047,1839628287,1839661055,1839693823,1839726591,1839759359,1839792127,1839808255,1839808511,1839810559,1839810815,1839812607,1839812863,1839816703,1839822847,1839824895,1839890431,1839923199,1839955967,1839988735,1839990783,1839991039,1839991295,1839992831,1839993599,1839994111,1839994367,1839994623,1839994879,1839996415,1839996671,1839996927,1839997951,1839998207,1839998463,1839998975,1840002559,1840003071,1840008703,1840008959,1840009727,1840010239,1840010751,1840012031,1840012287,1840013311,1840014591,1840014847,1840018431,1840018943,1840019455,1840020479,1840020735,1840021247,1840021503,1840054271,1840087039,1840119807,1840152575,1840185343,1840218111,1840232447,1840232703,1840257535,1840257791,1840304127,1840304383,1840304639,1840304895,1840312319,1840312575,1840312831,1840313343,1840313855,1840314111,1840314367,1840314623,1840314879,1840315135,1840315647,1840315903,1840316415,1840381951,1840447487,1840513023,1840644095,1840709631,1840775167,1840840703,1840906239,1840971775,1841102847,1841168383,1841233919,1841299455,1841430527,1841561599,1841565695,1841569791,1841577983,1841582079,1841586175,1841588223,1841588479,1841588735,1841588991,1841589247,1841589503,1841589759,1841590015,1841590271,1841594367,1841598463,1841602559,1841603583,1841604607,1841605631,1841606399,1841606655,1841610751,1841618943,1841627135,1841629183,1841635327,1841639423,1841641471,1841645567,1841647615,1841649663,1841651711,1841653759,1841655807,1841668095,1841668607,1841669119,1841669375,1841669631,1841670143,1841672191,1841674239,1841676287,1841680383,1841682431,1841684479,1841686527,1841688575,1841690623,1841692671,1841700863,1841709055,1841725439,1841733631,1841758207,1841766399,1841774591,1841782783,1841790975,1841799167,1841807359,1841815551,1841823743,1841831935,1841840127,1841844223,1841848319,1841864703,1841872895,1841873407,1841873919,1841874431,1841874943,1841876991,1841878015,1841879039,1841880063,1841881087,1841889279,1841897471,1841905663,1841922047,1841930239,1841938431,1841946623,1841954815,1841971199,1841979391,1841983487,1841983999,1841984255,1841984511,1841985023,1841985279,1841985535,1841987583,1841995775,1842003967,1842012159,1842020351,1842028543,1842036735,1842042879,1842044927,1842053119,1842061311,1842061823,1842062079,1842062335,1842062591,1842062847,1842063103,1842063359,1842069503,1842077695,1842079743,1842085887,1842118655,1842151423,1842153471,1842153983,1842154495,1842155007,1842155263,1842155519,1842157567,1842159615,1842161663,1842163711,1842165759,1842166527,1842166783,1842167039,1842167551,1842167807,1842169855,1842171903,1842173951,1842175999,1842178047,1842180095,1842182143,1842184191,1842188287,1842190335,1842192383,1842194431,1842196479,1842198527,1842198783,1842199039,1842199295,1842199551,1842199807,1842200063,1842200319,1842200575,1842201343,1842201599,1842202111,1842202367,1842202623,1842204671,1842205183,1842205439,1842205695,1842205951,1842206207,1842206463,1842206719,1842208767,1842210815,1842212863,1842213375,1842213631,1842213887,1842214143,1842214399,1842214655,1842214911,1842216959,1842225151,1842233343,1842241535,1842249727,1842257919,1842266111,1842274303,1842275327,1842276351,1842277375,1842277631,1842277887,1842278143,1842278399,1842278655,1842278911,1842279167,1842279423,1842280447,1842281471,1842282495,1842286591,1842290687,1842294783,1842298879,1842299903,1842300927,1842301951,1842302975,1842307071,1842311167,1842315263,1842315519,1842316031,1842316543,1842316799,1842317311,1842317823,1842318335,1842318847,1842319359,1842323455,1842325503,1842327551,1842331647,1842335743,1842339839,1842343935,1842348031,1843396607,1843412991,1843429375,1843458559,1843458815,1843459071,1843462143,1843478527,1843494911,1843511295,1843527679,1843544063,1843560447,1843576831,1843593215,1843609599,1843625983,1843642367,1843658751,1843675135,1843691519,1843707903,1843724287,1843732479,1843765247,1843773439,1843781631,1843789823,1843806207,1843814399,1843818495,1843822591,1843838975,1843839487,1843839743,1843839999,1843840255,1843840767,1843841023,1843841279,1843841791,1843842047,1843843071,1843843327,1843843583,1843843839,1843844095,1843844351,1843844607,1843844863,1843845119,1843845631,1843845887,1843846143,1843846399,1843846655,1843846911,1843847167,1843851263,1843851775,1843852031,1843852287,1843852799,1843853311,1843853823,1843854079,1843854335,1843855359,1843871743,1843888127,1843904511,1843920895,1843922943,1843924991,1843927039,1843929087,1843931135,1843933183,1843935231,1843937279,1843939327,1843941375,1843943423,1843945471,1843947519,1843949567,1843951615,1843955711,1843957759,1843959807,1843961855,1843962367,1843962879,1843963903,1843965951,1843967487,1843967999,1843970047,1843972095,1843974143,1843976191,1843978239,1843980287,1843982335,1843984383,1843986431,1843988479,1843990527,1843992575,1843992831,1843994623,1843996671,1844000767,1844002047,1844002303,1844002815,1844006911,1844008959,1844011007,1844013055,1844014079,1844015103,1844017151,1844021247,1844025343,1844027391,1844029439,1844031487,1844031743,1844032255,1844033535,1844034047,1844035583,1844037631,1844039167,1844039423,1844041727,1844043775,1844049919,1844051967,1844054015,1844056063,1844058111,1844060159,1844062207,1844064255,1844068351,1844070399,1844070655,1844070911,1844071167,1844071423,1844071679,1844071935,1844072191,1844072447,1844076543,1844078591,1844080639,1844082687,1844084735,1844086783,1844088831,1844090879,1844092927,1844094975,1844099071,1844101119,1844105215,1844107263,1844109311,1844109567,1844111359,1844113407,1844115455,1844117503,1844119551,1844121599,1844123647,1844125695,1844127743,1844129791,1844131839,1844133887,1844135935,1844137983,1844140031,1844142079,1844142847,1844143103,1844144127,1844146175,1844148223,1844150271,1844152319,1844154367,1844155903,1844156159,1844156415,1844158463,1844160511,1844162559,1844164607,1844166655,1844168703,1844168959,1844169471,1844169727,1844169983,1844170751,1844174847,1844178943,1844180991,1844183039,1844187135,1844191231,1844195327,1844196351,1844197375,1844198399,1844198911,1844199423,1844203519,1844207615,1844211711,1844215807,1844219903,1844223743,1844223999,1844226047,1844228095,1844232191,1844232447,1844232703,1844232959,1844233215,1844233471,1844233727,1844233983,1844234239,1844234751,1844235007,1844235263,1844235519,1844235775,1844236031,1844236287,1844252671,1844255743,1844255999,1844256767,1844260863,1844264959,1844269055,1844273151,1844275199,1844275455,1844277247,1844281343,1844285439,1844289535,1844293631,1844297727,1844301823,1844305919,1844310015,1844318207,1844322303,1844326399,1844330495,1844334591,1844337407,1844337663,1844342783,1844346879,1844350975,1844355071,1844357119,1844359167,1844363263,1844363519,1844363775,1844364287,1844364799,1844365311,1844365567,1844365823,1844366079,1844366335,1844366591,1844366847,1844367103,1844367359,1844371455,1844375551,1844379647,1844383743,1844387839,1844391935,1844392959,1844393215,1844393471,1844393727,1844393983,1844394239,1844394751,1844395007,1844395263,1844395775,1844396031,1844400127,1844408319,1844412415,1844413439,1844413695,1844414207,1844414463,1844414719,1844414975,1844415487,1844415743,1844416255,1844416511,1844420607,1844424703,1844428799,1844432895,1844436991,1844441087,1844445183,1844510719,1844576255,1844641791,1844707327,1844772863,1844826879,1844827135,1844838399,1844871167,1844903935,1844969471,1844971519,1844971775,1844972031,1844973567,1844976639,1844977663,1844977919,1844980223,1844980479,1844980735,1844982271,1844982527,1844983807,1844984063,1845003007,1845003263,1845006335,1845006591,1845007871,1845008383,1845010431,1845012991,1845013247,1845020159,1845020671,1845022719,1845023743,1845023999,1845024255,1845024767,1845025535,1845025791,1845026303,1845028607,1845028863,1845029375,1845029887,1845030143,1845031935,1845032191,1845033727,1845033983,1845034495,1845034751,1845035007,1845100543,1845166079,1845231615,1845297151,1845362687,1845396223,1845399039,1845428223,1845493759,1845755903,1845764095,1845766143,1845768191,1845772287,1845788671,1845837823,1845839871,1845841919,1845846015,1845850111,1845851135,1845852159,1845854207,1845886975,1846018047,1846542335,1846804479,1847066623,1847590911,1847721983,1847730175,1847732223,1847734271,1847735295,1847736319,1847754751,1847757567,1847757823,1847760639,1847760895,1847762431,1847762687,1847763455,1847763711,1847763967,1847764223,1847764479,1847764991,1847768063,1847768575,1847768831,1847771135,1847778303,1847779327,1847787519,1847803903,1847807999,1847810047,1847812095,1847853055,1848115199,1848377343,1848378367,1848378623,1848378879,1848379135,1848379391,1848380415,1848381439,1848382463,1848383487,1848385535,1848393727,1848401919,1848404991,1848405503,1848406015,1848410111,1848414207,1848418303,1848420351,1848422399,1848424447,1848426495,1848639487,1848705023,1848770559,1848774655,1848776703,1848778751,1848786943,1848791039,1848793087,1848803327,1848819711,1848827903,1848831999,1848836095,1849032703,1849065471,1849163775,1849819135,1849950207,1850212351,1850343423,1850376191,1850392575,1850400767,1850408959,1850490879,1850507263,1850508287,1850509311,1850510335,1850511359,1850513407,1850514431,1850515455,1850519551,1850520575,1850521599,1850522623,1850523647,1850572799,1850629631,1850630143,1850671103,1850736639,1851523071,1851527167,1851528191,1851529215,1851529727,1851529983,1851531263,1851539455,1851540479,1851541503,1851542527,1851543551,1851547647,1851555839,1851588607,1851590655,1851591679,1851592703,1851594751,1851596799,1851604991,1851613183,1851617279,1851637759,1851654143,1853882367,1854406655,1854668799,1855455231,1855848447,1855913983,1855979519,1856241663,1856260607,1856260863,1856307199,1856315391,1856323583,1856339967,1856372735,1856503807,1856765951,1856770047,1856772095,1856774143,1856779263,1856780287,1856782335,1856791551,1856798719,1856815103,1856843775,1856847871,1856864255,1856872447,1856876543,1856880639,1856888831,1856892927,1856897023,1857028095,1860173823,1860435967,1860698111,1860706303,1860714495,1860722687,1860723711,1860726783,1860728831,1860733951,1860734975,1860735999,1860737023,1860743167,1860743423,1860743679,1860743935,1860744191,1860745215,1860746239,1860747263,1860759551,1860761599,1860763647,1860829183,1860830207,1860831231,1860832255,1860833279,1860834303,1860835327,1860836351,1860837375,1860839423,1860841471,1860842495,1860843519,1860845567,1860861951,1860863999,1860864255,1860866303,1860866559,1860868095,1860878335,1860888575,1860889087,1860889599,1860890879,1860891135,1860891647,1860891903,1860892159,1860892671,1860894719,1860927487,1860943871,1860951039,1860952063,1860956159,1860960255,1861091327,1861099519,1861107711,1861109759,1861111807,1861115903,1861116159,1861116415,1861117951,1861119999,1861122047,1861123071,1861124095,1861140479,1861148671,1861169151,1861173247,1861181439,1861189631,1861197823,1861201919,1861203967,1861206015,1861210111,1861214207,1861222399,1864285183,1864285695,1864350207,1864350719,1866465279,1866530815,1866563583,1866579967,1866588159,1866592255,1866596351,1866661887,1866670079,1866674175,1866678271,1866686463,1866690559,1866711039,1866715135,1866727423,1866731519,1866733567,1866735615,1866743807,1866745599,1866746111,1866746367,1866746623,1866747903,1866748159,1866748927,1866749183,1866750463,1866750719,1866751999,1866756095,1866760191,1866792959,1866807295,1866807551,1866858495,1866989567,1867513855,1867775999,1867841535,1867907071,1868038143,1868103679,1868201983,1868209151,1868209407,1868209663,1868210175,1868212223,1868214271,1868218367,1868234751,1868267519,1868283903,1868292095,1868294143,1868295167,1868296191,1868300287,1868333055,1868341247,1868345343,1868346111,1868346367,1868347391,1868347647,1868348415,1868349439,1868357631,1868361727,1868362751,1868363775,1868365823,1868431359,1868559359,1868560383,1868562431,1869611007,1870004223,1870036991,1870045183,1870049279,1870053375,1870055423,1870057471,1870058495,1870059519,1870065663,1870070271,1870071807,1870072831,1870073855,1870075135,1870075647,1870077951,1870086143,1870110719,1870118911,1870135295,1870462975,1870479359,1870495743,1870497791,1870499839,1870501887,1870503935,1870512127,1870528511,1873281023,1873412095,1873477631,1873510399,1873543167,1874329599,1874460671,1874591743,1874853887,1876426751,1876557823,1876688895,1876754431,1876756479,1876761599,1876761855,1876762623,1876764671,1876765695,1876766719,1876768767,1876769023,1876769791,1876770815,1876771839,1876785151,1876786175,1876787199,1876885503,1876886527,1876890623,1876893695,1876901887,1876918271,1876934655,1876942847,1876946943,1876947967,1876948991,1876950015,1876951039,1877475327,1877688319,1877691391,1877692415,1877696511,1877704703,1877705727,1877706751,1877707775,1877709823,1877710847,1877711871,1877721087,1877737471,1877999615,1879048191,1881127423,1881127935,1881192959,1881193471,1883504639,1883766783,1883770879,1883783167,1883799551,1883832319,1883840511,1883848703,1884028927,1884159999,1884164095,1884168191,1884172287,1884176383,1884184575,1884186623,1884188671,1884192767,1884204287,1884204543,1884209151,1884217343,1884225535,1884291071,1885863935,1885995007,1886191615,1886195711,1886197503,1886197759,1886199807,1886207999,1886210559,1886210815,1886212351,1886213375,1886214143,1886216191,1886224383,1886257151,1886322687,1886781439,1886978047,1886986239,1886990335,1886994431,1887010815,1887012095,1887012351,1887019007,1887027199,1887043583,1887764479,1887813631,1887830015,1887961087,1887993855,1888026623,1888030719,1888030975,1888031231,1888032767,1888033023,1888033279,1888033535,1888034815,1888038911,1888040959,1888059391,1888063487,1888067583,1888071679,1888073727,1888239615,1888255999,1888256511,1888256767,1888257023,1888257279,1888258047,1888258303,1888259071,1888259327,1888259583,1888259839,1888260095,1888264191,1888266239,1888268287,1888270335,1888271359,1888272383,1888288767,1888354303,1888485375,1891631103,1891893247,1891942399,1891950591,1891958783,1892024319,1892122623,1892155391,1892941823,1893015551,1893017599,1893019647,1893023743,1893027839,1893031935,1893040127,1893072895,1893138431,1893189119,1893189375,1893203967,1893728255,1896480767,1896497151,1896513535,1896546303,1896579071,1896587263,1896591359,1896593407,1896594431,1896595455,1896603647,1896605695,1896606719,1896607743,1896609791,1896611839,1897070591,1897136127,1897140223,1897141247,1897142271,1897143295,1897144319,1897146367,1897147391,1897148415,1897152511,1897160703,1897168895,1897169919,1897170943,1897172991,1897174783,1897175039,1897176063,1897176575,1897176831,1897177087,1897201663,1897209855,1897213951,1897218047,1897222143,1897226239,1897234431,1897242623,1897250815,1897259007,1897260031,1897261055,1897263103,1897264895,1897265151,1897267199,1897365503,1897398271,1897660415,1897725951,1897726207,1897726719,1897727487,1897727743,1897728255,1897728767,1897729023,1897729535,1897729791,1897730047,1897733887,1897734143,1897737983,1897738239,1897738751,1897740799,1897741055,1897742335,1897742591,1897743103,1897743615,1897744383,1897744639,1897744895,1897745151,1897745663,1897746175,1897746431,1897746687,1897746943,1897747199,1897747455,1897747711,1897747967,1897748479,1897750527,1897750783,1897751295,1897751807,1897753343,1897753599,1897753855,1897754111,1897754623,1897757695,1897757951,1897758207,1897758463,1897758719,1897779199,1897781247,1897783295,1897784319,1897784831,1897785087,1897785343,1897787391,1897789439,1897790463,1897791487,1897824255,1897829375,1897829887,1897830399,1897831423,1897832447,1897834495,1897837567,1897838591,1897839615,1897840127,1897840639,1897842687,1897844735,1897846783,1897847807,1897848831,1897849855,1897850879,1897852927,1897857023,1897922559,1898708991,1899233279,1899237375,1899241471,1899249663,1899264767,1899265023,1899266047,1899267071,1899268095,1899270143,1899271167,1899272191,1899272447,1899273215,1899274239,1899282431,1899290623,1899291647,1899292671,1899294719,1899298815,1899364351,1899724799,1899741183,1899749375,1899750399,1899751423,1899753471,1899753727,1899753983,1899754239,1899754495,1899755519,1899755775,1899756799,1899757311,1899757567,1899831295,1899839487,1899849727,1899850751,1899851775,1899855871,1899888639,1904345087,1904361471,1904369663,1904375807,1904376831,1904377855,1904476159,1905262591,1906311167,1907041535,1907041791,1908408319,1908409343,1908409855,1908410879,1908411135,1908412415,1908413439,1908414463,1908414975,1908418559,1908419071,1908419583,1908420095,1908420607,1908420863,1908421119,1908421631,1908422655,1908423167,1908423679,1908424191,1908424703,1908441087,1908473855,1908539391,1908670463,1908735999,1908740095,1908744191,1908746239,1908748287,1908750335,1908752383,1908753407,1908754431,1908756479,1908760575,1908761599,1908763647,1908764671,1908765695,1908765951,1908766207,1908768767,1908801535,1908899839,1908932607,1909129215,1909161983,1909178367,1909182463,1909182719,1909187327,1909187583,1909188095,1909188351,1909192447,1909192703,1909194751,1909456895,1909473279,1909473791,1909474047,1909474303,1909474559,1909474815,1909475327,1909475839,1909477631,1909477887,1909478655,1909478911,1909479167,1909479423,1909481471,1909587967,1909719039,1909735423,1909736447,1909737471,1909738495,1909739007,1909739519,1909741567,1909742591,1909744639,1909745663,1909746687,1909747711,1909751807,1909759999,1909761023,1909761279,1909761791,1909762047,1909764095,1909766143,1909768191,1909784575,1909817343,1909850111,1909981183,1910112255,1912340479,1912602623,1912622591,1912622847,1912875263,1912875519,1912891135,1912891391,1912937215,1912937471,1912964095,1912964351,1912975871,1912976127,1913019903,1913020159,1913061631,1913061887,1913651199,1914109951,1914175487,1914305279,1914305535,1914437631,1914503167,1914544127,1914552319,1914560511,1914563583,1914564607,1914566655,1914567679,1914568703,1914576895,1914580991,1914585087,1914587135,1914589183,1914593279,1914601471,1914634239,1914642431,1914650623,1914652671,1914654719,1914658815,1914660863,1914662911,1914667007,1914683391,1914685183,1914685439,1914685951,1914686463,1914687487,1914688511,1914689535,1914691583,1914695679,1914697727,1914699775,1915748351,1916010495,1916141567,1916272639,1916534783,1916985343,1916985855,1917124607,1917169663,1917181951,1917190143,1917190655,1917190911,1917321215,1917779967,1917796351,1917812735,1917845503,1919680511,1919729663,1919746047,1919811583,1919815679,1919817727,1919819775,1919821055,1919821567,1919821823,1919823871,1919827967,1919844351,1919877119,1919885311,1919891455,1919891711,1919893503,1919909887,1919918079,1919926271,1919942655,1919942911,1919943167,1919947519,1919948287,1919975935,1919976191,1920000511,1920000767,1920002047,1920002559,1920003071,1920008191,1920057343,1920058111,1920070911,1920071167,1920072959,1920073471,1920434175,1920450559,1920466943,1920991231,1921056767,1921058815,1921060863,1921062911,1921064959,1921069055,1921073151,1921089535,1921105919,1921122303,1921187839,1921253375,1921318911,1921384447,1921388543,1921391615,1921400831,1921404927,1921405183,1921405439,1921406463,1921406719,1921406975,1921409023,1921425407,1921431551,1921433087,1921433599,1921449983,1921515519,1921646591,1921777663,1921843199,1921851391,1921853439,1921855487,1921859583,1921861631,1921862143,1921862911,1921863167,1921863423,1921863679,1921865727,1921867775,1921871871,1921873919,1921875967,1921892351,1921892863,1921893119,1921896447,1921898495,1921900543,1921908735,1921943551,1921945599,1921949695,1921950719,1921951743,1921953791,1921957887,1921974271,1922039807,1925447679,1925578751,1925611519,1925619711,1925627903,1925638143,1925638399,1925638911,1925639423,1925639935,1925640191,1925642239,1925644287,1925660671,1925661183,1925661439,1925662463,1925662719,1925663743,1925663999,1925664255,1925664767,1925677055,1926234111,1929379839,1930952703,1931345919,1931354111,1931362303,1931378687,1931427839,1931431935,1931433983,1931436031,1931444223,1931460607,1931468799,1931476991,1931739135,1932001279,1932132351,1932140543,1932144127,1932144383,1932144639,1932145663,1932146687,1932147711,1932148735,1932152831,1932156927,1932161023,1932163071,1932165119,1932197887,1932263423,1933574143,1933639679,1933705215,1933770751,1933836287,1933901823,1933918207,1933922303,1933926399,1933934591,1933942783,1933950975,1933955071,1933957119,1933959167,1933963263,1933967359,1934032895,1934098431,1934622719,1934884863,1934901247,1934917631,1934925823,1934927871,1934928383,1934929407,1934929919,1934931967,1934934015,1934942207,1934966783,1934974975,1934983167,1934983423,1934983935,1934984191,1934984447,1934984703,1934984959,1934985215,1934987263,1934991359,1934999551,1935015935,1935081471,1935147007,1935671295,1935933439,1936457727,1936472063,1936472319,1936472575,1936472831,1936473087,1936474111,1937244159,1937506303,1937510399,1937514495,1937515519,1937516543,1937518591,1937522687,1937530879,1937539071,1937637375,1937670143,1937672191,1937678335,1937686527,1937702911,1937760255,1937768447,1938030591,1938292735,1938948095,1938964479,1938972671,1938976767,1938978815,1938980863,1939079167,1939865599,1939898367,1939914751,1939931135,1939996671,1940127743,1940193279,1940234239,1940236287,1940238335,1940240383,1940242431,1940258815,1940275199,1940283391,1940285183,1940285439,1940291583,1940292607,1940295679,1940324351,1940324607,1940324863,1940325119,1940326143,1940326399,1940329471,1940330495,1940331519,1940332543,1940336639,1940336895,1940337151,1940337407,1940337663,1940340735,1940344063,1940344575,1940344831,1940348927,1940354047,1940355071,1940356095,1940356607,1940357119,1940389887,1940914175,1941045247,1941045759,1941046271,1941046783,1941047807,1941048319,1941049343,1941051391,1941052159,1941052415,1941053439,1941057535,1941059583,1941060351,1941060607,1941061631,1941069823,1941071871,1941073919,1941075967,1941110783,1941176319,1941438463,1941569535,1941618687,1941635071,1941639167,1941639679,1941640191,1941640703,1941640959,1941641215,1941641727,1941642239,1941643263,1941651455,1941655551,1941657599,1941658623,1941659647,1941667839,1941700607,1941831679,1945108479,1945584383,1945584639,1946157055,1946159103,1946161151,1946163199,1946165247,1946173439,1946173695,1946173951,1946174207,1946174463,1946174719,1946175487,1946175999,1946176255,1946176511,1946176767,1946177023,1946177279,1946177535,1946178047,1946178303,1946178559,1946179327,1946179583,1946179839,1946180095,1946180607,1946180863,1946181119,1946181631,1946189823,1946222591,1946943487,1946951679,1946953727,1946955775,1946957823,1946959871,1946976255,1947009023,1947074559,1947205631,1948254207,1949302783,1949433855,1949437951,1949439999,1949442047,1949446143,1949448191,1949448447,1949448703,1949448959,1949449215,1949449471,1949449727,1949449983,1949450239,1949466623,1949499391,1949564927,1949958143,1949990911,1949995007,1950007295,1950009343,1950011391,1950015487,1950023679,1950089215,1950351359,1950482431,1950515199,1950517759,1950518015,1950518271,1950518783,1950519295,1950520319,1950520831,1950521087,1950521343,1950523391,1950527487,1950527743,1950527999,1950528255,1950528511,1950530559,1950531583,1950533631,1950535679,1950539775,1950541823,1950543871,1950545919,1950547967,1950580735,1950613503,1950621695,1950629887,1950646271,1950648319,1950650367,1950654463,1950654719,1950654975,1950658559,1950660607,1950662655,1950666751,1950668799,1950670847,1950672895,1950674943,1950676991,1950679039,1950744575,1950760959,1950777343,1950810111,1950875647,1951137791,1951399935,1951662079,1951727615,1951793151,1952022527,1952026623,1952030719,1952038911,1952047103,1952051199,1952052223,1952053247,1952054271,1952055295,1952071679,1952073727,1952074239,1952075775,1952079871,1952088063,1952092159,1952096255,1952102399,1952104447,1952108543,1952110591,1952112639,1952116735,1952120831,1952186367,1952186623,1952186879,1952187135,1952188927,1952189183,1952189951,1952190207,1952202751,1952205055,1952219135,1952219903,1952220415,1952220671,1952233471,1952249855,1952251647,1952251903,1952268799,1952269055,1952284671,1952288767,1952292863,1952317439,1952382975,1952448511,1953497087,1953890303,1953923071,1953939455,1953951743,1953955839,1953966591,1953966847,1954021375,1954545663,1958805503,1958807551,1958809599,1958821887,1958825983,1958826239,1958826495,1958830079,1958838271,1958842367,1958844415,1958845439,1958845951,1958846463,1958847487,1958849535,1958850559,1958852607,1958853631,1958854655,1958860799,1958862847,1958871039,1959067647,1959100415,1959102463,1959104511,1959106559,1959107583,1959108607,1959110655,1959112703,1959113215,1959113983,1959114239,1959114495,1959114751,1959115775,1959116287,1959116799,1959133183,1959239679,1959241727,1959243775,1959247871,1959249919,1959250431,1959250943,1959251199,1959251455,1959251967,1959256063,1959259647,1959260159,1959264255,1959395327,1959526399,1959559167,1959560191,1959561215,1959562239,1959563263,1959564287,1959566335,1959567359,1959568383,1959569407,1959570431,1959571455,1959572479,1959573503,1959574527,1959575551,1959576575,1959577599,1959578623,1959579647,1959580671,1959581695,1959582719,1959583743,1959584767,1959585791,1959586815,1959587839,1959588863,1959589887,1959590911,1959591935,1959657471,1959658495,1959661567,1959662591,1959663615,1959664639,1959668735,1959669759,1959670015,1959670271,1959670527,1959670783,1959671807,1959673855,1959674879,1959675903,1959676927,1959677951,1959678207,1959678463,1959678719,1959678975,1959679999,1959681023,1959682047,1959683071,1959684095,1959684607,1959685119,1959686143,1959687167,1959688191,1959689215,1959690239,1959691263,1959692287,1959693311,1959694335,1959695359,1959695615,1959695871,1959696127,1959698431,1959699455,1959700479,1959701503,1959702527,1959703551,1959704575,1959705599,1959706623,1959707647,1959708671,1959709695,1959710719,1959711743,1959712767,1959713791,1959714815,1959715839,1959716863,1959719935,1959720959,1959721983,1959723007,1960050687,1960058879,1960067071,1960069119,1960071167,1960075263,1960077311,1960079359,1960083455,1960091647,1960095743,1960097791,1960098559,1960098815,1960099839,1960121343,1960121599,1960121855,1960122367,1960124415,1960125439,1960127487,1960128511,1960132607,1960181759,1960185855,1960187903,1960189951,1960202239,1960206335,1960206591,1960206847,1960208127,1960208383,1960209407,1960209919,1960210431,1960212479,1960212991,1960213503,1960214015,1960214271,1960214527,1960574975,1960837119,1961885695,1961951231,1962016767,1962541055,1962622975,1962639359,1962658815,1962659839,1962660863,1962661375,1962663935,1962664191,1962664703,1962665983,1962667007,1962668031,1962669055,1962670847,1962671103,1962671359,1962671615,1962672127,1962803199,1962827775,1962829823,1962831871,1962835967,1962868735,1962885119,1962901503,1962934271,1963458559,1963982847,1964113919,1964118015,1964120063,1964122111,1964130303,1964134399,1964136447,1964138495,1964138751,1964139007,1964140543,1964140799,1964143871,1964144127,1964144383,1964145407,1964145663,1964146687,1964171263,1964172287,1964173311,1964173567,1964173823,1964174591,1964174847,1964175103,1964175359,1964176383,1964178431,1964179455,1964244991,1964249087,1964253183,1964255231,1964257279,1964261375,1964263423,1964265471,1964269567,1964273663,1964275711,1964277759,1964294143,1964310527,1965948927,1966014463,1966079999,1966276607,1966276863,1966278399,1966278655,1966298367,1966298623,1966300415,1966300671,1966306303,1966306559,1966309375,1966342143,1966407679,1966417919,1966418943,1966419967,1966424063,1966440447,1966444543,1966446591,1966447615,1966448639,1966452735,1966456831,1966473215,1966538751,1966571519,1966587903,1966589695,1966589951,1966590463,1966590975,1966591231,1966591487,1966591999,1966596095,1966600191,1966602239,1966603775,1966604287,1966669823,1966768127,1966772223,1966776319,1966784511,1966792703,1966797055,1966798847,1966800895,1967783935,1967800319,1967808511,1967812607,1967816703,1969225727,1969487871,1969618943,1969635327,1969651711,1969659903,1969661951,1969676287,1969688575,1969692671,1969694719,1969696767,1969702911,1969704959,1969707007,1969709055,1969713151,1969713663,1969714687,1969715199,1969716479,1969716735,1969717247,1969721343,1969725439,1969727487,1969729535,1969731327,1969731583,1969733631,1969750015,1969790975,1969793023,1969795071,1969797119,1969798143,1969798399,1969798655,1969798911,1969799167,1969807359,1969809407,1969811455,1969815551,1969881087,1970012159,1970143231,1970274303,1970798591,1970800639,1970802687,1970803199,1970803455,1970803711,1970804223,1970804479,1970804735,1970806783,1970808831,1970810879,1970812927,1970813951,1970814975,1970915327,1970917375,1970921471,1970925567,1970925823,1970926079,1970926591,1970926847,1970927359,1970927615,1970928639,1970929151,1970929663,1970962431,1970995199,1971060735,1974032895,1974033151,1975517183,1979711487,1981284351,1981424639,1981425663,1981442047,1981442303,1981442559,1981443583,1981444095,1981449215,1981449471,1981452287,1981453567,1981453823,1981456383,1981460479,1981461503,1981463551,1981480959,1981513727,1981515007,1981515263,1981517311,1981530111,1981538303,1981546495,1981808639,1983905791,1984102399,1984118783,1984131071,1984135167,1984151551,1984153599,1984155647,1984159743,1984167935,1984430079,1985085439,1985093631,1985097727,1985118207,1985150975,1985216511,1985347583,1985478655,1985480703,1985482751,1985484799,1985486847,1985609727,1985675263,1985708031,1985712127,1985716223,1985720319,1985724415,1985732607,1985734655,1985736703,1985740799,1985871871,1986002943,1986143231,1986143487,1986145279,1986145535,1986151423,1986151679,1986162175,1986162687,1986199551,1986215935,1986232319,1986265087,1986396159,1986398207,1986400255,1986406399,1986412543,1986428927,1986461695,1986496511,1986498559,1986502655,1986503679,1986507775,1986508287,1986508543,1986508799,1986509823,1986510847,1986519039,1986523135,1986525183,1986527231,1986723839,1986732031,1986734079,1986736127,1986738431,1986738687,1986738943,1986739199,1986739711,1986739967,1986740223,1986756607,1986760703,1986762751,1986764799,1986766847,1986767103,1986768895,1986769151,1986769919,1986770943,1986772991,1986773247,1986774015,1986781183,1986783231,1986783743,1986784767,1986785023,1986786303,1986789375,1987051519,1988034559,1988067327,1988075519,1988083711,1988362239,1988624383,1988755455,1988861951,1988870143,1988886527,1989132543,1989132799,1989134591,1989134847,1989137919,1989138175,1989140735,1989140991,1989141247,1989143039,1989143551,1989148671,1989410815,1989541887,1989607423,1989660671,1989661695,1989662719,1989663743,1989664767,1990197247,1990983679,1991245823,1991311359,1991376895,1991442431,1991499775,1991507967,1991788543,1991789055,1991789311,1991789567,1991796479,1991796735,1991798783,1991799807,1991835647,1991901183,1992065023,1992073215,1992097791,1992163327,1992232191,1992232959,1992233215,1992233471,1992235007,1992245247,1992250367,1992261631,1992262399,1992262655,1992269823,1992273919,1992282367,1992284415,1992285183,1992285951,1992286463,1992290303,1992364031,1992364543,1992365055,1992365311,1992365567,1992366079,1992366591,1992367103,1992367871,1992368127,1992372223,1992374271,1992374783,1992375295,1992375807,1992376319,1992376831,1992377343,1992378111,1992378367,1992378879,1992379903,1992380159,1992380415,1992380927,1992381439,1992381695,1992381951,1992382463,1992382975,1992383743,1992384511,1992483327,1992483583,1992483839,1992484863,1992485887,1992486399,1992486911,1992488959,1992489471,1992489983,1992491007,1992818687,1992949759,1993342975,1993605119,1993736191,1993736703,1993736959,1993737215,1993737727,1993737983,1993738239,1993738495,1993738751,1993739263,1993740287,1993740543,1993743615,1993743871,1993744127,1993744383,1993748479,1993749503,1993750271,1993750783,1993751807,1993752575,1993756671,1993757695,1993757951,1993759743,1993759999,1993760767,1993764863,1993765119,1993766143,1993766399,1993766655,1993767167,1993767423,1993767679,1993768959,1993773055,1993773311,1993773823,1993774079,1993774847,1993775359,1993776127,1993776383,1993776639,1993776895,1993777407,1993778687,1993779711,1993781247,1993781503,1993781759,1993782015,1993783039,1993783295,1993783807,1993784319,1993784831,1993789439,1993790207,1993790463,1993792767,1993793023,1993795583,1993795839,1993796095,1993796863,1993797631,1993801727,1993802495,1993803007,1993803263,1993806079,1993806335,1993807103,1993807359,1993808383,1993808639,1993809919,1993812479,1993812735,1993812991,1993814783,1993815295,1993817087,1993817343,1993819135,1993819391,1993820159,1993820415,1993820671,1993820927,1993821183,1993821695,1993821951,1993824255,1993826303,1993828351,1993829631,1993829887,1993830399,1993832447,1993834495,1993835007,1993835263,1993835519,1993835775,1993836031,1993836287,1993836543,1993836799,1993837311,1993837567,1993838591,1993839103,1993839359,1993839615,1993840639,1993841663,1993841919,1993842687,1993843199,1993843455,1993844991,1993845247,1993846271,1993846527,1993846783,1993850879,1993867263,1994391551,1994850303,1995046911,1995177983,1995374591,1995440127,1995571199,1995636735,1995702271,1996627967,1996630015,1996634111,1996636159,1996644351,1996652543,1997012991,1997017087,1997029375,1997033471,1997037567,1997045759,1997049855,1997053951,1997062143,1997066239,1997070335,1997072383,1997076479,1997076735,1997076991,1997077247,1997077503,1997077759,1997078015,1997078527,1997094911,1997116671,1997116927,1997117439,1997119743,1997119999,1997120255,1997120511,1997121535,1997121791,1997123583,1997125119,1997126399,1997126655,1997127679,1997144063,1997176831,1997180927,1997185023,1997187071,1997189119,1997191167,1997209599,1997242367,1997275135,1997279231,1997283327,1997287423,1997295615,1997301759,1997303807,1997307903,1997311999,1997314047,1997316095,1997320191,1997328383,1997332479,1997340671,1997346815,1997348863,1997352959,1997355007,1997357055,1997358079,1997359103,1997360127,1997365247,1997369343,1997373439,1997379583,1997381631,1997385727,1997387775,1997389823,1997398015,1997402111,1997404159,1997406207,1997471743,1997479935,1997488127,1997488383,1997488639,1997488895,1997489151,1997492223,1997496319,1997500415,1997504511,1997506559,1997508607,1997510655,1997511167,1997511679,1997512703,1997520895,1997537279,1997602815,1997611007,1997619199,1997635583,1997651967,1997668351,1997680639,1997684223,1997684479,1997684735,1997701119,1997705215,1997707263,1997709055,1997709311,1997715455,1997717503,1997723647,1997725695,1998061567,1998270975,1998271487,1998274047,1998274303,1998274559,1998323711,1998348287,1998355455,1998355967,1998356479,1998360575,1998365695,1998383103,1998385151,1998389247,1998396671,1998396927,1998454783,1998456831,1998458879,1998462975,1998467071,1998471167,1998487551,1998503935,1998520319,1998553087,1998561279,1998561535,1998561791,1998562047,1998562303,1998562559,1998562815,1998563071,1998563583,1998563839,1998564351,1998564607,1998564863,1998565119,1998565375,1998569471,1998577663,1998579711,1998581759,1998585855,1999033343,1999033599,1999034111,1999034367,1999130623,1999134719,1999136767,1999138815,1999142911,1999249407,1999250431,1999251455,1999252479,1999253503,1999254527,1999255551,1999256575,1999257599,1999273983,1999278079,1999280127,1999282175,1999290367,1999298559,1999306751,1999372287,1999503359,1999568895,1999589375,1999591423,1999593471,1999597567,1999598591,1999598847,1999599615,1999600127,1999600895,1999601663,1999634431,2000158719,2000191487,2000224255,2000355327,2000371711,2000373759,2000375807,2000377855,2000379903,2000388095,2000617471,2000618239,2000621567,2000625663,2000633855,2000642047,2000646143,2000650239,2000654335,2000668671,2000674815,2001207295,2001272831,2001305599,2001420287,2001453055,2001457151,2001461247,2001465343,2001469439,2001534975,2001559551,2001567743,2001600511,2001797119,2001797887,2001798143,2001798911,2001799167,2001800447,2001800703,2001800959,2001801215,2001805055,2001805311,2001808895,2001809407,2001809919,2001810175,2001810431,2001810687,2001814271,2001814527,2001818623,2001818879,2001819391,2001819647,2001823487,2001823999,2001824255,2001824511,2001825023,2001825279,2001825791,2001826303,2001827071,2001827327,2001831935,2001832191,2001837567,2001837823,2001839615,2001840127,2001840383,2001840895,2001841151,2001841919,2001842175,2001844479,2001844735,2001844991,2001845247,2001845503,2001845759,2001850879,2001851135,2001851903,2001852159,2001852415,2001852671,2001853183,2001853439,2001854207,2001854463,2001854719,2001854975,2001856767,2001857023,2001861631,2001861887,2001862655,2001864703,2001870847,2001879039,2001895423,2001899519,2001901567,2001915903,2001919999,2001926143,2001928191,2001993727,2002518015,2002780159,2003304447,2003566591,2003697663,2003714047,2003720191,2003722239,2003726335,2003730431,2003746815,2003763199,2003828735,2006188031,2006193407,2006193919,2006204415,2006213631,2006214655,2006216703,2006228991,2006237183,2006253567,2006319103,2006384639,2006419455,2006419711,2006431743,2006431999,2006433791,2006450175,2007007231,2007023615,2007025663,2007027711,2007028991,2007029247,2007029759,2007030783,2007031295,2007031551,2007031807,2007033855,2007034879,2007035647,2007035903,2007039999,2007048191,2007064575,2007065599,2007066623,2007070719,2007498751,2008023039,2009071615,2011168767,2011193343,2011201535,2011205631,2011209727,2011234303,2011299839,2011430911,2011693055,2011824127,2011889663,2011893759,2011897855,2011899903,2011901951,2011906047,2011916287,2011918335,2011922431,2011938815,2011942911,2011947007,2011951103,2011953151,2011955199,2012086271,2012610559,2012741631,2013003775,2013011967,2013020159,2013028351,2013030399,2013031423,2013032447,2013036543,2013038591,2013040639,2013044735,2013048831,2013052927,2013061119,2013065215,2013068031,2013068287,2013068799,2013069055,2014314495,2014838783,2015100927,2015166463,2015182847,2015199231,2015203327,2015205375,2015207423,2015215615,2015216383,2015216639,2015217151,2015217663,2015219711,2015219967,2015220479,2015220735,2015221247,2015221759,2015222015,2015222271,2015222527,2015222783,2015223039,2015223295,2015223551,2015223807,2015225855,2015227903,2015231999,2016542719,2016550911,2016555007,2016559103,2016583679,2016587775,2016589823,2016591871,2016673791,2016935935,2017460223,2017984511,2017988607,2017992703,2018000895,2018004991,2018007039,2018009087,2018017279,2018050047,2018115583,2018246655,2019033087,2019035135,2019037183,2019041279,2019045375,2019049471,2019078143,2019082239,2019098623,2019115007,2019116031,2019117055,2019119103,2019121151,2019123199,2019131391,2019164159,2019360767,2019426303,2019557375,2021654527,2022178815,2022180863,2022182911,2022184959,2022187007,2022191103,2022194431,2022194687,2022195199,2022211583,2022227967,2022244351,2022277119,2022309887,2022313983,2022318079,2022319615,2022319871,2022322431,2022322687,2022326271,2022330367,2022334463,2022342655,2022359039,2022359295,2022360575,2022360831,2022362879,2022363135,2022363647,2022363903,2022364927,2022365183,2022366719,2022366975,2022367231,2022367487,2022370047,2022370559,2022370815,2022371071,2022371327,2022371839,2022372095,2022372351,2022373119,2022373375,2022373887,2022374399,2022374655,2022375167,2022375423,2022572031,2022637567,2022670335,2022678527,2022703103,2023751679,2025848831,2027867903,2027868159,2030043135,2030045183,2030051327,2030057471,2030059519,2030108671,2030125055,2030141439,2030305279,2030436351,2030567423,2032926719,2033057791,2033074175,2033075199,2033075711,2033075967,2033076223,2033077247,2033078271,2033079295,2033087487,2033088511,2033089535,2033090559,2033319935,2033321471,2033321727,2033321983,2033324031,2033328127,2033330175,2033336319,2033352703,2033356799,2033358847,2033362943,2033363967,2033364991,2033369087,2033375231,2033377279,2033385471,2033451007,2033487871,2033491967,2033500159,2033502207,2033504255,2033516543,2033582079,2033614847,2033623039,2033624063,2033625087,2033627135,2033629183,2033629951,2033630207,2033631231,2033647615,2033663999,2033696767,2033713151,2033876991,2033879039,2033887231,2033889279,2033891327,2033893375,2033909759,2033914111,2033914367,2033917695,2033940479,2033940735,2033940991,2033941247,2033941503,2033941759,2033945599,2033945855,2033975295,2034237439,2034499583,2034761727,2035023871,2035154943,2035220479,2035253247,2035269631,2035286015,2035810303,2035875839,2035941375,2036006911,2036011007,2036015103,2036023295,2036027391,2036029439,2036031487,2036033535,2036035583,2036041727,2036043775,2036045823,2036047871,2036049919,2036051967,2036056063,2036058111,2036060159,2036072447,2036334591,2036465663,2036596735,2036597503,2036597759,2036598015,2036598271,2036598783,2036600831,2036604927,2036609023,2036611071,2036613119,2036629503,2036678655,2036695039,2036697087,2036699135,2036699391,2036699903,2036700671,2036701695,2036702207,2036702719,2036703231,2036705279,2036707327,2036709375,2036711423,2036715519,2036719615,2036727807,2037907455,2038028799,2038029055,2038169599,2038366207,2038374399,2038374655,2038374911,2038375167,2038375423,2038375679,2038376191,2038377215,2038377471,2038377727,2038377983,2038378239,2038378495,2038382591,2038415359,2038423551,2038431743,2042626047,2043150335,2043162623,2043165695,2043166719,2043183103,2043199487,2043201535,2043203583,2043205631,2043207679,2043211775,2043215871,2043281407,2043412479,2043674623,2044723199,2045771775,2046296063,2046558207,2046705663,2046722047,2046754815,2046820351,2046822399,2046824447,2046828543,2046836735,2046885887,2046951423,2047000063,2047000319,2047082495,2047344895,2047345407,2047345663,2047346175,2047346431,2047346687,2047347455,2047347711,2047347967,2047348479,2047351807,2047352831,2047357951,2047358975,2047359999,2047361023,2047362047,2047363071,2047364095,2047365119,2047366143,2047366399,2047366655,2047366911,2047368191,2047377407,2047381503,2047385599,2047389695,2047393791,2047475711,2047508479,2047510015,2047510527,2047511039,2047511551,2047512575,2047513087,2047513855,2047514111,2047514623,2047516671,2047517695,2047520767,2047524863,2047525887,2047526911,2047532031,2047532543,2047533311,2047533567,2047533823,2047534079,2047538175,2047538431,2047538687,2047539199,2047539711,2047539967,2047540223,2047540479,2047540735,2047540991,2047541247,2047574015,2047606783,2047773951,2047774207,2047803391,2047868927,2048917503,2049966079,2050047999,2050064383,2050080767,2050082815,2050084863,2050088959,2050091007,2050097151,2050098175,2050099199,2050101247,2050129919,2050162687,2050228223,2050424575,2050424831,2050490367,2051014655,2053242879,2053308415,2053324799,2053332991,2053335039,2053337087,2053340159,2053341183,2053373951,2053378047,2053382143,2053390335,2053406719,2053406975,2053407231,2053408511,2053409023,2053409279,2053410303,2053410559,2053410815,2053411839,2053412351,2053412863,2053413887,2053414399,2053414655,2053416447,2053416703,2053417215,2053417471,2053418239,2053418495,2053418751,2053419007,2053419519,2053419775,2053422847,2053423103,2053425151,2053425663,2053439487,2053505023,2053509119,2053511167,2053513215,2053515263,2053515775,2053516031,2053519359,2053521407,2053529599,2053532671,2053533183,2053533695,2053534719,2053535743,2053537791,2053636095,2054160383,2054375679,2054375935,2054376447,2054377471,2054422527,2054619135,2054684671,2055208959,2055213055,2055217151,2055229439,2055231487,2055233535,2055234303,2055234559,2055235583,2055237631,2055239679,2055241727,2055274495,2055290879,2055299071,2055305215,2055307263,2055315455,2055323647,2055327743,2055329791,2055331839,2055335935,2055340031,2055733247,2056257535,2056259583,2056261631,2056263679,2056265727,2056273919,2056290303,2056323071,2056388607,2056519679,2056585215,2056650751,2056781823,2056794111,2056796159,2056806399,2056814591,2056815103,2056815359,2056815871,2056816127,2056816383,2056816639,2056816895,2056817151,2056817663,2056817919,2056818175,2056818431,2056819199,2056819967,2056820223,2056820735,2056822015,2056822271,2056822783,2056823295,2056825343,2056825599,2056825855,2056826111,2056826367,2056826879,2056830975,2056847359,2056912895,2057043967,2057306111,2059141119,2059665407,2059796479,2059812863,2059813887,2059862015,2059878399,2059927551,2059931647,2059933695,2059935743,2059937791,2059939839,2059941887,2059943935,2059960319,2059961343,2059962367,2059964415,2059966463,2059968511,2059972607,2059976703,2059995135,2059997183,2060001279,2060001791,2060002559,2060002815,2060003583,2060004351,2060005375,2060009471,2060025855,2060058623,2060062719,2060066815,2060075007,2060083199,2060091391,2060189695,2060451839,2061500415,2063073279,2063077375,2063079423,2063081471,2063085567,2063089663,2063097855,2063106047,2063108095,2063109119,2063109375,2063109631,2063109887,2063111167,2063111423,2063112191,2063112447,2063113215,2063114239,2063115263,2063116287,2063116543,2063116799,2063117055,2063117311,2063117823,2063118079,2063118335,2063118847,2063119359,2063119871,2063120383,2063120895,2063121919,2063122431,2063138815,2063335423,2063341567,2063345663,2063347711,2063347967,2063348223,2063350527,2063350783,2063351807,2063368191,2063368447,2063368703,2063368959,2063369215,2063369471,2063369727,2063369983,2063370239,2063370495,2063371007,2063371519,2063372287,2063374335,2063376383,2063380479,2063382527,2063384575,2063392767,2063400959,2063466495,2063482879,2063486463,2063486975,2063491071,2063494143,2063496191,2063499263,2063532031,2063548415,2063550463,2063551487,2063552511,2063556607,2063564799,2063597567,2063601663,2063605759,2063613951,2063630335,2063646719,2063663103,2063695871,2063728639,2063859711,2064646143,2065694719,2066743295,2066808831,2066825215,2066841599,2066874367,2066882559,2066890751,2066907135,2066915327,2066923519,2066939903,2066972671,2067005439,2067447807,2067448319,2067448575,2067448831,2067449343,2067449855,2067450367,2067450623,2067450879,2067451391,2067451903,2067455999,2067726335,2067791871,2070052863,2070056959,2070061055,2070077439,2070085631,2070102015,2070118399,2070159359,2070167551,2070183935,2070192127,2070200319,2070208511,2070208767,2070209023,2070209279,2070209535,2070210559,2070210815,2070211071,2070211327,2070216703,2070282239,2070347775,2070380543,2070396927,2070405119,2070409215,2070413311,2070675455,2070675711,2070675967,2070677503,2070679551,2070683647,2070691839,2070692863,2070693375,2070693631,2070693887,2070694911,2070695935,2070696959,2070697983,2070698495,2070699007,2070700031,2070702079,2070703103,2070704127,2070708223,2070712319,2070714367,2070716415,2070724607,2070726655,2070728703,2070732799,2070734847,2070736895,2070738943,2070740479,2070740735,2070740991,2070806527,2070872063,2070937599,2072510463,2072514559,2072516607,2072518655,2072526847,2072528895,2072530943,2072535039,2072543231,2072575999,2072772607,2073034751,2075131903,2075140095,2075144191,2075146239,2075147263,2075148287,2075150335,2075152383,2075156479,2075158527,2075160575,2075162623,2075164671,2075197439,2076180479,2076442623,2076573695,2076639231,2076671999,2076704767,2076712959,2076721151,2076737535,2076764159,2076766207,2076768255,2076770303,2076835839,2076966911,2077097983,2077229055,2077491199,2077753343,2078539775,2078670847,2078736383,2078769151,2078780159,2078780415,2078791935,2078792191,2078801919,2079064063,2079326207,2079457279,2079490047,2079506431,2079508479,2079510527,2079514623,2079516671,2079518719,2079522815,2079588351,2079850495,2079916031,2079948799,2079981567,2080112639,2080145407,2080178175,2080179199,2080180223,2080182271,2080183295,2080184319,2080185343,2080186367,2080187391,2080188415,2080189439,2080190463,2080191487,2080192511,2080193535,2080194559,2080195583,2080196607,2080197631,2080198655,2080199679,2080200703,2080201727,2080202751,2080203775,2080204799,2080205055,2080205823,2080206591,2080207871,2080209919,2080210943,2080211967,2080212991,2080214015,2080214527,2080214783,2080215039,2080216063,2080217087,2080217343,2080217599,2080218111,2080220159,2080221183,2080222207,2080223231,2080224255,2080225279,2080226303,2080228351,2080229375,2080230399,2080231423,2080232447,2080232959,2080233471,2080234495,2080235519,2080236543,2080237567,2080238591,2080239615,2080240639,2080243711,2080260095,2080268287,2080270335,2080272383,2080276479,2080309247,2080325631,2080342015,2080360447,2080362495,2080366591,2080368639,2080372735,2080374783,2080636927,2080702463,2080767999,2080776191,2080776447,2080776703,2080776959,2080777215,2080777471,2080777727,2080777983,2080778239,2080780287,2080780799,2080781311,2080781823,2080782335,2080784383,2080800767,2080817151,2080825343,2080829439,2080833535,2080899071,2081226751,2081292287,2081554431,2081619967,2081652735,2081685503,2081947647,2082209791,2082258943,2082308095,2082324479,2082340863,2082406399,2082471935,2083024895,2083053567,2083057663,2083058687,2083059711,2083061759,2083110911,2083127295,2083192831,2083258367,2083389439,2083454975,2083471359,2083487743,2083504127,2083520511,2084569087,2084732927,2084741119,2084743167,2084745215,2084749311,2084753407,2084757503,2084765695,2084895743,2084895999,2085617663,2085683199,2085691391,2085699583,2085715967,2085724159,2085732351,2085740543,2085748735,2085814271,2085847039,2086141951,2086666239,2087190527,2087452671,2087453695,2087454719,2087456767,2087457791,2087458047,2087458815,2087460863,2087462911,2087464959,2087467007,2087471103,2087472127,2087472639,2087473151,2087474687,2087475199,2087475455,2087475711,2087477247,2087478271,2087501823,2087518207,2087519231,2087520255,2087522303,2087523327,2087524351,2087526399,2087534591,2087542783,2087544831,2087545855,2087546879,2087550975,2087649279,2087714815,2088239103,2088435711,2088632319,2089287679,2089549823,2089943039,2089959423,2090041343,2090074111,2090237951,2090239999,2090240255,2090240511,2090241023,2090242047,2090246143,2090250239,2090270719,2090401791,2090418175,2090434559,2090467327,2090565631,2090582015,2090590207,2090594303,2090622975,2090647551,2090651647,2090659839,2090663935,2090680319,2090681343,2090682367,2090696703,2090729471,2090733567,2090735615,2090736639,2090737663,2090745855,2090762239,2090777343,2090777599,2090778623,2090786815,2090795007,2090860543,2091384831,2091646975,2091876351,2091880447,2091884543,2091892735,2091900927,2091909119,2092957695,2093088767,2093154303,2093187071,2093191167,2093195263,2093203455,2093211647,2093219839,2093285375,2093301759,2093318143,2093342719,2093350911,2093383679,2093416447,2093432831,2093445119,2093449215,2093481983,2094006271,2094530559,2094596095,2094628863,2094645247,2094653439,2094661631,2094759935,2094792703,2096152575,2096160767,2096234495,2096300031,2096332799,2096349183,2096365567,2096431103,2096496639,2096513023,2096529407,2096611327,2096627711,2096660479,2096664575,2096668671,2096676863,2096693247,2096889855,2096955391,2097020927,2097037311,2097053695,2097086463,2097479679,2097545215,2097610751,2097643519,2097676287,2098200575,2098724863,2098987007,2099183615,2099183871,2099189503,2099189759,2099193599,2099193855,2099197695,2099197951,2099199999,2099216383,2099232767,2100297727,2100854783,2100855039,2100857855,2100858111,2100858367,2100858879,2100859135,2100859391,2100859647,2100859903,2100860671,2100861183,2100861695,2100861951,2100862207,2100862463,2100864511,2100864767,2100865023,2100865279,2100865791,2100866047,2100866815,2100869375,2100869887,2100870143,2100870911,2100871167,2100871423,2100871679,2100872447,2100872703,2100873471,2100873727,2100874495,2100875263,2100875519,2100875775,2100876031,2100876287,2100876799,2100877567,2100878079,2100878591,2100878847,2100879103,2100880383,2100880639,2100881407,2100881663,2100883455,2100883711,2100886015,2100886271,2100887295,2100887551,2100953087,2100969471,2100985855,2101018623,2101084159,2101108735,2101116927,2101149695,2101182463,2101231615,2101232639,2101233663,2101234687,2101234943,2101235199,2101235455,2101235711,2101237759,2101238783,2101239807,2101270527,2101272575,2101276671,2101280767,2101288959,2101293055,2101297151,2101313535,2101346303,2103640063,2103705599,2103967743,2105540607,2107637759,2108162047,2108218879,2108219391,2108227583,2108293119,2108358655,2108424191,2108686335,2109734911,2110783487,2110793727,2110793983,2110795263,2110795519,2110799871,2110816255,2110832639,2110865407,2110881791,2110898175,2110914559,2111045631,2111078399,2111111167,2111143935,2111146495,2111146751,2111152127,2111160319,2111168511,2111176703,2111193087,2111201279,2111209471,2111217663,2111225855,2111242239,2111258623,2111275007,2111307775,2111832063,2112487423,2112618495,2112880639,2113683455,2113683711,2113683967,2113684223,2113684991,2113685503,2113685759,2113686015,2113686271,2113686527,2113687039,2113687295,2113687551,2113687807,2113688063,2113688319,2113688575,2113688831,2113689087,2113689343,2113689599,2113690879,2113691135,2113691647,2113691903,2113692415,2113693695,2113693951,2113694207,2113694463,2113694719,2113695231,2113695743,2113699327,2113699583,2113716223,2113717503,2113717759,2113718271,2113718527,2113721343,2113722367,2113724415,2113724671,2113726463,2113726719,2113726975,2113727999,2113728511,2113730559,2113730815,2113731071,2113731839,2113732095,2113732607,2113748991,2113756415,2113756671,2113761279,2113765375,2113771519,2113773055,2113774591,2113775359,2113798143,2113811455,2113812479,2113813503,2113830911,2113863679,2113929215,2127626239,2127634431,2130706431,2147483647,2147483903,2147484671,2147484927,2147485695,2147487743,2147489791,2147491839,2147492095,2147492351,2147492607,2147492863,2147493119,2147493375,2147493887,2147494399,2147494911,2147495167,2147495423,2147496959,2147497215,2147497471,2147497727,2147499007,2147500031,2147500543,2147501055,2147501567,2147501823,2147502079,2147504127,2147508223,2147510271,2147510527,2147510783,2147511039,2147512319,2147512831,2147513343,2147514367,2147514879,2147516415,2147520511,2147523583,2147524607,2147526655,2147528703,2147532799,2147534847,2147549183,2147551231,2147551743,2147551999,2147552255,2147552767,2147553023,2147553791,2147554047,2147555839,2147556351,2147556607,2147556863,2147557375,2147557631,2147557887,2147558143,2147558399,2147558655,2147558911,2147559167,2147559423,2147559679,2147559935,2147560191,2147560447,2147560703,2147560959,2147561215,2147561471,2147561983,2147562239,2147562495,2147562751,2147563007,2147563263,2147563519,2147563775,2147564287,2147564543,2147564799,2147565055,2147565311,2147565567,2147565823,2147566079,2147566335,2147566591,2147567103,2147567359,2147567615,2147567871,2147568127,2147568639,2147568895,2147569151,2147569407,2147569663,2147569919,2147570687,2147571455,2147571711,2147572735,2147573503,2147573759,2147574015,2147574271,2147574527,2147574783,2147575039,2147575295,2147575551,2147575807,2147576575,2147576831,2147577087,2147577343,2147577599,2147578879,2147579135,2147579647,2147579903,2147580671,2147580927,2147581183,2147581439,2147581951,2147582207,2147582463,2147582719,2147584767,2147585023,2147585279,2147585535,2147586303,2147586559,2147586815,2147587071,2147587327,2147587583,2147587839,2147588095,2147588351,2147588607,2147588863,2147589119,2147589375,2147589631,2147589887,2147590143,2147590655,2147591423,2147591679,2147592447,2147592703,2147592959,2147594239,2147594495,2147594751,2147595007,2147596799,2147597055,2147599615,2147599871,2147600895,2147601151,2147601407,2147601663,2147601919,2147602431,2147602943,2147603455,2147603711,2147603967,2147604223,2147605247,2147605503,2147605759,2147606015,2147606527,2147606783,2147607039,2147607295,2147607807,2147608063,2147608319,2147608831,2147609087,2147609343,2147609599,2147610367,2147610879,2147611135,2147611647,2147612159,2147612415,2147613439,2147613695,2147613951,2147614207,2147614719,2147942399,2148007935,2148401407,2148401919,2148407039,2148407295,2148407807,2148408319,2148410111,2148410367,2148411135,2148411391,2148418303,2148418559,2148418815,2148419071,2148423423,2148423679,2148423935,2148424191,2148424703,2148425471,2148425727,2148427263,2148427775,2148429823,2148430079,2148430335,2148431871,2148432383,2148433407,2148447743,2148447999,2148449791,2148450047,2148450303,2148455423,2148456447,2148457471,2148458495,2148458751,2148459007,2148459263,2148459519,2148460287,2148460543,2148461567,2148461823,2148462079,2148462335,2148464639,2148466687,2148532223,2148597759,2148925439,2148990975,2149056511,2149122047,2149253119,2149384191,2150039551,2150105087,2150203391,2150236159,2150301695,2150367231,2150432767,2150498303,2150957055,2151022591,2151743487,2151759871,2151768063,2151770111,2151772159,2151776255,2151778303,2151780351,2151782399,2151784447,2151785471,2151786495,2151787519,2151788543,2151792639,2151794687,2151796735,2151800831,2151809023,2151940095,2152464383,2152529919,2152530175,2152530431,2152530687,2152530943,2152531199,2152532223,2152532479,2152532735,2152532991,2152533247,2152533503,2152533759,2152534015,2152534271,2152534527,2152534783,2152535039,2152535295,2152535551,2152536063,2152536319,2152537087,2152537343,2152537599,2152538367,2152538623,2152539647,2152539903,2152541183,2152542207,2152542463,2152543231,2152543743,2152543999,2152544767,2152545535,2152546303,2152547071,2152547327,2152548351,2152548863,2152549375,2152549887,2152550143,2152550399,2152550911,2152551167,2152551423,2152551679,2152552191,2152552447,2152552703,2152552959,2152553471,2152553983,2152554239,2152554495,2152554751,2152555007,2152555263,2152555519,2152555775,2152556031,2152556543,2152557055,2152557311,2152557567,2152557823,2152558079,2152558335,2152558591,2152558847,2152559103,2152559359,2152559615,2152559871,2152560127,2152560383,2152560639,2152560895,2152561151,2152561407,2152561663,2152562687,2152595455,2152726527,2153054207,2153185279,2153250815,2153382911,2153383167,2153383679,2153392895,2153393151,2153404159,2153404415,2153404671,2153404927,2153405183,2153408511,2153408767,2153427967,2153428223,2153428735,2153428991,2153578495,2153644031,2153644287,2153644543,2153644799,2153645055,2153645311,2153645567,2153645823,2153646079,2153646335,2153646591,2153646847,2153647359,2153647615,2153647871,2153648127,2153648383,2153648639,2153648895,2153649407,2153649663,2153649919,2153650175,2153709567,2153906175,2153971711,2154037247,2154102783,2154430463,2154495999,2154561535,2154627071,2155118591,2155151359,2155413503,2155413759,2155426303,2155426815,2155427071,2155427583,2155428351,2155428607,2155430143,2155430399,2155430655,2155430911,2155433983,2155434239,2155434751,2155435007,2155435775,2155436031,2155436543,2155436799,2155440127,2155440639,2155441151,2155441407,2155441919,2155442175,2155443967,2155444223,2155444479,2155444735,2155445247,2155445759,2155446783,2155447551,2155448319,2155448575,2155449343,2155449599,2155457279,2155457535,2155458047,2155458303,2155459071,2155459327,2155459583,2155459839,2155460607,2155460863,2155462143,2155462399,2155463167,2155463423,2155464703,2155464959,2155465471,2155465727,2155468031,2155468287,2155468543,2155469055,2155469567,2155469823,2155470335,2155470591,2155472895,2155473151,2155473407,2155473663,2155473919,2155474175,2155475967,2155476223,2155610111,2155675647,2155806719,2155808767,2155809791,2155810815,2155812863,2155814911,2155819007,2155819519,2155821055,2155823103,2155825151,2155827199,2155831295,2155833343,2155833855,2155834623,2155834879,2155835391,2155839487,2155843583,2155844607,2155845631,2155845887,2155846143,2155846399,2155847167,2155847679,2155849727,2155851775,2155852799,2155853823,2155855871,2155872255,2155937791,2155960319,2155962367,2156003327,2156134399,2156265471,2156331007,2156593151,2156658687,2156691455,2156697599,2156699647,2156703743,2156707839,2156709887,2156711935,2156713983,2156716031,2156718079,2156720127,2156724223,2156855295,2156920831,2156986367,2158510079,2158510591,2158511615,2158512127,2158512383,2158512895,2158513151,2158513919,2158517503,2158518015,2158519551,2158519807,2158521087,2158521343,2158522879,2158523135,2158523647,2158524415,2158524927,2158525439,2158526207,2158526463,2158526719,2158528255,2158528511,2158530047,2158530303,2158531071,2158531327,2158531583,2158531839,2158532607,2158533119,2158533887,2158534143,2158534911,2158535167,2158539007,2158539263,2158540799,2159017983,2159083519,2159086591,2159086847,2159149055,2159280127,2159542271,2159607807,2159673343,2159869951,2159935487,2160529407,2160533503,2160541695,2160590847,2160656383,2160657407,2160658431,2160661503,2160662527,2160676863,2160677887,2160678911,2160679935,2160684031,2160685055,2160686079,2160687103,2160690175,2160691199,2160693247,2160694271,2160697343,2160698367,2160699391,2160700415,2160713727,2160714751,2160716799,2160717823,2160721919,2160787455,2160852991,2160885759,2160893951,2160902143,2160906239,2160908287,2160910335,2160914431,2160918527,2161508351,2161573887,2162228223,2162228479,2162561535,2162561791,2162687999,2162753535,2162819071,2162884607,2163212287,2163277823,2163283711,2163284223,2163285503,2163286527,2163287551,2163287807,2163290623,2163290879,2163294719,2163294975,2163296255,2163296511,2163297535,2163297791,2163300607,2163300863,2163303679,2163304191,2163304703,2163305215,2163307007,2163307263,2163307775,2163308031,2163308287,2163308543,2163309567,2163309823,2163310079,2163310335,2163310591,2163310847,2163311103,2163311359,2163312127,2163312383,2163312639,2163312895,2163313407,2163313663,2163315711,2163316479,2163319039,2163319551,2163320831,2163321087,2163323903,2163324159,2163324415,2163325439,2163329535,2163329791,2163330047,2163330559,2163330815,2163331071,2163333631,2163333887,2163344383,2163345151,2163347199,2163347455,2163348991,2163349247,2163349503,2163349759,2163350527,2163351039,2163351551,2163351807,2163352831,2163353343,2163354111,2163354623,2163357183,2163357439,2163357951,2163358207,2163358719,2163358975,2163359487,2163359743,2163360767,2163361023,2163363583,2163364095,2163364351,2163364607,2163366143,2163367167,2163367935,2163368191,2163370495,2163370751,2163372031,2163372287,2163373055,2163373311,2163374079,2163374591,2163375359,2163375615,2163375871,2163376127,2163376383,2163376639,2163377919,2163378175,2163379199,2163379455,2163380479,2163380735,2163382783,2163383039,2163383807,2163384063,2163385855,2163386111,2163389951,2163390719,2163401215,2163401471,2163402495,2163402751,2163403775,2163404031,2163407359,2163407871,2163408127,2163408383,2163408895,2163474431,2163605503,2163671039,2163867647,2163933183,2163998719,2164162559,2164163583,2164164607,2164165631,2164168703,2164169727,2164177663,2164177919,2164178943,2164179967,2164180991,2164182015,2164182271,2164187135,2164187391,2164187647,2164187903,2164188159,2164189183,2164190207,2164260863,2164326399,2164981759,2165112831,2165178367,2165309439,2165374975,2165440511,2165506047,2165571583,2165637119,2165964799,2166030335,2166095871,2166161407,2166292479,2166358015,2166555391,2166555647,2166559487,2166559743,2166561279,2166561535,2166596351,2166596607,2166610431,2166610687,2166610943,2166611199,2166612991,2166613503,2166613759,2166614015,2166625279,2166625535,2166628095,2166628607,2166630399,2166630911,2166632703,2166633727,2166641919,2166642431,2166647039,2166647807,2166649087,2166649343,2166651135,2166651391,2166651647,2166652159,2166653439,2166653951,2166654463,2166654975,2166657279,2166657535,2166661375,2166661887,2166662655,2166662911,2166663423,2166663679,2166665727,2166666495,2166668031,2166668287,2166669567,2166669823,2166670335,2166670847,2166672127,2166672383,2166674175,2166674943,2166675967,2166676735,2166681087,2166681343,2166684415,2166684671,2166693631,2166693887,2166711551,2166711807,2166732287,2166732799,2166745087,2166745343,2166959615,2166959871,2166960127,2166962175,2166962431,2166962687,2166963199,2167145727,2167145983,2167209983,2167242751,2167275519,2167930879,2167996415,2168193023,2168258559,2168651775,2168717311,2168782847,2168913919,2169372671,2169438207,2169788671,2169788927,2170028031,2170093567,2170159103,2170224639,2170225407,2170228735,2170230783,2170421247,2170486783,2170552319,2170617855,2170683391,2170814463,2170879999,2170945535,2171011071,2171054591,2171054847,2171076607,2171142143,2172256255,2172272639,2172280831,2172289023,2172321791,2172452863,2172518399,2172583935,2172649471,2172715007,2172780543,2172911615,2172977151,2173058815,2173059071,2173060351,2173060607,2173060863,2173061119,2173061887,2173062143,2173075455,2173075711,2173075967,2173076223,2173076479,2173077247,2173077503,2173077759,2173078527,2173079295,2173079807,2173082367,2173082623,2173082879,2173083135,2173083391,2173084415,2173084671,2173084927,2173085183,2173085695,2173085951,2173086207,2173086463,2173087999,2173088255,2173088767,2173089023,2173089791,2173090047,2173108223,2173173759,2173239295,2173435903,2173501439,2173566975,2173632511,2173698047,2173960191,2173962239,2173963263,2173976575,2173992959,2173993471,2173993983,2173995007,2173997055,2173997567,2173998079,2173998335,2173998591,2173999103,2173999615,2174000127,2174001151,2174003199,2174005247,2174006527,2174007295,2174008319,2174011391,2174013439,2174015231,2174015999,2174016255,2174016511,2174017535,2174025727,2174026751,2174027263,2174027519,2174029823,2174030335,2174030847,2174031871,2174033919,2174034431,2174034943,2174035967,2174038015,2174039039,2174042111,2174043135,2174046207,2174047487,2174050303,2174051327,2174054399,2174055423,2174055935,2174056191,2174056447,2174057471,2174099455,2174107647,2174164991,2174167039,2174169087,2174173183,2174181375,2174189567,2174197759,2174205951,2174214143,2174222335,2174230527,2174300159,2174304255,2174349311,2174349823,2174361599,2174365695,2174369791,2174402559,2174410751,2174418943,2174564863,2174565375,2174681087,2174685183,2174687231,2174689279,2174693375,2174697471,2174713855,2174722047,2174730239,2174738431,2174742527,2174746623,2175336447,2175401983,2175598591,2175664127,2175729663,2175795199,2175860735,2175926271,2175991807,2176057343,2176122879,2176389119,2176389631,2176425983,2176434175,2176450559,2176516095,2176581631,2176862719,2176862975,2176863231,2176893951,2176894463,2176974847,2177105919,2177302527,2177368063,2177630207,2177695743,2177703935,2177710079,2177711103,2177716223,2177720319,2177728511,2177744895,2177761279,2177826815,2177892351,2177957887,2178088959,2178154495,2178285567,2178351103,2178416639,2178482175,2178547711,2178824191,2178824447,2178824703,2178824959,2178825215,2178825727,2178832383,2178832639,2178832895,2178834431,2178835455,2178836479,2178837503,2178838527,2178839551,2178842623,2178844159,2178844415,2178846719,2178847231,2178847743,2178848255,2178850815,2178852863,2178854911,2178855423,2178855935,2178856447,2178856959,2178857983,2178859007,2178862079,2178863103,2178864127,2178992127,2178992383,2178992895,2178993151,2178993407,2178993663,2178994175,2178995455,2178996479,2178996735,2179071999,2179074047,2179076095,2179084287,2179092479,2179096575,2179108863,2179112959,2179121151,2179129343,2179137535,2179141631,2179145727,2179149823,2179150847,2179151871,2179152383,2179152895,2179153919,2179162111,2179162623,2179162879,2179163135,2179163647,2179164159,2179166207,2179167231,2179168255,2179170303,2179182591,2179183103,2179183615,2179184639,2179185151,2179185407,2179185663,2179186431,2179186687,2179195391,2179195647,2179195903,2179196159,2179196415,2179196927,2179198975,2179199487,2179199999,2179200511,2179201023,2179201535,2179202047,2179203071,2179379199,2179379711,2179379967,2179380223,2179384575,2179385343,2179386879,2179387135,2179387391,2179396095,2179396351,2179399423,2179399679,2179465215,2179497983,2179530751,2179596287,2179661823,2179989503,2180186111,2180448255,2180513791,2180579327,2180644863,2180649727,2180649983,2180650495,2180651007,2180653567,2180653823,2180654591,2180654847,2180659711,2180659967,2180660223,2180660479,2180662271,2180662527,2180663039,2180663295,2180671487,2180671743,2180672767,2180673023,2180673279,2180673535,2180674047,2180674303,2180674559,2180676351,2180676607,2180677119,2180677375,2180677631,2180677887,2180678399,2180678655,2180680959,2180681215,2180681983,2180682239,2180682751,2180683007,2180683263,2180684031,2180686335,2180686591,2180687359,2180687615,2180687871,2180688127,2180691711,2180691967,2180700159,2180700415,2180700671,2180700927,2180704767,2180705279,2180706559,2180706815,2180709119,2180709375,2180709887,2180710143,2180887551,2180887807,2180902911,2180903167,2180907007,2180972543,2181038079,2181040127,2181042175,2181044223,2181046271,2181054463,2181056511,2181058559,2181060607,2181061631,2181062655,2181070847,2181087231,2181089279,2181091071,2181091327,2181093375,2181095423,2181097471,2181099519,2181103615,2181824511,2181890047,2182021119,2182086655,2182607871,2182608127,2182608895,2182609151,2182676479,2182742015,2182807551,2182873087,2182938623,2183135231,2183200767,2183266303,2183331839,2183360511,2183361535,2183419391,2183419903,2183462911,2183528447,2183725055,2183725567,2183726079,2183726335,2183727103,2183727359,2183727615,2183727871,2183728127,2183728383,2183728639,2183729151,2183729407,2183729663,2183729919,2183730175,2183730431,2183730687,2183730943,2183731199,2183731455,2183731711,2183731967,2183732223,2183732479,2183732735,2183732991,2183733247,2183733503,2183733759,2183734015,2183734271,2183734527,2183734783,2183735039,2183735295,2183735807,2183736063,2183739903,2183740415,2183740927,2183741183,2183741439,2183741951,2183742463,2183742719,2183742975,2183743231,2183743487,2183743743,2183743999,2183744255,2183744511,2183744767,2183745023,2183745279,2183745535,2183745791,2183746047,2183746303,2183746559,2183746815,2183747583,2183747839,2183748095,2183748607,2183748863,2183749119,2183749631,2183749887,2183750143,2183750399,2183750655,2183750911,2183751167,2183751423,2183751679,2183752191,2183752447,2183752703,2183754239,2183754495,2183754751,2183755007,2183755263,2183755519,2183755775,2183756031,2183756287,2183756543,2183757055,2183757567,2183757823,2183758847,2183759103,2183759359,2183760383,2183761919,2183762175,2183762431,2183762687,2183762943,2183763199,2183763455,2183763711,2183763967,2183764223,2183764479,2183764735,2183764991,2183765247,2183765503,2183766015,2183766271,2183766527,2183766783,2183767039,2183767295,2183767551,2183768575,2183768831,2183769087,2183769343,2183769599,2183769855,2183770111,2183770367,2183770623,2183770879,2183771135,2183771391,2183771647,2183772159,2183772415,2183772671,2183773183,2183773439,2183773695,2183773951,2183774207,2183775999,2183776255,2183776767,2183777023,2183777279,2183777791,2183778047,2183778303,2183778559,2183779071,2183779327,2183779583,2183779839,2183780095,2183780351,2183780607,2183780863,2183781119,2183781631,2183781887,2183782399,2183783167,2183783423,2183783679,2183783935,2183784191,2183784447,2183784703,2183784959,2183785215,2183785727,2183785983,2183786239,2183786495,2183786751,2183787007,2183787263,2183787519,2183787775,2183788031,2183788287,2183788543,2183789055,2183789311,2183856127,2183888895,2183905279,2183921663,2183975167,2183975423,2184383487,2184385535,2184389119,2184389631,2184392703,2184413183,2184418303,2184419327,2184427519,2184428543,2184441855,2184442879,2184445439,2184445695,2184577023,2184642559,2184708095,2184773631,2184904703,2185035775,2185036031,2185036287,2185036543,2185036799,2185037055,2185037823,2185101311,2185166847,2185232383,2185363455,2185428991,2185494527,2185560063,2185625599,2185822207,2185887743,2185953279,2186018815,2186149887,2186215423,2186280959,2186412031,2186477567,2186543103,2186608639,2186739711,2186805247,2186870783,2186936319,2187067391,2187132927,2187182079,2187198463,2187198719,2187207167,2187207423,2187208191,2187208447,2187209983,2187210239,2187212031,2187212287,2187215103,2187215359,2187216639,2187216895,2187219967,2187220223,2187220735,2187221247,2187222271,2187222527,2187223295,2187223551,2187224575,2187224831,2187225087,2187225343,2187225855,2187226111,2187226367,2187226623,2187227391,2187227647,2187228415,2187228671,2187228927,2187229183,2187229439,2187229695,2187230463,2187230719,2187231999,2187232255,2187233791,2187234047,2187235839,2187236095,2187237119,2187237375,2187238655,2187238911,2187239423,2187239679,2187239935,2187240191,2187241471,2187241727,2187242751,2187243007,2187244799,2187245055,2187246591,2187246847,2187248895,2187249151,2187250175,2187250431,2187253247,2187253503,2187256319,2187256575,2187256831,2187257343,2187258367,2187258623,2187261439,2187261695,2187262463,2187262975,2187263999,2187329535,2187460607,2187526143,2187591679,2187635711,2187635967,2187657215,2187722751,2187788287,2187853823,2187919359,2187984895,2188378111,2188443647,2188509183,2188574719,2188640255,2188705791,2188707071,2188707839,2188708863,2188709375,2188709887,2188711935,2188712447,2188712703,2188713983,2188714495,2188715007,2188715263,2188715519,2188715775,2188716031,2188718079,2188719103,2188719615,2188720127,2188722175,2188723199,2188723455,2188724223,2188724735,2188724991,2188725247,2188726271,2188727039,2188727295,2188727551,2188727807,2188728063,2188728319,2188729087,2188729343,2188730367,2188730623,2188730879,2188731391,2188732671,2188732927,2188733439,2188733695,2188733951,2188734207,2188734463,2188734719,2188735743,2188735999,2188736255,2188736511,2188737791,2188738047,2188738303,2188738559,2188738815,2188739071,2188739583,2188739839,2188740863,2188742655,2188743423,2188743679,2188743935,2188744191,2188744703,2188745471,2188745727,2188745983,2188746751,2188747007,2188747263,2188747519,2188748287,2188748543,2188749055,2188749311,2188749567,2188749823,2188750847,2188751103,2188751615,2188751871,2188752127,2188752895,2188753151,2188753407,2188754943,2188755711,2188757503,2188757759,2188759295,2188759551,2188759807,2188760063,2188760831,2188761087,2188761599,2188762111,2188763135,2188764159,2188764415,2188765183,2188766719,2188766975,2188767231,2188768255,2188769023,2188769535,2188770303,2188770815,2188902399,2188967935,2189099007,2189164543,2189230079,2189295615,2189492223,2189623295,2189688831,2189754367,2189819903,2189950975,2190016511,2190044159,2190044415,2190046719,2190046975,2190049023,2190049279,2190082047,2190737407,2190802943,2190868479,2191065087,2191130623,2191143679,2191143935,2191169279,2191169535,2191196159,2191261695,2191392767,2191458303,2191523839,2191589375,2191654911,2191663103,2191671295,2191678463,2191678975,2191687679,2191695871,2191704063,2191706111,2191708159,2191720447,2191818751,2191851519,2192244735,2192244991,2192454911,2192455935,2192459519,2192460031,2192460287,2192460543,2192572415,2192572671,2192572927,2192573183,2192573439,2192573951,2192574207,2192574463,2192574719,2192574975,2192575743,2192575999,2192576255,2192576511,2192576767,2192577535,2192577791,2192578559,2192578815,2192579071,2192579327,2192579583,2192580095,2192580351,2192580607,2192580863,2192581119,2192581375,2192581631,2192581887,2192582143,2192582399,2192582655,2192582911,2192583423,2192583679,2192583935,2192584191,2192585983,2192586495,2192587007,2192591615,2192591871,2192592127,2192594431,2192595199,2192595455,2192595711,2192596223,2192596479,2192596991,2192597503,2192597759,2192598015,2192598527,2192599039,2192599551,2192599807,2192600063,2192600319,2192600831,2192601087,2192601343,2192601599,2192602623,2192602879,2192603135,2192603391,2192604415,2192604927,2192605439,2192605695,2192605951,2192606207,2192606463,2192606975,2192607231,2192608767,2192609023,2192609279,2192609535,2192609791,2192610047,2192610303,2192610559,2192610815,2192611071,2192611327,2192611583,2192612095,2192612351,2192612607,2192612863,2192613375,2192613631,2192613887,2192614399,2192614655,2192614911,2192615167,2192615423,2192615935,2192616191,2192616703,2192619007,2192619263,2192620287,2192620543,2192620799,2192621311,2192621567,2192621823,2192622079,2192624127,2192624383,2192624639,2192624895,2192625663,2192625919,2192626175,2192626431,2192626687,2192627455,2192627711,2192627967,2192628223,2192628479,2192628991,2192629247,2192629503,2192629759,2192630015,2192630271,2192630527,2192630783,2192631039,2192631295,2192631807,2192632063,2192632319,2192637439,2192637695,2192769023,2192834559,2192867327,2192883711,2192885759,2192887807,2192891903,2193031167,2193096703,2193162239,2193178623,2193180671,2193182719,2193184767,2193186815,2193188863,2193191935,2193192447,2193192959,2193193983,2193195007,2193199103,2193201151,2193202687,2193202943,2193203199,2193205247,2193206271,2193207295,2193208831,2193209343,2193211391,2193222143,2193222399,2193223167,2193223423,2193223679,2193225983,2193226239,2193226495,2193226751,2193227263,2193227519,2193227775,2193235967,2193244159,2193260543,2193358847,2193424383,2193489919,2193504255,2193505279,2193555455,2193620991,2193686527,2193686783,2193687039,2193687295,2193687551,2193688063,2193688319,2193688575,2193692671,2193694719,2193704959,2193705215,2193705471,2193705727,2193705983,2193706239,2193706495,2193706751,2193707007,2193711103,2193713151,2193713407,2193714175,2193714431,2193715199,2193717247,2193719295,2193752063,2193817599,2193825791,2193829887,2193830911,2193832191,2193832447,2193832959,2193833983,2193834239,2193866751,2193868799,2193870847,2193871871,2193872383,2193874943,2193879039,2193880575,2193880831,2193881087,2193881343,2193882111,2193883135,2194014207,2194014719,2194014975,2194015487,2194016255,2194021119,2194021375,2194023423,2194026751,2194027007,2194030591,2194047231,2194047487,2194048767,2194049279,2194049535,2194049791,2194050815,2194051071,2194051583,2194051839,2194052095,2194052607,2194053119,2194053887,2194055679,2194056191,2194056447,2194056703,2194056959,2194058495,2194059007,2194059263,2194059519,2194060031,2194060287,2194060543,2194060799,2194061055,2194061567,2194062847,2194064639,2194065407,2194065663,2194066943,2194067199,2194067455,2194067711,2194067967,2194068223,2194068991,2194069247,2194069759,2194070783,2194072831,2194073087,2194075391,2194075647,2194076415,2194076671,2194077695,2194078207,2194079231,2194079743,2194407423,2194472959,2194538495,2194604031,2194669567,2194735103,2194800639,2194878463,2194894847,2194927615,2194931711,2194997247,2195062783,2195070975,2195071487,2195083263,2195083775,2195089919,2195090943,2195092991,2195093503,2195093759,2195097087,2195097599,2195099135,2195099647,2195107327,2195107839,2195108351,2195110399,2195112959,2195113471,2195115519,2195116031,2195116543,2195119615,2195120127,2195122687,2195123199,2195123711,2195124223,2195124735,2195125247,2195126783,2195127295,2195127807,2195193855,2195324927,2195455999,2195521535,2195652607,2195718143,2195783679,2196045823,2196111359,2196439039,2197046783,2197047039,2197050623,2197050879,2197062143,2197062399,2197075711,2197075967,2197089279,2197089535,2197090303,2197090559,2197094399,2197159935,2197225471,2197297151,2197297663,2197298175,2197298687,2197303295,2197303807,2197304319,2197304831,2197305343,2197305855,2197306367,2197306879,2197307391,2197308671,2197308927,2197309951,2197310463,2197310719,2197310975,2197311487,2197311999,2197312511,2197313023,2197313535,2197314047,2197315583,2197318655,2197319167,2197320703,2197321215,2197321727,2197322239,2197322751,2197323775,2197449471,2197449727,2197449983,2197450239,2197456127,2197456639,2197458943,2197460991,2197462271,2197462527,2197465599,2197466111,2197466623,2197467135,2197472511,2197472767,2197480447,2197481471,2197487615,2197553151,2197610495,2197614591,2197700607,2197704703,2197705215,2197705727,2197706239,2197708799,2197709055,2197709823,2197710079,2197710335,2197710591,2197711103,2197711359,2197711615,2197711871,2197712127,2197712383,2197712639,2197712895,2197713663,2197713919,2197714175,2197714687,2197714943,2197715199,2197715455,2197716223,2197716479,2197716735,2197716991,2197749759,2197751807,2197753855,2197757951,2197766143,2197768191,2197770239,2197772287,2197774335,2197776383,2197778431,2197780479,2197782527,2197786623,2197788671,2197790719,2197792767,2197793023,2197793279,2197793535,2197793791,2197794047,2197794303,2197794559,2197794815,2197796863,2197798911,2197815295,2197816319,2197828607,2197829631,2197833727,2197834751,2197841919,2197842943,2197843967,2197848063,2197850111,2197851135,2197858303,2197859071,2197859327,2197860351,2197865471,2197866495,2197869567,2197870591,2197874687,2197875711,2197876735,2197880831,2197940223,2197940735,2197940991,2197941503,2197942015,2197942271,2197946367,2202533887,2202534911,2202540031,2202541055,2202542079,2202552319,2202553343,2202554367,2202562559,2202563583,2202567679,2202568703,2202569727,2202573823,2202574847,2202576895,2202577919,2202586111,2202587135,2202588159,2202589183,2202591231,2202592255,2202593279,2202595327,2202596351,2202599423,2204172287,2204237823,2204303359,2204368895,2204369151,2204369407,2204369663,2204369919,2204376063,2204377087,2204378111,2204379135,2204381183,2204382207,2204385279,2204386303,2204391423,2204392447,2204394495,2204395519,2204396543,2204397567,2204404735,2204405759,2204409855,2204410879,2204414975,2204415999,2204417023,2204434431,2204499967,2204565503,2204567039,2204567807,2204569087,2204569599,2204573695,2204573951,2204574975,2204575231,2204577023,2204577279,2204578559,2204578815,2204580351,2204580607,2204584703,2204584959,2204586239,2204586495,2204586751,2204587007,2204587775,2204588031,2204589823,2204590079,2204590591,2204591103,2204595967,2204596223,2204597247,2204597503,2204599295,2204599551,2204599807,2204600063,2204602623,2204602879,2204603391,2204603647,2204604159,2204604415,2204605439,2204605695,2204606463,2204606719,2204607231,2204607487,2204607743,2204608255,2204610047,2204610303,2204611071,2204611327,2204612607,2204612863,2204613631,2204614143,2204615423,2204615679,2204621567,2204621823,2204622079,2204622335,2204623359,2204623871,2204624127,2204624383,2204625151,2204625407,2204626175,2204626431,2204626687,2204626943,2204631039,2204696575,2204893183,2204894207,2204895231,2204897279,2204898303,2204899327,2204902399,2204903423,2204904447,2204910591,2204911615,2204913663,2204914687,2204929023,2204930047,2204936191,2204937215,2204942335,2204943359,2204946431,2204947455,2204952575,2204953599,2204954623,2204958719,2205089791,2205155327,2205286399,2205351935,2205483007,2205515775,2205519871,2205523967,2205526015,2205528063,2205530111,2205532159,2205534207,2205536255,2205538303,2205540351,2205548543,2205614079,2205614335,2206040063,2206041599,2206041855,2206043903,2206044159,2206072831,2206269439,2206334975,2206400511,2206466047,2207121407,2207449087,2207514623,2207776767,2207842303,2207852543,2207853055,2207854079,2207855615,2207860991,2207861247,2207861759,2207862015,2207906047,2207906303,2207907839,2207973375,2208038911,2208235519,2208301055,2208366591,2208379903,2208380927,2208381951,2208387071,2208388095,2208389119,2208390143,2208392191,2208393215,2208404479,2208405503,2208406527,2208413695,2208414719,2208417791,2208418047,2208418815,2208422911,2208423935,2208425983,2208428031,2208429055,2208430079,2208431103,2208432127,2208497663,2208563199,2208694271,2208707583,2208707839,2208720895,2208721151,2208721407,2208737023,2208737279,2208754687,2208754943,2208755711,2208755967,2208759807,2208890879,2208956415,2209021951,2209087487,2209153023,2209218559,2209284095,2209349631,2209349887,2209356287,2209356799,2209357823,2209358847,2209360639,2209360895,2209363455,2209363711,2209363967,2209364223,2209364991,2209365503,2209366783,2209367039,2209368063,2209368319,2209368831,2209369087,2209369855,2209372159,2209373951,2209374463,2209376255,2209377279,2209377791,2209379839,2209381375,2209382399,2209383679,2209383935,2209384191,2209384703,2209384959,2209385215,2209385471,2209386239,2209386495,2209387775,2209388031,2209388543,2209388799,2209389055,2209389311,2209390591,2209392639,2209393151,2209393407,2209399295,2209399551,2209400575,2209400831,2209401599,2209402111,2209402623,2209402879,2209403135,2209404159,2209404415,2209404671,2209404927,2209406975,2209407231,2209407999,2209408767,2209409023,2209409279,2209411839,2209412095,2209413631,2209413887,2209414399,2209414655,2209415167,2209480703,2209546239,2209611775,2209677311,2209742847,2209939455,2210004991,2210009087,2210013183,2210017279,2210019327,2210021375,2210031615,2210031871,2210032127,2210032895,2210034431,2210034687,2210136063,2210201599,2210267135,2210594815,2210660351,2210661375,2210662399,2210664447,2210668543,2210668799,2210669055,2210669311,2210669567,2210670591,2210673663,2210674687,2210675711,2210676735,2210678783,2210679807,2210680831,2210681855,2210689023,2210690047,2210704383,2210705151,2210705407,2210706431,2210707455,2210708479,2210709503,2210710527,2210713599,2210715647,2210722815,2210725887,2210987007,2210987263,2211053567,2211119103,2211184639,2211250175,2211315711,2211381247,2211446783,2211643391,2211708927,2211774463,2211839999,2212036607,2212102143,2212233215,2212298751,2212299775,2212300799,2212301823,2212302847,2212303871,2212304895,2212305919,2212306943,2212307967,2212308991,2212310015,2212315135,2212316159,2212327423,2212328447,2212335615,2212336639,2212337663,2212338687,2212340735,2212341759,2212364287,2212495359,2212560895,2212628479,2212630527,2212636671,2212636927,2212637183,2212638463,2212642815,2212646655,2212646911,2212659199,2212691967,2212757503,2212759551,2212759807,2212760063,2212760575,2212761599,2212762623,2212764927,2212765183,2212765695,2212766719,2212767231,2212767487,2212769791,2212770815,2212771839,2212772863,2212779519,2212780031,2212782079,2212782335,2212784127,2212784639,2212785151,2212785407,2212788223,2212790271,2212799743,2212799999,2212800255,2212803839,2212804095,2212804351,2212804607,2212806655,2212808703,2212812799,2212813055,2212816383,2212816639,2212816895,2212817151,2212823039,2212954111,2213019647,2213085183,2213150719,2213216255,2213281791,2213347327,2213412863,2213675007,2213740543,2213806079,2213937151,2214002687,2214068223,2214133759,2214264831,2214330367,2214398975,2214399231,2214414847,2214415359,2214418687,2214418943,2214419711,2214419967,2214427391,2214427647,2214431487,2214431743,2214432767,2214433023,2214434047,2214434303,2214437887,2214438143,2214442239,2214442495,2214453247,2214453503,2214455295,2214456063,2214459391,2214459647,2214460415,2214461439,2214526975,2214527999,2214529023,2214530047,2214531071,2214531327,2214532095,2214537215,2214538239,2214542335,2214543359,2214553599,2214554623,2214559743,2214560255,2214561791,2214562815,2214573055,2214574079,2214576127,2214577151,2214588415,2214588927,2214590463,2214591487,2214592511,2218786815,2219769855,2224097279,2224115711,2224119807,2224123903,2224127999,2224152575,2224160767,2224226303,2224242687,2224255999,2224256255,2224259071,2224283647,2224287743,2224291839,2224357375,2224422911,2224488447,2224619519,2224685055,2224750591,2224816127,2224881663,2224947199,2225340415,2225405951,2225733631,2225799167,2225864703,2226039295,2226039551,2226039807,2226040063,2226040319,2226040575,2226041087,2226041343,2226041599,2226041855,2226126847,2226192383,2226323455,2226388991,2226454527,2226520063,2226585599,2226651135,2226716671,2226782207,2226913279,2227103743,2227103999,2227109887,2227175423,2227372031,2227437567,2227503103,2227634175,2227699711,2227830783,2229010431,2229075967,2229141503,2229207039,2229338111,2229403647,2229407743,2229409791,2229436415,2229438463,2229444607,2229446655,2229448703,2229452799,2229456895,2229458943,2229460991,2229465087,2229469183,2229534719,2229600255,2229665791,2229796863,2229862399,2229927935,2229993471,2230168319,2230168575,2230583295,2230603775,2230608127,2230637567,2230638591,2230648831,2230659071,2230659327,2230659583,2230659839,2230660095,2230681599,2230682111,2230685695,2230685951,2230688255,2230688767,2230689023,2230689791,2230690047,2230690559,2230690815,2230691071,2230691327,2230702591,2230702847,2230703103,2230703359,2230706175,2230707199,2230707711,2230708223,2230714367,2230779903,2230910975,2231042047,2231099391,2231107583,2231173119,2231238655,2231304191,2231305215,2231307263,2231309311,2231310335,2231321599,2231322623,2231332863,2231333887,2231335935,2231336959,2231337983,2231339007,2231346175,2231347199,2231355391,2231356415,2231357439,2231358463,2231361535,2231362559,2231364607,2231365631,2231369727,2248146943,2248148991,2248151039,2248153087,2248155135,2248163327,2248165375,2248167423,2248169471,2248171519,2248177663,2248179711,2248203007,2248203519,2248212479,2248409087,2248605695,2248671231,2249261055,2249326591,2249392127,2249424895,2249426943,2249428991,2249433087,2249435135,2249437183,2249441279,2249443327,2249445375,2249449471,2249457663,2249523199,2249588735,2249720575,2249720831,2249723903,2249724415,2249751551,2249751807,2249760255,2249760511,2249765631,2249765887,2249766143,2249766655,2249767423,2249767935,2249768191,2249768447,2249768703,2249785343,2249850879,2249916415,2249981951,2250047487,2250113023,2250178559,2250309631,2250375167,2250440703,2250506239,2250571775,2250637311,2250833919,2250899455,2250956799,2250957055,2250957311,2250957567,2250957823,2250958335,2250958847,2250959103,2250959359,2250959615,2250960895,2251227135,2251292671,2251685887,2251751423,2251948031,2252013567,2252079103,2252210175,2252410879,2252414975,2252419071,2252420095,2252421119,2252423167,2252439551,2252447743,2252448767,2252449791,2252450815,2252451071,2252451839,2252453887,2252464127,2252472319,2252744703,2252747775,2252748799,2252751871,2252752895,2252753919,2252754943,2252755967,2252756991,2252758015,2252759039,2252760063,2252761087,2252762111,2252763135,2252764159,2252765183,2252766207,2252767231,2252768255,2252769279,2252770303,2252771327,2252773375,2252774399,2252775423,2252776447,2252777471,2252778495,2252779519,2252780543,2252781567,2252782591,2252785663,2252786175,2253062143,2253127679,2253193215,2253455359,2253520895,2253586431,2253651967,2253848575,2253914111,2254045183,2254077951,2254079999,2254082047,2254082559,2254082815,2254083071,2254083327,2254083583,2254084095,2254094335,2254098431,2254100479,2254102527,2254110719,2255421439,2255486975,2255552511,2255683583,2255749119,2255814655,2255880191,2255945727,2255946239,2255946495,2255947519,2255947775,2255950591,2255950847,2255956223,2255956479,2255956735,2255956991,2255957247,2255957503,2255959551,2255959807,2255990783,2256003071,2256005375,2256006911,2256007935,2256008191,2256009471,2256009983,2256011263,2256150527,2256154623,2256158719,2256166911,2256171007,2256175103,2256187903,2256188159,2256188927,2256189439,2256191231,2256191487,2256192767,2256193023,2256193535,2256193791,2256194559,2256195583,2256207871,2256535551,2256543743,2256551935,2256601087,2256666623,2256732159,2256816127,2256816383,2257190911,2257256447,2257453055,2257518591,2257584127,2257586687,2257586943,2257646591,2257646847,2257647103,2257649663,2257668351,2257668607,2257668863,2257669119,2257697791,2257698303,2257699327,2257699839,2257715455,2257715711,2257715967,2257716223,2257716735,2257716991,2257717247,2257718015,2257718271,2257718527,2257718783,2257731839,2257735679,2257737983,2257739007,2257739263,2257739775,2257747967,2257752063,2257762815,2257763327,2257764863,2257765119,2257765631,2257765887,2257772031,2257772287,2257780735,2257846271,2257911807,2257977343,2258042879,2258108415,2258173951,2258239487,2258305023,2258370559,2258436095,2258567167,2258567679,2258567935,2258568191,2258568703,2258568959,2258569215,2258570239,2258570495,2258570751,2258571007,2258571519,2258571775,2258573823,2258574591,2258575359,2258575615,2258575871,2258576127,2258576639,2258576895,2258577407,2258578943,2258579455,2258580991,2258581247,2258581503,2258582015,2258582271,2258582783,2258583551,2258584575,2258584831,2258585087,2258585599,2258586623,2258587647,2258588671,2258589951,2258590207,2258590719,2258591487,2258591743,2258592255,2258592511,2258592767,2258593023,2258593279,2258593535,2258593791,2258594047,2258595071,2258595327,2258596095,2258597887,2258598655,2258598911,2258599935,2258600447,2258601983,2258602239,2258602495,2258602751,2258603263,2258603775,2258605567,2258605823,2258606079,2258606591,2258607615,2258608127,2258608383,2258608639,2258609919,2258610175,2258610687,2258610943,2258611199,2258611455,2258611711,2258611967,2258612223,2258613759,2258615295,2258616831,2258617343,2258617855,2258618367,2258618879,2258620159,2258620415,2258621951,2258622463,2258622719,2258623231,2258623487,2258624511,2258626047,2258626559,2258628607,2258629119,2258629375,2258629887,2258630655,2258631679,2258631935,2258632447,2258632703,2258698239,2258766847,2258767103,2258789119,2258789631,2259222527,2259288063,2259304447,2259304959,2259305471,2259306239,2259308543,2259312639,2259314687,2259321855,2259322111,2259331071,2259333119,2259334655,2259334911,2259337215,2259339263,2259342335,2259342847,2259343359,2259343615,2259343871,2259352575,2259353343,2259353599,2259419135,2259451903,2259615743,2259681279,2259746815,2259812351,2259877887,2259943423,2260008959,2260140031,2260205567,2260271103,2260467711,2260533247,2260598783,2260664319,2260711935,2260712447,2260713983,2260714495,2260723711,2260725759,2260728063,2260728575,2260729855,2260934655,2260935679,2260938751,2260939775,2260955135,2260956159,2260961535,2260961791,2260963327,2260965375,2260967423,2260969727,2260970495,2260972543,2260974079,2260974335,2260974591,2260975615,2260976639,2260977407,2260977663,2260982783,2260983807,2260987903,2260988927,2260989951,2260990975,2260991999,2261057535,2261196799,2261204991,2261393407,2261393663,2261401599,2261409791,2261413887,2261420031,2261422079,2261434367,2261442559,2261446655,2261450751,2261516287,2261565695,2261565951,2261569535,2261570047,2261573631,2261574143,2261576703,2261577727,2261647359,2261712895,2261778431,2261843967,2261848063,2261852159,2261864447,2261868543,2261872639,2261877759,2261879807,2261880831,2261884927,2261889023,2261893119,2261897215,2261901311,2261909503,2261975039,2262040575,2262106111,2262171647,2262237183,2262401023,2262401279,2262401535,2262402047,2262403071,2262404095,2262409215,2262409471,2262409727,2262411263,2262414335,2262415359,2262416383,2262499327,2262630399,2262761471,2262892543,2262958079,2263023615,2263089151,2263613439,2263678975,2263744511,2263744767,2263745279,2263746559,2263747071,2263747583,2263748095,2263749631,2263750143,2263750655,2263750911,2263751167,2263751423,2263751935,2263752959,2263753215,2263753471,2263754239,2263754495,2263755263,2263755519,2263756031,2263756287,2263756543,2263756799,2263757055,2263757311,2263757567,2263758591,2263758847,2263759359,2263759615,2263760127,2263760639,2263761407,2263761919,2263762431,2263762943,2263763455,2263763711,2263764223,2263764735,2263767807,2263768063,2263768831,2263769343,2263769855,2263770367,2263771135,2263771647,2263772415,2263773439,2263773951,2263774207,2263774975,2263775487,2263775999,2263776511,2263777023,2263777535,2263778047,2263778559,2263779327,2263779839,2263780095,2263780607,2263780863,2263781119,2263781375,2263781631,2263782911,2263783167,2263783423,2263783679,2263783935,2263784191,2263784447,2263784703,2263784959,2263785215,2263785727,2263788799,2263789567,2263789823,2263790335,2263793919,2263794431,2263797247,2263797503,2263797759,2263798783,2263799295,2263799807,2263800063,2263800319,2263800575,2263800831,2263801087,2263801343,2263801599,2263801855,2263802623,2263802879,2263803391,2263803647,2263803903,2263804159,2263804927,2263805183,2263805439,2263805695,2263805951,2263806463,2263806719,2263806975,2263807487,2263807743,2263807999,2263808255,2263808511,2263808767,2263809023,2263809535,2263809791,2263810047,2263875583,2264203263,2264268799,2264334335,2264399871,2264465407,2264530943,2264858623,2264891391,2264899583,2264905727,2264907775,2264908799,2264909311,2264909567,2264909823,2264911871,2264912383,2264912639,2264912895,2264913407,2264913663,2264913919,2264915711,2264915967,2264920063,2264920319,2264920575,2264920831,2264921087,2264921343,2264921855,2264922111,2264922623,2264922879,2264923135,2264924159,2264989695,2265186303,2265251839,2265317375,2265448447,2265710591,2265776127,2265841663,2265891839,2265892095,2265897215,2265897471,2266103807,2266169343,2266234879,2266431487,2266497023,2268594175,2268594431,2269773823,2269774079,2270433279,2270437375,2270442495,2270443519,2270449407,2270449663,2270455807,2270456831,2270461695,2270461951,2270463999,2270465023,2270472447,2270472703,2270474239,2270476287,2270477311,2270478335,2270482431,2270484479,2270488319,2270488575,2270490623,2270494719,2270560255,2270626303,2270626815,2270630143,2270630655,2270634751,2270635007,2270691327,2270756863,2270822399,2270822911,2270823167,2270823423,2270825727,2270825983,2270826239,2270826495,2270828031,2270828287,2270829311,2270830079,2270832127,2270832383,2270833663,2270833919,2270836223,2270836479,2270838271,2270841343,2270841599,2270850815,2270851071,2270855167,2270855423,2270855679,2270856447,2270857215,2270857471,2270858751,2270859007,2270872063,2270872319,2270872575,2270873855,2270874623,2270874879,2270875135,2270875391,2270875647,2270877951,2270878207,2270879487,2270880255,2270880511,2270880767,2270881535,2270881791,2270882047,2270882815,2270883327,2270883839,2270885631,2270886399,2271019007,2271084543,2272395263,2272460799,2272526335,2272591871,2272657407,2272788479,2273116159,2273122815,2273123071,2273134847,2273135103,2273148927,2273164799,2273165055,2273181695,2273379327,2273379583,2273406975,2273407231,2273407487,2273407743,2273407999,2273408255,2273408511,2273408767,2273409023,2273409279,2273409535,2273409791,2273410047,2273410815,2273411071,2273435647,2273439743,2273443839,2273509375,2274689023,2274754559,2276024319,2276024575,2276025343,2276025855,2276031231,2276031487,2276130815,2276196351,2276786175,2276851711,2277048319,2277113855,2277769215,2277834751,2279342079,2279407615,2279473151,2279538687,2279604223,2279800831,2279931903,2280062975,2280128511,2280521727,2280652799,2280783871,2280914943,2280980479,2281010431,2281010687,2281619455,2281635839,2281701375,2281702399,2281703423,2281703679,2281703935,2281704191,2281704447,2281705471,2281711103,2281711359,2281711615,2281713151,2281713407,2281716223,2281716479,2281718015,2281718271,2281721343,2281721599,2281724415,2281724671,2281725695,2281725951,2281726207,2281729535,2281729791,2281731071,2281731327,2281732351,2281732607,2281732863,2281733119,2281734911,2281735167,2281735423,2281735679,2281736959,2281737215,2281738239,2281738495,2281741055,2281741311,2281742079,2281742335,2281742591,2281742847,2281747199,2281747455,2281747711,2281747967,2281748735,2281748991,2281750015,2281750527,2281750783,2281752063,2281752575,2281762559,2281762815,2281764863,2281765119,2281765631,2281765887,2282885631,2282885887,2282886143,2282886399,2282886655,2282886911,2282887167,2282915327,2282915839,2282916863,2282917375,2283151359,2283159551,2283164927,2283165183,2283167999,2283168255,2283169279,2283169535,2283203839,2283204095,2283208703,2283210239,2283210751,2283211007,2283211263,2283212287,2283212543,2283213311,2283213567,2283217407,2283217919,2291073023,2291105791,2291108863,2291109887,2291116031,2291117055,2291122943,2291123199,2291126271,2291130367,2291134463,2291138559,2291142655,2291142911,2291143167,2291143423,2291143679,2291144191,2291144703,2291144959,2291145215,2291145471,2291146239,2291146751,2291147007,2291147263,2291147519,2291147775,2291148799,2291149055,2291149311,2291149823,2291150847,2291151359,2291151871,2291152383,2291154431,2291154943,2291163135,2291163647,2291164671,2291165183,2291165695,2291166207,2291171327,2291204095,2291269631,2291400703,2291466239,2291728383,2291859455,2291924991,2291974143,2291990527,2292056063,2292121599,2292187135,2292383743,2292449279,2292514815,2292776959,2292809727,2292842495,2292973567,2293039103,2293104639,2293180415,2293182463,2293187583,2293188607,2293190143,2293190399,2293191679,2293198847,2293199103,2293199871,2293200895,2293203967,2293206015,2293208063,2293209087,2293214207,2293215231,2293216255,2293216511,2293218047,2293218303,2293225215,2293225471,2293227007,2293227263,2293227519,2293227775,2293228287,2293228543,2293231615,2293231871,2293825535,2293891071,2293956607,2294022143,2294677503,2294743039,2294808575,2294874111,2294939647,2295201791,2295267327,2296446975,2296451071,2296512511,2296513023,2296528383,2296528895,2296531967,2296532479,2296541183,2296541695,2296545791,2296546815,2296547839,2296548863,2296552447,2296552959,2296553471,2296553983,2296555007,2296556031,2296557055,2296558079,2296559103,2296560127,2296561151,2296561663,2296562687,2296563199,2296563711,2296567295,2296567807,2296568319,2296569343,2296569855,2296570367,2296570879,2296571391,2296572415,2296573439,2296573951,2296574463,2296575487,2296575999,2296576511,2296578047,2296645119,2296645375,2296645631,2296645887,2296646143,2296646399,2296646655,2296646911,2296647167,2296647423,2296647679,2296647935,2296648447,2296648703,2296648959,2296649215,2296649471,2296649727,2296649983,2296650239,2296650495,2296650751,2296651007,2296651263,2296676351,2296680447,2296680703,2296684543,2296688639,2296691199,2296691711,2296694015,2296694271,2296696831,2296697087,2296697343,2296697599,2296697855,2296698111,2296698367,2296698623,2296698879,2296699135,2296699391,2296699647,2296699903,2296700159,2296700415,2296700671,2296700927,2296701439,2296701695,2296701951,2296702207,2296702463,2296702975,2296703999,2296704255,2296704511,2296704767,2296705023,2296705279,2296705535,2296705791,2296706047,2296707071,2296707583,2296708095,2296774655,2296840191,2296905727,2297036799,2297298943,2297346815,2297347071,2297364479,2297397247,2297430015,2297626623,2297692159,2297708543,2297712639,2297716735,2297720831,2297724927,2298413055,2298478591,2299461631,2299527167,2299592703,2299658239,2299961343,2299969535,2300641279,2300706815,2300772351,2300837887,2301100031,2301165567,2301296639,2301362175,2301427711,2301558783,2301624319,2301755391,2301820927,2302083071,2302214143,2302279679,2302345215,2302346239,2302347263,2302348287,2302349311,2302350335,2302351359,2302357503,2302358527,2302359551,2302360319,2302360575,2302361343,2302361599,2302363647,2302364671,2302365695,2302366463,2302366719,2302367743,2302368767,2302370815,2302371839,2302372863,2302373887,2302374655,2302374911,2302375935,2302376959,2302377983,2302382079,2302383103,2302384127,2302385151,2302386175,2302387199,2302388223,2302389247,2302391295,2302392319,2302393343,2302394367,2302395391,2302396415,2302398463,2302400511,2302404607,2302405631,2302406655,2302408703,2302410239,2302410495,2302410751,2302541823,2302607359,2302624767,2302625791,2302627071,2302627327,2302640127,2302672895,2302738431,2302935039,2303000575,2303262719,2303328255,2303330303,2303330559,2303330815,2303337983,2303338239,2303348735,2303348991,2303354367,2303354623,2303374335,2303374591,2303393791,2303459327,2303524863,2303852543,2303918079,2303918335,2303921151,2303921407,2303921663,2303922175,2303926015,2303926271,2303930367,2303931135,2303932671,2303932927,2303937535,2303937791,2303940351,2303940607,2303941119,2303941375,2303944191,2303944447,2303950847,2303951103,2303951359,2303951615,2303952127,2303952383,2303952895,2303953151,2303953407,2303953663,2303953919,2303954175,2303954431,2303954687,2303955455,2303955711,2303955967,2303956223,2303956479,2303956735,2303956991,2303957247,2303957503,2303958015,2303958271,2303958527,2303958783,2303959039,2303959295,2303959551,2303959807,2303960063,2303960319,2303962111,2303962367,2303963391,2303963647,2303963903,2303964159,2303964415,2303965183,2303965439,2303965695,2303966207,2303966463,2303966719,2303966975,2303968255,2303968511,2303968767,2303969023,2303969279,2303971327,2303971583,2303971839,2303972095,2303972351,2303972607,2303972863,2303973119,2303973631,2303975679,2303976447,2303976959,2303977215,2303977471,2303977727,2303978495,2303978751,2303979775,2303980031,2303980287,2303980543,2303980799,2303981311,2303981567,2303982847,2303983103,2303983359,2303983615,2304507903,2304573439,2304638975,2304704511,2304770047,2304835583,2304901119,2304966655,2305097727,2305163263,2305359871,2305425407,2305556479,2305622015,2305687551,2305753087,2305818623,2306015231,2306080767,2306113535,2306121727,2306125823,2306129919,2306138111,2306146303,2306179071,2306211839,2306342911,2306408447,2306473983,2306539519,2306932735,2306998271,2307129343,2307194879,2307195903,2307196927,2307197951,2307198975,2307199999,2307200511,2307201023,2307201535,2307201791,2307202047,2307202303,2307211263,2307211519,2307225599,2307225855,2307227647,2307260415,2307273471,2307273727,2307281919,2307282175,2307325439,2307325695,2307358719,2307391487,2307522559,2307588095,2308112383,2308177919,2308243455,2308308991,2308505599,2308571135,2308636671,2308702207,2308767743,2308833279,2308898815,2309095423,2309160959,2309226495,2309357567,2309423103,2309564671,2309564927,2309565183,2309685247,2309750783,2309816319,2309881855,2309885951,2309886975,2309887231,2309887999,2309890047,2309891071,2309891327,2309891583,2309892095,2309894143,2309895167,2309895423,2309896191,2309898239,2309899263,2309900287,2309901311,2309902335,2309903359,2309903615,2309903871,2309904383,2309905407,2309906431,2309907455,2309908479,2309909503,2309910527,2309911551,2309912575,2309913599,2309947391,2309980159,2310012927,2310087423,2310087679,2310578175,2310582271,2310600703,2310601727,2310668287,2310733823,2310864895,2310930431,2310995967,2311061503,2311127039,2311192575,2311258111,2311315455,2311319551,2311323647,2311389183,2311704319,2311704575,2311704831,2311705087,2311705599,2311705855,2311706111,2311706367,2311706623,2311716351,2311716607,2311716863,2311847935,2311913471,2311979007,2312044543,2312110079,2312175615,2312437759,2312503295,2312634367,2312699903,2312765439,2312830975,2312896511,2312897535,2312898559,2312900607,2312904703,2312909823,2312910847,2312912895,2312929279,2312931071,2312931327,2312962047,2312968191,2312970239,2312974335,2312978431,2312994815,2313093119,2313158655,2313224191,2313289727,2313355263,2313945087,2314002175,2314002431,2314010623,2314731519,2314797055,2314862591,2314993663,2315059199,2315124735,2315190271,2315255807,2315257855,2315259135,2315259903,2315266047,2315266815,2315267071,2315270143,2315271167,2315278335,2315279359,2315282431,2315283455,2315285503,2315286527,2315287551,2315294719,2315296767,2315302911,2315303935,2315314175,2315315199,2315317247,2315317503,2315317759,2315318271,2315321343,2315322367,2315325439,2315326463,2315331583,2315333631,2315337727,2315338751,2315341823,2315342847,2315348991,2315349247,2315386879,2315403263,2315415551,2315419647,2315436031,2315448319,2315450367,2315452415,2315502591,2315503615,2315505663,2315509759,2315513855,2315517951,2315583487,2315649023,2315714559,2315780095,2315911167,2316042239,2316173311,2316238847,2316500991,2316566527,2316632063,2316697599,2316763135,2316828671,2316959743,2317221887,2317287423,2317359103,2317360127,2317395967,2317396991,2317484031,2317549567,2317615103,2317619199,2317620223,2317621247,2317622271,2317628415,2317629439,2317631487,2317632511,2317634559,2317635583,2317638655,2317639679,2317640703,2317649919,2317650943,2317651967,2317652991,2317654015,2317655039,2317671423,2317672447,2317675519,2317676543,2317679615,2317680639,2317811711,2317877247,2317942783,2318008319,2318074111,2318074879,2318076671,2318076927,2318077183,2318077439,2318077951,2318081023,2318081279,2318082047,2318086143,2318098431,2318098687,2318098943,2318099455,2318099711,2318103295,2318103551,2318123007,2318127103,2318136319,2318137343,2318138367,2318138879,2318139391,2318204927,2318401535,2318467071,2318598143,2318663679,2319122431,2319123455,2319123967,2319124479,2319125503,2319126527,2319127551,2319128575,2319129599,2319138815,2319139839,2319150079,2319151103,2319152127,2319153151,2319156223,2319157247,2319158271,2319159295,2319164415,2319165439,2319167487,2319168511,2319174655,2319175679,2319179775,2319180799,2319184895,2319185919,2319187967,2319319039,2319384575,2319450111,2319515647,2319581183,2319646719,2319728639,2319741951,2319742975,2319743999,2319745023,2319761407,2319764479,2319765503,2319908863,2319974399,2320039935,2320105471,2320171007,2320236543,2320302079,2320367615,2320433151,2320498687,2320564223,2320629759,2320695295,2320769023,2320770047,2320770303,2320770559,2320771071,2320771583,2320772095,2320772607,2320772863,2320773119,2320774143,2320774399,2320774655,2320775423,2320775679,2320775935,2320776191,2320776959,2320777215,2320801791,2320809983,2320812031,2320812799,2320813055,2320814079,2320818175,2321219583,2321227775,2321231871,2321235967,2321416191,2321417215,2321419263,2321420287,2321430527,2321431551,2321446911,2321447935,2321452031,2321453055,2321454079,2321471487,2321472511,2321477631,2321478655,2321479679,2321480703,2321481727,2321547263,2321612799,2321627135,2321628159,2321633279,2321634303,2321648639,2321649663,2321652735,2321653759,2321654783,2321655807,2321656831,2321657855,2321658879,2321663999,2321665023,2321673215,2321674239,2321676287,2321677311,2321678335,2321743871,2321744895,2321745919,2321753087,2321753343,2321753599,2321754111,2321755135,2321756159,2321769471,2321770495,2321774591,2321775615,2321776639,2321777663,2321778687,2321779711,2321780735,2321780991,2321781247,2321781503,2321781759,2321782783,2321787903,2321788927,2321789951,2321790975,2321791999,2321797375,2321797631,2321798143,2321799167,2321800191,2321801215,2321802239,2321804287,2321805311,2321809407,2321874943,2321940479,2322006015,2322071551,2322130431,2322130687,2322202623,2322268159,2322333695,2322368767,2322369023,2322369535,2322370047,2322661375,2322665727,2322665983,2322666239,2322666495,2322667519,2322667775,2322668031,2322668287,2322668799,2322669055,2322680063,2322680319,2322681855,2322682111,2322682367,2322687487,2322687743,2322688767,2322689023,2322689279,2322689535,2322689791,2322691583,2322691839,2322694655,2322694911,2322695679,2322695935,2322698751,2322699007,2322699775,2322700031,2322701311,2322701823,2322702335,2322704127,2322704383,2322707967,2322708223,2322708479,2322710271,2322710527,2322710783,2322711295,2322711551,2322711807,2322713599,2322713855,2322720511,2322720767,2322721279,2322721535,2322721791,2322722559,2322722815,2322723071,2322723327,2322723839,2322724095,2322726399,2322726911,2322923519,2322924543,2322925567,2322929663,2322933759,2322934783,2322935807,2322936831,2322940927,2322941951,2322942975,2322943999,2322945023,2322946047,2322948095,2322949119,2322951167,2322952191,2322953215,2322956287,2322957311,2322958335,2322959359,2322960383,2322961407,2322962431,2322963455,2322964479,2322965503,2322966527,2322967551,2322974719,2322975743,2322981887,2322982911,2322991103,2322992127,2322998271,2322999295,2323001343,2323002367,2323009535,2323010559,2323015679,2323016703,2323017727,2323018751,2323019775,2323020799,2323021823,2323025919,2323026943,2323028991,2323030015,2323040255,2323041279,2323042303,2323045375,2323054591,2323120127,2323185663,2323186687,2323187711,2323188735,2323189759,2323205119,2323209215,2323210239,2323211263,2323213311,2323214335,2323215359,2323217407,2323218431,2323221503,2323222527,2323225599,2323226623,2323227647,2323228671,2323229695,2323230719,2323231743,2323236863,2323237887,2323244031,2323245055,2323247103,2323248127,2323252223,2323253247,2323257343,2323258367,2323275775,2323276799,2323278847,2323279871,2323283967,2323284991,2323288063,2323289087,2323291135,2323292159,2323293183,2323298303,2323299327,2323300351,2323301375,2323302399,2323303423,2323308543,2323309567,2323310591,2323313663,2323314687,2323315711,2323316735,2323382271,2323382783,2323383039,2323383551,2323383807,2323384063,2323384319,2323384575,2323384831,2323385087,2323385599,2323386111,2323386623,2323386879,2323387135,2323387647,2323388159,2323388671,2323389183,2323389439,2323389695,2323389951,2323390207,2323390463,2323390975,2323391487,2323391999,2323392511,2323392767,2323393279,2323393791,2323394815,2323396095,2323396607,2323397119,2323397631,2323398143,2323401727,2323402239,2323402495,2323403263,2323403775,2323404287,2323404799,2323405311,2323406335,2323406847,2323408127,2323408895,2323409663,2323409919,2323410431,2323410943,2323411455,2323411967,2323412479,2323412991,2323413759,2323414271,2323415039,2323419135,2323420159,2323421695,2323422207,2323423231,2323427327,2323427583,2323427839,2323428095,2323428351,2323428863,2323429119,2323429631,2323430143,2323430399,2323431423,2323435519,2323436543,2323439615,2323440639,2323441663,2323443711,2323444991,2323445759,2323446527,2323447295,2323447807,2323653887,2323654143,2323681535,2323681791,2323682303,2323682559,2323682815,2323683071,2323684607,2323684863,2323685119,2323685375,2323690495,2323690751,2323699711,2323700735,2323701759,2323702783,2323708415,2323708671,2323708927,2323775487,2323841023,2323906559,2323972095,2324037631,2324103167,2327379967,2327380991,2327383039,2327384063,2327387135,2327388159,2327396351,2327397375,2327399423,2327400447,2327401471,2327406591,2327407615,2327408639,2327409663,2327410687,2327414783,2327415807,2327416831,2327432191,2327433215,2327434239,2327437311,2327438335,2327443455,2327444479,2327446527,2327447551,2327448575,2327449599,2327450623,2327451647,2327452671,2327453695,2327460863,2327461887,2327462911,2327464959,2327465983,2327468031,2327469055,2327471103,2327472127,2327476223,2327477247,2327480319,2327481343,2327481599,2327481855,2327482111,2327482367,2327483391,2327485439,2327486463,2327487487,2327490559,2327491583,2327493631,2327494655,2327496703,2327497727,2327498751,2327499007,2327499519,2327499775,2327501823,2327507967,2327508991,2327510015,2327511039,2327838719,2327969791,2328035327,2328100863,2328199167,2328211455,2328215551,2328230143,2328230655,2328231935,2328297471,2328297983,2328298495,2328299007,2328299263,2328299519,2328301055,2328301823,2328302079,2328302591,2328302847,2328303615,2328304127,2328304639,2328305663,2328305919,2328306175,2328306431,2328306687,2328307455,2328307711,2328308735,2328309247,2328309503,2328309759,2328310015,2328310271,2328310527,2328310783,2328311039,2328311295,2328311551,2328311807,2328312063,2328312319,2328312575,2328312831,2328313343,2328313599,2328313855,2328314623,2328315135,2328317951,2328322047,2328330239,2328494079,2328559615,2328625151,2328627199,2328628223,2328628735,2328628991,2328629247,2328635391,2328636415,2328652799,2328653823,2328664063,2328667135,2328668159,2328669183,2328671231,2328672255,2328677375,2328678399,2328680447,2328681471,2328683519,2328684543,2328685823,2328686335,2328687615,2328690687,2328756223,2328792063,2328792575,2328808447,2328808703,2328819711,2328819967,2328821759,2329083903,2329149439,2329214975,2329280511,2329346047,2329411583,2329477119,2329542655,2329608191,2329610239,2329611263,2329612287,2329613311,2329617407,2329618431,2329619455,2329622527,2329623551,2329624575,2329626623,2329627135,2329627391,2329627647,2329628671,2329629695,2329638911,2329639423,2329639935,2329644031,2329645055,2329648127,2329649151,2329650175,2329652223,2329653247,2329662463,2329664511,2329666559,2329667583,2329668607,2329671679,2329672703,2329673727,2329739263,2329935871,2330001407,2330066943,2330132479,2330198015,2330263551,2330267647,2330271743,2330288127,2330288383,2330288639,2330292223,2330296319,2330394623,2330460159,2330525695,2330591231,2330656767,2330722303,2330918911,2330984447,2331181055,2331246591,2331443199,2331508735,2331521023,2331525119,2331541503,2331574271,2331639807,2331770879,2331836415,2331901951,2331967487,2331982847,2331983871,2331987967,2331988991,2331990015,2331991039,2331992063,2331992319,2331992575,2331992831,2331993087,2331994111,2331997183,2331998207,2332006399,2332007423,2332010495,2332011519,2332030975,2332031999,2332032255,2332032511,2332033023,2332098559,2332360703,2332365823,2332366847,2332368895,2332369919,2332370943,2332371967,2332374015,2332375039,2332377087,2332378111,2332380159,2332381183,2332382207,2332383231,2332384255,2332385279,2332387327,2332388351,2332388607,2332388863,2332389375,2332390399,2332391423,2332392447,2332393471,2332394495,2332395519,2332396543,2332397567,2332398591,2332400639,2332401663,2332402687,2332403711,2332404735,2332405759,2332406783,2332407039,2332407295,2332407807,2332408831,2332409855,2332410879,2332411903,2332412415,2332412671,2332412927,2332413951,2332414975,2332415999,2332417023,2332418047,2332419071,2332423167,2332424191,2332426239,2332499711,2332499967,2332622847,2332688383,2332753919,2332913407,2332913663,2333560831,2333561087,2333626623,2333626879,2333736959,2333802495,2333869055,2333869311,2333869567,2333869823,2333870079,2333871103,2333872127,2333873151,2333874175,2333874431,2333874687,2333874943,2333875199,2333876223,2333877247,2333878271,2333879295,2333880319,2333881343,2333882367,2333883391,2333884415,2333885439,2333886463,2333887487,2333888511,2333889535,2333890559,2333891583,2333892607,2333893631,2333894655,2333895679,2333896703,2333897727,2333898751,2333899775,2333900799,2333901823,2333902847,2333903103,2333903359,2333903871,2333904895,2333905151,2333905407,2333905663,2333905919,2333906943,2333907967,2333908991,2333910015,2333911039,2333912063,2333913087,2333913343,2333913599,2333913855,2333914111,2333915135,2333916159,2333917183,2333918207,2333919231,2333920255,2333921279,2333922303,2333923327,2333923583,2333923839,2333924095,2333924351,2333924863,2333925375,2333925887,2333926143,2333926399,2333927423,2333927679,2333928447,2333929471,2333930495,2333931519,2333932543,2333933567,2334064639,2334916607,2334982143,2335014911,2335023103,2335023359,2335023871,2335024127,2335024383,2335024639,2335024895,2335025151,2335025407,2335025663,2335025919,2335026175,2335026431,2335026943,2335027199,2335027455,2335027711,2335027967,2335028223,2335028479,2335028735,2335031295,2335032063,2335032831,2335034623,2335034879,2335036159,2335036415,2335036927,2335037439,2335044607,2335045119,2335045631,2335047679,2335113215,2335154175,2335178751,2335244287,2335309823,2335375359,2335506431,2335571967,2335637503,2335768575,2335834111,2335899647,2335924223,2335932415,2335940607,2335948799,2335949823,2335951871,2335954943,2335965183,2335970303,2335971327,2335994879,2335995903,2336008191,2336009215,2336010239,2336014335,2336016383,2336016639,2336016895,2336024575,2336026623,2336161791,2336227327,2336260095,2336264191,2336265215,2336269823,2336270079,2336270335,2336280575,2336280831,2336283135,2336284671,2336285695,2336286207,2336286463,2336288767,2336290815,2336358399,2336423935,2336737279,2336737535,2336740351,2336740607,2336742399,2336742655,2336882687,2336915455,2336915711,2336915967,2336916223,2336948223,2337013759,2337275903,2337341439,2337346559,2337347583,2337351679,2337352191,2337352703,2337353215,2337353727,2337356799,2337357823,2337358847,2337359871,2337360383,2337360895,2337361919,2337362943,2337363967,2337366015,2337367039,2337368063,2337369087,2337374207,2337376255,2337378303,2337382399,2337386495,2337390591,2337392639,2337393663,2337394687,2337401855,2337402879,2337403391,2337403903,2337404927,2337405951,2337406463,2337406975,2337472511,2337538047,2337570815,2337587199,2337591295,2337595391,2337603583,2337669119,2337734655,2337931263,2337996799,2338062335,2338075391,2338075647,2338083839,2338084095,2338084863,2338085375,2338085631,2338086143,2338086911,2338087423,2338087679,2338092287,2338092543,2338108927,2338109183,2338109695,2338109951,2338113535,2338113791,2338115071,2338115839,2338120447,2338120959,2338123007,2338123263,2338123519,2338123775,2338124799,2338125055,2338125311,2338125567,2338126847,2338127359,2338127615,2338127871,2338259711,2338259967,2338260223,2338260479,2338261247,2338261759,2338262783,2338263039,2338263295,2338263807,2338390015,2338455551,2338521087,2338523135,2338523391,2338541055,2338541311,2338553855,2338577151,2338577407,2338586623,2338652159,2338717695,2338783231,2338848767,2338851583,2338852095,2338852351,2338908927,2338909183,2338914303,2338936063,2338936319,2339962879,2340028415,2340081663,2340085759,2340093951,2340159487,2340225023,2340421631,2340487167,2340552703,2340618239,2340683775,2340749311,2340814847,2340880383,2340888575,2340896767,2340945919,2341084671,2341085183,2341086207,2341086719,2341087999,2341088511,2341092351,2341092607,2341093375,2341126143,2341134335,2341135103,2341135359,2341137407,2341137663,2341137919,2341139455,2341139711,2341140223,2341140479,2341140735,2341140991,2341142015,2341142271,2341273599,2341339135,2341404671,2341470207,2341474303,2341486591,2341490687,2341494783,2341496831,2341498879,2341502975,2341507071,2341511167,2341512191,2341515263,2341517311,2341532671,2341533695,2341535743,2341601279,2341732351,2341797887,2341863423,2341928959,2341994495,2342060031,2342125567,2342191103,2342256639,2342322175,2342387711,2342453247,2342465023,2342465279,2342518783,2342584319,2342649855,2342666239,2342682623,2342699007,2342715391,2342780927,2342846463,2342911999,2342977535,2343043071,2343108607,2343174143,2343239679,2343370751,2343436287,2343501823,2343567359,2343632895,2343651583,2343651839,2343657471,2343660543,2343669759,2343670015,2343671039,2343671295,2343672831,2343673087,2343673343,2343673599,2343673855,2343677951,2343679999,2343682047,2343684095,2343698431,2343714815,2343716863,2343717887,2343718911,2343723007,2343731199,2343733247,2343733503,2343733759,2343739135,2343739391,2343763967,2343829503,2343829759,2343830015,2343830271,2343831551,2343831807,2343832063,2343833599,2343836671,2343837183,2343845887,2343862271,2343870463,2343876607,2343878655,2343882751,2343886847,2343892991,2343893247,2343893503,2343893759,2343894015,2343902719,2343902975,2343903743,2343903999,2343924735,2343925759,2343934975,2343935999,2344026111,2344091647,2344157183,2344165375,2344173567,2344222719,2344288255,2344353791,2344419327,2344484863,2344486911,2344487935,2344488959,2344489983,2344496127,2344497151,2344498175,2344499199,2344500223,2344501247,2344509439,2344510463,2344512511,2344513535,2344514559,2344515583,2344516607,2344517631,2344534015,2344542207,2344545023,2344546303,2344546815,2344547071,2344547583,2344547839,2344550399,2344615935,2344878079,2346188799,2346254335,2346319871,2346385407,2346582015,2346647551,2346713087,2346778623,2346844159,2346975231,2347040767,2347106303,2347171839,2348744703,2348875775,2353725439,2353790975,2353856511,2353922047,2353987583,2354053119,2354118655,2354184191,2354192383,2354194431,2354197503,2354198527,2354199551,2354233343,2354233599,2354233855,2354234111,2354234623,2354234879,2354235135,2354235391,2354235647,2354236159,2354236415,2354236671,2354236927,2354237183,2354237439,2354249727,2354257919,2354259967,2354260991,2354262015,2354266111,2354270207,2354272255,2354315263,2354356223,2354364415,2354446335,2354495487,2354501631,2354503679,2354505215,2354505983,2354506751,2354507519,2354511871,2354778111,2354779647,2354781183,2354781695,2354782207,2354782719,2354783231,2354783743,2354784255,2354784767,2354785279,2354785791,2354786303,2354786815,2354787327,2354787839,2354788351,2354788863,2354789375,2354789887,2354790399,2354790911,2354791423,2354791935,2354792447,2354792959,2354793471,2354793983,2354794495,2354795007,2354795519,2354797055,2354797567,2354824703,2354824959,2354825727,2354825983,2354831871,2354832127,2354839551,2354905087,2355036159,2355097599,2355097855,2355101695,2355167231,2355232767,2355298303,2355298815,2355300095,2355301375,2355301631,2355305215,2355305471,2355307263,2355307519,2355308287,2355308543,2355309311,2355309567,2355310591,2355310847,2355311103,2355313151,2355313407,2355313663,2355313919,2355314175,2355314431,2355315711,2355315967,2355316223,2355318015,2355318271,2355318527,2355318783,2355319039,2355319295,2355319551,2355319807,2355320319,2355320575,2355321087,2355321599,2355322111,2355322367,2355322879,2355323903,2355324159,2355324415,2355324671,2355324927,2355325183,2355326463,2355326975,2355327231,2355327487,2355327743,2355327999,2355329023,2355329279,2355329535,2355329791,2355330047,2355330303,2355330559,2355330815,2355331071,2355331583,2355331839,2355333119,2355334143,2355335167,2355336191,2355336959,2355337215,2355340287,2355340543,2355342335,2355344383,2355345407,2355345663,2355345919,2355346175,2355346431,2355346943,2355347199,2355350783,2355351039,2355351551,2355352575,2355352831,2355353087,2355353599,2355354623,2355354879,2355355135,2355355391,2355355647,2355356671,2355357439,2355357695,2355357951,2355358207,2355358719,2355358975,2355359999,2355360255,2355360511,2355360767,2355361279,2355361791,2355362047,2355362303,2355362559,2355362815,2355445503,2355445759,2355466239,2355466495,2355470335,2355470591,2355470847,2355472383,2355472639,2355473407,2355474431,2355478527,2355478783,2355691519,2355757055,2355765247,2355818495,2355822591,2355953663,2356670463,2356670719,2356671231,2356671487,2357919743,2358181887,2358247423,2358509567,2358575103,2358640639,2358657023,2358661119,2358673407,2358700031,2358701055,2358702079,2358706175,2358771711,2359119359,2359119615,2359230463,2359295999,2359361535,2359427071,2359558143,2359623679,2359689215,2359754751,2359820287,2359884799,2359885823,2360217087,2360217343,2360223743,2360225791,2360229119,2360229375,2360230911,2360231167,2360231935,2360232191,2360233471,2360233727,2360235775,2360236031,2360238591,2360238847,2360239871,2360240383,2360240639,2360241151,2360241919,2360242175,2360242431,2360242687,2360244479,2360244735,2360245247,2360245503,2360254463,2360254719,2360256255,2360256511,2360257023,2360257279,2360258047,2360258559,2360258815,2360259071,2360259327,2360259583,2360259839,2360260095,2360260351,2360260863,2360261375,2360269567,2360269823,2360273407,2360273663,2360274943,2360279039,2360541183,2360606719,2360672255,2360737791,2360868863,2360934399,2361327615,2361393151,2361458687,2361524223,2362114047,2362179583,2362179839,2362180095,2362180351,2362181631,2362181887,2362182143,2362182399,2362182655,2362182911,2362183679,2362183935,2362184703,2362184959,2362187263,2362187519,2362188287,2362188543,2362188799,2362189055,2362189311,2362189567,2362189823,2362190079,2362190335,2362190591,2362191359,2362191615,2362191871,2362192127,2362193407,2362193663,2362199039,2362199295,2362201087,2362201599,2362201855,2362203135,2362203391,2362204159,2362204415,2362206207,2362206463,2362245119,2362441727,2362572799,2362638335,2362769407,2362834943,2363490303,2363555839,2363686911,2363752447,2363757823,2363758079,2363758335,2363758591,2363758847,2363759103,2363760639,2363777023,2363778303,2363778559,2363883519,2363949055,2364121087,2364122111,2364123135,2364126207,2364128255,2364129279,2364133375,2364135423,2364137471,2364211199,2364276735,2364342271,2364407807,2364415999,2364424191,2364440575,2364448767,2364450815,2364452863,2364456959,2364461055,2364465151,2364468223,2364469247,2364473343,2364538879,2364604415,2364670719,2364670975,2364671231,2364671999,2364672255,2364672511,2364675839,2364676095,2364676863,2364677119,2364678911,2364679167,2364681983,2364682495,2364723455,2364723711,2364723967,2364724735,2364725759,2364726015,2364726527,2364727039,2364727551,2364727807,2364728063,2364728575,2364729087,2364730111,2364730367,2364730623,2364731135,2364735487,2364801023,2364932095,2364997631,2365071871,2365072127,2365072383,2365072639,2365073407,2365073663,2365079807,2365080063,2365080319,2365080831,2365081087,2365081343,2365081599,2365081855,2365082111,2365082367,2365082623,2365084671,2365084927,2365085951,2365086207,2365086463,2365086719,2365128703,2365259775,2365390847,2365456383,2365521919,2365587455,2365589503,2365590527,2365591039,2365591295,2365591551,2365591807,2365592319,2365593087,2365593599,2365595647,2365603839,2365624319,2365630463,2365632511,2365634559,2365636607,2365638655,2365640703,2365644799,2365652991,2366111743,2366144511,2366145023,2366145279,2366146559,2366146815,2366147071,2366147839,2366148095,2366148351,2366148863,2366156799,2366157055,2366159871,2366160127,2366162943,2366164991,2366167039,2366169087,2366171135,2366173951,2366174207,2366175231,2366177279,2366308351,2366308863,2366309375,2366309631,2366309887,2366310143,2366310399,2366310911,2366311167,2366311423,2366312447,2366312703,2366312959,2366313471,2366313727,2366313983,2366314239,2366315007,2366315263,2366315519,2366316031,2366316287,2366316543,2366316799,2366317055,2366317567,2366317823,2366318079,2366318591,2366318847,2366319103,2366319359,2366319615,2366319871,2366320127,2366320639,2366321151,2366324735,2366325247,2366325503,2366325759,2366326527,2366326783,2366327295,2366327807,2366328831,2366329343,2366329855,2366330367,2366330879,2366332927,2366333695,2366333951,2366334207,2366334463,2366334719,2366334975,2366335231,2366335743,2366335999,2366336255,2366336511,2366336767,2366337023,2366337279,2366337535,2366338047,2366339071,2366339327,2366339583,2366339839,2366340095,2366340351,2366340607,2366340863,2366341119,2366341631,2366342143,2366342655,2366343167,2366343679,2366344191,2366345215,2366346239,2366346751,2366347263,2366347775,2366348287,2366348543,2366349311,2366349823,2366351359,2366352383,2366352895,2366353407,2366354175,2366354431,2366354943,2366355199,2366355455,2366355711,2366355967,2366356223,2366356479,2366357247,2366357503,2366358015,2366358527,2366359551,2366360063,2366360575,2366361087,2366361599,2366363135,2366363647,2366364671,2366365183,2366365695,2366366207,2366366719,2366367743,2366368255,2366369279,2366369791,2366370047,2366370303,2366370559,2366370815,2366371071,2366371327,2366371583,2366371839,2366372607,2366372863,2366373375,2366373887,2367487999,2367529983,2367530239,2367548415,2367548671,2367553535,2370636799,2370637055,2370637311,2370637823,2370640895,2370641151,2370645247,2370645503,2370646015,2370646271,2370650623,2370650879,2370660607,2370660863,2370664191,2370664447,2370666239,2370666495,2370667519,2370667775,2370672639,2370672895,2370674431,2370674687,2370680063,2370680319,2370685439,2370685695,2370689535,2370689791,2370692095,2370692351,2370695423,2370695679,2370698751,2370699007,2370699263,2370895871,2370961407,2371158015,2371223551,2371289087,2371616767,2371682303,2371747839,2371756799,2371757055,2371770879,2371771135,2371784703,2371784959,2371788031,2371788287,2371813375,2371814655,2371814911,2371815423,2371815935,2371816703,2371816959,2371817215,2371817471,2371819263,2371819519,2371820031,2371820799,2371823103,2371823359,2371824127,2371824639,2371825663,2371825919,2371826175,2371826687,2371827711,2371827967,2371828223,2371828479,2371829247,2371829503,2371830783,2371831039,2371831295,2371831807,2371832831,2371833599,2371833855,2371834111,2371842047,2371842303,2371842815,2371844095,2371844351,2371844863,2371846143,2371859967,2371860223,2371878911,2371944447,2372009983,2372010239,2372010495,2372010751,2372011519,2372011775,2372012031,2372012287,2372012543,2372013055,2372014079,2372015103,2372016127,2372017151,2372018175,2372019199,2372020223,2372021247,2372021759,2372022271,2372023295,2372024319,2372024575,2372025343,2372026367,2372027391,2372028415,2372028671,2372028927,2372029183,2372029439,2372030463,2372030719,2372030975,2372031487,2372031743,2372031999,2372032255,2372032511,2372032767,2372033023,2372033279,2372033535,2372034559,2372035583,2372036095,2372036351,2372036607,2372038655,2372040703,2372041727,2372042751,2372043263,2372043519,2372043775,2372044799,2372045823,2372046847,2372047871,2372048895,2372050175,2372050431,2372050943,2372051455,2372052735,2372052991,2372053247,2372053503,2372053759,2372054015,2372055039,2372056063,2372056319,2372056575,2372056831,2372057087,2372058111,2372059135,2372060159,2372061183,2372062207,2372063231,2372063487,2372063743,2372063999,2372064255,2372064511,2372064767,2372065023,2372065279,2372065535,2372065791,2372066303,2372067327,2372068351,2372069375,2372069631,2372069887,2372070143,2372070399,2372071423,2372071679,2372071935,2372072447,2372073471,2372074495,2372074751,2372075007,2372075263,2372075519,2372206591,2372214783,2372218879,2372221951,2372222975,2372223487,2372224511,2372225023,2372225791,2372226559,2372227583,2372228607,2372229119,2372230143,2372230655,2372230911,2372231679,2372232191,2372232447,2372233215,2372233727,2372234239,2372234751,2372235007,2372239359,2372240383,2372240895,2372241151,2372241407,2372241663,2372243199,2372243455,2372243711,2372243967,2372244223,2372244479,2372244735,2372245247,2372245759,2372247039,2372247295,2372248319,2372248575,2372250623,2372250879,2372251135,2372251391,2372255487,2372255743,2372272127,2372337663,2372403199,2372468735,2372472831,2372474879,2372483071,2372485119,2372487167,2372489215,2372493311,2372497407,2372499455,2372501503,2372505599,2372507647,2372509695,2372510207,2372511743,2372513791,2372534271,2372665343,2372730879,2372796415,2372993023,2373025791,2373029887,2373042175,2373044223,2373058559,2373124095,2373189631,2373255167,2373451775,2373517311,2373582847,2373648383,2373726719,2373727231,2373795839,2373796095,2373796351,2373799167,2373799423,2373800703,2373800959,2373805823,2373806079,2373806335,2373806847,2373807359,2373808127,2373812479,2373813247,2373814015,2373814527,2373816063,2373816319,2373821183,2373821439,2373828607,2373910527,2373976063,2374107135,2374172671,2374238207,2374303743,2374369279,2374500351,2374502399,2374504447,2374508543,2374508799,2374509823,2374510335,2374510591,2374510847,2374511615,2374512127,2374512383,2374512639,2374514687,2374515199,2374515967,2374516223,2374516479,2374516735,2374524927,2374525439,2374525695,2374525951,2374526207,2374526463,2374526719,2374526975,2374527487,2374527743,2374529023,2374531071,2374533119,2374565887,2374631423,2374647807,2374651903,2374653951,2374655999,2374664191,2374666239,2374670335,2374672383,2374674431,2374676479,2374680575,2374684671,2374685183,2374685439,2374685695,2374686463,2374686719,2374688767,2374696959,2374770687,2374778879,2374959103,2375008255,2375012351,2375024639,2375073791,2375081983,2375090175,2375096063,2375096319,2375139327,2375147519,2375155711,2375221247,2375237631,2375254015,2375258111,2375270399,2375282687,2375311359,2375319551,2375335935,2375344127,2375352319,2375353599,2375353855,2375417855,2375418111,2375418879,2375419135,2376186367,2376186879,2376269823,2376302591,2376307967,2376308223,2376313343,2376313599,2376314879,2376318975,2376321023,2376321535,2376322047,2376322303,2376327167,2376343551,2376351743,2376356351,2376356607,2376356863,2376357119,2376357375,2376357887,2376358143,2376358399,2376359167,2376359423,2376359679,2376359935,2376364031,2376368127,2376400895,2376597503,2376663039,2376728575,2376761343,2376777727,2376781823,2376783871,2376785919,2376794111,2376859647,2376925183,2377056255,2377121791,2377187327,2377252863,2377318399,2377383935,2377842687,2377908223,2378023167,2378023423,2378170367,2378203135,2378203647,2378235903,2378236415,2378236927,2378237183,2378238975,2378239487,2378242047,2378242303,2378246143,2378247167,2378248191,2378250751,2378251007,2378251263,2378254847,2378255359,2378257407,2378258431,2378259199,2378259455,2378260991,2378261247,2378264575,2378265087,2378265343,2378268671,2378269695,2378274047,2378274303,2378274559,2378274815,2378276863,2378286079,2378286591,2378287103,2378287615,2378293759,2378294015,2378298111,2378298367,2378300927,2378301183,2378301439,2378366975,2378369023,2378383359,2378386943,2378387455,2378391551,2378395647,2378396671,2378399743,2378432511,2378498047,2378500607,2378500863,2378502143,2378502399,2378502655,2378502911,2378503167,2378503423,2378504191,2378504703,2378694655,2378760191,2378825727,2378891263,2378956799,2379218943,2379284479,2380201983,2380267519,2380316671,2380333055,2380398591,2380420095,2380420863,2380423167,2380423423,2380423935,2380424447,2380424959,2380425471,2380428287,2380428543,2380428799,2380429311,2380430335,2380430591,2380430847,2380431103,2380431615,2380431871,2380432127,2380432383,2380433151,2380433407,2380434175,2380434431,2380435455,2380455935,2380456447,2380456959,2380457215,2380457471,2380457727,2380457983,2380460031,2380460287,2380461055,2380461311,2380461567,2380461823,2380462079,2380463103,2380463359,2380463615,2380464127,2380471295,2380472319,2380473343,2380529663,2380578815,2380579327,2380580607,2380580863,2380585983,2380587007,2380591103,2380595199,2380660735,2381119487,2381185023,2381381631,2381447167,2381512703,2381578239,2381643775,2381709311,2381905919,2381971455,2382036991,2382102527,2382168063,2382233599,2382299135,2382331903,2382340095,2382342143,2382344191,2382346239,2382348031,2382348287,2382364671,2382368767,2382376959,2382381055,2382382079,2382383103,2382385151,2382401535,2382405631,2382422015,2382426111,2382626815,2382672127,2382672383,2382672639,2382673151,2382675967,2382684159,2382692351,2383085567,2383151103,2385250303,2385252351,2385256447,2385264639,2385281023,2385903615,2385908735,2385909759,2385915903,2385919999,2385952767,2385954815,2385955839,2385956863,2385969151,2386034687,2386100223,2386624511,2386690047,2386952191,2387017727,2387410943,2387420927,2387421183,2387421439,2387421951,2387439615,2387440383,2387468543,2387469055,2387476479,2387542015,2387599359,2387607551,2388000767,2388066303,2388131839,2388197375,2388328447,2388330495,2388332543,2388359167,2388361215,2388367359,2388369407,2388393983,2388459519,2388467711,2388471807,2388484095,2388488191,2388492287,2388496383,2388500479,2388504575,2388512767,2388516863,2388520959,2388525055,2389245951,2389311487,2389639167,2389643519,2389644287,2389644799,2389645055,2389650687,2389651199,2389652479,2389652735,2389653503,2389653759,2389660927,2389661183,2389672191,2389672447,2389676799,2389677055,2389683455,2389683967,2389699583,2389699839,2389700351,2389700607,2389701631,2389701887,2389704703,2390818815,2390884351,2390995455,2391015423,2391048191,2391080959,2391277567,2391343103,2391998463,2392002303,2392010751,2392011263,2392011519,2392011775,2392012543,2392015359,2392015871,2392017407,2392017663,2392018431,2392018687,2392018943,2392019199,2392019455,2392019967,2392024063,2392024319,2392024575,2392025087,2392063999,2392096767,2392129535,2392457215,2392489983,2392514559,2393571327,2393636863,2394816511,2394882047,2394947583,2395013119,2395209727,2395340799,2395602943,2395606015,2395607039,2395608831,2395609087,2395611135,2395612159,2395615999,2395616255,2395619327,2395619583,2395624447,2395625471,2395626239,2395626495,2395627263,2395627519,2395628543,2395631615,2395632639,2395633663,2395634687,2395635711,2395635967,2395636223,2395636735,2395638271,2395638783,2395640831,2395642111,2395642367,2395642623,2395642879,2395643903,2395644927,2395646975,2395647999,2395649023,2395650047,2395650559,2395651071,2395653631,2395653887,2395657215,2395658239,2395667711,2395667967,2395668479,2395814911,2395815167,2395840767,2395841535,2396422143,2396423167,2396424191,2396425215,2396426239,2396455935,2396456959,2396459007,2396459263,2396459519,2396460543,2396460799,2396461055,2396462079,2396463103,2396463615,2396464127,2396466431,2396466687,2396466943,2396467199,2396469247,2396469503,2396469759,2396470015,2396479487,2396479743,2396479999,2396480255,2396480511,2396480767,2396481023,2396481279,2396481535,2396482559,2396482815,2396483071,2396483583,2396483839,2396484095,2396496895,2396497151,2396497407,2396497663,2396502271,2396502527,2396502783,2396503039,2396503295,2396503551,2396503807,2396504063,2396504319,2396504575,2396505855,2396506111,2396506367,2396506623,2396507391,2396507647,2396509439,2396510207,2396510463,2396510975,2396518399,2396518655,2396518911,2396520447,2397700095,2397708287,2397710335,2397765631,2398552063,2398617599,2398748671,2398755327,2398755583,2398755839,2398765567,2398765823,2398769663,2398769919,2398779135,2398779391,2398785535,2398785791,2398793471,2398793727,2398799871,2398800127,2398801663,2398801919,2398804735,2398804991,2398822655,2398822911,2398824959,2398825215,2398880255,2398880511,2398881023,2398881279,2398886399,2398886655,2398916863,2398917119,2398920959,2398921215,2398930431,2398930687,2398934271,2398934527,2398936831,2398937087,2398944511,2398944767,2398945279,2399010815,2399141887,2399150079,2399151103,2399158271,2399159295,2399161343,2399163391,2399165439,2399166463,2399167487,2399167743,2399167999,2399168511,2399169535,2399170559,2399182847,2399183871,2399184895,2399185919,2399186943,2399202303,2399203327,2399204351,2399205375,2399206399,2399207423,2400940031,2400940543,2400943615,2400944127,2401036287,2401036799,2401054207,2401054719,2401058303,2401058815,2401380351,2401380863,2401535999,2401536511,2401665279,2401665791,2401681919,2401682431,2401896447,2401898495,2401902591,2401906687,2401910783,2401914879,2401918975,2401923071,2401943551,2401951743,2401955839,2401959935,2402058239,2402091007,2402222079,2402229247,2402229503,2402230271,2402238463,2402246655,2402254847,2402267135,2402271231,2402279423,2402287615,2402418687,2402484223,2402549759,2402680831,2402746367,2402783231,2402783999,2402784255,2402785023,2402785279,2402959359,2402975743,2403008511,2403221503,2403225599,2403336191,2403401727,2403450879,2403459071,2404974591,2405040127,2405105663,2405171199,2405179391,2405181695,2405181951,2405182975,2405183487,2405187583,2405199359,2405199871,2405203967,2405236735,2405302271,2405367807,2405433343,2405498879,2405564415,2405629951,2405684479,2405684991,2405695487,2406070271,2406070527,2406076415,2406076671,2406088703,2406285311,2406375423,2406383615,2406391807,2406395903,2406399999,2406404095,2406408191,2406412287,2406416383,2406769663,2406769919,2406809599,2406875135,2406940671,2407006207,2407071743,2407137279,2407333887,2407399423,2407464959,2407530495,2407596031,2407661567,2407727103,2407776255,2407792639,2408054783,2408120319,2408125439,2408126463,2408127487,2408140799,2408141823,2408144895,2408145919,2408147967,2408148991,2408150015,2408157183,2408158207,2408159231,2408162303,2408163327,2408164351,2408169471,2408170495,2408178687,2408179711,2408182783,2408183807,2408185855,2409562111,2409627647,2409693183,2409738495,2409738751,2409758719,2409824255,2409955327,2410086399,2410151935,2410217471,2410283007,2410348543,2410414079,2410545151,2410610687,2410676223,2410938367,2411003903,2411362047,2411362815,2411363583,2411363839,2411462655,2411528191,2411593727,2411749375,2411753471,2411757567,2411986943,2412052479,2412126207,2412130303,2412138495,2412142591,2412167167,2412175359,2412179455,2412180479,2412181503,2412182527,2412314623,2412380159,2412383231,2412384255,2412387327,2412388351,2412389375,2412399615,2412400639,2412402687,2412403711,2412404735,2412405759,2412414975,2412415999,2412417023,2412418047,2412419071,2412420095,2412421119,2412422143,2412429311,2412430335,2412431359,2412432383,2412433407,2412434431,2412444671,2412445695,2412511231,2412511743,2412515327,2412517631,2412521727,2412525823,2412527103,2412527359,2412529919,2412534015,2412538111,2412542207,2412543999,2412554495,2412562687,2412566783,2412570879,2412574975,2412576767,2412642303,2412773375,2412777471,2412778495,2412782591,2412783615,2412784639,2412786687,2412787711,2412788735,2412789759,2412790783,2412807167,2412808191,2412815359,2412816383,2412817407,2412819455,2412820479,2412838911,2412969983,2413297663,2413363199,2413428735,2413494271,2413625343,2413690879,2413757951,2413758207,2413821951,2413887487,2413953023,2414018559,2414411775,2414477311,2414542847,2414673919,2414739455,2414804991,2414870527,2414936063,2415001599,2415140863,2415141119,2415141375,2415141887,2415142911,2415143167,2415143679,2415143935,2415144191,2415144703,2415145983,2415147007,2415147519,2415148031,2415148543,2415149055,2415153151,2415153407,2415155199,2415165439,2415169535,2415182847,2415183871,2415184895,2415185919,2415188479,2415188735,2415198207,2415263743,2415394815,2415460351,2415656959,2415722495,2415788031,2415853567,2415859711,2415860735,2415861759,2415862783,2415863807,2415864831,2415867903,2415868671,2415868927,2415875071,2415876095,2415880191,2415881215,2415888383,2415889407,2415890431,2415892479,2415893503,2415894527,2415898623,2415899647,2415917055,2415918079,2415919103,2415984639,2416050175,2416058367,2416066559,2416082943,2416083199,2416083455,2416084223,2416084991,2416085247,2416086015,2416086271,2416086527,2416086783,2416087039,2416091135,2416093183,2416093695,2416093951,2416095231,2416111615,2416113663,2416114687,2416115711,2416181247,2416246783,2416261887,2416262143,2416262655,2416312319,2416377855,2416443391,2416705535,2416771071,2416912383,2416912639,2416916479,2416916991,2416928767,2416931327,2416931583,2416932863,2416944127,2416944383,2416963583,2416963839,2416967679,2417033215,2417229823,2417295359,2417303551,2417307647,2417311743,2417360895,2417369087,2417377279,2417426431,2417491967,2417508351,2417516543,2417532927,2417541119,2417545215,2417549311,2417551359,2417557503,2417688575,2417754111,2418016255,2418081791,2418296319,2418297343,2418305023,2418305279,2418311167,2418311679,2418312703,2418313215,2418314239,2418314751,2418315263,2418315775,2418316287,2418316799,2418323455,2418323711,2418323967,2418324223,2418324991,2418326015,2418326527,2418327039,2418331135,2418331647,2418332159,2418332671,2418333183,2418334207,2418334719,2418337535,2418337791,2418339071,2418340863,2418341375,2418341887,2418342911,2418343423,2418343935,2418606079,2418671615,2418737151,2418802687,2418868223,2419064831,2419065855,2419066111,2419066367,2419066879,2419067903,2419068927,2419069951,2419071999,2419073023,2419074047,2419075071,2419077119,2419079167,2419080191,2419081215,2419082239,2419083263,2419085311,2419085567,2419085823,2419086079,2419086335,2419087359,2419088383,2419089407,2419090431,2419091455,2419092479,2419095551,2419096575,2419097599,2419099647,2419100671,2419101695,2419102719,2419103743,2419104767,2419105791,2419106815,2419107839,2419108863,2419109887,2419110911,2419112959,2419113983,2419115007,2419116031,2419117055,2419120127,2419121151,2419122175,2419123199,2419124223,2419125247,2419126271,2419127295,2419128319,2419128831,2419129343,2419130111,2419130367,2419155711,2419155967,2419156223,2419156479,2419156735,2419156991,2419157247,2419158783,2419159039,2419195391,2419195647,2419326975,2419392511,2419458047,2419523583,2419589119,2419654655,2419662847,2419671039,2419720191,2420047871,2420113407,2420178943,2420244479,2420310015,2420899839,2420965375,2421004287,2421004543,2421071871,2421072895,2421096447,2421161983,2421293055,2421358591,2421424127,2421489663,2421555199,2421587967,2421592063,2421593087,2421599999,2421600255,2421600767,2421601279,2421605375,2421606399,2421613567,2421614591,2421620735,2421686271,2421784575,2421817343,2421899263,2421899519,2421899775,2421900031,2421905151,2421905407,2421912063,2421912319,2421915647,2421927935,2422145023,2422154239,2422155263,2422161407,2422163455,2422165503,2422167551,2422210559,2422276095,2422341631,2422407167,2423128063,2423193599,2423717887,2423783423,2423848959,2423914495,2423980031,2424045567,2424111103,2424210175,2424210431,2424211711,2424211967,2424225791,2424229887,2424233983,2424238079,2424239103,2424240127,2424241151,2424242175,2424307711,2424438783,2424471551,2424475647,2425159679,2425421823,2425487359,2426667007,2426732543,2426798079,2426937599,2426937855,2426938367,2426938623,2426940927,2426941183,2426941439,2426942463,2426943487,2426973951,2426974207,2426979327,2426979583,2426979839,2426980095,2426982399,2426982655,2426987007,2426987263,2426987775,2426988031,2426988543,2426989055,2427209983,2427210239,2427224063,2427256831,2427322367,2427453439,2427518975,2427584511,2427586559,2427586815,2427587071,2427587327,2427587583,2427587839,2427588095,2427591935,2427592191,2427592703,2427592959,2427593215,2427593727,2427593983,2427594239,2427596799,2427598847,2427600895,2427611135,2427611903,2427612159,2427613183,2427614207,2427614463,2427614719,2427615231,2427617279,2427633663,2427641855,2427645951,2427647743,2427649023,2427649535,2427649791,2427650047,2427846655,2428387327,2428388351,2428567551,2428633087,2428698623,2428960767,2429026303,2429091839,2429190911,2429191167,2429192703,2429193215,2429195775,2429196031,2429196799,2429197311,2429197567,2429197823,2429288447,2429353983,2429419519,2429485055,2429550591,2429566975,2429571071,2429572095,2429573119,2429573375,2429574143,2429577215,2429579263,2429580287,2429582335,2429583359,2429602815,2429603071,2429603327,2429603583,2429603839,2429605631,2429605887,2429606143,2429606399,2429606911,2429607167,2429607423,2429607935,2429608191,2429608447,2429608703,2429608959,2429609215,2429609471,2429609727,2429609983,2429610239,2429610495,2429610751,2429611007,2429611263,2429611519,2429611775,2429613055,2429613311,2429614079,2429616127,2429636863,2429637119,2429637375,2429681663,2429771775,2429772031,2429796607,2429796863,2429878271,2429943807,2430009343,2430140415,2430205951,2430271487,2430338047,2430338303,2430338559,2430340095,2430340351,2430340607,2430340863,2430341119,2430341375,2430341631,2430341887,2430342143,2430342399,2430342655,2430342911,2430343679,2430343935,2430344191,2430344447,2430346751,2430347007,2430351103,2430351359,2430352127,2430352383,2430352639,2430352895,2430353663,2430353919,2430354175,2430354687,2430354943,2430355455,2430355711,2430356223,2430356479,2430356991,2430357247,2430357759,2430358015,2430358527,2430358783,2430359039,2430359295,2430359551,2430360575,2430360831,2430361087,2430361343,2430362367,2430362879,2430363135,2430363391,2430363647,2430363903,2430364159,2430364415,2430364927,2430365183,2430365951,2430366463,2430366719,2430366975,2430367487,2430367743,2430367999,2430368255,2430369279,2430369535,2430370047,2430370559,2430371583,2430371839,2430372095,2430372351,2430372607,2430372863,2430373631,2430373887,2430579711,2430579967,2430580223,2430580479,2430586879,2430587135,2430918655,2430922751,2432172031,2432237567,2432312063,2432312319,2432565247,2432630783,2432696319,2432794623,2432827391,2433614847,2433617919,2433626111,2433628159,2433630207,2433631999,2433634047,2433634559,2433635327,2433635839,2433636351,2433636863,2433637375,2433637887,2433638143,2433638399,2433646591,2433646847,2433647103,2433647359,2433647615,2433647871,2433648127,2433648383,2433648639,2433650687,2433651711,2433652735,2433653759,2433654783,2433662975,2433667071,2433671167,2433675263,2433677311,2433679359,2433810431,2433875967,2434400255,2434423295,2434423807,2434465791,2434723583,2434723839,2434924543,2434928639,2434932735,2434934783,2434957311,2434965503,2435055615,2435107071,2435107327,2435107583,2435107839,2435108095,2435108351,2435121151,2435321855,2435325951,2435334143,2435335167,2435335423,2435335679,2435336191,2435336447,2435336703,2435339775,2435340287,2435341055,2435341311,2435342335,2435342847,2435343359,2435343615,2435344383,2435345407,2435346431,2435347455,2435348479,2435349503,2435350527,2435366911,2435383295,2435514367,2435579903,2435710975,2435751935,2435752191,2435752447,2435754239,2435754495,2435754751,2435776511,2436300799,2436366335,2436628479,2436630527,2436632575,2436634623,2436635647,2436693247,2436693503,2436694015,2436759551,2436760319,2436760575,2436775935,2436784127,2436825087,2438070271,2438135807,2440354559,2440354815,2446983167,2447048703,2447376383,2447384575,2447388671,2447392767,2447393791,2447394815,2447395839,2447396863,2447397119,2447397375,2447397631,2447397887,2447398143,2447398399,2447398655,2447398911,2447399935,2447400191,2447400447,2447400703,2447400959,2447401215,2447401471,2447401727,2447401983,2447402239,2447402495,2447402751,2447403263,2447403519,2447403775,2447404031,2447404287,2447404543,2447404799,2447405055,2447405311,2447405567,2447405823,2447406079,2447406335,2447406591,2447406847,2447407103,2447407359,2447408127,2447408383,2447408639,2447408895,2447409151,2447425535,2447425791,2447441919,2447451135,2447451647,2447507455,2447572991,2447638527,2447647999,2447648255,2447704063,2447769599,2447835135,2447900671,2447966207,2448031743,2448097279,2448162815,2448174591,2448174847,2448180991,2448181247,2448183295,2448183551,2448228351,2448293887,2448359423,2448360447,2448361471,2448363519,2448367615,2448374271,2448374527,2448379903,2448383999,2448386047,2448386303,2448387071,2448387327,2448390399,2448390655,2448393471,2448394239,2448394495,2448394751,2448395263,2448397311,2448398335,2448410623,2448411391,2448411647,2448412671,2448412927,2448414463,2448414719,2448416255,2448416511,2448418815,2448419839,2448420863,2448421887,2448422911,2448423167,2448423423,2448423679,2448424959,2448449023,2448449535,2448490495,2448556031,2448621567,2448687103,2448752639,2448818175,2448825087,2448825343,2448836095,2448836351,2448836607,2448837631,2448838143,2448838399,2448850943,2448851967,2448883711,2448949247,2449000191,2449000447,2449000959,2449001471,2449014783,2449039359,2449041407,2449042431,2449042687,2449042943,2449043199,2449043455,2449044223,2449044479,2449045503,2449080319,2449145855,2449211391,2449276927,2449407999,2449420287,2449422335,2449424383,2449440767,2449442815,2449444863,2449448959,2449457151,2449465343,2449467391,2449469439,2449471487,2449473535,2449477631,2449479679,2449481727,2449485823,2449486591,2449486847,2449487103,2449487359,2449487871,2449488383,2449488895,2449489919,2449491967,2449494015,2449496063,2449498111,2449506303,2449522687,2449526783,2449527807,2449530879,2449539071,2449604607,2449670143,2449735679,2449801215,2450194431,2450259967,2450718719,2450718975,2450719231,2450719487,2450719743,2450719999,2450720255,2450720511,2450720767,2450721023,2450721279,2450721535,2450721791,2450722047,2450722303,2450722559,2450722815,2450723071,2450723327,2450723583,2450723839,2450724351,2450724863,2450725119,2450725631,2450725887,2450726143,2450726399,2450726655,2450726911,2450727423,2450727935,2450728191,2450728447,2450728703,2450728959,2450729215,2450729471,2450729727,2450729983,2450730239,2450730495,2450730751,2450731263,2450731519,2450731775,2450732031,2450732287,2450732543,2450732799,2450733311,2450733567,2450734079,2450734335,2450734591,2450735103,2450735359,2450735615,2450735871,2450736127,2450736383,2450736639,2450736895,2450737151,2450737407,2450737663,2450737919,2450738175,2450738431,2450738687,2450738943,2450739199,2450739455,2450739711,2450739967,2450740223,2450740479,2450740735,2450740991,2450741247,2450741503,2450741759,2450742015,2450742271,2450742783,2450743039,2450743295,2450743551,2450743807,2450744063,2450744319,2450744575,2450744831,2450745087,2450745343,2450745599,2450745855,2450746111,2450746367,2450746623,2450746879,2450747135,2450747391,2450747647,2450747903,2450748159,2450748415,2450748671,2450748927,2450749183,2450749439,2450749695,2450749951,2450750207,2450750463,2450750719,2450750975,2450751231,2450751487,2450751743,2450752255,2450752511,2450752767,2450753023,2450753279,2450753535,2450753791,2450754047,2450754303,2450754559,2450754815,2450755071,2450755327,2450755583,2450755839,2450756095,2450756351,2450756607,2450756863,2450757119,2450757375,2450757631,2450757887,2450758143,2450758399,2450758655,2450758911,2450759167,2450759423,2450759679,2450759935,2450760191,2450760447,2450760703,2450760959,2450761215,2450761471,2450761727,2450761983,2450762239,2450762495,2450762751,2450763007,2450763263,2450763519,2450763775,2450764031,2450764287,2450764543,2450764799,2450765055,2450765567,2450765823,2450766079,2450766335,2450766591,2450766847,2450767103,2450767359,2450767615,2450767871,2450768127,2450768383,2450768639,2450768895,2450769151,2450769407,2450769663,2450769919,2450770175,2450770431,2450770687,2450770943,2450771199,2450771455,2450771711,2450771967,2450772223,2450772479,2450772735,2450772991,2450773247,2450773503,2450774015,2450774271,2450774527,2450774783,2450775039,2450775295,2450775551,2450775807,2450776063,2450776319,2450776575,2450776831,2450777087,2450777343,2450777599,2450777855,2450778111,2450778367,2450778623,2450778879,2450779391,2450779647,2450779903,2450780159,2450780415,2450780671,2450780927,2450781183,2450781439,2450781695,2450781951,2450782207,2450782463,2450782719,2450782975,2450783231,2450783487,2450783743,2450783999,2450784255,2450849791,2450915327,2450990591,2450991103,2450991615,2450992127,2450992639,2450993151,2450993663,2450994175,2450994687,2450995199,2450996223,2450997247,2450997759,2451024895,2451025919,2451026687,2451030015,2451030271,2451030527,2451030783,2451031039,2451031295,2451031551,2451031807,2451032063,2451032575,2451033087,2451033599,2451034111,2451037183,2451038207,2451038719,2451038975,2451039231,2451039487,2451044351,2451045375,2451046399,2452619263,2452684799,2452750335,2452815871,2452881407,2452946943,2453143551,2453151743,2453155839,2453157887,2453168127,2453175295,2453176319,2453192703,2453209087,2453273855,2453274111,2453274623,2453340159,2453341439,2453341695,2453349375,2453349631,2453349887,2453350143,2453350399,2453350655,2453350911,2453351167,2453352959,2453353471,2453354495,2453355007,2453355519,2453356031,2453356287,2453357311,2453358847,2453359103,2453359615,2453359871,2453365503,2453365759,2453366527,2453366783,2453367039,2453367551,2453368831,2453369087,2453369599,2453369855,2453370879,2453371647,2453371903,2453372415,2453372927,2453386239,2453386495,2453405695,2453471231,2453536767,2453602303,2453667839,2453733375,2453798911,2453800959,2453803007,2453805055,2453807103,2453831679,2453833727,2453835775,2453837823,2453838591,2453838847,2453839359,2453839871,2453852159,2453852415,2453852671,2453852927,2453853183,2453854207,2453855231,2453856255,2453858303,2453860351,2453864447,2453929983,2454061055,2454061311,2454061567,2454063103,2454063359,2454063615,2454063871,2454064127,2454064383,2454064639,2454064895,2454065151,2454065407,2454065663,2454065919,2454066175,2454066431,2454066687,2454066943,2454067199,2454067711,2454067967,2454068223,2454068479,2454068735,2454068991,2454069247,2454069503,2454069759,2454070015,2454070271,2454070527,2454070783,2454071295,2454071551,2454071807,2454072063,2454072319,2454072831,2454073343,2454073599,2454074367,2454074623,2454074879,2454075135,2454075391,2454075647,2454076159,2454076415,2454076671,2454076927,2454077183,2454077695,2454077951,2454078207,2454078463,2454078719,2454079231,2454079487,2454079743,2454079999,2454080255,2454080511,2454080767,2454081023,2454081279,2454081535,2454081791,2454082047,2454082303,2454082559,2454082815,2454083071,2454083327,2454083583,2454083839,2454084095,2454084351,2454084607,2454084863,2454085119,2454085375,2454085887,2454086143,2454086399,2454086655,2454086911,2454087167,2454087423,2454087679,2454087935,2454088191,2454088447,2454088703,2454088959,2454089215,2454089471,2454089727,2454089983,2454090239,2454090495,2454090751,2454091007,2454091519,2454091775,2454092031,2454092287,2454092543,2454092799,2454093055,2454093311,2454093567,2454093823,2454094079,2454094335,2454094591,2454094847,2454095359,2454095871,2454096127,2454096383,2454096639,2454096895,2454097151,2454097407,2454097663,2454097919,2454098175,2454098431,2454098687,2454099199,2454099455,2454099711,2454100223,2454100479,2454100735,2454100991,2454101503,2454101759,2454102015,2454102271,2454102527,2454102783,2454103039,2454103807,2454104063,2454104319,2454104575,2454104831,2454105855,2454106111,2454106367,2454106623,2454106879,2454107135,2454107391,2454107647,2454107903,2454108159,2454108415,2454109183,2454109439,2454109695,2454109951,2454110207,2454110463,2454110719,2454110975,2454111231,2454111487,2454111743,2454111999,2454112255,2454112511,2454112767,2454113023,2454113279,2454113535,2454113791,2454114303,2454114815,2454115071,2454115583,2454115839,2454116095,2454116351,2454116607,2454117119,2454117375,2454117631,2454117887,2454118143,2454118399,2454118655,2454118911,2454119167,2454119423,2454120959,2454121471,2454121727,2454121983,2454122239,2454122495,2454122751,2454123007,2454123263,2454123519,2454126591,2454128639,2454130687,2454149631,2454150655,2454151167,2454192127,2454257663,2454388735,2454389759,2454390783,2454391807,2454395903,2454396927,2454399999,2454401023,2454409983,2454410239,2454421503,2454422015,2454422271,2454422527,2454423039,2454423807,2454424063,2454426367,2454426623,2454427135,2454427391,2454427903,2454428159,2454428415,2454428671,2454429439,2454430463,2454430719,2454430975,2454431487,2454431999,2454432255,2454432511,2454432767,2454433023,2454433791,2454434047,2454434303,2454434559,2454434815,2454435839,2454436095,2454436351,2454437887,2454438143,2454438655,2454438911,2454439679,2454439935,2454445567,2454446079,2454446591,2454446847,2454447103,2454447871,2454448127,2454448639,2454448895,2454449663,2454449919,2454450687,2454450943,2454451711,2454451967,2454452735,2454452991,2454519807,2454585343,2454716415,2454781951,2454847487,2454851583,2454851839,2454853119,2454853375,2454875135,2454875391,2454887423,2454887679,2454913023,2454978559,2455175167,2455240703,2455244799,2455245567,2455245823,2455246847,2455247871,2455248127,2455248895,2455251199,2455251455,2455255807,2455256063,2455257087,2455262207,2455263231,2455265279,2455273471,2455273983,2455274239,2455275519,2455277567,2455278079,2455278591,2455279615,2455280127,2455280383,2455281663,2455285759,2455289855,2455290879,2455291903,2455293951,2455300095,2455302143,2455371775,2455437311,2455830527,2455896063,2455961599,2456027135,2456092671,2456093183,2456124927,2456125183,2456158207,2456223743,2456225791,2456226815,2456227839,2456228351,2456228607,2456240127,2456289279,2456354815,2456406015,2456408063,2456420351,2456485887,2456551423,2456616959,2456619007,2456621055,2456682495,2456748031,2456813567,2456814335,2456815103,2456815359,2456815871,2456816383,2456816639,2456816895,2456817151,2456817407,2456817663,2456818175,2456818431,2456818687,2456819455,2456819711,2456819967,2456820223,2456820479,2456820735,2456820991,2456821247,2456821759,2456822271,2456822783,2456823039,2456823295,2456823807,2456824063,2456824319,2456824575,2456825855,2456826111,2456826367,2456826623,2456826879,2456827135,2456827391,2456827647,2456827903,2456828159,2456828415,2456829951,2456830463,2456837119,2456837631,2456837887,2456838143,2456838399,2456838655,2456838911,2456839167,2456839423,2456839679,2456839935,2456840191,2456840447,2456840703,2456840959,2456841215,2456841727,2456841983,2456842239,2456842495,2456842751,2456843007,2456843263,2456843775,2456844287,2456844543,2456844799,2456845055,2456845311,2456845823,2456846335,2456846591,2456846847,2456847103,2456847359,2456847615,2456847871,2456848127,2456848383,2456848639,2456849151,2456849663,2456850431,2456850687,2456850943,2456851199,2456851455,2456851711,2456851967,2456852735,2456852991,2456853247,2456853503,2456854015,2456854271,2456855551,2456855807,2456856063,2456856575,2456856831,2456857087,2456857599,2456857855,2456858111,2456858623,2456858879,2456859135,2456859391,2456860671,2456860927,2456861183,2456861439,2456861695,2456861951,2456862207,2456862463,2456862719,2456862975,2456863743,2456863999,2456864255,2456864511,2456864767,2456865791,2456866047,2456866559,2456866815,2456867071,2456867327,2456867583,2456867839,2456868095,2456868351,2456868607,2456868863,2456869375,2456869631,2456869887,2456870143,2456870911,2456871167,2456871679,2456871935,2456872191,2456872447,2456872703,2456872959,2456873215,2456873471,2456873727,2456873983,2456874239,2456874495,2456875263,2456875775,2456876031,2456876287,2456876543,2456876799,2456877311,2456877567,2456877823,2456878079,2456878335,2456878591,2457075711,2457141247,2457206783,2457272319,2457337855,2457339903,2457340927,2457341183,2457341951,2457342975,2457343231,2457343999,2457344255,2457346047,2457348095,2457352191,2457354239,2457361407,2457361919,2457362175,2457362431,2457362687,2457362943,2457363455,2457363967,2457364479,2457366527,2457366783,2457369599,2457370623,2457376767,2457377791,2457378815,2457380607,2457380863,2457381631,2457381887,2457382399,2457382911,2457383935,2457384959,2457385215,2457385471,2457385983,2457387007,2457388031,2457388543,2457389055,2457390079,2457390591,2457390847,2457392127,2457392639,2457392895,2457394175,2457394431,2457394687,2457394943,2457395455,2457395711,2457395967,2457396223,2457396735,2457397247,2457397759,2457398271,2457399295,2457399551,2457399807,2457400063,2457400575,2457400831,2457401343,2457402367,2457403391,2457599999,2457665535,2458058751,2458124287,2458189823,2458221567,2458221823,2458222335,2458222591,2458255359,2458320895,2458386431,2458451967,2458648575,2458714111,2458779647,2458910719,2458976255,2459173375,2459181055,2459201535,2459205631,2459631615,2459697151,2459828223,2459832063,2459834367,2459835391,2459835903,2459836159,2459836415,2459843071,2459843583,2459844607,2459845631,2459846655,2459846911,2459847679,2459848191,2459848447,2459848703,2459850751,2459851775,2459852287,2459852543,2459860991,2459893759,2459959295,2460024831,2460090367,2460155903,2460221439,2460286975,2460549119,2460614655,2460621311,2460621823,2460680191,2460745727,2460811263,2460876799,2460909567,2460925951,2460942335,2461007871,2461138943,2461204479,2461270015,2461401087,2461466623,2461532159,2461597695,2461598207,2461598463,2461598719,2461598975,2461599743,2461601791,2461605887,2461607935,2461609983,2461610495,2461611007,2461612031,2461614079,2461622271,2461630463,2461646847,2461649919,2461650175,2461650687,2461650943,2461652479,2461652735,2461652991,2461653247,2461653503,2461653759,2461654015,2461654527,2461658111,2461658623,2461661183,2461661439,2461661695,2461661951,2461662207,2461662463,2461662719,2461663231,2461794303,2461794559,2461797887,2461798911,2461819391,2461819903,2461820415,2461820671,2461820927,2461821183,2461822975,2461823231,2461826047,2461826303,2461845759,2461846015,2461857791,2461858047,2461859839,2461926399,2461927423,2461928447,2461929471,2461933567,2461945855,2461954047,2461970431,2461971455,2461973503,2461974527,2461975551,2461976575,2461977599,2461978623,2461982719,2461986815,2461990911,2462056447,2462121983,2462187519,2462253055,2462326783,2462328831,2462329855,2462330879,2462331903,2462332927,2462333951,2462334975,2462335999,2462338047,2462342143,2462343167,2462344191,2462345215,2462347263,2462349311,2462350335,2462351359,2462384127,2462449663,2462559999,2462560255,2462646271,2463215103,2463215615,2463236095,2463301631,2463367167,2463432703,2463498239,2463629311,2463694847,2463825919,2463891455,2463911935,2463916031,2463954943,2463955199,2463956991,2464022527,2464041983,2464042239,2464153599,2464219135,2464284671,2464350207,2464415743,2464481279,2464546815,2464743423,2464808959,2464874495,2464878591,2464880639,2464890879,2464935935,2464937983,2465267711,2465333247,2465349119,2465349375,2465660927,2465662975,2465665023,2465667071,2465669119,2465671167,2465672703,2465672959,2465673215,2465675775,2465676031,2465677311,2465679359,2465681407,2465683455,2465685503,2465688063,2465688319,2465689087,2465689343,2465693439,2465693695,2465695743,2465696511,2465719039,2465719807,2465720063,2465720319,2465721599,2465721855,2465726463,2465791999,2465857535,2465923071,2465988607,2465996031,2465996287,2466004479,2466004991,2466006015,2466006527,2466007039,2466009087,2466010623,2466011135,2466013183,2466015231,2466022399,2466022911,2466042367,2466042623,2466042879,2466049023,2466049535,2466053119,2466054143,2466067199,2466067455,2466185215,2466189311,2466189567,2466189823,2466190079,2466191359,2466193407,2466197503,2466199551,2466201599,2466209791,2466211839,2466213887,2466214911,2466215935,2466216703,2466217983,2466226175,2466228223,2466230271,2466232319,2466232575,2466232831,2466233087,2466233343,2466233599,2466233855,2466234111,2466234367,2466242559,2466250751,2466320895,2466321151,2466643967,2466709503,2466775039,2466840575,2466906111,2466971647,2467037183,2467045375,2467053567,2467061759,2467069951,2467102719,2467233791,2468020223,2468085759,2468089855,2468093951,2468094463,2468094975,2468095231,2468095487,2468095743,2468098047,2468102143,2468110335,2468118527,2468119551,2468120575,2468121087,2468121599,2468124927,2468125183,2468125695,2468126207,2468127743,2468128255,2468128767,2468129279,2468129791,2468130303,2468130815,2468131327,2468131839,2468132863,2468133375,2468134143,2468134399,2468136447,2468136703,2468136959,2468137983,2468138495,2468139519,2468140031,2468141055,2468141567,2468141823,2468142079,2468142591,2468143103,2468143359,2468144127,2468151295,2468216831,2468282367,2468347903,2468408063,2468408319,2468412671,2468412927,2468478975,2468937727,2469003263,2469068799,2469134335,2469199871,2469210111,2469210367,2469210623,2469210879,2469211135,2469211391,2469211647,2469211903,2469212159,2469212415,2469212671,2469212927,2469213183,2469215231,2469215487,2469216767,2469217279,2469217535,2469217791,2469218047,2469218303,2469219839,2469220351,2469221375,2469221631,2469221887,2469222399,2469225727,2469225983,2469228287,2469228543,2469229567,2469229823,2469231615,2469232639,2469233663,2469234687,2469236991,2469237247,2469237759,2469238527,2469250047,2469250815,2469251071,2469252095,2469252351,2469265407,2469396479,2469527551,2469593087,2469658623,2469724159,2469748735,2469752831,2469754623,2469754879,2469755647,2469756415,2469756671,2469756927,2469789695,2469855231,2470182911,2470188031,2470188287,2470189823,2470190079,2470248447,2470510591,2470576127,2470641663,2470707199,2470772735,2470838271,2471174143,2471174911,2471176703,2471177215,2471177727,2471177983,2471178239,2471178495,2471186431,2471188479,2471189503,2471190527,2471191551,2471192575,2471194111,2471194623,2471198719,2471202815,2471203071,2471203327,2471203583,2471203839,2471204095,2471204351,2471204607,2471204863,2471205119,2471205375,2471205631,2471205887,2471206143,2471206399,2471206655,2471206911,2471211007,2471211519,2471211775,2471218175,2471218687,2471219199,2471221503,2471221759,2471223295,2471223551,2471223807,2471224063,2471225087,2471225599,2471225855,2471226111,2471226367,2471226623,2471226879,2471227135,2471227391,2471229439,2471229695,2471230975,2471231231,2471231487,2471297023,2471362559,2471362815,2471363071,2471363327,2471363583,2471364607,2471365631,2471366143,2471366399,2471366655,2471367679,2471368703,2471369727,2471370751,2471371775,2471373823,2471374591,2471374847,2471375871,2471376895,2471377919,2471378943,2471379967,2471380991,2471382015,2471383039,2471384063,2471385087,2471387135,2471388159,2471388415,2471388671,2471389183,2471390207,2471391231,2471392255,2471393279,2471393535,2471393791,2471394303,2471396351,2471396607,2471396863,2471397119,2471397375,2471398399,2471399423,2471400447,2471401471,2471402495,2471403519,2471404031,2471404287,2471404543,2471405567,2471406591,2471407615,2471408639,2471408895,2471409151,2471409407,2471409663,2471410687,2471411711,2471412735,2471413759,2471414783,2471415551,2471415807,2471416831,2471417855,2471418111,2471418623,2471418879,2471419135,2471419903,2471420927,2471421951,2471422975,2471423999,2471426047,2471427071,2471428095,2471432191,2471433215,2471434239,2471435263,2471440383,2471441407,2471443455,2471444479,2471493119,2471493375,2471624703,2471690239,2471821311,2471886847,2472083455,2472148991,2472214527,2472280063,2472288255,2472292351,2472296447,2472300543,2472302591,2472312831,2472345599,2472411135,2472476671,2472542207,2472607743,2472673279,2472869887,2472935423,2473000959,2473334783,2473335039,2473335551,2473335807,2473336063,2473336319,2473336831,2473345535,2473346047,2473348095,2473348607,2473348863,2473349119,2473351167,2473366527,2473367039,2473394175,2473459711,2473525247,2473656319,2473721855,2473787391,2474049535,2474115071,2474246143,2474315775,2474316031,2474316287,2474316543,2474317055,2474317567,2474317823,2474318847,2474320127,2474321919,2474322175,2474322431,2474322687,2474323967,2474326015,2474329087,2474329343,2474329855,2474330111,2474330367,2474330879,2474332159,2474338303,2474340351,2474343423,2474348031,2474348287,2474348543,2474350591,2474374143,2474375167,2474377215,2474393599,2474397695,2474427135,2474427391,2474429183,2474429439,2474442751,2474508287,2474573823,2474639359,2474749951,2474750975,2474901503,2474967039,2475098111,2475098367,2475130879,2475134207,2475134463,2475138815,2475139071,2475141119,2475141375,2475143679,2475143935,2475145215,2475145471,2475145727,2475145983,2475148287,2475149311,2475149823,2475150079,2475150335,2475151359,2475152383,2475153663,2475153919,2475159295,2475159551,2475162367,2475162623,2475163647,2475180031,2475182079,2475183103,2475183615,2475183871,2475184127,2475185151,2475187199,2475188223,2475196415,2475212799,2475228159,2475228671,2475360255,2475393023,2475425791,2475556863,2475622399,2475687935,2475753471,2475819007,2475884543,2476277759,2476376063,2476384255,2476388351,2476391423,2476391679,2476391935,2476396543,2476396799,2476400639,2476406783,2476474367,2476539903,2476605439,2476670975,2476736767,2476737023,2476737791,2476738047,2476746751,2476747775,2476752895,2476769279,2476770303,2476770559,2476771839,2476772351,2476800511,2476800767,2476802047,2476802559,2476803071,2476804095,2476806143,2476807167,2476808191,2476810239,2476818431,2476834815,2476835327,2476835839,2476836351,2476837887,2476839423,2476839935,2476840447,2476840959,2476841471,2476841983,2476843007,2476843519,2476844031,2476844543,2476845055,2476846079,2476846591,2476847103,2476847615,2476849663,2476850175,2476850687,2476851199,2476853759,2476854271,2476854783,2476855295,2476855807,2476856319,2476857343,2476857855,2476858879,2476859391,2476859903,2476861439,2476861951,2476862463,2476862975,2476863487,2476863999,2476864511,2476865023,2476865535,2476866047,2476866559,2476867071,2476867583,2476998655,2477195263,2477260799,2477457407,2477522943,2477588479,2477654015,2477719551,2477785087,2477850623,2478047231,2478112767,2478178303,2478215167,2478219263,2478309375,2478374911,2478383615,2478383871,2478402047,2478402303,2478416383,2478416895,2478418175,2478418431,2478418943,2478419199,2478419711,2478419967,2478425087,2478425599,2478427647,2478428159,2478431743,2478432255,2478432767,2478433023,2478433791,2478434047,2478434303,2478434815,2478435583,2478435839,2478437631,2478437887,2478438399,2478438655,2478438911,2478439167,2478439423,2478439935,2478440447,2478505983,2478571519,2478645247,2478645759,2478646271,2478646783,2478653439,2478655487,2478656511,2478661631,2478669823,2478671871,2478672127,2478673151,2478673407,2478673919,2478675967,2478676479,2478678271,2478678527,2478678783,2478679039,2478680063,2478682111,2478686207,2478687231,2478689279,2478690047,2478690303,2478691327,2478691839,2478692351,2478694399,2478702591,2478833663,2478899199,2478964735,2479030271,2479095807,2479161343,2479226879,2479357951,2479423487,2479489023,2479620095,2479685631,2479947775,2480013311,2480078847,2480209919,2480275455,2480340991,2480406527,2480668671,2480734207,2481192959,2481455103,2481520639,2481586687,2481587199,2481848319,2482175999,2482176255,2482176511,2482176767,2482177023,2482177279,2482177535,2482177791,2482178047,2482178303,2482178559,2482178815,2482179071,2482179839,2482180095,2482180351,2482180607,2482180863,2482181119,2482181375,2482181631,2482181887,2482182143,2482182399,2482182655,2482182911,2482183423,2482183679,2482183935,2482184191,2482184703,2482185215,2482185727,2482186239,2482186495,2482186751,2482187007,2482187263,2482187519,2482187775,2482188031,2482188543,2482189055,2482189311,2482189567,2482189823,2482190335,2482190847,2482191103,2482191359,2482192639,2482192895,2482193151,2482193407,2482193919,2482194175,2482194431,2482194687,2482195199,2482195455,2482195967,2482196223,2482196479,2482196735,2482196991,2482198015,2482198271,2482198783,2482199039,2482199295,2482200063,2482200319,2482200831,2482201087,2482201599,2482201855,2482202367,2482202623,2482203647,2482203903,2482204159,2482204415,2482204671,2482204927,2482205183,2482205695,2482205951,2482206207,2482206463,2482206719,2482206975,2482207231,2482207743,2482207999,2482208255,2482208511,2482208767,2482209023,2482209279,2482209535,2482210047,2482210303,2482210815,2482211071,2482211327,2482211583,2482211839,2482212095,2482212351,2482212607,2482212863,2482213119,2482213375,2482213631,2482213887,2482214143,2482216959,2482217215,2482217471,2482217727,2482218495,2482218751,2482219007,2482219519,2482219775,2482220031,2482220287,2482220543,2482220799,2482221055,2482221311,2482222591,2482222847,2482223103,2482223359,2482223871,2482224127,2482225151,2482225407,2482225663,2482226175,2482226431,2482226687,2482226943,2482227199,2482227455,2482228991,2482229247,2482229503,2482229759,2482230015,2482230271,2482230527,2482230783,2482231039,2482231295,2482231551,2482231807,2482232063,2482232319,2482232575,2482232831,2482233087,2482233343,2482233855,2482234367,2482234623,2482234879,2482235391,2482235647,2482235903,2482236159,2482236415,2482236671,2482236927,2482237183,2482237439,2482239743,2482239999,2482240255,2482241023,2482241279,2482620415,2482620671,2482631679,2482631935,2482634751,2482700287,2482765823,2482831359,2482880511,2483027967,2483093503,2483159039,2483224575,2483290111,2483375103,2483375359,2483375615,2483376127,2483376383,2483377151,2483377407,2483377663,2483377919,2483378175,2483378431,2483379455,2483379711,2483421183,2483486719,2483552255,2483586047,2483586303,2483677183,2483677439,2483678719,2483679231,2483679743,2483835903,2483836927,2486501375,2486566911,2486632447,2486697983,2486763519,2486800895,2486801151,2486801407,2486801663,2486903807,2486904063,2486904575,2486904831,2486906367,2486906623,2486909183,2486909439,2486913023,2486913279,2486917887,2486918143,2486918399,2486918655,2486918911,2486924031,2486924287,2486924799,2486925311,2486927359,2486927615,2486927871,2486928127,2486928895,2486929151,2486929407,2486929663,2486929919,2486930175,2486932735,2486932991,2486936575,2486937087,2486940671,2486941183,2486945279,2486945791,2486946815,2486947327,2486949887,2486951423,2486952959,2486953471,2486953983,2486955007,2486956543,2486957055,2486960127,2487025663,2487091199,2487091455,2487092223,2487092479,2487092735,2487092991,2487093247,2487093503,2487093759,2487094271,2487094527,2487094783,2487095295,2487095551,2487095807,2487097855,2487098111,2487098623,2487098879,2487101183,2487101439,2487104255,2487104511,2487108095,2487109119,2487112447,2487112703,2487113727,2487114239,2487115007,2487115263,2487116287,2487116799,2487117055,2487117311,2487117567,2487117823,2487118079,2487118591,2487119359,2487119615,2487120127,2487120895,2487121407,2487121919,2487122175,2487122687,2487122943,2487123711,2487123967,2487124223,2487124735,2487124991,2487125503,2487126271,2487126527,2487127039,2487127551,2487128575,2487129087,2487129599,2487130111,2487130367,2487130623,2487131135,2487131391,2487131647,2487132159,2487132671,2487132927,2487133439,2487133951,2487134207,2487134463,2487134975,2487135743,2487136255,2487136511,2487138047,2487138303,2487138815,2487139071,2487140863,2487141119,2487141887,2487142655,2487142911,2487143167,2487143679,2487145215,2487145471,2487145727,2487146239,2487146495,2487147007,2487147775,2487148031,2487148287,2487148543,2487149055,2487149823,2487150335,2487151103,2487151359,2487151615,2487152127,2487152639,2487152895,2487153151,2487153407,2487154175,2487154687,2487154943,2487155711,2487155967,2487156735,2487222271,2487222527,2487222783,2487223039,2487223295,2487223807,2487224063,2487224319,2487224831,2487225087,2487225343,2487225855,2487226111,2487226367,2487226623,2487226879,2487227135,2487227391,2487227647,2487228159,2487228415,2487228671,2487228927,2487230207,2487236607,2487237631,2487238143,2487238655,2487246847,2487353343,2487361535,2487363583,2487365631,2487366399,2487366655,2487369471,2487369727,2487386111,2487394303,2487415039,2487415295,2487417855,2487418879,2487549951,2487615487,2487681023,2487746559,2487757823,2487758847,2487769087,2487771135,2487795711,2487798783,2487799295,2487812095,2488169215,2488169471,2488169727,2488169983,2488170239,2488170495,2488170751,2488171263,2488205311,2488270847,2488336383,2488401919,2488532991,2488795135,2488860671,2489647103,2489712639,2489745407,2489778175,2489843711,2489992447,2489993471,2489995519,2489996543,2489998591,2489998847,2489999103,2489999359,2490007551,2490007807,2490008575,2490008831,2490009087,2490009343,2490010623,2490010879,2490013695,2490014463,2490041599,2490041855,2490042111,2490042367,2490042623,2490043903,2490044415,2490044671,2490044927,2490045183,2490046719,2490046975,2490047487,2490049279,2490049535,2490056703,2490057727,2490059007,2490059263,2490059519,2490059775,2490060799,2490061055,2490061567,2490061823,2490062079,2490065151,2490065407,2490065919,2490066175,2490066943,2490067199,2490067711,2490067967,2490171391,2490236927,2490302463,2490367999,2490433535,2490449919,2490499071,2490695679,2490761215,2491154431,2491940095,2491940351,2491940863,2492006399,2492071935,2492137471,2492203007,2492268543,2492333823,2492334079,2492350719,2492351487,2492352511,2492353535,2492353791,2492354047,2492354815,2492355839,2492356351,2492357119,2492357375,2492357631,2492358143,2492358399,2492399615,2492432127,2492432383,2492465151,2492530687,2492596223,2492727295,2492792831,2492860159,2492860415,2492923903,2492989439,2493055999,2493057023,2493057535,2493058047,2493061119,2493062143,2493062655,2493063679,2493064191,2493064447,2493065727,2493066239,2493067775,2493068287,2493072383,2493073407,2493074431,2493074943,2493075967,2493076223,2493076479,2493076991,2493078527,2493079039,2493079807,2493080063,2493080575,2493081087,2493083135,2493083647,2493083903,2493085183,2493087231,2493087743,2493090815,2493091839,2493092863,2493094399,2493094911,2493096959,2493097471,2493099007,2493100031,2493100543,2493100799,2493101055,2493102079,2493102591,2493104639,2493105151,2493106175,2493107199,2493108223,2493109247,2493109503,2493111807,2493112319,2493112575,2493112831,2493113087,2493113343,2493114111,2493114367,2493114623,2493116415,2493116671,2493116927,2493119487,2493120255,2493513727,2493579263,2493644799,2493756415,2493757439,2493759487,2493766399,2493766655,2493775103,2493775359,2493812223,2493812479,2494103551,2494169087,2494201855,2494218239,2494562303,2494627839,2494889983,2494955519,2495021055,2495152127,2495217663,2495283199,2495348735,2495348991,2495349247,2495410943,2495411199,2495807487,2495873023,2495938559,2496004095,2496069631,2496135167,2496200703,2497576959,2497579007,2497587199,2497588223,2497593343,2497601535,2497609727,2497610239,2497610751,2497611263,2497611775,2497634303,2497635327,2497635839,2497638399,2497639423,2497640447,2497641471,2498301695,2498301951,2499477503,2499543039,2499545087,2499546879,2499559423,2499575807,2499608319,2499608575,2499612671,2499612927,2499613183,2499614207,2499614719,2499614975,2499615231,2499616767,2499617023,2499617279,2499617535,2499617791,2499618047,2499618303,2499618559,2499619071,2499620095,2499620351,2499620607,2499620863,2499621631,2499622143,2499622655,2499623167,2499623679,2499623935,2499624959,2499641343,2499665919,2499666431,2499666687,2499666943,2499667199,2499667455,2499667711,2499667967,2499668223,2499668991,2499669247,2499669503,2499669759,2499670015,2499670271,2499671039,2499671295,2499671551,2499672319,2499672831,2499673599,2499674111,2499739647,2499805183,2499870719,2500001791,2500034559,2500038655,2500040703,2500042751,2500043775,2500044799,2500045055,2500045311,2500045567,2500045823,2500046847,2500047359,2500047615,2500047871,2500048895,2500050943,2500067327,2500132863,2500133119,2500133631,2500133887,2500135679,2500135935,2500136703,2500136959,2500137215,2500141055,2500143103,2500143359,2500143615,2500143871,2500144127,2500145151,2500145407,2500145663,2500146175,2500146943,2500147455,2500147711,2500147967,2500148223,2500148479,2500148735,2500148991,2500149247,2500151807,2500152063,2500153599,2500153855,2500155135,2500155391,2500155903,2500156159,2500156415,2500157183,2500157439,2500157695,2500157951,2500158207,2500158463,2500158975,2500159231,2500161023,2500161279,2500161791,2500162559,2500163071,2500163327,2500163583,2500164607,2500165119,2500165631,2500165887,2500166143,2500166399,2500166655,2500169727,2500171007,2500171263,2500173823,2500174079,2500175359,2500175871,2500176127,2500176383,2500176639,2500177919,2500178175,2500178431,2500179711,2500179967,2500180479,2500182015,2500182271,2500182527,2500182783,2500183039,2500183295,2500184063,2500184319,2500185087,2500185343,2500186111,2500186367,2500187391,2500187647,2500188159,2500188671,2500188927,2500189183,2500189951,2500190207,2500190975,2500191231,2500191999,2500192255,2500194303,2500194559,2500196351,2500196607,2500196863,2500197887,2500198399,2500198911,2500199423,2500199935,2500200447,2500201727,2500202239,2500202495,2500203007,2500204031,2500204543,2500205055,2500205311,2500205567,2500205823,2500206079,2500206335,2500206591,2500206847,2500207103,2500207359,2500207615,2500208127,2500208639,2500209151,2500209663,2500209919,2500210431,2500210687,2500211199,2500211711,2500211967,2500212223,2500212735,2500212991,2500213247,2500213503,2500213759,2500214015,2500214271,2500214527,2500215039,2500215295,2500215807,2500216319,2500216831,2500217087,2500217343,2500217599,2500217855,2500218111,2500218623,2500218879,2500220159,2500220927,2500221183,2500221439,2500221695,2500221951,2500222207,2500222463,2500222975,2500223231,2500223487,2500223743,2500224255,2500224511,2500224767,2500225535,2500225791,2500226047,2500226303,2500226559,2500226815,2500227071,2500227327,2500227583,2500228095,2500228351,2500228607,2500229119,2500229375,2500229631,2500229887,2500230143,2500230655,2500230911,2500231167,2500231679,2500232191,2500232703,2500233215,2500233727,2500235263,2500235775,2500236799,2500237311,2500237823,2500238335,2500238591,2500238847,2500239103,2500239359,2500241407,2500241919,2500242431,2500242687,2500242943,2500243455,2500243967,2500244479,2500244735,2500244991,2500245247,2500245503,2500246527,2500246783,2500247039,2500247551,2500249087,2500249343,2500249599,2500254719,2500254975,2500255743,2500255999,2500258815,2500259583,2500260607,2500260863,2500263935,2500264703,2500264959,2500265471,2500266239,2500266495,2500267007,2500267263,2500268031,2500268287,2500268543,2500270335,2500270591,2500270847,2500271359,2500271615,2500272127,2500272383,2500272639,2500273151,2500273407,2500273663,2500273919,2500274175,2500274431,2500274943,2500275199,2500275455,2500277503,2500277759,2500278271,2500278783,2500279039,2500279551,2500279807,2500280319,2500280575,2500280831,2500281343,2500281855,2500282367,2500282623,2500282879,2500283135,2500283391,2500284415,2500285439,2500285695,2500285951,2500287231,2500289023,2500289535,2500289791,2500291327,2500291583,2500292607,2500292863,2500293119,2500293631,2500294655,2500295167,2500296191,2500296703,2500296959,2500297471,2500298239,2500298495,2500299519,2500300031,2500301055,2500301311,2500302335,2500302847,2500304383,2500305151,2500305407,2500306943,2500307199,2500310271,2500310527,2500312319,2500312575,2500313087,2500313343,2500317183,2500317439,2500319231,2500319487,2500321279,2500321535,2500321791,2500322047,2500323327,2500323583,2500325375,2500325631,2500326143,2500326399,2500327167,2500327423,2500327935,2500328447,2500329471,2500502783,2500503039,2500526079,2500526335,2500526847,2500527103,2500527359,2500527615,2500527871,2500528127,2500528639,2500529151,2500529407,2500529663,2500529919,2500530175,2500530687,2500531199,2500531711,2500532479,2500532735,2500532991,2500533759,2500534015,2500534783,2500535039,2500535295,2500535807,2500536319,2500536575,2500536831,2500537087,2500537343,2500537855,2500538111,2500539391,2500539647,2500540415,2500540671,2500540927,2500541183,2500541439,2500541951,2500542207,2500542463,2500542975,2500543743,2500543999,2500544511,2500545023,2500545279,2500545535,2500546047,2500546559,2500546815,2500547071,2500547327,2500547583,2500548095,2500548351,2500548607,2500549119,2500549375,2500549631,2500549887,2500550399,2500551679,2500552191,2500552447,2500552703,2500552959,2500553471,2500553727,2500553983,2500554239,2500554751,2500555007,2500555263,2500555775,2500556799,2500557311,2500557567,2500557823,2500558079,2500558335,2500558591,2500558847,2500559103,2500559615,2500559871,2500560127,2500560383,2500560639,2500561151,2500561407,2500561663,2500561919,2500562943,2500563199,2500563455,2500563711,2500563967,2500564735,2500564991,2500565247,2500566271,2500566527,2500566783,2500567039,2500567551,2500567807,2500568063,2500568319,2500568575,2500569087,2500569343,2500569599,2500570111,2500570623,2500571135,2500571391,2500572159,2500573183,2500573439,2500574207,2500574463,2500574975,2500575231,2500575743,2500576511,2500576767,2500577023,2500577279,2500578303,2500579071,2500579327,2500579583,2500581375,2500581631,2500581887,2500582911,2500583167,2500583423,2500583679,2500583935,2500584191,2500584959,2500585727,2500585983,2500586239,2500587519,2500588287,2500589311,2500589567,2500590079,2500590591,2500590847,2500591103,2500591359,2500591615,2500595711,2500595967,2500596223,2500597759,2500598015,2500599039,2500599295,2500600063,2500600319,2500600575,2500602367,2500602623,2500603391,2500603647,2500603903,2500604159,2500605695,2500605951,2500606207,2500606719,2500607487,2500607743,2500607999,2500608255,2500608511,2500608767,2500609791,2500610047,2500610303,2500610559,2500610815,2500611071,2500611327,2500611583,2500612095,2500612607,2500613119,2500614143,2500614911,2500615423,2500616191,2500616447,2500616703,2500620287,2500622335,2500623359,2500624383,2500625407,2500625663,2500627967,2500628223,2500629503,2500629759,2500630271,2500630527,2500630783,2500631039,2500632575,2500632831,2500633599,2500634623,2500634879,2500635135,2500635391,2500636671,2500636927,2500637183,2500637439,2500637695,2500637951,2500638207,2500638463,2500638719,2500639743,2500639999,2500640767,2500641791,2500642559,2500642815,2500643327,2500643583,2500643839,2500644863,2500645119,2500645375,2500646143,2500646399,2500646655,2500646911,2500648959,2500649983,2500652287,2500652543,2500653055,2500653311,2500655103,2500655359,2500655615,2500656383,2500657151,2500657407,2500657663,2500659199,2500661247,2500661503,2500661759,2500665087,2500665599,2500666367,2500666623,2500666879,2500668927,2500669183,2500670719,2500671231,2500671487,2500671743,2500672767,2500673279,2500673535,2500673791,2500674047,2500674815,2500675071,2500676607,2500676863,2500677631,2500678655,2500678911,2500679167,2500679679,2500679935,2500680191,2500681727,2500681983,2500682239,2500683007,2500683263,2500684031,2500684543,2500684799,2500685055,2500685823,2500687103,2500687359,2500687615,2500689919,2500690687,2500691455,2500691711,2500694015,2500694271,2500698111,2500698623,2500699135,2500700159,2500700671,2500700927,2500702207,2500702463,2500703231,2500704255,2500705535,2500706047,2500707839,2500708351,2500708607,2500708863,2500709375,2500709631,2500709887,2500710143,2500710399,2500710655,2500712447,2500712703,2500712959,2500713215,2500713983,2500714239,2500714751,2500715263,2500715519,2500715775,2500716031,2500716543,2500716799,2500717055,2500718591,2500718847,2500719103,2500719615,2500721151,2500721407,2500721663,2500721919,2500722687,2500723455,2500723711,2500724223,2500724479,2500724735,2500724991,2500725247,2500725503,2500725759,2500726015,2500726271,2500726527,2500727039,2500727807,2500728063,2500728319,2500728575,2500729087,2500729343,2500730111,2500730367,2500730879,2500731135,2500731391,2500731647,2500731903,2500732159,2500732415,2500732671,2500732927,2500733183,2500733695,2500733951,2500734463,2500734719,2500734975,2500735231,2500735487,2500735743,2500735999,2500736511,2500736767,2500737535,2500737791,2500740095,2500740607,2500740863,2500741119,2500741375,2500741631,2500741887,2500742143,2500742655,2500743167,2500743679,2500744191,2500744447,2500744703,2500745215,2500745727,2500745983,2500746239,2500746751,2500747007,2500747263,2500747519,2500748031,2500748287,2500748799,2500749311,2500749567,2500749823,2500750335,2500750591,2500750847,2500751103,2500751615,2500751871,2500752383,2500753151,2500753407,2500755455,2500755967,2500756479,2500757503,2500757759,2500758271,2500758527,2500759551,2500760575,2500761087,2500761343,2500761599,2500762623,2500763647,2500763903,2500764159,2500764415,2500764927,2500766207,2500766463,2500767743,2500767999,2500768511,2500768767,2500771327,2500771583,2500772095,2500772607,2500772863,2500773887,2500774399,2500774911,2500775167,2500775935,2500776959,2500777215,2500777471,2500779263,2500779519,2500779775,2500780031,2500781055,2500781311,2500782079,2500782335,2500782591,2500782847,2500783103,2500783359,2500784127,2500785151,2500785407,2500786175,2500787199,2500787455,2500787711,2500787967,2500919551,2500919807,2500920063,2500986111,2500986367,2500988927,2500989695,2500989951,2500990975,2500991999,2500993279,2500993535,2500993791,2500994047,2500994559,2500994815,2500995327,2500995583,2500995839,2500996095,2500996351,2500997631,2500998143,2500999167,2501000191,2501000447,2501000703,2501000959,2501001215,2501001727,2501001983,2501002239,2501002495,2501002751,2501003007,2501003263,2501003519,2501003775,2501004287,2501004543,2501005055,2501005311,2501006079,2501006335,2501006591,2501006847,2501007359,2501008383,2501008639,2501009407,2501009663,2501009919,2501010175,2501010431,2501010687,2501010943,2501011455,2501011967,2501012223,2501012479,2501013247,2501013503,2501033983,2501038079,2501054463,2501058559,2501059071,2501059327,2501059583,2501059839,2501060351,2501060607,2501061631,2501061887,2501062143,2501063167,2501063423,2501063679,2501063935,2501064191,2501064447,2501064959,2501065215,2501065983,2501066239,2501074943,2501076991,2501083135,2501090303,2501091327,2501091583,2501091839,2501092095,2501092351,2501093375,2501094399,2501095167,2501095423,2501096447,2501103103,2501103615,2501140479,2501148159,2501148671,2501165055,2501165311,2501165567,2501168639,2501168895,2501169151,2501255167,2501267455,2501271551,2501275647,2501279743,2501312511,2501313535,2501313791,2501314815,2501315071,2501342463,2501342719,2501344767,2501345023,2501391871,2501392127,2501574655,2501640191,2501644287,2501648383,2501672959,2501681151,2501689343,2501705727,2501706751,2501707775,2501708287,2501708799,2501709055,2501712895,2501713663,2501722111,2501738495,2501804031,2501812223,2502033407,2502045695,2502046207,2502046463,2502046719,2502049791,2502050303,2502050815,2502051071,2502051327,2502051583,2502052095,2502052607,2502053119,2502053375,2502053887,2502054399,2502054655,2502056191,2502056447,2502058495,2502058751,2502059775,2502060031,2502060543,2502060799,2502061311,2502061567,2502063359,2502063615,2502064639,2502064895,2502065151,2502065663,2502066175,2502082559,2502090751,2502094847,2502095359,2502095871,2502096127,2502096383,2502096639,2502097151,2502097407,2502097919,2502098175,2502098943,2502100479,2502100991,2502101503,2502101759,2502102271,2502102527,2502103039,2502103295,2502103551,2502103807,2502105855,2502106623,2502107391,2502107903,2502110975,2502111231,2502111487,2502111743,2502113535,2502113791,2502114559,2502114815,2502117119,2502117375,2502117631,2502117887,2502118911,2502119167,2502122239,2502122495,2502123775,2502124031,2502124287,2502124799,2502125567,2502125823,2502126079,2502126335,2502127359,2502128127,2502128383,2502128895,2502130175,2502130431,2502130687,2502130943,2502131199,2502131455,2502131711,2502131967,2502132479,2502132735,2502132991,2502133247,2502134527,2502134783,2502135039,2502135295,2502135807,2502136063,2502136831,2502137087,2502137599,2502137855,2502138367,2502138623,2502139391,2502139903,2502140159,2502140415,2502141695,2502141951,2502142463,2502142719,2502143231,2502143487,2502144255,2502144511,2502145279,2502145535,2502145791,2502146047,2502149119,2502149375,2502149887,2502150143,2502150655,2502151167,2502154751,2502155519,2502155775,2502156543,2502157823,2502158079,2502160639,2502160895,2502161407,2502161663,2502163199,2502163455,2502164223,2502164479,2502164991,2502165247,2502166527,2502168575,2502172671,2502173183,2502174207,2502174719,2502175231,2502175487,2502175743,2502176511,2502176767,2502177023,2502177279,2502177535,2502177791,2502180863,2502181119,2502181375,2502181887,2502182911,2502183935,2502184191,2502184959,2502185471,2502186239,2502186495,2502187007,2502187775,2502188031,2502188287,2502189311,2502190847,2502192127,2502192383,2502193151,2502193407,2502194175,2502194431,2502194943,2502195199,2502195455,2502196223,2502196991,2502197503,2502199295,2502199551,2502200319,2502200575,2502201087,2502201343,2502202111,2502202367,2502203647,2502203903,2502204159,2502204415,2502204671,2502204927,2502205695,2502206207,2502206719,2502207231,2502207743,2502211327,2502211839,2502212863,2502213375,2502213631,2502216703,2502216959,2502217983,2502218239,2502218751,2502219007,2502221823,2502225919,2502226943,2502227967,2502228479,2502230015,2502295551,2502296319,2502296575,2502296831,2502297599,2502297855,2502298623,2502298879,2502426623,2502428671,2502430719,2502434815,2502438911,2502439167,2502439935,2502440191,2502440447,2502440959,2502441727,2502441983,2502442239,2502442495,2502442751,2502443007,2502443519,2502443775,2502444543,2502444799,2502446079,2502446335,2502446591,2502446847,2502447103,2502447871,2502448383,2502448639,2502449151,2502449407,2502449663,2502449919,2502450175,2502450687,2502451199,2502459391,2502484991,2502485247,2502492159,2502557695,2503016447,2503081983,2503090175,2503098367,2503099135,2503099903,2503100671,2503100927,2503101183,2503101439,2503101695,2503101951,2503102207,2503102719,2503102975,2503103231,2503103487,2503103743,2503104255,2503104511,2503104767,2503105279,2503105535,2503105791,2503106047,2503106303,2503106559,2503114751,2503122943,2503127039,2503131135,2503135231,2503135487,2503135743,2503135999,2503136255,2503136511,2503136767,2503137023,2503137279,2503137535,2503137791,2503138047,2503138303,2503138559,2503138815,2503139071,2503139327,2503147519,2503149567,2503172095,2503174143,2503185919,2503186431,2503201791,2503202047,2503204863,2503205119,2503344127,2503376895,2503409663,2503475199,2503540735,2503543039,2503543295,2503544831,2503545087,2503545599,2503545855,2503546367,2503546623,2503546879,2503547135,2503547391,2503547903,2503548159,2503548415,2503548927,2503549439,2503550463,2503550719,2503552255,2503552767,2503553023,2503554047,2503554303,2503554559,2503554815,2503555071,2503555327,2503555583,2503555839,2503560191,2503560447,2503562495,2503562751,2503563007,2503563263,2503572479,2503572991,2503573503,2503671807,2503684863,2503685119,2503737343,2503868415,2503876607,2503876863,2503877631,2503877887,2503878143,2503878911,2503879167,2503879423,2503879679,2503880191,2503880703,2503882751,2503884799,2503901183,2503905279,2503907327,2503909375,2503911423,2503915519,2503917567,2503933951,2503999487,2504458239,2504466431,2504468479,2504470527,2504472575,2504472831,2504473087,2504473599,2504474623,2504482815,2504484863,2504486911,2504491007,2504499199,2504500223,2504501247,2504503295,2504505343,2504507391,2504508415,2504509439,2504511487,2504515583,2504517631,2504518655,2504519679,2504523775,2504654847,2504720383,2504916991,2504921087,2504925183,2504933375,2504949759,2504950783,2504951039,2504951295,2504951807,2504952063,2504952319,2504952575,2504952831,2504953599,2504953855,2504956159,2504956415,2504956671,2504956927,2504957439,2504957951,2504958975,2504959231,2504961023,2504961535,2504962047,2504965119,2504965631,2504975103,2504975871,2504976127,2504976895,2504977663,2504978175,2504978431,2504978687,2504980479,2504980735,2504981247,2504981503,2504982527,2505113599,2505113855,2505114367,2505115391,2505115647,2505115903,2505116159,2505117183,2505117695,2505117951,2505118463,2505119743,2505119999,2505120511,2505121023,2505121791,2505122047,2505122303,2505123839,2505124351,2505124607,2505126655,2505127423,2505127679,2505127935,2505128191,2505128703,2505129471,2505129727,2505129983,2505130495,2505130751,2505131007,2505131519,2505131775,2505132031,2505132287,2505133823,2505134079,2505134335,2505134847,2505135359,2505135615,2505135871,2505136127,2505136383,2505136639,2505136895,2505137407,2505137663,2505137919,2505138431,2505138687,2505140479,2505140991,2505141247,2505141503,2505141759,2505142783,2505143039,2505143295,2505143807,2505144319,2505144575,2505145343,2505145599,2505145855,2505146111,2505146623,2505146879,2505147391,2505147903,2505148671,2505149183,2505149951,2505150719,2505151743,2505151999,2505152255,2505152511,2505152767,2505153023,2505156607,2505156863,2505157119,2505157375,2505157631,2505158399,2505158655,2505158911,2505159423,2505159679,2505160191,2505160703,2505161215,2505161471,2505162239,2505162751,2505163519,2505163775,2505164031,2505164287,2505164543,2505164799,2505165055,2505165823,2505166079,2505166591,2505167103,2505167359,2505167615,2505168639,2505168895,2505169151,2505170943,2505171199,2505171455,2505171711,2505172479,2505172991,2505173247,2505173759,2505174015,2505174271,2505174527,2505175039,2505175551,2505176063,2505176575,2505176831,2505178879,2505179135,2505441279,2505467903,2505474047,2505482239,2505484287,2505485311,2505486335,2505490431,2505498623,2505499647,2505500671,2505502719,2505506815,2505539583,2505542911,2505543167,2505543423,2505543679,2505543935,2505544191,2505544447,2505544703,2505544959,2505545215,2505545471,2505545727,2505545983,2505546239,2505546495,2505546751,2505547007,2505547519,2505547775,2505548031,2505548287,2505548543,2505548799,2505549055,2505549311,2505549567,2505549823,2505550079,2505550335,2505550591,2505550847,2505551103,2505551359,2505551615,2505551871,2505552383,2505552639,2505552895,2505553151,2505553407,2505553663,2505553919,2505554175,2505554431,2505554687,2505554943,2505555199,2505555455,2505555711,2505555967,2505564159,2505566463,2505567743,2505567999,2505569023,2505569791,2505570815,2505571071,2505571327,2505571583,2505572351,2505574399,2505576447,2505576703,2505577215,2505577471,2505577727,2505577983,2505578239,2505578495,2505578751,2505579007,2505579263,2505579519,2505579775,2505580287,2505580543,2505584639,2505588735,2505590783,2505592831,2505596927,2505597183,2505597695,2505597951,2505598207,2505598463,2505598719,2505598975,2505599231,2505599487,2505599999,2505600255,2505600511,2505600767,2505601023,2505605119,2505613311,2505614335,2505614591,2505614847,2505615615,2505615871,2505616127,2505616639,2505616895,2505617663,2505617919,2505618175,2505618431,2505618687,2505618943,2505619199,2505619455,2505620479,2505620735,2505620991,2505621503,2505622527,2505623039,2505624063,2505625087,2505626111,2505626367,2505626623,2505626879,2505627135,2505627391,2505627647,2505627903,2505628159,2505628415,2505628671,2505628927,2505629183,2505629695,2505629951,2505630207,2505637887,2505703423,2505768959,2505769215,2505769471,2505770239,2505771007,2505771263,2505771519,2505789439,2505790463,2505790719,2505791231,2505792511,2505792767,2505793279,2505793535,2505801727,2505804287,2505804543,2505814015,2505814271,2505816063,2505816575,2505816831,2505817087,2505817855,2505818111,2506178815,2506179071,2506194943,2506195199,2506195711,2506195967,2506196479,2506196735,2506196991,2506197503,2506198015,2506202111,2506202623,2506202879,2506203135,2506207231,2506207487,2506208255,2506209023,2506209279,2506209535,2506209791,2506210559,2506210815,2506211071,2506212095,2506212351,2506213119,2506213375,2506215423,2506215679,2506215935,2506216191,2506216447,2506217215,2506217471,2506217727,2506218239,2506219007,2506219775,2506220287,2506220543,2506220799,2506221055,2506221311,2506222335,2506222591,2506223359,2506223615,2506224127,2506224383,2506225663,2506225919,2506226175,2506226431,2506293247,2506358783,2506359807,2506360831,2506361855,2506363647,2506363903,2506364927,2506366975,2506391551,2506394111,2506394367,2506394623,2506395647,2506396159,2506396671,2506397695,2506398207,2506398719,2506399231,2506399743,2506405887,2506489855,2506506239,2506514431,2506518527,2506522623,2506523391,2506523647,2506523903,2506524415,2506524671,2506524927,2506525695,2506525951,2506526463,2506526975,2506527231,2506527487,2506528255,2506528511,2506528767,2506529279,2506529535,2506529791,2506530047,2506530559,2506530815,2506547199,2506548479,2506548735,2506548991,2506549247,2506549503,2506550015,2506550271,2506550527,2506550783,2506551039,2506551295,2506551551,2506551807,2506552319,2506552575,2506552831,2506553087,2506553343,2506553599,2506553855,2506554111,2506554367,2506554623,2506554879,2506555135,2506555391,2506620927,2506630143,2506631167,2506633215,2506635263,2506637311,2506637567,2506638079,2506638335,2506638847,2506639615,2506640127,2506640383,2506640639,2506640895,2506641151,2506641407,2506642431,2506642943,2506643199,2506643455,2506643711,2506644223,2506644735,2506645503,2506645759,2506646015,2506646271,2506646527,2506647295,2506647807,2506648063,2506648319,2506648575,2506649087,2506649343,2506649599,2506650111,2506650367,2506650623,2506651135,2506651647,2506651903,2506652159,2506652415,2506652671,2506652927,2506653183,2506653439,2506653695,2506657791,2506670079,2506670591,2506673151,2506673663,2506674431,2506674943,2506675711,2506675967,2506678015,2506678271,2506679295,2506679551,2506681343,2506682367,2506682879,2506685951,2506686207,2506784767,2506792959,2506801151,2506809343,2506817535,2506825727,2506833919,2506850303,2506883071,2506948607,2507014143,2507079679,2507085055,2507085567,2507086335,2507086847,2507087871,2507147519,2507147775,2507148031,2507150079,2507150335,2507150591,2507150847,2507151103,2507151871,2507152127,2507152383,2507152639,2507152895,2507153151,2507153407,2507153663,2507155967,2507156991,2507157503,2507158783,2507159551,2507160063,2507160575,2507160831,2507161599,2507162879,2507163135,2507164159,2507164415,2507165183,2507165439,2507165695,2507165951,2507168255,2507173887,2507174143,2507175935,2507177983,2507183359,2507183615,2507184127,2507185151,2507186175,2507190271,2507210751,2507276287,2507345919,2507354111,2507358207,2507366399,2507368447,2507369471,2507370495,2507371519,2507372543,2507373055,2507373567,2507373823,2507382783,2507390975,2507395071,2507399167,2507496447,2507496703,2507506175,2507506431,2507506687,2507507711,2507510527,2507510783,2507529727,2507531263,2507702271,2507728895,2507729919,2507735039,2508062719,2508063743,2508063999,2508064767,2508065791,2508066047,2508066303,2508066815,2508068863,2508070911,2508075007,2508077055,2508079103,2508081151,2508081919,2508082431,2508082687,2508082943,2508083199,2508085247,2508086271,2508087295,2508089343,2508091391,2508095487,2508103679,2508105727,2508107775,2508109823,2508111871,2508112127,2508112383,2508112639,2508113151,2508113407,2508113663,2508114175,2508114687,2508114943,2508115711,2508115967,2508116223,2508116479,2508116735,2508117503,2508117759,2508119295,2508119551,2508120063,2508120575,2508128255,2508161023,2508182527,2508182783,2508193791,2508259327,2508263423,2508264447,2508265471,2508267519,2508275711,2508292095,2508308479,2508324863,2508359679,2508360191,2508365823,2508374015,2508382207,2508390399,2508455935,2508521471,2508587007,2508631295,2508631551,2508631807,2508632063,2508652543,2508718079,2508836863,2508837887,2508838911,2508839935,2508840959,2508841983,2508847103,2508848127,2508849151,2508914687,2508980223,2509045759,2509176831,2509209599,2509215231,2509215743,2509218303,2509218559,2509218815,2509219839,2509220863,2509221887,2509222143,2509222399,2509222655,2509222911,2509242367,2509307903,2509373439,2509438975,2509504511,2509570047,2509832191,2509897727,2509914111,2509916159,2509918207,2509920255,2509922303,2509924351,2509928447,2509930495,2509934591,2509936639,2509937919,2509938175,2509938431,2509938687,2509941247,2509941759,2509942783,2509944831,2509945343,2509945855,2509946879,2509963263,2510028799,2510094335,2510159871,2510749695,2510815231,2510946303,2511011839,2511077375,2511142911,2511273983,2511339519,2511405055,2511437823,2511601663,2511634431,2511667199,2511699967,2511994879,2512060415,2512093183,2512191487,2512257023,2512322559,2512715775,2512781311,2512846847,2512859647,2512860159,2512867327,2512867839,2512872447,2512872959,2512912383,2512945151,2512977919,2513043455,2513043967,2513044223,2513076479,2513076735,2513078783,2513079039,2513082367,2513082623,2513107455,2513107711,2513108991,2513174527,2513240063,2513502207,2513567743,2513600511,2513633279,2513698815,2513764351,2514124799,2514157311,2514419711,2514485247,2514665471,2514665727,2514677759,2514678783,2515025919,2515042303,2515058687,2515078143,2515078399,2515079935,2515080191,2515080447,2515080703,2515080959,2515081215,2515081471,2515081983,2515082239,2515083263,2515140607,2515142655,2515173119,2515173375,2515187711,2515187967,2515188223,2515188479,2515188735,2515188991,2515189247,2515189503,2515189759,2515198463,2515198975,2515199999,2515200511,2515206143,2515208447,2515208703,2515212287,2515212543,2515271679,2515419135,2515427327,2515435519,2515599359,2515664895,2516058111,2516070399,2516074495,2516077567,2516078591,2516090879,2516101119,2516107263,2516115455,2516123647,2516254719,2516320255,2516451327,2516516863,2516525055,2516526335,2516526847,2516527103,2516529151,2516531199,2516533247,2516541439,2516545535,2516547583,2516549631,2516550655,2516551679,2516553727,2516557823,2516559871,2516561919,2516563967,2516566015,2516581887,2516582143,2516582399,2516647935,2517227519,2517229567,2519236607,2519269375,2521231103,2521231359,2522812415,2522813439,2522816511,2522824703,2522832639,2522832895,2522834943,2522841087,2523201535,2523267071,2523463679,2523529215,2523594751,2523595775,2523596799,2523597823,2523598847,2523601919,2523602943,2523603967,2523604991,2523606015,2523607039,2523609087,2523612159,2523613183,2523614207,2523615231,2523617279,2523621375,2523621887,2523622399,2523623423,2523626495,2523626751,2523627007,2523627263,2523627519,2523628543,2523631615,2523632639,2523633663,2523634687,2523635711,2523636735,2523637759,2523638783,2523639807,2523644927,2523645951,2523646207,2523646463,2523646975,2523647999,2523651071,2523652095,2523652863,2523653119,2523657215,2523659263,2523660287,2523725823,2523732991,2523734015,2523746303,2523748351,2523748863,2523750399,2523758591,2523759615,2523760639,2523761151,2523761663,2523762687,2523766783,2523774975,2523779071,2523791359,2523939071,2523942911,2523943423,2523943679,2523943935,2523944447,2523944703,2523944959,2523945215,2523945471,2523945727,2523945983,2523946239,2523946751,2523947007,2523948031,2523948287,2523949311,2523949823,2523950079,2523950591,2523950847,2523951359,2523951615,2523951871,2523952383,2523952639,2523952895,2523953407,2523953919,2523954687,2523954943,2523955199,2524119039,2524184575,2524315647,2524512255,2524643327,2524971007,2525036543,2525037567,2525038591,2525039615,2525040639,2525040895,2525041151,2525041407,2525041663,2525042687,2525044735,2525045759,2525046783,2525047807,2525050879,2525051903,2525053951,2525054975,2525055999,2525058047,2525059071,2525060095,2525061119,2525062143,2525071359,2525072383,2525073407,2525075455,2525076479,2525077503,2525078527,2525083647,2525084671,2525085695,2525086719,2525089791,2525090815,2525091839,2525092863,2525093887,2525094911,2525095935,2525101055,2525102079,2525118463,2525122559,2525126655,2525130751,2525131775,2525132799,2525133311,2525133823,2525134847,2525142015,2525142527,2525143039,2525147135,2525233151,2525298687,2525626367,2525757439,2525822975,2525954047,2526019583,2526085119,2526216191,2526281727,2526412799,2526478335,2526543871,2526937087,2527002623,2527133695,2527461375,2527789055,2527789311,2527797247,2527797503,2527920127,2527985663,2528051199,2528116735,2528247807,2528313343,2528575487,2528641023,2528706559,2529034239,2529099775,2529165311,2529411327,2529411583,2529411839,2529412095,2529412351,2529413119,2529413375,2529415167,2529416703,2529416959,2529417215,2529417471,2529417727,2529419263,2529492991,2529558527,2529886207,2529951743,2530017279,2530082815,2530148351,2530213887,2530541567,2530607103,2530672639,2530803711,2530869247,2531131391,2531131903,2531132159,2531132415,2531132927,2531133183,2531133439,2531133695,2531133951,2531134207,2531134463,2531134719,2531134975,2531135231,2531138047,2531138303,2531138559,2531138815,2531139071,2531140351,2531140863,2531141119,2531141375,2531141887,2531142143,2531142399,2531142655,2531142911,2531143423,2531143679,2531143935,2531144191,2531144447,2531144703,2531144959,2531147775,2531148031,2531148287,2531148543,2531148799,2531149055,2531149567,2531149823,2531150079,2531151103,2531151359,2531151615,2531151871,2531152383,2531152639,2531153151,2531153407,2531153663,2531153919,2531154431,2531154943,2531155967,2531156223,2531156479,2531156735,2531158015,2531158271,2531158527,2531158783,2531159039,2531159295,2531159551,2531160063,2531160319,2531160575,2531160831,2531161087,2531161343,2531161855,2531162111,2531162367,2531162623,2531162879,2531163135,2531164415,2531164671,2531165439,2531165695,2531165951,2531166207,2531167487,2531167743,2531167999,2531183103,2531183359,2531183615,2531183871,2531184383,2531184639,2531184895,2531185151,2531185407,2531185919,2531186175,2531186431,2531186687,2531186943,2531187199,2531187455,2531187711,2531187967,2531189759,2531190015,2531190271,2531190527,2531191551,2531191807,2531192319,2531192575,2531192831,2531196927,2531262463,2531459071,2531524607,2531590143,2531655679,2531657727,2531659775,2531660799,2531661823,2531663871,2531667967,2531670015,2531672063,2531680255,2531684351,2531688447,2531692543,2531696639,2531704831,2531713023,2531715071,2531717119,2531719167,2531721215,2532048895,2532114431,2532179967,2532278271,2532278527,2532279295,2532279551,2532281343,2532281599,2532282111,2532282367,2532285439,2532285695,2532285951,2532286207,2532287231,2532287487,2532287743,2532287999,2532289279,2532289535,2532311295,2532311551,2532312319,2532312575,2532313855,2532314111,2532360191,2532360447,2532376575,2532442111,2532445183,2532449279,2532450303,2532451327,2532452351,2532453375,2532457471,2532461567,2532463615,2532464639,2532464895,2532465151,2532465663,2532467711,2532468735,2532469759,2532470783,2532473855,2532474879,2532475903,2532476927,2532477951,2532478975,2532479999,2532481023,2532486143,2532487167,2532488191,2532489215,2532492287,2532495359,2532496383,2532496639,2532497151,2532497407,2532498431,2532499455,2532500479,2532501503,2532506623,2532507647,2532573183,2532638719,2532704255,2532769791,2532835327,2532900863,2532966399,2533031935,2533032191,2533032447,2533032703,2533032959,2533033215,2533033471,2533097471,2533154815,2533158911,2533160447,2533160703,2533160959,2533171199,2533179391,2533228543,2533294079,2533359615,2533362175,2533362431,2533375999,2533392383,2533523455,2533556223,2538602495,2538603519,2538603775,2538668031,2539716351,2539716607,2539782143,2539847679,2539978751,2539980543,2539980799,2539981823,2539982079,2539982847,2539983871,2539985919,2539986943,2539987967,2539988991,2539994111,2539995135,2539999231,2540000255,2540001279,2540002303,2540002559,2540002815,2540003327,2540004351,2540005375,2540006399,2540010239,2540010495,2540011519,2540012543,2540013567,2540014591,2540017663,2540019711,2540020735,2540021759,2540023807,2540024831,2540029951,2540030207,2540030463,2540030975,2540033023,2540034047,2540035071,2540036095,2540037119,2540038911,2540039167,2540040191,2540040959,2540041215,2540042239,2540043007,2540043263,2540044287,2540240895,2540306431,2540322815,2540326911,2540335103,2540339199,2540347391,2540355583,2540367871,2540896255,2540929023,2540961791,2541223935,2541289471,2541513471,2541513727,2541513983,2541514239,2541514495,2541682687,2541732351,2541732607,2541732863,2541748223,2541813759,2541879295,2541961215,2542075903,2542141439,2542206975,2542272511,2542338047,2542394367,2542394623,2542395391,2542395647,2542400511,2542400767,2542475775,2542476287,2542479359,2542480383,2542483455,2542483711,2542483967,2542484479,2542489855,2542490111,2542490623,2542490879,2542491391,2542491647,2542492927,2542493183,2542500351,2542500863,2542514175,2542514431,2542517759,2542518015,2542870527,2542878719,2542882815,2542886911,2542927871,2542993407,2543040511,2543042559,2543063295,2543063551,2543063807,2543067647,2543067903,2543068159,2543068415,2543068671,2543068927,2543069183,2543069439,2543069695,2543386623,2543452159,2543583231,2543648767,2543714303,2543779839,2544228351,2544228607,2544229119,2544229375,2544500735,2544566271,2544631807,2544697343,2544762879,2544828415,2544893951,2544959487,2545025023,2545090559,2545156095,2545221631,2545287167,2545352703,2545361407,2545361663,2545418239,2545483775,2545549311,2545550079,2545550847,2545551103,2545551871,2545552639,2545553407,2545554175,2545554943,2545555711,2545556479,2545566463,2545566975,2545567743,2545568255,2545568767,2545594367,2545594623,2545594879,2545595135,2545595391,2545595647,2545595903,2545596415,2545596671,2545596927,2545598719,2545598975,2545599231,2545599487,2545599743,2545599999,2545600255,2545601279,2545601535,2545601791,2545602047,2545602559,2545602815,2545607679,2545607935,2545608447,2545608703,2545610751,2545611007,2545611263,2545612287,2545612543,2545612799,2545613055,2545613311,2545613567,2545614079,2545614335,2545614591,2545614847,2545680383,2545745919,2545811455,2545942527,2546008063,2546860031,2546868223,2546868735,2546868991,2546869503,2546872319,2546872575,2546872831,2546873087,2546876415,2546877183,2546877439,2546877951,2546878207,2546878719,2546879487,2546880255,2546880767,2546881535,2546881791,2546882303,2546885887,2546886399,2546886911,2546887679,2546892799,2546893055,2546894847,2546895103,2546895359,2546895615,2546895871,2546896127,2546896383,2546896639,2546925567,2547154943,2547187711,2547318783,2547515391,2547523583,2547527679,2547531775,2548039679,2548563967,2548826111,2548829695,2548829951,2548830207,2548830463,2548830719,2548830975,2548831231,2548831487,2548831743,2548831999,2548832255,2548832511,2548832767,2548833279,2548833535,2548833791,2548834303,2548842495,2548858879,2548862975,2548867071,2548875263,2548877311,2548879359,2548883455,2548887551,2548891647,2548893695,2548894207,2548894463,2548895743,2548899327,2548899583,2548905983,2548907007,2548908031,2548908543,2548915967,2548916223,2548924927,2548926463,2548928511,2548932607,2548934655,2548936703,2548938239,2548938495,2548938751,2548939263,2548939519,2548939775,2548940799,2548948991,2548951039,2548953087,2548955135,2548957183,2549612543,2549614591,2549616639,2549617663,2549618687,2549620735,2549624831,2549626879,2549628927,2549629951,2549630463,2549630975,2549636095,2549636863,2549637119,2549641215,2549645311,2549678079,2549698559,2549700607,2549701119,2549701631,2549702399,2549702655,2549704703,2549706751,2549710847,2549743615,2549809151,2549874687,2549876735,2549878783,2549880831,2549882879,2549884927,2549891071,2549899263,2549901311,2549903359,2549905407,2549906431,2549906687,2549907455,2549923839,2549927935,2549929983,2549932031,2549940223,2550005759,2550136831,2550202367,2552250367,2552264703,2552265727,2552266751,2552269055,2552269823,2552270847,2552271871,2552272895,2552273919,2552274175,2552274431,2552274943,2552275967,2552276991,2552279039,2552279807,2552280063,2552280575,2552281087,2552281343,2552284415,2552284671,2552284927,2552285439,2552286463,2552287487,2552289535,2552290559,2552291583,2552292095,2552292607,2552293631,2552295167,2552295679,2552296191,2552296703,2552297727,2552298239,2552299263,2552299519,2552545279,2552553471,2552561663,2552578047,2552594431,2552823807,2552856575,2552922111,2552926207,2552927231,2552928255,2552930303,2552946687,2553544703,2553610239,2553612543,2553612799,2553613311,2553614335,2553615359,2553616383,2553616639,2553617919,2553618175,2553618431,2553619455,2553620479,2553620735,2553625343,2553625599,2553626111,2553626367,2553627903,2553628159,2553629439,2553629695,2553630207,2553630463,2553675775,2553806847,2554068991,2554300415,2554300671,2554396671,2554429439,2554445823,2554446335,2554446847,2554447359,2554447871,2554448383,2554448895,2554449407,2554462207,2554527743,2554535935,2554544127,2554552319,2554560511,2554568703,2554576895,2554585087,2554699775,2554707967,2554712063,2554716159,2554720255,2554724351,2554732543,2554733567,2554734591,2554736639,2554740735,2554744831,2554746879,2554748927,2554753023,2554765311,2554773503,2554777599,2554781695,2554783743,2554789887,2554855423,2554920959,2554986495,2555052031,2555117567,2555183103,2555248639,2555314175,2555445247,2555510783,2555576319,2555641855,2555707391,2555903999,2555969535,2555970559,2555971583,2555972607,2555973631,2555974655,2555975679,2555976703,2555977727,2555978751,2555979775,2555980799,2555981823,2555982847,2555983871,2555984895,2555985919,2555986943,2555987967,2555988991,2555990015,2555991039,2555992063,2555993087,2555994111,2555995135,2555996159,2555997183,2555998207,2555999231,2556000255,2556001279,2556002303,2556003327,2556004351,2556005375,2556006399,2556007423,2556008447,2556009471,2556010495,2556010751,2556011007,2556011263,2556011519,2556012543,2556013311,2556013567,2556014591,2556015615,2556016639,2556017663,2556018687,2556019711,2556019967,2556020223,2556020735,2556021759,2556022015,2556022271,2556022527,2556022783,2556023295,2556023551,2556023807,2556024831,2556025855,2556027903,2556028927,2556029951,2556030975,2556031999,2556033023,2556033535,2556033791,2556034047,2556035071,2556100607,2556166143,2556231679,2556362751,2556428287,2556493823,2556559359,2556624895,2556690431,2556755967,2556756991,2556757247,2556757503,2556757759,2556758015,2556761087,2556761343,2556762367,2556763135,2556763903,2556764159,2556764415,2556766207,2556766719,2556768767,2556769023,2556769791,2556770047,2556771327,2556771839,2556773119,2556773375,2556773887,2556774143,2556776703,2556776959,2556778495,2556778751,2556780031,2556780799,2556787967,2556788223,2556790783,2556791807,2556800511,2556800767,2556803327,2556803839,2556807423,2556807679,2556808191,2556809215,2556821503,2556887039,2556960767,2556961791,2556962815,2556963071,2556963327,2556985343,2557018111,2557083647,2557542399,2557607935,2557673471,2557739007,2557837311,2557870079,2557935615,2558918655,2558984191,2559049727,2559115263,2559180799,2559246335,2559311871,2559508479,2559574015,2559770623,2559836159,2559901695,2559967231,2560032767,2560098303,2560163839,2560229375,2560360447,2560425983,2560492287,2560492543,2560492799,2560494079,2560494335,2560494591,2560494847,2560495103,2560495359,2560495615,2560497919,2560498175,2560498431,2560498943,2560499199,2560499455,2560499711,2560499967,2560500223,2560500479,2560500735,2560501247,2560501759,2560502271,2560503039,2560503295,2560503551,2560503807,2560504063,2560504575,2560504831,2560505087,2560505599,2560505855,2560506111,2560506367,2560506623,2560507391,2560507903,2560509183,2560509439,2560509695,2560509951,2560510463,2560510975,2560511231,2560511487,2560511743,2560511999,2560512255,2560512511,2560513023,2560513279,2560514047,2560514303,2560514815,2560515071,2560515327,2560515583,2560516095,2560516607,2560516863,2560517119,2560517375,2560517631,2560517887,2560518143,2560518399,2560518911,2560519167,2560519423,2560519679,2560520447,2560520703,2560520959,2560521215,2560521471,2560521727,2560521983,2560522751,2560523519,2560524031,2560524287,2560524799,2560525055,2560525311,2560525567,2560525823,2560526079,2560527359,2560528127,2560528383,2560528639,2560532223,2560532479,2560541183,2560541439,2560541951,2560542207,2560545791,2560546047,2560546303,2560546559,2560547327,2560547583,2560548607,2560549119,2560550399,2560550911,2560553215,2560553471,2560553983,2560554239,2560554495,2560554751,2560556543,2560557055,2560950271,2561015807,2561146879,2561409023,2561671167,2562872319,2562872575,2562916351,2562917375,2562918655,2562918911,2562919167,2562919423,2562920191,2562920447,2562920959,2562921983,2562922239,2562922751,2562923007,2562924287,2562924543,2562925055,2562925311,2562925567,2562926079,2562926335,2562926591,2562929407,2562930175,2562930687,2562932223,2562940927,2562941439,2562941951,2562942975,2562943743,2562943999,2562945023,2562945279,2562945791,2562946047,2562946303,2562946559,2562946815,2562950143,2562950655,2562951167,2562951423,2562951679,2562952191,2562953215,2562953727,2562954239,2562954495,2562954751,2562955263,2562955775,2562956287,2562956799,2562958335,2562958847,2562959359,2562959871,2562960639,2562961919,2562962175,2562962943,2562963199,2562963455,2562963711,2562963967,2562964991,2562966783,2562967039,2562968575,2562969087,2562969343,2562969599,2562970623,2562970879,2562971135,2562972415,2562972671,2562972927,2562973183,2562974719,2562975231,2562975487,2562975743,2562976767,2562977279,2562977791,2562978815,2562979839,2562980351,2562980863,2562981631,2562981887,2563180543,2563180799,2563181055,2563182591,2563184639,2563186687,2563186943,2563187199,2563190015,2563190783,2563191039,2563191551,2563191807,2563193087,2563198975,2563200767,2563201023,2563201279,2563201535,2563202047,2563203583,2563204095,2563204607,2563205119,2563205631,2563205887,2563206143,2563206399,2563206655,2563207167,2563209215,2563209727,2563213311,2563215615,2563216895,2563217407,2563217919,2563219199,2563219455,2563219967,2563220223,2563220735,2563220991,2563221247,2563221503,2563222783,2563223039,2563227647,2563228159,2563244031,2563637247,2563768319,2564947967,2565013503,2565111807,2565126911,2565127167,2565128447,2565128703,2565144575,2565210111,2565275647,2565279743,2565281791,2565283839,2565287935,2565292031,2565308415,2565341183,2566914047,2566979583,2567045119,2567110655,2567118847,2567120895,2567176191,2567241727,2567307263,2567897087,2567962623,2568028159,2568093695,2568159231,2568224767,2568290303,2569142271,2569404415,2569451519,2569451775,2569454591,2569454847,2569461247,2569461503,2569464831,2569465087,2569797631,2569863167,2569940991,2569942015,2569953279,2569957375,2569973759,2569974783,2569990143,2569994239,2571436031,2571436287,2571436543,2571436799,2572681215,2572746751,2572812287,2572943615,2572943871,2572944383,2572944895,2572945407,2572947455,2572950271,2572950527,2572953599,2572953855,2572954111,2572954367,2572955391,2572955647,2572959743,2572959999,2572960255,2572960511,2572960767,2572961023,2572961279,2572961535,2572961791,2572967935,2572972031,2572974079,2572975103,2572975615,2572976127,2572984319,2572984575,2572984831,2572985087,2572985343,2572985599,2572985855,2572986111,2572986367,2572986623,2572986879,2572987135,2572987391,2572987647,2572987903,2572988159,2572988415,2572989439,2572989695,2572989951,2572991487,2572992511,2572996607,2572997631,2572998655,2573000703,2573008895,2573078527,2573082623,2573088767,2573090815,2573107199,2573197311,2573198335,2573336575,2573388543,2573388799,2573402111,2573467647,2573533183,2573598719,2573926399,2573991935,2574123007,2574188543,2574254079,2574286847,2574287103,2574303999,2574304255,2574306303,2574307327,2574309375,2574309887,2574311167,2574311423,2574313471,2574315007,2574315263,2574319615,2574647295,2574778367,2583580671,2583581695,2583582207,2583582463,2583582719,2583582975,2583588095,2583588351,2583691263,2583695359,2583697407,2583699455,2583707647,2583724031,2583728127,2583730175,2583732223,2583736319,2583740415,2583756799,2583896063,2583898111,2583898879,2583899135,2583899903,2583900159,2583901183,2583901695,2583902463,2583906303,2583907327,2583910399,2583910911,2583919615,2583920127,2583920383,2583920639,2583921151,2583921663,2583921919,2583922175,2583922431,2583924735,2583930879,2583932927,2583934975,2583937023,2583945215,2583945471,2583946239,2583947263,2583951359,2583951615,2583951871,2583952383,2583952895,2583953407,2584018943,2584084479,2584086271,2584086527,2584086783,2584087039,2584087551,2584088319,2584088575,2584089087,2584089599,2584090111,2584090623,2584090879,2584091135,2584091647,2584092159,2584092671,2584093695,2584093951,2584094719,2584094975,2584095231,2584095487,2584095999,2584096255,2584096511,2584096767,2584097791,2584098047,2584098303,2584098559,2584098815,2584100607,2584100863,2584102143,2584104959,2584106495,2584106751,2584107775,2584108543,2584109055,2584110079,2584111103,2584112127,2584112383,2584112639,2584113151,2584114175,2584115711,2584115967,2584116223,2584116479,2584116735,2584116991,2584117247,2584117759,2584118015,2584118783,2584119039,2584119295,2584119551,2584119807,2584120063,2584120319,2584120831,2584121087,2584121343,2584121599,2584121855,2584122111,2584122367,2584122879,2584123135,2584123391,2584124415,2584125439,2584125951,2584126207,2584126463,2584126719,2584126975,2584127231,2584127487,2584128255,2584128511,2584129023,2584129279,2584130559,2584131583,2584132607,2584132863,2584133119,2584133375,2584140799,2584141823,2584197119,2584199167,2584208383,2584208639,2584208895,2584209407,2584209663,2584210431,2584210687,2584210943,2584211455,2584213503,2584214527,2584214783,2584215551,2584227839,2584231935,2584248319,2584281087,2584282111,2584283135,2584285183,2584285695,2584289279,2584290303,2584291327,2584294399,2584295423,2584296447,2584301567,2584302079,2584303359,2584303615,2584322047,2584324095,2584332799,2584333311,2584336383,2584337407,2584346623,2584412159,2584477695,2584478463,2584478719,2584479231,2584480767,2584481791,2584485887,2584486655,2584486911,2584487167,2584487935,2584491007,2584492287,2584492799,2584493055,2584494079,2584494335,2584494591,2584494847,2584495103,2584497151,2584497663,2584497919,2584498175,2584501503,2584502271,2584506367,2584511231,2584511487,2584514815,2584515071,2584517631,2584518655,2584520703,2584522751,2584523775,2584525823,2584526335,2584526847,2584533503,2584534015,2584535039,2584535807,2584536063,2584543487,2584543743,2584544255,2584545023,2584545279,2584546303,2584547327,2584549375,2584550399,2584560639,2584561663,2584563711,2584564479,2584564735,2584565759,2584566271,2584567295,2584571903,2584572927,2584576511,2584576767,2584577023,2584578047,2584578303,2584578815,2584580095,2584580607,2584581119,2584581631,2584581887,2584584447,2584584703,2584593663,2584593919,2584596479,2584597503,2584598527,2584599039,2584599295,2584599551,2584600575,2584605695,2584608767,2584609535,2584609791,2584610047,2584610303,2584610559,2584610815,2584611071,2584611583,2584611839,2584612095,2584612351,2584613119,2584613375,2584613631,2584613887,2584614143,2584614655,2584615423,2584615679,2584620031,2584620799,2584621823,2584622079,2584623359,2584623615,2584623871,2584624127,2584625151,2584625407,2584625663,2584626175,2584626431,2584626687,2584626943,2584629247,2584629759,2584630015,2584630271,2584630783,2584631039,2584631295,2584633343,2584635391,2584636415,2584636671,2584637183,2584637439,2584637695,2584637951,2584638207,2584638463,2584638719,2584638975,2584639231,2584639487,2584639743,2584641023,2584641279,2584652799,2584653823,2584654079,2584655615,2584655871,2584657919,2584659967,2584663295,2584663551,2584666111,2584666367,2584666623,2584666879,2584667135,2584667391,2584667647,2584667903,2584668159,2584668671,2584668927,2584669183,2584669439,2584669695,2584670207,2584670975,2584671743,2584671999,2584672255,2584672511,2584672767,2584673023,2584673535,2584674303,2584674559,2584674815,2584675071,2584675327,2584675583,2584675839,2584676095,2584676351,2584678143,2584678399,2584679935,2584680447,2584680959,2584682495,2584683519,2584684543,2584685055,2584686591,2584687103,2584688639,2584692735,2584697343,2584697599,2584698879,2584699647,2584702975,2584703999,2584704255,2584704767,2584725503,2584725759,2584739839,2584740095,2584740351,2584740607,2584740863,2584741119,2584741375,2584741631,2584741887,2584742143,2584742399,2584742655,2584742911,2584743167,2584743423,2584743679,2584743935,2584744191,2584744447,2584744703,2584744959,2584745215,2584745471,2584745727,2584746495,2584746751,2584747007,2584747519,2584747775,2584748543,2584748799,2584749055,2584749311,2584749567,2584749823,2584750079,2584750335,2584750591,2584750847,2584751103,2584751359,2584751615,2584751871,2584752127,2584752383,2584752639,2584752895,2584753151,2584753407,2584753663,2584753919,2584754175,2584754431,2584754687,2584754943,2584755199,2584755455,2584755711,2584755967,2584756223,2584756479,2584756991,2584757247,2584758015,2584758271,2584758527,2584758783,2584759039,2584759295,2584760063,2584760319,2584760575,2584760831,2584761087,2584761343,2584761855,2584762111,2584762367,2584762623,2584763135,2584763391,2584763647,2584763903,2584764159,2584764415,2584764671,2584764927,2584765439,2584766463,2584766719,2584766975,2584767487,2584767743,2584767999,2584771071,2584771327,2584771583,2584773119,2584773375,2584774655,2584774911,2584775423,2584775679,2584775935,2584776447,2584776703,2584777983,2584778239,2584779007,2584779519,2584780287,2584780543,2584780799,2584781055,2584781823,2584782335,2584783871,2584784127,2584784639,2584784895,2584785151,2584785407,2584785663,2584785919,2584786175,2584786687,2584786943,2584787455,2584787711,2584787967,2584788479,2584790015,2584790271,2584791295,2584791551,2584792063,2584792319,2584792575,2584793087,2584794367,2584794623,2584795647,2584795903,2584796159,2584796415,2584796671,2584796927,2584797183,2584797439,2584797951,2584798207,2584798463,2584798719,2584798975,2584799231,2584799743,2584800255,2584800511,2584800767,2584801535,2584803327,2584803583,2584803839,2584804095,2584817663,2584818687,2584823807,2584824831,2584835839,2584836095,2584838143,2584842239,2584842495,2584842751,2584843007,2584843263,2584843519,2584844799,2584845055,2584845567,2584845823,2584846079,2584846335,2584848383,2584851455,2584851711,2584851967,2584852223,2584852479,2584852735,2584852991,2584853247,2584854015,2584854271,2584860159,2584860671,2584868863,2584869887,2584870143,2584870399,2584870655,2584870911,2584871423,2584871935,2584873471,2584873983,2584875007,2584876031,2584876287,2584877055,2584877311,2584878079,2584878847,2584879103,2584880127,2584880383,2584881151,2584881407,2584887551,2584887807,2584888063,2584889343,2584891391,2584892927,2584893695,2584893951,2584895487,2584896511,2584897535,2584897791,2584907775,2584908031,2584908287,2584908799,2584909823,2584910847,2584911871,2584912895,2584913919,2584914175,2584914431,2584914687,2584914943,2584915967,2584918015,2584919039,2584921087,2584922111,2584924159,2584924415,2584925439,2584926207,2584930815,2584936447,2584944639,2584945663,2584946175,2584946687,2584946943,2584948223,2584948479,2584948735,2584952831,2584965119,2584969215,2584976383,2584976639,2584979455,2584984063,2584984575,2584985599,2585001983,2585067519,2585069567,2585070591,2585070847,2585071103,2585071359,2585071615,2585073663,2585074687,2585075455,2585075711,2585076735,2585077759,2585078015,2585078271,2585078527,2585078783,2585081855,2585082367,2585082879,2585084415,2585084927,2585085439,2585085695,2585085951,2585092095,2585092607,2585093119,2585095679,2585095935,2585096191,2585099263,2585100287,2585107711,2585107967,2585108479,2585109503,2585110271,2585110527,2585111551,2585112575,2585114623,2585116671,2585118719,2585119743,2585121023,2585121279,2585122303,2585122559,2585123327,2585123839,2585128447,2585128703,2585131007,2585133055,2585133567,2585134079,2585147647,2585148159,2585166847,2585167871,2585169407,2585170687,2585198591,2585239551,2585243647,2585246719,2585252095,2585260031,2585403391,2585403647,2585407487,2585407743,2585411583,2585411839,2585419775,2585420031,2585421823,2585422079,2585425919,2585426943,2585427967,2585432063,2585433087,2585433599,2585434111,2585436159,2585444607,2585448447,2585527807,2585528319,2585542655,2585543423,2585543679,2585544191,2585544447,2585544703,2585545727,2585545983,2585546239,2585546495,2585546751,2585547775,2585548799,2585549055,2585549311,2585549567,2585549823,2585550335,2585550591,2585550847,2585554943,2585559039,2585561087,2585561599,2585563135,2585563647,2585563903,2585565183,2585565695,2585571327,2585573375,2585574399,2585574655,2585579519,2585583615,2585588735,2585589759,2585591807,2585592063,2585592319,2585593343,2585593599,2585593855,2585595647,2585595903,2585596671,2585596927,2585597183,2585597695,2585597951,2585598975,2585599487,2585599999,2585612799,2585613055,2585613567,2585614591,2585615871,2585616127,2585616383,2585617407,2585618431,2585620479,2585624575,2585628159,2585628671,2585640959,2585647103,2585649151,2585651199,2585652223,2585652735,2585659391,2585659647,2585659903,2585660159,2585663487,2585663743,2585663999,2585664255,2585664511,2585664767,2585665023,2585665279,2585665535,2585666047,2585671679,2585672703,2585673727,2585677823,2585679615,2585679871,2585681919,2585682943,2585683455,2585704959,2585705471,2585707519,2585707775,2585708031,2585708287,2585711103,2585711359,2585714175,2585714431,2585714943,2585715199,2585716735,2585717247,2585720063,2585720319,2585722111,2585722623,2585722879,2585751551,2585752575,2585755647,2585763839,2585772031,2585776127,2585788415,2585815551,2585815807,2585853951,2585855231,2585855487,2585856511,2585856767,2585858303,2585858559,2585859327,2585859583,2585859839,2585860095,2585862143,2585862399,2585862911,2585863423,2585874687,2585874943,2585877503,2585877759,2585878527,2585878783,2585879807,2585880063,2585881087,2585881343,2585882111,2585882367,2585885439,2585885695,2585886463,2585887231,2585887999,2585888255,2585891327,2585891583,2585892351,2585892607,2585892863,2585893119,2585893631,2585893887,2585895935,2585896191,2585899263,2585899519,2585901567,2585901823,2585905663,2585905919,2585906175,2585906431,2585906943,2585907199,2585914111,2585914367,2585918463,2585918719,2585938175,2585938431,2585938943,2585939199,2585942271,2585942527,2585944319,2585944575,2585945087,2585945343,2585946111,2585946367,2585947391,2585947903,2585954559,2585954815,2585957631,2585957887,2585959423,2585959679,2585962751,2585963007,2585965311,2585965567,2585965823,2585966079,2585966591,2585966847,2585967103,2585967359,2585969151,2585969407,2585969919,2585970175,2585971967,2585972223,2585973247,2585974015,2585974271,2585974527,2585975807,2585976063,2585985023,2586066943,2586071039,2586072063,2586072575,2586072831,2586073087,2586074111,2586074623,2586078463,2586078719,2586078975,2586079231,2586133503,2586134527,2586134783,2586135039,2586137343,2586137599,2586138623,2586138879,2586139135,2586139647,2586140159,2586140671,2586144767,2586146815,2586147071,2586148095,2586148351,2586148863,2586149119,2586149631,2586150911,2586151679,2586151935,2586152447,2586152703,2586152959,2586153215,2586155007,2586156287,2586156543,2586156799,2586158079,2586158591,2586158847,2586159103,2586159359,2586160127,2586163199,2586165247,2586165759,2586166271,2586169343,2586173439,2586179583,2586180607,2586185727,2586189823,2586190335,2586190847,2586191359,2586191871,2586198015,2586200063,2586202111,2586214399,2586220543,2586221567,2586222847,2586223103,2586223871,2586224383,2586225151,2586225407,2586225663,2586225919,2586226175,2586226431,2586226687,2586227711,2586227967,2586228223,2586230783,2586247167,2586253311,2586255359,2586259455,2586261503,2586263551,2586266111,2586266367,2586267391,2586268671,2586268927,2586269439,2586270719,2586271743,2586312703,2586328319,2586328575,2586328831,2586329087,2586329343,2586329599,2586330367,2586330623,2586331135,2586331391,2586334719,2586334975,2586335231,2586335743,2586335999,2586336255,2586336511,2586336767,2586338047,2586338303,2586341119,2586341375,2586342655,2586343167,2586343679,2586343935,2586344447,2586344703,2586344959,2586345471,2586345727,2586346751,2586347263,2586349311,2586349567,2586351871,2586352127,2586352383,2586352639,2586353151,2586353407,2586353663,2586361855,2586365695,2586365951,2586367231,2586367487,2586368511,2586368767,2586369023,2586369279,2586372095,2586372607,2586372863,2586373119,2586374655,2586375167,2586375423,2586375935,2586377471,2586377727,2586378239,2586378495,2586380031,2586380287,2586380543,2586381055,2586382335,2586382847,2586383359,2586383615,2586384895,2586385407,2586386943,2586387199,2586387967,2586388735,2586388991,2586389247,2586390015,2586390783,2586394879,2586395135,2586395647,2586397183,2586397439,2586398463,2586398719,2586399231,2586399487,2586402303,2586402559,2586403071,2586403327,2586404095,2586404351,2586404863,2586405119,2586406143,2586406399,2586407935,2586408191,2586410239,2586410751,2586413567,2586414079,2586414335,2586414591,2586415103,2586415359,2586415871,2586416127,2586416383,2586416639,2586417663,2586417919,2586419455,2586419711,2586420735,2586420991,2586421247,2586421503,2586422015,2586422271,2586422783,2586423039,2586424575,2586424831,2586425087,2586425343,2586425855,2586426367,2586427135,2586427391,2586428671,2586428927,2586429695,2586429951,2586431231,2586431487,2586432255,2586432511,2586433535,2586434047,2586435327,2586435583,2586436607,2586437631,2586438655,2586439167,2586439679,2586440703,2586441727,2586441983,2586442239,2586442495,2586442751,2586443775,2586445055,2586445311,2586445823,2586446591,2586446847,2586447103,2586447615,2586448383,2586448639,2586449407,2586449663,2586450431,2586450687,2586451199,2586451455,2586453247,2586453503,2586455039,2586455295,2586455551,2586455807,2586457087,2586457343,2586458879,2586459135,2586460159,2586460671,2586461439,2586461695,2586462207,2586463231,2586463487,2586463743,2586464255,2586464511,2586465023,2586465535,2586465791,2586467583,2586468095,2586470399,2586470911,2586471679,2586471935,2586473215,2586473471,2586474239,2586474495,2586475007,2586475519,2586476031,2586476287,2586478079,2586478335,2586478591,2586478847,2586480127,2586480383,2586480895,2586481151,2586482687,2586483199,2586483967,2586484223,2586484479,2586484735,2586486783,2586488831,2586489343,2586489855,2586490111,2586491903,2586492159,2586493183,2586493439,2586493951,2586494975,2586495487,2586495743,2586495999,2586496511,2586496767,2586498047,2586498303,2586499071,2586499327,2586499839,2586500095,2586501119,2586501375,2586501631,2586501887,2586503679,2586503935,2586505471,2586505983,2586506751,2586507007,2586507263,2586507519,2586509055,2586509567,2586509823,2586510335,2586510591,2586510847,2586511359,2586511871,2586514175,2586514431,2586517247,2586517759,2586518527,2586519039,2586519295,2586519551,2586519807,2586520831,2586521343,2586522623,2586522879,2586525183,2586525439,2586525951,2586528767,2586530047,2586530303,2586530559,2586530815,2586531071,2586531327,2586531583,2586532351,2586532607,2586532863,2586533119,2586533887,2586534143,2586534911,2586535423,2586537983,2586538239,2586539519,2586539775,2586541567,2586541823,2586542079,2586543359,2586544127,2586544383,2586544639,2586544895,2586545663,2586545919,2586546943,2586547199,2586547711,2586547967,2586548479,2586548735,2586548991,2586549247,2586549503,2586549759,2586550015,2586550527,2586550783,2586551295,2586551807,2586552063,2586552319,2586554879,2586555135,2586555647,2586555903,2586557439,2586557695,2586557951,2586558463,2586558719,2586558975,2586559231,2586560767,2586561023,2586562303,2586562559,2586563071,2586563327,2586563583,2586563839,2586564351,2586564607,2586565887,2586566143,2586567679,2586567935,2586568191,2586568447,2586568703,2586568959,2586569215,2586569471,2586569983,2586571007,2586574335,2586574591,2586574847,2586579455,2586579711,2586579967,2586580735,2586580991,2586583039,2586607615,2586607871,2586609663,2586609919,2586610175,2586611199,2586611455,2586611711,2586611967,2586612223,2586612735,2586613759,2586614015,2586615039,2586615295,2586615807,2586617855,2586618111,2586619647,2586619903,2586621439,2586621695,2586621951,2586622463,2586622975,2586623743,2586623999,2586624255,2586625023,2586625279,2586626559,2586626815,2586628095,2586628607,2586629119,2586629375,2586629631,2586629887,2586630399,2586630911,2586631167,2586631679,2586633471,2586634239,2586634495,2586634751,2586635007,2586635263,2586636543,2586636799,2586637055,2586637567,2586639615,2586639871,2586640127,2586640383,2586640639,2586640895,2586641407,2586642175,2586643199,2586643455,2586644223,2586644735,2586644991,2586645247,2586646015,2586646271,2586647551,2586647807,2586648831,2586649343,2586649855,2586650111,2586650623,2586650879,2586653695,2586653951,2586654463,2586654719,2586654975,2586655231,2586656767,2586657023,2586657535,2586657791,2586658047,2586658303,2586659583,2586659839,2586660607,2586660863,2586661887,2586664447,2586664703,2586665215,2586665471,2586666495,2586666751,2586667263,2586667519,2586667775,2586668031,2586669567,2586670591,2586671359,2586671615,2586673407,2586673663,2586675455,2586675711,2586675967,2586676991,2586677247,2586679295,2586679551,2586679807,2586680063,2586680575,2586680831,2586681855,2586682367,2586683391,2586683647,2586684159,2586684415,2586684927,2586685183,2586685951,2586686463,2586687487,2586687743,2586689535,2586689791,2586691071,2586691327,2586691839,2586692863,2586694655,2586694911,2586695679,2586695935,2586696447,2586696703,2586697215,2586697471,2586697727,2586697983,2586701055,2586701311,2586701823,2586703871,2586705663,2586706175,2586706687,2586706943,2586710015,2586710783,2586711039,2586711295,2586711551,2586711807,2586712063,2586712319,2586712575,2586713343,2586713599,2586713855,2586714111,2586715135,2586715391,2586715903,2586716159,2586716415,2586716671,2586718207,2586720255,2586720511,2586721279,2586722303,2586722559,2586723839,2586724095,2586725631,2586725887,2586726143,2586726399,2586726911,2586727167,2586728447,2586728703,2586728959,2586729471,2586729727,2586729983,2586730495,2586730751,2586731007,2586732799,2586733055,2586735615,2586735871,2586738175,2586738431,2586738687,2586739455,2586740223,2586740479,2586740991,2586741247,2586746623,2586746879,2586751999,2586752255,2586752511,2586752767,2586753279,2586754047,2586755071,2586755327,2586755583,2586758143,2586759167,2586759423,2586760959,2586761215,2586761471,2586762239,2586762751,2586763263,2586764287,2586764543,2586765055,2586765311,2586765567,2586765823,2586766079,2586766335,2586767871,2586768127,2586768895,2586769151,2586770175,2586770431,2586770687,2586771199,2586771455,2586771967,2586773247,2586773503,2586775039,2586775295,2586775551,2586775807,2586776063,2586776575,2586776831,2586777087,2586777343,2586777599,2586777855,2586778367,2586778623,2586778879,2586779135,2586779391,2586779647,2586779903,2586780671,2586781695,2586781951,2586782207,2586782719,2586786303,2586786559,2586787839,2586788351,2586789375,2586789631,2586790143,2586790655,2586794751,2586795519,2586804223,2586804479,2586804735,2586805503,2586805759,2586806271,2586807295,2586807551,2586808319,2586808575,2586808831,2586809087,2586812159,2586812415,2586812671,2586812927,2586813183,2586814207,2586814463,2586818815,2586819327,2586820095,2586820351,2586821119,2586821375,2586821887,2586822143,2586823167,2586823423,2586824959,2586825215,2586827775,2586828543,2586833663,2586833919,2586834175,2586834431,2586835199,2586835711,2586836991,2586853631,2586853887,2586854143,2586854399,2586869759,2586871807,2586873855,2586875135,2586875391,2586875903,2586876415,2586876671,2586876927,2586882047,2586882303,2586884351,2586885119,2586886143,2586886399,2586886655,2586887935,2586888191,2586890751,2586891007,2586891263,2586891519,2586891775,2586892031,2586892287,2586899455,2586899711,2586902527,2586918911,2586919423,2586919935,2586920703,2586920959,2586923007,2586927103,2586931199,2586935295,2586937343,2586937855,2586938367,2586939391,2586943743,2586951935,2586956287,2586956543,2586957567,2586957823,2586958335,2586958591,2586959359,2586959871,2586960127,2586960383,2586960639,2586963967,2586964479,2586964991,2586965503,2586966015,2586967039,2586968063,2586968575,2586969087,2586969599,2587002879,2587003903,2587017215,2587018495,2587018751,2587019775,2587020031,2587020287,2587020543,2587020799,2587021311,2587021823,2587022335,2587033599,2587033855,2587034111,2587041791,2587042047,2587042815,2587043071,2587043327,2587043583,2587043839,2587050239,2587051263,2587051519,2587066367,2587067903,2587068159,2587068671,2587068927,2587070975,2587071487,2587071743,2587071999,2587073791,2587074047,2587081215,2587081471,2587082751,2587083007,2587090943,2587092991,2587099135,2587099391,2587099647,2587099903,2587100159,2587100927,2587101183,2587101439,2587101695,2587101951,2587102463,2587102719,2587102975,2587103231,2587103487,2587103743,2587103999,2587104255,2587104511,2587104767,2587105023,2587105279,2587105535,2587106303,2587106559,2587106815,2587107071,2587107327,2587109119,2587109375,2587111167,2587111423,2587111679,2587123967,2587124223,2587124479,2587128575,2587128831,2587131903,2587132159,2587164927,2587165183,2587176447,2587176703,2587180031,2587180287,2587198463,2587198719,2587198975,2587199231,2587205631,2587211775,2587214591,2587214847,2587215871,2587216895,2587217407,2587217919,2587218943,2587222015,2587222271,2587235583,2587235839,2587255807,2587256831,2587279359,2587279615,2587284479,2587284735,2587286015,2587286783,2587287551,2587287807,2587288575,2587288831,2587292671,2587292927,2587293695,2587294719,2587295231,2587318271,2587320319,2587324415,2587328511,2587361279,2587361535,2587361791,2587369471,2587369983,2587370495,2587371007,2587371519,2587372543,2587373567,2587374591,2587375615,2587376639,2587377151,2587377663,2587381759,2587385855,2587386367,2587387135,2587387391,2587388927,2587394047,2587399167,2587399423,2587402239,2587410431,2587415551,2587416063,2587418623,2587426815,2587427071,2587427327,2587430399,2587430655,2587431423,2587432447,2587435007,2587435263,2587435519,2587437055,2587439103,2587447295,2587448831,2587449343,2587451391,2587461631,2587461887,2587463679,2587464191,2587464447,2587464959,2587465215,2587466239,2587466751,2587467519,2587467775,2587472895,2587473407,2587474943,2587475199,2587475967,2587482111,2587484159,2587492351,2587499007,2587499519,2587501567,2587525119,2587525631,2587542527,2587544575,2587545599,2587549695,2587550719,2587557887,2587559167,2587559935,2587560191,2587560447,2587560703,2587560959,2587566079,2587567359,2587567615,2587568127,2587570175,2587572223,2587578879,2587579647,2587582463,2587586815,2587587071,2587590399,2587590655,2587591167,2587591423,2587594751,2587595007,2587598847,2587607039,2587608319,2587631615,2587631871,2587639807,2587647999,2587648511,2587649023,2587650047,2587652095,2587652351,2587656191,2587656447,2587672575,2587679231,2587680767,2587681279,2587681535,2587684863,2587685631,2587685887,2587686143,2587686399,2587697151,2587698175,2587699199,2587700223,2587700479,2587705343,2587705599,2587705855,2587706623,2587706879,2587707135,2587707391,2587707647,2587707903,2587708927,2587709439,2587709695,2587710463,2587710719,2587712511,2587712767,2587713023,2587713279,2587713535,2587714559,2587715583,2587717119,2587717631,2587718911,2587719167,2587719423,2587719679,2587721727,2587723263,2587723519,2587724543,2587724799,2587725823,2587726079,2587729919,2587730431,2587730943,2587731967,2587732479,2587735295,2587735551,2587738111,2587741183,2587741439,2587747839,2587748351,2587754751,2587755007,2587762687,2587765247,2587765759,2587766527,2587766783,2587767807,2587770879,2587772927,2587773183,2587773439,2587773695,2587774975,2587779071,2587779839,2587780095,2587780351,2587781119,2587781375,2587781631,2587781887,2587782143,2587782655,2587783167,2587787263,2587788031,2587788287,2587795967,2587796479,2587798783,2587799039,2587801343,2587801599,2587803647,2587803903,2587804159,2587804671,2587811839,2587812351,2587812863,2587813887,2587814399,2587824127,2587826175,2587828223,2587829503,2587836415,2587836927,2587852799,2587854847,2587855871,2587856895,2587934719,2587938815,2587941119,2587941375,2587951103,2587952127,2587953151,2587954175,2587955199,2587957247,2587958271,2587959295,2587961087,2587961343,2587962367,2587963391,2587964415,2587965439,2587966463,2587967487,2587975679,2587979775,2587983871,2588016639,2588033023,2588037119,2588038143,2588039167,2588041215,2588042239,2588043263,2588044287,2588045311,2588046335,2588047359,2588049407,2588053503,2588057599,2588061695,2588070911,2588071935,2588072959,2588073983,2588075007,2588078079,2588078335,2588078591,2588078847,2588079103,2588079359,2588079615,2588079871,2588080127,2588082175,2588147711,2588164095,2588180479,2588188671,2588196863,2588213247,2588278783,2588295167,2588299263,2588303359,2588311551,2588315647,2588317695,2588318463,2588318719,2588319743,2588327935,2588328959,2588329983,2588330239,2588332031,2588344319,2588352511,2588377087,2588409855,2588410879,2588412927,2588413951,2588414207,2588414463,2588414719,2588414975,2588415999,2588417023,2588418047,2588420095,2588420351,2588420863,2588421119,2588421631,2588421887,2588422143,2588423167,2588424191,2588426239,2588434431,2588438527,2588442623,2588459007,2588467199,2588471295,2588471807,2588477439,2588478463,2588479487,2588480511,2588481535,2588482559,2588483583,2588484607,2588485631,2588486655,2588487679,2588488447,2588488703,2588489727,2588490751,2588491775,2588492799,2588493567,2588494847,2588495871,2588496895,2588497919,2588498943,2588499967,2588500991,2588502015,2588503039,2588504063,2588505087,2588506111,2588507135,2588508159,2588510207,2588512255,2588514303,2588516351,2588518399,2588519423,2588520447,2588521471,2588526591,2588528639,2588534783,2588535807,2588536831,2588538879,2588539135,2588539647,2588539903,2588540927,2588671999,2588934143,2588966911,2588999679,2589001727,2589001983,2589002751,2589003775,2589007871,2589008639,2589009151,2589009407,2589009919,2589011967,2589012223,2589012479,2589012735,2589012991,2589015295,2589015551,2589015807,2589016063,2589032447,2589048831,2589052927,2589054975,2589055999,2589056255,2589056511,2589056767,2589057023,2589065215,2589073407,2589081599,2589082111,2589082623,2589082879,2589083647,2589085183,2589085695,2589089279,2589089791,2589090559,2589090815,2589091327,2589092351,2589092607,2589092863,2589093375,2589093887,2589095935,2589096447,2589097983,2589130751,2589131263,2589131519,2589131775,2589132799,2589133823,2589135359,2589135871,2589136895,2589137919,2589138175,2589138431,2589138943,2589139967,2589140991,2589141247,2589142015,2589143039,2589147135,2589163519,2589167103,2589172735,2589175551,2589179903,2589196543,2589196799,2589197055,2589197311,2589199871,2589200127,2589200383,2589201151,2589201407,2589201919,2589202175,2589202687,2589202943,2589203455,2589212671,2589229055,2589229567,2589230079,2589230335,2589230591,2589230847,2589231103,2589231615,2589231871,2589232127,2589232383,2589232639,2589235199,2589235455,2589235711,2589235967,2589236223,2589236735,2589237247,2589238271,2589238527,2589238783,2589239039,2589239295,2589240831,2589241087,2589245439,2589246207,2589246463,2589248511,2589248767,2589249535,2589249791,2589250303,2589250559,2589250815,2589251071,2589253119,2589253375,2589253887,2589254143,2589254655,2589254911,2589255167,2589256191,2589256447,2589256703,2589256959,2589257215,2589257471,2589257727,2589257983,2589260287,2589260543,2589260799,2589261055,2589261567,2589261823,2589262335,2589262591,2589262847,2589263871,2589264895,2589265407,2589265663,2589265919,2589267967,2589270015,2589278719,2589278975,2589279231,2589279487,2589279743,2589282303,2589282815,2589283071,2589283327,2589284607,2589284863,2589285119,2589285375,2589285631,2589285887,2589286399,2589286655,2589287423,2589288447,2589289983,2589290239,2589292543,2589293567,2589294079,2589294591,2589307647,2589307903,2589308415,2589308671,2589308927,2589309183,2589327359,2589327615,2589328895,2589329407,2589330431,2589331455,2589335551,2589343743,2589355007,2589356031,2589357055,2589357567,2589360127,2589367295,2589367551,2589367807,2589368063,2589392895,2589458943,2589459199,2589459711,2589460479,2589460735,2589460991,2589461503,2589463039,2589463551,2589491199,2589507583,2589524223,2589524479,2589524735,2589524991,2589525247,2589525503,2589525759,2589526015,2589528063,2589532159,2589589503,2589589759,2589590015,2589592831,2589593087,2589597695,2589599231,2589600767,2589601791,2589602303,2589602815,2589603839,2589604863,2589605375,2589605887,2589622271,2589655039,2589655295,2589655551,2589655807,2589663231,2589663999,2589664255,2589664511,2589664767,2589665279,2589667327,2589671935,2589672959,2589673471,2589673727,2589674239,2589676031,2589676287,2589687807,2589689855,2589690367,2589690623,2589690879,2589691135,2589691391,2589691903,2589692415,2589692927,2589693951,2589695999,2589697535,2589698047,2589698559,2589698815,2589699071,2589700095,2589706239,2589706751,2589707007,2589707263,2589712383,2589721599,2589722623,2589722879,2589723135,2589723647,2589723903,2589724159,2589724415,2589724671,2589724927,2589725183,2589726207,2589726719,2589726975,2589727231,2589727487,2589727743,2589727999,2589728255,2589728511,2589728767,2589744639,2589744895,2589745919,2589746175,2589749247,2589751295,2589751551,2589752319,2589752831,2589753087,2589753343,2589786111,2589786623,2589786879,2589787135,2589787391,2589787647,2589788159,2589790207,2589791231,2589792255,2589792767,2589793279,2589793535,2589794047,2589794303,2589794559,2589794815,2589795327,2589795839,2589796351,2589796863,2589797375,2589797631,2589797887,2589798143,2589798399,2589798655,2589798911,2589799423,2589799935,2589800959,2589801215,2589801471,2589801727,2589802239,2589802495,2589802751,2589803263,2589803519,2589803775,2589804031,2589804287,2589804543,2589804799,2589805055,2589805311,2589805823,2589851647,2589851903,2589852671,2589853695,2589853951,2589854207,2589857279,2589857791,2589859839,2589860095,2589860351,2589860607,2589860863,2589861119,2589861375,2589861631,2589861887,2589862143,2589862399,2589862655,2589862911,2589863167,2589863423,2589863679,2589863935,2589864191,2589864447,2589864703,2589864959,2589865215,2589865471,2589865983,2589866239,2589866495,2589867007,2589867263,2589867775,2589868031,2589868287,2589868543,2589869055,2589870079,2589871103,2589872127,2589872895,2589873663,2589874431,2589874687,2589874943,2589875199,2589875455,2589875711,2589875967,2589876479,2589876735,2589876991,2589877247,2589877503,2589877759,2589878015,2589878271,2589878527,2589878783,2589879039,2589879295,2589879551,2589879807,2589880063,2589880319,2589880575,2589880831,2589881087,2589881343,2589881599,2589881855,2589882879,2589884415,2589884671,2589887487,2589889791,2589900031,2589901055,2589907711,2589908735,2589910527,2589911807,2589912319,2589917183,2589917695,2589917951,2589918207,2589922303,2589922559,2589925375,2589926399,2589926911,2589927167,2589927423,2589929471,2589931519,2589949951,2589953791,2589954047,2589969919,2589970175,2589970687,2589970943,2589974527,2589974783,2589976063,2589976319,2589982719,2590507007,2591031295,2591096831,2591162367,2591195135,2591227903,2591260671,2591264767,2591267327,2591268863,2591277055,2591283199,2591283455,2591293439,2591326207,2591358975,2591375359,2591391743,2591408127,2591424511,2591457279,2591473663,2591481855,2591483903,2591485951,2591486975,2591487999,2591489023,2591490047,2591498239,2591510527,2591514623,2591522815,2591526911,2591539199,2591547391,2591555583,2591571967,2591588351,2591604735,2591605759,2591606783,2591607295,2591607807,2591608319,2591608831,2591609343,2591609855,2591610367,2591610879,2591612927,2591621119,2591686655,2591817727,2591948799,2591981567,2591997951,2592006143,2592022527,2592026623,2592026879,2592027135,2592027391,2592028671,2592028927,2592029183,2592029695,2592029951,2592030207,2592030463,2592030719,2592034815,2592038911,2592043007,2592047103,2592079871,2593128447,2593652735,2594177023,2595225599,2596274175,2596339711,2596405247,2596405503,2596405759,2596406015,2596406271,2596407295,2596407807,2596408063,2596408319,2596408575,2596409087,2596409343,2596412415,2596413439,2596413695,2596413951,2596414207,2596414463,2596414719,2596415231,2596416255,2596416511,2596416767,2596417023,2596417791,2596418047,2596418303,2596418559,2596418815,2596419071,2596419327,2596419583,2596419839,2596420095,2596420351,2596420607,2596420863,2596421119,2596421375,2596421631,2596421887,2596422143,2596422399,2596422655,2596422911,2596423167,2596438015,2596454399,2596470783,2596471807,2596472063,2596472319,2596472831,2596474879,2596478975,2596495359,2596519935,2596536319,2596536575,2596536831,2596537343,2596538367,2596539647,2596539903,2596540415,2596559871,2596560895,2596565759,2596566271,2596569087,2596601855,2596602111,2596602367,2596603903,2596604927,2596608255,2596608511,2596609535,2596609791,2596610047,2596610303,2596610559,2596611071,2596612095,2596612351,2596612607,2596612863,2596613119,2596613375,2596613631,2596615679,2596616959,2596617983,2596618239,2596618495,2596618751,2596619007,2596619263,2596619519,2596619775,2596620031,2596620287,2596620543,2596620799,2596621055,2596621311,2596621567,2596621823,2596622079,2596622335,2596622591,2596622847,2596623103,2596623359,2596623615,2596623871,2596624127,2596624383,2596624639,2596624895,2596625151,2596625663,2596625919,2596626687,2596626943,2596627455,2596627711,2596627967,2596628223,2596628479,2596628735,2596628991,2596629247,2596629503,2596629759,2596630015,2596630271,2596630527,2596631039,2596631551,2596631807,2596632063,2596632319,2596632575,2596632831,2596633087,2596633343,2596633599,2596633855,2596634111,2596634367,2596634623,2596667391,2596667647,2596667903,2596668159,2596668415,2596668671,2596669183,2596669439,2596669695,2596670207,2596670719,2596670975,2596671487,2596671743,2596676607,2596677631,2596679679,2596681727,2596683775,2596700159,2596708351,2596708607,2596709375,2596711935,2596712447,2596714495,2596715007,2596716543,2596717311,2596717823,2596719103,2596719359,2596722431,2596722687,2596730111,2596730367,2596732927,2596798463,2596831231,2596847615,2596863999,2596865023,2596865535,2596865791,2596866047,2596868095,2596868351,2596868607,2596872191,2596872959,2596873215,2596873471,2596873983,2596875775,2596876031,2596876799,2596877055,2596878335,2596878847,2596879103,2596879615,2596880383,2596882431,2596884479,2596886527,2596887807,2596888063,2596888575,2596894719,2596895743,2596896255,2596896767,2596904191,2596904447,2596905471,2596905727,2596912639,2596912895,2596916223,2596916479,2596920319,2596920575,2596929535,2596929791,2596930047,2596931071,2596931583,2596932607,2596936191,2596936447,2596936703,2596936959,2596937215,2596937471,2596937727,2596945919,2596946175,2596952063,2596952831,2596953087,2596953343,2596955135,2596956927,2596995327,2597003263,2597011455,2597013503,2597019647,2597020415,2597020671,2597044223,2597059071,2597059583,2597060863,2597061119,2597061631,2597061887,2597064703,2597064959,2597093375,2597093631,2597097727,2597097983,2597102079,2597102335,2597103103,2597103359,2597104383,2597104639,2597105407,2597105663,2597109759,2597110015,2597110271,2597110527,2597110783,2597111039,2597115903,2597116159,2597116671,2597116927,2597126143,2597126399,2597126655,2597127167,2597127679,2597128191,2597128447,2597129215,2597131263,2597132287,2597134335,2597138431,2597158911,2597159167,2597159423,2597159679,2597159935,2597160191,2597160447,2597160703,2597160959,2597161471,2597161727,2597161983,2597162239,2597162495,2597163007,2597163263,2597163519,2597163775,2597164031,2597164287,2597164543,2597164799,2597165055,2597165311,2597165567,2597165823,2597166079,2597166335,2597166591,2597167103,2597173759,2597174015,2597174271,2597175295,2597183487,2597191679,2597192703,2597194751,2597195007,2597195263,2597195775,2597199871,2597200127,2597200639,2597200895,2597201151,2597201407,2597201663,2597201919,2597202175,2597202431,2597202687,2597202943,2597204991,2597206015,2597208063,2597208319,2597208575,2597208831,2597209087,2597210623,2597211647,2597211903,2597212159,2597215231,2597219071,2597222399,2597224447,2597254399,2597254655,2597256191,2597256447,2597257215,2597265407,2597289983,2597292031,2597294079,2597298175,2597299199,2597300223,2597302271,2597304319,2597310463,2597312511,2597316607,2597318655,2597322751,2597323007,2597323263,2597324031,2597324287,2597324543,2597324799,2597325055,2597325311,2597325823,2597339135,2597355519,2597355775,2597356031,2597356287,2597356543,2597357567,2597357823,2597358079,2597358847,2597364991,2597365247,2597367551,2597367807,2597371903,2597377535,2597377791,2597392895,2597393407,2597393663,2597393919,2597406719,2597412863,2597413631,2597413887,2597419519,2597419775,2597420287,2597420543,2597421055,2597421311,2597421567,2597422335,2597422847,2597423359,2597425919,2597426175,2597426431,2597426687,2597442047,2597442303,2597446655,2597447167,2597455871,2597456895,2597457407,2597457663,2597457919,2597470207,2597486591,2597514495,2597514751,2597519359,2597519871,2597520127,2597522431,2597522943,2597523199,2597523455,2597526527,2597526783,2597527039,2597527295,2597527551,2597532159,2597533695,2597535743,2597552127,2597584895,2597585151,2597586175,2597586943,2597601279,2597620479,2597620735,2597621247,2597621759,2597622015,2597622271,2597624063,2597624319,2597639167,2597639423,2597715967,2597716479,2597716991,2597720063,2597724159,2597732351,2597773311,2597774335,2597774847,2597775359,2597776383,2597778943,2597779455,2597780479,2597781503,2597781759,2597782015,2597784575,2597785087,2597785343,2597786111,2597786367,2597847295,2597847551,2597896191,2597896447,2597896703,2597896959,2597897215,2597897471,2597897727,2597897983,2597898239,2597898495,2597898751,2597899007,2597899263,2597899519,2597899775,2597900031,2597900799,2597901055,2597901567,2597901823,2597902079,2597902335,2597902591,2597903103,2597903359,2597903615,2597903871,2597904127,2597904383,2597904639,2597905151,2597905407,2597905663,2597905919,2597906175,2597906431,2597906687,2597906943,2597907199,2597907455,2597907711,2597907967,2597908479,2597908735,2597908991,2597909247,2597909503,2597909759,2597910015,2597910271,2597910527,2597910783,2597911039,2597911295,2597911551,2597911807,2597912063,2597912319,2597912575,2597913087,2597913343,2597913599,2597913855,2597914111,2597915647,2597915903,2597919999,2597920255,2597920511,2597924863,2597925631,2597925887,2597928703,2597929215,2597929471,2597929983,2597931007,2597931263,2597931775,2597932031,2597932799,2597934079,2597934591,2597934847,2597935871,2597936383,2597938175,2597938431,2597940991,2597941247,2597942015,2597942271,2597943295,2597943551,2597944063,2597944319,2597944831,2597945343,2597946367,2597946623,2597946879,2597947135,2597947391,2597947647,2597948927,2597949439,2597950207,2597950719,2597951487,2597951999,2597953535,2597953791,2597954303,2597954559,2597956607,2597956863,2597957119,2597957375,2597957887,2597958143,2597958655,2597958911,2597959423,2597959935,2597960959,2597961215,2597962239,2597962495,2597962751,2597963007,2597963263,2597963519,2597966079,2597966335,2597968639,2597968895,2597969919,2597970431,2597971967,2597972223,2597972479,2597972735,2597973247,2597973503,2597974527,2597975295,2597975807,2597976319,2597978111,2597978367,2597978623,2597979647,2597982207,2597986303,2597989119,2597992191,2597993471,2597994495,2598027263,2598027519,2598027775,2598028031,2598028287,2598028543,2598028799,2598029311,2598029567,2598029823,2598030079,2598030335,2598030591,2598031103,2598031359,2598031615,2598032127,2598032383,2598032639,2598032895,2598033407,2598033663,2598033919,2598034175,2598034431,2598034687,2598034943,2598035199,2598035455,2598035711,2598035967,2598036223,2598036479,2598036735,2598036991,2598037503,2598037759,2598038015,2598038527,2598038783,2598039039,2598039295,2598039551,2598039807,2598040063,2598040319,2598040575,2598040831,2598041087,2598041343,2598041855,2598042111,2598042367,2598042623,2598042879,2598043135,2598043391,2598043647,2598044159,2598044671,2598044927,2598045183,2598047743,2598060031,2598092799,2598109183,2598112511,2598112767,2598115839,2598116095,2598125567,2598125823,2598139647,2598139903,2598141951,2598144255,2598145535,2598153215,2598154751,2598156287,2598158079,2598158335,2598166527,2598169599,2598169855,2598173951,2598174207,2598174719,2598174975,2598175231,2598180607,2598180863,2598223871,2598224127,2598225407,2598225663,2598227199,2598227711,2598234111,2598237183,2598240255,2598241279,2598242303,2598243327,2598244351,2598248447,2598249471,2598250495,2598252543,2598256639,2598273023,2598297599,2598301695,2598305791,2598307071,2598307327,2598307839,2598309887,2598310143,2598310911,2598311167,2598311423,2598311679,2598311935,2598312191,2598312447,2598312959,2598313471,2598313727,2598313983,2598314239,2598314495,2598315007,2598315263,2598315519,2598315775,2598316031,2598316543,2598316799,2598317055,2598317311,2598317567,2598317823,2598318079,2598318335,2598318591,2598319103,2598319615,2598322687,2598324735,2598326271,2598330367,2598338559,2598353407,2598353663,2598354943,2598355711,2598360831,2598367231,2598368511,2598371327,2598895615,2599157759,2599419903,2600468479,2600534015,2600665087,2600730623,2600731135,2600796159,2601123839,2601189375,2601254911,2601287679,2601304063,2601312255,2601320447,2601451519,2601517055,2602565631,2602631167,2602762495,2602762751,2602770943,2602771455,2602774015,2602774527,2602820095,2602820351,2602821631,2602821887,2603417599,2603483135,2603489279,2603490303,2603491327,2603492351,2603518975,2603521023,2603522559,2603523583,2603524095,2603524351,2603529215,2603529727,2603532543,2603532799,2603533567,2603533823,2603537407,2603537663,2603537919,2603538175,2604007423,2604072959,2604138495,2604204031,2604335103,2604400639,2604466175,2604531711,2604597247,2604793855,2604859391,2604990463,2605055999,2605121535,2605187071,2605252607,2605318143,2606301183,2606366719,2606450943,2606451199,2606467071,2606467327,2606471167,2606473215,2606473471,2606563327,2606596095,2606628863,2606682111,2606683135,2607349759,2607415295,2607500799,2607501055,2607890431,2607890943,2607894527,2607895039,2607900159,2607900671,2607906815,2607907327,2607910911,2607911423,2607916543,2607917055,2608728063,2608728575,2608771071,2608771583,2609053695,2609119231,2609184767,2609185023,2609185279,2609185791,2609186303,2609186559,2609186815,2609187327,2609187583,2609187839,2609188095,2609188607,2609188863,2609189119,2609189375,2609189887,2609190399,2609190911,2609191423,2609191679,2609191935,2609201151,2609201407,2609201663,2609202431,2609202687,2609202943,2609203199,2609203711,2609204223,2609204735,2609204991,2609205759,2609206015,2609206271,2609206527,2609207039,2609207295,2609207551,2609207807,2609208319,2609217535,2609233919,2609234431,2609234687,2609234943,2609235199,2609235967,2609242111,2609381375,2609446911,2609448959,2609452031,2609453055,2609455103,2609463295,2609479679,2609512447,2609528831,2609545215,2609553407,2609643519,2609663999,2609664511,2609666559,2609667071,2609667583,2609668095,2609669631,2609670143,2609676287,2609709055,2609840127,2609971199,2610036735,2610823167,2610888703,2610888959,2610889471,2610889983,2610890751,2610891007,2610891519,2610892799,2610893823,2610894079,2610894335,2610894591,2610894847,2610895615,2610897919,2610898175,2610899455,2610899711,2610900991,2610901247,2610902015,2610902271,2610902527,2610902783,2610903551,2610903807,2610907135,2610907647,2610954239,2611019775,2612592639,2612658175,2612723711,2612789247,2612920319,2612920831,2612921599,2612922111,2612923135,2612923647,2612923903,2612924159,2612924415,2612924671,2612927487,2612927999,2612928255,2612928511,2612928767,2612929023,2612929279,2612929535,2612929791,2612930047,2612930303,2612930559,2612930815,2612931071,2612931327,2612931583,2612932095,2612932351,2612932607,2612933119,2612933375,2612933631,2612933887,2612934143,2612934655,2612934911,2612935167,2612935423,2612935679,2612935935,2612936191,2612936447,2612936703,2612936959,2612937215,2612937471,2612937727,2612937983,2612938239,2612938495,2612939007,2612939263,2612939519,2612940031,2612940287,2612940543,2612940799,2612941055,2612941311,2612941567,2612942079,2612942335,2612942591,2612942847,2612943359,2612943615,2612943871,2612944895,2612945407,2612945663,2612945919,2612946175,2612946431,2612946943,2612947199,2612947455,2612947967,2612948223,2612948735,2612948991,2612949759,2612950783,2612953087,2612953855,2612954623,2612954879,2612957183,2612957695,2612957951,2612960511,2612960767,2612967167,2612967423,2612969471,2612969727,2612969983,2612970239,2612970495,2612973311,2612973567,2612973823,2612974079,2612974591,2612974847,2612975103,2612975359,2612975615,2612975871,2612976127,2612976383,2612976639,2612976895,2612977151,2612977407,2612977663,2612977919,2612978175,2612978431,2612978687,2612978943,2612979199,2612979711,2612979967,2612980223,2612980479,2612980991,2612981247,2612981759,2612982015,2612982271,2612982527,2612982783,2612983039,2612983295,2612983807,2612984319,2612985087,2612985599,2612985855,2613051391,2613116927,2613182463,2613247999,2613313535,2613379071,2613444607,2613510143,2613706751,2613772287,2613854207,2613854719,2613854975,2613855487,2613855743,2613858047,2613858303,2613860351,2613860607,2613860863,2613861119,2613861375,2613864959,2613865471,2613866239,2613868543,2613869567,2613869823,2613870591,2613870847,2613871103,2613872639,2613872895,2613874687,2613876735,2613876991,2613877247,2613878015,2613878271,2613878527,2613878783,2613880831,2613882879,2613886975,2613891071,2613893119,2613895167,2613903359,2613968895,2614034431,2614099967,2614161151,2614161407,2614165503,2614231039,2614296575,2614362111,2615083007,2615148543,2615345151,2615410687,2615476223,2615541759,2615607295,2615672831,2616262655,2616524799,2616590335,2616754175,2616755711,2616756223,2616757247,2616758271,2616759295,2616762367,2616770559,2616776703,2616782847,2616786943,2616852479,2616918015,2616983551,2617049087,2617114623,2617115135,2617115647,2617122815,2617123839,2617124863,2617127423,2617127935,2617129983,2617130239,2617130495,2617131007,2617139199,2617147391,2617149439,2617151487,2617164799,2617165823,2617168895,2617169151,2617169407,2617169919,2617172991,2617174015,2617176063,2617177087,2617178879,2617179135,2617180159,2617245695,2617262079,2617266175,2617267199,2617268223,2617269247,2617271039,2617271295,2617272063,2617272319,2617273855,2617274367,2617274623,2617275135,2617275391,2617275647,2617278463,2617286655,2617296383,2617296639,2617296895,2617297407,2617297919,2617298943,2617299967,2617300991,2617302015,2617303039,2617305087,2617305599,2617306111,2617307135,2617308159,2617309183,2617310207,2617310719,2617310975,2617311231,2617507839,2617638911,2617769983,2617835519,2617901055,2617966591,2618032127,2618097663,2618115583,2618116095,2618163199,2618228735,2618294271,2618359807,2618425343,2618490879,2618564095,2618564607,2618687487,2618753023,2618818559,2618884095,2618949631,2619080703,2619146239,2619277311,2619342847,2619473919,2619539455,2619604991,2619721727,2619722239,2619729919,2619730175,2619736063,2619737087,2619738111,2619740159,2619744255,2619752447,2619760639,2619768831,2619801599,2620063743,2620078591,2620078847,2620129279,2620194815,2620326143,2620326399,2620391423,2620456959,2620522495,2620588031,2620653567,2620719103,2620769791,2620770047,2620770559,2620770815,2620776703,2620776959,2620784639,2620850175,2620981247,2621046783,2621112319,2621114367,2621116415,2621117439,2621118463,2621120511,2621122559,2621125119,2621125631,2621126655,2621127679,2621128191,2621128703,2621129727,2621130239,2621130751,2621131007,2621131263,2621131775,2621132799,2621134847,2621135359,2621135871,2621136127,2621136383,2621136895,2621138943,2621139967,2621142015,2621142271,2621142783,2621143039,2621143551,2621143807,2621144063,2621144575,2621145087,2621149183,2621149695,2621149951,2621150207,2621151231,2621151743,2621152255,2621153279,2621154303,2621155327,2621156351,2621156863,2621157375,2621158399,2621159423,2621160447,2621161471,2621161983,2621162495,2621163519,2621164031,2621165311,2621165567,2621166079,2621167103,2621167359,2621167615,2621168639,2621169663,2621170175,2621170687,2621171199,2621171711,2621172223,2621172735,2621173247,2621173759,2621174015,2621174271,2621174783,2621175295,2621175807,2621176319,2621176831,2621177087,2621177343,2621177599,2621177855,2621243391,2621308927,2621374463,2621636607,2621637631,2621638655,2621639679,2621640191,2621640447,2621641727,2621642751,2621644799,2621645823,2621646335,2621646847,2621648895,2621649919,2621651967,2621652479,2621652991,2621657087,2621658111,2621658367,2621658623,2621658879,2621659647,2621659903,2621660159,2621660415,2621660671,2621660927,2621662207,2621662463,2621662975,2621663231,2621663743,2621663999,2621664255,2621664767,2621665279,2621666559,2621667327,2621667583,2621667839,2621668095,2621668351,2621668607,2621668863,2621669119,2621669375,2621685759,2621689855,2621693951,2621698047,2621702143,2621767679,2621833215,2622685183,2622750719,2623564031,2623564287,2623602687,2623668223,2624192511,2624258047,2624265727,2624265983,2624266495,2624266751,2624282879,2624283135,2624293375,2624293631,2624298495,2624298751,2624451839,2624452095,2624716799,2624720895,2624721919,2624722431,2624782335,2624847871,2624913407,2624978943,2625044479,2625961983,2626027519,2626031615,2626031871,2626035711,2626035967,2626093055,2626158591,2626224127,2626289663,2626822143,2626822399,2626822655,2626823167,2626824191,2626824447,2626824703,2626825215,2626825727,2626826751,2626827007,2626827263,2626827519,2626828031,2626828287,2626828799,2626829311,2626829823,2626830079,2626830335,2626879487,2626945023,2627010559,2627063807,2627064319,2627065087,2627065343,2627066879,2627067135,2627067903,2627076095,2627141631,2627361023,2627361279,2627403775,2627469311,2627731455,2631925759,2631927039,2631927295,2631958527,2631991295,2631992319,2631992575,2631992831,2631993343,2631995391,2632007679,2632008447,2632008959,2632009983,2632010239,2632010751,2632011007,2632011263,2632011775,2632012031,2632012287,2632012799,2632013055,2632013311,2632013567,2632014079,2632014335,2632014591,2632015359,2632015871,2632016127,2632016383,2632016639,2632017151,2632017663,2632018175,2632018431,2632018687,2632018943,2632019199,2632019455,2632019711,2632024319,2632024575,2632057343,2632057599,2632058111,2632058367,2632058623,2632060927,2632063487,2632063743,2632065791,2632066047,2632087295,2632087551,2632094207,2632094463,2632122367,2632122623,2632123391,2632123647,2632123903,2632124415,2632125183,2632125695,2632126463,2632127487,2632127743,2632127999,2632128511,2632129535,2632130559,2632138751,2632155135,2632171519,2632173567,2632177663,2632179711,2632181759,2632183807,2632184319,2632184575,2632185855,2632186879,2632187903,2632253439,2632253951,2632254463,2632255487,2632256511,2632256767,2632257023,2632257279,2632257535,2632261631,2632263679,2632264703,2632264959,2632265215,2632265727,2632265983,2632266751,2632267775,2632268799,2632269055,2632269823,2632318975,2632319231,2632319487,2632321791,2632322047,2632331263,2632335359,2632384511,2632450047,2632450559,2632451071,2632451327,2632451583,2632454143,2632458239,2632470527,2632482815,2632493055,2632493311,2632515583,2632516095,2632517631,2632521727,2632522239,2632522495,2632522751,2632523775,2632531967,2632548351,2632548607,2632551167,2632552447,2632553727,2632555263,2632557823,2632558335,2632560127,2632565247,2632567807,2632569087,2632569599,2632570367,2632572927,2632573951,2632574975,2632575999,2632577535,2632579071,2632580863,2632581119,2632646655,2632646911,2632647679,2632647935,2632649215,2632649471,2632650751,2632659455,2632659711,2632659967,2632660223,2632660479,2632669695,2632669951,2632670207,2632673279,2632675327,2632679423,2632680703,2632680959,2632681471,2632681727,2632690687,2632690943,2632693503,2632693759,2632710399,2632710655,2632712191,2632712703,2632713215,2632714239,2632714495,2632715263,2632716287,2632716543,2632716799,2632717055,2632717311,2632717823,2632718079,2632718335,2632718847,2632719359,2632719615,2632719871,2632720127,2632720383,2632728575,2632729855,2632730111,2632730879,2632731647,2632731903,2632732159,2632732415,2632732671,2632733695,2632734463,2632736767,2632744959,2632777983,2632778239,2632778751,2632779263,2632779519,2632779775,2632783871,2632804863,2632810495,2632843263,2632843775,2632844287,2632845823,2632846335,2632846847,2632847103,2632847359,2632847871,2632848383,2632849407,2632849663,2632849919,2632850175,2632851455,2632858623,2632858879,2632873983,2632876031,2632876287,2632876543,2632876799,2632877055,2632877311,2632877567,2632877823,2632878079,2632889855,2632890111,2632890367,2632891391,2632891647,2632892927,2632893183,2632913151,2632913663,2632913919,2632914175,2632916991,2632918015,2632918271,2632919039,2632921087,2632923135,2632923391,2632923647,2632923903,2632924159,2632924415,2632924671,2632924927,2632925183,2632941567,2632944383,2632944639,2632944895,2632945151,2632945407,2632945663,2632947711,2632947967,2632948479,2632948735,2632950783,2632965119,2632965375,2632966143,2632966399,2632989695,2632990207,2632990463,2632990719,2632992767,2632993791,2632994047,2632994559,2632994815,2632996863,2632997887,2632998399,2632998655,2632998911,2632999423,2633000959,2633007103,2633023487,2633039871,2633040127,2633040383,2633040639,2633067775,2633068031,2633087743,2633087999,2633089023,2633105407,2633106431,2633106687,2633106943,2633107711,2633107967,2633113599,2633114623,2633114879,2633121791,2633138175,2633170943,2633171199,2633171455,2633173759,2633174015,2633176575,2633176831,2633178367,2633178623,2633179135,2633187327,2633203711,2633236479,2633302015,2633302271,2633302783,2633303039,2633303295,2633303551,2633303807,2633304063,2633304319,2633304575,2633304831,2633305855,2633306111,2633306367,2633306623,2633309695,2633309951,2633328127,2633328383,2633331967,2633332223,2633332991,2633333247,2633367551,2633372159,2633372927,2633373695,2633373951,2633374207,2633375743,2633375999,2633376255,2633376511,2633376767,2633377023,2633377279,2633377535,2633377791,2633378047,2633378303,2633378559,2633378815,2633379071,2633379327,2633379583,2633379839,2633380095,2633380351,2633380607,2633381119,2633381375,2633381631,2633381887,2633382143,2633382399,2633382655,2633382911,2633383167,2633383423,2633383679,2633383935,2633385983,2633388031,2633389823,2633390079,2633392639,2633392895,2633433087,2633433343,2633433599,2633434111,2633436159,2633436415,2633436927,2633437183,2633441279,2633443327,2633443839,2633446655,2633446911,2633448959,2633449215,2633449471,2633465855,2633467391,2633467903,2633478143,2633479167,2633479935,2633480191,2633481471,2633481727,2633484543,2633484799,2633485055,2633485311,2633486335,2633487359,2633498623,2633499647,2633499903,2633506815,2633507071,2633507327,2633508095,2633508607,2633508863,2633509119,2633509375,2633510143,2633510399,2633512191,2633512447,2633517055,2633517311,2633517823,2633518847,2633523199,2633525247,2633531391,2633564159,2633564415,2633564671,2633566207,2633568255,2633568511,2633568767,2633569023,2633570303,2633570815,2633572351,2633576447,2633580543,2633596927,2633629695,2633629951,2633637887,2633646079,2633665535,2633666559,2633695231,2633696767,2633701375,2633701887,2633711615,2633711871,2633712127,2633712383,2633712639,2633713151,2633713407,2633713919,2633714175,2633714431,2633714943,2633715199,2633715455,2633715711,2633719807,2633740287,2633740543,2633741311,2633741567,2633741823,2633742335,2633749247,2633760767,2633761023,2633761279,2633762303,2633764863,2633765887,2633766143,2633768959,2633777151,2633826303,2633826815,2633827583,2633827839,2633828351,2633855487,2633855743,2633859071,2633891839,2633924607,2633924863,2633934591,2633934847,2633941247,2633941503,2633954303,2633954559,2633957375,2633957631,2633957887,2633958399,2633963519,2633965567,2633973759,2633974783,2633975807,2633977855,2633978879,2633979903,2633987071,2633988095,2634022911,2634088447,2634362879,2634416127,2634678271,2634679807,2634680319,2634681343,2634682367,2634683903,2634685439,2634685951,2634686463,2634686975,2634687999,2634688511,2634689023,2634692095,2634692607,2634694399,2634694655,2634695167,2634696703,2634697215,2634698239,2634698751,2634700287,2634700799,2634701823,2634702335,2634702847,2634703103,2634703359,2634703871,2634704383,2634704895,2634705151,2634705407,2634706943,2634707455,2634708479,2634708991,2634711551,2634712063,2634713087,2634716159,2634716671,2634717183,2634719743,2634720255,2634720511,2634720767,2634721791,2634722303,2634723839,2634725887,2634726911,2634727935,2634730495,2634730751,2634731007,2634731519,2634731775,2634732031,2634732543,2634733055,2634733567,2634734079,2634735103,2634735615,2634736127,2634736639,2634736895,2634737151,2634739199,2634739711,2634740223,2634741247,2634741759,2634742271,2634742783,2634743807,2635005951,2635007231,2635007487,2635007999,2635009535,2635010047,2635010559,2635011071,2635012095,2635012863,2635013119,2635013631,2635014143,2635014655,2635015167,2635015679,2635016191,2635018751,2635019007,2635019263,2635019775,2635020799,2635021311,2635021823,2635023615,2635023871,2635024383,2635024895,2635025407,2635026687,2635026943,2635027455,2635028479,2635030015,2635030527,2635031039,2635031551,2635033087,2635033599,2635034623,2635035135,2635035647,2635036927,2635037183,2635038207,2635038719,2635040255,2635041279,2635041535,2635041791,2635042303,2635042815,2635043327,2635043839,2635046399,2635046911,2635048703,2635048959,2635051007,2635051519,2635052031,2635054079,2635054591,2635054847,2635055103,2635055615,2635056127,2635056383,2635056639,2635057151,2635057663,2635058175,2635060479,2635060735,2635061759,2635062271,2635062783,2635063295,2635063551,2635063807,2635064319,2635064831,2635065855,2635066367,2635067903,2635068415,2635069951,2635070463,2635070975,2635202559,2635268095,2635333631,2635335679,2635336191,2635337215,2635337727,2635338239,2635340287,2635341311,2635342079,2635342335,2635343871,2635344383,2635344895,2635346687,2635346943,2635347455,2635348479,2635350015,2635350271,2635350527,2635351039,2635351551,2635352575,2635353087,2635353343,2635353599,2635354111,2635354623,2635355135,2635356159,2635356671,2635359487,2635359743,2635360255,2635360767,2635361791,2635362303,2635362815,2635363839,2635366655,2635366911,2635367935,2635368447,2635368959,2635369471,2635369983,2635370495,2635371007,2635371519,2635372543,2635372799,2635373055,2635374591,2635375103,2635376127,2635376383,2635376639,2635378687,2635379711,2635381759,2635382271,2635383039,2635383295,2635383807,2635384319,2635384831,2635385343,2635385855,2635387647,2635387903,2635388415,2635389183,2635390975,2635391487,2635392511,2635395071,2635395839,2635396607,2635397119,2635397631,2635398143,2635399167,2635530239,2635581439,2635581695,2635587583,2635587839,2635588095,2635588351,2635589631,2635589887,2635591679,2635592191,2635592447,2635592703,2635592959,2635593215,2635593471,2635593727,2635593983,2635594239,2635594495,2635594751,2635595775,2635661311,2635726847,2635792383,2635821055,2635821567,2635988991,2635990015,2635994111,2635995135,2635997183,2636054527,2636120063,2637430783,2637438975,2637447167,2637447423,2637447679,2637448447,2637448703,2637448959,2637449215,2637449471,2637449727,2637449983,2637450751,2637451007,2637451263,2637451519,2637451775,2637452031,2637452287,2637452543,2637452799,2637453055,2637453311,2637454079,2637454335,2637454591,2637455103,2637455359,2637455615,2637455871,2637456127,2637456383,2637456639,2637456895,2637457151,2637457407,2637457919,2637458175,2637458431,2637458687,2637459967,2637460223,2637460479,2637460735,2637460991,2637461247,2637461503,2637462271,2637462527,2637463039,2637487103,2637487359,2637627391,2637629439,2637629695,2637629951,2637630207,2637630463,2637630719,2637631487,2637637887,2637638143,2637638655,2637639167,2637639423,2637639679,2637654783,2637655039,2637679615,2637679871,2637684735,2637684991,2637685247,2637685759,2637686271,2637686527,2637687295,2637687551,2637687807,2637688319,2637721599,2637721855,2637722623,2637722879,2637723647,2637725695,2637733375,2637733631,2637742079,2637744127,2637746175,2637746431,2637752831,2637753087,2637753343,2637753599,2637756415,2637757439,2637758463,2638020607,2638086143,2638151679,2638348287,2638350079,2638413823,2638610431,2638643199,2639331327,2639396863,2639462399,2639593471,2639659007,2639724543,2639790079,2639855615,2639921151,2639986687,2640052223,2640117759,2640183295,2640248831,2640314367,2640316415,2640321535,2640322559,2640326655,2640329727,2640331775,2640333823,2640335871,2640336895,2640344063,2640346111,2640347135,2640353279,2640354303,2640355327,2640357375,2640359423,2640360447,2640363519,2640376831,2640377855,2640378879,2640379903,2640388095,2640392191,2640396287,2640397311,2640398335,2640398591,2640400383,2640404479,2640404735,2640404991,2640405503,2640407039,2640408575,2640410623,2640410879,2640411135,2640411391,2640411647,2640412671,2640413695,2640413951,2640414463,2640414719,2640416767,2640417023,2640417279,2640418815,2640420863,2640421631,2640421887,2640422911,2640423935,2640429055,2640445439,2640510975,2640576511,2640642047,2641821695,2641822719,2641823743,2641826815,2641827839,2641828095,2641828351,2641828863,2641829887,2641831935,2641832959,2641833983,2641835007,2641836031,2641837055,2641838079,2641839103,2641840127,2641841151,2641842175,2641845247,2641846271,2641847295,2641848319,2641850367,2641851391,2641854463,2641855487,2641864703,2641865727,2641866751,2641867775,2641868799,2641869823,2641870847,2641872895,2641878015,2641879039,2641881087,2641881343,2641881599,2641881855,2641882111,2641883135,2641884159,2641886207,2641887231,2641928191,2641936383,2641944575,2641946623,2641947647,2641948671,2641949695,2641949951,2641950207,2641950463,2641952767,2642018303,2642083839,2642149375,2642214911,2642280447,2642411519,2642477055,2642542591,2642739199,2642743295,2642751487,2642755583,2642757631,2642759679,2642761727,2642763775,2642767871,2642771967,2642776063,2642780159,2642780671,2642781183,2642781439,2642782207,2642782719,2642783231,2642785791,2642786303,2642786815,2642787327,2642788351,2642790399,2642792447,2642800639,2642802687,2642935807,2643001343,2643066879,2643132415,2643197951,2643263487,2643394559,2643427327,2643458047,2643460095,2643525631,2643656703,2643722239,2643787775,2644180991,2644246527,2644312063,2644377599,2644443135,2644508671,2644574207,2644639743,2644705279,2644770815,2644836351,2644967423,2644967679,2644968191,2644968447,2644968703,2644968959,2644969983,2644970239,2644970495,2644970751,2644971007,2644971263,2644971519,2644971775,2644972031,2644972287,2644972543,2644972799,2644973055,2644973311,2644973567,2644973823,2644974079,2644974335,2644974591,2644974847,2644975103,2644975359,2644975615,2644975871,2644976127,2644976383,2644976639,2644976895,2644977151,2644977407,2644977663,2644977919,2644978175,2644978431,2644978687,2644978943,2644979199,2644979455,2644979711,2644979967,2644980223,2644980479,2644980735,2644980991,2644981247,2644981503,2644981759,2644982015,2644982271,2644982527,2644982783,2644983039,2644983295,2644983551,2644983807,2644984063,2644984319,2644984575,2644984831,2644985087,2644985343,2644985599,2644985855,2644986111,2644986367,2644986623,2644986879,2644987135,2644987391,2644987647,2644987903,2644988159,2644988415,2644988671,2644988927,2644989183,2644989439,2644989695,2644989951,2644990207,2644990463,2644990719,2644990975,2644991231,2644991487,2644991743,2644991999,2644992255,2644992511,2644992767,2644993023,2644993279,2644993535,2644993791,2644994047,2644994303,2644994559,2644994815,2644995071,2644995327,2644995583,2644995839,2644996095,2644996351,2644996607,2644996863,2644997119,2644997375,2644997631,2644997887,2644998143,2644998399,2644998655,2644998911,2644999167,2644999423,2644999679,2644999935,2645000191,2645000447,2645000703,2645000959,2645001215,2645001471,2645001727,2645001983,2645002239,2645004287,2645006335,2645006591,2645006847,2645007103,2645007359,2645007615,2645007871,2645008127,2645008383,2645008639,2645009151,2645014527,2645016831,2645024767,2645025791,2645026047,2645026303,2645026559,2645026815,2645027071,2645027327,2645027583,2645027839,2645028095,2645028351,2645028607,2645028863,2645029119,2645032959,2645098495,2645164031,2645229567,2645295103,2645393407,2645409791,2645426175,2645491711,2645557247,2645622783,2645688319,2645753855,2645819391,2645852159,2645867519,2645868543,2645868799,2645869055,2645869311,2645869567,2645870591,2645874175,2645879807,2645880319,2645884927,2645950463,2646179839,2646180351,2646184191,2646184447,2646184703,2646184959,2646185215,2646187007,2646187775,2646188031,2646189311,2646190335,2646191359,2646191871,2646193407,2646196223,2646212607,2646278143,2646474751,2646540287,2646585087,2646585343,2646605823,2646671359,2646736895,2646933503,2646952447,2646952703,2646953215,2646953471,2646999039,2647130111,2647195647,2647326719,2647392255,2647457791,2647523327,2647597055,2647598079,2647605247,2647606271,2647654399,2647670783,2647851007,2647916543,2648899583,2648965119,2649030655,2649100287,2649104383,2649108479,2649113599,2649114623,2649115647,2649116671,2649120767,2649128959,2649145343,2649146367,2649157631,2649161727,2649227263,2649489407,2649554943,2649620479,2649620991,2649621247,2649624831,2649625087,2649627135,2649627391,2649627903,2649628159,2649628927,2649629183,2649629695,2649629951,2649634047,2649634303,2649634559,2649634815,2649645311,2649645567,2649647615,2649648127,2649648383,2649648895,2649649663,2649650175,2649651199,2649651455,2649654271,2649654527,2649654783,2649655039,2649657343,2649657599,2649659903,2649660159,2649661183,2649661439,2649662719,2649663487,2649665279,2649665535,2649666815,2649667071,2649671679,2649671935,2649674239,2649674495,2649675775,2649676031,2649676799,2649677055,2649677311,2649677567,2649680127,2649680383,2649681407,2649681663,2649683199,2649683455,2649683967,2649684223,2649684479,2649684735,2649718783,2649719295,2649735167,2649741567,2649741823,2649751551,2649751807,2649752831,2649753087,2649753343,2649753599,2649753855,2649754111,2649754623,2649754879,2649755135,2649755391,2649755647,2649755903,2649756159,2649757439,2649757695,2649757951,2649758207,2649758463,2649758719,2649758975,2649759231,2649759487,2649759743,2649770239,2649770495,2649776383,2649776639,2649776895,2649777151,2649777407,2649777663,2649777919,2649778431,2649779967,2649780223,2649782783,2649783039,2649791487,2649791743,2649791999,2649792255,2649792511,2649795071,2649795327,2649796351,2649796607,2649798143,2649798399,2649800703,2649800959,2649801471,2649801983,2649802239,2649802495,2649802751,2649803007,2649803263,2649803519,2649803775,2649804031,2649804287,2649804799,2649805055,2649805311,2649805567,2649805823,2649806079,2649806335,2649806591,2649806847,2649807103,2649808127,2649808383,2649808639,2649808895,2649809151,2649809407,2649809663,2649809919,2649811199,2649811455,2649811711,2649811967,2649812223,2649812479,2649812735,2649812991,2649813759,2649814015,2649814271,2649814783,2649815039,2649815807,2649816575,2649817087,2649882623,2649948159,2650013695,2650079231,2650083327,2650086399,2650091519,2650095615,2650099711,2650103807,2650107903,2650116095,2650120191,2650128383,2650132479,2650210303,2650275839,2650341375,2650406911,2650423295,2650472447,2650537983,2650603519,2650669055,2650669567,2650670079,2650674175,2650675199,2650676223,2650677247,2650677759,2650678271,2650678783,2650679295,2650681343,2650682879,2650683391,2650689535,2650693631,2650701823,2650704895,2650707967,2650708223,2650709247,2650709503,2650709759,2650710015,2650710527,2650711039,2650711551,2650712063,2650712831,2650713087,2650713343,2650719231,2650719743,2650720255,2650720767,2650721279,2650727167,2650727423,2650727935,2650728191,2650734591,2650800127,2652307455,2652372991,2652438527,2652512255,2652514303,2652528639,2652528895,2652536831,2652538879,2652541183,2652541439,2652542975,2652545023,2652547071,2652549119,2652553215,2652554239,2652557311,2652561407,2652567551,2652569599,2653091839,2653093887,2653159423,2653421567,2653487103,2653491199,2653493247,2653495295,2653519871,2653552639,2653618175,2653683711,2653749247,2653814783,2653847551,2653848575,2653849599,2653851647,2653852159,2653852415,2653852671,2653853183,2653853695,2653855743,2653856255,2653856511,2653856767,2653859839,2653860095,2653860351,2653860863,2653861119,2653861375,2653861887,2653862399,2653862911,2653863167,2653863423,2653863679,2653863935,2653864959,2653865983,2653866239,2653866495,2653867007,2653867263,2653867519,2653867775,2653868031,2653872127,2653880319,2653945855,2654011391,2654076927,2654085119,2654089215,2654089727,2654093311,2654097919,2654142463,2654145023,2654145279,2654149631,2654150655,2654151935,2654152191,2654153727,2654154751,2654155263,2654156799,2654160895,2654161919,2654162431,2654162687,2654165759,2654166015,2654171135,2654171391,2654173183,2654174207,2654196223,2654196735,2654197759,2654199807,2654200831,2654201855,2654202879,2654203903,2654204927,2654205951,2654273535,2654339071,2654404607,2654601215,2654633983,2654636031,2654638079,2654640127,2654642175,2654644223,2654646271,2654648319,2654650367,2654666751,2654732287,2654797823,2654863359,2654896127,2654916607,2654916863,2654917375,2654918655,2654918911,2654919167,2654919423,2654919935,2654920191,2654920447,2654994431,2655004415,2655004671,2655008767,2655009023,2655013119,2655013375,2655026943,2655027199,2655052799,2655053055,2655059967,2655125503,2655191039,2655256575,2655322111,2655387647,2655715327,2655780863,2655977471,2655977727,2655977983,2656043007,2656075775,2656092159,2656387071,2656395775,2656396031,2656399103,2656399359,2656400639,2656400895,2656403455,2656571391,2656571903,2656573439,2656573695,2656632831,2656698367,2656763903,2656829439,2656894975,2656960511,2657026047,2657157119,2657222655,2657288191,2657353727,2657435647,2657443839,2657452031,2657460223,2657468415,2657476607,2657484799,2657550335,2657681407,2657746943,2657763327,2657779711,2657804287,2657810431,2657878015,2657943551,2658009087,2658074623,2658140159,2658205695,2658373631,2658373887,2658396159,2658396415,2658396671,2658397183,2658398719,2658399231,2658401279,2658402303,2658433023,2658434047,2658451455,2658452223,2658452479,2658452735,2658457855,2658458111,2658598911,2658664447,2658668543,2658668799,2658682879,2658683391,2658685951,2658686975,2658689023,2658693119,2658721791,2658725887,2658729471,2658729727,2658926591,2659057663,2659123199,2659164159,2659165183,2659170303,2659171327,2659180543,2659181823,2659182079,2659184639,2659188735,2659254271,2659319807,2659385343,2659450879,2659516415,2659581951,2659979263,2659983359,2659991551,2660007935,2660016127,2660024319,2660032511,2660039679,2660040703,2660171775,2660237311,2660302847,2660401151,2660401663,2660401919,2660405247,2660499455,2660564991,2660696063,2660761599,2660827135,2661023743,2661089279,2661154815,2661220351,2661285887,2661351423,2661416959,2661482495,2661548031,2661679103,2661941247,2662006783,2662072319,2662137855,2662203391,2662268927,2662286591,2662286847,2662287103,2662287359,2662287615,2662287871,2662288127,2662288383,2662288639,2662289663,2662289919,2662290431,2662290687,2662290943,2662291455,2662292479,2662292991,2662293759,2662294015,2662295551,2662296063,2662298367,2662298623,2662300927,2662301183,2662301695,2662301951,2662318079,2662334463,2662350847,2662353151,2662353663,2662354431,2662354687,2662354943,2662355199,2662355967,2662356223,2662357247,2662357503,2662357759,2662358271,2662399999,2662400767,2662401023,2662402303,2662402559,2662403071,2662403327,2662404607,2662404863,2662405631,2662406143,2662406399,2662406655,2662407167,2662407423,2662407679,2662407935,2662408191,2662409215,2662409471,2662409727,2662409983,2662410495,2662410751,2662411007,2662411519,2662411775,2662412031,2662412287,2662412543,2662413311,2662413567,2662414591,2662415103,2662415359,2662415871,2662416127,2662416383,2662416639,2662416895,2662417151,2662417407,2662417663,2662418687,2662418943,2662419199,2662419455,2662419711,2662420223,2662420479,2662420735,2662420991,2662421503,2662421759,2662422271,2662422783,2662423039,2662423295,2662423551,2662423807,2662424831,2662425087,2662425343,2662425599,2662426111,2662426367,2662426879,2662427135,2662427391,2662427647,2662428159,2662428415,2662428671,2662429183,2662429439,2662429951,2662430207,2662430463,2662430719,2662430975,2662431231,2662431743,2662432255,2662432511,2662432767,2662433023,2662433535,2662433791,2662434047,2662434303,2662435071,2662435327,2662435839,2662436607,2662436863,2662437119,2662437375,2662437631,2662438143,2662438399,2662438655,2662438911,2662439167,2662439679,2662440447,2662440703,2662441727,2662441983,2662442239,2662442495,2662444543,2662444799,2662445823,2662446079,2662447615,2662447871,2662448383,2662448639,2662449151,2662449919,2662450687,2662450943,2662451455,2662451711,2662451967,2662452479,2662453503,2662454527,2662454783,2662455039,2662455295,2662455551,2662455807,2662456319,2662456831,2662457087,2662457343,2662457855,2662458623,2662459135,2662459391,2662459647,2662460159,2662460415,2662461183,2662461439,2662461695,2662461951,2662463231,2662463487,2662463999,2662464255,2662464511,2662464767,2662465279,2662465535,2662498303,2662499327,2662500351,2662502399,2662506495,2662506751,2662514687,2662520831,2662521855,2662522879,2662529023,2662530047,2662530559,2662531327,2662532095,2662533119,2662534143,2662535167,2662539263,2662546431,2662546687,2662547455,2662563839,2662572031,2662576127,2662580223,2662581247,2662581503,2662581759,2662582271,2662584319,2662588415,2662597631,2662598655,2662600703,2662612991,2662621183,2662637567,2662645759,2662654463,2662654975,2662658047,2662662143,2662670335,2662674431,2662676479,2662676735,2662686719,2662694911,2662727679,2662793215,2662913791,2662914047,2663251967,2663448575,2663514111,2663579647,2663645183,2663710719,2663776255,2664955903,2664966143,2664968191,2664994815,2664996863,2665021439,2665086975,2665152511,2665218047,2665226239,2665234431,2665234687,2665234943,2665235199,2665235455,2665235711,2665235967,2665236223,2665236479,2665236735,2665237247,2665237503,2665238015,2665238271,2665238527,2665238783,2665239039,2665239295,2665239807,2665240063,2665240319,2665240575,2665241087,2665241343,2665242367,2665242623,2665242879,2665246719,2665246975,2665283583,2665349119,2665349887,2665350143,2665350399,2665351167,2665353215,2665359359,2665359871,2665375743,2665379071,2665379327,2665380607,2665380863,2665381631,2665414655,2665480191,2665545727,2665611263,2665676799,2665742335,2665751551,2665751807,2665759743,2665759999,2665761791,2665762047,2665791743,2665791999,2665793279,2665793535,2665807359,2665807615,2665873407,2665938943,2666004479,2666070015,2666132223,2666132991,2666135551,2666201087,2667002879,2667003135,2667012095,2667013375,2667014143,2667015167,2667016191,2667016959,2667018239,2667020287,2667036671,2667053055,2667085823,2667118591,2667184127,2667249663,2667315199,2667511807,2667513855,2667515903,2667519999,2667522047,2667524095,2667526143,2667528191,2667530239,2667530495,2667530751,2667531007,2667531263,2667531519,2667531775,2667532031,2667532287,2667534335,2667536383,2667544575,2667560959,2667565055,2667565311,2667566335,2667566591,2667566847,2667567103,2667569151,2667571199,2667573247,2667575295,2667577343,2667642879,2667708415,2667773951,2667970559,2668036095,2668101631,2668102143,2668102399,2668102911,2668103935,2668104191,2668105215,2668106239,2668106751,2668107007,2668109055,2668109823,2668110335,2668110591,2668111103,2668111615,2668111871,2668112383,2668112639,2668113151,2668114431,2668115455,2668117503,2668118015,2668118271,2668118783,2668119039,2668119295,2668119551,2668119807,2668120063,2668120319,2668120831,2668121343,2668121855,2668122111,2668122367,2668122623,2668122879,2668123135,2668123647,2668124159,2668124415,2668124671,2668125183,2668126463,2668126719,2668126975,2668127231,2668127487,2668128255,2668128511,2668128767,2668129023,2668129535,2668129791,2668130047,2668130815,2668132351,2668132607,2668133119,2668133375,2668133887,2668134143,2668134399,2668135167,2668135423,2668135935,2668136191,2668136447,2668136959,2668137215,2668138239,2668138495,2668139007,2668139263,2668139519,2668140031,2668140543,2668140799,2668141055,2668141311,2668141567,2668141823,2668142079,2668142335,2668142591,2668142847,2668143103,2668143359,2668143615,2668143871,2668144127,2668144383,2668144639,2668144895,2668145663,2668145919,2668146431,2668146687,2668147455,2668147711,2668148223,2668148735,2668149503,2668150015,2668150271,2668150527,2668152063,2668152319,2668152575,2668152831,2668159487,2668159743,2668159999,2668160255,2668166911,2668363775,2668412415,2668417023,2668429311,2668437503,2668445695,2668462079,2668478463,2668494847,2668560383,2668625919,2668691455,2668756991,2668822527,2668888063,2668890111,2668892159,2668894207,2668896255,2668904447,2668912639,2668916735,2668918783,2668920831,2668953599,2669019135,2669084671,2669085183,2669086719,2669086975,2669087231,2669088255,2669089023,2669089279,2669089535,2669090303,2669092351,2669092607,2669093631,2669094399,2669094655,2669094911,2669095679,2669096191,2669096703,2669096959,2669097215,2669097983,2669098751,2669101311,2669101823,2669102335,2669102591,2669102847,2669103103,2669103871,2669104127,2669105151,2669107199,2669112319,2669114879,2669115391,2669117183,2669117439,2669118463,2669118719,2669119231,2669119743,2669120511,2669120767,2669122047,2669122303,2669124095,2669124351,2669124607,2669124863,2669125119,2669126143,2669127167,2669127423,2669127679,2669128447,2669129983,2669130239,2669130495,2669130751,2669131007,2669131519,2669131775,2669133823,2669134591,2669134847,2669136127,2669137663,2669137919,2669138943,2669140735,2669140991,2669141247,2669141759,2669142015,2669142527,2669142783,2669144575,2669146111,2669147391,2669148159,2669148671,2669150207,2669215743,2669281279,2669297663,2669346815,2669412351,2669428735,2669477887,2669543423,2669608959,2669674495,2669805567,2669871103,2670067711,2670133247,2670591999,2670657535,2670723071,2670724095,2670726143,2670727167,2670731263,2670733567,2670733823,2670735359,2670736383,2670736895,2670737407,2670739455,2670854143,2670919679,2670985215,2671050751,2671149055,2671157247,2671181823,2671247359,2671378431,2671443967,2671509503,2671511551,2671513599,2671518207,2671518463,2671540223,2671540479,2671550463,2671550719,2671550975,2671551231,2671551487,2671551743,2671551999,2671552255,2671552511,2671552767,2671555583,2671555839,2671558655,2671560703,2671562751,2671564799,2671566847,2671568895,2671570943,2671571967,2671572991,2671573503,2671574015,2671711999,2671712255,2671718655,2671718911,2671719167,2671719423,2671749119,2671750143,2671837183,2671841279,2671845375,2671849471,2671853567,2671857663,2671861759,2671865855,2671869951,2671874047,2671878143,2671886335,2671890431,2671892479,2672099327,2672164863,2672295935,2672361471,2672427007,2672492543,2672558079,2672820223,2672885759,2672951295,2673082367,2673147903,2673213439,2673278975,2673410047,2673418239,2673434623,2673438719,2673442815,2673451007,2673455103,2673459199,2673464319,2673465343,2673473535,2673474559,2673475583,2673541119,2673606655,2673672191,2673737727,2673803263,2673868799,2674088703,2674088959,2674130943,2674139135,2674143231,2674144255,2674145023,2674145279,2674145535,2674146047,2674146303,2674147327,2674163711,2674171903,2674180351,2674180607,2674180863,2674181375,2674181631,2674181887,2674182399,2674182655,2674182911,2674183423,2674183679,2674183935,2674184191,2674188287,2674188543,2674190335,2674190591,2674192383,2674196479,2674262015,2674327551,2674393087,2674458623,2674589695,2674655231,2674720767,2674786303,2674950143,2674956287,2674958847,2674959359,2674959871,2674960127,2674961407,2674962431,2674966527,2674977023,2674977279,2674977791,2674978303,2675048447,2675113983,2675245055,2675245311,2675245567,2675255295,2675257343,2675261439,2675269631,2675271679,2675278847,2675279103,2675279871,2675280383,2675281151,2675281919,2675286015,2675294207,2675296255,2675296511,2675296767,2675298303,2675301375,2675302143,2675302399,2675310591,2675589119,2675589631,2675589887,2675590143,2675590399,2675590911,2675591167,2675591423,2675592191,2675592447,2675592703,2675592959,2675593215,2675593471,2675593727,2675594495,2675594751,2675595519,2675596031,2675596287,2675596543,2675596799,2675597055,2675597567,2675597823,2675598079,2675598335,2675599103,2675599359,2675599615,2675599871,2675600127,2675601663,2675602175,2675602431,2675602687,2675602943,2675604223,2675604479,2675604991,2675605503,2675605759,2675606271,2675606527,2675607295,2675607551,2675607807,2675608831,2675609343,2675609855,2675610111,2675610367,2675610623,2675611135,2675611391,2675611647,2675612415,2675612671,2675612927,2675613183,2675613439,2675613695,2675614463,2675614719,2675614975,2675615231,2675615487,2675615999,2675616255,2675616511,2675616767,2675617023,2675617535,2675617791,2675618047,2675619839,2675620095,2675620351,2675620863,2675621375,2675621631,2675621887,2675624959,2675625215,2675627007,2675627263,2675629311,2675629567,2675629823,2675630079,2675631615,2675631871,2675632383,2675632639,2675634175,2675634431,2675634687,2675635199,2675636479,2675636735,2675637247,2675638271,2675902463,2675902719,2675965951,2676031487,2676097023,2676162559,2676359167,2676424703,2676457471,2676473855,2676475391,2676482047,2676486399,2676486655,2676621311,2676641279,2676641535,2676641791,2676649983,2676652031,2676654079,2676662271,2676667903,2676668415,2676668927,2676669439,2676669951,2676670463,2676674559,2676676607,2676678655,2676686847,2677014527,2677080063,2677145599,2677178367,2677211135,2677276671,2677283327,2677283583,2677290495,2677290751,2677291519,2677291775,2677292543,2677292799,2677293567,2677293823,2677304575,2677304831,2677305855,2677306111,2677308671,2677308927,2677309183,2677309439,2677309695,2677309951,2677310463,2677310975,2677311231,2677311999,2677312255,2677314559,2677314815,2677315071,2677315327,2677316863,2677317375,2677318399,2677318655,2677319167,2677319679,2677319935,2677320191,2677321983,2677322239,2677322495,2677323007,2677323775,2677324031,2677326591,2677326847,2677328895,2677329151,2677331967,2677332223,2677332479,2677332735,2677333503,2677333759,2677334527,2677334783,2677336575,2677336831,2677337087,2677337343,2677337855,2677338111,2677338367,2677338623,2677339391,2677339647,2677340159,2677340415,2677341951,2677342207,2677407743,2677473279,2677489663,2677506047,2677522431,2677538303,2677538559,2677538815,2677604351,2677608447,2677612543,2677628927,2677629183,2677629439,2677629695,2677629951,2677630207,2677630975,2677632511,2677632767,2677633023,2677635071,2677636095,2677637887,2677638143,2677639167,2677640191,2677640959,2677641727,2677642239,2677642495,2677642751,2677643007,2677643263,2677644287,2677645311,2677647359,2677648127,2677648383,2677649407,2677650431,2677650687,2677650943,2677651455,2677652479,2677658367,2677658623,2677659903,2677660159,2677660415,2677663999,2677664255,2677669887,2677735423,2677800959,2677866495,2678006271,2678006527,2678063103,2678128639,2678194175,2678259711,2678521855,2678587391,2678587647,2678587903,2678589183,2678589439,2678652927,2678718463,2678783999,2678849535,2678858495,2678858751,2678862847,2678863103,2678865919,2678866175,2678876159,2678878207,2678879231,2678884351,2678885375,2678885631,2678886143,2678886399,2678886655,2678886911,2678887167,2678893567,2678893823,2678897407,2678897663,2678901759,2678902015,2678902271,2678902527,2678911231,2678911487,2678911743,2678912255,2678912511,2678915071,2678980607,2679046143,2679111679,2679177215,2679242751,2679308287,2679373823,2679390207,2679394047,2679394303,2679394559,2679398399,2679406591,2679409919,2679410175,2679414783,2679418879,2679422975,2679439359,2679518207,2679518719,2679521279,2679521535,2680029183,2680094719,2680160255,2680225791,2680356863,2680422399,2680487935,2680520703,2680545279,2680684543,2680750079,2680881151,2680897535,2681012223,2681077759,2681143295,2681208831,2681222143,2681222655,2681274367,2681339903,2681405439,2681470975,2681536511,2681602047,2681703423,2681703935,2681733119,2681798655,2681864191,2681929727,2681995263,2682013951,2682014207,2682107903,2682108159,2682118143,2682118399,2682120191,2682120447,2682123263,2682123519,2682166271,2682166527,2682167295,2682168319,2682191871,2682195967,2682200063,2682216447,2682245119,2682254335,2682255359,2682256383,2682257407,2682322943,2682388479,2682454015,2682519551,2682585087,2682716159,2682781695,2682847231,2683109375,2683174911,2683371519,2683437055,2683439103,2683441151,2683445247,2683453439,2683469823,2683495167,2683495423,2683496447,2683496959,2683497215,2683633663,2683637759,2683641855,2683645951,2683650047,2683650303,2683650559,2683650815,2683699199,2683881471,2683883519,2683885567,2683887615,2683889663,2684157951,2684159999,2684162047,2684164095,2684165119,2684165631,2684166143,2684170239,2684178431,2684180479,2684182527,2684184575,2684186623,2684188671,2684188927,2684189183,2684189439,2684189695,2684198911,2684200959,2684203007,2684203263,2684204031,2684204543,2684205055,2684207103,2684213247,2684215295,2684216319,2684217343,2684219391,2684221439,2684223487,2684289023,2684297215,2684299263,2684301311,2684305407,2684321791,2684326143,2684326399,2684326655,2684326911,2684327167,2684327423,2684327679,2684327935,2684329983,2684332031,2684334079,2684338175,2684338687,2684340223,2684344319,2684344831,2684345087,2684346367,2684354559,2684387327,2684403711,2684411903,2684420095,2684616703,2684682239,2684747775,2684813311,2684878847,2684881919,2684882431,2684882687,2684882943,2684887039,2684895231,2685009919,2685075455,2685599743,2685603839,2685604863,2685605887,2685607935,2685608959,2685609983,2685611007,2685612031,2685613055,2685614079,2685616127,2685617151,2685623295,2685623807,2685624319,2685626367,2685627391,2685628415,2685636607,2685638655,2685639679,2685640703,2685641727,2685642751,2685644799,2685645823,2685646847,2685647871,2685648383,2685648895,2685649919,2685650943,2685651967,2685652991,2685656063,2685657087,2685658111,2685659135,2685660159,2685661183,2685665279,2685666303,2685667327,2685668351,2685669375,2685670399,2685671423,2685673471,2685674495,2685675519,2685676543,2685677567,2685678591,2685681407,2685681663,2685683711,2685684735,2685685759,2685686783,2685688831,2685689855,2685690879,2685691903,2685692927,2685693951,2685694975,2685702143,2685703167,2685705215,2685705727,2685706239,2685707263,2685708287,2685709311,2685710335,2685713407,2685714431,2685718527,2685719551,2685719807,2685720063,2685720575,2685720831,2685721087,2685721599,2685721855,2685722111,2685722623,2685722879,2685723135,2685723647,2685723903,2685724159,2685724671,2685725695,2685726719,2685727231,2685727743,2685728255,2685728511,2685728767,2685729279,2685729535,2685729791,2685730815,2685796351,2685861887,2685992959,2686058495,2686320639,2686386175,2686500863,2686509055,2686513151,2686514687,2686514943,2686515199,2686532607,2686532863,2686607615,2686607871,2686640127,2686640383,2686642431,2686642943,2686643199,2686643455,2686643711,2686644223,2686844927,2686910463,2686975999,2687041535,2687238143,2687543295,2687543551,2687543807,2687544063,2687544319,2687544575,2687544831,2687545087,2687762431,2687827967,2687893503,2688221183,2688286719,2688352255,2688420095,2688420351,2688420607,2688420863,2688421375,2688421887,2688423167,2688423423,2688423935,2688453631,2688454143,2688548863,2688614399,2688679935,2688745471,2688876543,2688942079,2689007615,2689073151,2689204223,2689269759,2689335295,2689400831,2689466367,2689531903,2689562623,2689563647,2689581055,2689597439,2689662975,2689794047,2689798143,2689799167,2689800191,2689801215,2689802239,2689802751,2689803263,2689806335,2689806847,2689807359,2689807871,2689810431,2689818623,2689820671,2689822719,2689826815,2689828863,2689830911,2689832959,2689835007,2689837055,2689839103,2689839615,2689841151,2689925119,2689990655,2690056191,2690187263,2690318335,2690383871,2690407167,2690407423,2690408191,2690408447,2690449407,2690646015,2690711551,2690777087,2690842623,2690908159,2690973695,2691104767,2691170303,2691235839,2691301375,2691366911,2691760127,2691825663,2691891199,2691956735,2691956991,2691977215,2691977471,2691991551,2691991807,2691992319,2691992575,2692012031,2692013055,2692013311,2692016383,2692016639,2692170239,2692170495,2692170751,2692171263,2692171775,2692172031,2692172543,2692175871,2692176895,2692177407,2692177919,2692179967,2692180991,2692182015,2692184063,2692185087,2692186111,2692188159,2692190207,2692191231,2692192255,2692193279,2692194303,2692202495,2692203519,2692204031,2692204543,2692205567,2692206591,2692207615,2692208383,2692208639,2692209663,2692214783,2692215807,2692216319,2692216831,2692218879,2692284415,2692501503,2692501759,2692546559,2694316031,2694381567,2694384639,2694385663,2694388735,2694389759,2694414335,2694417407,2694418431,2694422527,2694424575,2694425599,2694440959,2694441983,2694444031,2694447103,2694578175,2694840319,2696151039,2696216575,2696257535,2696261631,2696262911,2696263167,2696263679,2696264447,2696265215,2696265471,2696265727,2696282111,2696413183,2696478719,2696609791,2696675327,2696871935,2696937471,2697461759,2697527295,2697594879,2697596927,2697597951,2697598463,2697598719,2697598975,2697599999,2697601023,2697602047,2697603071,2697604095,2697605119,2697607167,2697607679,2697607935,2697608191,2697609215,2697626111,2697626367,2697626623,2697627647,2697628159,2697628671,2697629695,2697630719,2697632767,2697633791,2697634815,2697635839,2697636351,2697636607,2697636863,2697638911,2697641983,2697646079,2697647103,2697658367,2697789439,2697854975,2697887743,2697887999,2697888767,2697889535,2697889791,2697890047,2697890303,2697890559,2697890815,2697891071,2697891327,2697891839,2697892095,2697892351,2697892863,2697894143,2697920511,2697986047,2698117119,2698182655,2698248191,2698313727,2698379263,2698404863,2698405119,2698407167,2698407423,2698407679,2698444799,2698510335,2698647551,2698647807,2698706943,2698772479,2698838015,2698903551,2698969087,2699010303,2699010815,2699011327,2699011583,2699015167,2699015679,2699020799,2699021055,2699021311,2699034623,2699165695,2699198463,2699211263,2699211519,2699211775,2699212799,2699213823,2699214847,2699231231,2699296767,2699362303,2699509759,2699526143,2699527167,2699528191,2699529215,2699542527,2699624447,2699689983,2699755519,2699821055,2699886591,2699952127,2699952383,2699954943,2699955199,2699956223,2699957247,2699957503,2699957759,2699958271,2699959807,2699960063,2699960319,2699960575,2699960831,2699961343,2699961599,2699961855,2699962367,2699962623,2699964415,2699964927,2699965183,2699965439,2699966463,2699966719,2699966975,2699967487,2699967999,2699968255,2699968511,2699969535,2699970559,2699972607,2699973631,2699974655,2699976703,2699977727,2699977983,2699978239,2699978751,2699980799,2699981823,2699982847,2699983871,2699984895,2699986943,2699987967,2699995135,2699996159,2699999231,2700000255,2700004351,2700005375,2700006399,2700007423,2700014591,2700015615,2700016639,2700017663,2700214271,2700218623,2700220671,2700220927,2700221439,2700221695,2700221951,2700222463,2700222719,2700226559,2700231423,2700232703,2700234751,2700238847,2700242687,2700242943,2700243199,2700247039,2700263423,2700279807,2700738559,2700804095,2700935167,2701066239,2701131775,2701132799,2701133055,2701136895,2701137407,2701138175,2701138431,2701138687,2701138943,2701139967,2701148159,2701149183,2701150207,2701152255,2701156351,2701160447,2701162495,2701164543,2701170687,2701172735,2701176831,2701178879,2701180927,2701189119,2701197311,2701262847,2701328383,2701393919,2701459455,2701524991,2701656063,2701672447,2701688831,2701705215,2701721599,2701787135,2701852671,2701918207,2701983743,2702245887,2702311423,2702376959,2702442495,2702508031,2702573567,2702581759,2702583807,2702585855,2702586367,2702587903,2702589951,2702606335,2702639103,2702704639,2702770175,2702835711,2702837759,2702838783,2702843391,2702843647,2702843903,2702844927,2702845439,2702845951,2702849023,2702850047,2702850559,2702850815,2702851071,2702852095,2702853119,2702855679,2702855935,2702856191,2702857215,2702858239,2702858751,2702859263,2702867455,2702868479,2702869503,2702871551,2702872575,2702873087,2702873343,2702874111,2702874367,2702874623,2702876671,2702877695,2702879743,2702880255,2702880511,2702881279,2702881535,2702882303,2702882559,2702882815,2702885887,2702886399,2702886655,2702887423,2702887679,2702887935,2702889983,2702901247,2702966783,2703032319,2703097855,2703099135,2703099391,2703099903,2703100671,2703100927,2703103231,2703103487,2703103999,2703105023,2703105535,2703106303,2703106559,2703108095,2703109631,2703126783,2703127039,2703127295,2703127551,2703127807,2703128063,2703129599,2703131391,2703142911,2703147007,2703147263,2703148031,2703149311,2703149823,2703150079,2703154175,2703154431,2703158271,2703159551,2703160831,2703161087,2703161855,2703162367,2703163391,2703359999,2703425535,2703429631,2703433727,2703437823,2703441919,2703446015,2703450111,2703462399,2703466495,2703470591,2703474687,2703482879,2703487999,2703489023,2703556607,2703622143,2703624191,2703625471,2703626239,2703627519,2703627775,2703628287,2703630335,2703632383,2703632895,2703638015,2703638527,2703654911,2703669247,2703669759,2703677439,2703677951,2703683583,2703684607,2703818751,2703884287,2703949823,2704015359,2704277503,2704343039,2704344575,2704344831,2704345855,2704346111,2704391167,2704392191,2704402431,2704408575,2704474111,2704476159,2704477183,2704486399,2704490495,2704498687,2704499199,2704499967,2704500223,2704506879,2704523263,2704535551,2704537599,2704538623,2704539135,2704539391,2704539647,2704605183,2704649215,2704649471,2704670719,2704736255,2704801791,2704867327,2704932863,2704933119,2704933375,2704933631,2704934143,2704934399,2704935167,2704935423,2704936703,2704936959,2704937727,2704938239,2704939007,2704939263,2704939519,2704940031,2704944127,2704944639,2704945151,2704945407,2704946943,2704947199,2704948479,2704948991,2704949247,2704949503,2704949759,2704950015,2704952319,2704952575,2704959231,2704959743,2704961279,2704961535,2704962047,2704962303,2704962559,2704962815,2704963071,2704963327,2704963583,2704963839,2704965375,2704965887,2704967423,2704967679,2704972543,2704972799,2704977919,2704978175,2704979199,2704979455,2704984831,2704985087,2704986367,2704986623,2704989183,2704989439,2704991999,2704992255,2704994047,2704994303,2704994559,2704995071,2704995583,2704995839,2704998399,2705063935,2705170943,2705171199,2705195007,2705260543,2705326079,2705391615,2705522687,2705588223,2705620991,2705623039,2705656063,2705656319,2705656575,2705656831,2705657087,2705657343,2705657599,2705657855,2705661951,2705662207,2705662463,2705662719,2705662975,2705663231,2705663487,2705663999,2705664255,2705666047,2705666303,2705666559,2705666815,2705667071,2705667327,2705667839,2705668095,2705668351,2705668607,2705668863,2705669119,2705669375,2705669887,2705670143,2705670399,2705670655,2705670911,2705671167,2705671935,2705672191,2705672959,2705673215,2705673471,2705673727,2705673983,2705674239,2705674495,2705674751,2705675263,2705675519,2705675775,2705676287,2705676543,2705676799,2705677823,2705678079,2705678335,2705679359,2705679615,2705679871,2705680127,2705680383,2705680639,2705680895,2705681151,2705681407,2705681663,2705681919,2705682175,2705682431,2705684223,2705684479,2705686015,2705686271,2705686527,2705719295,2705784831,2705793023,2705817599,2705850367,2705915903,2706046975,2706112511,2706178047,2706243583,2706309119,2706374655,2706440191,2706505727,2706538495,2706571263,2706694143,2706702335,2706960383,2706964479,2707226623,2707488767,2707505151,2707507711,2707507967,2707511295,2707511551,2707512575,2707512831,2707513599,2707513855,2707514111,2707514367,2707514623,2707514879,2707518463,2707518719,2707521535,2707522303,2707535103,2707535359,2707536895,2707537151,2707537407,2707947519,2708144127,2708254975,2708255487,2708340735,2708406271,2708471807,2708537343,2708733951,2708799487,2708865023,2708930559,2708996095,2709061631,2709094399,2709102591,2709127167,2709192703,2709193215,2709193727,2709194751,2709199871,2709200895,2709201151,2709201407,2709201663,2709201919,2709202943,2709203967,2709206015,2709206783,2709207039,2709209087,2709209343,2709209599,2709209855,2709210111,2709210367,2709210623,2709211135,2709216767,2709217279,2709217791,2709218303,2709218559,2709218815,2709219327,2709221375,2709221887,2709222143,2709222399,2709222655,2709222911,2709223423,2709225471,2709225727,2709226239,2709226495,2709227519,2709227775,2709228031,2709228543,2709229567,2709230591,2709231103,2709231359,2709232383,2709232639,2709233663,2709241855,2709242111,2709242367,2709242623,2709242879,2709243135,2709243391,2709243903,2709245951,2709246463,2709246719,2709246975,2709247231,2709247487,2709247999,2709248255,2709248511,2709249279,2709249535,2709249791,2709250047,2709251071,2709252095,2709253119,2709253375,2709253631,2709254143,2709254655,2709255167,2709255679,2709255935,2709256191,2709389311,2709435647,2709435903,2709454847,2709593599,2709593855,2709594623,2709594879,2709596927,2709597183,2709601279,2709601535,2709602303,2709603327,2709606399,2709608959,2709609215,2709609727,2709609983,2709620735,2709622783,2709624831,2709625855,2709626879,2709631487,2709631999,2709633535,2709633791,2709639679,2709639935,2709643007,2709643263,2709648639,2709648895,2709716991,2709772543,2709772799,2709782527,2709848063,2710175743,2710241279,2710306815,2710372351,2710437887,2710503423,2710568959,2710700031,2710765567,2710831103,2710896639,2711093247,2711158783,2711355391,2711355647,2711355903,2711357951,2711358207,2711358463,2711358719,2711358975,2711359231,2711359743,2711360511,2711361535,2711361791,2711363071,2711363583,2711364095,2711364863,2711365375,2711366143,2711366399,2711366655,2711367423,2711367935,2711368191,2711368703,2711368959,2711369215,2711369471,2711369983,2711370239,2711371775,2711372287,2711373055,2711373311,2711373567,2711374079,2711374335,2711374591,2711374847,2711375359,2711375615,2711375871,2711376127,2711377663,2711378175,2711378431,2711378687,2711378943,2711379711,2711380223,2711381247,2711381503,2711383039,2711383295,2711383807,2711384063,2711384575,2711384831,2711385087,2711385599,2711386111,2711386367,2711386623,2711386879,2711387647,2711387903,2711390463,2711390719,2711390975,2711391231,2711391743,2711391999,2711392511,2711392767,2711393023,2711393279,2711393791,2711394047,2711394559,2711394815,2711395071,2711395583,2711396095,2711396351,2711399167,2711399423,2711399679,2711399935,2711400447,2711400703,2711401215,2711401727,2711403007,2711403519,2711404543,2711486463,2711551999,2711757823,2711758335,2711758847,2711759871,2713190399,2713255935,2713387007,2713452543,2713518079,2713583615,2713649151,2713812991,2713829375,2713935871,2713936895,2713937919,2713945599,2713945855,2713947647,2713947903,2713976831,2714042367,2714178047,2714178303,2714181375,2714181631,2714207231,2714208255,2714213631,2714213887,2714215423,2714216447,2714218239,2714218495,2714222591,2714223615,2714224639,2714225407,2714225663,2714226431,2714226943,2714232319,2714232575,2714238975,2714304511,2714370047,2714371327,2714371583,2714371839,2714372351,2714372607,2714372863,2714373119,2714373631,2714373887,2714374143,2714374399,2714374655,2714374911,2714375423,2714375679,2714376191,2714376447,2714376959,2714383359,2714383615,2714386943,2714387711,2714388479,2714388735,2714388991,2714389247,2714389759,2714390015,2714390527,2714390783,2714391295,2714391551,2714391807,2714392063,2714392319,2714392575,2714394367,2714394623,2714395903,2714396671,2714398207,2714398463,2714398975,2714399231,2714399999,2714400767,2714401279,2714401535,2714402559,2714403071,2714403327,2714403583,2714405887,2714406143,2714407167,2714407423,2714409983,2714410239,2714411007,2714411263,2714411519,2714412031,2714412287,2714413055,2714413567,2714414079,2714414591,2714414847,2714415359,2714417151,2714417663,2714418687,2714419455,2714419711,2714420479,2714420991,2714421247,2714421503,2714422015,2714422527,2714422783,2714423295,2714423551,2714425343,2714425599,2714426111,2714426367,2714426623,2714427135,2714427391,2714427647,2714427903,2714428159,2714428415,2714428927,2714429183,2714429439,2714429951,2714430463,2714430719,2714432511,2714433023,2714433279,2714433535,2714434047,2714434303,2714435071,2714435583,2714697727,2714763263,2715025407,2715090943,2715287551,2715353087,2715418623,2715484159,2715549695,2715615231,2716139519,2716205055,2716270591,2716344063,2716344319,2716467199,2716532735,2716729343,2716794879,2717253631,2717319167,2717384703,2717450239,2717487359,2717487615,2717500415,2717500927,2717581311,2717646847,2717712383,2717843455,2717908991,2717947903,2717948671,2717948927,2717972479,2717974527,2718171135,2718236671,2718598655,2718599167,2718601471,2718601727,2718601983,2718602239,2718605567,2718605823,2718606079,2718606335,2718607615,2718608127,2718608383,2718613759,2718614271,2718614527,2718616575,2718616831,2718617087,2718617343,2718617599,2718618111,2718618367,2718618623,2718618879,2718619135,2718619391,2718619647,2718619903,2718620159,2718620671,2718620927,2718621183,2718621439,2718621695,2718621951,2718622207,2718622463,2718622719,2718622975,2718623231,2718623487,2718624255,2718624511,2718624767,2718625023,2718625279,2718625535,2718625791,2718626047,2718626303,2718626559,2718626815,2718627071,2718627327,2718629887,2718694655,2718694911,2718695423,2718745599,2718746623,2718747647,2718748159,2718748671,2718749695,2718750719,2718750975,2718751231,2718752767,2718754815,2718756863,2718757887,2718758911,2718760959,2718826495,2718892031,2719154175,2719156735,2719156991,2719186943,2719188223,2719188991,2719190015,2719190527,2719190783,2719191551,2719191807,2719192063,2719192319,2719192575,2719194111,2719194367,2719194879,2719195135,2719195391,2719195903,2719196671,2719196927,2719198207,2719198463,2719198719,2719198975,2719199487,2719199743,2719200511,2719200767,2719201023,2719201791,2719202303,2719202559,2719202815,2719203327,2719203583,2719205119,2719206399,2719206911,2719207167,2719207423,2719208703,2719209471,2719211007,2719219711,2719285247,2719350783,2719416319,2719481855,2719547391,2719565311,2719565823,2719612927,2719678463,2719716863,2719717119,2719719423,2719720191,2720104447,2720108543,2720112639,2720112895,2720114687,2720116735,2720116991,2720117759,2720118271,2720118527,2720118783,2720119807,2720120831,2720122879,2720124927,2720126975,2720129023,2720130047,2720130559,2720399359,2720464895,2720727039,2720759807,2720776191,2720776447,2720776703,2720776959,2720777215,2720843263,2720843775,2720844031,2720844287,2721382399,2721447935,2721513471,2721579007,2721644543,2721972223,2721983231,2721983487,2721984511,2721992703,2721993727,2721994751,2721996799,2722005503,2722006015,2722012159,2722016255,2722025471,2722033663,2722037503,2722037759,2722496511,2722562047,2723545087,2723561983,2723562239,2723610623,2723729407,2723729663,2723729919,2723730175,2724304383,2724304639,2724790271,2724855807,2724921343,2724967423,2724967935,2725249023,2725314559,2725778687,2725778943,2725810687,2725811199,2725812223,2725812735,2725813247,2725813759,2725814271,2725814783,2725815295,2725816063,2725816319,2725816575,2725816831,2725817087,2725817343,2725817599,2725817855,2725818111,2725818367,2725818623,2725904383,2725969919,2726641663,2726642175,2726643455,2726644223,2726644479,2726644991,2726645247,2726645503,2726645759,2726646271,2726647039,2726647551,2726648063,2726648319,2726648831,2726649087,2726649343,2726650623,2726650879,2726652159,2726652671,2726653439,2726653695,2726653951,2726654463,2726654719,2726655487,2726655999,2726656255,2726657023,2726657535,2726657791,2726658303,2726659071,2726659583,2726661119,2726661631,2726662143,2726664447,2726664959,2726665471,2726665727,2726666495,2726667007,2726667519,2726667775,2726670079,2726670335,2726670591,2726670847,2726671103,2726671359,2727018495,2727084031,2727234303,2727234559,2727244287,2727245311,2727247359,2727247871,2727280639,2727411711,2727608319,2728132607,2728263679,2728264703,2728265727,2728265983,2728266239,2728266495,2728266751,2728267007,2728267263,2728267775,2728268799,2728269823,2728270591,2728270847,2728271103,2728271359,2728271615,2728271871,2728272383,2728272639,2728272895,2728273663,2728273919,2728274175,2728274687,2728274943,2728275199,2728275711,2728275967,2728276223,2728276479,2728276735,2728278015,2728278271,2728278783,2728279039,2728279295,2728282111,2728282367,2728283135,2728284159,2728284415,2728284671,2728284927,2728285183,2728286207,2728287231,2728288255,2728288511,2728288767,2728289023,2728289279,2728290303,2728291327,2728292607,2728293119,2728293375,2728293631,2728294399,2728295423,2728296447,2728296703,2728297471,2728298239,2728298495,2728298751,2728299007,2728299519,2728299775,2728300287,2728300543,2728301311,2728301567,2728301823,2728302079,2728302335,2728302591,2728304639,2728305663,2728306687,2728307711,2728308735,2728308991,2728309247,2728309759,2728310783,2728311807,2728312575,2728312831,2728313087,2728313343,2728313599,2728313855,2728314111,2728314367,2728314623,2728314879,2728315903,2728316159,2728316415,2728316671,2728316927,2728317951,2728318207,2728318463,2728318719,2728318975,2728319999,2728321023,2728321279,2728321535,2728322047,2728322303,2728322559,2728322815,2728323071,2728323583,2728324095,2728325119,2728326143,2728326655,2728326911,2728327167,2728327679,2728328191,2728328447,2728328703,2728328959,2728329215,2728370431,2728376063,2728376319,2728378367,2728379647,2728380415,2728381183,2728381439,2728381951,2728390655,2731543551,2731544831,2731549695,2731550719,2731553791,2731554815,2731555839,2731556863,2731560959,2731561983,2731563007,2731564031,2731566079,2731567103,2731573247,2731606015,2731673599,2731674623,2731679743,2731680767,2731681791,2731682815,2731685887,2731686911,2731687935,2731688959,2731689471,2731711487,2731711743,2731711999,2731712255,2731712511,2731714559,2731717631,2731718655,2731728895,2731729919,2731739647,2731740159,2731761663,2731762943,2731763199,2731763455,2731763711,2731764735,2731765759,2731767807,2731771903,2731772927,2731784191,2731785215,2731786239,2731788287,2731790335,2731792383,2731795455,2731796479,2731797503,2731804671,2731805695,2731805951,2731806207,2731806463,2731806719,2731811583,2731811839,2731819007,2731821055,2731828223,2731829247,2731831295,2731832319,2731843583,2731845631,2731848703,2731849727,2731853823,2731855871,2731856383,2731856895,2731862015,2731864063,2731870207,2731871231,2731874303,2731876351,2731884543,2731885567,2731892735,2731893247,2731893503,2731893759,2731894015,2731894271,2731894783,2731896831,2731900927,2731901439,2731902975,2731903999,2731908351,2731909119,2731910143,2731911167,2731912191,2731927551,2731928575,2732076799,2732077055,2732086271,2732087295,2732097535,2732098559,2732099583,2732099839,2732100607,2732101631,2732105727,2732107775,2732108543,2732108799,2732111871,2732113919,2732131327,2732132351,2732137727,2732138495,2732144639,2732145151,2732145663,2732146687,2732189695,2732192767,2732202495,2732202751,2732204031,2732206079,2732210175,2732212223,2732212735,2732212991,2732217343,2732218367,2732218623,2732219135,2732219391,2732219647,2732219903,2732220159,2732227583,2732228607,2732261375,2732265471,2732269567,2732270591,2732270847,2732271615,2732273663,2732275711,2732278783,2732279807,2732281855,2732282111,2732282367,2732282623,2732282879,2732283135,2732283391,2732283647,2732283903,2732302335,2732303359,2732306431,2732307455,2732308479,2732310527,2732317695,2732318719,2732320767,2732321023,2732321279,2732321791,2732322047,2732322815,2732336127,2732337151,2732350207,2732350719,2732350975,2732351231,2732351487,2732353535,2732361727,2732361983,2732362239,2732363775,2732375039,2732376063,2732379135,2732380159,2732389375,2732389887,2732390399,2732391423,2732393727,2732393983,2732395519,2732396543,2732400639,2732401151,2732401663,2732402175,2732411903,2732412927,2732423167,2732425215,2732429311,2732430079,2732438783,2732439039,2732441855,2732442111,2732442623,2732442879,2732443647,2732445695,2732446719,2732447743,2732455935,2732457983,2732462335,2732462591,2732472319,2732474367,2732478463,2732479487,2732480511,2732485631,2732486655,2732488703,2732490751,2732492799,2732493823,2732494847,2732495871,2732497919,2732499967,2732502015,2732503039,2732515327,2732515583,2732519423,2732520447,2732523519,2732525567,2732534783,2732536831,2732546559,2732546815,2732547071,2732547327,2732549119,2732550143,2732553215,2732554495,2732555007,2732555263,2732556031,2732556287,2732563455,2732563967,2732566527,2732568575,2732580863,2732582911,2733801983,2733802495,2733805567,2733806079,2733806847,2733807103,2733807359,2733807615,2733807871,2733903871,2733904895,2733905919,2733907967,2733911039,2733912063,2733922303,2733923327,2733930495,2733931519,2733938431,2733938687,2733942783,2733943807,2733958143,2733959167,2733960191,2733961215,2733963263,2733964287,2733979647,2733980671,2733984767,2733985791,2733986047,2733986303,2733986559,2733986815,2733987327,2733987583,2733997055,2733997823,2733998079,2734002175,2734003199,2734004223,2734005247,2734014463,2734015487,2734018559,2734020607,2734026751,2734030847,2734031871,2734032895,2734034943,2734041087,2734042111,2734044159,2734045183,2734057471,2734059519,2734063615,2734064639,2734070783,2734071807,2734074879,2734075903,2734096383,2734098431,2734099455,2734102527,2734104575,2734105599,2734106623,2734119935,2734120959,2734125055,2734129151,2734139391,2734140415,2734152703,2734153727,2734155775,2734163967,2734164991,2734170111,2734172159,2734173183,2734174207,2734180351,2734182399,2734192639,2734194687,2734197759,2734198783,2734200831,2734205951,2734206975,2734209023,2734212095,2734213119,2734218239,2734218751,2734229503,2734230527,2734237695,2734238719,2734249983,2734252031,2734260223,2734262271,2734268415,2734269439,2734287871,2734288895,2734296063,2734297087,2734304255,2734305279,2734317567,2734317823,2734318335,2734318591,2734335999,2734338047,2734341119,2734344191,2734349311,2734350335,2734359551,2734359807,2734362623,2734363647,2734366719,2734368767,2734376959,2734379007,2734380799,2734381055,2734398463,2734399487,2734407679,2734409727,2734411519,2734411775,2734414079,2734414335,2734414591,2734414847,2734427391,2734428159,2734435327,2734436351,2734437375,2734437887,2734438143,2734438399,2734447615,2734448639,2734452735,2734454783,2734457855,2734458879,2734471167,2734472191,2734472447,2734472703,2734472959,2734473215,2734476287,2734477311,2734479359,2734481407,2734485503,2734486527,2734488575,2734489599,2734491647,2734492671,2734493695,2734494719,2734495231,2734502911,2734503935,2734507775,2734508031,2734515199,2734516223,2734522367,2734523391,2734524415,2734526463,2734532607,2734533631,2734540799,2734541823,2734552063,2734553087,2734565375,2734566399,2734576639,2734577151,2734588927,2734589951,2734599167,2734601215,2734616575,2734617599,2734632959,2734633215,2734633471,2734633727,2734633983,2734635007,2734649343,2734650367,2734657535,2734658559,2734659583,2734660607,2734665727,2734666751,2734670847,2734671871,2734675967,2734678015,2734679039,2734680063,2734684159,2734686207,2734751743,2734817279,2735013887,2735022335,2735022591,2735022847,2735023359,2735023615,2735028735,2735028991,2735029503,2735029759,2735030015,2735030271,2735030527,2735030783,2735031039,2735031295,2735031807,2735032063,2735032319,2735032575,2735032831,2735033343,2735033599,2735034111,2735035135,2735035647,2735035903,2735036159,2735036415,2735036671,2735036927,2735037183,2735037439,2735037951,2735038207,2735038463,2735038719,2735038975,2735039231,2735039487,2735040511,2735041279,2735043071,2735043583,2735044095,2735044863,2735045119,2735045375,2735045631,2735046143,2735046399,2735046655,2735046911,2735047679,2735047935,2735048447,2735048703,2735048959,2735049215,2735049471,2735049727,2735050239,2735050751,2735051007,2735051263,2735052031,2735052287,2735052543,2735053055,2735053311,2735053567,2735054335,2735054591,2735054847,2735055103,2735056383,2735057407,2735057919,2735058175,2735058431,2735058687,2735058943,2735059199,2735059455,2735059711,2735059967,2735060223,2735060479,2735060735,2735060991,2735061759,2735062015,2735062527,2735062783,2735063551,2735063807,2735064319,2735065087,2735065599,2735065855,2735066111,2735066367,2735066623,2735066879,2735067135,2735067391,2735067647,2735068159,2735068415,2735069439,2735069695,2735069951,2735070463,2735070975,2735071231,2735073023,2735073791,2735074047,2735074303,2735074559,2735074815,2735075839,2735076095,2735076863,2735077119,2735077375,2735077631,2735077887,2735078143,2735078399,2735079423,2735144959,2735210495,2735276031,2735341567,2735407103,2735538175,2736848895,2736914431,2736979967,2737438719,2737618943,2737619967,2737620991,2737621247,2737622015,2737623039,2737767423,2737768447,2737769471,2737770495,2737771263,2737771519,2737771775,2737772031,2737772287,2737772799,2737773823,2737774079,2737774591,2737776639,2737777663,2737778175,2737778431,2737781759,2737782783,2737785855,2737786879,2737788927,2737789951,2737791999,2737793023,2737794047,2737794303,2737794815,2737795071,2737796095,2737799167,2737800191,2737802239,2737803263,2737804287,2737805311,2737806335,2737807359,2737808383,2737809407,2737810431,2737811455,2737811711,2737811967,2737812223,2737812479,2737813503,2737815551,2737816575,2737817599,2737818623,2737818879,2737819391,2737819647,2737821695,2737822719,2737823743,2737824767,2737829887,2737830911,2737831935,2738094079,2738159615,2738163711,2738164735,2738165759,2738166783,2738167807,2738168831,2738177023,2738178047,2738182143,2738195455,2738196479,2738197503,2738198527,2738199551,2738200575,2738204671,2738205695,2738206719,2738207743,2738208767,2738209791,2738210815,2738213887,2738214911,2738215935,2738216959,2738217983,2738220031,2738221055,2738222079,2738222591,2738222847,2738223103,2738224127,2738225151,2738421759,2738487295,2738683903,2738749439,2739032063,2739036159,2739041791,2739042303,2739162623,2739162879,2739172863,2739173119,2739238399,2739238655,2739306495,2739339263,2739500543,2739500799,2739552255,2739555071,2739556351,2739560447,2739566079,2739566591,2739568383,2739568639,2739617791,2739626751,2739631615,2739632127,2739633919,2739634175,2739699711,2739732479,2739765247,2739798015,2739896319,2739929087,2741370879,2741387775,2741388287,2741388543,2741388799,2741389055,2741389823,2741390079,2741390591,2741390847,2741391359,2741391615,2741392127,2741392639,2741392895,2741393151,2741393407,2741394175,2741394687,2741395455,2741395711,2741395967,2741396223,2741396735,2741397503,2741397759,2741398015,2741398527,2741399551,2741400063,2741400319,2741400575,2741401087,2741401599,2741401855,2741402367,2741403391,2741436415,2741717247,2741717759,2741846271,2741846527,2741859839,2741860095,2742190079,2742190335,2742190591,2742190847,2742191103,2742191359,2742191615,2742192127,2742192383,2742192639,2742194175,2742206975,2742222847,2742321151,2742321663,2742321919,2742324479,2742325247,2742327295,2742328063,2742328831,2742329087,2742329343,2742329599,2742329855,2742330111,2742330367,2742330623,2742330879,2742331135,2742331391,2742331647,2742331903,2742332159,2742332415,2742332671,2742332927,2742333183,2742333439,2742333695,2742333951,2742334463,2742334719,2742334975,2742335231,2742335487,2742335743,2742335999,2742336255,2742336511,2742336767,2742337023,2742337279,2742337535,2742337791,2742338047,2742338303,2742338815,2742339071,2742339327,2742339583,2742339839,2742340095,2742340607,2742340863,2742341119,2742341375,2742341887,2742342143,2742342399,2742342655,2742343423,2742343679,2742344447,2742344703,2742344959,2742345215,2742345471,2742345727,2742345983,2742346239,2742346495,2742346751,2742347007,2742347263,2742347519,2742347775,2742348031,2742348287,2742348543,2742349823,2742350079,2742350335,2742350591,2742350847,2742351103,2742351359,2742351615,2742353919,2742419455,2742484991,2742517759,2742567679,2742567935,2742568191,2742568447,2742568703,2742568959,2742571775,2742572031,2742574079,2742574591,2742575103,2742583295,2742616063,2742681599,2742747135,2742783743,2742783999,2742790143,2742791167,2742794239,2742795263,2742796543,2742796799,2742797055,2742797311,2742802687,2742802943,2742805503,2742807551,2742808575,2742878207,2742943743,2743009279,2743074815,2743140351,2743205887,2743992319,2744057855,2744516607,2744647679,2744713215,2744844287,2744909823,2744965119,2744965375,2744975359,2745040895,2745106431,2745171967,2745237503,2745303039,2745368575,2745434111,2745499647,2745548799,2745565183,2745696255,2745761791,2745909247,2745909503,2745909759,2745910015,2745910271,2745910527,2745910783,2745911039,2745911295,2745913343,2745913855,2745914367,2745914879,2745915135,2745915391,2745915647,2745915903,2745916415,2745916927,2745917183,2745917439,2745917695,2745918207,2745918463,2745918719,2745918975,2745919743,2745920255,2745920511,2745920767,2745921023,2745921279,2745922047,2745922303,2745922559,2745923583,2745924607,2745924863,2745925375,2745925631,2745925887,2745926399,2745926655,2745926911,2745927935,2745928191,2745928703,2745928959,2745929215,2745929471,2745929727,2745929983,2745930239,2745930495,2745930751,2745931007,2745932031,2745932287,2745932543,2745932799,2745933055,2745933311,2745933567,2745933823,2745934079,2745934335,2745934591,2745934847,2745935103,2745935359,2745935615,2745935871,2745936639,2745936895,2745937151,2745937407,2745937663,2745937919,2745938175,2745938431,2745938687,2745938943,2745939199,2745939455,2745940735,2745941503,2745941759,2745942015,2745942271,2745942527,2745943039,2745943551,2745943807,2745944319,2745944575,2745945855,2745946367,2745946623,2745946879,2745947135,2745947391,2745947903,2745948415,2745948671,2745948927,2745949183,2745949439,2745949695,2745949951,2745950207,2745950463,2745950719,2745950975,2745951743,2745951999,2745952767,2745953023,2745955839,2745956351,2745957119,2745957375,2745957631,2745958143,2745958399,2746011647,2746015743,2746089471,2746155007,2746220543,2746286079,2746351615,2746417151,2746482687,2746536703,2746536959,2746537471,2746537727,2746538239,2746538495,2746539519,2746540031,2746540287,2746541055,2746541311,2746542079,2746542335,2746543359,2746543615,2746544127,2746548223,2746548735,2746551807,2746552063,2746552319,2746552831,2746553343,2746553855,2746554111,2746554367,2746554879,2746555135,2746555903,2746556415,2746557439,2746558207,2746558463,2746558975,2746559487,2746559743,2746560255,2746560511,2746560767,2746561023,2746561279,2746561535,2746562559,2746562815,2746563071,2746563327,2746563583,2746563839,2746564095,2746565631,2746566143,2746566655,2746567679,2746568703,2746570751,2746571775,2746572287,2746572799,2746573311,2746574591,2746574847,2746575103,2746575359,2746575615,2746575871,2746576127,2746576383,2746576895,2746577151,2746577407,2746578943,2746579967,2746580479,2746580735,2746580991,2746581247,2746581503,2746582015,2746582271,2746582783,2746583039,2746583295,2746583551,2746583807,2746584063,2746584319,2746584575,2746584831,2746585855,2746586111,2746586367,2746586623,2746586879,2746587135,2746587391,2746587647,2746587903,2746588159,2746588415,2746588671,2746588927,2746589183,2746589439,2746589695,2746589951,2746590207,2746590463,2746590719,2746591487,2746591743,2746591999,2746592255,2746592511,2746592767,2746593023,2746593279,2746596607,2746596863,2746597375,2746597631,2746597887,2746598399,2746613759,2746655743,2746655999,2746662911,2746679295,2747072511,2747138047,2747465727,2747650303,2747650815,2747651071,2747651327,2747651583,2747651839,2747652351,2747653375,2747658751,2747659007,2747659263,2747659519,2747659775,2747660031,2747660287,2747661823,2747662079,2747662335,2747688447,2747688959,2747691007,2747692031,2747693055,2747696127,2747697151,2747698175,2747698431,2747698687,2747698943,2747699199,2747701247,2747701503,2747716607,2747717631,2747717887,2747718399,2747719935,2747720191,2747721727,2747722751,2747723775,2747724799,2748055551,2748121087,2748317695,2748645375,2748710911,2748841983,2748907519,2749235199,2749300735,2749366271,2749562879,2749563135,2749563391,2749567231,2749567487,2749594879,2749595135,2749619455,2749619711,2749620479,2749621247,2749622527,2749623039,2749624575,2749625343,2749627903,2749628159,2749628415,2749693951,2749759487,2749890559,2750021631,2750275071,2750275327,2750349311,2750414847,2750692351,2750692607,2750692863,2750693119,2750723583,2750723839,2750739967,2750740223,2750873599,2750939135,2751070207,2751135743,2751397887,2751463423,2751528959,2751660031,2751725567,2751791103,2751856639,2751922175,2751987711,2752053247,2752184319,2752315391,2752380927,2752446463,2752511999,2752643071,2752643327,2752644095,2752647167,2752659455,2752659967,2752675839,2752676351,2752684031,2752684543,2752685055,2752685567,2753757183,2753822719,2753888255,2753953791,2754025471,2754025727,2754025983,2754026495,2754026751,2754027007,2754042623,2754042879,2754043391,2754043903,2754052095,2754084863,2754117631,2754119679,2754120959,2754123519,2754123775,2754124031,2754124799,2754125055,2754125311,2754125823,2754126335,2754126591,2754127103,2754127615,2754127871,2754129919,2754131967,2754132223,2754132479,2754132991,2754134015,2754138111,2754142207,2754144255,2754146047,2754146303,2754148351,2754150399,2754215935,2754281471,2754347007,2754478079,2754479615,2754479871,2754481407,2754481663,2754484991,2754485247,2754486015,2754486271,2754513407,2754513663,2754514431,2754514687,2754515455,2754515711,2754516479,2754516735,2754517247,2754517759,2754518271,2754518527,2754519039,2754519295,2754520063,2754520831,2754521599,2754521855,2754523903,2754524159,2754526463,2754526719,2754531583,2754531839,2754532351,2754532863,2754543615,2754609151,2754674687,2754871295,2754871551,2754872063,2754872575,2754873343,2754874367,2754875391,2754876927,2754877439,2754877951,2754878207,2754878975,2754879743,2754880511,2754881023,2754881535,2754882047,2754884095,2754884607,2754885119,2754885631,2754888703,2754889215,2754889727,2754890239,2754891263,2754891775,2754892799,2754893311,2754893567,2754894847,2754895359,2754896127,2754896639,2754896895,2754897919,2754898431,2754899455,2754899967,2754900991,2754904063,2754920447,2754928639,2754936831,2755002367,2755130879,2755131135,2755330047,2755366911,2755367423,2755513343,2755513599,2755526655,2755643647,2755643903,2755644927,2755645439,2755645695,2755652351,2755652863,2755653375,2755653631,2755654655,2755655167,2755944447,2755945983,2755946751,2755947263,2755947775,2755948031,2755948799,2755949055,2755949311,2755949823,2755951359,2755951871,2755952127,2755952383,2755952639,2755985407,2756182015,2756247551,2756313087,2756378623,2756444159,2756509695,2756556543,2756557311,2756575231,2756640767,2756706303,2756771839,2756837375,2757033983,2757099519,2757230591,2757296127,2757378047,2757380095,2757380863,2757381119,2757382655,2757383167,2757383679,2757384447,2757387007,2757387775,2757388543,2757390335,2757390591,2757391103,2757391359,2757391871,2757392639,2757393151,2757393663,2757394175,2757394431,2757402623,2757410815,2757414911,2757424127,2757525503,2757529599,2757533695,2757545983,2757550079,2757558271,2757591039,2757591551,2757623807,2757754879,2757820415,2757885951,2757951487,2758017023,2758082559,2758148095,2758213631,2758541311,2758606847,2758803455,2758868991,2759000063,2759065599,2759331327,2759331583,2759334143,2759334399,2759589887,2759720959,2759852031,2759917567,2759983103,2760048639,2760117247,2760117503,2760130303,2760130559,2760137215,2760137471,2760154879,2760155135,2760168191,2760168447,2760175359,2760175615,2760179711,2760245247,2760310783,2760376319,2760407807,2760408063,2760507391,2760511487,2760513535,2760515583,2760517631,2760519679,2760521727,2760523775,2760527871,2760529919,2760532479,2760532735,2760534015,2760536063,2760540159,2760556543,2760558591,2760562687,2760564735,2760566783,2760568831,2760570879,2760572927,2760638463,2760703999,2760769535,2760835071,2760900607,2760959999,2760960255,2761031679,2761424895,2761433087,2761441279,2761449471,2761450495,2761456127,2761456639,2761465087,2761465343,2761467391,2761467903,2761474047,2761476095,2761480191,2761480447,2761486335,2761490431,2761496575,2761497599,2761498623,2761523967,2761524223,2761524735,2761524991,2761525247,2761534463,2761538047,2761538559,2761538815,2761539071,2761539583,2761553919,2761555967,2761621503,2761655551,2761656063,2761662463,2761662719,2761662975,2761663487,2761663743,2761665535,2761666047,2761666303,2761666559,2761666815,2761667839,2761668095,2761668351,2761669375,2761669887,2761670143,2761670399,2761670911,2761671167,2761671935,2761677567,2761678079,2761678591,2761678847,2761680127,2761680383,2761681407,2761683199,2761683967,2761686015,2761686527,2761687039,2761949183,2761950207,2761951231,2761952255,2761953279,2761954303,2761956351,2761957375,2761958399,2761959423,2761960447,2761961471,2761962495,2761963519,2761964543,2761965567,2761966591,2761966847,2761967103,2761967615,2761970687,2761971711,2761973759,2761974783,2761975807,2761976831,2761977855,2761978879,2761981951,2761982975,2761983999,2761985023,2761986047,2761987071,2761994239,2761996287,2761997311,2761998335,2762000383,2762006527,2762010623,2762014719,2762145791,2762147839,2762148863,2762156031,2762157055,2762158079,2762159103,2762160127,2762161151,2762164223,2762165247,2762166271,2762167295,2762168319,2762169343,2762176511,2762177535,2762177791,2762178559,2762179583,2762180607,2762186751,2762187775,2762192895,2762193407,2762193919,2762194943,2762201087,2762202111,2762207231,2762207487,2762207743,2762208255,2762209279,2762211327,2762276863,2762342399,2762407935,2763063295,2763096063,2763104255,2763108351,2763110399,2763112447,2763128831,2765553663,2765561855,2765563903,2765565951,2765567999,2765570047,2765578239,2765579263,2765579519,2765580031,2765580287,2765582335,2765586431,2765619199,2768240639,2768306175,2768330751,2768332031,2768332799,2768333823,2768334847,2768335615,2768336895,2768338943,2768340479,2768340735,2768340991,2768341247,2768341503,2768341759,2768342015,2768342271,2768342527,2768342783,2768343039,2768343295,2768343551,2768344063,2768344319,2768344575,2768344831,2768345343,2768345855,2768346111,2768346367,2768346623,2768346879,2768347135,2768347391,2768347647,2768347903,2768348159,2768348415,2768348671,2768348927,2768349183,2768349439,2768349695,2768350463,2768350719,2768350975,2768351231,2768352255,2768352767,2768353023,2768353279,2768353535,2768353791,2768354047,2768354303,2768354559,2768354815,2768355071,2768355327,2768355583,2768356095,2768356351,2768356607,2768356863,2768357119,2768359423,2768359935,2768361471,2768361727,2768361983,2768362495,2768362751,2768363007,2768363263,2768363519,2768363775,2768364031,2768364287,2768364543,2768364799,2768365311,2768365567,2768365823,2768366079,2768366335,2768366591,2768366847,2768367103,2768367615,2768367871,2768368127,2768368383,2768368639,2768369151,2768369663,2768370175,2768371711,2768433919,2768434175,2768437247,2768459263,2768459775,2768467967,2768468223,2768633855,2768764927,2769027071,2769092607,2769158143,2769223679,2769289215,2769321983,2769338367,2769340415,2769342463,2769346559,2769354751,2769420287,2769485823,2769616895,2769682431,2769686527,2769690623,2769694719,2769698815,2769707007,2769711103,2769715199,2769731583,2769735679,2769739775,2769743871,2769747967,2769879039,2769938431,2769939455,2769944575,2770272255,2770337791,2770993151,2771124223,2771451903,2771517439,2771648511,2771910655,2772434943,2772500479,2772566015,2772762623,2772828159,2772959231,2773024767,2773058559,2773059583,2773061631,2773065727,2773073919,2773082111,2773085183,2773086207,2773087231,2773087487,2773087743,2773088255,2773088511,2773089023,2773089279,2773089791,2773090303,2773221375,2773286911,2773352447,2773417983,2773745663,2773778431,2773794815,2773798911,2773803007,2773804031,2773805055,2773807103,2773811199,2773811711,2773812223,2773812735,2773814015,2773814271,2773814527,2773814783,2773815039,2773815295,2773815551,2773815807,2773816319,2773816575,2773817343,2773817599,2773817855,2773818111,2773818367,2773818623,2773818879,2773819391,2773819647,2773819903,2773820415,2773820671,2773825279,2773825535,2773825791,2773826047,2773826303,2773826559,2773826815,2773827071,2773827327,2773827583,2773827839,2773828095,2773828351,2773828607,2773828863,2773829119,2773829631,2773829887,2773830143,2773830655,2773830911,2773831167,2773831423,2773831679,2773831935,2773832191,2773832447,2773832703,2773833215,2773833727,2773834239,2773834751,2773838335,2773838591,2773842687,2773843199,2773843455,2773843711,2773843967,2773844223,2773844479,2773844735,2773844991,2773845503,2773845759,2773846015,2773846271,2773846527,2773846783,2773847039,2773847295,2773847807,2773848063,2773849087,2773849343,2773849855,2773850111,2773850367,2773850623,2773850879,2773851135,2773851647,2773851903,2773852159,2773852415,2773852671,2773852927,2773853183,2773853695,2773853951,2773854207,2773854463,2773854719,2773855231,2773856255,2773856511,2773856767,2773857023,2773857279,2773857535,2773857791,2773858047,2773858303,2773858559,2773858815,2773859071,2773859327,2773859583,2773859839,2773860095,2773860351,2773860863,2773861119,2773861375,2773862655,2773862911,2773863167,2773863423,2773863679,2773863935,2773864191,2773864447,2773864703,2773864959,2773865215,2773865471,2773865727,2773865983,2773866239,2773866495,2773866751,2773867007,2773867519,2773867775,2773868031,2773868287,2773868543,2773868799,2773869055,2773869311,2773869567,2773869823,2773870079,2773870335,2773870591,2773870847,2773871103,2773871359,2773871615,2773871871,2773872127,2773872383,2773872895,2773873151,2773873407,2773873663,2773873919,2773874175,2773874431,2773874687,2773875711,2773875967,2773876223,2773876735,2773942271,2773944319,2773944575,2773946367,2773946623,2773953535,2773953791,2773954047,2773958655,2773958911,2773959423,2773959679,2773960191,2773960447,2773961215,2773961471,2773970175,2773970431,2773970687,2773970943,2773984767,2773985023,2773986559,2773986815,2773995519,2773995775,2773996287,2773997055,2773997567,2773998335,2773999871,2774000127,2774138879,2774142719,2774143231,2774145535,2774146047,2774147071,2774155263,2774163455,2774171647,2774188031,2774192127,2774196223,2774200319,2774204415,2774335487,2774401023,2774532095,2774597631,2774663167,2774728703,2774794239,2774860799,2774925311,2774990847,2775318527,2775384063,2775711743,2775777279,2775842815,2775973887,2776039423,2776104959,2776170495,2776432895,2776433151,2776478207,2776478463,2776478719,2776478975,2776479487,2776479999,2776480511,2776480767,2776481535,2776483839,2776484351,2776487423,2776487679,2776891391,2777022463,2777420799,2777421311,2777421823,2777422847,2777423871,2777424895,2777426943,2777428991,2777430015,2777430271,2777441279,2777442303,2777442815,2777443071,2777443327,2777445375,2777445631,2777446143,2777446399,2777452543,2777453567,2777454591,2777456639,2777457663,2777459711,2777460735,2777465855,2777466111,2777466367,2777466623,2777466879,2777467903,2777468927,2777473023,2777474047,2777475071,2777481215,2777546751,2777612287,2778071039,2778333183,2778335231,2778335743,2778336255,2778336767,2778337791,2778338303,2778340351,2778340863,2778341375,2778341887,2778342399,2778342911,2778343423,2778345471,2778345983,2778346495,2778347007,2778347519,2778348031,2778348543,2778352639,2778353151,2778355455,2778355711,2778356479,2778358783,2778359295,2778359807,2778360319,2778360831,2778361087,2778362367,2778362879,2778363391,2778364415,2778364927,2778365951,2778366463,2778366975,2778367487,2778367999,2778368511,2778369023,2778369535,2778370047,2778370559,2778371583,2778372095,2778374143,2778374655,2778375167,2778375679,2778376191,2778376447,2778376703,2778377215,2778377727,2778378239,2778378751,2778379007,2778379263,2778379775,2778380287,2778380799,2778381311,2778381823,2778382079,2778382335,2778382591,2778382847,2778383615,2778383871,2778384127,2778384639,2778384895,2778385151,2778385407,2778385663,2778385919,2778386175,2778386431,2778386687,2778386943,2778387199,2778387455,2778387711,2778387967,2778388223,2778388479,2778388735,2778388991,2778389247,2778389759,2778390015,2778390271,2778391039,2778391551,2778391807,2778392063,2778392319,2778392575,2778392831,2778393087,2778393343,2778393599,2778393855,2778394111,2778394367,2778394623,2778394879,2778395135,2778395391,2778395647,2778396159,2778396415,2778396671,2778396927,2778397183,2778397439,2778397695,2778397951,2778398207,2778471423,2778471679,2778476031,2778476287,2779054079,2779119615,2779316223,2779381759,2779524095,2779524351,2779578367,2779594751,2779619327,2779620351,2779625471,2779625983,2779627007,2779627519,2780037119,2780082175,2780082431,2780102655,2780168191,2780264447,2780265215,2780265471,2780265727,2780299263,2780364799,2780430335,2780495871,2780561407,2780758015,2780823551,2780840447,2780840703,2780842239,2780842751,2780843263,2780844287,2780844543,2780844799,2780845823,2780846079,2780846847,2780847359,2780848383,2780848639,2780848895,2780849151,2780849663,2780849919,2780850687,2780850943,2780851199,2780851967,2780852991,2780854271,2780856063,2780858111,2780858623,2780859903,2780860159,2780861695,2780862207,2780862463,2780863487,2780863999,2780865023,2780869375,2780869631,2780871679,2780927487,2780927743,2780929279,2780929791,2780930047,2780930559,2780930815,2780932351,2780932607,2780933631,2780933887,2780934143,2780934911,2780935167,2780936959,2780937215,2780937471,2780937727,2780944383,2780944639,2780954623,2781020159,2781167615,2781168639,2781478911,2781544447,2781623807,2781624063,2781635839,2781636095,2781646079,2781646335,2781647359,2781647615,2781649919,2781650943,2781675519,2781741055,2781937663,2782003199,2782134271,2782199807,2782265343,2782658559,2782691327,2782691583,2782691839,2782692095,2782692351,2782692607,2782693119,2782693375,2782693631,2782693887,2782694143,2782694399,2782694655,2782695167,2782695423,2782695679,2782695935,2782696191,2782696703,2782696959,2782697215,2782697471,2782697727,2782698751,2782699007,2782699263,2782699519,2782699775,2782700031,2782700287,2782701567,2782701823,2782702079,2782702591,2782703103,2782703871,2782704127,2782704383,2782704639,2782706431,2782706687,2782707711,2782716159,2782716415,2782716927,2782717183,2782717695,2782717951,2782718463,2782719231,2782719487,2782719999,2782720255,2782720511,2782789631,2782855167,2782989311,2782989823,2782990335,2782990847,2782991359,2782992383,2782993407,2782994431,2783002623,2783002879,2783003135,2783003391,2783003647,2783003903,2783004159,2783004671,2783005695,2783006719,2783007743,2783008255,2783008767,2783009279,2783009791,2783010303,2783010815,2783011327,2783011583,2783012351,2783012607,2783012863,2783013887,2783014399,2783014911,2783015423,2783015935,2783016447,2783016703,2783016959,2783018495,2783035391,2783035903,2783036415,2783037439,2783037951,2783038463,2783038975,2783039487,2783041023,2783041535,2783042047,2783042559,2783044095,2783044607,2783045119,2783045631,2783046143,2783046655,2783047679,2783048191,2783125503,2783129599,2783150079,2783162367,2783174655,2783178751,2783179775,2783180799,2783182847,2783248383,2783313919,2783379455,2783379711,2783379967,2783387903,2783388927,2783389183,2783390719,2783391999,2783393023,2783395839,2783396863,2783397375,2783398143,2783399167,2783399679,2783400191,2783400703,2783401215,2783401471,2783401983,2783402239,2783402495,2783402751,2783403007,2783403263,2783403519,2783403775,2783404031,2783404287,2783404799,2783405311,2783406591,2783407103,2783407359,2783407615,2783407871,2783408383,2783408639,2783408895,2783409407,2783410175,2783410431,2783410943,2783411199,2783411455,2783411711,2783412223,2783412479,2783412735,2783412991,2783413247,2783413503,2783413759,2783414015,2783414271,2783414527,2783414783,2783415039,2783415295,2783415551,2783415807,2783416063,2783416575,2783417343,2783417855,2783418623,2783418879,2783419647,2783419903,2783420159,2783421183,2783421439,2783421951,2783422207,2783422719,2783423231,2783423743,2783424255,2783424511,2783425279,2783425535,2783426047,2783426559,2783426815,2783427071,2783427583,2783428095,2783428351,2783428607,2783428863,2783429375,2783429631,2783429887,2783430399,2783430655,2783430911,2783431167,2783431423,2783431679,2783431935,2783432447,2783433471,2783433727,2783433983,2783435007,2783435263,2783435519,2783435775,2783436031,2783436799,2783437055,2783437311,2783437823,2783438079,2783438335,2783438591,2783438847,2783439103,2783439359,2783439615,2783440383,2783440639,2783441151,2783441407,2783441663,2783441919,2783442431,2783442687,2783442943,2783444479,2783444735,2783444991,2783453183,2783457279,2783461375,2783465471,2783469567,2783473663,2783477759,2783485951,2783490047,2783494143,2783510527,2783571967,2783572479,2783572991,2783573247,2783573503,2783573759,2783576063,2783969279,2784034815,2784165887,2784296959,2784362495,2784428031,2784624639,2784690175,2784888831,2784889087,2784896255,2784896511,2784896767,2784897023,2784901119,2784901375,2784902655,2784902911,2784908543,2784908799,2784911103,2784911359,2784913663,2784913919,2784914431,2784914687,2784916223,2784916479,2784922111,2784922367,2784924927,2784925183,2784929023,2784929279,2784936959,2784937215,2784937471,2784938495,2784938751,2784940799,2784941055,2784942847,2784943359,2784944383,2784944639,2784945663,2784947199,2784947455,2784952319,2785017855,2785035263,2785035775,2785036031,2785036287,2785037311,2785037567,2785039871,2785040383,2785043455,2785043967,2785044223,2785044479,2785045247,2785045503,2785046271,2785046527,2785047039,2785047551,2785047807,2785048063,2785048319,2785048575,2785049087,2785049343,2785049599,2785049855,2785050111,2785050367,2785050623,2785050879,2785051647,2785051903,2785052159,2785053183,2785053439,2785053695,2785053951,2785054207,2785054463,2785054719,2785055487,2785055743,2785055999,2785056255,2785056511,2785056767,2785057535,2785057791,2785058303,2785058559,2785059071,2785059327,2785059583,2785059839,2785060863,2785061119,2785061887,2785062143,2785062911,2785063167,2785065215,2785065471,2785067519,2785067775,2785068031,2785068543,2785069055,2785069823,2785070079,2785070335,2785070591,2785073407,2785073663,2785073919,2785074175,2785074943,2785075199,2785075711,2785075967,2785076735,2785077247,2785079039,2785079295,2785079551,2785079807,2785080063,2785080319,2785080575,2785080831,2785081087,2785083903,2785084159,2785084671,2785084927,2785085183,2785085439,2785087487,2785087743,2785087999,2785088255,2785088511,2785088767,2785089023,2785089279,2785089535,2785090047,2785090815,2785091071,2785091327,2785091583,2785091839,2785092095,2785092351,2785092607,2785092863,2785093119,2785093375,2785094143,2785094655,2785094911,2785095167,2785095423,2785095679,2785095935,2785097727,2785099775,2785100031,2785100799,2785101823,2785102079,2785102591,2785102847,2785103103,2785103359,2785103615,2785104127,2785104383,2785104639,2785104895,2785105151,2785105663,2785105919,2785106175,2785106431,2785106943,2785107711,2785107967,2785108991,2785110015,2785112063,2785112831,2785113087,2785116415,2785117183,2785118207,2785118719,2785118975,2785119231,2785119487,2785120255,2785120511,2785121535,2785121791,2785122815,2785123327,2785123583,2785123839,2785124095,2785124863,2785126399,2785126655,2785127679,2785127935,2785130495,2785132031,2785132287,2785133567,2785133823,2785134847,2785135103,2785136639,2785137151,2785137407,2785138687,2785138943,2785139199,2785139455,2785139711,2785140223,2785140991,2785141247,2785141503,2785141759,2785142015,2785142271,2785142527,2785142783,2785143039,2785143551,2785143807,2785145087,2785146367,2785146623,2785146879,2785147135,2785147391,2785616383,2785617919,2785619455,2785620991,2785622527,2785623039,2785623295,2785625599,2785626367,2785627903,2785628159,2785628671,2785629439,2785804287,2785923071,2785931263,2786066431,2788163583,2788229119,2788261887,2788262143,2788262399,2788262655,2788263167,2788263423,2788263679,2788264191,2788264447,2788264703,2788265215,2788265471,2788265727,2788265983,2788266239,2788266495,2788266751,2788267263,2788267775,2788268031,2788268287,2788268543,2788269055,2788269311,2788269567,2788269823,2788270079,2788270335,2788270591,2788270847,2788271871,2788272127,2788272383,2788272895,2788273151,2788274175,2788274943,2788275199,2788275455,2788275711,2788275967,2788276223,2788276991,2788277247,2788277503,2788277759,2788278015,2788278271,2788278783,2788279295,2788279551,2788279807,2788280063,2788282879,2788283135,2788283391,2788283647,2788283903,2788284159,2788284415,2788284671,2788284927,2788285183,2788285439,2788285695,2788285951,2788286463,2788286719,2788286975,2788287231,2788287487,2788287743,2788287999,2788288255,2788288511,2788288767,2788289279,2788289535,2788289791,2788290047,2788290303,2788290559,2788290815,2788291071,2788291583,2788293375,2788293631,2788294655,2789081087,2789084671,2789084927,2789085183,2789086207,2789089279,2789113855,2789146623,2789198847,2789199103,2789202175,2789202431,2789212159,2789277695,2789343231,2789741567,2789741823,2789742079,2789742335,2789744895,2789745151,2789745919,2789746687,2789752063,2789752319,2789771775,2789772031,2789798399,2789798655,2789933055,2789998591,2790129663,2790130687,2790131199,2790131455,2790131711,2790131967,2790132223,2790132735,2790132991,2790133503,2790134015,2790135039,2790135551,2790136575,2790136831,2790137343,2790137599,2790137855,2790138367,2790138623,2790140159,2790140415,2790141439,2790142463,2790142719,2790142975,2790143231,2790143487,2790143743,2790143999,2790144255,2790146047,2790162431,2790162943,2790163199,2790163455,2790163711,2790163967,2790164479,2790164991,2790165247,2790165503,2790165759,2790167039,2790167295,2790168063,2790169087,2790169343,2790169855,2790170623,2790174207,2790174463,2790174975,2790176767,2790177023,2790177535,2790177791,2790195199,2790260735,2790326271,2790328831,2790329087,2790329599,2790330111,2790330367,2790330623,2790331391,2790331647,2790332159,2790332671,2790332927,2790333183,2790333951,2790334207,2790334719,2790334975,2790335231,2790335999,2790336255,2790339327,2790339583,2790340095,2790341631,2790341887,2790342143,2790342655,2790342911,2790344447,2790391807,2790457343,2790522879,2790588415,2790653951,2790719487,2790785023,2790789119,2790789375,2790790911,2790791167,2790792703,2790792959,2790793215,2790793983,2790794239,2790794495,2790795263,2790799359,2790799615,2790799871,2790800127,2790800639,2790800895,2790801663,2790801919,2790802687,2790802943,2790803967,2790804223,2790804735,2790804991,2790805247,2790805759,2790806015,2790806271,2790806527,2790806783,2790807807,2790808063,2790808319,2790808575,2790808831,2790809087,2790816255,2790816511,2790816767,2790818815,2790819071,2790819327,2790819583,2790819839,2790820095,2790820351,2790820863,2790821119,2790821375,2790827775,2790828031,2790835711,2790835967,2790839551,2790839807,2790844415,2790844671,2790847487,2790847743,2790848511,2790848767,2791571455,2791636991,2791768063,2791899135,2791964671,2792030207,2792128511,2792136703,2792144895,2792161279,2792226815,2792292351,2792357887,2792488959,2792554495,2792751103,2792882175,2792914943,2792915455,2792947711,2793013247,2793209855,2793275391,2801795071,2801860607,2801898495,2801898751,2801904383,2801904639,2801905151,2801905407,2801906431,2801906687,2801907199,2801907455,2802515967,2802581503,2802909183,2802974719,2803630079,2803695615,2803761151,2803826687,2803892223,2805465087,2805989375,2806448127,2806452223,2806456319,2806464511,2806468607,2806480895,2806484991,2806497279,2806505471,2806509567,2806644735,2806710271,2807103487,2807169023,2807175167,2807176191,2807177215,2807178239,2807187455,2807188479,2807202815,2807203071,2807203583,2807203839,2807204095,2807204607,2807204863,2807210751,2807211007,2807211263,2807211519,2807211775,2807212287,2807212799,2807213311,2807213567,2807226879,2807227135,2807227391,2807227647,2807227903,2807228159,2807228415,2807228927,2807229183,2807229439,2807229695,2807229951,2807230207,2807265023,2807265279,2807439359,2807439615,2807441407,2807441663,2807441919,2807447551,2807448063,2807448319,2807448575,2807448831,2807449343,2807449855,2807450111,2807450367,2807450623,2807450879,2807451135,2807451391,2807451647,2807452415,2807452671,2807453183,2807453695,2807454463,2807454719,2807457023,2807457279,2807457791,2807458047,2807458559,2807458815,2807460351,2807460607,2807460863,2807461119,2807461631,2807461887,2807463423,2807463679,2807463935,2807496703,2807562239,2807566335,2807574783,2807575039,2807576575,2807586815,2807590911,2807595007,2807599103,2807603711,2807603967,2807606271,2807607295,2807608831,2807610111,2807611391,2807824383,2807889919,2807961599,2807961855,2807965183,2807965439,2807965951,2807966207,2807976447,2807976959,2807978495,2807980031,2807981567,2807981823,2807982079,2807982591,2807983615,2807983871,2807984127,2807984639,2807992831,2807993087,2807996927,2807997439,2807997695,2807997951,2807998207,2807998975,2807999999,2808000255,2808005631,2808006143,2808012799,2808013311,2808018431,2808018687,2808217599,2808283135,2808287231,2808288255,2808290303,2808291327,2808295423,2808299519,2808303615,2808307711,2808315903,2808319999,2808328191,2808332287,2808336383,2808340479,2808344575,2808348671,2808365055,2808373247,2808373503,2808373759,2808374015,2808374271,2808375295,2808376319,2808381439,2808414207,2808545279,2808545791,2808547327,2808549887,2808552447,2808552959,2808554495,2808555007,2808555519,2808557567,2808557823,2808558079,2808559103,2808559615,2808560639,2808566783,2808567807,2808610815,2808676351,2808741887,2808872959,2808938495,2809069567,2809135103,2809266175,2809331711,2809397247,2809462783,2809658367,2809658623,2809855999,2809921535,2809987071,2810052607,2810249215,2810314751,2810380287,2810576895,2810642431,2810904575,2810970111,2811428863,2811494399,2812084223,2812149759,2812282111,2812282367,2812283391,2812283647,2812284159,2812284415,2812284671,2812284927,2812285439,2812285695,2812285951,2812286207,2812286463,2812287487,2812287743,2812287999,2812288767,2812289023,2812291071,2812291583,2812292095,2812295167,2812297215,2812305407,2812313599,2812411903,2812477439,2812739839,2812740095,2812740863,2812741119,2812751359,2812751871,2812756479,2812756735,2812756991,2812757503,2812758015,2812758527,2812759039,2812759295,2812759551,2812759807,2812760063,2812760319,2812772351,2812775679,2812775935,2812776191,2812776447,2812777471,2812777983,2812778495,2812778751,2812779007,2812779263,2812779519,2812780543,2812780799,2812781567,2812782335,2812782591,2812782847,2812783103,2812783359,2812783615,2812784383,2812785151,2812785407,2812785663,2812785919,2812786175,2812786431,2812786687,2812786943,2812787199,2812787711,2812787967,2812788223,2812788479,2812788735,2812788991,2812789247,2812789503,2812789759,2812790015,2812792831,2812793087,2812793343,2812794367,2812795903,2812796415,2812796927,2812797183,2812797439,2812797695,2812797951,2812798207,2812798975,2812801023,2812801279,2812802047,2812802303,2812802559,2812802815,2812803071,2812804095,2812805119,2812870655,2812936191,2813068287,2813069311,2813075455,2813079551,2813083647,2813091839,2813095935,2813108223,2813116415,2813263871,2813329407,2813526015,2813526527,2813526783,2813527039,2813531647,2813531903,2813532159,2813532415,2813532671,2813532927,2813533183,2813534207,2813534463,2813534975,2813535231,2813538303,2813542399,2813558783,2813575167,2813576191,2813576959,2813577215,2813579263,2813580287,2813581311,2813583359,2813591551,2813984767,2814050303,2814181375,2814246911,2814361599,2814361855,2814362367,2814364927,2814365183,2814365695,2814365951,2814374911,2814375167,2815082495,2815090687,2815098879,2815107071,2815107327,2815111423,2815111679,2815115263,2815123455,2815164415,2815229951,2815295487,2815426559,2815492095,2815986687,2815987199,2815987711,2815988479,2816159743,2816163839,2816263167,2816264191,2816264447,2816264703,2816265215,2816266239,2816270335,2816270591,2816270847,2816271359,2816272383,2816273407,2816274431,2816275455,2816276479,2816278527,2816671743,2816737279,2816933887,2816999423,2817059327,2817059583,2817062143,2817062399,2817063935,2817064703,2817064959,2817130495,2817140223,2817140479,2817187839,2817196031,2817261567,2817447935,2817448191,2817457151,2817457407,2817933567,2817934079,2817974271,2817974527,2818088959,2818097151,2818113535,2818115583,2818116607,2818118655,2818119679,2818120703,2818121727,2818122751,2818123775,2818124799,2818125823,2818126847,2818127871,2818143231,2818144255,2818162687,2818164735,2818165759,2818168831,2818169855,2818178047,2818179071,2818180095,2818181119,2818188287,2818189311,2818191359,2818192383,2818193407,2818198527,2818199551,2818206719,2818207743,2818208767,2818209791,2818210815,2818212863,2818213631,2818213887,2818222079,2818223103,2818225151,2818226175,2818228223,2818229247,2818229759,2818230015,2818231295,2818232319,2818233343,2818233855,2818234367,2818235391,2818236415,2818239487,2818239999,2818240255,2818240511,2818244607,2818310143,2818375679,2818416639,2818572287,2818575359,2818576383,2818586623,2818587647,2818593791,2818594815,2818619391,2818620415,2818623487,2818625535,2818626559,2818627583,2818628607,2818629631,2818634751,2818635775,2818637823,2818638847,2818639871,2818640383,2818640895,2818641407,2818643199,2818643455,2818643711,2818643967,2818644223,2818644479,2818645503,2818645759,2818646783,2818647039,2818647295,2818647551,2818649087,2818649343,2818651391,2818652159,2818652671,2818653695,2818670591,2818670847,2818671871,2818672383,2818672639,2818674175,2818674431,2818674943,2818675199,2818675455,2818675711,2818676991,2818677759,2818678015,2818679039,2818679807,2818680319,2818681599,2818682111,2818682367,2818682623,2818683647,2818683903,2818684671,2818685439,2818686719,2818687231,2818687487,2818687743,2818687999,2818688767,2818689023,2818689791,2818690047,2818690303,2818690559,2818691071,2818692095,2818692607,2818693119,2818693887,2818694143,2818694655,2818695167,2818703359,2822584319,2822586367,2822590463,2822602751,2822701055,2822709247,2822723583,2822724095,2822724351,2822724607,2822725631,2822733823,2822737919,2822738943,2822741247,2822742015,2822750207,2822758399,2822766591,2823159807,2823225343,2823487487,2823503871,2823516159,2823553023,2823555327,2823555583,2823556095,2823556607,2823557119,2823557375,2823616511,2823617023,2823617535,2823618303,2823618559,2823684095,2823749631,2823815167,2823823871,2823824127,2823826431,2823826943,2823829759,2823830015,2823830527,2823831551,2823835647,2823835903,2823845887,2823846911,2823856127,2823857151,2823881215,2823881727,2823882751,2823883775,2823884799,2823885311,2823891967,2823892223,2823892479,2823892735,2823892991,2823903231,2823904255,2823915519,2823916543,2823927807,2823928319,2823928831,2823929855,2823938047,2823938303,2823941119,2823942143,2823945983,2823946239,2824011775,2824077311,2824208383,2824241151,2824257535,2824265727,2824274943,2824275455,2824275967,2824276991,2824404991,2824470527,2824472575,2824473599,2824474623,2824487935,2824488959,2824489983,2824492031,2824493055,2824494079,2824495103,2824496127,2824498175,2824499199,2824503295,2824504319,2824510463,2824511487,2824512511,2824515583,2824516607,2824520703,2824520959,2824521215,2824521471,2824521727,2824526847,2824527871,2824529919,2824530943,2824532991,2824534015,2824535039,2824536063,2824540159,2824544255,2824544511,2824544767,2824545279,2824545535,2824546047,2824546303,2824546815,2824547071,2824548095,2824548351,2824550399,2824552447,2824554495,2824555007,2824555263,2824555519,2824561663,2824562175,2824562431,2824562687,2824563199,2824563455,2824563711,2824563967,2824564223,2824564735,2824566015,2824566271,2824566783,2824567039,2824567295,2824798207,2824863743,2824929279,2825127935,2825128959,2825129727,2825129983,2825158655,2825166847,2825167103,2825167359,2825167871,2825168383,2825175039,2825183231,2825187071,2825187327,2825191423,2825256959,2825519103,2825584639,2826050559,2826050815,2826108927,2826174463,2826236415,2826236927,2826371071,2826436607,2826502143,2826510335,2826512383,2826513407,2826515455,2826516479,2826517503,2826518527,2826522623,2826523647,2826524671,2826531839,2826532863,2826534911,2826535935,2826549247,2826550271,2826555391,2826557439,2826558463,2826559487,2826562559,2826563583,2826564607,2826567679,2826633215,2826698751,2826829823,2826895359,2826960895,2826999807,2827000319,2827025919,2827026175,2827026431,2827091967,2827157503,2827223039,2827288575,2827329791,2827330047,2827354111,2827419647,2827616255,2827624447,2827632639,2827640831,2827644927,2827646975,2827647999,2827657215,2827665407,2827673599,2827681791,2827747327,2827780095,2827812863,2827878399,2827943935,2827944191,2827944447,2827945215,2827945983,2827946239,2827948287,2827948543,2827956991,2827957247,2827958271,2827958527,2827959295,2827959551,2827960831,2827961343,2827961599,2827962367,2827962623,2827962879,2827963391,2827963903,2827967487,2827967999,2827970559,2827970815,2827971583,2827971839,2827972351,2827972607,2827972863,2827973119,2827973375,2827974911,2827975167,2827975423,2827975679,2827977983,2827978239,2827979263,2827979519,2827980287,2827980799,2827981055,2827981311,2827982079,2827982335,2827982591,2827982847,2827985407,2827985663,2827986431,2827987199,2827988735,2827988991,2827989247,2827991551,2827991807,2827992319,2827992575,2827993855,2827994111,2827994879,2827995135,2827996415,2827996671,2827997183,2827997439,2827999231,2827999487,2827999999,2828000255,2828000767,2828001279,2828001791,2828002047,2828004095,2828004351,2828007423,2828007679,2828008447,2828008703,2828008959,2828009215,2828337151,2828369919,2828370175,2828370431,2828370943,2828371455,2828371711,2828374783,2828375039,2828375295,2828375551,2828375807,2828376575,2828376831,2828377087,2828377343,2828377599,2828377855,2828378111,2828378623,2828378879,2828379135,2828379391,2828380671,2828381183,2828381951,2828382207,2828382719,2828382975,2828383231,2828383487,2828383743,2828385791,2828386303,2828394495,2828398591,2828470271,2828470527,2828471295,2828472319,2828472575,2828472831,2828473343,2828473599,2828473855,2828474111,2828474367,2828474623,2828475135,2828475391,2828482303,2828482559,2828486143,2828486655,2828504063,2828504575,2828504831,2828505087,2828505343,2828506111,2828507135,2828508159,2828508415,2828516351,2828517375,2828521471,2828521727,2828521983,2828523519,2828525055,2828525567,2828527103,2828527615,2828528127,2828530175,2828530687,2828533503,2828533759,2828599551,2828599807,2828600319,2828600575,2828600831,2828601087,2828601343,2828601599,2828615679,2828616703,2828624895,2828625151,2828626431,2828626943,2828627199,2828627711,2828636159,2828636927,2828637183,2828640255,2828641023,2828641279,2828664831,2828730367,2828795903,2829058047,2829123583,2829174783,2829175039,2829175295,2829175807,2829179135,2829179391,2829187839,2829188095,2829320191,2829385727,2829451263,2829516799,2829582335,2829615103,2829844479,2829910015,2830106623,2830172159,2830434303,2830436351,2830437375,2830440447,2830441471,2830445567,2830446591,2830447615,2830448639,2830452735,2830453759,2830454783,2830456831,2830457855,2830458879,2830465023,2830466047,2830475263,2830476287,2830479359,2830480383,2830481407,2830482431,2830486527,2830488575,2830492671,2830493695,2830499839,2830532607,2830565375,2830761983,2830827519,2830893055,2830954239,2830954495,2830958591,2831286271,2831287295,2831294463,2831295487,2831299583,2831300607,2831304703,2831305727,2831308799,2831309823,2831311871,2831312895,2831313919,2831314943,2831322111,2831323135,2831324159,2831325183,2831329279,2831330303,2831332351,2831333375,2831336447,2831336959,2831337215,2831337471,2831338495,2831339519,2831341567,2831342591,2831345663,2831346687,2831347711,2831348735,2831361023,2831362047,2831365119,2831367167,2831371263,2831372287,2831379455,2831380479,2831381503,2831382527,2831383551,2831384575,2831385599,2831398911,2831399935,2831403007,2831405055,2831407103,2831408127,2831409151,2831410175,2831417343,2831417855,2831418111,2831418367,2831423487,2831424511,2831425535,2831426559,2831441919,2831442943,2831446015,2831447039,2831449087,2831450111,2831453183,2831454207,2831457279,2831458303,2831464447,2831465471,2831468543,2831469567,2831470591,2831471103,2831474687,2831475711,2831477759,2831478015,2831478783,2831479807,2831480831,2831481855,2831482879,2831493119,2831494143,2831496191,2831500287,2831501311,2831505407,2831506431,2831507455,2831508479,2831509503,2831510527,2831511551,2831513599,2831515647,2831516671,2831517695,2831524863,2831525887,2831526911,2831527935,2831531007,2831531263,2831532031,2831533055,2831535103,2831536127,2831537151,2831538175,2831539199,2831544319,2831545343,2831546367,2831547391,2831548415,2831613951,2831614207,2831614463,2831614719,2831614975,2831615231,2831615487,2831615743,2831615999,2831616255,2831616511,2831616767,2831617023,2831617279,2831617535,2831617791,2831618047,2831618303,2831618559,2831618815,2831619071,2831619583,2831620095,2831620351,2831620607,2831620863,2831621119,2831621375,2831621631,2831621887,2831622143,2831622399,2831622655,2831622911,2831623167,2831623423,2831623679,2831623935,2831624191,2831624447,2831624703,2831624959,2831625215,2831625471,2831625727,2831625983,2831626239,2831626495,2831626751,2831627007,2831627263,2831627519,2831627775,2831628031,2831628287,2831628543,2831628799,2831629055,2831629311,2831629567,2831629823,2831630079,2831630335,2831638527,2831638783,2831639039,2831639295,2831639551,2831639807,2831640063,2831640319,2831640575,2831640831,2831641087,2831641343,2831641599,2831641855,2831642111,2831642367,2831642623,2831642879,2831643135,2831643391,2831643647,2831643903,2831644159,2831644415,2831644671,2831644927,2831645183,2831645439,2831645695,2831645951,2831646207,2831646463,2831646719,2831647743,2831654911,2831655935,2831656959,2831663103,2831664127,2831665919,2831666175,2831675135,2831675391,2831679231,2831679487,2831810559,2831876095,2832007167,2832008191,2832009215,2832010239,2832023551,2832024575,2832025599,2832026623,2832030719,2832031743,2832032767,2832036863,2832038911,2832040959,2832041983,2832048127,2832048639,2832049151,2832054271,2832055295,2832057343,2832058367,2832059391,2832060415,2832072703,2832138239,2832269311,2832400383,2832465919,2832793599,2832859135,2832924671,2832990207,2833022975,2833031167,2833047551,2833055743,2833383423,2833448959,2833449983,2833451007,2833454079,2833455103,2833456127,2833458175,2833459199,2833466367,2833467391,2833473535,2833474559,2833475583,2833476607,2833481727,2833482751,2833484799,2833485055,2833485567,2833485823,2833486847,2833501183,2833502207,2833511423,2833512447,2833513471,2833514495,2833525759,2833526015,2833526271,2833526783,2833527807,2833528831,2833529855,2833542143,2833543167,2833546239,2833547263,2833548287,2833549311,2833550335,2833552383,2833563647,2833564671,2833571839,2833572863,2833573887,2833574911,2833577983,2833579007,2833580031,2833711103,2833776639,2833783807,2833784831,2833785855,2833786879,2833788927,2833789951,2833796095,2833797119,2833799167,2833800191,2833801215,2833802239,2833802751,2833804287,2833805311,2833812479,2833813503,2833814527,2833818623,2833819647,2833820671,2833840127,2833841151,2833842175,2833871615,2833871871,2833907711,2833973247,2834001151,2834002431,2834010111,2834014207,2834022399,2834023423,2834023679,2834026495,2834030591,2834034687,2834497535,2834515967,2834518015,2834520063,2834563071,2834661375,2834662399,2834665983,2834666239,2834668799,2834669055,2834673919,2834674175,2834676735,2834677759,2834678783,2834679295,2834679807,2834681599,2834681855,2834689535,2834694143,2834825215,2834956287,2835087359,2835152895,2835161087,2835164159,2835164927,2835165183,2835165439,2835169279,2835177471,2835181567,2835183615,2835185663,2835202047,2835206143,2835208191,2835210239,2835218431,2835283967,2835349503,2835480575,2837446655,2837766143,2837767167,2837770239,2837771263,2837839871,2837856511,2837856767,2837858303,2837858559,2837859071,2837859327,2837859839,2837860095,2837860607,2837860863,2837861887,2837862143,2837862399,2837862655,2837862911,2837863167,2837863679,2837864447,2837864703,2837865727,2837866239,2837866495,2837867519,2837867775,2837868799,2837869055,2837869311,2837869567,2837870847,2837871359,2837871615,2837872127,2837872639,2837872895,2837873151,2837873407,2837875199,2837875711,2837875967,2837876223,2837889023,2837905407,2837970943,2838036479,2838233087,2838268927,2838269183,2838285567,2838286079,2838298623,2838299135,2838299647,2838299903,2838300159,2838300415,2838300671,2838301439,2838302719,2838302975,2838305791,2838306303,2838307071,2838307327,2838307583,2838308351,2838308607,2838309119,2838309631,2838310143,2838311167,2838311423,2838311935,2838312191,2838312703,2838313471,2838313983,2838314495,2838315007,2838315519,2838315775,2838316799,2838317055,2838318079,2838318335,2838321407,2838321663,2838321919,2838322175,2838323199,2838323455,2838323967,2838324479,2838324991,2838325247,2838327295,2838328063,2838328319,2838329343,2838330367,2838330623,2838330879,2838331135,2838331391,2838331647,2838332159,2838333183,2838333439,2838333695,2838333951,2838334207,2838334975,2838335231,2838335487,2838335743,2838336767,2838337023,2838338303,2838338559,2838338815,2838339071,2838339327,2838340095,2838340351,2838340607,2838341375,2838341631,2838341887,2838342143,2838342399,2838342655,2838342911,2838343423,2838343679,2838344447,2838344959,2838345471,2838346751,2838347263,2838348031,2838348287,2838348543,2838348799,2838349055,2838349311,2838349823,2838350079,2838350335,2838350847,2838351103,2838351615,2838352127,2838352383,2838353151,2838353919,2838354175,2838354687,2838355199,2838355455,2838356991,2838357503,2838358271,2838358783,2838359039,2838359551,2838359807,2838360063,2838360319,2838361343,2838361599,2838361855,2838362111,2838363391,2838363647,2838363903,2838364159,2838364415,2838364927,2838365183,2838365439,2838365695,2838365951,2838366463,2838366719,2838366975,2838367231,2838367487,2838367999,2838368511,2838369535,2838370047,2838370559,2838370815,2838372607,2838372863,2838373119,2838374143,2838374655,2838375167,2838375423,2838376447,2838376959,2838377215,2838377471,2838377983,2838378239,2838378495,2838378751,2838379007,2838379263,2838379519,2838379775,2838380031,2838380287,2838380543,2838381055,2838381567,2838381823,2838382079,2838383103,2838383359,2838383615,2838386687,2838386943,2838387199,2838387455,2838387711,2838388223,2838388479,2838389247,2838389503,2838389759,2838390783,2838391039,2838391807,2838392063,2838392319,2838392575,2838393599,2838395135,2838395391,2838395903,2838396671,2838396927,2838397695,2838397951,2838398207,2838399487,2838399743,2838400255,2838401023,2838405887,2838407167,2838407423,2838407679,2838409215,2838409983,2838410239,2838410495,2838411519,2838412031,2838414591,2838414847,2838415103,2838415871,2838416383,2838416895,2838417663,2838417919,2838421759,2838422015,2838429695,2838430463,2838430719,2838431999,2838432511,2838435071,2838435839,2838436095,2838436351,2838436607,2838437119,2838440191,2838440703,2838441471,2838441727,2838442495,2838442751,2838445055,2838445311,2838446335,2838446847,2838447359,2838447615,2838448383,2838448639,2838449663,2838451199,2838451455,2838451711,2838451967,2838453503,2838453759,2838454527,2838455551,2838456063,2838456319,2838457087,2838457343,2838458367,2838458623,2838460671,2838460927,2838461695,2838461951,2838462463,2838464767,2838465023,2838465279,2838465535,2838466303,2838466815,2838468351,2838468607,2838470399,2838473983,2838474495,2838476543,2838476799,2838478847,2838479615,2838479871,2838480383,2838480895,2838481407,2838481663,2838481919,2838482431,2838482943,2838483199,2838483455,2838483711,2838485247,2838485503,2838487807,2838488063,2838488319,2838489087,2838489343,2838489599,2838490623,2838490879,2838491391,2838491647,2838491903,2838492159,2838492671,2838493439,2838493695,2838494463,2838494719,2838495231,2838495487,2838496767,2838497023,2838497791,2838498047,2838501375,2838501631,2838502655,2838502911,2838503423,2838503935,2838504191,2838504447,2838504703,2838505727,2838505983,2838506239,2838506495,2838506751,2838507007,2838507519,2838508031,2838508799,2838509055,2838509311,2838509567,2838510847,2838511103,2838511871,2838512127,2838512383,2838513407,2838513663,2838515711,2838519807,2838520319,2838522111,2838522367,2838522879,2838523391,2838523647,2838524927,2838525951,2838527231,2838527487,2838527743,2838527999,2838529023,2838529279,2838529791,2838530047,2838530559,2838530815,2838531071,2838531327,2838531583,2838536191,2838537215,2838537983,2838538495,2838539007,2838539263,2838539519,2838539775,2838540031,2838540287,2838540799,2838541055,2838541311,2838541823,2838542847,2838544127,2838544639,2838544895,2838545151,2838545663,2838545919,2838547967,2838549503,2838550271,2838550527,2838551295,2838551551,2838552319,2838552831,2838553343,2838553599,2838555647,2838555903,2838557183,2838557951,2838559231,2838559743,2838560255,2838560511,2838560767,2838626303,2838626559,2838627071,2838627327,2838627839,2838628095,2838628607,2838628863,2838630399,2838630655,2838631423,2838631679,2838631935,2838632447,2838632703,2838632959,2838633471,2838633983,2838635007,2838635263,2838635519,2838635775,2838636543,2838636799,2838637567,2838638079,2838638335,2838639359,2838639615,2838639871,2838640127,2838640895,2838641407,2838641919,2838642431,2838642687,2838643711,2838644223,2838645247,2838645503,2838645759,2838646015,2838646527,2838647295,2838647551,2838648575,2838648831,2838649343,2838649855,2838650623,2838650879,2838652415,2838652927,2838653439,2838653695,2838653951,2838654463,2838654719,2838654975,2838655487,2838656511,2838656767,2838657535,2838657791,2838658047,2838658815,2838659071,2838660095,2838660351,2838660863,2838662143,2838662655,2838662911,2838663167,2838663423,2838664191,2838664447,2838665215,2838665983,2838666239,2838666495,2838669311,2838669567,2838670591,2838670847,2838671871,2838672127,2838672383,2838673151,2838673407,2838673919,2838675199,2838675711,2838677247,2838677503,2838678271,2838678527,2838678783,2838679295,2838679551,2838679807,2838680575,2838681087,2838681599,2838682111,2838682367,2838683135,2838683647,2838683903,2838684159,2838684415,2838684927,2838685183,2838685951,2838686207,2838687743,2838691839,2838692607,2838692863,2838693631,2838693887,2838694399,2838694655,2838698239,2838698495,2838699519,2838700287,2838701055,2838701311,2838701567,2838702335,2838702591,2838703871,2838704383,2838704639,2838705151,2838705407,2838706431,2838706943,2838707455,2838708223,2838708735,2838709247,2838709759,2838711295,2838713343,2838714111,2838714367,2838714879,2838716671,2838717183,2838717439,2838717695,2838722303,2838722815,2838723327,2838724095,2838724351,2838724863,2838725119,2838729471,2838729727,2838731263,2838731519,2838732287,2838732543,2838732799,2838734079,2838734335,2838735359,2838735615,2838735871,2838736127,2838736383,2838736639,2838736895,2838737151,2838737407,2838737663,2838738175,2838738687,2838738943,2838739455,2838739711,2838740991,2838742783,2838743039,2838744063,2838744319,2838744831,2838745087,2838745343,2838745855,2838747135,2838747903,2838748415,2838748927,2838749183,2838749695,2838749951,2838750207,2838751487,2838751999,2838752511,2838753279,2838757375,2838822911,2838827263,2838827519,2838827775,2838863871,2838864383,2838864639,2838870015,2838870271,2838872063,2838905087,2838905343,2838906111,2838906367,2838906623,2838906879,2838907391,2838907647,2838908159,2838908415,2838909439,2838909695,2838909951,2838910463,2838911487,2838911743,2838912255,2838913023,2838913791,2838914047,2838915071,2838915583,2838916607,2838916863,2838917119,2838918399,2838918655,2838919167,2838919679,2838920191,2838920703,2838921215,2838986751,2838987263,2838987519,2838987775,2838988799,2838989311,2838989823,2838990079,2838990335,2838991359,2838991615,2838993919,2838994175,2838994687,2838994943,2838995967,2838996223,2838997247,2838998271,2838998783,2838999295,2838999807,2839000319,2839002879,2839019519,2839035903,2839052287,2839060479,2839068671,2839076863,2839085055,2839085823,2839086079,2839088639,2839088895,2839089663,2839089919,2839094015,2839094271,2839094527,2839094783,2839108095,2839108351,2839117823,2839118591,2839118847,2839119103,2839119359,2839119615,2839120895,2839121151,2839121919,2839122175,2839122687,2839122943,2839123455,2839123711,2839123967,2839124223,2839124479,2839124735,2839124991,2839125503,2839126015,2839126271,2839126783,2839127039,2839127295,2839127807,2839128831,2839129343,2839130623,2839130879,2839131391,2839131647,2839131903,2839132159,2839132415,2839132671,2839133183,2839133695,2839133951,2839134207,2839134463,2839134975,2839135487,2839135743,2839136255,2839137023,2839137279,2839137535,2839137791,2839138815,2839139071,2839140607,2839140863,2839141887,2839142143,2839142399,2839142655,2839143167,2839143423,2839143679,2839143935,2839144191,2839144447,2839144959,2839145215,2839149567,2839150335,2839150591,2839232511,2839233279,2839233535,2839233791,2839234047,2839234303,2839234559,2839235327,2839235583,2839235839,2839236095,2839236607,2839250175,2839250431,2839250943,2839251199,2839257599,2839257855,2839259391,2839259647,2839259903,2839260159,2839265023,2839265279,2839269887,2839270143,2839270399,2839270655,2839275775,2839276031,2839302143,2839302399,2839302911,2839303167,2839307519,2839307775,2839312127,2839312383,2839313151,2839313407,2839314175,2839314431,2839387647,2839387903,2839391231,2839391487,2839392255,2839392511,2839392767,2839393023,2839396095,2839396351,2839479807,2839480063,2839480575,2839480831,2839484927,2839485183,2839489791,2839490047,2839493887,2839494143,2839511295,2839511551,2839514879,2839515135,2839515391,2839515647,2839518975,2839519231,2839519743,2839519999,2839523839,2839524095,2839526143,2839526655,2843738111,2843746303,2843750399,2843798527,2843799039,2843803647,2843850751,2843851775,2843852799,2843869183,2844278783,2844282367,2844282623,2844282879,2844283391,2844283647,2844283903,2844286207,2844286463,2844286719,2844286975,2844287231,2844287487,2844288255,2844288767,2844295167,2844296191,2844296447,2844296703,2844297215,2844302847,2844303359,2844305919,2844306175,2844311551,2844393471,2844459007,2844524543,2844590079,2844863487,2844863999,2844901375,2844905471,2845048831,2845081599,2845082623,2845087487,2845091839,2845095935,2845096959,2845097983,2845114367,2845179903,2845180415,2845180927,2845181951,2845214463,2845214719,2845229055,2845230079,2845230335,2845230591,2845230847,2845231103,2845231359,2845231615,2845231871,2845232127,2845232383,2845232639,2845232895,2845233151,2845233407,2845233919,2845234175,2845234687,2845234943,2845235199,2845235711,2845235967,2845236223,2845236479,2845236735,2845236991,2845237247,2845237503,2845237759,2845238271,2845238527,2845239551,2845239807,2845240063,2845240319,2845240575,2845240831,2845241087,2845241343,2845241599,2845241855,2845242111,2845242367,2845242623,2845242879,2845243135,2845243391,2845243647,2845243903,2845244159,2845244415,2845244671,2845245183,2845245439,2845411327,2845411583,2845564927,2845566975,2845567231,2845567999,2845568511,2845569023,2845570047,2845571071,2845573119,2845704191,2845769727,2845786111,2845802495,2845822975,2845827071,2845835263,2848284671,2848285695,2848287743,2848288255,2848288767,2848289791,2848290815,2848292863,2848293119,2848293375,2848293631,2848293887,2848294143,2848294911,2848295935,2848300031,2848301055,2848302079,2848303103,2848304127,2848522239,2848587775,2848653311,2848980991,2850029567,2850062335,2851012607,2851013631,2851015679,2851016703,2851017727,2851018751,2851019775,2851020799,2851021823,2851022847,2851023871,2851024895,2851025919,2851027967,2851028223,2851028991,2851030015,2851031039,2851032063,2851033087,2851035135,2851036159,2851037183,2851038207,2851039231,2851040255,2851041279,2851042303,2851043327,2851044351,2851046399,2851047423,2851048447,2851049471,2851050495,2851051519,2851052543,2851053567,2851054591,2851055615,2851056639,2851057663,2851060735,2851062783,2851063807,2851064319,2851064575,2851064831,2851065087,2851065343,2851065599,2851065855,2851066879,2851067903,2851071999,2851074047,2851075071,2851076095,2851077119,2851078143,2851995647,2852061183,2852062207,2852063231,2852063487,2852063743,2852064255,2852065279,2852066303,2852067327,2852068351,2852071423,2852072447,2852073471,2852074495,2852075519,2852075775,2852076031,2852077567,2852078335,2852078591,2852079615,2852080639,2852081663,2852082687,2852083711,2852084735,2852087807,2852088831,2852089855,2852090879,2852091903,2852092927,2852093951,2852094975,2852095999,2852097023,2852098047,2852099071,2852100095,2852101119,2852102143,2852103167,2852104191,2852106239,2852107263,2852108287,2852109311,2852110335,2852112383,2852113407,2852114431,2852115455,2852116479,2852118527,2852119551,2852121599,2852122623,2852126719,2852127743,2852128767,2852129791,2852130815,2852131839,2852147199,2852148223,2852149247,2852150271,2852151295,2852171775,2852172799,2852173823,2852185087,2852186111,2852187135,2852189183,2852190207,2852192255,2852799487,2852799999,2852800511,2852810751,2852812799,2852814079,2852814847,2852816383,2852816895,2852818175,2852818431,2852818687,2852818943,2852819711,2852839423,2852847615,2853041663,2853041919,2853204223,2853204479,2853204735,2853204991,2853205247,2853205503,2853205759,2853206015,2853206527,2853206783,2853207039,2853207551,2853210367,2853211135,2853212159,2853212415,2853212671,2853213183,2853221887,2853222143,2853273599,2853306367,2853371903,2853765119,2853830655,2854289407,2854290431,2854291455,2854293503,2854295551,2854297599,2854299647,2854299903,2854301183,2854301439,2854301695,2854305791,2854306559,2854306815,2854307327,2854307839,2854308095,2854309887,2854310143,2854310399,2854310911,2854311167,2854311935,2854312447,2854312959,2854313471,2854313983,2854314751,2854315519,2854316031,2854317055,2854354943,2854582527,2854582783,2854603519,2854604543,2854617087,2854682623,2854684159,2854684415,2854685695,2854686719,2854688511,2854688767,2854689791,2854690815,2854691839,2854694911,2854695167,2854695679,2854695935,2854701055,2854702079,2854703103,2854707199,2854707711,2854708223,2854708479,2854709247,2854709759,2854710271,2854711295,2854712319,2854719487,2854720511,2854726655,2854727679,2854732799,2854734335,2854735103,2854735359,2854737919,2854738431,2854738943,2854741503,2854742015,2854743039,2854744063,2854744831,2854745087,2854811135,2854811391,2854813439,2854813695,2855469055,2855483391,2855484415,2855484927,2855485439,2855487487,2855487999,2855488511,2855493631,2855493887,2855494143,2855497727,2855501823,2855518207,2855520255,2855521791,2855522047,2855522815,2855523071,2855523327,2855523839,2855524095,2855526399,2855528447,2855534591,2855550975,2855567359,2855811583,2855811839,2856058879,2856124415,2856189183,2856189439,2856189695,2856200447,2856200703,2856210687,2856210943,2856231423,2856231679,2856232959,2856233983,2856240127,2856241151,2856353791,2856382463,2856384511,2856386559,2856424959,2856425215,2856430079,2856430335,2856442111,2856442623,2856452095,2856517631,2856714239,2856779775,2856845311,2856845567,2856845823,2856846079,2856846335,2856846591,2856846847,2856847103,2856847359,2856848127,2856848383,2856848639,2856849919,2856850175,2856850943,2856851199,2857082879,2857086975,2857140223,2857140735,2857158399,2857158655,2857169151,2857169407,2857238527,2857248767,2857249791,2857250815,2857252863,2857253887,2857256959,2857257983,2857261055,2857262079,2857266175,2857267199,2857268223,2857270271,2857271295,2857273343,2857274367,2857285631,2857285887,2857286143,2857286655,2857287679,2857288703,2857289727,2857290751,2857291775,2857292799,2857294847,2857295871,2857303039,2857304063,2857308159,2857309183,2857313279,2857314303,2857315327,2857326591,2857327615,2857329663,2857330687,2857331711,2857332735,2857335807,2857336831,2857340927,2857341951,2857350143,2857351167,2857363455,2857364479,2857368575,2857369599,2857371647,2857372671,2857373695,2857374719,2857375743,2857376767,2857377791,2857388031,2857389055,2857392127,2857393151,2857394175,2857395199,2857398015,2857398271,2857399295,2857400319,2857404415,2857405439,2857406463,2857412607,2857414655,2857420799,2857421823,2857427967,2857428991,2857431039,2857432063,2857433087,2857434111,2857437183,2857438207,2857441279,2857442303,2857443327,2857444351,2857448447,2857449471,2857466879,2857467903,2857470719,2857470975,2857471999,2857473023,2857485311,2857486079,2857486335,2857489407,2857490431,2857493503,2857494527,2857496575,2857497599,2857499647,2857500671,2857501695,2857506815,2857507839,2857509887,2857510911,2857511423,2857525247,2857526271,2857529343,2857530367,2857533439,2857534463,2857537535,2857538559,2857540607,2857541631,2857548799,2857549823,2857553919,2857554943,2857555967,2857556991,2857558015,2857559039,2857563135,2857563647,2857563903,2857564159,2857567231,2857568255,2857569279,2857574399,2857575423,2857579519,2857580543,2857581055,2857581311,2857581567,2857585663,2857586687,2857593855,2857594879,2857595903,2857596927,2857597951,2857598975,2857611263,2857612287,2857615359,2857616383,2857621503,2857622527,2857623551,2857625599,2857627647,2857628671,2857633791,2857634815,2857643007,2857644031,2857659391,2857659903,2857660415,2857663487,2857665535,2857666559,2857667583,2857674751,2857675775,2857676799,2857679871,2857680895,2857683967,2857684991,2857686015,2857687039,2857690111,2857690623,2857690879,2857691135,2857692159,2857696255,2857696767,2857697023,2857697279,2857697791,2857698815,2857701375,2857703935,2857704447,2857704959,2857705471,2857705983,2857706495,2857708031,2857708543,2857709055,2857709567,2857712127,2857714175,2857714687,2857717247,2857717759,2857718783,2857719295,2858008575,2858024959,2858352639,2858418175,2858778623,2858811391,2858840063,2858868735,2858868991,2858875903,2858876927,2859007999,2859073535,2859607807,2859608063,2859609855,2859610111,2859848447,2859848703,2859900927,2859901183,2860538367,2860538623,2860655615,2860656127,2860675071,2860675327,2860690431,2860690687,2860843007,2860859391,2860875775,2860900351,2860908543,2861940223,2861940735,2861948927,2861949439,2861951487,2861951999,2861955071,2861955583,2861956607,2861957119,2861959167,2861960191,2861961215,2861964287,2861965311,2861966335,2861968383,2861969407,2861971455,2861972479,2861974527,2861979647,2861980671,2861986815,2861987839,2861988863,2861992959,2861993983,2861996031,2861997055,2861998079,2861999103,2862003199,2862004223,2862007295,2862008319,2862022655,2862180351,2862181375,2862284799,2862350335,2862415871,2862481407,2862698239,2862698495,2862940159,2863005695,2863202303,2863267839,2863595519,2863661055,2863693823,2863694335,2863695871,2863696127,2863709439,2863709695,2863714559,2863714815,2863723007,2863723263,2863723519,2863723775,2863724031,2863724287,2863829759,2863830015,2863857663,2863923199,2864427007,2864429055,2864431103,2864432127,2864433151,2864435199,2864439295,2864441343,2864443391,2864445439,2864447487,2864848895,2864849151,2864855039,2864855295,2864857087,2864857343,2864860159,2864860671,2864865279,2864866047,2864867327,2864867583,2864867839,2864868095,2864868351,2864868607,2864872447,2864872959,2864878591,2864879103,2864885759,2864886271,2864886527,2864887039,2864887807,2864888319,2864888831,2864889087,2865168383,2865209343,2865217535,2865217791,2865218303,2865218815,2865219071,2865219327,2865219583,2865220095,2865220351,2865220607,2865221375,2865221631,2865222143,2865224191,2865225727,2865226239,2865226495,2865227775,2865228799,2865229311,2865230847,2865231359,2865231615,2865258495,2865258751,2865479679,2865480191,2865481727,2865487871,2865565695,2865566719,2865569023,2865569279,2865570815,2865571071,2865571583,2865571839,2865573887,2865574911,2865575423,2865575679,2865575935,2865576191,2865576703,2865577983,2865594367,2865700863,2865701375,2865701887,2865702911,2865703423,2865703935,2865889279,2865954815,2866844159,2866844415,2866938879,2866939135,2867265535,2867274751,2867275775,2867278847,2867279871,2867282943,2867283967,2867284991,2867286015,2867287039,2867297279,2867298303,2867300351,2867301375,2867306495,2867307519,2867308543,2867309567,2867310591,2867311615,2867317759,2867318783,2867323903,2867324927,2867325951,2867326975,2867329023,2867329535,2867329791,2867330047,2867331071,2867396607,2867403775,2867404799,2867414015,2867415039,2867416063,2867420159,2867421183,2867426303,2867427327,2867428351,2867429375,2867433471,2867434495,2867435519,2867436543,2867441663,2867442687,2867445759,2867446783,2867449855,2867450879,2867451903,2867452927,2867455999,2867457023,2867462143,2867593215,2867639295,2867639551,2867660287,2867660799,2867661311,2867682303,2867682815,2867683071,2867683327,2867724287,2867725311,2867726335,2867727359,2867728383,2867729407,2867730431,2867731455,2867732479,2867733503,2867734527,2867735551,2867740671,2867741183,2867741695,2867751935,2867752959,2867756031,2867757055,2867767295,2867767807,2867768319,2867775487,2867776511,2867777535,2867780607,2867781631,2867782143,2867782655,2867783679,2867783935,2867784703,2867785727,2867787775,2867788799,2867789823,2867792895,2867793919,2867796991,2867799039,2867802111,2867803135,2867804159,2867805183,2867806207,2867807231,2867811327,2867812351,2867813375,2867815423,2867816447,2867820543,2867821567,2867822591,2867823615,2867827711,2867828735,2867829247,2867829759,2867831807,2867832831,2867834879,2867835903,2867836927,2867837951,2867838975,2867842047,2867842303,2867842559,2867842815,2867843071,2867850239,2867851263,2867852287,2867853311,2867855359,2868117503,2868127743,2868128767,2868129791,2868130815,2868131839,2868132863,2868137983,2868139007,2868140031,2868141055,2868142079,2868145151,2868146175,2868148223,2868150271,2868151295,2868154367,2868154623,2868154879,2868155391,2868157439,2868158463,2868160511,2868161535,2868164607,2868166655,2868170751,2868171775,2868178943,2868179967,2868183039,2868184063,2868191743,2868191999,2868192255,2868193279,2868194303,2868195327,2868196351,2868197375,2868198399,2868205567,2868206591,2868216831,2868217343,2868223487,2868223999,2868225023,2868226047,2868227071,2868230143,2868232191,2868236287,2868237311,2868242431,2868243455,2868244479,2868245503,2868253695,2868254719,2868257791,2868259839,2868260863,2868261887,2868262143,2868262655,2868262911,2868263935,2868264959,2868265983,2868268031,2868268287,2868268543,2868268799,2868269055,2868270079,2868271103,2868272127,2868273151,2868274175,2868275199,2868277247,2868278271,2868286463,2868287487,2868288511,2868289535,2868290559,2868292607,2868293631,2868295679,2868304895,2868305919,2868311039,2868312063,2868314111,2868315135,2868328447,2868329471,2868333567,2868334591,2868335615,2868336639,2868337663,2868337919,2868338687,2868339711,2868344831,2868345855,2868346879,2868348927,2868349951,2868350975,2868353023,2868354047,2868355071,2868356095,2868357119,2868357631,2868358143,2868360191,2868362239,2868363263,2868366335,2868367359,2868368383,2868369407,2868370431,2868371455,2868373503,2868379647,2868380159,2868382719,2868383231,2868390399,2868390911,2868391423,2868391935,2868404223,2868404479,2868414975,2868415487,2868420607,2868423679,2868428287,2868428799,2868453375,2868461567,2868463615,2868465663,2868467711,2868469759,2868477951,2868578815,2868579327,2868581375,2868581887,2868586495,2868588543,2868591615,2868592127,2868599295,2868599807,2868604415,2868604927,2868612607,2868613119,2868614399,2868615167,2868615679,2868616703,2868619775,2868620287,2868620799,2868621311,2868623871,2868624127,2868629503,2868629759,2868641791,2868642047,2868707327,2868723711,2868731903,2868740095,2868772863,2868773887,2868776959,2868777983,2868780031,2868781055,2868785151,2868786175,2868788223,2868789247,2868790271,2868795391,2868796415,2868797439,2868805631,2868806655,2868812799,2868813823,2868814847,2868815871,2868816895,2868817919,2868818943,2868825087,2868826111,2868828159,2868829183,2868831231,2868832255,2868833279,2868838399,2868903935,2869035007,2869166079,2869428223,2869952511,2870018047,2870083583,2870087935,2870088191,2870089727,2870090495,2870090751,2870091775,2870095871,2870096895,2870116351,2870117375,2870117631,2870117887,2870118143,2870149119,2870214655,2870280191,2870345727,2870346751,2870347775,2870348799,2870349823,2870350079,2870350335,2870350591,2870350847,2870351871,2870352895,2870353151,2870353407,2870353663,2870353919,2870354943,2870355967,2870356991,2870358015,2870359039,2870360063,2870361087,2870362111,2870363135,2870364159,2870365183,2870365439,2870365695,2870365951,2870366207,2870367231,2870368255,2870369279,2870370303,2870371327,2870371583,2870371839,2870372095,2870372351,2870373375,2870373631,2870374655,2870375935,2870376447,2870376959,2870377215,2870378495,2870378751,2870379007,2870379263,2870379775,2870381311,2870381567,2870382591,2870382847,2870383103,2870383359,2870383615,2870384639,2870385663,2870386687,2870387711,2870387967,2870388735,2870389759,2870390783,2870391807,2870392319,2870392831,2870393855,2870394367,2870394623,2870394879,2870395135,2870395391,2870395647,2870395903,2870396927,2870397951,2870398975,2870399999,2870401023,2870402047,2870403071,2870404095,2870405119,2870406143,2870407167,2870407423,2870407679,2870407935,2870408191,2870409215,2870409727,2870410239,2870410495,2870410751,2870411007,2870411263,2870476799,2870535167,2870536191,2870542335,2870575103,2870577663,2870577919,2870578175,2870578431,2870578687,2870578943,2870579199,2870583295,2870584319,2870585343,2870586367,2870587391,2870587647,2870587903,2870588159,2870588415,2870588927,2870589439,2870591231,2870591487,2870591743,2870591999,2870592511,2870593535,2870594047,2870594559,2870595583,2870596607,2870597631,2870597887,2870598143,2870598655,2870598911,2870599167,2870599423,2870599679,2870599935,2870600191,2870600703,2870600959,2870601215,2870601727,2870602751,2870604287,2870607871,2870673407,2870738687,2870738943,2870935551,2871001087,2871066623,2871083007,2871099391,2871101439,2871103487,2871103743,2871103999,2871104511,2871105535,2871107583,2871111679,2871115775,2871123967,2871126015,2871128063,2871128319,2871128575,2871128831,2871129087,2871132159,2872049663,2873098239,2873360383,2873534463,2873534719,2873622527,2873819135,2873884671,2874146815,2875195391,2875719679,2877292543,2879264767,2879265279,2879265791,2879266303,2879335935,2879337471,2879337727,2879340543,2879354879,2879355135,2879355391,2879355903,2879356415,2879356927,2879381503,2879381759,2879382015,2879457279,2879458047,2879458303,2879459327,2879461887,2879462143,2879462399,2879462911,2879463167,2879463423,2879463935,2879464191,2879465471,2879465727,2879465983,2879466495,2879467519,2879468543,2879469055,2879469567,2879469823,2879470335,2879470591,2879471103,2879476223,2879476479,2879479807,2879480063,2879480319,2879480575,2879480831,2879481855,2879482111,2879483903,2879484159,2879486975,2879487999,2879492095,2879492351,2879492607,2879492863,2879493119,2879504383,2879504639,2879505919,2879506175,2879520767,2879521023,2879522047,2879522303,2879524351,2879524607,2879524863,2879525119,2879526399,2879526655,2879526911,2879527167,2879527679,2879528703,2879528959,2879529983,2879533055,2879537151,2879541247,2879542783,2879543807,2879548159,2879548415,2879561727,2879562751,2879574015,2879574527,2879575295,2879580671,2879581695,2881486847,2881489407,2881489663,2881491455,2882469887,2882535423,2883583999,2885681151,2886729727,2887778303,2889551871,2889553919,2889875455,2889879551,2889891839,2889892863,2889893375,2889895935,2889904127,2889908223,2889920511,2889924607,2889928703,2889933823,2889934335,2889935871,2889936895,2890137599,2890137855,2890138623,2890138879,2890139135,2890139391,2890139647,2890141695,2890142719,2890144767,2890145279,2890145535,2890145791,2890147327,2890147583,2890147839,2890148095,2890148863,2890149119,2890149375,2890149631,2890149887,2890150911,2890151935,2890152191,2890152447,2890152703,2890152959,2890153983,2890154239,2890154495,2890154751,2890155007,2890156543,2890156799,2890157055,2890157567,2890157823,2890158079,2890158335,2890158591,2890159103,2890159359,2890159615,2890159871,2890160127,2890160383,2890160639,2890160895,2890161151,2890161407,2890161663,2890161919,2890162175,2890162431,2890162687,2890162943,2890163199,2890164223,2890164479,2890164735,2890165247,2890166271,2890166527,2890167039,2890167295,2890168319,2890168831,2890169087,2890169343,2890169599,2890169855,2890170111,2890170367,2890170623,2890170879,2890171135,2890171391,2890172415,2890173439,2890173951,2890174207,2890174463,2890174719,2890174975,2890175487,2890176511,2890176767,2890177023,2890177535,2890178815,2890179327,2890179583,2890180095,2890180351,2890180607,2890180863,2890181119,2890181375,2890181631,2890182655,2890182911,2890183167,2890183423,2890183679,2890184703,2890185727,2890185983,2890186239,2890186495,2890186751,2890187775,2890188031,2890188287,2890188543,2890188799,2890189055,2890189311,2890189567,2890189823,2890190335,2890190591,2890190847,2890191871,2890192383,2890192639,2890192895,2890193407,2890193663,2890193919,2890194431,2890194687,2890194943,2890195199,2890195455,2890195967,2890196479,2890196735,2890196991,2890198015,2890199039,2890199551,2890199807,2890200063,2890201087,2890201343,2890201599,2890201855,2890202111,2890202367,2890202623,2890203135,2890203647,2890203903,2890204159,2890205183,2890205439,2890206207,2890206463,2890206719,2890206975,2890207231,2890207487,2890207743,2890207999,2890208255,2890208511,2890212095,2890212351,2890212607,2890212863,2890213375,2890213631,2890213887,2890214143,2890214399,2890214655,2890214911,2890215167,2890215423,2890215935,2890216191,2890216447,2890216703,2890216959,2890217215,2890217471,2890218495,2890218751,2890219007,2890219519,2890221567,2890221823,2890222591,2890222847,2890223103,2890223359,2890223615,2890223871,2890224127,2890224639,2890224895,2890225151,2890225663,2890225919,2890226175,2890226687,2890226943,2890227199,2890227711,2890228223,2890228735,2890228991,2890229247,2890229503,2890229759,2890230015,2890230271,2890230527,2890230783,2890231295,2890231551,2890231807,2890232063,2890232319,2890232575,2890232831,2890233087,2890233343,2890233855,2890234111,2890234367,2890234879,2890235391,2890235647,2890235903,2890236159,2890236927,2890237951,2890238207,2890238975,2890239487,2890239743,2890239999,2890240255,2890240511,2890240767,2890241023,2890242047,2890242303,2890242559,2890243071,2890243327,2890243583,2890243839,2890244095,2890244351,2890244607,2890244863,2890245119,2890245375,2890245887,2890246143,2890246399,2890246655,2890247167,2890247423,2890247679,2890247935,2890248191,2890249215,2890249471,2890249727,2890249983,2890250239,2890250495,2890250751,2890251263,2890251519,2890251775,2890252031,2890252287,2890252543,2890253311,2890253567,2890253823,2890254079,2890254335,2890254591,2890254847,2890255359,2890255615,2890255871,2890256127,2890256383,2890256895,2890257151,2890257407,2890257663,2890257919,2890258687,2890258943,2890259199,2890259455,2890259711,2890259967,2890260479,2890260991,2890261247,2890261503,2890261759,2890262015,2890262271,2890262527,2890263039,2890263295,2890263551,2890263807,2890264063,2890264319,2890264575,2890264831,2890265087,2890265343,2890265599,2890265855,2890266111,2890266879,2890267135,2890267647,2890267903,2890268159,2890268415,2890268671,2890279935,2890280959,2890281215,2890281727,2890281983,2890282239,2890283007,2890284543,2890284799,2890285055,2890290175,2890292223,2890292735,2890292991,2890293247,2890294271,2890294527,2890294783,2890295039,2890295295,2890295551,2890295807,2890296063,2890296319,2890298367,2890298623,2890298879,2890299391,2890300415,2890303487,2890303743,2890303999,2890304511,2890306559,2890307327,2890307583,2890308095,2890308351,2890308607,2890308863,2890309119,2890309375,2890309631,2890310655,2890314751,2890315007,2890315519,2890316031,2890316287,2890316543,2890316799,2890317311,2890317567,2890318079,2890318335,2890318591,2890318847,2890319103,2890319359,2890319615,2890319871,2890320127,2890320383,2890320639,2890320895,2890323967,2890324991,2890326015,2890326271,2890326527,2890326783,2890327039,2890328063,2890328831,2890329087,2890329343,2890329599,2890329855,2890330111,2890333183,2890333439,2890334207,2890334463,2890334719,2890334975,2890335231,2890337279,2890337535,2890337791,2890338047,2890338559,2890338815,2890342399,2890350591,2890354687,2890355711,2890356479,2890356735,2890356991,2890357247,2890357503,2890357759,2890360831,2890361855,2890362879,2890363135,2890363903,2890369023,2890369279,2890369535,2890369791,2890370047,2890375167,2890375423,2890375679,2890375935,2890376191,2890379263,2890380287,2890381311,2890381567,2890382335,2890384383,2890386431,2890386687,2890387455,2890390527,2890391551,2890391807,2890392063,2890392319,2890392575,2890392831,2890393087,2890393599,2890395647,2890396671,2890398719,2890956799,2890989567,2890990591,2890996735,2890997759,2890998783,2890999039,2891014143,2891015167,2891018239,2891020287,2891022335,2891034623,2891036671,2891038719,2891055103,2891064063,2891064319,2891065343,2891068415,2891073023,2891073279,2891074047,2891074303,2891074559,2891075583,2891078143,2891078399,2891082751,2891083775,2891120639,2891120895,2891122687,2891123199,2891130879,2891131135,2891132159,2891132415,2891132671,2891132927,2891133951,2891134975,2891135999,2891138047,2891139071,2891141375,2891141631,2891142143,2891142655,2891147263,2891148287,2891153151,2891153407,2891161599,2891165695,2891173887,2891177983,2891184639,2891184895,2891185151,2891202559,2891209727,2891210239,2891223295,2891223551,2891227135,2891231231,2891231743,2891231999,2891232255,2891232767,2891233279,2891233791,2891234303,2891234815,2891235327,2891251711,2891272191,2891274239,2891276543,2891276799,2891278335,2891278847,2891279103,2891279359,2891279615,2891280127,2891282431,2891283455,2891284479,2891334143,2891335423,2891336447,2891336703,2891337727,2891338239,2891339263,2891340031,2891340287,2891340799,2891348991,2891349247,2891357951,2891358207,2891364351,2891370495,2891374591,2891378687,2891380735,2891403263,2891407359,2891776511,2891777023,2891777535,2891777791,2891778047,2891780095,2891786239,2891790335,2891791359,2891796479,2891800575,2891807743,2891808767,2891818239,2891818495,2891818751,2891819007,2891823359,2891823615,2891823871,2891824127,2891824639,2891831807,2891832319,2891832831,2891841535,2891841791,2891842303,2891842559,2891842815,2891843071,2891843327,2891843583,2891844095,2891844351,2891845631,2891845887,2891846143,2891846399,2891846655,2891848447,2891848703,2891848959,2891849215,2891849471,2891849727,2891849983,2891850239,2891850495,2891851775,2891852031,2891853055,2891853567,2891853823,2891854079,2891854335,2891854591,2891854847,2891855103,2891855359,2891855615,2891855871,2891856127,2891856383,2891856895,2891857151,2891857663,2891858175,2891858431,2891858687,2891859199,2891859455,2891859711,2891859967,2891860223,2891860479,2891860735,2891860991,2891861247,2891861503,2891861759,2891862015,2891862271,2891862527,2891862783,2891863295,2891863551,2891863807,2891864063,2891864319,2891864575,2891864831,2891866111,2891866367,2891866623,2891866879,2891867391,2891867647,2891867903,2891868159,2891868415,2891868927,2891869439,2891869695,2891870207,2891870463,2891870719,2891870975,2891871231,2891871487,2891871743,2891871999,2891872511,2891872767,2891873023,2891873535,2891873791,2891874047,2891874303,2891874559,2891907071,2891977727,2891978751,2891982847,2891984895,2891986943,2891987455,2891987967,2891988223,2891993855,2891994111,2891995391,2891995647,2891995903,2891996159,2891997183,2891997439,2891997695,2891997951,2891998207,2891999231,2891999487,2892000511,2892000767,2892001023,2892001279,2892004351,2892004863,2892005119,2892005375,2892015615,2892016639,2892017663,2892021759,2892040191,2892042239,2892050431,2892052479,2892053503,2892054527,2892058623,2892062719,2892068863,2892069887,2892070911,2892103679,2892109311,2892109823,2892111103,2892111359,2892116991,2892119039,2892120575,2892121343,2892121855,2892122111,2892122367,2892122623,2892124159,2892124415,2892124671,2892124927,2892125183,2892126207,2892126719,2892126975,2892127231,2892127487,2892140543,2892144639,2892145151,2892145407,2892145919,2892146431,2892146943,2892147199,2892147711,2892147967,2892148479,2892148735,2892148991,2892149247,2892149503,2892151295,2892151551,2892152319,2892152575,2892155903,2892156415,2892171263,2892172287,2892174335,2892174591,2892175359,2892177407,2892194815,2892195071,2892195327,2892196095,2892196863,2892197631,2892197887,2892198143,2892198399,2892198911,2892199167,2892199679,2892200191,2892200447,2892200703,2892200959,2892201215,2892201471,2892201727,2892203519,2892204031,2892208127,2892210175,2892211199,2892212223,2892216319,2892217343,2892217599,2892217855,2892218111,2892218367,2892218623,2892218879,2892219135,2892219391,2892223487,2892228607,2892228863,2892232191,2892232703,2892233471,2892233727,2892365823,2892366847,2892369919,2892374015,2892398591,2892402687,2892417023,2892417279,2892417535,2892417791,2892418047,2892418559,2892418815,2892419583,2892419839,2892420095,2892420351,2892420607,2892421119,2892421375,2892421631,2892421887,2892422655,2892423167,2892424191,2892425215,2892443647,2892447743,2892453887,2892455935,2892464127,2892496895,2892497663,2892497919,2892505087,2892513279,2892529663,2892537855,2892546047,2892548607,2892549119,2892549375,2892549631,2892550143,2892554239,2892562431,2892570623,2892578815,2892587007,2892591103,2892595199,2892595711,2892596223,2892596735,2892598271,2892598783,2892599295,2892599807,2892600063,2892603391,2892611583,2892624895,2892626943,2892627455,2892627967,2892647935,2892648191,2892693503,2892693759,2892695551,2892695807,2892717567,2892717823,2892718079,2892718591,2892719103,2892731903,2892732159,2892732927,2892733183,2892734207,2892734463,2892737023,2892737279,2892737535,2892737791,2892742143,2892742399,2892743167,2892743423,2892751103,2892751615,2892751871,2892752127,2892752383,2892753151,2892753407,2892754175,2892754431,2892755711,2892755967,2892756223,2892756991,2892757247,2892906495,2892910591,2892923135,2892923391,2892926719,2892927487,2892931583,2892931839,2892935167,2892936191,2892941311,2892942335,2892943359,2892947455,2892958719,2892959743,2892962303,2892962559,2892963839,2892964095,2892964607,2892964863,2892965119,2892965375,2892965631,2892965887,2892968447,2892968703,2892968959,2892969215,2892969471,2892969983,2892970239,2892971007,2892972031,2892972287,2892973311,2892973567,2892974591,2892974847,2892975359,2892975615,2892976895,2892977151,2892977407,2892977663,2892978687,2892978943,2892979455,2892979711,2892981247,2892981503,2892981759,2892982015,2892982271,2892982527,2892983039,2892983551,2892984319,2892986367,2892986623,2892986879,2892987135,2892987391,2892988415,2892988671,2892988927,2892989183,2892989439,2892989695,2892989951,2892990207,2892990463,2892990719,2892990975,2892991231,2892991487,2892991999,2892992255,2892992511,2892992767,2892993023,2892993279,2892994047,2892994303,2892994559,2892994815,2892995071,2892995327,2892995583,2892995839,2892996351,2892996607,2892996863,2892997119,2892997375,2892997631,2892997887,2892998143,2892998399,2892998655,2892998911,2892999167,2892999679,2892999935,2893000191,2893000447,2893000703,2893000959,2893001215,2893001983,2893002239,2893002751,2893003007,2893003263,2893003519,2893003775,2893004031,2893004287,2893004543,2893004799,2893005055,2893005567,2893005823,2893006079,2893006591,2893006847,2893007103,2893007359,2893007615,2893007871,2893008127,2893008639,2893008895,2893009151,2893009407,2893010175,2893010431,2893010687,2893010943,2893011199,2893011455,2893011711,2893011967,2893012223,2893012479,2893013759,2893014015,2893014783,2893015039,2893015295,2893015551,2893015807,2893016063,2893016319,2893016575,2893016831,2893017087,2893017343,2893017599,2893017855,2893018111,2893018623,2893018879,2893019135,2893019391,2893019647,2893019903,2893020159,2893020415,2893020671,2893545471,2893545983,2893547263,2893547519,2893548031,2893548287,2893550079,2893550335,2893551871,2893552127,2893559807,2893560063,2893563135,2893563391,2893570815,2893571071,2893591807,2893592063,2893611519,2893611775,2893612287,2893612543,2893613055,2893613311,2893614591,2893615103,2893616639,2893616895,2893617663,2893617919,2893618431,2893618687,2893618943,2893619199,2893633023,2893633279,2893635583,2893635839,2893639679,2893639935,2893640447,2893640703,2893641471,2893641727,2893643775,2893644031,2893644799,2893645055,2893647359,2893647615,2893648127,2893648383,2893648639,2893648895,2893649663,2893649919,2893651199,2893651455,2893651711,2893651967,2893670911,2893671167,2893672959,2893673215,2893675007,2893675263,2893676287,2893676543,2893807615,2894069759,2896166911,2896232447,2896363519,2896494591,2896691199,2896759039,2896759295,2897281023,2897281279,2897282047,2897284863,2897285119,2897286143,2897287167,2897287935,2897288447,2897288703,2897289215,2897289471,2897289727,2897290239,2897290495,2897291263,2897292031,2897292287,2897293311,2897293567,2897294079,2897294335,2897294591,2897295103,2897295615,2897296383,2897296639,2897296895,2897297151,2897297407,2897297919,2897298431,2897299199,2897299455,2897299711,2897299967,2897300223,2897301247,2897301503,2897302015,2897302271,2897302783,2897303551,2897304319,2897304575,2897304831,2897305599,2897307135,2897307903,2897308415,2897308927,2897309183,2897309695,2897309951,2897310207,2897310463,2897310719,2897311231,2897311487,2897312255,2897312511,2897312767,2897313535,2897313791,2897314047,2897314303,2897314559,2897314815,2897315071,2897315327,2897315583,2897316095,2897316863,2897317375,2897317631,2897317887,2897318143,2897318399,2897319423,2897319935,2897320447,2897321215,2897321471,2897321727,2897322751,2897323519,2897325055,2897325311,2897325567,2897325823,2897326335,2897326591,2897326847,2897327359,2897328383,2897328895,2897329407,2897330431,2897330943,2897331199,2897331455,2897331711,2897332223,2897332479,2897332735,2897332991,2897333247,2897333759,2897334783,2897335551,2897335807,2897336319,2897336575,2897337343,2897337599,2897337855,2897338111,2897338367,2897338879,2897339135,2897339903,2897340415,2897340671,2897340927,2897341695,2897341951,2897342207,2897342463,2897342719,2897343487,2897343743,2897344255,2897344511,2897345535,2897345791,2897346047,2897346303,2897346559,2897598975,2897599231,2897805311,2898001919,2898034687,2898132991,2898198783,2898199039,2898199295,2898199551,2898200063,2898200319,2898200831,2898201087,2898201343,2898201599,2898201855,2898202111,2898202623,2898203135,2898203391,2898203647,2898204159,2898204415,2898205183,2898205439,2898205951,2898206463,2898206975,2898207231,2898207743,2898209279,2898209535,2898209791,2898210303,2898210559,2898211071,2898211327,2898212351,2898212607,2898212863,2898213119,2898213375,2898213887,2898214143,2898214399,2898214655,2898215167,2898215423,2898216191,2898216447,2898216703,2898217215,2898217727,2898217983,2898218495,2898218751,2898219007,2898219263,2898219519,2898219775,2898220287,2898221311,2898221567,2898221823,2898222079,2898222335,2898222591,2898222847,2898223103,2898223615,2898224895,2898225151,2898225663,2898225919,2898226175,2898226431,2898226943,2898227199,2898227455,2898227711,2898228223,2898228735,2898228991,2898229247,2898229503,2898229759,2898230015,2898230271,2898231039,2898231295,2898231551,2898232319,2898232575,2898232831,2898233343,2898233855,2898234111,2898234623,2898235391,2898235647,2898235903,2898236159,2898236415,2898236927,2898237183,2898237439,2898238207,2898238463,2898238719,2898238975,2898239487,2898239743,2898239999,2898240767,2898241023,2898241279,2898241535,2898241791,2898242047,2898242303,2898242559,2898242815,2898243071,2898244863,2898245375,2898245887,2898246143,2898246399,2898246911,2898247167,2898247423,2898248191,2898248447,2898248703,2898249215,2898249471,2898249983,2898250239,2898250495,2898251007,2898251263,2898251519,2898251775,2898252031,2898252287,2898252543,2898252799,2898253055,2898253311,2898253567,2898253823,2898254079,2898254335,2898255615,2898255871,2898256127,2898256383,2898256895,2898257151,2898257407,2898257663,2898258175,2898258431,2898258687,2898259199,2898259455,2898259711,2898259967,2898260223,2898260479,2898261247,2898261503,2898262015,2898262271,2898262527,2898262783,2898263039,2898263295,2898263551,2898263807,2898264063,2898788351,2898853887,2898919423,2899050495,2899116031,2899148799,2899181567,2899247103,2899312639,2899378175,2899410943,2899443711,2899509247,2899574783,2899640319,2899648511,2899673087,2899705855,2899907071,2899907327,2899908351,2899908607,2899910655,2899910911,2899911167,2899911423,2899911679,2899911935,2899912191,2899912447,2899912703,2899913215,2899913471,2899914239,2899914495,2899914751,2899939583,2899939839,2899944959,2899945215,2899967999,2900099071,2900362751,2900363007,2900364287,2900364543,2900365055,2900365311,2900365567,2900365823,2900366335,2900367615,2900367871,2900368127,2900368383,2900369407,2900369663,2900370175,2900370431,2900370687,2900370943,2900371199,2900371711,2900372223,2900372479,2900372735,2900372991,2900374271,2900374527,2900375295,2900375551,2900375807,2900376575,2900376831,2900377087,2900377343,2900377599,2900377855,2900378111,2900378367,2900378623,2900378879,2900379391,2900379647,2900379903,2900383743,2900384255,2900385023,2900385279,2900386047,2900386303,2900386559,2900387071,2900387583,2900387839,2900388095,2900388607,2900388863,2900389119,2900389887,2900390143,2900390399,2900391423,2900391679,2900393727,2900393983,2900394239,2900394751,2900395007,2900395263,2900395519,2900396543,2900397055,2900397311,2900397567,2900397823,2900398079,2900398335,2900398591,2900399359,2900399615,2900400383,2900400639,2900401151,2900401407,2900401919,2900402175,2900403455,2900403711,2900403967,2900404479,2900404735,2900404991,2900405503,2900406015,2900406271,2900406527,2900406783,2900407039,2900407295,2900407551,2900407807,2900408063,2900408319,2900408575,2900408831,2900409087,2900409599,2900409855,2900410111,2900418559,2900418815,2900419583,2900419839,2900420095,2900420351,2900420607,2900422143,2900422399,2900422655,2900422911,2900423167,2900424703,2900425215,2900425471,2900425727,2900425983,2900426239,2900426495,2900427263,2900427519,2900428287,2900428543,2900429311,2900429567,2900433407,2900433663,2900434943,2900435199,2900435455,2900435711,2900435967,2900436223,2900436479,2900436735,2900436991,2900437247,2900437503,2900438527,2900438783,2900439039,2900439295,2900439807,2900440063,2900440319,2900440575,2900440831,2900441087,2900441599,2900441855,2900442111,2900442367,2900442623,2900442879,2900443391,2900443647,2900444159,2900444415,2900444671,2900444927,2900445183,2900445439,2900445695,2900446463,2900446719,2900446975,2900447231,2900447743,2900447999,2900448255,2900448511,2900450303,2900450815,2900451071,2900451327,2900451839,2900452095,2900452351,2900452607,2900453375,2900453631,2900453887,2900454143,2900455935,2900456191,2900456447,2900456703,2900456959,2900457215,2900457471,2900457727,2900457983,2900458495,2900458751,2900459007,2900459263,2900459519,2900461055,2900461567,2900462079,2900462591,2900463103,2900463359,2900463615,2900464127,2900466175,2900466687,2900466943,2900467199,2900467967,2900468223,2900468735,2900470783,2900471039,2900471807,2900472063,2900472319,2900472575,2900472831,2900473087,2900473343,2900473599,2900473855,2900474111,2900474367,2900474623,2900474879,2900475135,2900475391,2900475647,2900475903,2900476159,2900476415,2900476671,2900476927,2900477183,2900477439,2900477951,2900478207,2900478463,2900479487,2900479743,2900479999,2900480255,2900480511,2900480767,2900481023,2900481279,2900482303,2900482559,2900483071,2900483327,2900483583,2900483839,2900484095,2900484607,2900484863,2900485119,2900485375,2900485631,2900486143,2900486399,2900486655,2900486911,2900487679,2900487935,2900488191,2900488447,2900488703,2900489215,2900489471,2900489727,2900490751,2900491007,2900491263,2900491519,2900491775,2900492031,2900492287,2900492543,2900494847,2900495103,2900495871,2900496383,2900496639,2900498431,2900498687,2900498943,2900499199,2900499455,2900499967,2900503039,2900503295,2900503551,2900503807,2900504063,2900504319,2900504575,2900505599,2900505855,2900506623,2900506879,2900507135,2900507391,2900508159,2900508415,2900508671,2900508927,2900510207,2900510463,2900513279,2900513535,2900515327,2900515583,2900516351,2900516863,2900517375,2900517631,2900518399,2900518655,2900518911,2900519167,2900519423,2900519679,2900519935,2900520191,2900520447,2900520703,2900520959,2900521215,2900521471,2900521727,2900521983,2900522239,2900522495,2900522751,2900523007,2900523263,2900523519,2900523775,2900524031,2900524287,2900524543,2900524799,2900525055,2900525311,2900525823,2900526079,2900526335,2900526591,2900526847,2900528127,2900528383,2900529663,2900529919,2900530175,2900530431,2900532223,2900532479,2900532735,2900532991,2900533247,2900533503,2900533759,2900534527,2900538367,2900538623,2900538879,2900539391,2900545023,2900545279,2900545535,2900545791,2900547071,2900547327,2900547583,2900547839,2900548095,2900548351,2900549631,2900549887,2900550143,2900550399,2900893695,2900901887,2900908031,2900909055,2900909311,2900909823,2900910079,2900918271,2900926463,2900934655,2900942591,2900942847,2900951039,2900958975,2900959231,2900967423,2900975615,2900983295,2901012479,2901016575,2901028863,2901030911,2901032959,2901035007,2901037055,2901041151,2901049343,2901057535,2901065727,2901082111,2901090047,2901107199,2901107711,2901108223,2901108735,2901109247,2901109759,2901110271,2901110783,2901111295,2901111807,2901112063,2901112319,2901112575,2901112831,2901114623,2901114879,2901123071,2901131263,2901138175,2901138431,2901138943,2901139455,2901142527,2901142783,2901143039,2901143295,2901143551,2901146623,2901147135,2901147391,2901147647,2901149183,2901149695,2901149951,2901150207,2901150719,2901151999,2901152255,2901152767,2901153791,2901154047,2901154303,2901154559,2901154815,2901155071,2901155839,2901157119,2901158143,2901158399,2901158655,2901159167,2901161727,2901163007,2901163263,2901163519,2901163775,2901164031,2901164543,2901164799,2901165055,2901165823,2901166335,2901166591,2901167103,2901168383,2901168895,2901169151,2901169919,2901170175,2901170687,2901171199,2901172991,2901173247,2901173503,2901174015,2901174527,2901175039,2901176063,2901176831,2901177343,2901177599,2901178879,2901179391,2901179903,2901180159,2901181695,2901182207,2901183231,2901183487,2901183999,2901184255,2901184511,2901185791,2901186559,2901187327,2901187583,2901187839,2901188095,2901188351,2901188607,2901188863,2901189375,2901189887,2901190143,2901190399,2901191167,2901191423,2901191935,2901192191,2901193471,2901194239,2901195263,2901196031,2901196543,2901196799,2901197311,2901197823,2901199103,2901199359,2901199615,2901199871,2901200127,2901200383,2901201407,2901201663,2901203199,2901203711,2901205247,2901205503,2901205759,2901206015,2901206527,2901206783,2901207039,2901207551,2901208575,2901209343,2901210367,2901210623,2901211391,2901211647,2901213439,2901213951,2901214207,2901214975,2901215231,2901215487,2901215999,2901216255,2901217023,2901217279,2901218559,2901218815,2901219071,2901219327,2901219583,2901219839,2901220095,2901220351,2901220607,2901221119,2901221631,2901222143,2901223167,2901223423,2901223679,2901224447,2901224703,2901225215,2901225471,2901225727,2901226751,2901227263,2901227775,2901228031,2901228287,2901228543,2901229567,2901229823,2901231359,2901232383,2901232639,2901232895,2901233151,2901233407,2901234175,2901234431,2901234687,2901234943,2901235711,2901235967,2901236479,2901238015,2901238271,2901238527,2901239039,2901239295,2901239551,2901239807,2901240575,2901240831,2901241855,2901242111,2901242367,2901242879,2901243135,2901243391,2901243903,2901244415,2901244671,2901244927,2901245439,2901246207,2901246463,2901247487,2901247743,2901248767,2901249279,2901250047,2901250559,2901250815,2901251327,2901251583,2901251839,2901252607,2901253119,2901253375,2901253887,2901254655,2901255423,2901255935,2901256191,2901256447,2901256959,2901257215,2901257727,2901257983,2901258239,2901258495,2901259007,2901259263,2901259775,2901260031,2901260543,2901261055,2901261567,2901261823,2901262335,2901262847,2901263359,2901263871,2901264127,2901264383,2901264895,2901265151,2901266687,2901266943,2901267199,2901267711,2901267967,2901268223,2901268479,2901268991,2901269247,2901270015,2901270527,2901271295,2901272319,2901272575,2901272831,2901274111,2901274367,2901274879,2901275903,2901276415,2901277183,2901277439,2901278975,2901279231,2901281535,2901281791,2901282047,2901282303,2901282815,2901283071,2901283327,2901283583,2901284095,2901284351,2901285375,2901285887,2901286399,2901287167,2901287935,2901288191,2901288447,2901288959,2901289983,2901290495,2901291263,2901291519,2901293055,2901293567,2901293823,2901294591,2901295615,2901295871,2901296895,2901297663,2901298431,2901298687,2901298943,2901299455,2901300991,2901301247,2901301759,2901302015,2901302527,2901302783,2901303295,2901303807,2901304063,2901304575,2901304831,2901305087,2901305343,2901305855,2901306367,2901306623,2901307391,2901307903,2901308927,2901309183,2901309951,2901310207,2901311231,2901311487,2901311743,2901311999,2901312511,2901312767,2901313023,2901313279,2901313791,2901314559,2901315839,2901316863,2901317375,2901317631,2901318143,2901318399,2901318911,2901319167,2901320191,2901320447,2901320703,2901320959,2901322495,2901322751,2901323263,2901324799,2901327615,2901327871,2901328383,2901328639,2901329151,2901329407,2901329663,2901329919,2901330175,2901330687,2901330943,2901331199,2901333759,2901334271,2901335039,2901335295,2901336319,2901336831,2901337855,2901338111,2901338623,2901339391,2901339903,2901340159,2901340415,2901340671,2901341183,2901341439,2901344511,2901344767,2901345791,2901346303,2901349887,2901350143,2901351167,2901351679,2901352447,2901352703,2901353215,2901353727,2901354239,2901354495,2901355263,2901355519,2901355775,2901356031,2901356287,2901356543,2901356799,2901357311,2901357823,2901358335,2901358591,2901358847,2901359615,2901359871,2901360895,2901361151,2901362943,2901363711,2901363967,2901364223,2901365503,2901366015,2901366527,2901367039,2901367551,2901368063,2901368831,2901369087,2901370111,2901370367,2901370879,2901371135,2901371903,2901372159,2901373183,2901373439,2901374463,2901374719,2901374975,2901375231,2901375999,2901376255,2901376511,2901376767,2901377023,2901378047,2901378559,2901379071,2901379327,2901379583,2901379839,2901380095,2901380607,2901380863,2901381119,2901381631,2901382143,2901382399,2901383167,2901383423,2901383935,2901384191,2901384703,2901384959,2901385983,2901386239,2901387007,2901387263,2901388031,2901388287,2901388799,2901390335,2901391615,2901392127,2901392383,2901392639,2901393919,2901394175,2901394431,2901394687,2901395967,2901396479,2901396735,2901396991,2901397503,2901398015,2901399039,2901399551,2901401343,2901401599,2901402111,2901402367,2901402623,2901402879,2901403135,2901403391,2901404415,2901405183,2901405439,2901405951,2901406463,2901406719,2901406975,2901407231,2901407487,2901407743,2901407999,2901408255,2901408767,2901409023,2901409279,2901409791,2901475327,2901477375,2901485567,2901486591,2901488127,2901488639,2901489663,2901491711,2901493759,2901496831,2901497855,2901530623,2901531647,2901531903,2901532159,2901532415,2901532671,2901803007,2901832703,2901834751,2901866495,2902196479,2902196735,2902196991,2902197247,2902197503,2902197759,2902200319,2902200575,2902202111,2902202367,2902208767,2902209023,2902211327,2902211583,2902219007,2902219263,2902228223,2902228479,2902230271,2902230527,2902232831,2902233087,2902236671,2902236927,2902237183,2902237439,2902237695,2902249215,2902249471,2902250751,2902251007,2902251775,2902252031,2902253567,2902253823,2902254591,2902254847,2902255103,2902255359,2902255615,2902255871,2902256127,2902258943,2902259199,2902262527,2902262783,2902263551,2902264575,2902265087,2902265343,2902265599,2902265855,2902287359,2902287615,2902311167,2902311423,2902311935,2902312191,2902312959,2902313215,2902313471,2902313983,2902314239,2902315775,2902316031,2902316799,2902317055,2902318079,2902318335,2902320639,2902320895,2902321407,2902321919,2902322431,2902322687,2902322943,2902323455,2902323711,2902324223,2902324479,2902324735,2902324991,2902392831,2902396927,2902405119,2902409215,2902417407,2902421503,2902427647,2902428415,2902428671,2902429695,2902441983,2902446079,2902450175,2902454271,2902456319,2902458367,2902461439,2902462463,2902476543,2902476799,2902477055,2902477311,2902482175,2902482431,2902507519,2902515711,2902572543,2902572799,2904555519,2904817663,2904981503,2905014271,2905038847,2905047039,2905065471,2905065983,2905079807,2905342207,2905342719,2905342975,2905343743,2905343999,2905350143,2905374719,2905375743,2905376767,2905407487,2905413631,2905413887,2905414655,2905414911,2905415167,2905415423,2905447679,2905447935,2905456639,2905464831,2905470975,2905471231,2905471999,2905472255,2905472511,2905473023,2905481215,2905495551,2905496575,2905510911,2905512959,2907918335,2907918591,2907948031,2907948543,2907948799,2907950591,2907951103,2907951359,2907951615,2907951871,2907952127,2907952383,2907952639,2907952895,2907953151,2907953407,2907953663,2907953919,2907954175,2907954431,2911006975,2911007231,2913992703,2914516991,2915105791,2915106047,2915106303,2915106559,2915172607,2915172863,2915176959,2915177215,2915185151,2915185407,2915191039,2915191295,2915196159,2915196415,2915196927,2915197183,2915197439,2915197695,2915215359,2915215615,2915216127,2915216383,2915250175,2915254271,2915262719,2915262975,2915263231,2915263487,2915264511,2915265279,2915265535,2915266559,2915516415,2915516671,2915517951,2915518463,2915520511,2915520767,2915521023,2915526911,2915527167,2915527423,2915527679,2915528191,2915528447,2915529215,2915565567,2915631103,2915811327,2915811583,2915812095,2915813887,2915814911,2915815167,2915815423,2915815679,2915815935,2915816191,2915817215,2915817727,2915817983,2915818239,2915820799,2915821055,2915821567,2915821823,2915822079,2915822847,2915823871,2915824127,2915824383,2915824639,2915824895,2915825919,2915826175,2915826431,2915826943,2915896063,2915896319,2915899647,2915899903,2915901695,2915901951,2915904255,2915904511,2915906815,2915907071,2915907327,2915907583,2915908351,2915908607,2915909375,2915909631,2915914239,2915914751,2915916287,2915916543,2915941631,2915941887,2915958783,2916024319,2916102143,2916104191,2916163583,2916171775,2916184063,2916196351,2916204543,2916204799,2916216319,2916216575,2916253695,2916286463,2916286719,2916286975,2916308479,2916308735,2916309759,2916310015,2916319231,2916335615,2916368383,2916401151,2916401407,2916401663,2916401919,2916402431,2916402687,2916402943,2916403199,2916403455,2916404991,2916405503,2916405759,2916406015,2916406271,2916406783,2916407295,2916407551,2916409855,2916410111,2916410367,2916410623,2916413183,2916413439,2916413695,2916414207,2916414463,2916414719,2916414975,2916415743,2916415999,2916416255,2916416767,2916417023,2916417535,2916435455,2916435967,2916515839,2916519935,2916530175,2916530943,2916531199,2916532735,2916532991,2916533247,2916534271,2916536319,2916540415,2916581375,2916614143,2917009407,2917011455,2917011967,2917012223,2917012735,2917012991,2917013247,2917013759,2917014015,2917015551,2917017599,2917019135,2917023743,2917027839,2917033983,2917035007,2917035519,2917036031,2917037055,2917038079,2917041151,2917041407,2917044223,2917045503,2917045759,2917046271,2917047295,2917048319,2917049087,2917049343,2917053439,2917054463,2917055487,2917056511,2917057535,2917058559,2917059583,2917061119,2917061631,2917068799,2917069823,2917070079,2917070335,2917070847,2917071103,2917071359,2917071871,2917073919,2917074175,2917078015,2917078527,2917080063,2917081087,2917082111,2917083135,2917084159,2917085183,2917086207,2917086463,2917086719,2917093375,2917097471,2917099007,2917099519,2917101567,2917103615,2917105663,2917106175,2917106431,2917106687,2917107711,2917108735,2917109759,2917113855,2917114111,2917114367,2917114623,2917114879,2917115903,2917116927,2917117951,2917125631,2917125887,2917126143,2917130239,2917131007,2917131263,2917132287,2917133055,2917133311,2917150719,2917151487,2917151743,2917154815,2917171199,2917175295,2917195775,2917203967,2917257215,2917261311,2917265407,2917267711,2917267967,2917268223,2917268479,2917268735,2917268991,2917269247,2917269503,2917449727,2917466111,2917572607,2917580799,2917621759,2917629951,2917793791,2917797887,2917799935,2917810175,2917811199,2917812223,2917814271,2917820415,2917822463,2917826559,2917828607,2917830143,2917830399,2917830655,2917928703,2917929215,2917942527,2917942783,2918006783,2918007039,2918007295,2918007551,2918014975,2918023167,2918043647,2918047743,2918051839,2918121471,2918136831,2918137087,2918154239,2918170623,2918171135,2918171647,2918171903,2918173951,2918174207,2918174463,2918174719,2918174975,2918175231,2918176511,2918176767,2918177023,2918177279,2918179839,2918180095,2918182655,2918182911,2918183167,2918183423,2918183935,2918190335,2918190847,2918232063,2918236159,2918260735,2918261759,2918262015,2918262783,2918263295,2918264831,2918277119,2918281215,2918330367,2918334463,2918363135,2918367231,2918372351,2918372607,2918373631,2918375423,2918391807,2918395903,2918399999,2918404095,2918408191,2918412287,2918416383,2918416639,2918416895,2918417663,2918418687,2918419455,2918419967,2918420223,2918432767,2918436863,2918442239,2918442495,2918457599,2918457855,2918458879,2918459135,2918460159,2918460415,2918461695,2918461951,2918462463,2918462719,2918462975,2918463487,2918464511,2918464767,2918465023,2918465279,2918465535,2918469631,2918473727,2918477823,2918481919,2918486015,2918490111,2918498815,2918499071,2918500095,2918500351,2918501887,2918502399,2918503423,2918504447,2918504959,2918505215,2918505983,2918514943,2918515199,2918533631,2918533887,2918538495,2918538751,2918555647,2918557695,2918567423,2918567679,2918568191,2918568447,2918568703,2918568959,2918570239,2918570495,2918570751,2918571007,2918580223,2918588415,2918596607,2918604799,2918608895,2918612991,2918621183,2918653951,2918662143,2918678527,2918686719,2918699007,2918703103,2918768639,2918776831,2918777087,2918777599,2918778623,2918779135,2918779647,2918779903,2918781695,2918781951,2918783487,2918783743,2918783999,2918784255,2918785023,2918785535,2918786303,2918787327,2918787583,2918787839,2918788863,2918789375,2918790143,2918790399,2918791167,2918791423,2918792959,2918793215,2918819327,2918819583,2918842367,2918875135,2918973439,2918989823,2919021311,2919021567,2919022335,2919022591,2919174143,2919178239,2919186431,2919190527,2919206911,2919207423,2919207935,2919208959,2919211007,2919214335,2919214591,2919214847,2919235583,2919759871,2921522431,2921522687,2921523199,2921523455,2921527295,2921528319,2921533951,2921534207,2921562111,2921594879,2921627647,2921628927,2921629183,2921630463,2921630975,2921631231,2921631487,2921631743,2921631999,2921633791,2921634047,2921634559,2921635071,2921636607,2921637375,2921637631,2921637887,2921638399,2921638911,2921639167,2921639423,2921640959,2921641215,2921642751,2921643007,2921644031,2925002751,2925527039,2926575615,2927099903,2927575295,2927575551,2927578111,2927578367,2927578623,2927579135,2927579647,2927580671,2927581183,2927581439,2927581695,2927582719,2927583231,2927583743,2927583999,2927584511,2927584767,2927586815,2927587327,2927588351,2927588607,2927981567,2927981823,2927982079,2927982335,2928177151,2928181247,2928197631,2928197887,2928199679,2928199935,2928200191,2928200447,2928203775,2928205823,2928207871,2928208895,2928209151,2928209407,2928209663,2928209919,2928210943,2928212479,2928212991,2928263167,2928264959,2928265215,2928273407,2928273663,2928274175,2928274431,2928279551,2928283647,2928287743,2928304127,2928305151,2928306175,2928307199,2928308223,2928309247,2928310271,2928311295,2928312319,2928316415,2928320511,2928328703,2928336895,2928338943,2928339455,2928339967,2928340223,2928340479,2928340735,2928340991,2928410623,2928427007,2928455679,2928459775,2928462847,2928463103,2928541695,2928607231,2936012799,2937847807,2937848831,2937849855,2937850879,2937851903,2937855999,2937860095,2937864191,2937880575,2937913343,2937913855,2937914111,2937917183,2937917439,2937929727,2937931519,2937931775,2937933311,2937933567,2937937919,2937939967,2937942015,2937944063,2937944319,2937944575,2937944831,2937945087,2937946111,2937948159,2937949183,2937951231,2937954303,2937964543,2937966591,2937970687,2937978879,2938109951,2938634239,2938699775,2938703871,2938704127,2938704383,2938704639,2938704895,2938707967,2938710015,2938711039,2938712063,2938713855,2938714111,2938714367,2938714623,2938714879,2938715135,2938715391,2938715903,2938716159,2938732543,2938748927,2938765311,2938961919,2938978303,2938984191,2938984447,2938985727,2938985983,2938986495,2938986751,2938988031,2938988287,2938996735,2938998783,2939002879,2939004927,2939006975,2939007999,2939009023,2939011071,2939027455,2942304255,2942566399,2942599167,2942608383,2942608639,2942608895,2942609407,2942611455,2942615551,2942615807,2942616063,2942616319,2942616831,2942617087,2942617343,2942617599,2942617855,2942619647,2942631935,2942697471,2942763007,2942767103,2942771199,2942779391,2942795775,2942959615,2942960639,2942961663,2942965759,2942967807,2942975999,2942992383,2943025151,2943041535,2943057919,2943074303,2943090687,2943221759,2943238143,2943246335,2943246591,2943247103,2943247359,2943248383,2943248639,2943248895,2943250175,2943250431,2943254527,2943287295,2943291391,2943295487,2943303679,2943309823,2943310847,2943311871,2943312127,2943312383,2943312895,2943313919,2943314943,2943317247,2943317503,2943318015,2943320063,2943324159,2943332351,2943333375,2943334399,2943335423,2943336447,2943352831,2944401407,2944925695,2945581055,2946236415,2946301951,2946367487,2946375679,2946383871,2946392063,2946393087,2946393855,2946394111,2946396159,2946400255,2946416639,2946433023,2946498559,2947547135,2947579903,2947583999,2947586047,2947587071,2947588095,2947590143,2947590655,2947592191,2947593215,2947594239,2947595263,2947596287,2947596543,2947596799,2947597055,2947597311,2947598335,2947602431,2947603455,2947604479,2947604735,2947607039,2947607295,2947609599,2947609855,2947610111,2947611647,2947612671,2947678207,2947743743,2947809279,2948071423,2948104191,2948120575,2948128767,2948132863,2948134911,2948135935,2948136959,2948595711,2952790015,2953314303,2953379839,2953445375,2953449471,2953453567,2953455615,2953457663,2953459711,2953461759,2953465855,2953466879,2953467135,2953467903,2953469951,2953478143,2953510911,2953576447,2953592831,2953596927,2953598975,2953601023,2953603071,2953603327,2953603583,2953605119,2953609215,2953707519,2953838591,2954100735,2954133503,2954149887,2954362879,2954625023,2954626559,2954626815,2954627071,2954631167,2954635263,2954639359,2954640895,2954641151,2954641407,2954643455,2954645503,2954647551,2954657791,2954756095,2954821631,2954826751,2954827007,2954863615,2954863871,2954864895,2954865151,2954887167,2954891263,2954895359,2954897407,2954899455,2954901503,2954903551,2954911743,2954913791,2954915839,2954918911,2954919167,2954919423,2954919935,2954928127,2954932223,2954936319,2954938367,2954940415,2954944511,2954946559,2954948095,2954948351,2954948607,2954950655,2954951167,2954951935,2954952703,2955018239,2955034623,2955083775,2955149311,2955411455,2955673599,2955804671,2955837439,2955837695,2955838207,2955838463,2955839487,2955839743,2955839999,2955840511,2955840767,2955841023,2955843071,2955843327,2955844351,2955844607,2955844863,2955845375,2955845631,2955853823,2955870207,2955935743,2956230655,2956238847,2956241151,2956242943,2956243967,2956244991,2956245247,2956245503,2956245759,2956246015,2956247039,2956251135,2956253183,2956255231,2956259327,2956261375,2956263423,2956296191,2956297215,2956297471,2956297727,2956297983,2956298239,2956299263,2956300287,2956300543,2956300799,2956301055,2956301311,2956303359,2956304383,2956305407,2956306431,2956307455,2956308479,2956308735,2956308991,2956309247,2956309503,2956310527,2956311039,2956311551,2956312575,2956328959,2956460031,2956468479,2956468735,2956469503,2956469759,2956470015,2956470271,2956471295,2956472319,2956474367,2956476415,2956492799,2956496895,2956500991,2956501247,2956503039,2956504063,2956504319,2956504575,2956504831,2956505087,2956506111,2956506623,2956508159,2956508415,2956508671,2956509183,2956517375,2956521471,2956525567,2956533759,2956535807,2956537855,2956538111,2956538623,2956538879,2956539647,2956539903,2956540671,2956540927,2956541183,2956541951,2956542975,2956543999,2956546047,2956548095,2956548607,2956548863,2956549119,2956550143,2956554239,2956558335,2956560127,2956560383,2956562175,2956562431,2956567807,2956568063,2956571135,2956571391,2956572927,2956573183,2956573439,2956574207,2956574463,2956574719,2956576767,2956578815,2956579839,2956580095,2956582143,2956582399,2956582911,2956587007,2956589055,2956593151,2956595199,2956597247,2956599295,2956607487,2956611583,2956613631,2956613887,2956614143,2956614399,2956614911,2956615167,2956615423,2956615679,2956623871,2956656639,2956722175,2956787711,2956820479,2956822527,2956823807,2956824063,2956824575,2956826623,2956828671,2956836863,2956853247,2956865535,2956869631,2956886015,2956888063,2956890111,2956892159,2956894207,2956898303,2956902399,2956904447,2956906495,2956908543,2956910591,2956914687,2956918783,2956984319,2957049855,2957058047,2957066239,2957068287,2957070335,2957074431,2957082623,2957083391,2957083647,2957090815,2957115391,2957180927,2957189119,2957193215,2957195263,2957197311,2957201407,2957201919,2957202175,2957202431,2957202687,2957202943,2957203199,2957203455,2957204223,2957204479,2957204735,2957205503,2957213695,2957221887,2957223935,2957224191,2957228031,2957230079,2957238271,2957240319,2957242367,2957244415,2957246463,2957508607,2957574143,2957639679,2957639935,2957640191,2957640447,2957640703,2957641471,2957641727,2957643775,2957647871,2957649919,2957651967,2957654015,2957656063,2957672447,2957680639,2957688831,2957689087,2957690879,2957692927,2957694975,2957697023,2957705215,2957770751,2957836287,2957869055,2957901823,2958032895,2958557183,2958819327,2958870527,2958884863,2958950399,2959081471,2959089663,2959093759,2959095807,2959097855,2959099903,2959101951,2959103999,2959105023,2959105279,2959105535,2959105791,2959106047,2959114239,2959115263,2959116287,2959117311,2959117823,2959118079,2959118335,2959120383,2959122431,2959126527,2959127551,2959128575,2959130623,2959138815,2959139071,2959139327,2959139583,2959139839,2959142655,2959142911,2959143167,2959143423,2959143679,2959143935,2959145215,2959145471,2959146495,2959146751,2959147007,2959149055,2959151103,2959155199,2959159295,2959161343,2959163391,2959163903,2959164415,2959164927,2959165439,2959165695,2959165951,2959166207,2959166463,2959166719,2959166975,2959167231,2959167487,2959171583,2959175679,2959179775,2959181823,2959183871,2959184895,2959185919,2959186943,2959187455,2959187711,2959187967,2959196159,2959196415,2959196927,2959197439,2959197695,2959197951,2959198207,2959198463,2959198719,2959198975,2959199487,2959199743,2959199999,2959200255,2959200511,2959200767,2959201023,2959201791,2959202047,2959202303,2959202559,2959202815,2959203071,2959203327,2959203583,2959204351,2959208447,2959210495,2959212543,2959220735,2959221759,2959222783,2959223807,2959224831,2959226879,2959228927,2959237119,2959241215,2959245311,2959253503,2959255551,2959261695,2959265791,2959269887,2959275007,2959278079,2959282175,2959286271,2959290367,2959292415,2959302655,2959310847,2959343615,2959351807,2959353855,2959354111,2959354367,2959354623,2959354879,2959355135,2959355391,2959355647,2959355903,2959357951,2959376383,2959377919,2959378431,2959378943,2959379199,2959379967,2959380223,2959381247,2959381503,2959382271,2959382527,2959382783,2959383039,2959383551,2959383807,2959384575,2959392767,2959394815,2959398911,2959400959,2959405055,2959409151,2959413247,2959417343,2959423487,2959423743,2959423999,2959424255,2959424511,2959424767,2959425023,2959425279,2959425535,2959427583,2959429631,2959431679,2959441919,2959446015,2959450111,2959452159,2959452415,2959452671,2959452927,2959453183,2959454207,2959456255,2959457279,2959458303,2959466495,2959482879,2959491071,2959492095,2959493119,2959495167,2959499263,2959505407,2959507455,2959515647,2959517695,2959519743,2959523839,2959532031,2959540223,2959548415,2959552511,2959556095,2959556607,2959558655,2959560703,2959568895,2959570943,2959571455,2959571967,2959572991,2959581183,2959585279,2959591423,2959593471,2959594495,2959595519,2959596031,2959596287,2959596543,2959597055,2959597311,2959597567,2959598591,2959599615,2959600639,2959601663,2959603711,2959605759,2959622143,2959630335,2959632383,2959634431,2959636479,2959648767,2959650815,2959652863,2959654911,2959663103,2959667199,2959704063,2959708159,2959709183,2959710207,2959712255,2959728639,2959729151,2959729407,2959729663,2959730175,2959730431,2959730687,2959730943,2959731199,2959731455,2959731711,2959732735,2959733759,2959734015,2959734271,2959734527,2959735807,2959736063,2959736319,2959736575,2959736831,2959738879,2959745023,2959747071,2959749119,2959753215,2959761407,2959763455,2959765503,2959767551,2959769599,2959771647,2959773695,2959777791,2959783935,2959785983,2959794175,2959796223,2959806463,2959810559,2959814655,2959818751,2959820799,2959822847,2959824895,2959826943,2959828991,2959833087,2959835135,2959839231,2959843327,2959845375,2959847423,2959853567,2959867903,2959876095,2959880191,2959882239,2959884287,2959892479,2959900671,2959902719,2959904767,2959915007,2959917055,2959925247,2959927295,2959929343,2959935487,2959937535,2959945727,2959947775,2959949823,2959966207,2959968255,2959970303,2959974399,2959976447,2959982591,2959990783,2960015359,2960023551,2960024575,2960024831,2960025087,2960025599,2960025855,2960026111,2960026367,2960026623,2960026879,2960027135,2960027391,2960027647,2960028159,2960028671,2960029183,2960029439,2960029695,2960030719,2960031487,2960035839,2960039935,2960054271,2960056319,2960064511,2960065023,2960065279,2960066559,2960068607,2960072703,2960077823,2960078079,2960078335,2960078847,2960079103,2960080895,2960091135,2960093183,2960105471,2960106495,2960107519,2960108543,2960108799,2960109055,2960109311,2960109567,2960113663,2960117759,2960119807,2960121855,2960125951,2960126975,2960127231,2960127487,2960127743,2960127999,2960130047,2960138239,2960148479,2960150527,2960151551,2960152575,2960158719,2960160767,2960162815,2960166911,2960171007,2960175103,2960179199,2960205823,2960206335,2960206847,2960207103,2960207359,2960207615,2960207871,2960211967,2960212991,2960214015,2960214527,2960214783,2960215039,2960215807,2960216063,2960217087,2960218111,2960219135,2960219647,2960219903,2960220159,2960220671,2960220927,2960221183,2960222207,2960223231,2960224255,2960224767,2960225279,2960225535,2960225791,2960226047,2960228351,2960232447,2960240639,2960241663,2960242687,2960244735,2960248831,2960265215,2960275455,2960277503,2960282623,2960284415,2960284671,2960285695,2960287487,2960289791,2960320511,2960322559,2960326655,2960334847,2960347135,2960349183,2960351231,2960353279,2960369663,2960371711,2960373759,2960375807,2960383999,2960386047,2960387071,2960388095,2960392191,2960392447,2960392703,2960392959,2960393215,2960393471,2960393727,2960393983,2960394239,2960394495,2960394751,2960395007,2960395263,2960395519,2960395775,2960396031,2960396287,2960396543,2960396799,2960397055,2960397311,2960397567,2960397823,2960398079,2960398335,2960398591,2960398847,2960399103,2960399359,2960399615,2960399871,2960400127,2960400383,2960404479,2960408575,2960416767,2960421887,2960422911,2960423679,2960423935,2960424447,2960424703,2960424959,2960427007,2960429055,2960429311,2960429567,2960430079,2960431103,2960433151,2960441343,2960443391,2960445439,2960449535,2960450559,2960450815,2960451583,2960452607,2960452863,2960453119,2960453631,2960472063,2960472319,2960473343,2960473599,2960474111,2960475135,2960475647,2960476159,2960477183,2960477695,2960478207,2960479231,2960480255,2960482303,2960484351,2960486399,2960498687,2960506879,2960524287,2960525311,2960531711,2960531967,2960532223,2960532479,2960532735,2960532991,2960533247,2960533503,2960537599,2960539647,2960543743,2960545791,2960546815,2960547839,2960551935,2960558079,2960560127,2960562175,2960564223,2960565247,2960566015,2960566271,2960567295,2960568319,2960568831,2960569343,2960570367,2960571391,2960572415,2960572671,2960572927,2960573183,2960573439,2960573951,2960574207,2960574463,2960576511,2960588799,2960590847,2960592895,2960594943,2960596991,2960605183,2960621567,2960622591,2960623615,2960624639,2960625663,2960625919,2960626175,2960626431,2960626687,2960627711,2960628735,2960637951,2960638207,2960638463,2960638719,2960638975,2960639231,2960639487,2960639743,2960639999,2960640255,2960640767,2960641023,2960641279,2960641535,2960642047,2960642303,2960642815,2960643071,2960643327,2960643583,2960643839,2960644095,2960644351,2960644607,2960644863,2960645119,2960645375,2960645631,2960645887,2960646143,2960648191,2960650239,2960652287,2960654335,2960658431,2960660479,2960662527,2960670719,2960670975,2960671231,2960671487,2960671743,2960672767,2960673023,2960673279,2960673535,2960673791,2960678911,2960685055,2960687103,2960695295,2960697343,2960699391,2960719871,2960722431,2960722687,2960723455,2960723711,2960723967,2960726015,2960728063,2960732159,2960733183,2960734207,2960735231,2960736255,2960738303,2960740351,2960742399,2960744447,2960747519,2960748543,2960752639,2960772863,2960773119,2960777215,2960789503,2960793599,2960797695,2960805887,2960807935,2960818175,2960834559,2960835071,2960835583,2960836351,2960836607,2960838655,2960839167,2960839679,2960848383,2960848639,2960850943,2960854015,2960855039,2960859135,2960863231,2960863487,2960863743,2960863999,2960864255,2960864767,2960865279,2960865535,2960865791,2960866303,2960866815,2960867071,2960867327,2960883711,2960895999,2960898047,2960899071,2960900095,2960904191,2960906239,2960907263,2960907775,2960908031,2960908287,2960916479,2960924671,2960924927,2960925183,2960925695,2960926719,2960927743,2960928767,2960929791,2960930815,2960931839,2960932863,2960933887,2960934655,2960934911,2960936959,2960941055,2960943103,2960945151,2960945663,2960945919,2960946175,2960949247,2960951295,2960951807,2960952319,2960953343,2960954367,2960954623,2960954879,2960960511,2960962047,2960962303,2960963327,2960963583,2960964607,2960965119,2960965375,2960965631,2960967167,2960972799,2960973055,2960973311,2960973567,2960973823,2960974335,2960974847,2960977919,2960979455,2960979711,2960979967,2960980223,2960980479,2960980991,2960981247,2960982015,2960990207,2960998399,2961039359,2961040383,2961040639,2961040895,2961041151,2961041407,2961042431,2961043455,2961044479,2961045503,2961045759,2961046015,2961046271,2961046783,2961047039,2961047295,2961047551,2961057023,2961057279,2961057535,2961057791,2961061887,2961062911,2961063935,2961064447,2961064703,2961064959,2961065471,2961065727,2961067519,2961067775,2961068799,2961069055,2961069311,2961069567,2961069823,2961070079,2961072127,2961072383,2961072639,2961072895,2961073151,2961073407,2961073663,2961073919,2961074431,2961074687,2961074943,2961075199,2961075455,2961075711,2961075967,2961076223,2961076479,2961076735,2961076991,2961077247,2961077759,2961078015,2961078271,2961078527,2961078783,2961079039,2961079295,2961079551,2961079807,2961080063,2961080319,2961088511,2961088767,2961089023,2961089279,2961089535,2961090559,2961090815,2961091583,2961091839,2961092095,2961092351,2961092607,2961096703,2961097471,2961097727,2961098239,2961098751,2961099775,2961100031,2961100287,2961100799,2961102847,2961103871,2961104383,2961104639,2961104895,2961106943,2961107967,2961108991,2961111039,2961112063,2961113087,2961178623,2965372927,2965766143,2965897215,2966028287,2966159359,2966290431,2966421503,2966945791,2967273471,2967277567,2967278591,2967279615,2967280127,2967280639,2967281151,2967281663,2967283711,2967285503,2967285759,2967287807,2967289855,2967291903,2967293951,2967295999,2967298047,2967306239,2967339007,2967343103,2967345151,2967347199,2967351295,2967352319,2967353343,2967353855,2967354111,2967354367,2967355391,2967363583,2967367167,2967367423,2967369727,2967369983,2967370239,2967371519,2967371775,2967388159,2967392255,2967394303,2967396351,2967398399,2967400447,2967404543,2967420927,2967421183,2967421439,2967421695,2967421951,2967422975,2967425023,2967427071,2967429119,2967430143,2967431167,2967432191,2967432447,2967432703,2967432959,2967433727,2967434239,2967435007,2967435263,2967437311,2967441407,2967445503,2967445759,2967446015,2967446271,2967446527,2967446783,2967447039,2967448575,2967449087,2967449599,2967450623,2967450879,2967451647,2967452671,2967452927,2967453183,2967453439,2967453695,2967470079,2967601151,2967633919,2967666687,2967699455,2967699711,2967699967,2967700223,2967700479,2967700735,2967700991,2967702015,2967702527,2967703551,2967707647,2967709695,2967710207,2967711743,2967715839,2967724031,2967728127,2967728383,2967728639,2967728895,2967729151,2967730175,2967732223,2967994367,2968584191,2968600575,2968602623,2968604671,2968608767,2968610815,2968612863,2968613375,2968613631,2968613887,2968614143,2968614911,2968616959,2968625151,2968629247,2968631295,2968633343,2968643583,2968645631,2968647679,2968649727,2969042943,2969567231,2970108927,2970109183,2970109951,2970111999,2970269695,2970270719,2970271743,2970343423,2970344447,2970353151,2970353663,2970376191,2970377215,2970408959,2970409983,2971074047,2971074559,2971107327,2971108351,2972001279,2972003327,2972414207,2972414463,2972417279,2972417535,2973031679,2973031935,2973071359,2973072383,2973079551,2973080575,2973094911,2973095935,2974022143,2974022399,2974244863,2974245887,2974390271,2974391295,2974392319,2974416383,2974416895,2974442495,2974443519,2974468095,2974469119,2974470143,2975239679,2975239935,2975332863,2975333375,2975594495,2975596543,2975662079,2975670271,2975678463,2975697919,2975698431,2975698687,2975698943,2977715199,2977716223,2977794047,2977795071,2977832959,2977833983,2977834239,2977834751,2977835007,2977837055,2977838079,2977839103,2977984511,2977985535,2977988607,2977989631,2978007551,2978008063,2978501631,2978502655,2979540991,2979542015,2981637375,2981637631,2981648383,2981649407,2981650431,2982734335,2982735359,2982735871,2984086527,2984087039,2984087551,2984088575,2984124415,2984132607,2984140799,2984148991,2984247295,2984935423,2984936447,2984937471,2984937983,2984938495,2984938751,2984939519,2984951807,2984968191,2985033727,2985951231,2986082303,2986344447,2987393023,2987397119,2987401215,2987405311,2987409407,2987413503,2987417599,2987425791,2987426815,2987427839,2987428863,2987429887,2987433215,2987433471,2987433983,2987438079,2987442175,2987446271,2987450367,2987452415,2987453439,2987454463,2987458559,2987462655,2987466751,2987470847,2987474943,2987479039,2987487231,2987491327,2987495423,2987499519,2987503615,2987511807,2987513855,2987514879,2987515903,2987519487,2987519999,2987524095,2987528191,2987531775,2987532287,2987536383,2987540479,2987544575,2987548671,2987552767,2987556863,2987560959,2987565055,2987569151,2987573247,2987577343,2987581439,2987582975,2987583487,2987585535,2987589631,2987593727,2987597823,2987601919,2987606015,2987614207,2987618303,2987622399,2987626495,2987634687,2987638783,2987642879,2987651071,2987655167,2987659263,2987661311,2987662335,2987663359,2987665407,2987667455,2987669503,2987671551,2987673599,2987675647,2987677695,2987681791,2987682815,2987683839,2987685887,2987687935,2987689983,2987692031,2987694079,2987696127,2987698175,2987700223,2987702271,2987704319,2987706367,2987707391,2987707647,2987708415,2987708671,2987709439,2987709695,2987709951,2987710207,2987710463,2987712511,2987714559,2987716607,2987718655,2987720703,2987722751,2987724799,2987726847,2987728895,2987730943,2987732991,2987735039,2987737087,2987739135,2987743231,2987745279,2987747327,2987749375,2987751423,2987753471,2987755519,2987757567,2987759615,2987761663,2987763711,2987765759,2987767807,2987769855,2987771903,2987773951,2987774207,2987774719,2987774975,2987775231,2987775487,2987775999,2987778047,2987780095,2987782143,2987784191,2987786239,2987788287,2987788799,2987789311,2987789567,2987789823,2987790079,2987790335,2987792383,2987792639,2987792895,2987793151,2987793407,2987793663,2987794175,2987794431,2987796479,2987800575,2987802623,2987804671,2987806719,2987808767,2987810815,2987812863,2987814911,2987816959,2987819007,2987821055,2987823103,2987827199,2987829247,2987831295,2987833343,2987835391,2987837439,2987839487,2987841535,2987843583,2987845631,2987847679,2987849727,2987851775,2987853823,2987855871,2987857919,2987859967,2987862015,2987864063,2987866111,2987868159,2987870207,2987872255,2987874303,2987876351,2987878399,2987880447,2987882495,2987884543,2987886591,2987888639,2987890687,2987892735,2987894783,2987896831,2987898879,2987899135,2987899391,2987899647,2987899903,2987900159,2987900415,2987900671,2987900927,2987902975,2987905023,2987907071,2987909119,2987911167,2987913215,2987915263,2987917311,2988179455,2988441599,2988453887,2988457983,2988490495,2988490751,2988492799,2988494847,2988515327,2988517375,2988519423,2988521471,2988530431,2988530687,2988539903,2988540159,2988572671,2988611583,2988613631,2988617727,2988621823,2988703743,2988834815,2988965887,2989096959,2989228031,2989490175,2989555711,2989621247,2989752319,2989817855,2989883391,2989948927,2990014463,2990079999,2990096639,2990097407,2990097663,2990112767,2990129151,2990145535,2990211071,2990276607,2990342143,2990407679,2990440447,2990473215,2990538751,2991063039,2991067135,2991069183,2991071231,2991079423,2991095807,2991112191,2991128575,2991144959,2991161343,2991177727,2991185151,2991185407,2991185663,2991185919,2991194111,2991210495,2991243263,2991259647,2991292415,2991308799,2991325183,2991341567,2991357951,2991374335,2991390719,2991407103,2991411199,2991415295,2991417343,2991423487,2991439871,2991456255,2991472639,2991489023,2991505407,2991521791,2991538175,2991554559,2991570943,2991571455,2991571967,2991573759,2991574527,2991574783,2991575039,2991575551,2991576063,2991576575,2991577087,2991577599,2991578111,2991578623,2991578879,2991579135,2991579647,2991580159,2991581183,2991582207,2991583231,2991585279,2991587327,2991718399,2991849471,2991980543,2992111615,2992373759,2992635903,2993684479,2993946623,2994208767,2994733055,2994737151,2994741247,2994745343,2994749439,2994753535,2994765823,2994767871,2994769919,2994774015,2994778111,2994782207,2994786303,2994790399,2994794495,2994798591,2994868223,2994868735,2994868991,2994870015,2994870271,2994874367,2994875391,2994875903,2994876415,2994876927,2994878207,2994879231,2994880255,2994880511,2994896895,2994897663,2994898431,2994900991,2994913279,2994929663,2994995199,2994997247,2994999295,2995003391,2995007487,2995009535,2995010559,2995011583,2995013631,2995015679,2995017727,2995019775,2995021823,2995022079,2995022335,2995022847,2995023359,2995023871,2995044351,2995046399,2995048447,2995050495,2995052543,2995056639,2995058687,2995060735,2995126271,2995191807,2995257343,2995388415,2995453951,2995519487,2995650559,2995716095,2995781631,2995912703,2996043775,2996174847,2996305919,2996436991,2996469759,2996471039,2996471295,2996473855,2996474623,2996479999,2996480255,2996483583,2996483839,2996535295,2996568063,2996600831,2996633599,2996634111,2996634623,2996635647,2996637695,2996638207,2996641791,2996643839,2996645887,2996646911,2996649983,2996652031,2996653055,2996653311,2996654079,2996654591,2996654847,2996655103,2996656127,2996656639,2996657151,2996657407,2996657663,2996657919,2996658175,2996659199,2996659455,2996659711,2996660223,2996661247,2996661503,2996661759,2996662015,2996662271,2996665343,2996665599,2996665855,2996666111,2996666367,2996682751,2996699135,2996732415,2996732671,2996748287,2996764671,2996768767,2996773375,2996773631,2996773887,2996774143,2996774399,2996774911,2996775423,2996775935,2996776959,2996781055,2996785151,2996789247,2996797439,2996801535,2996802047,2996802303,2996802559,2996805631,2996809727,2996813823,2996817919,2996826111,2996828159,2996830207,2996862975,2996879359,2996895743,2996928511,2996994047,2997010431,2997026815,2997059583,2997092351,2997125119,2997157887,2997190655,2997222399,2997223423,2997256191,2997321727,2997354495,2997387263,2997420031,2997428223,2997452799,2997485567,2997518335,2997519359,2997520383,2997520639,2997520895,2997521151,2997521407,2997521663,2997521919,2997522175,2997522431,2997523199,2997523455,2997525503,2997526527,2997527551,2997529599,2997529855,2997532159,2997533183,2997536511,2997538303,2997539327,2997541119,2997542143,2997542399,2997545983,2997546239,2997546495,2997547519,2997551103,2997555199,2997556223,2997556735,2997556991,2997557247,2997559295,2997560319,2997560575,2997560831,2997561087,2997561343,2997561855,2997562367,2997562879,2997563391,2997564415,2997564927,2997565439,2997565695,2997565951,2997566463,2997567487,2997567999,2997568511,2997568767,2997569023,2997569279,2997569535,2997570559,2997571071,2997571583,2997572095,2997572607,2997573119,2997573375,2997573631,2997574143,2997574655,2997575167,2997575423,2997575679,2997576703,2997576959,2997577215,2997577471,2997577727,2997577983,2997578239,2997578751,2997579263,2997579775,2997581311,2997581567,2997581823,2997582335,2997582591,2997582847,2997583871,2997616639,2997649407,2997682175,2997713919,2997714943,2997739519,2997740543,2997741567,2997742591,2997743615,2997743871,2997744639,2997745663,2997745919,2997746175,2997747199,2997747711,2997780479,2997813247,2997846015,2997858303,2997859327,2997859839,2997860095,2997860351,2997878783,2998140927,2998403071,2998665215,2998927359,2999451647,2999713791,2999975935,2999984127,2999988991,2999989247,2999992319,2999993343,2999994367,2999999487,2999999743,2999999999,3000000255,3000000511,3000008703,3000016895,3000021503,3000022015,3000022527,3000022783,3000025087,3000033279,3000041471,3000049663,3000057855,3000061951,3000063999,3000074239,3000082431,3000090623,3000131583,3000139775,3000147967,3000153599,3000154111,3000156159,3000164351,3000167167,3000167423,3000171007,3000171263,3000171775,3000172031,3000172543,3000180735,3000188927,3000197119,3000205311,3000205567,3000205823,3000206079,3000206335,3000206591,3000206847,3000207103,3000207359,3000207871,3000208127,3000208383,3000208639,3000208895,3000209151,3000209407,3000209663,3000209919,3000210175,3000210431,3000210687,3000210943,3000211199,3000211455,3000211711,3000211967,3000212223,3000212479,3000212735,3000212991,3000213247,3000213503,3000221695,3000229887,3000238079,3000240127,3000242175,3000244223,3000246271,3000246527,3000247039,3000247295,3000248319,3000252415,3000252927,3000254463,3000256511,3000256767,3000257023,3000257279,3000257535,3000257791,3000258047,3000258303,3000258559,3000260607,3000260863,3000261887,3000262143,3000262655,3000266751,3000268799,3000270847,3000272895,3000273151,3000273407,3000273663,3000273919,3000274175,3000274687,3000274943,3000283135,3000285183,3000287231,3000289279,3000289791,3000290047,3000290303,3000290559,3000290815,3000291327,3000293375,3000295423,3000295679,3000295935,3000296191,3000296447,3000296703,3000296959,3000297215,3000297471,3000299519,3000301567,3000302591,3000303103,3000303359,3000303615,3000305663,3000313855,3000315903,3000317951,3000319999,3000322047,3000322303,3000322559,3000322815,3000323071,3000323583,3000326143,3000330239,3000334335,3000336383,3000338431,3000340479,3000342527,3000344575,3000346623,3000348671,3000349695,3000350207,3000350719,3000352767,3000358911,3000360959,3000363007,3000365055,3000369151,3000377343,3000385535,3000393727,3000401919,3000410111,3000426495,3000434687,3000451071,3000467455,3000471551,3000475647,3000483839,3000487935,3000492031,3000492287,3000492543,3000492799,3000493055,3000494079,3000495103,3000495359,3000495615,3000495871,3000496127,3000504319,3000506367,3000508415,3000510463,3000512511,3000513535,3000513791,3000514047,3000514303,3000514559,3000516607,3000520703,3000522751,3000524799,3000526847,3000528895,3000530943,3000532991,3000535039,3000537087,3000539135,3000543231,3000544255,3000545023,3000545279,3000547327,3000549375,3000551423,3000553471,3000555519,3000557567,3000561663,3000562687,3000562943,3000563199,3000563455,3000563711,3000565759,3000567807,3000569855,3000571903,3000573951,3000575999,3000586239,3000588287,3000589311,3000589567,3000589823,3000590335,3000591871,3000592127,3000594431,3000596479,3000598527,3000600575,3000602623,3000604671,3000608767,3000610815,3000612863,3000616959,3000619007,3000621055,3000623103,3000625151,3000625407,3000625663,3000625919,3000626175,3000627199,3000629247,3000631295,3000647679,3000651775,3000664063,3000668159,3000668415,3000669183,3000670207,3000671231,3000672255,3000676351,3000680447,3000680703,3000680959,3000681215,3000682495,3000684543,3000688639,3000692735,3000693759,3000694783,3000695807,3000696831,3000698879,3000699135,3000700415,3000700671,3000700927,3000705023,3000709119,3000713215,3000713983,3000714239,3000717311,3000721407,3000733695,3000736255,3000736767,3000737279,3000737791,3000741887,3000754175,3000758271,3000762367,3001024511,3001548799,3001614335,3001679871,3001745407,3001810943,3001815039,3001819135,3001820159,3001820671,3001821183,3001823231,3001827327,3001831423,3001835519,3001839615,3001843711,3001847807,3001851903,3001855999,3001857023,3001857279,3001858303,3001860095,3001861119,3001862143,3001863167,3001864191,3001868287,3001868799,3001869055,3001869311,3001870335,3001870591,3001870847,3001871103,3001871359,3001871871,3001872383,3001873151,3001873663,3001873919,3001874431,3001875711,3001876223,3001876479,3001880575,3001883647,3001883903,3001884671,3001884927,3001885439,3001886463,3001888767,3001889791,3001890815,3001891071,3001891327,3001891839,3001892863,3001896959,3001901055,3001905151,3001909247,3001917439,3001919487,3001919999,3001920255,3001920511,3001921535,3001929727,3001933823,3001937919,3001942015,3001943039,3001944063,3001944319,3001945087,3001946111,3001950207,3001954303,3001958399,3001962495,3001966591,3001970687,3001974783,3001982975,3001987071,3001991167,3001995263,3001999359,3002003455,3002011647,3002012671,3002013183,3002013695,3002014719,3002015231,3002015743,3002019839,3002021887,3002022399,3002023935,3002028031,3002036223,3002040319,3002044415,3002048511,3002049791,3002050047,3002050303,3002050559,3002051839,3002052095,3002052607,3002056703,3002057727,3002057983,3002058239,3002058495,3002058751,3002059775,3002060031,3002060287,3002060799,3002064895,3002068991,3002073087,3002597375,3002599423,3002601471,3002603519,3002605567,3002607615,3002609663,3002609919,3002610175,3002610687,3002611455,3002611711,3002613759,3002615807,3002616063,3002616319,3002616575,3002616831,3002617087,3002617343,3002617599,3002617855,3002619903,3002621951,3002623999,3002626047,3002628095,3002630143,3002632191,3002634239,3002636287,3002638335,3002640383,3002642431,3002644479,3002648575,3002650623,3002652671,3002654719,3002656767,3002658815,3002660863,3002662911,3002664959,3002667007,3002669055,3002671103,3002673151,3002675199,3002677247,3002683391,3002685439,3002687487,3002688511,3002689535,3002689791,3002690047,3002690303,3002690559,3002690815,3002691071,3002691327,3002691583,3002693631,3002695679,3002697727,3002698239,3002698751,3002699007,3002699263,3002699775,3002701823,3002703871,3002706175,3002706431,3002707967,3002710015,3002712063,3002714111,3002716159,3002716415,3002716671,3002716927,3002717183,3002717439,3002717695,3002717951,3002718207,3002722303,3002724351,3002726399,3002728447,3002730495,3002732543,3002734591,3002736639,3002738687,3002740735,3002742783,3002743039,3002743551,3002743807,3002744063,3002744831,3002746879,3002748927,3002750975,3002753023,3002755071,3002757119,3002759167,3002761215,3002763263,3002765311,3002767359,3002769407,3002773503,3002775551,3002776575,3002776831,3002777087,3002777599,3002779647,3002781695,3002783743,3002785791,3002789887,3002791935,3002793983,3002796031,3002798079,3002799103,3002800127,3002802175,3002804223,3002806271,3002808319,3002810367,3002812415,3002814463,3002816511,3002818559,3002820607,3002822655,3002824703,3002825727,3002825983,3002826495,3002826751,3002828799,3002830847,3002834943,3002835199,3002835455,3002836991,3002841087,3002843135,3002845183,3002847231,3002849279,3002851327,3002853375,3002855423,3002857471,3002859519,3002875903,3002892287,3002908671,3002925055,3002927103,3002928127,3002928639,3002929151,3002929407,3002930687,3002931199,3002931711,3002932223,3002932991,3002933247,3002933503,3002933759,3002934783,3002935295,3002936319,3002936831,3002937343,3002938367,3002938879,3002939135,3002939391,3002941439,3002957823,3002974207,3002980095,3002980351,3002985727,3002985983,3002987263,3002987519,3002990591,3003006975,3003023359,3003038207,3003038463,3003039743,3003056127,3003058175,3003058431,3003058687,3003058943,3003059199,3003059711,3003059967,3003060223,3003062271,3003064319,3003066367,3003068415,3003070463,3003074559,3003076607,3003080703,3003082751,3003084799,3003085823,3003086847,3003088895,3003090943,3003092991,3003095039,3003095295,3003095551,3003095807,3003096063,3003097087,3003099135,3003101183,3003103231,3003105279,3003107327,3003107583,3003108095,3003109375,3003111423,3003111679,3003111935,3003112191,3003112447,3003112703,3003112959,3003113215,3003113471,3003115519,3003117567,3003118079,3003118335,3003118591,3003119615,3003121663,3003122175,3003122687,3003123711,3003123967,3003124479,3003124735,3003125247,3003125503,3003125759,3003126783,3003127807,3003128063,3003128319,3003128575,3003128831,3003129087,3003129343,3003129599,3003129855,3003131903,3003132927,3003146239,3003147263,3003148287,3003149311,3003154687,3003154943,3003159039,3003159295,3003160575,3003160831,3003161087,3003161343,3003161599,3003162623,3003167743,3003169791,3003170815,3003171071,3003171327,3003171839,3003172863,3003173375,3003173631,3003173887,3003174143,3003174399,3003174911,3003179007,3003187199,3003205631,3003205887,3003224063,3003228159,3003232255,3003252735,3003449343,3003514879,3003645951,3003777023,3003908095,3004170239,3004301311,3004432383,3004694527,3005218815,3005349887,3005480959,3005874175,3005887999,3005888511,3005893631,3005894143,3005894655,3005895679,3005898239,3005898751,3005915135,3005918207,3005919231,3005923327,3005939711,3005940735,3005943039,3005943807,3005956095,3005960191,3005964031,3005964287,3005965311,3005966335,3005968383,3005972479,3005988863,3006005247,3006267391,3006280703,3006281727,3006303231,3006304255,3006330879,3006331903,3006332927,3006336767,3006337023,3006349311,3006351359,3006353407,3006357503,3006361599,3006363647,3006365695,3006372863,3006373887,3006374911,3006375935,3006376959,3006384127,3006385151,3006386175,3006387199,3006390271,3006392319,3006393343,3006394367,3006398463,3006431231,3006463999,3006480383,3006484479,3006488575,3006496767,3006498815,3006500863,3006501887,3006504959,3006505983,3006507007,3006508031,3006515199,3006516479,3006516735,3006516991,3006517247,3006518271,3006519295,3006521343,3006527487,3006528511,3006529535,3006660607,3006791679,3006922751,3007053823,3007062015,3007066111,3007070207,3007078399,3007082495,3007086591,3007088639,3007089663,3007090687,3007090943,3007091199,3007091455,3007091711,3007091967,3007092223,3007092479,3007092735,3007094783,3007096831,3007098111,3007098367,3007098623,3007098879,3007100927,3007102975,3007103743,3007103999,3007106047,3007107071,3007108095,3007109119,3007111167,3007112191,3007115263,3007116287,3007117311,3007122431,3007122943,3007123199,3007123455,3007127551,3007135743,3007143935,3007148031,3007152127,3007152383,3007152639,3007153919,3007154175,3007154687,3007154943,3007155199,3007155967,3007156223,3007156735,3007156991,3007157503,3007157759,3007158015,3007158271,3007158527,3007158783,3007159039,3007160063,3007160319,3007160575,3007160831,3007161087,3007161343,3007162623,3007162879,3007163135,3007163391,3007163647,3007163903,3007164159,3007165439,3007165695,3007167487,3007167999,3007168511,3007168767,3007169023,3007169279,3007169535,3007169791,3007170047,3007170303,3007170559,3007170815,3007171071,3007171583,3007171839,3007172095,3007172351,3007172607,3007172863,3007173119,3007173375,3007174655,3007174911,3007175167,3007175423,3007175679,3007175935,3007176191,3007176447,3007176959,3007177215,3007177727,3007177983,3007178239,3007178751,3007179263,3007179775,3007180031,3007180799,3007181055,3007181311,3007181567,3007182079,3007182335,3007182591,3007182847,3007183359,3007183615,3007183871,3007184127,3007184383,3007184895,3007250431,3007251455,3007252479,3007253503,3007255551,3007256575,3007258623,3007259647,3007260671,3007263743,3007264767,3007268863,3007269887,3007276031,3007277055,3007278079,3007279103,3007288319,3007289343,3007293439,3007294463,3007298559,3007299583,3007301631,3007305727,3007307775,3007310847,3007311871,3007312895,3007313919,3007314943,3007315967,3010290687,3010291711,3015562239,3015563263,3015563775,3015564287,3015564799,3015565055,3015565311,3015639039,3015640063,3019898879,3024093183,3024617471,3024879615,3025141759,3025403903,3025600511,3025600767,3025601023,3025601279,3025601535,3025602303,3025602815,3025603071,3025603583,3025603839,3025604095,3025604351,3025606655,3025606911,3025607167,3025607423,3025607679,3025607935,3025608191,3025608447,3025608703,3025608959,3025609471,3025609727,3025610751,3025614591,3025614847,3025615871,3025616895,3025617919,3025618175,3025618431,3025618687,3025618943,3025619711,3025619967,3025620223,3025620479,3025620735,3025621247,3025621759,3025622015,3025627135,3025627391,3025628671,3025629183,3025629439,3025629695,3025629951,3025630719,3025631231,3025631487,3025632255,3025633279,3025633535,3025633791,3025634303,3025634559,3025635071,3025635327,3025636607,3025636863,3025637119,3025637375,3025637631,3025637887,3025638143,3025638655,3025638911,3025639423,3025639679,3025639935,3025640447,3025640959,3025641215,3025641471,3025642495,3025642751,3025644031,3025645055,3025645311,3025645567,3025646079,3025646591,3025647103,3025647359,3025647615,3025648895,3025649151,3025649407,3025666047,3025928191,3025932287,3025944575,3025960959,3025969151,3025973247,3025974271,3025975295,3025977343,3025979391,3025981439,3025982463,3025983487,3025985535,3025989631,3025993727,3026059263,3026059519,3026059775,3026060287,3026060543,3026060799,3026061055,3026062847,3026063103,3026063359,3026064383,3026064895,3026065407,3026066175,3026066431,3026066943,3026067455,3026068479,3026069503,3026071551,3026073599,3026075647,3026083839,3026087935,3026089983,3026092031,3026108415,3026114559,3026115583,3026116607,3026118655,3026120703,3026124799,3026157567,3028287487,3028353023,3028385791,3028484095,3028500479,3028516863,3028517887,3028518399,3028518655,3028518911,3028520959,3028521215,3028521983,3028523007,3028525055,3028533247,3028549631,3028811775,3029336063,3029598207,3029600255,3029601279,3029602303,3029604351,3029605375,3029606399,3029614591,3029622783,3029630975,3029635071,3029637119,3029639167,3029643263,3029644287,3029645311,3029651455,3029653503,3029663743,3029671935,3029672959,3029673215,3029673471,3029673727,3029673983,3029675007,3029675519,3029675775,3029680127,3029693439,3029693695,3029693951,3029694207,3029696511,3029704703,3029712895,3029713919,3029714943,3029715199,3029715455,3029716991,3029721087,3029722111,3029722623,3029722879,3029723135,3029724159,3029724415,3029724671,3029725183,3029727231,3029728255,3029729279,3029762047,3029770239,3029778431,3029788671,3029790719,3029791743,3029792767,3029793791,3029794815,3029860351,3031433215,3031564287,3031572479,3031580671,3031581695,3031582719,3031583743,3031583999,3031584255,3031584767,3031587839,3031592959,3031595007,3031596031,3031597055,3031601407,3031601663,3031603199,3031605247,3031607039,3031607295,3031609343,3031609599,3031613439,3031629823,3031695359,3031760895,3031793663,3031826431,3031891967,3031957503,3032252415,3032271871,3032272895,3032276991,3032285183,3032289279,3032293375,3032298495,3032299519,3032299775,3032300031,3032301567,3032317951,3032319999,3032323071,3032324095,3032326143,3032330239,3032334335,3032340991,3032341247,3032342527,3032350719,3032743935,3033038847,3033063423,3033065471,3033066495,3033067519,3033068543,3033069567,3033070591,3033268223,3033530367,3033661439,3033694207,3033710591,3033712639,3033714687,3033715711,3033716735,3033717759,3033718783,3033726975,3033743359,3033743871,3033744383,3033745407,3033747455,3033748479,3033749503,3033751551,3033759743,3033792511,3033923583,3033939967,3033948159,3033956351,3033964543,3033966591,3033968639,3033972735,3033980927,3033982975,3033983999,3033985023,3033989119,3034054655,3034120191,3034251263,3034316799,3034447871,3034456063,3034464255,3034466303,3034472703,3034473215,3034474495,3034475007,3034476287,3034476543,3034476799,3034477055,3034477567,3034478079,3034478591,3034479615,3034480639,3034482687,3034484735,3034486783,3034487295,3034488831,3034492927,3034497023,3034499071,3034499583,3034500095,3034500607,3034500863,3034501119,3034502143,3034503167,3034504191,3034504447,3034505215,3034529791,3034542079,3034578943,3035103231,3035168767,3035193343,3035197439,3035199487,3035200511,3035202559,3035205631,3035206655,3035207679,3035209727,3035217919,3035234303,3035299839,3035316223,3035324415,3035326463,3035327487,3035328511,3035329535,3035330559,3035331583,3035332607,3035333631,3035334655,3035334911,3035335167,3035335423,3035335679,3035337727,3035338751,3035339007,3035339263,3035339775,3035340799,3035348991,3035357183,3035365375,3035627519,3035660287,3035662335,3035662591,3035672831,3035673087,3035673343,3035673599,3035674111,3035674367,3035676415,3035676671,3035676927,3035677183,3035677695,3035677951,3035682815,3035683327,3035693055,3036610559,3036676095,3036780543,3036781567,3037790207,3037986815,3038773247,3038904319,3039035391,3039166463,3039231999,3039297535,3039363071,3039379455,3039395839,3039397887,3039398911,3039399423,3039399935,3039401983,3039402495,3039402751,3039403007,3039404031,3039412479,3039412735,3039412991,3039413503,3039413759,3039414015,3039414783,3039415039,3039415295,3039415551,3039415807,3039416063,3039416319,3039416575,3039417087,3039417343,3039417599,3039417855,3039418111,3039418367,3039418623,3039418879,3039419135,3039419647,3039419903,3039420415,3039428607,3039559679,3039821823,3040870399,3041132543,3041394687,3041656831,3041787903,3041794559,3041794815,3041795071,3041795327,3041795583,3041795839,3041796095,3041804287,3041810431,3041811455,3041811967,3041812479,3041812991,3041813503,3041814015,3041814527,3041816575,3041818623,3041837055,3041841151,3041841919,3041853439,3041861631,3041869823,3041872383,3041873919,3041878015,3041908991,3041909247,3041909503,3041909759,3041910783,3041912319,3041912575,3041918975,3042299903,3042301951,3042661375,3042662399,3042886911,3042887167,3042889727,3042890495,3042890751,3042897663,3042898175,3042900735,3044016127,3044147199,3044155391,3044161535,3044162559,3044163583,3044179967,3044188159,3044196351,3044206591,3044208639,3044212735,3044245503,3044278271,3044325375,3044327423,3044366335,3044367359,3044370431,3044372479,3044380671,3044384767,3044398079,3044399103,3044417535,3044425727,3044446207,3044450303,3044454399,3044491263,3044491519,3044491775,3044492543,3044492799,3044493055,3044495871,3044497407,3044498431,3044498943,3044499455,3044499967,3044500479,3044500991,3044501503,3044503551,3044506111,3044506367,3044506623,3044507391,3044540415,3045064703,3047161855,3047423999,3047948287,3048012799,3048013823,3048079359,3048095743,3048112127,3048120319,3048121343,3048122367,3048122879,3048123391,3048126463,3048128511,3048132607,3048134655,3048135679,3048136703,3048137727,3048138751,3048140287,3048140799,3048144895,3048210431,3048275967,3048292351,3048300543,3048301055,3048301311,3048302591,3048302847,3048303359,3048303615,3048305151,3048305663,3048305919,3048308223,3048308479,3048308735,3048325119,3048331263,3048332287,3048333311,3048341503,3048472575,3048996863,3049029631,3049046015,3049062399,3049066495,3049067519,3049068543,3049069311,3049069567,3049076735,3049077759,3049081855,3049082879,3049095167,3049103359,3049107455,3049111551,3049119743,3049120255,3049120511,3049123071,3049123839,3049127935,3049193471,3049199615,3049201663,3049202687,3049203711,3049209855,3049210879,3049211903,3049213951,3049214975,3049225215,3049226239,3049229311,3049230335,3049233407,3049234431,3049241087,3049241599,3049242623,3049249791,3049250815,3049251839,3049252863,3049253887,3049255935,3049259007,3049279487,3049284607,3049285631,3049291775,3049324543,3049362943,3049363455,3049521151,3049586687,3049635839,3049652223,3049667071,3049667327,3049750527,3049754623,3049762815,3049766911,3049771007,3049771263,3049771519,3049772031,3049775103,3049783295,3050045439,3050307583,3050373119,3050405887,3050438655,3050504191,3050569727,3050635263,3050701055,3050701311,3050701567,3050701823,3050702079,3050702591,3050702847,3050703359,3050703615,3050703871,3050704127,3050704639,3050704895,3050705151,3050705407,3050705663,3050705919,3050706175,3050706431,3050706687,3050706943,3050707199,3050707455,3050707711,3050708223,3050708479,3050708735,3050708991,3050709247,3050709503,3050709759,3050710015,3050710271,3050710527,3050710783,3050711039,3050711295,3050711551,3050711807,3050712063,3050712319,3050712575,3050712831,3050713087,3050713343,3050713599,3050713855,3050714111,3050714367,3050714623,3050714879,3050715135,3050715391,3050715647,3050715903,3050719231,3050719487,3050719999,3050720255,3050720511,3050721023,3050721279,3050721535,3050722303,3050722559,3050722815,3050723071,3050723583,3050723839,3050724095,3050724607,3050725119,3050725375,3050726143,3050726399,3050726655,3050726911,3050727423,3050727679,3050727935,3050728191,3050729471,3050729727,3050730239,3050730495,3050731007,3050731263,3050733567,3050734079,3050734591,3050734847,3050735359,3050735615,3050735871,3050736127,3050736639,3050736895,3050737151,3050737663,3050737919,3050738431,3050738687,3050739967,3050740223,3050740479,3050740735,3050741247,3050741759,3050742015,3050742271,3050742783,3050743807,3050744063,3050744575,3050744831,3050745087,3050745343,3050745855,3050746623,3050746879,3050747135,3050747391,3050747647,3050747903,3050748159,3050748415,3050748671,3050748927,3050749183,3050749439,3050749951,3050750463,3050750719,3050750975,3050751231,3050751487,3050751743,3050751999,3050753023,3050753279,3050753535,3050753791,3050754047,3050754303,3050754559,3050754815,3050755583,3050755839,3050756095,3050756351,3050756607,3050756863,3050757631,3050757887,3050758143,3050758399,3050759423,3050759935,3050760191,3050760447,3050760703,3050760959,3050761471,3050761727,3050762239,3050762495,3050763263,3050763519,3050763775,3050764031,3050764287,3050764799,3050765055,3050765567,3050765823,3050766079,3050766335,3050766591,3050766847,3050767103,3050767359,3050767615,3050767871,3050768639,3050768895,3050769407,3050769663,3050769919,3050770175,3050770431,3050770687,3050770943,3050771199,3050771455,3050771711,3050771967,3050772223,3050772479,3050772735,3050772991,3050773247,3050773759,3050774015,3050774271,3050774527,3050774783,3050775039,3050775295,3050775551,3050775807,3050776063,3050776319,3050776575,3050776831,3050777087,3050777343,3050777855,3050778111,3050778367,3050778623,3050778879,3050779135,3050779647,3050779903,3050780159,3050780415,3050783487,3050783743,3050784255,3050784511,3050784767,3050785023,3050785279,3050786303,3050786815,3050788607,3050788863,3050789119,3050789375,3050790143,3050790399,3050797311,3050798079,3050800383,3050800639,3050801151,3050802175,3050802431,3050802687,3050803199,3050803711,3050804479,3050804735,3050807807,3050808319,3050809343,3050809599,3050810111,3050810367,3050810879,3050811135,3050811391,3050811647,3050812415,3050812927,3050813183,3050813439,3050815231,3050815487,3050815743,3050815999,3050817535,3050818559,3050819583,3050819839,3050820351,3050820607,3050821119,3050821375,3050821631,3050822143,3050822399,3050822655,3050823423,3050823679,3050823935,3050824191,3050824447,3050824703,3050824959,3050825215,3050825471,3050825727,3050825983,3050826239,3050826495,3050826751,3050827007,3050827263,3050827519,3050828031,3050828287,3050829311,3050829567,3050830335,3050830591,3050831103,3050831615,3050831871,3051360255,3051361279,3051364351,3051365375,3051366399,3051367423,3051368447,3051372543,3051373567,3051374591,3051375615,3051378687,3051379711,3051380223,3051380735,3051388927,3051397119,3051398143,3051398655,3051399167,3051400191,3051401215,3051405311,3051406335,3051406847,3051407103,3051407359,3051408383,3051409407,3051411455,3051412479,3051412991,3051413247,3051413503,3051421695,3051429887,3051438079,3051450367,3051454463,3051456511,3051457535,3051460607,3051469823,3051470847,3051479039,3051487231,3051552767,3051618303,3051880447,3051913215,3051918335,3051919359,3051920383,3051921407,3051922431,3051924479,3051925503,3051926527,3051927551,3051928575,3051929087,3051929599,3051930623,3051931647,3051940863,3051941887,3051944959,3051945471,3051945727,3051945983,3051948031,3051949055,3051952127,3051953151,3051955199,3051957247,3051958271,3051959295,3051961343,3051961599,3051961855,3051962367,3051965439,3051966463,3051968511,3051969535,3051970559,3051971583,3051972607,3051975679,3051976703,3051977727,3051978751,3051982847,3051983615,3051983871,3051984895,3051985407,3051985919,3051986431,3051986687,3051986943,3051987967,3051988991,3051990015,3051992063,3051993087,3051995135,3052011519,3052156927,3052157951,3052273663,3052306431,3052310527,3052318719,3052326911,3052331007,3052339199,3052404735,3053453311,3053584383,3053584639,3054501887,3054534655,3054537727,3054538751,3054540799,3054541823,3054542847,3054551039,3054559231,3054561279,3054562303,3054563327,3054567423,3054632959,3054665727,3054682111,3054698495,3054731263,3054764031,3054960639,3054975231,3054975743,3054976767,3054977023,3054993407,3054997503,3055001599,3055005695,3055007743,3055009791,3055011839,3055013887,3055014911,3055015935,3055026175,3055288319,3055484927,3055550463,3056599039,3056615423,3056623615,3056631807,3056639999,3056648191,3056664575,3056734207,3056738303,3056746495,3056747519,3056748543,3056749567,3056750591,3056751615,3056752127,3056754687,3056758783,3056762879,3056771071,3056772095,3056773119,3056774143,3056775167,3056778239,3056779263,3056791551,3056795647,3056861183,3056992255,3057025023,3057026047,3057026303,3057027071,3057028095,3057029119,3057029375,3057029631,3057030143,3057031167,3057032191,3057033215,3057037311,3057041407,3057049599,3057050623,3057051647,3057051903,3057052159,3057052415,3057052671,3057052927,3057053183,3057053439,3057054719,3057055743,3057057791,3057123327,3057451007,3057516543,3057647615,3058693119,3058693375,3058696191,3059548159,3059564543,3059572735,3059580927,3059613695,3059744767,3063414783,3063545855,3063611391,3063676927,3063742463,3063807999,3063939071,3063943167,3063943679,3063947263,3063948287,3063949311,3063950335,3063951359,3063952383,3063953407,3063955455,3063963647,3063971839,3063988223,3064004607,3064012799,3064014335,3064014591,3064014847,3064015871,3064016895,3064017919,3064018943,3064019967,3064020991,3064021503,3064021759,3064022015,3064023295,3064023551,3064023807,3064024063,3064025087,3064029183,3064135679,3064160255,3064168447,3064201215,3064725503,3064791039,3064807423,3064808447,3064808959,3064809471,3064810495,3064811519,3064823807,3064831999,3064840191,3064856575,3064987647,3066036223,3066560511,3067060735,3067060991,3067084799,3068657663,3068723199,3068919807,3068948479,3068949503,3068950527,3068952575,3068985343,3068986367,3068987391,3068990463,3068991487,3068993535,3069018111,3069034495,3069050879,3069124607,3069126655,3069127679,3069149183,3069181951,3069706239,3069968383,3069984767,3069985279,3069985791,3069986303,3069986815,3070001151,3070033919,3070036223,3070036479,3070045183,3070045439,3070096127,3070096383,3070099455,3070164991,3070167039,3070168831,3070169087,3070170111,3070171135,3070171391,3070171647,3070172159,3070172415,3070172671,3070172927,3070173183,3070173695,3070173951,3070174207,3070174463,3070174719,3070174975,3070175231,3070176255,3070177279,3070178303,3070179327,3070180351,3070181375,3070185471,3070197759,3070230527,3074949119,3075342335,3075375103,3075383295,3075385343,3075386367,3075387391,3075388415,3075389439,3075390463,3075391487,3075407871,3075473407,3075571711,3075575807,3075577855,3075579903,3075581951,3075582463,3075582975,3075583999,3075585023,3075586047,3075588095,3075596287,3075596543,3075596799,3075597055,3075597311,3075597567,3075597823,3075598079,3075604479,3075735551,3075866623,3075915775,3075932159,3075964927,3075973119,3075997695,3076128767,3076161535,3076169727,3076171775,3076173823,3076175871,3076176895,3076177151,3076177919,3076194303,3076202495,3076210687,3076218879,3076227071,3076228095,3076229119,3076235263,3076243455,3076259839,3076521983,3078619135,3081437183,3081502719,3081764863,3081841407,3081841663,3081841919,3081842175,3081842687,3081846783,3081847807,3081848831,3081849855,3081850111,3081850367,3081850879,3081852927,3081853439,3081854463,3081854975,3081859071,3081861119,3081862143,3081863167,3081895935,3082027007,3082158079,3082166271,3082174463,3082178559,3082178815,3082179327,3082179583,3082181631,3082182655,3082182911,3082183167,3082190847,3082289151,3087007743,3088449535,3088515071,3088580607,3088584703,3088588799,3088591871,3088592895,3088599039,3088599551,3088600319,3088600575,3088601087,3088605183,3088605439,3088605695,3088606207,3088607231,3088607743,3088609279,3088613375,3088617471,3088618495,3088619775,3088620031,3088620287,3088620543,3088621567,3088623615,3088625663,3088629759,3088630783,3088631807,3088632831,3088633855,3088637951,3088642047,3088646143,3088650239,3088654335,3088658943,3088659455,3088660479,3088662527,3088666623,3088670719,3088673791,3088674303,3088674815,3088678399,3088678655,3088678911,3088683007,3088686591,3088687103,3088688127,3088691967,3088692223,3088693247,3088694271,3088697343,3088698367,3088698623,3088701439,3088702463,3088703487,3088703999,3088704511,3088705535,3088706559,3088706815,3088707327,3088707583,3088708607,3088709631,3088710655,3088711679,3088715775,3088717823,3088718847,3088719871,3088720383,3088722687,3088722943,3088725503,3088725759,3088733183,3088734207,3088734463,3088734975,3088735487,3088737279,3088738303,3088738815,3088739327,3088740351,3088741375,3088742399,3088743423,3088744191,3088744447,3088748543,3088748799,3088750591,3088751615,3088752895,3088753151,3088753407,3088753663,3088753919,3088754175,3088754687,3088755199,3088755711,3088756735,3088757759,3088758783,3088759807,3088760831,3088764927,3088769023,3088773119,3088777215,3088781311,3088782847,3088784383,3088785407,3088786431,3088787455,3088788479,3088788735,3088789503,3088790271,3088790527,3088791807,3088792319,3088793599,3088797695,3088801791,3088802815,3088803839,3088805887,3088806399,3088807423,3088807679,3088808191,3088808447,3088808959,3088809215,3088809471,3088809983,3088811007,3088813567,3088814079,3088818175,3088822271,3088823295,3088824319,3088824831,3088825087,3088825343,3088827391,3088827903,3088828159,3088828415,3088828671,3088829439,3088829695,3088831999,3088832255,3088832767,3088833023,3088838655,3088839679,3088840703,3088842751,3088843263,3088844799,3088845311,3088845823,3088846847,3088847359,3088847871,3088848895,3088849407,3088849919,3088850175,3088851455,3088851967,3088853503,3088854015,3088856063,3088856575,3088856831,3088857087,3088857599,3088858111,3088859135,3088860159,3088860671,3088861183,3088861439,3088863999,3088864255,3088865279,3088866303,3088866559,3088868095,3088868351,3088868607,3088868863,3088869375,3088869631,3088869887,3088870143,3088870399,3088871423,3088871935,3088875007,3088875263,3088878591,3088879615,3088880383,3088880639,3088881663,3088882175,3088883199,3088883711,3088886271,3088886783,3088887039,3088887295,3088887807,3088888063,3088888319,3088888831,3088889343,3088891135,3088891391,3088891903,3088892159,3088892415,3088893439,3088893695,3088893951,3088894463,3088896511,3088897023,3088897791,3088898047,3088898559,3088898815,3088899583,3088899839,3088900095,3088901375,3088901631,3088902143,3088902911,3088903167,3088903679,3088904191,3088905215,3088906239,3088906495,3088908799,3088909311,3088909823,3088910079,3088910335,3088910847,3088911359,3088911871,3088912383,3088913407,3088913663,3088914431,3088915455,3088915967,3088916479,3088916991,3088918271,3088918527,3088919039,3088921087,3088921599,3088925695,3088926207,3088926719,3088927231,3088928255,3088928767,3088929279,3088929791,3088930815,3088931583,3088931839,3088932863,3088933375,3088934399,3088934911,3088935935,3088936447,3088936959,3088939007,3088941055,3088944127,3088944383,3088944639,3088944895,3088945151,3088945407,3088945663,3088946175,3088946431,3088946687,3088947455,3088947711,3088947967,3088948223,3088948479,3088948735,3088948991,3088949247,3088957439,3088961535,3088965631,3088973311,3088973823,3088975871,3088977919,3088980991,3088981503,3088981759,3088982015,3088984063,3088985087,3088986111,3088986367,3088986623,3088988927,3088989183,3088989439,3088989695,3088989951,3089006591,3089008639,3089010687,3089011711,3089011967,3089012479,3089012735,3089013759,3089014783,3089022975,3089027071,3089031167,3089035263,3089037311,3089038335,3089039871,3089040127,3089040383,3089041407,3089041919,3089043199,3089043455,3089045503,3089047551,3089051647,3089059839,3089063935,3089072127,3089080319,3089084415,3089088511,3089093375,3089093631,3089093887,3089094143,3089094655,3089094911,3089095167,3089096191,3089096447,3089096703,3089097727,3089098751,3089100799,3089104895,3090288639,3090289663,3090291711,3090292223,3090300927,3090305023,3090306047,3090306303,3090306559,3090306815,3090307071,3090307583,3090308607,3090308863,3090309119,3090313215,3090314239,3090317311,3090325503,3090329599,3090333695,3090334719,3090335743,3090336767,3090343423,3090343679,3090344447,3090344703,3090345215,3090345471,3090347007,3090348031,3090349055,3090349311,3090349567,3090350079,3090351615,3090351871,3090353151,3090353407,3090353663,3090353919,3090356223,3090357247,3090360575,3090360831,3090365439,3090365951,3090366463,3090368511,3090369023,3090372607,3090373119,3090373375,3090373631,3090374655,3090375679,3090376191,3090376447,3090376703,3090377727,3090377983,3090378239,3090379775,3090380799,3090381311,3090381823,3090382079,3090382335,3090382591,3090382847,3090383103,3090383359,3090383871,3090384383,3090384895,3090385919,3090386943,3090388991,3090389247,3090389503,3090389759,3090390015,3090399231,3090400255,3090402303,3090402815,3090403071,3090403327,3090407423,3090411519,3090412543,3090413567,3090414591,3090415103,3090415615,3091202047,3091726335,3091955711,3091959807,3091976191,3091980287,3092381695,3092447231,3092520959,3092525055,3092529151,3092537343,3092541439,3092549631,3092550655,3092551423,3092553727,3092554751,3092555007,3092555263,3092555519,3092555775,3092556799,3092557823,3092558079,3092559871,3092560895,3092561919,3092562943,3092563967,3092564991,3092566015,3092566271,3092566527,3092567039,3092568063,3092568319,3092568575,3092569087,3092569343,3092569599,3092570111,3092572159,3092572671,3092573183,3092573695,3092573951,3092574975,3092575231,3092576255,3092576511,3092576767,3092577279,3092577791,3092586495,3092590591,3092594687,3092598783,3092602879,3092603903,3092604159,3092604415,3092604671,3092605951,3092606975,3092611071,3092615167,3092619263,3092623359,3092627455,3092631551,3092631807,3092632063,3092632319,3092632575,3092632831,3092633599,3092633855,3092634367,3092634623,3092634879,3092635135,3092635391,3092638207,3092638719,3092639743,3092640255,3092643839,3092647935,3092652031,3092656127,3092664319,3092665343,3092667391,3092669439,3092669951,3092670463,3092672511,3092672767,3092673023,3092673535,3092674559,3092699135,3092700159,3092700671,3092700927,3092701183,3092702207,3092704255,3092705279,3092706303,3092706559,3092707327,3092707583,3092707839,3092708095,3092708351,3092713471,3092717567,3092733951,3092738047,3092742143,3092743167,3092744191,3092745215,3092753407,3092753663,3092753919,3092754431,3092758527,3092758783,3092759039,3092759807,3092760063,3092760575,3092761599,3092762111,3092762623,3092763135,3092763647,3092764671,3092766719,3092770303,3092770815,3092774911,3093168127,3093200895,3093213183,3093217279,3093233407,3093233663,3093237759,3093282815,3093299199,3093869311,3093869567,3093872383,3093872639,3093875455,3093875711,3093876991,3093877247,3093877503,3093877759,3093878015,3093878271,3093878527,3093878783,3093879039,3093879295,3093879551,3093879807,3093880063,3093880319,3093880831,3093881087,3093881343,3093881599,3093881855,3093882623,3093882879,3093896959,3093897215,3093905919,3093906431,3093907199,3093907455,3093910527,3093910783,3093919231,3093919487,3093919999,3093920255,3093920511,3093923583,3093923839,3093932031,3093932287,3093935359,3093935615,3093937407,3093937663,3093941503,3093941759,3093948927,3093949439,3094020095,3094085631,3095134207,3095134463,3096444927,3096969215,3097493503,3097772031,3098042367,3098050559,3098095615,3098099711,3098148863,3098165247,3098181631,3098185727,3098263551,3098271743,3098416383,3098416895,3098419199,3098421247,3098438655,3098439167,3098439423,3098439679,3098442495,3098442751,3098476543,3098492927,3100901375,3100966911,3103784959,3103785215,3103785471,3103785727,3103785983,3103786239,3103786495,3103787263,3103787519,3103788031,3103789055,3103789311,3103789567,3103789823,3103790079,3103790591,3103790847,3103791103,3103791359,3103791615,3103791871,3103792127,3103792383,3103792639,3103792895,3103793151,3103793407,3103793663,3103793919,3103794175,3103794431,3103794687,3103794943,3103795199,3103850495,3103850751,3103851007,3103851519,3103852543,3103852799,3103853567,3103853823,3103854079,3103854335,3103854591,3103854847,3103855103,3103855359,3103855615,3103855871,3103856127,3103856383,3103856639,3103856895,3103857151,3103857407,3103857663,3103857919,3103858175,3103858431,3103858687,3103858943,3103859199,3103859455,3103859711,3103859967,3103860223,3103860479,3103860735,3103860991,3103861247,3103861503,3103861759,3103862015,3103862271,3103862527,3103862783,3103863039,3103863295,3103863807,3103864063,3103864319,3103864575,3103864831,3103865087,3103865343,3103865599,3103865855,3103866367,3103866879,3103867135,3103867391,3103867647,3103867903,3103868159,3103868415,3103868671,3103868927,3103869183,3103869439,3103869695,3103869951,3103870207,3103870463,3103870719,3103870975,3103871231,3103871487,3103871743,3103871999,3103872511,3103872767,3103873023,3103873279,3103873535,3103873791,3103874047,3103874303,3103874559,3103874815,3103875071,3103875327,3103875583,3103875839,3103876095,3103876351,3103876607,3103876863,3103877119,3103877375,3103877631,3103877887,3103878143,3103878399,3103878655,3103878911,3103879167,3103879423,3103879679,3103880191,3103880447,3103880959,3103881215,3103881471,3103881727,3103881983,3103882239,3103882495,3103882751,3103883007,3103883263,3103883519,3103883775,3103884031,3103884287,3103884543,3103884799,3103885055,3103885311,3103885567,3103885823,3103886079,3103886335,3103886591,3103886847,3103887103,3103887359,3103887615,3103887871,3103888127,3103888383,3103888895,3103889151,3103889407,3103889919,3103890431,3103890687,3103890943,3103891199,3103891455,3103891967,3103892223,3103892479,3103892735,3103892991,3103893503,3103893759,3103894015,3103894527,3103894783,3103895039,3103895295,3103895551,3103895807,3103896063,3103896319,3103896575,3103896831,3103897087,3103897343,3103897599,3103898111,3103898367,3103898623,3103898879,3103899135,3103899391,3103899647,3103900159,3103900415,3103900671,3103900927,3103901183,3103901439,3103901695,3103901951,3103902207,3103902463,3103902719,3103902975,3103903231,3103903487,3103903743,3103904767,3103905023,3103905279,3103905535,3103905791,3103906047,3103906303,3103906559,3103906815,3103907071,3103907327,3103907839,3103908095,3103908351,3103908863,3103909119,3103909375,3103909631,3103909887,3103910143,3103910399,3103910655,3103910911,3103911167,3103911423,3103911679,3103911935,3103912191,3103912447,3103912703,3103912959,3103913215,3103913471,3103913727,3103913983,3103914239,3103914495,3103914751,3103915007,3103915263,3103915519,3103915775,3103916031,3103917055,3103917311,3103918079,3103919103,3103920127,3103921151,3103922175,3103923199,3103923455,3103924223,3103925247,3103926271,3103926527,3103927295,3103928319,3103928575,3103928831,3103929343,3103930367,3103931391,3103932415,3103933439,3103934463,3103935487,3103936511,3103937535,3103938559,3103939583,3103940607,3103941631,3103942655,3103943679,3103944703,3103945727,3103946751,3103947263,3103947775,3103948799,3103950847,3103951871,3103952895,3103953919,3103954431,3103954943,3103955967,3103956991,3103957503,3103958015,3103960063,3103961087,3103961343,3103961599,3103961855,3103962111,3103963135,3103964159,3103965183,3103967231,3103968255,3103969279,3103970303,3103971327,3103972351,3103973375,3103974399,3103975423,3103976447,3103977471,3103978495,3103979519,3103980543,3103981567,3103983615,3103984639,3103985663,3103986687,3103987711,3103988223,3103988735,3103989759,3103990783,3103991807,3103992831,3103993855,3103994879,3103995903,3103996927,3103997951,3103998975,3103999999,3104002047,3104003071,3104004095,3104004351,3104005119,3104006143,3104007167,3104008191,3104009215,3104010239,3104011263,3104012287,3104012799,3104013311,3104014335,3104015359,3104016383,3104017407,3104018431,3104019455,3104020479,3104021503,3104022527,3104023551,3104024575,3104025599,3104026623,3104027647,3104028671,3104029695,3104030719,3104031743,3104032767,3104033791,3104035839,3104036863,3104037887,3104038911,3104039935,3104040959,3104041983,3104043007,3104044031,3104045055,3104046079,3104047103,3104048127,3104049151,3104050175,3104051199,3104052223,3104053247,3104054271,3104055295,3104056319,3104057343,3104058367,3104059391,3104060415,3104061439,3104062463,3104063487,3104064511,3104065535,3104066559,3104067583,3104068607,3104069631,3104070655,3104071935,3104072191,3104072447,3104072703,3104073471,3104073727,3104074751,3104075775,3104076799,3104077823,3104078847,3104079871,3104080895,3104081919,3104082175,3104082687,3104082943,3104083967,3104084991,3104086015,3104087039,3104088063,3104089087,3104090111,3104090623,3104091135,3104092159,3104093183,3104094207,3104094463,3104094719,3104096255,3104096511,3104096767,3104097023,3104097279,3104098303,3104099327,3104100351,3104101375,3104102399,3104103423,3104103679,3104103935,3104104191,3104104447,3104104959,3104105215,3104105471,3104106495,3104107519,3104108543,3104109567,3104110591,3104111615,3104112639,3104113663,3104114687,3104116735,3104117759,3104118783,3104120831,3104121855,3104122111,3104122367,3104122879,3104123903,3104124159,3104124415,3104124671,3104124927,3104125951,3104126975,3104127999,3104129023,3104130047,3104131071,3104132095,3104133119,3104134143,3104135167,3104136191,3104137215,3104138239,3104139263,3104140287,3104141311,3104142335,3104143359,3104144383,3104145407,3104145663,3104145919,3104146175,3104146431,3104146943,3104147455,3104149503,3104149759,3104150271,3104150527,3104151551,3104152575,3104153599,3104154623,3104155647,3104156671,3104156927,3104157183,3104157695,3104158719,3104159743,3104160255,3104160767,3104161791,3104162815,3104164863,3104165375,3104165887,3104166911,3104167935,3104168959,3104169983,3104171007,3104172031,3104173055,3104174079,3104175103,3104176127,3104177151,3104178175,3104179199,3104180223,3104181247,3104181759,3104182015,3104182271,3104183295,3104184319,3104185343,3104186367,3104187391,3104188415,3104189439,3104190463,3104191487,3104192511,3104193535,3104194559,3104195071,3104195327,3104195583,3104196607,3104197631,3104198655,3104199679,3104200703,3104201727,3104202751,3104203775,3104204799,3104205823,3104206079,3104206335,3104206591,3104206847,3104207871,3104208895,3104209919,3104210943,3104212991,3104214015,3104215039,3104216063,3104217087,3104218111,3104219135,3104220159,3104221183,3104222207,3104223231,3104223487,3104223743,3104223999,3104224255,3104225279,3104226303,3104227327,3104228351,3104229375,3104230399,3104231423,3104233471,3104234495,3104235519,3104236543,3104237567,3104238591,3104239615,3104240639,3104242687,3104243711,3104244735,3104245759,3104246783,3104247807,3104248831,3104250879,3104251903,3104252159,3104252415,3104252671,3104252927,3104253951,3104254975,3104255999,3104257023,3104258047,3104259071,3104260095,3104261119,3104262143,3104263167,3104264191,3104264447,3104264703,3104265215,3104266239,3104267263,3104268287,3104269311,3104269567,3104270335,3104271359,3104272383,3104273407,3104274431,3104275455,3104276479,3104277503,3104280575,3104281599,3104282623,3104283647,3104284671,3104285695,3104286719,3104287743,3104288767,3104289791,3104290815,3104291839,3104292863,3104293887,3104294911,3104295935,3104296959,3104297983,3104298239,3104298495,3104298751,3104299007,3104299775,3104300031,3104301055,3104301567,3104303103,3104304127,3104304383,3104304639,3104304895,3104305151,3104306175,3104307199,3104308223,3104309247,3104310271,3104311295,3104312319,3104313343,3104314367,3104315391,3104316415,3104317439,3104318463,3104319487,3104320511,3104321535,3104322559,3104323327,3104323583,3104324607,3104325631,3104326655,3104327679,3104328703,3104329727,3104330751,3104331775,3104333823,3104334847,3104335871,3104336895,3104337919,3104338943,3104339967,3104340991,3104342015,3104343039,3104344063,3104345087,3104345855,3104347135,3104348159,3104349183,3104350207,3104352255,3104353279,3104354303,3104355327,3104356351,3104357375,3104358399,3104359423,3104360447,3104361471,3104362495,3104363519,3104364543,3104366591,3104368639,3104369663,3104370687,3104371711,3104372735,3104373759,3104374783,3104375807,3104376831,3104377855,3104378879,3104379391,3104379647,3104379903,3104380927,3104381951,3104382975,3104383999,3104384767,3104385023,3104386047,3104387071,3104388095,3104388351,3104388607,3104388863,3104389119,3104390143,3104391167,3104392191,3104393215,3104397311,3104398335,3104399359,3104400383,3104400895,3104401151,3104401407,3104403455,3104404479,3104405503,3104405759,3104406015,3104406527,3104407551,3104408575,3104409599,3104410623,3104411647,3104412671,3104413695,3104414719,3104415743,3104416767,3104417791,3104418815,3104419583,3104419839,3104421887,3104422911,3104423935,3104424959,3104425983,3104428031,3104429055,3104430079,3104431103,3104432127,3104433151,3104434175,3104435199,3104437247,3104438271,3104439295,3104440319,3104441343,3104441855,3104442111,3104442367,3104443391,3104444415,3104445439,3104446463,3104447487,3104448511,3104449535,3104450559,3104451583,3104452607,3104453631,3104454655,3104455679,3104456703,3104457727,3104457983,3104458495,3104459775,3104460799,3104461823,3104462847,3104463871,3104464895,3104465919,3104466943,3104467967,3104468991,3104470015,3104471039,3104472063,3104473087,3104474111,3104475135,3104476159,3104477183,3104478207,3104479231,3104480255,3104482303,3104483327,3104484351,3104485375,3104486399,3104488447,3104489471,3104490495,3104491519,3104492543,3104493567,3104494591,3104495615,3104496639,3104497663,3104498687,3104500735,3104501759,3104502783,3104503807,3104504831,3104505855,3104506879,3104507903,3104508927,3104509951,3104510975,3104511999,3104513023,3104514047,3104515071,3104516095,3104516351,3104516607,3104516863,3104517119,3104518143,3104519167,3104520191,3104521215,3104521471,3104521727,3104521983,3104522239,3104523263,3104524287,3104525311,3104526335,3104527359,3104528383,3104529407,3104530431,3104531455,3104532479,3104533503,3104534527,3104535551,3104536575,3104537599,3104537855,3104538111,3104538623,3104539647,3104540671,3104541695,3104542207,3104542719,3104543743,3104544767,3104545791,3104546815,3104547839,3104548863,3104549887,3104550911,3104551935,3104552959,3104553983,3104555007,3104556031,3104557055,3104558079,3104559103,3104560127,3104561151,3104561407,3104561663,3104562175,3104563199,3104564223,3104565247,3104566271,3104567295,3104568319,3104569343,3104570367,3104571391,3104572415,3104573439,3104574463,3104575487,3104576511,3104577535,3104578559,3104579583,3104581631,3104582655,3104583679,3104584703,3104585727,3104586751,3104587775,3104588799,3104589823,3104590847,3104591871,3104592895,3104593919,3104594943,3104595967,3104596991,3104597759,3104598015,3104599039,3104600063,3104601087,3104602111,3104603135,3104604159,3104605183,3104606207,3104607231,3104608255,3104609023,3104609279,3104610303,3104611327,3104612351,3104613375,3104614399,3104615423,3104616447,3104617471,3104618495,3104619519,3104621567,3104622591,3104623615,3104624639,3104625663,3104625919,3104626431,3104626687,3104627711,3104628735,3104630783,3104631807,3104632831,3104633855,3104634879,3104635903,3104637951,3104638975,3104639999,3104641023,3104642047,3104643071,3104644095,3104645119,3104646143,3104647167,3104648191,3104649215,3104650239,3104651263,3104652287,3104652799,3104653055,3104653311,3104654335,3104655359,3104656383,3104657407,3104658431,3104658687,3104658943,3104659199,3104659455,3104660479,3104661503,3104662527,3104663551,3104665599,3104668671,3104669695,3104670207,3104670719,3104672767,3104673791,3104674815,3104675839,3104676863,3104677887,3104678911,3104679935,3104681983,3104683007,3104684031,3104685055,3104686079,3104687103,3104688127,3104689151,3104690175,3104691199,3104692223,3104693247,3104694271,3104695039,3104695295,3104696319,3104697343,3104698367,3104699391,3104700415,3104701439,3104702463,3104703487,3104704511,3104705535,3104706559,3104707583,3104708607,3104709631,3104710655,3104711679,3104712703,3104713727,3104713983,3104714239,3104714495,3104714751,3104715775,3104716799,3104718847,3104719871,3104720895,3104721919,3104722943,3104723967,3104726015,3104727039,3104727295,3104727551,3104727807,3104728063,3104729087,3104730111,3104731135,3104732159,3104733183,3104734207,3104735231,3104736255,3104737279,3104740351,3104741375,3104742399,3104743423,3104744447,3104745471,3104746495,3104747519,3104749567,3104750591,3104751615,3104752639,3104753663,3104754687,3104755711,3104757759,3104758783,3104759807,3104760831,3104761855,3104762879,3104763135,3104763391,3104763647,3104763903,3104764927,3104765951,3104766975,3104767999,3104769023,3104770047,3104771071,3104772095,3104773119,3104774143,3104775167,3104776191,3104777215,3104778239,3104779263,3104780287,3104782335,3104782591,3104783359,3104784383,3104785407,3104786431,3104787455,3104788479,3104789503,3104791551,3104792575,3104793599,3104794623,3104795647,3104796671,3104797695,3104798719,3104799743,3104800767,3104801791,3104802815,3104803327,3104803583,3104803839,3104804863,3104805887,3104806911,3104807935,3104808959,3104809983,3104811007,3104812031,3104813055,3104814079,3104816127,3104817151,3104818175,3104819199,3104820223,3104821247,3104821503,3104822271,3104823295,3104824319,3104825343,3104826367,3104827391,3104828415,3104829439,3104830463,3104831487,3104832511,3104833535,3104834559,3104835583,3104836607,3104837631,3104838655,3104839679,3104839935,3104840703,3104841727,3104843775,3104844031,3104844543,3104844799,3104846847,3104847871,3104848895,3104849919,3104850943,3104851199,3104851711,3104851967,3104852991,3104853503,3104853759,3104854015,3104854271,3104854527,3104854783,3104855039,3104856063,3104856319,3104856575,3104856831,3104857087,3104858111,3104859135,3104861183,3104861695,3104861951,3104862207,3104863231,3104864255,3104865279,3104866303,3104867327,3104868351,3104869375,3104870399,3104871423,3104872447,3104873471,3104874495,3104875519,3104876543,3104877567,3104878591,3104879615,3104880639,3104881151,3104881663,3104882687,3104882943,3104883199,3104883711,3104884735,3104885759,3104886783,3104887807,3104888831,3104889855,3104890879,3104891903,3104892927,3104893951,3104894975,3104895999,3104897023,3104897279,3104897535,3104897791,3104898047,3104899071,3104899327,3104899583,3104899839,3104900095,3104901119,3104902143,3104903167,3104904191,3104905215,3104906239,3104907263,3104908287,3104909311,3104910335,3104911359,3104912383,3104913407,3104914431,3104915455,3104915711,3104915967,3104916479,3104917503,3104918527,3104919551,3104920575,3104922623,3104923647,3104924671,3104925695,3104926719,3104927743,3104928767,3104929791,3104930815,3104931839,3104933887,3104934911,3104935935,3104936959,3104937983,3104939007,3104940031,3104941055,3104942079,3104943103,3104944127,3104945151,3104946175,3104947199,3104948223,3104948991,3104949247,3104950271,3104951295,3104952319,3104953343,3104954367,3104955391,3104956415,3104957439,3104958463,3104959487,3104959999,3104960511,3104961535,3104962559,3104963583,3104964351,3104964607,3104965631,3104966655,3104967679,3104968703,3104969727,3104970751,3104971775,3104972799,3104973823,3104974847,3104975871,3104976895,3104977919,3104978943,3104979967,3104980991,3104982015,3104983039,3104984063,3104985087,3104986111,3104987135,3104988159,3104989183,3104990207,3104991231,3104992255,3104995327,3104996095,3104996351,3104997375,3104998399,3104999423,3105000447,3105001471,3105002495,3105003263,3105003519,3105004543,3105005567,3105006591,3105007615,3105008639,3105009663,3105010687,3105011711,3105012735,3105013759,3105014783,3105015807,3105016831,3105017855,3105018879,3105019903,3105020927,3105021183,3105021439,3105021695,3105021951,3105022975,3105023999,3105025023,3105026047,3105027071,3105028095,3105029119,3105030143,3105031167,3105032191,3105033215,3105035263,3105036287,3105037311,3105038335,3105039615,3105039871,3105040127,3105040383,3105041407,3105042431,3105043455,3105044479,3105046271,3105046527,3105047039,3105047295,3105047551,3105048575,3105049599,3105050623,3105051647,3105052671,3105053695,3105054719,3105055743,3105056255,3105056511,3105056767,3105057791,3105058815,3105059839,3105060863,3105061887,3105062911,3105063935,3105064959,3105065983,3105067007,3105069055,3105070079,3105071103,3105072127,3105073151,3105074175,3105075199,3105076223,3105077247,3105078271,3105079295,3105080319,3105081343,3105081599,3105081855,3105082111,3105082367,3105083391,3105083647,3105084415,3105085439,3105086463,3105087487,3105088511,3105089535,3105090559,3105091583,3105091839,3105092607,3105093631,3105095679,3105096191,3105096447,3105096703,3105096959,3105097215,3105097471,3105097727,3105098751,3105099775,3105100799,3105101823,3105102847,3105103871,3105104895,3105105151,3105105919,3105106943,3105107967,3105110015,3105111039,3105112063,3105113087,3105113343,3105113599,3105113855,3105114111,3105115135,3105117183,3105118207,3105119231,3105120255,3105121279,3105122303,3105123327,3105124351,3105125375,3105126399,3105127423,3105128447,3105129471,3105130495,3105131519,3105132543,3105133567,3105133823,3105134079,3105134335,3105134591,3105135615,3105136639,3105137663,3105138687,3105139711,3105140735,3105142783,3105143807,3105144831,3105145855,3105146879,3105147903,3105148927,3105149183,3105149439,3105149695,3105149951,3105150207,3105150463,3105150975,3105151999,3105153023,3105154047,3105155327,3105155583,3105156095,3105157119,3105158143,3105159167,3105160703,3105160959,3105161215,3105161471,3105162239,3105163263,3105164287,3105165311,3105166335,3105167359,3105168383,3105169407,3105170431,3105171455,3105172479,3105173503,3105173759,3105174015,3105174271,3105174527,3105177599,3105178623,3105179647,3105180671,3105181695,3105182719,3105183743,3105184767,3105185791,3105186815,3105187327,3105187583,3105187839,3105188095,3105188351,3105188607,3105188863,3105189887,3105190911,3105191679,3105191935,3105192959,3105193983,3105194239,3105194495,3105194751,3105195007,3105195263,3105195519,3105195775,3105196031,3105197055,3105197823,3105198079,3105198335,3105199103,3105200127,3105201151,3105202175,3105203199,3105204223,3105205247,3105206271,3105207295,3105207551,3105207807,3105208063,3105208319,3105210367,3105211391,3105212415,3105213439,3105214463,3105215487,3105216255,3105216511,3105217535,3105218559,3105219583,3105220607,3105221631,3105222655,3105223679,3105224703,3105225727,3105225983,3105226239,3105226495,3105226751,3105227775,3105228799,3105229823,3105230847,3105231871,3105232895,3105233919,3105234943,3105235967,3105236991,3105238015,3105239039,3105240063,3105240831,3105241087,3105242111,3105243135,3105244159,3105245183,3105245695,3105246207,3105248255,3105249279,3105250303,3105251327,3105252351,3105253375,3105254399,3105255423,3105256447,3105257471,3105258495,3105259519,3105260543,3105261567,3105262591,3105263615,3105264639,3105265663,3105266687,3105267711,3105268223,3105268479,3105268735,3105269759,3105270271,3105270527,3105270783,3105271807,3105272831,3105273855,3105274879,3105276927,3105277951,3105278975,3105279999,3105281023,3105282047,3105283071,3105284095,3105285119,3105285375,3105285631,3105285887,3105286143,3105287167,3105288191,3105289215,3105290239,3105291263,3105292287,3105293311,3105293567,3105293823,3105294079,3105294335,3105295359,3105296383,3105297407,3105298431,3105299455,3105300479,3105301503,3105302527,3105303551,3105304575,3105305599,3105307647,3105307903,3105308671,3105309695,3105310719,3105311743,3105311999,3105312255,3105312511,3105312767,3105313791,3105314815,3105315839,3105317887,3105318911,3105319935,3105320191,3105320447,3105320703,3105320959,3105321983,3105324031,3105325055,3105326079,3105328127,3105329151,3105330175,3105331199,3105332223,3105333247,3105334271,3105335295,3105336319,3105337343,3105338367,3105338623,3105338879,3105339135,3105339391,3105340415,3105341439,3105342463,3105343487,3105343999,3105344511,3105345535,3105346559,3105347583,3105348607,3105349631,3105350655,3105351679,3105352703,3105352959,3105353215,3105353727,3105354751,3105355775,3105356287,3105356799,3105357055,3105357311,3105357823,3105358847,3105359871,3105360127,3105360383,3105360639,3105360895,3105361919,3105362943,3105363967,3105364991,3105366015,3105367039,3105368063,3105370111,3105371135,3105373183,3105374207,3105375231,3105376255,3105377279,3105378303,3105380351,3105381375,3105382399,3105383423,3105383679,3105383935,3105384447,3105385471,3105385727,3105385983,3105386495,3105387519,3105388543,3105389567,3105390591,3105391615,3105392639,3105393663,3105395711,3105396735,3105398783,3105399807,3105400831,3105401855,3105402879,3105404927,3105405951,3105406975,3105407999,3105410047,3105411071,3105412095,3105413119,3105414143,3105416191,3105417215,3105418239,3105419263,3105420287,3105421311,3105422335,3105423359,3105424383,3105426431,3105427455,3105428479,3105429503,3105430527,3105431551,3105432575,3105433599,3105434623,3105435647,3105436671,3105437695,3105438719,3105439743,3105440767,3105441791,3105442815,3105443839,3105444863,3105445887,3105446911,3105447167,3105447423,3105447679,3105447935,3105448959,3105449983,3105450239,3105450495,3105450751,3105451007,3105452031,3105453055,3105454079,3105455103,3105456127,3105457151,3105458175,3105459199,3105460223,3105461247,3105462271,3105463295,3105464319,3105465343,3105466367,3105467391,3105468415,3105469439,3105470207,3105470463,3105471487,3105472511,3105473535,3105474559,3105475583,3105476607,3105476863,3105477119,3105477631,3105478655,3105479679,3105480703,3105481727,3105482751,3105483775,3105486847,3105487871,3105488895,3105489151,3105489663,3105489919,3105490943,3105491967,3105494015,3105495039,3105495551,3105496063,3105497087,3105498111,3105499135,3105500159,3105501183,3105502207,3105503231,3105504255,3105505279,3105506303,3105507327,3105508351,3105510655,3105510911,3105511423,3105512447,3105513471,3105514495,3105515519,3105516543,3105517567,3105518591,3105519615,3105520639,3105521663,3105522687,3105523711,3105524735,3105525759,3105526783,3105527807,3105528831,3105529855,3105530879,3105531903,3105532927,3105533951,3105534975,3105535999,3105537023,3105538047,3105539071,3105540095,3105541119,3105542143,3105542399,3105542655,3105543167,3105544191,3105544703,3105545215,3105546239,3105547263,3105548287,3105549311,3105549823,3105550079,3105550335,3105551359,3105551615,3105553407,3105554431,3105555455,3105556479,3105557503,3105558527,3105559551,3105560575,3105561599,3105562623,3105563647,3105564671,3105565695,3105567743,3105568767,3105569791,3105570815,3105571839,3105572863,3105573887,3105574143,3105574399,3105574655,3105574911,3105575935,3105576959,3105577983,3105578495,3105578751,3105579007,3105580031,3105581055,3105582079,3105583103,3105584127,3105584383,3105584639,3105585151,3105586175,3105587199,3105588223,3105589247,3105590271,3105591295,3105592319,3105593343,3105595391,3105596415,3105598463,3105599487,3105599999,3105600511,3105601023,3105601279,3105601535,3105602559,3105603583,3105604607,3105605631,3105606655,3105607679,3105608703,3105609727,3105610751,3105611775,3105612799,3105613055,3105613567,3105613823,3105614847,3105615871,3105616895,3105617919,3105618175,3105618431,3105618687,3105618943,3105619967,3105620991,3105622015,3105623039,3105624063,3105625087,3105625343,3105626111,3105627135,3105628159,3105628415,3105629183,3105630207,3105631231,3105632255,3105633279,3105634303,3105635327,3105636351,3105636607,3105636863,3105637375,3105637631,3105637887,3105638399,3105638655,3105638911,3105639167,3105639423,3105640447,3105641471,3105641983,3105642495,3105644543,3105645567,3105646591,3105647615,3105648639,3105649663,3105649919,3105650431,3105650687,3105650943,3105651199,3105651455,3105651711,3105652735,3105653759,3105654783,3105655295,3105655807,3105656831,3105657855,3105658879,3105659903,3105660927,3105661951,3105662975,3105663999,3105665023,3105666047,3105667071,3105668095,3105668351,3105668607,3105668863,3105669119,3105670143,3105671167,3105672191,3105673215,3105674239,3105675263,3105676287,3105676543,3105676799,3105677311,3105678335,3105679359,3105680383,3105681407,3105682431,3105683455,3105684479,3105686527,3105687551,3105688319,3105688575,3105689599,3105690623,3105691647,3105692671,3105693695,3105696767,3105697791,3105698815,3105700863,3105701119,3105701375,3105701887,3105702911,3105703935,3105704959,3105705215,3105705983,3105707007,3105708031,3105709055,3105710079,3105711103,3105712127,3105713151,3105714175,3105715199,3105716223,3105717247,3105719295,3105721343,3105722367,3105723391,3105724415,3105725439,3105726463,3105727487,3105728511,3105729535,3105731583,3105732607,3105733631,3105734655,3105735679,3105736703,3105737727,3105738751,3105739775,3105740799,3105741823,3105742847,3105743871,3105744383,3105744895,3105745919,3105746943,3105747967,3105748991,3105750015,3105751039,3105752063,3105753087,3105754111,3105756159,3105757183,3105758207,3105759231,3105760255,3105761279,3105762303,3105763327,3105764351,3105765375,3105766399,3105769471,3105770495,3105771519,3105772543,3105773567,3105774591,3105775615,3105776639,3105777663,3105778687,3105780735,3105781759,3105782783,3105783807,3105785855,3105786879,3105787903,3105788927,3105789951,3105790975,3105791999,3105792511,3105793023,3105793535,3105793791,3105794047,3105795071,3105795327,3105795583,3105796095,3105797119,3105798143,3105799167,3105800191,3105801215,3105802239,3105803263,3105804287,3105805311,3105806335,3105807359,3105808383,3105809407,3105810431,3105810687,3105810943,3105812479,3105814527,3105815551,3105816575,3105817599,3105818623,3105819647,3105819903,3105820159,3105820415,3105820671,3105820927,3105821183,3105821439,3105821695,3105822719,3105823743,3105824767,3105825791,3105826815,3105827839,3105828863,3105829887,3105830911,3105831167,3105831423,3105831679,3105831935,3105832959,3105833983,3105835007,3105836031,3105837055,3105838079,3105839103,3105840127,3105841151,3105842175,3105843199,3105844223,3105847295,3105848319,3105849343,3105849599,3105850367,3105851391,3105852415,3105853439,3105854463,3105855487,3105856511,3105857535,3105859583,3105860607,3105861631,3105862655,3105862911,3105863679,3105864703,3105865727,3105866751,3105867775,3105868031,3105868287,3105868543,3105868799,3105869823,3105870847,3105871871,3105872895,3105873919,3105874943,3105875967,3105876991,3105878015,3105879039,3105880063,3105881087,3105882111,3105883135,3105884159,3105885183,3105886207,3105887231,3105888255,3105889279,3105890303,3105891327,3105892351,3105893375,3105894399,3105895423,3105896447,3105897471,3105898495,3105898751,3105899519,3105900031,3105900287,3105900543,3105901567,3105901823,3105902079,3105902335,3105902591,3105903615,3105904639,3105905663,3105906687,3105908479,3105908735,3105910783,3105911807,3105912831,3105913855,3105914879,3105915903,3105916927,3105917951,3105918975,3105919999,3105921023,3105922047,3105923071,3105924095,3105925119,3105926143,3105927167,3105928191,3105928447,3105929215,3105930239,3105931263,3105932287,3105933311,3105934335,3105935359,3105936383,3105937407,3105938431,3105939455,3105940479,3105941503,3105942527,3105943551,3105944063,3105944319,3105945599,3105946623,3105947647,3105948671,3105949695,3105950719,3105951743,3105952767,3105953791,3105954047,3105954303,3105954815,3105955839,3105956863,3105957887,3105958911,3105959167,3105959935,3105960959,3105961983,3105963007,3105964031,3105965055,3105966079,3105967103,3105968127,3105969151,3105970175,3105971199,3105971711,3105972223,3105973247,3105974015,3105974271,3105975295,3105976319,3105978367,3105979391,3105980415,3105981439,3105982463,3105983487,3105984511,3105985535,3105986559,3105987583,3105988607,3105989631,3105990655,3105991679,3105992703,3105993727,3105994751,3105995775,3105996799,3105997823,3105999871,3106000895,3106001919,3106002943,3106003967,3106004479,3106004991,3106006015,3106007039,3106008063,3106009087,3106010111,3106011135,3106012159,3106013183,3106013695,3106014207,3106015231,3106016255,3106017279,3106018303,3106019327,3106020351,3106021375,3106022399,3106023423,3106023679,3106023935,3106024191,3106024447,3106025471,3106026495,3106027519,3106027775,3106028031,3106028287,3106028543,3106029567,3106030079,3106030335,3106030591,3106031615,3106032639,3106033663,3106034687,3106035711,3106036735,3106037759,3106038783,3106039039,3106039295,3106039551,3106039807,3106041855,3106042879,3106043903,3106044927,3106045951,3106046975,3106047999,3106048255,3106049023,3106050047,3106051071,3106051583,3106051839,3106052095,3106053119,3106054143,3106055167,3106056191,3106057215,3106058239,3106059263,3106060287,3106061311,3106061823,3106062335,3106063359,3106063871,3106064383,3106064639,3106064895,3106065407,3106066431,3106067455,3106068479,3106070527,3106071551,3106072575,3106073599,3106074623,3106076671,3106077695,3106078463,3106078719,3106080767,3106081791,3106082815,3106083839,3106084863,3106085887,3106086911,3106087935,3106091007,3106092031,3106093055,3106094079,3106095103,3106096127,3106096383,3106096639,3106096895,3106098687,3106098943,3106099199,3106100223,3106101247,3106102271,3106103295,3106104319,3106105343,3106106367,3106107391,3106108415,3106110463,3106111487,3106112511,3106113535,3106114559,3106115583,3106116607,3106117631,3106118655,3106119679,3106120703,3106121727,3106122751,3106123775,3106124799,3106125823,3106126847,3106127871,3106128895,3106129919,3106130175,3106130943,3106131967,3106132991,3106134015,3106135039,3106135295,3106135551,3106136063,3106137087,3106138111,3106139135,3106140159,3106141183,3106142207,3106143231,3106144255,3106145279,3106146303,3106147327,3106148351,3106149375,3106149887,3106150143,3106150399,3106151423,3106152447,3106153471,3106154495,3106155519,3106156543,3106157567,3106158591,3106159103,3106159359,3106159615,3106160639,3106161663,3106162687,3106163711,3106164991,3106165503,3106165759,3106166783,3106167807,3106168831,3106169855,3106170111,3106170367,3106170623,3106170879,3106171903,3106172927,3106175999,3106176255,3106176511,3106176767,3106177023,3106178047,3106179071,3106180095,3106180863,3106181119,3106181375,3106181631,3106181887,3106182143,3106182911,3106183167,3106184191,3106185215,3106186239,3106187263,3106188287,3106189311,3106190335,3106191359,3106192383,3106193407,3106193919,3106194431,3106195455,3106196479,3106196735,3106197503,3106198527,3106199551,3106200575,3106202623,3106202879,3106203135,3106203391,3106203647,3106204671,3106205695,3106205951,3106206719,3106207743,3106208767,3106209023,3106209279,3106209535,3106209791,3106210303,3106210815,3106211839,3106212095,3106212351,3106212607,3106212863,3106213887,3106214911,3106215935,3106216959,3106217983,3106219007,3106220031,3106221055,3106222079,3106223103,3106224127,3106226175,3106228223,3106229247,3106230271,3106231295,3106232319,3106233343,3106234367,3106235391,3106235647,3106235903,3106236159,3106236415,3106237439,3106238463,3106239487,3106240511,3106241535,3106242559,3106243583,3106244607,3106245631,3106245887,3106246655,3106247679,3106248703,3106249727,3106250751,3106251775,3106252799,3106253823,3106255871,3106256895,3106257407,3106257919,3106258943,3106259455,3106259711,3106259967,3106260991,3106262015,3106263039,3106264063,3106265087,3106266111,3106266879,3106267135,3106269183,3106270207,3106270463,3106270719,3106271231,3106272255,3106273279,3106274303,3106275071,3106275327,3106276351,3106277375,3106278399,3106279423,3106280447,3106281471,3106282495,3106283519,3106285567,3106286591,3106287615,3106289663,3106290687,3106291711,3106292735,3106293759,3106294783,3106295807,3106296831,3106297855,3106298879,3106299903,3106300159,3106300415,3106300927,3106301439,3106301695,3106301951,3106302975,3106303999,3106305023,3106306047,3106307071,3106308095,3106309119,3106310143,3106311167,3106312191,3106313215,3106314239,3106316287,3106317311,3106318335,3106319359,3106320383,3106321407,3106321919,3106322175,3106322431,3106323455,3106324479,3106325503,3106326527,3106326783,3106327551,3106328575,3106329087,3106329599,3106330623,3106331647,3106333695,3106334719,3106335743,3106336767,3106337791,3106338815,3106339839,3106340863,3106341887,3106342911,3106343167,3106343423,3106343679,3106343935,3106344959,3106345471,3106345727,3106345983,3106347007,3106348031,3106348543,3106348799,3106349055,3106350079,3106351103,3106352127,3106353151,3106354175,3106354687,3106355199,3106356223,3106357247,3106358271,3106359295,3106360319,3106360575,3106360831,3106361087,3106361343,3106362367,3106364415,3106365439,3106366463,3106367487,3106369535,3106371583,3106372607,3106373631,3106374655,3106375679,3106376703,3106377727,3106378751,3106379775,3106380799,3106381823,3106382847,3106383871,3106384895,3106385919,3106386943,3106387967,3106388991,3106390015,3106391039,3106392063,3106393087,3106393343,3106393599,3106393855,3106394111,3106395135,3106396159,3106397183,3106398207,3106399231,3106400255,3106402303,3106403327,3106405375,3106406399,3106407679,3106408191,3106408447,3106409471,3106410495,3106410751,3106411007,3106411263,3106411519,3106412543,3106413567,3106414591,3106415615,3106416639,3106417663,3106418687,3106419711,3106420735,3106421759,3106422783,3106423807,3106424831,3106425855,3106426879,3106427903,3106428415,3106428671,3106428927,3106429951,3106431999,3106433023,3106433279,3106433535,3106433791,3106434047,3106435071,3106436095,3106437119,3106438143,3106439167,3106440191,3106441215,3106442239,3106442495,3106443263,3106445311,3106445823,3106446335,3106447359,3106448383,3106449407,3106450431,3106451455,3106452479,3106453503,3106454527,3106455551,3106456575,3106457599,3106458623,3106459135,3106459391,3106459647,3106460671,3106461695,3106462719,3106463743,3106464767,3106465791,3106466047,3106466303,3106466559,3106466815,3106467839,3106468863,3106470911,3106471935,3106472959,3106473983,3106475007,3106476031,3106477055,3106478079,3106479103,3106480127,3106481151,3106482175,3106483199,3106484223,3106484479,3106485247,3106485503,3106485759,3106486271,3106488319,3106489343,3106490367,3106491391,3106492415,3106493439,3106494463,3106495487,3106496511,3106497535,3106498559,3106500607,3106501631,3106502655,3106503679,3106504703,3106505727,3106506751,3106507775,3106508799,3106509823,3106510847,3106511871,3106512895,3106513919,3106514943,3106515967,3106516991,3106518015,3106519039,3106520063,3106521087,3106522111,3106523135,3106524159,3106525183,3106526207,3106527231,3106528255,3106529279,3106530303,3106532351,3106533375,3106533887,3106534143,3106534399,3106535423,3106536447,3106537471,3106538495,3106539519,3106540543,3106541055,3106541311,3106541567,3106542591,3106543615,3106544639,3106545663,3106546687,3106547711,3106548735,3106549759,3106550783,3106551807,3106552831,3106553855,3106554879,3106556927,3106558975,3106559999,3106562047,3106563071,3106564095,3106565119,3106566143,3106568191,3106569215,3106570239,3106571263,3106572287,3106573311,3106573823,3106574335,3106575359,3106576383,3106577407,3106578431,3106578687,3106578943,3106579199,3106579455,3106580479,3106581503,3106582527,3106583551,3106584575,3106585599,3106586111,3106586623,3106587647,3106588671,3106589695,3106590463,3106590719,3106591743,3106592767,3106593791,3106594815,3106595839,3106596863,3106597887,3106598911,3106599935,3106601983,3106603007,3106604031,3106606079,3106607103,3106608127,3106609151,3106610175,3106610431,3106610687,3106610943,3106612223,3106613247,3106614271,3106615295,3106616319,3106616831,3106617343,3106618367,3106619391,3106620415,3106621439,3106622463,3106623487,3106624511,3106625535,3106626559,3106627583,3106628607,3106629631,3106630655,3106630911,3106631423,3106631679,3106632703,3106633727,3106634751,3106635775,3106636799,3106637823,3106638847,3106639871,3106640127,3106640383,3106640639,3106640895,3106641919,3106642943,3106643199,3106643455,3106643711,3106643967,3106644991,3106646015,3106647039,3106648063,3106649087,3106650111,3106651135,3106652159,3106653183,3106654207,3106655231,3106656255,3106657279,3106658303,3106659327,3106660351,3106661375,3106662399,3106663423,3106664447,3106665471,3106666495,3106667519,3106668543,3106669567,3106670591,3106672639,3106673663,3106674687,3106676735,3106677759,3106678783,3106680831,3106682879,3106683903,3106684927,3106685183,3106685695,3106685951,3106686975,3106687999,3106689023,3106689279,3106689535,3106689791,3106690047,3106691071,3106692095,3106693119,3106694143,3106695167,3106697215,3106698239,3106698495,3106698751,3106699263,3106700287,3106701311,3106702335,3106703359,3106704383,3106705407,3106706431,3106707455,3106708479,3106709503,3106709759,3106710015,3106710527,3106711551,3106712575,3106713599,3106714623,3106715647,3106716671,3106717695,3106718719,3106719743,3106720767,3106721023,3106721279,3106721791,3106722815,3106723839,3106724863,3106725887,3106726399,3106726911,3106727935,3106728959,3106729983,3106731007,3106732031,3106736127,3106737151,3106738175,3106739199,3106740223,3106741247,3106742271,3106743295,3106744319,3106745343,3106746367,3106747391,3106747647,3106747903,3106748159,3106748415,3106749439,3106750463,3106751487,3106752511,3106753535,3106754559,3106755583,3106756607,3106757631,3106758143,3106758399,3106758655,3106759679,3106760703,3106761727,3106762751,3106763519,3106763775,3106764799,3106765823,3106766847,3106767871,3106768895,3106769919,3106770943,3106771455,3106771711,3106771967,3106772991,3106773759,3106774015,3106775039,3106776063,3106777087,3106778111,3106779135,3106780159,3106781183,3106782207,3106783231,3106783999,3106784255,3106785279,3106786303,3106787327,3106787839,3106788095,3106788351,3106789375,3106790399,3106792447,3106793471,3106794495,3106795519,3106796543,3106797567,3106798591,3106798847,3106799103,3106799615,3106800639,3106801663,3106804735,3106805759,3106806783,3106807807,3106808831,3106809855,3106810879,3106811391,3106811647,3106812927,3106813951,3106814975,3106815999,3106817279,3106817535,3106817791,3106818047,3106819071,3106820095,3106821119,3106822143,3106822655,3106823167,3106824191,3106825215,3106826239,3106827263,3106828287,3106829311,3106830335,3106831359,3106832383,3106833407,3106834431,3106835455,3106835711,3106835967,3106836223,3106836479,3106837503,3106838527,3106838783,3106839551,3106840575,3106841599,3106842111,3106842623,3106843647,3106843903,3106844159,3106844415,3106844671,3106845695,3106846719,3106847743,3106848767,3106849791,3106850815,3106851839,3106852863,3106853887,3106854399,3106854911,3106855935,3106856959,3106857983,3106859007,3106859263,3106859519,3106860031,3106861055,3106862079,3106863103,3106864127,3106865151,3106866175,3106867199,3106868223,3106870271,3106871295,3106872319,3106873343,3106874367,3106875391,3106875647,3106875903,3106876415,3106877439,3106878463,3106879487,3106880511,3106881535,3106882559,3106883583,3106884607,3106885631,3106886655,3106887679,3106888703,3106889727,3106890751,3106891775,3106892799,3106893823,3106894847,3106895359,3106895871,3106896895,3106897919,3106898943,3106899967,3106900991,3106902015,3106903039,3106903295,3106904063,3106904575,3106905087,3106906111,3106907135,3106907391,3106907647,3106907903,3106908159,3106909183,3106909439,3106909695,3106909951,3106910207,3106911231,3106912255,3106913279,3106914303,3106915327,3106917375,3106918399,3106919423,3106920447,3106921471,3106922495,3106923519,3106924543,3106925567,3106926591,3106927615,3106928639,3106929663,3106929919,3106930175,3106930431,3106930687,3106931711,3106932735,3106933759,3106934783,3106935807,3106936831,3106937855,3106938879,3106939903,3106940927,3106941951,3106943999,3106945023,3106946047,3106947071,3106948095,3106949119,3106950143,3106951167,3106952191,3106954239,3106955263,3106955519,3106956287,3106957311,3106958335,3106959359,3106960383,3106961407,3106962431,3106963455,3106964479,3106965503,3106966527,3106967551,3106968575,3106969599,3106970623,3106970879,3106971135,3106971647,3106973695,3106974719,3106975743,3106976767,3106977791,3106978815,3106979839,3106980863,3106981887,3106982911,3106983935,3106984959,3106985983,3106990079,3106991103,3106992127,3106993151,3106994175,3106994687,3106994943,3106995199,3106996223,3106997247,3106998271,3106999295,3107000319,3107001343,3107002367,3107003391,3107004415,3107007487,3107008511,3107009535,3107010559,3107011583,3107012607,3107013631,3107014655,3107015679,3107016703,3107017215,3107017727,3107018751,3107019775,3107020799,3107021823,3107022079,3107022591,3107022847,3107023871,3107024895,3107025919,3107026943,3107027967,3107028479,3107028991,3107030015,3107031039,3107032063,3107034111,3107035135,3107036159,3107037183,3107038207,3107039231,3107040255,3107041279,3107041535,3107041791,3107042303,3107043327,3107044351,3107044607,3107045375,3107046399,3107047423,3107048447,3107049471,3107050495,3107051519,3107052543,3107053567,3107054591,3107054847,3107055103,3107055359,3107055615,3107057663,3107058687,3107059711,3107060735,3107061759,3107062783,3107063807,3107064831,3107065855,3107067903,3107068927,3107069951,3107070975,3107071999,3107073023,3107074047,3107075071,3107076095,3107077119,3107078143,3107079167,3107080191,3107082239,3107083263,3107084287,3107084799,3107085055,3107085311,3107086335,3107087359,3107088383,3107089407,3107090431,3107091455,3107092479,3107093503,3107094527,3107095551,3107096575,3107097599,3107098623,3107099647,3107100415,3107100671,3107101695,3107102719,3107103743,3107104767,3107105791,3107106815,3107107839,3107108863,3107109887,3107110911,3107111935,3107112959,3107113983,3107115007,3107116031,3107117055,3107118079,3107120127,3107121151,3107122175,3107123199,3107124223,3107125247,3107126271,3107127295,3107128319,3107128575,3107128831,3107129343,3107130111,3107130367,3107131391,3107132415,3107132671,3107132927,3107133183,3107133439,3107134463,3107135487,3107136511,3107137535,3107138559,3107139583,3107140607,3107141119,3107141631,3107142655,3107143679,3107144703,3107145727,3107146751,3107147775,3107148799,3107149823,3107150847,3107151871,3107152895,3107153919,3107154943,3107155967,3107156991,3107158015,3107158271,3107158527,3107158783,3107159039,3107160063,3107161087,3107162111,3107163135,3107164159,3107165183,3107166207,3107167231,3107168255,3107168511,3107168767,3107169279,3107170303,3107171327,3107172351,3107173375,3107174399,3107175423,3107176447,3107176703,3107177471,3107178495,3107179519,3107180543,3107181567,3107182591,3107183615,3107184639,3107185663,3107186687,3107187711,3107188735,3107189759,3107190015,3107190783,3107191807,3107192063,3107192831,3107194879,3107195903,3107196927,3107197951,3107198975,3107199999,3107201023,3107202047,3107203071,3107204095,3107205119,3107206143,3107206911,3107207167,3107208191,3107209215,3107210239,3107213311,3107214335,3107215359,3107216383,3107217407,3107218431,3107219455,3107220479,3107221503,3107222527,3107223551,3107224063,3107224319,3107224575,3107225599,3107226623,3107227647,3107227903,3107228159,3107228415,3107228671,3107229695,3107230719,3107231743,3107232767,3107233023,3107233791,3107234815,3107235839,3107236863,3107237887,3107238911,3107239935,3107241983,3107243007,3107244031,3107244287,3107245055,3107246079,3107248127,3107249151,3107250175,3107251199,3107252223,3107253247,3107254271,3107255295,3107257343,3107258367,3107259391,3107260415,3107261439,3107262463,3107263487,3107264511,3107265535,3107266559,3107266815,3107267071,3107267327,3107267583,3107268607,3107269631,3107269887,3107270143,3107270399,3107270655,3107271679,3107272703,3107273727,3107274751,3107275775,3107276799,3107277823,3107278847,3107279871,3107280895,3107281407,3107281663,3107281919,3107282943,3107283967,3107284991,3107286015,3107288063,3107289087,3107290111,3107291135,3107292159,3107293183,3107294207,3107295231,3107296255,3107297279,3107298303,3107299327,3107300351,3107301375,3107302399,3107303423,3107304447,3107305471,3107306495,3107307519,3107308543,3107310591,3107311615,3107311871,3107312127,3107312383,3107312639,3107313663,3107315711,3107316735,3107317759,3107318783,3107319039,3107319295,3107319807,3107320831,3107322111,3107322367,3107322623,3107322879,3107323903,3107324927,3107325951,3107326975,3107327999,3107329023,3107330047,3107331071,3107332095,3107333119,3107334143,3107335167,3107336191,3107337215,3107339263,3107340287,3107341311,3107342335,3107343359,3107344383,3107345407,3107346431,3107347455,3107348479,3107349503,3107350527,3107351551,3107352575,3107353599,3107355647,3107356671,3107357183,3107357439,3107357695,3107358719,3107359743,3107360767,3107361791,3107362815,3107363839,3107364863,3107365375,3107365631,3107365887,3107366911,3107367935,3107368959,3107369983,3107371007,3107372031,3107373055,3107374079,3107375103,3107376127,3107377151,3107377663,3107377919,3107378175,3107379199,3107380223,3107381247,3107382271,3107382527,3107382783,3107383039,3107383295,3107384319,3107385343,3107386367,3107387391,3107388415,3107389439,3107390463,3107391487,3107392511,3107393535,3107394559,3107395583,3107396607,3107397631,3107398655,3107399679,3107400703,3107401727,3107402495,3107403007,3107403775,3107404799,3107405823,3107406847,3107407615,3107407871,3107408895,3107409919,3107410943,3107411967,3107412991,3107414015,3107416063,3107417087,3107419135,3107422207,3107423231,3107424255,3107425279,3107426303,3107427327,3107428351,3107429375,3107430399,3107431423,3107432447,3107433471,3107434495,3107435519,3107436543,3107437567,3107438591,3107439615,3107440639,3107442687,3107443711,3107444735,3107445759,3107446783,3107447807,3107448831,3107449855,3107450879,3107451903,3107452927,3107453951,3107454975,3107455999,3107457023,3107458047,3107459071,3107460095,3107461119,3107462143,3107464191,3107465215,3107467263,3107468287,3107469311,3107470335,3107472383,3107473407,3107474431,3107475455,3107476223,3107476479,3107477247,3107477503,3107478527,3107480575,3107481599,3107482623,3107483647,3107484671,3107485695,3107486719,3107487743,3107489791,3107492863,3107493887,3107494399,3107494655,3107494911,3107495935,3107496191,3107496447,3107496959,3107497983,3107499007,3107500031,3107501055,3107502079,3107503103,3107504127,3107505151,3107506175,3107507199,3107508223,3107509247,3107510271,3107511295,3107511807,3107512063,3107512319,3107513343,3107514367,3107515391,3107516159,3107516415,3107517439,3107518463,3107519487,3107520511,3107521535,3107522559,3107523583,3107524607,3107525375,3107525631,3107526655,3107527679,3107528703,3107531775,3107532799,3107533823,3107534847,3107535871,3107536895,3107537919,3107538943,3107539967,3107540223,3107540479,3107540991,3107542015,3107543039,3107543295,3107544063,3107545087,3107546111,3107547135,3107548159,3107549183,3107551231,3107552255,3107553279,3107554303,3107555327,3107556351,3107557375,3107558399,3107559423,3107561471,3107562495,3107563519,3107564543,3107565567,3107566591,3107567615,3107568639,3107569151,3107569407,3107569663,3107571711,3107572735,3107573759,3107574783,3107575807,3107576063,3107576319,3107576575,3107576831,3107577855,3107578879,3107579391,3107579903,3107580927,3107581951,3107582975,3107583999,3107585023,3107586047,3107586559,3107587071,3107588095,3107589119,3107590143,3107591167,3107592191,3107593215,3107594239,3107595263,3107596287,3107597311,3107598335,3107599359,3107600383,3107601407,3107602431,3107603455,3107604479,3107605503,3107606527,3107607551,3107609599,3107610623,3107611647,3107612671,3107613695,3107614719,3107615231,3107615743,3107617791,3107618815,3107619839,3107620863,3107621887,3107623935,3107624959,3107625983,3107627007,3107628031,3107629055,3107630079,3107631103,3107632127,3107633151,3107634175,3107635199,3107636223,3107637247,3107638271,3107639039,3107639295,3107640319,3107641343,3107643391,3107644415,3107645439,3107646463,3107647487,3107648511,3107649535,3107651583,3107652607,3107653631,3107654655,3107655679,3107656703,3107657727,3107658751,3107659775,3107660799,3107661823,3107662847,3107663871,3107664895,3107665919,3107666943,3107667967,3107668991,3107670015,3107671039,3107672063,3107673087,3107674111,3107675135,3107676159,3107677183,3107678207,3107679231,3107680255,3107680767,3107681279,3107682303,3107683327,3107684351,3107685375,3107686399,3107688447,3107689471,3107690495,3107691519,3107692543,3107693567,3107694591,3107695615,3107696639,3107698687,3107699711,3107700735,3107701759,3107702783,3107703807,3107704831,3107705855,3107706879,3107707647,3107707903,3107708159,3107708415,3107708671,3107708927,3107709951,3107710975,3107711999,3107713023,3107714047,3107715071,3107716095,3107717119,3107718143,3107719167,3107720191,3107721215,3107723263,3107724287,3107725311,3107726335,3107727359,3107728383,3107730431,3107731455,3107731967,3107732479,3107733503,3107734527,3107735551,3107737599,3107737855,3107738623,3107739135,3107739391,3107739647,3107739903,3107740415,3107740671,3107741695,3107742719,3107743743,3107744767,3107745791,3107746815,3107747839,3107748863,3107749887,3107750911,3107751935,3107752959,3107753983,3107755007,3107756031,3107757055,3107758079,3107758335,3107759103,3107759359,3107760127,3107761151,3107762175,3107763199,3107764223,3107765247,3107767295,3107768575,3107769343,3107770367,3107771391,3107772415,3107772671,3107772927,3107773183,3107773439,3107774463,3107775487,3107776511,3107777535,3107777791,3107778559,3107779583,3107780607,3107781631,3107782655,3107783679,3107784703,3107785727,3107786751,3107787775,3107788799,3107789823,3107791871,3107792895,3107793919,3107794943,3107795967,3107796991,3107798015,3107799039,3107800063,3107801087,3107802111,3107803135,3107804159,3107805183,3107806207,3107807231,3107808255,3107809279,3107810303,3107811327,3107812351,3107813375,3107814399,3107815423,3107816447,3107817471,3107817727,3107818495,3107819519,3107820543,3107821311,3107821567,3107822591,3107822847,3107823615,3107824639,3107825663,3107826687,3107827711,3107828735,3107829759,3107831807,3107832831,3107833855,3107834879,3107835903,3107837951,3107838207,3107838463,3107838719,3107838975,3107839231,3107839487,3107839743,3107839999,3107841023,3107842047,3107843071,3107844095,3107845119,3107846143,3107847167,3107848191,3107849215,3107850239,3107851263,3107853311,3107854335,3107855359,3107856383,3107857407,3107858431,3107859455,3107860479,3107862527,3107863551,3107864575,3107865599,3107866623,3107867647,3107868671,3107869695,3107870719,3107871743,3107872767,3107873791,3107874815,3107875839,3107876863,3107877887,3107878911,3107879935,3107880447,3107880703,3107880959,3107881983,3107883007,3107884031,3107884543,3107884799,3107885055,3107887103,3107888127,3107889151,3107890175,3107890431,3107890687,3107891199,3107892223,3107893247,3107894271,3107895295,3107896319,3107896831,3107897087,3107897343,3107898367,3107899391,3107900415,3107900927,3107901439,3107902463,3107904511,3107906815,3107907071,3107907327,3107907583,3107908607,3107909119,3107909375,3107909631,3107910655,3107911679,3107912703,3107913727,3107914751,3107915775,3107916799,3107917823,3107918847,3107919871,3107920895,3107921919,3107922943,3107923967,3107924991,3107926015,3107927039,3107928063,3107929087,3107930111,3107931135,3107932159,3107932927,3107933183,3107933439,3107933695,3107933951,3107934207,3107935231,3107935487,3107935743,3107935999,3107937279,3107938303,3107939327,3107940351,3107941375,3107942399,3107942655,3107943167,3107943423,3107944191,3107944447,3107945471,3107947519,3107948031,3107948287,3107948543,3107949567,3107950591,3107951615,3107952639,3107953663,3107954687,3107955711,3107956735,3107957759,3107958783,3107959807,3107960831,3107961855,3107962879,3107963903,3107964927,3107965951,3107966975,3107967999,3107969023,3107970047,3107971071,3107972095,3107973119,3107974143,3107975167,3107976191,3107977215,3107978239,3107979263,3107980287,3107980543,3107980799,3107981055,3107981311,3107981823,3107982335,3107983359,3107984383,3107985407,3107986431,3107987455,3107988479,3107989503,3107990527,3107991551,3107992575,3107993599,3107994623,3107995647,3107996671,3107997695,3107998719,3107998975,3107999743,3108000767,3108001279,3108001791,3108002815,3108003839,3108004863,3108005119,3108005631,3108005887,3108006911,3108007935,3108008959,3108009983,3108011007,3108012031,3108013055,3108014079,3108015103,3108015359,3108015615,3108015871,3108016127,3108017151,3108018175,3108019199,3108020223,3108021247,3108022271,3108023295,3108024319,3108025343,3108026367,3108027391,3108027647,3108027903,3108028415,3108029439,3108030463,3108031487,3108032511,3108033535,3108034559,3108036607,3108037631,3108038655,3108039679,3108040703,3108041727,3108042751,3108043775,3108044799,3108045823,3108046847,3108047871,3108050943,3108051967,3108054015,3108055039,3108056063,3108057087,3108058111,3108059135,3108060159,3108060671,3108060927,3108061183,3108062207,3108062463,3108062719,3108062975,3108063231,3108064255,3108064511,3108065023,3108066303,3108066815,3108067071,3108067327,3108068351,3108069375,3108070399,3108071423,3108071679,3108071935,3108072191,3108072447,3108073471,3108074495,3108075519,3108076543,3108077567,3108078591,3108079103,3108079359,3108079615,3108079871,3108080127,3108080639,3108080895,3108081151,3108081407,3108081663,3108082687,3108083711,3108084735,3108085759,3108086783,3108087807,3108088831,3108089087,3108089343,3108089599,3108089855,3108090879,3108091903,3108092927,3108093951,3108095999,3108096511,3108096767,3108097023,3108098047,3108099071,3108100095,3108101119,3108102143,3108103167,3108104191,3108105215,3108106239,3108107263,3108108287,3108109311,3108110335,3108111359,3108112383,3108113407,3108114431,3108115455,3108116479,3108117503,3108118527,3108118783,3108119039,3108119295,3108119551,3108120575,3108122623,3108123647,3108124159,3108124415,3108124671,3108126719,3108127743,3108128767,3108129791,3108130815,3108131839,3108132863,3108133887,3108134399,3108134655,3108134911,3108135935,3108136959,3108137215,3108137471,3108137983,3108139007,3108141055,3108142079,3108143103,3108144127,3108145151,3108146175,3108146687,3108146943,3108147199,3108148223,3108149247,3108150271,3108151295,3108152319,3108152575,3108152831,3108153343,3108154367,3108155391,3108156415,3108157439,3108158463,3108159487,3108161535,3108162047,3108162559,3108164607,3108165631,3108166655,3108167679,3108169727,3108170751,3108171775,3108172799,3108173823,3108174847,3108175871,3108176127,3108176895,3108177919,3108178943,3108179967,3108180991,3108182015,3108183039,3108184063,3108185087,3108186111,3108187135,3108188159,3108189183,3108190207,3108191231,3108193279,3108194303,3108195327,3108196351,3108197375,3108198399,3108199423,3108200447,3108201471,3108202495,3108203519,3108204543,3108205567,3108206591,3108206847,3108207615,3108207871,3108208383,3108208639,3108209663,3108210687,3108210943,3108211199,3108211455,3108211711,3108212735,3108215807,3108216831,3108217855,3108218111,3108218367,3108219903,3108220927,3108221951,3108222975,3108223999,3108225023,3108227071,3108228095,3108229119,3108230143,3108231167,3108232191,3108233215,3108234239,3108235263,3108236287,3108237311,3108238335,3108239359,3108240383,3108240639,3108240895,3108241407,3108242431,3108243455,3108244479,3108245503,3108246527,3108246783,3108247551,3108248575,3108249599,3108250367,3108250623,3108251647,3108252671,3108253695,3108254719,3108255743,3108256255,3108256767,3108257791,3108258815,3108259839,3108260863,3108261887,3108262911,3108263935,3108264959,3108265983,3108267007,3108268031,3108269055,3108270079,3108271103,3108272127,3108273151,3108273407,3108274687,3108274943,3108275199,3108276223,3108277247,3108278271,3108279295,3108280319,3108281343,3108282367,3108283391,3108284415,3108285439,3108286463,3108287487,3108288511,3108289023,3108289535,3108289791,3108290047,3108291583,3108292607,3108293631,3108294655,3108295679,3108297727,3108298751,3108300799,3108301823,3108302847,3108303871,3108304383,3108304895,3108305919,3108306943,3108307199,3108307455,3108307711,3108307967,3108308991,3108310015,3108312063,3108313087,3108314111,3108315135,3108316159,3108317183,3108318207,3108319231,3108320255,3108320767,3108321023,3108321279,3108322303,3108323327,3108324351,3108325375,3108326399,3108327423,3108328447,3108329471,3108329727,3108329983,3108330495,3108331519,3108332543,3108333567,3108334591,3108335615,3108336639,3108337151,3108337407,3108338687,3108339711,3108340735,3108341759,3108342783,3108343807,3108344831,3108345855,3108346879,3108347903,3108348927,3108349951,3108350207,3108350463,3108350975,3108351999,3108354047,3108355071,3108356095,3108358143,3108359167,3108360191,3108361215,3108362239,3108363263,3108364287,3108365311,3108366335,3108367359,3108368383,3108368895,3108369151,3108369407,3108370431,3108371455,3108372479,3108373503,3108374527,3108375551,3108376575,3108377599,3108378623,3108379647,3108380671,3108381695,3108382719,3108383743,3108384511,3108384767,3108385791,3108386815,3108387839,3108388863,3108389887,3108390911,3108391935,3108392959,3108393983,3108395007,3108396031,3108397055,3108398079,3108399103,3108400127,3108401151,3108402175,3108403199,3108404223,3108405247,3108406271,3108407295,3108408319,3108409343,3108410367,3108411391,3108412415,3108413439,3108413951,3108414463,3108415487,3108416511,3108417535,3108418559,3108419583,3108420607,3108421631,3108422655,3108423679,3108424703,3108425727,3108427775,3108428799,3108429823,3108430847,3108433919,3108434943,3108435967,3108436991,3108438015,3108439039,3108440063,3108441087,3108443135,3108444159,3108445183,3108446207,3108447231,3108448255,3108449279,3108450303,3108450559,3108450815,3108451327,3108452351,3108453375,3108454399,3108456447,3108457471,3108459519,3108460543,3108461567,3108462079,3108462335,3108462591,3108463615,3108464639,3108465663,3108466687,3108467711,3108468735,3108470783,3108471807,3108472831,3108473087,3108473343,3108473599,3108473855,3108474879,3108475391,3108475903,3108476927,3108477951,3108478975,3108479999,3108481023,3108482047,3108483071,3108484095,3108485119,3108486143,3108486655,3108486911,3108487167,3108488191,3108489215,3108490239,3108491263,3108492287,3108492799,3108493311,3108494335,3108495359,3108496383,3108497407,3108498431,3108499455,3108500479,3108501503,3108502527,3108503551,3108504575,3108505599,3108505855,3108506111,3108506367,3108506623,3108507647,3108508671,3108509695,3108510719,3108511743,3108512767,3108513791,3108514815,3108515839,3108516351,3108516863,3108517887,3108518911,3108519935,3108520959,3108523007,3108524031,3108525055,3108526079,3108527103,3108528127,3108529151,3108530175,3108531199,3108532223,3108533247,3108534271,3108534783,3108535039,3108536319,3108537087,3108537343,3108538367,3108539391,3108540415,3108541439,3108542463,3108543487,3108544511,3108546559,3108547583,3108548607,3108549631,3108550655,3108551679,3108552703,3108553727,3108554751,3108555775,3108556799,3108557823,3108558847,3108559871,3108560895,3108562943,3108563967,3108564991,3108566015,3108567039,3108568063,3108569087,3108570111,3108571135,3108572159,3108573183,3108574207,3108575231,3108576255,3108578303,3108579327,3108580351,3108581375,3108582399,3108582655,3108583423,3108584447,3108585471,3108586495,3108587263,3108587519,3108588543,3108589567,3108590591,3108591615,3108592639,3108593663,3108594687,3108597759,3108598015,3108598271,3108598527,3108598783,3108600831,3108601087,3108601343,3108601855,3108602879,3108603903,3108604927,3108605951,3108606975,3108609023,3108610047,3108611071,3108612095,3108615167,3108615679,3108616191,3108617215,3108618239,3108619263,3108620287,3108621311,3108622335,3108622847,3108623359,3108624383,3108624895,3108625151,3108625407,3108626175,3108626687,3108626943,3108627199,3108627455,3108628479,3108629503,3108630527,3108631295,3108631551,3108633599,3108634623,3108635647,3108636671,3108637695,3108638719,3108639743,3108639999,3108640767,3108641791,3108642815,3108643071,3108643839,3108644863,3108645887,3108646655,3108646911,3108647935,3108648447,3108648959,3108649215,3108649983,3108651007,3108652031,3108653055,3108653311,3108653567,3108654079,3108654591,3108654847,3108655103,3108656127,3108657151,3108657663,3108657919,3108658175,3108659199,3108660223,3108660735,3108661247,3108662271,3108676607,3108677631,3108678655,3108679679,3108680703,3108681727,3108682751,3108683775,3108684799,3108685823,3108686847,3108687871,3108688895,3108689919,3108690943,3108691199,3108691455,3108691711,3108691967,3108692991,3108694015,3108696063,3108697087,3108698111,3108699135,3108700159,3108701183,3108702207,3108703231,3108704255,3108705279,3108705791,3108706303,3108707327,3108708351,3108709375,3108710399,3108711423,3108712447,3108712703,3108712959,3108713471,3108714495,3108715519,3108716543,3108717567,3108718591,3108719615,3108720639,3108721663,3108723711,3108724735,3108725759,3108726783,3108727807,3108728831,3108729855,3108730879,3108731903,3108732927,3108733951,3108734719,3108734975,3108735999,3108737023,3108738047,3108739071,3108740095,3108741119,3108742143,3108743167,3108744191,3108744447,3108744703,3108745215,3108746239,3108747263,3108748287,3108749055,3108749311,3108750335,3108751359,3108752383,3108753407,3108754431,3108755455,3108756479,3108756735,3108756991,3108757247,3108757503,3108758527,3108759551,3108760575,3108761599,3108761855,3108762111,3108762623,3108763647,3108764671,3108765695,3108766719,3108767743,3108767999,3108768255,3108768511,3108768767,3108769791,3108770815,3108772863,3108773887,3108774911,3108775935,3108776959,3108779007,3108780031,3108782079,3108783103,3108784127,3108784639,3108784895,3108785151,3108785663,3108785919,3108786175,3108787199,3108788223,3108789247,3108790271,3108791295,3108792319,3108793343,3108794367,3108795391,3108796415,3108797439,3108798463,3108799487,3108800511,3108801535,3108802559,3108803583,3108803839,3108804095,3108804351,3108804607,3108805631,3108805887,3108806399,3108806655,3108808703,3108809727,3108810751,3108811775,3108812031,3108812287,3108812799,3108813823,3108814847,3108815871,3108817919,3108818943,3108819967,3108822015,3108823039,3108825087,3108826111,3108827135,3108827903,3108828159,3108829183,3108830207,3108831231,3108831487,3108831999,3108832255,3108833279,3108834303,3108835327,3108836351,3108837375,3108838399,3108839423,3108840447,3108841471,3108841727,3108842495,3108843519,3108844543,3108845567,3108846591,3108847615,3108848639,3108849663,3108850687,3108850943,3108851711,3108852735,3108853759,3108854783,3108855807,3108856063,3108856831,3108857855,3108858879,3108859903,3108860927,3108861951,3108862975,3108863999,3108865023,3108866047,3108866559,3108868095,3108869119,3108870143,3108871167,3108872191,3108873215,3108874239,3108875263,3108876287,3108877311,3108878335,3108879359,3108880383,3108881407,3108881663,3108882431,3108882687,3108883455,3108884479,3108885503,3108886527,3108887551,3108889599,3108890879,3108891647,3108893695,3108894719,3108894975,3108895743,3108896767,3108897791,3108899839,3108900863,3108901887,3108902911,3108903935,3108905983,3108907007,3108908031,3108909055,3108910079,3108911103,3108912127,3108913151,3108914175,3108915199,3108916223,3108916479,3108916735,3108917247,3108918271,3108919295,3108920319,3108921343,3108922367,3108923391,3108924415,3108927487,3108929535,3108930559,3108931583,3108932607,3108933631,3108934655,3108935679,3108936703,3108937727,3108938239,3108938495,3108938751,3108939775,3108940799,3108941055,3108941311,3108941823,3108942847,3108943871,3108944895,3108945919,3108946943,3108947967,3108948991,3108950015,3108951039,3108952063,3108953087,3108954111,3108955135,3108956159,3108956671,3108956927,3108957183,3108958207,3108959231,3108960255,3108961279,3108962303,3108963327,3108964351,3108965375,3108966399,3108967423,3108968447,3108969471,3108970495,3108971519,3108972543,3108973567,3108974591,3108975615,3108976639,3108977663,3108978687,3108979711,3108980735,3108980991,3108981247,3108981759,3108982783,3108983807,3108984063,3108984319,3108984575,3108984831,3108985855,3108986879,3108987903,3108988927,3108990975,3108991999,3108993023,3108994047,3108995071,3108996095,3108996607,3108997119,3108997631,3108997887,3108998143,3108998655,3108999167,3109000191,3109001215,3109002239,3109002751,3109003263,3109004287,3109005311,3109006335,3109007359,3109008383,3109009407,3109010431,3109011455,3109012479,3109013503,3109015551,3109016575,3109017599,3109018367,3109018623,3109019647,3109020671,3109021695,3109022719,3109023743,3109024767,3109025791,3109026815,3109027071,3109027839,3109028863,3109029887,3109030911,3109031935,3109032959,3109033983,3109035007,3109035263,3109035519,3109035775,3109036031,3109037055,3109037823,3109038079,3109039103,3109040127,3109041151,3109042175,3109043199,3109044223,3109045247,3109046271,3109047295,3109048319,3109049343,3109050367,3109050623,3109050879,3109051135,3109051391,3109052415,3109053439,3109054463,3109055487,3109056511,3109057535,3109058559,3109059583,3109059839,3109060095,3109060351,3109060607,3109061631,3109062655,3109063679,3109064703,3109065727,3109066751,3109067775,3109068799,3109069823,3109070847,3109071871,3109072895,3109073919,3109074943,3109075967,3109076991,3109078015,3109078271,3109078527,3109079039,3109080063,3109081087,3109082111,3109083135,3109084159,3109084927,3109085183,3109086207,3109087231,3109088255,3109088511,3109089279,3109090303,3109091327,3109092351,3109093375,3109095423,3109096447,3109097471,3109098495,3109099519,3109100543,3109101055,3109101567,3109102591,3109103615,3109104639,3109105663,3109106687,3109107711,3109108735,3109109759,3109111039,3109111295,3109111551,3109111807,3109112063,3109112319,3109112831,3109113855,3109115903,3109116927,3109117951,3109118463,3109118719,3109118975,3109119231,3109119487,3109119999,3109121023,3109122047,3109122559,3109123071,3109124095,3109125119,3109125631,3109125887,3109126143,3109127167,3109128191,3109129215,3109130239,3109130751,3109131263,3109132287,3109133311,3109134335,3109135359,3109136383,3109137407,3109137663,3109137919,3109138175,3109138431,3109139711,3109139967,3109140223,3109141503,3109143551,3109144575,3109145599,3109146623,3109146879,3109147135,3109148671,3109148927,3109149183,3109149439,3109149695,3109150719,3109151743,3109152767,3109153791,3109154815,3109155839,3109156863,3109157887,3109158911,3109159935,3109160959,3109161727,3109161983,3109163007,3109165055,3109166079,3109167103,3109168127,3109169151,3109170175,3109171199,3109171455,3109171711,3109172223,3109172991,3109173247,3109174271,3109175295,3109176319,3109177343,3109177855,3109179391,3109180415,3109181439,3109182463,3109183487,3109184511,3109185535,3109187583,3109188607,3109189631,3109190655,3109191167,3109191679,3109192703,3109193727,3109194751,3109195775,3109196799,3109197823,3109198335,3109198591,3109198847,3109199871,3109200383,3109200639,3109200895,3109201919,3109202943,3109203967,3109204991,3109206015,3109209087,3109210111,3109211135,3109212159,3109213183,3109213951,3109214207,3109215231,3109216255,3109217279,3109218303,3109219327,3109220351,3109221375,3109222399,3109223423,3109224447,3109225471,3109226495,3109227519,3109228543,3109229567,3109230591,3109231615,3109232639,3109233663,3109234687,3109234943,3109235711,3109236735,3109237759,3109238783,3109239807,3109240831,3109242879,3109243903,3109245951,3109246975,3109247999,3109249023,3109250047,3109251071,3109252095,3109253119,3109254143,3109255167,3109256191,3109257215,3109258239,3109259263,3109260287,3109260543,3109260799,3109261311,3109262335,3109263359,3109264383,3109265407,3109266431,3109267455,3109268479,3109269503,3109270527,3109272575,3109273599,3109274623,3109275647,3109276671,3109277695,3109278719,3109279231,3109279487,3109279743,3109280767,3109281791,3109282815,3109283071,3109283327,3109283583,3109283839,3109284095,3109284863,3109285887,3109286143,3109286399,3109286655,3109286911,3109287935,3109288959,3109289983,3109291007,3109292031,3109293055,3109294079,3109294335,3109294591,3109294847,3109295103,3109296127,3109297151,3109298175,3109299199,3109300223,3109301247,3109302271,3109303295,3109304319,3109305343,3109305599,3109305855,3109306111,3109306367,3109307135,3109307391,3109308415,3109309439,3109310463,3109311487,3109313535,3109314559,3109315583,3109316607,3109317631,3109318655,3109319679,3109320703,3109321727,3109322239,3109322495,3109322751,3109323775,3109324799,3109325823,3109326847,3109327871,3109328895,3109329919,3109330943,3109331455,3109331967,3109332991,3109334015,3109335039,3109336063,3109337087,3109339135,3109340159,3109341183,3109341695,3109342207,3109343231,3109344255,3109345279,3109346303,3109347327,3109347583,3109347839,3109348095,3109348351,3109349375,3109350399,3109351423,3109352447,3109353471,3109354495,3109355519,3109356543,3109357567,3109358079,3109358591,3109359615,3109360639,3109362687,3109364735,3109365759,3109366783,3109367807,3109368831,3109369855,3109371903,3109372927,3109373951,3109374975,3109375999,3109377023,3109379071,3109380095,3109380607,3109380863,3109381119,3109382143,3109383167,3109384191,3109385215,3109386239,3109386751,3109387263,3109388287,3109389311,3109390335,3109391359,3109392383,3109393407,3109394431,3109395455,3109396479,3109397503,3109398527,3109399551,3109400575,3109402623,3109403647,3109404671,3109405695,3109406719,3109407743,3109408767,3109409791,3109410815,3109411839,3109412863,3109413887,3109414911,3109415935,3109416959,3109417471,3109417727,3109417983,3109419007,3109420031,3109420287,3109420543,3109421055,3109422079,3109423103,3109423615,3109423871,3109424127,3109425151,3109426175,3109428223,3109429247,3109430271,3109431295,3109431807,3109432319,3109432831,3109433087,3109433343,3109435135,3109435391,3109436415,3109437439,3109438463,3109439487,3109440511,3109441535,3109442559,3109443583,3109444607,3109445631,3109446655,3109448703,3109449727,3109453823,3109454847,3109455871,3109456895,3109457919,3109458943,3109459711,3109459967,3109460991,3109462015,3109463039,3109464063,3109465087,3109466111,3109467135,3109468159,3109468415,3109468671,3109468927,3109469183,3109470207,3109471231,3109472255,3109473279,3109474303,3109475071,3109475327,3109476351,3109477375,3109478399,3109478655,3109479423,3109479935,3109480447,3109481471,3109482495,3109483519,3109484543,3109485567,3109486591,3109487615,3109488639,3109489663,3109490687,3109491711,3109492735,3109493759,3109494783,3109495807,3109498879,3109499903,3109500927,3109501951,3109502207,3109502463,3109502719,3109502975,3109503999,3109505023,3109506047,3109507071,3109508095,3109509119,3109511167,3109512191,3109513215,3109514239,3109515263,3109516287,3109517311,3109518335,3109519359,3109520383,3109521407,3109522431,3109523455,3109524479,3109524991,3109525503,3109527551,3109528575,3109529599,3109530367,3109530623,3109530879,3109531135,3109531391,3109531647,3109532671,3109533695,3109534719,3109535743,3109537791,3109538815,3109539839,3109541887,3109542399,3109542911,3109544959,3109545983,3109547007,3109547263,3109548031,3109549055,3109550079,3109551103,3109551871,3109552127,3109553151,3109554175,3109554431,3109554687,3109554943,3109555199,3109556223,3109557247,3109558271,3109559295,3109560319,3109561343,3109561855,3109562367,3109563391,3109564415,3109565439,3109566463,3109567487,3109568511,3109569535,3109570559,3109571583,3109572607,3109573631,3109574655,3109575679,3109576703,3109577215,3109577727,3109577983,3109578239,3109578495,3109578751,3109579775,3109580799,3109581823,3109582847,3109583871,3109584895,3109585919,3109586943,3109587967,3109588991,3109590015,3109591039,3109592063,3109594111,3109594623,3109595135,3109596159,3109597183,3109598207,3109599231,3109599743,3109599999,3109600255,3109601279,3109602303,3109603327,3109604351,3109605119,3109605375,3109606399,3109607423,3109608447,3109610495,3109611519,3109612543,3109613567,3109614591,3109615615,3109616639,3109617663,3109618687,3109619711,3109621759,3109622783,3109623039,3109623295,3109623551,3109623807,3109624831,3109625343,3109625599,3109625855,3109626879,3109627903,3109628415,3109628927,3109629951,3109630975,3109631999,3109633023,3109634047,3109635071,3109635327,3109636095,3109637119,3109637375,3109637631,3109637887,3109639167,3109640191,3109641215,3109641727,3109641983,3109642239,3109642495,3109642751,3109643007,3109643263,3109644031,3109644287,3109646335,3109647359,3109648383,3109649407,3109650431,3109651455,3109652479,3109653503,3109654527,3109655551,3109656575,3109657599,3109658623,3109659647,3109661695,3109662719,3109663743,3109664767,3109665791,3109666815,3109667839,3109668863,3109669887,3109670143,3109670399,3109670655,3109670911,3109671935,3109672959,3109673215,3109673471,3109673727,3109673983,3109675007,3109677055,3109678079,3109679103,3109680127,3109681151,3109681407,3109681663,3109681919,3109682175,3109683199,3109684223,3109685247,3109686271,3109687295,3109688319,3109689343,3109690367,3109691391,3109692415,3109693439,3109694463,3109695487,3109696511,3109697535,3109698559,3109698815,3109699071,3109699583,3109700607,3109701631,3109702655,3109703679,3109704703,3109705727,3109706751,3109707775,3109708799,3109709823,3109710847,3109711871,3109712895,3109713919,3109714943,3109715967,3109716991,3109718015,3109719039,3109720063,3109721087,3109722111,3109723135,3109725183,3109726207,3109727231,3109728255,3109729279,3109730303,3109731327,3109732351,3109733375,3109734399,3109735423,3109737471,3109738495,3109738751,3109739007,3109739263,3109739519,3109740543,3109741567,3109743615,3109744639,3109745151,3109745407,3109745663,3109746687,3109747711,3109748223,3109748735,3109749247,3109749503,3109749759,3109750783,3109751039,3109751295,3109751807,3109752831,3109753855,3109754879,3109755903,3109756415,3109756927,3109757439,3109757695,3109757951,3109758975,3109759999,3109762047,3109763071,3109765119,3109766143,3109766399,3109766655,3109766911,3109767167,3109767679,3109768191,3109769215,3109770239,3109771263,3109772287,3109773311,3109774335,3109775359,3109776383,3109777407,3109778431,3109779455,3109780735,3109780991,3109781247,3109781503,3109782527,3109783551,3109784575,3109785599,3109786623,3109787647,3109788671,3109789695,3109790719,3109792767,3109793791,3109795839,3109796863,3109797887,3109798911,3109799935,3109800959,3109801983,3109803007,3109804031,3109805055,3109807103,3109808127,3109808383,3109808639,3109808895,3109809151,3109810175,3109811199,3109812223,3109813247,3109814271,3109815295,3109817343,3109818367,3109819391,3109820415,3109820671,3109820927,3109821183,3109821439,3109822463,3109823487,3109824511,3109825535,3109825791,3109826047,3109826303,3109826559,3109827583,3109828607,3109829631,3109830655,3109831679,3109833215,3109833471,3109833727,3109834751,3109835775,3109836031,3109836287,3109836799,3109837823,3109838847,3109839871,3109840895,3109841919,3109842943,3109843967,3109844991,3109845247,3109845503,3109846015,3109846271,3109847039,3109848063,3109849087,3109852159,3109853183,3109854207,3109855231,3109856255,3109857279,3109858303,3109859071,3109859327,3109860351,3109861375,3109862399,3109863423,3109864447,3109864959,3109865215,3109865471,3109866495,3109867775,3109868031,3109868287,3109868543,3109869567,3109870591,3109871615,3109872639,3109872895,3109873151,3109874687,3109875199,3109875455,3109875711,3109876735,3109877759,3109878783,3109879039,3109879295,3109879551,3109879807,3109880319,3109880575,3109880831,3109881087,3109881343,3109881599,3109881855,3109882879,3109883903,3109884159,3109884415,3109884927,3109885951,3109886975,3109887999,3109888255,3109888511,3109888767,3109889023,3109890047,3109891071,3109892095,3109893119,3109894143,3109895167,3109896191,3109897215,3109898239,3109899263,3109900287,3109901311,3109902335,3109903359,3109904383,3109905407,3109906431,3109907455,3109908479,3109909503,3109910527,3109911551,3109912575,3109913599,3109914623,3109916671,3109917695,3109918719,3109919743,3109920767,3109921791,3109922815,3109923839,3109924095,3109924351,3109924607,3109924863,3109925887,3109926143,3109926655,3109926911,3109927935,3109928959,3109929983,3109931007,3109932031,3109933055,3109934079,3109935103,3109936127,3109937151,3109938175,3109938431,3109938687,3109938943,3109939199,3109940223,3109941247,3109942271,3109943295,3109944319,3109945343,3109946367,3109947391,3109948415,3109949439,3109949695,3109949951,3109950463,3109951487,3109953023,3109953279,3109953535,3109954559,3109955583,3109956607,3109957631,3109958655,3109959679,3109960703,3109961727,3109961983,3109962495,3109962751,3109963775,3109964799,3109965823,3109966847,3109967871,3109968895,3109969919,3109970943,3109971967,3109972991,3109974015,3109975039,3109976063,3109977087,3109978111,3109979135,3109980159,3109981183,3109981695,3109981951,3109982207,3109984255,3109985279,3109986303,3109987327,3109987839,3109988095,3109988351,3109989375,3109990399,3109991423,3109992447,3109993471,3109993727,3109993983,3109994239,3109994495,3109994751,3109995007,3109995263,3109996543,3109997567,3109998591,3109999615,3110000639,3110001663,3110002687,3110003711,3110003967,3110004735,3110005759,3110006783,3110007807,3110008831,3110009855,3110010879,3110011903,3110012927,3110013951,3110014975,3110015487,3110015999,3110017023,3110018047,3110018303,3110018559,3110019071,3110020095,3110021119,3110022143,3110023167,3110024191,3110025215,3110026239,3110027263,3110027519,3110027775,3110028031,3110028287,3110029311,3110030335,3110031359,3110032383,3110033407,3110035455,3110036479,3110037503,3110038527,3110039551,3110040575,3110041599,3110042623,3110043647,3110044671,3110046719,3110046975,3110047743,3110048767,3110049791,3110050815,3110051071,3110051583,3110051839,3110052863,3110054911,3110055935,3110056959,3110057983,3110059007,3110059519,3110061055,3110062079,3110063103,3110064127,3110065151,3110066175,3110067199,3110068223,3110069247,3110069503,3110069759,3110070015,3110070271,3110073343,3110074367,3110075391,3110076415,3110077439,3110078463,3110079487,3110080511,3110081535,3110082559,3110083583,3110084607,3110085631,3110085887,3110086143,3110086399,3110086655,3110087167,3110087679,3110088703,3110089727,3110090751,3110091775,3110093823,3110094847,3110095871,3110096895,3110097151,3110097407,3110097663,3110097919,3110098943,3110099967,3110100991,3110102015,3110103039,3110104063,3110105087,3110106111,3110107135,3110108159,3110109183,3110110207,3110110463,3110110719,3110111231,3110112255,3110113279,3110114047,3110114303,3110115327,3110116351,3110117375,3110117631,3110117887,3110118143,3110118399,3110119423,3110119935,3110120447,3110121471,3110122495,3110123519,3110124543,3110125567,3110126591,3110127615,3110128639,3110129663,3110130687,3110131711,3110132735,3110133759,3110134783,3110135807,3110136831,3110137855,3110138879,3110139135,3110139391,3110139647,3110139903,3110140927,3110141951,3110142207,3110142463,3110142975,3110143999,3110145023,3110146047,3110147071,3110147327,3110147583,3110148095,3110149119,3110150143,3110151167,3110152191,3110153215,3110154239,3110155263,3110156287,3110157311,3110158335,3110159359,3110160383,3110161407,3110161919,3110162175,3110162431,3110162687,3110162943,3110163455,3110164479,3110164991,3110165503,3110166527,3110167551,3110168575,3110169599,3110170623,3110171647,3110172671,3110173695,3110174719,3110175743,3110176767,3110177791,3110178047,3110178559,3110178815,3110179839,3110180095,3110180351,3110180607,3110181887,3110182911,3110183935,3110184959,3110185983,3110189055,3110190079,3110193151,3110194175,3110195199,3110196223,3110196735,3110196991,3110197247,3110199295,3110200319,3110201343,3110202367,3110203391,3110204415,3110204671,3110205439,3110206463,3110207487,3110208511,3110209535,3110210559,3110211327,3110211583,3110212607,3110213631,3110214655,3110215679,3110216703,3110217215,3110217471,3110217727,3110217983,3110218239,3110218495,3110218751,3110219775,3110220799,3110221823,3110222847,3110223871,3110224895,3110225919,3110226431,3110226943,3110227967,3110230015,3110231039,3110232063,3110233087,3110234111,3110234367,3110234879,3110235135,3110236159,3110237183,3110238207,3110239231,3110240255,3110241279,3110242303,3110243327,3110244351,3110244607,3110245375,3110246399,3110247423,3110247679,3110247935,3110248191,3110248447,3110248703,3110249471,3110250495,3110250751,3110251007,3110251263,3110251519,3110252031,3110254591,3110255615,3110256639,3110257663,3110259711,3110260735,3110261759,3110262783,3110263807,3110265855,3110266879,3110267903,3110269951,3110270975,3110271999,3110273023,3110274047,3110277119,3110277631,3110278143,3110278655,3110278911,3110279167,3110281215,3110282239,3110283263,3110284287,3110285311,3110286335,3110288383,3110289407,3110291455,3110292479,3110293503,3110294527,3110295551,3110296575,3110297599,3110298111,3110298623,3110299647,3110300671,3110300927,3110301183,3110301695,3110302719,3110303743,3110304767,3110305791,3110306815,3110307583,3110307839,3110308863,3110309375,3110309887,3110310911,3110311935,3110315007,3110316031,3110317055,3110318079,3110319103,3110320127,3110320639,3110320895,3110321151,3110322175,3110323199,3110324223,3110325247,3110326271,3110327295,3110328319,3110329343,3110329599,3110330111,3110330367,3110331391,3110332415,3110333439,3110334463,3110335487,3110336511,3110337535,3110338559,3110339071,3110339583,3110340607,3110341631,3110343679,3110344703,3110345727,3110346751,3110347775,3110348799,3110349823,3110350847,3110351871,3110352895,3110353407,3110353663,3110353919,3110354943,3110355967,3110356991,3110358015,3110359039,3110360063,3110360575,3110360831,3110361087,3110362111,3110363135,3110364159,3110366207,3110371327,3110372607,3110373119,3110373375,3110374399,3110375423,3110376447,3110377471,3110378495,3110379007,3110379263,3110379519,3110380543,3110381567,3110381823,3110382335,3110382591,3110382847,3110383103,3110383359,3110383615,3110384639,3110385663,3110386687,3110387711,3110388735,3110389759,3110390783,3110391807,3110392063,3110392319,3110392831,3110393087,3110393343,3110393599,3110393855,3110394879,3110395903,3110396927,3110397951,3110398975,3110399999,3110401023,3110402047,3110403071,3110404095,3110405119,3110406143,3110407167,3110407423,3110407679,3110408191,3110409215,3110409983,3110410239,3110411263,3110412287,3110413311,3110413567,3110414079,3110414335,3110415359,3110416383,3110417407,3110418431,3110419455,3110420479,3110421503,3110422527,3110423551,3110425599,3110426623,3110427647,3110428671,3110429695,3110430719,3110430975,3110431231,3110431743,3110432767,3110433791,3110434815,3110435839,3110436863,3110437887,3110438911,3110439167,3110439423,3110439679,3110439935,3110440959,3110441471,3110441983,3110443007,3110444031,3110445055,3110447103,3110448127,3110449151,3110450175,3110450431,3110450687,3110451199,3110452223,3110453247,3110454271,3110455551,3110455807,3110456319,3110457343,3110458367,3110459391,3110459647,3110459903,3110460415,3110461439,3110462463,3110463487,3110464511,3110465535,3110466559,3110468607,3110469631,3110470655,3110471679,3110472703,3110473727,3110474751,3110475775,3110476799,3110477823,3110478847,3110479871,3110480895,3110481919,3110482943,3110483967,3110487039,3110488063,3110489087,3110490111,3110491135,3110491391,3110491647,3110491903,3110492159,3110493183,3110494207,3110495231,3110496255,3110497279,3110498303,3110498815,3110499071,3110499327,3110500351,3110501375,3110502399,3110503423,3110504447,3110504703,3110504959,3110505471,3110506495,3110507519,3110508543,3110509567,3110510591,3110511615,3110512639,3110512895,3110513151,3110514687,3110515711,3110516735,3110517759,3110518783,3110521855,3110523903,3110524927,3110525183,3110525439,3110525695,3110525951,3110526975,3110527999,3110529023,3110530047,3110531071,3110532095,3110534143,3110535167,3110536191,3110536703,3110537215,3110538239,3110539263,3110540287,3110541311,3110542335,3110542591,3110542847,3110543103,3110543359,3110544383,3110545407,3110546431,3110547455,3110547967,3110548223,3110548479,3110549503,3110551039,3110551295,3110551551,3110552063,3110552575,3110553599,3110554623,3110555647,3110556671,3110557695,3110558719,3110559743,3110560767,3110561279,3110561535,3110561791,3110562815,3110563327,3110563583,3110563839,3110564863,3110565375,3110565631,3110565887,3110566911,3110567935,3110568959,3110569983,3110571007,3110572031,3110573055,3110574079,3110575103,3110576127,3110578175,3110579199,3110580223,3110581247,3110582271,3110583295,3110584319,3110585343,3110586367,3110587135,3110587391,3110588415,3110590463,3110591487,3110592511,3110593535,3110594559,3110595583,3110597631,3110599679,3110600191,3110600703,3110601727,3110602751,3110603775,3110604031,3110604287,3110604799,3110605823,3110606847,3110607871,3110608895,3110609151,3110610943,3110611967,3110612991,3110615039,3110616063,3110616831,3110617087,3110618111,3110619135,3110620159,3110621183,3110622207,3110623231,3110624255,3110625279,3110626303,3110627327,3110628351,3110629375,3110629631,3110630143,3110630399,3110631423,3110632447,3110633471,3110633727,3110634239,3110635007,3110635519,3110635775,3110636031,3110636287,3110636543,3110637567,3110638591,3110639615,3110640639,3110641663,3110642687,3110643711,3110644735,3110644991,3110645247,3110645759,3110646783,3110647807,3110648063,3110648319,3110648575,3110648831,3110649087,3110649343,3110649855,3110650111,3110650367,3110650623,3110650879,3110651903,3110652927,3110653951,3110654975,3110655999,3110657023,3110658047,3110659071,3110661119,3110662143,3110663167,3110664191,3110664703,3110664959,3110665215,3110666239,3110666495,3110667007,3110667263,3110668031,3110668287,3110668543,3110668799,3110669311,3110671359,3110672383,3110673407,3110674431,3110675455,3110676479,3110677503,3110677759,3110678015,3110678271,3110678527,3110679551,3110680575,3110681087,3110681343,3110681599,3110682623,3110683647,3110684671,3110685695,3110686719,3110687743,3110688767,3110689791,3110690815,3110691583,3110691839,3110692863,3110693887,3110694143,3110694911,3110695935,3110696447,3110696703,3110696959,3110697983,3110699007,3110700031,3110701055,3110702079,3110703103,3110704127,3110705151,3110706175,3110707199,3110708223,3110708479,3110708735,3110709247,3110710271,3110711295,3110712319,3110713343,3110714367,3110714623,3110715135,3110715391,3110716415,3110717439,3110718463,3110719487,3110721535,3110723583,3110724607,3110725631,3110726655,3110726911,3110727679,3110728703,3110729727,3110730239,3110730495,3110730751,3110734847,3110735871,3110736895,3110737919,3110738943,3110739967,3110740991,3110742015,3110743039,3110744063,3110745087,3110746111,3110747135,3110748159,3110749183,3110750207,3110751231,3110752255,3110753279,3110754303,3110755327,3110755583,3110755839,3110756095,3110756351,3110756607,3110757375,3110758399,3110759423,3110760447,3110761471,3110762495,3110763007,3110763263,3110763519,3110764543,3110765567,3110765823,3110766079,3110766335,3110766591,3110767615,3110768639,3110769663,3110770687,3110771711,3110772735,3110773759,3110774783,3110775807,3110776831,3110777855,3110778879,3110779903,3110780927,3110781439,3110781951,3110782975,3110783999,3110785023,3110786047,3110787071,3110788095,3110789119,3110790143,3110791167,3110791423,3110791679,3110791935,3110792191,3110793215,3110793471,3110793727,3110793983,3110794239,3110795263,3110796287,3110797311,3110798335,3110799359,3110800383,3110801407,3110802431,3110803455,3110804479,3110806015,3110806527,3110809599,3110810623,3110811647,3110812671,3110813439,3110813695,3110814719,3110815743,3110816511,3110816767,3110817791,3110818815,3110819839,3110820863,3110821887,3110822911,3110823935,3110824959,3110825983,3110827007,3110829055,3110831103,3110832127,3110833151,3110834175,3110836223,3110837247,3110838271,3110839295,3110840319,3110841343,3110842367,3110843391,3110844415,3110845439,3110846463,3110847487,3110847999,3110848255,3110848511,3110849535,3110850559,3110851583,3110852607,3110853631,3110854655,3110855167,3110855679,3110856703,3110857727,3110857983,3110858239,3110858495,3110858751,3110859775,3110861823,3110862847,3110864895,3110865919,3110866943,3110868991,3110870015,3110871039,3110872063,3110873087,3110874111,3110875135,3110876159,3110877183,3110878207,3110879231,3110880255,3110881279,3110883327,3110884863,3110886399,3110887423,3110888447,3110889471,3110889727,3110889983,3110890239,3110890495,3110891519,3110893567,3110894591,3110894847,3110895103,3110895359,3110895615,3110896639,3110897663,3110898687,3110899711,3110900735,3110901247,3110901503,3110901759,3110902783,3110903807,3110904831,3110905855,3110906879,3110907903,3110908927,3110909951,3110910975,3110911999,3110914047,3110915071,3110915583,3110916095,3110917119,3110918143,3110919167,3110920191,3110921215,3110922239,3110923263,3110924287,3110925311,3110926335,3110927359,3110928383,3110929407,3110930431,3110931455,3110932479,3110933503,3110934527,3110935551,3110936575,3110937599,3110938623,3110940671,3110940927,3110941183,3110941439,3110942719,3110943743,3110944767,3110945791,3110946815,3110947839,3110948863,3110949887,3110950655,3110950911,3110951935,3110952959,3110953983,3110955007,3110956031,3110957055,3110958079,3110959103,3110960127,3110961151,3110962175,3110965247,3110966271,3110967295,3110969343,3110969599,3110969855,3110970111,3110970367,3110971391,3110972415,3110973439,3110974463,3110975487,3110977535,3110978559,3110979583,3110980607,3110982655,3110983679,3110986751,3110987775,3110988799,3110989055,3110989311,3110989567,3110989823,3110990591,3110990847,3110992895,3110993407,3110993663,3110993919,3110994943,3110995967,3110996991,3110998015,3110999039,3111000063,3111001087,3111002111,3111003135,3111004159,3111005183,3111006207,3111007231,3111008255,3111009279,3111009535,3111009791,3111010303,3111012351,3111013375,3111014399,3111015423,3111016447,3111017471,3111017727,3111018239,3111018495,3111019519,3111020543,3111021567,3111022591,3111023615,3111024639,3111024895,3111025151,3111025407,3111026687,3111027711,3111027967,3111028479,3111028735,3111029759,3111031807,3111032831,3111033343,3111033855,3111035903,3111036927,3111037951,3111038975,3111041023,3111042047,3111043071,3111044095,3111045119,3111046143,3111047167,3111048191,3111049215,3111050239,3111051263,3111052287,3111053311,3111054335,3111055359,3111056383,3111057407,3111058431,3111059455,3111060479,3111061503,3111063551,3111064575,3111065599,3111066111,3111066367,3111066623,3111067647,3111068671,3111069695,3111070719,3111071743,3111072767,3111074815,3111075839,3111076863,3111077887,3111078911,3111079935,3111080959,3111081983,3111083007,3111084031,3111085055,3111086079,3111087103,3111088127,3111089151,3111090175,3111091199,3111092223,3111093247,3111094271,3111095295,3111096319,3111097343,3111098367,3111099391,3111099647,3111100159,3111100415,3111101439,3111102463,3111103487,3111104511,3111105535,3111106559,3111107583,3111107839,3111108607,3111109631,3111110655,3111111679,3111112703,3111113727,3111114751,3111115775,3111116799,3111117823,3111118847,3111119615,3111119871,3111120895,3111121919,3111122943,3111123967,3111126015,3111127039,3111128063,3111129087,3111130111,3111131135,3111132159,3111133183,3111135231,3111136255,3111137279,3111139071,3111139327,3111139839,3111140095,3111140351,3111141375,3111142399,3111143423,3111143679,3111143935,3111144191,3111144447,3111145471,3111145727,3111145983,3111146239,3111146495,3111149567,3111150591,3111150847,3111151615,3111152639,3111153663,3111154687,3111155711,3111156735,3111157759,3111158271,3111158783,3111159807,3111160831,3111161855,3111162879,3111163903,3111164927,3111165951,3111166975,3111167999,3111169023,3111170047,3111172095,3111173119,3111174143,3111175167,3111176191,3111177215,3111178239,3111179263,3111180287,3111181311,3111182335,3111183359,3111184383,3111185407,3111186431,3111187455,3111188479,3111188735,3111188991,3111189247,3111189503,3111190527,3111191551,3111192575,3111192831,3111193343,3111193599,3111194623,3111195647,3111196671,3111197695,3111198719,3111199743,3111200767,3111201791,3111202815,3111203839,3111204863,3111205887,3111206911,3111207423,3111207935,3111208959,3111209727,3111209983,3111211007,3111212031,3111214079,3111215103,3111216127,3111217151,3111218175,3111219199,3111220223,3111221247,3111223295,3111224319,3111225343,3111226367,3111227391,3111230463,3111231487,3111232511,3111233535,3111234559,3111235583,3111236607,3111237631,3111238655,3111239679,3111240703,3111241727,3111242751,3111243775,3111244799,3111245823,3111246847,3111247359,3111247615,3111247871,3111248895,3111249919,3111250943,3111251967,3111252991,3111254015,3111255039,3111256063,3111257087,3111259135,3111260159,3111260415,3111260927,3111261183,3111262207,3111264255,3111264511,3111264767,3111265023,3111265279,3111266303,3111267327,3111268351,3111269119,3111269375,3111270399,3111271423,3111272447,3111273471,3111274495,3111275007,3111275263,3111275519,3111276031,3111276287,3111276543,3111277567,3111278591,3111279615,3111280639,3111281663,3111282687,3111283711,3111284735,3111285759,3111286783,3111287039,3111287295,3111287551,3111287807,3111288831,3111289855,3111290879,3111291903,3111292927,3111293439,3111293951,3111294207,3111294463,3111294719,3111294975,3111295999,3111297023,3111298047,3111299071,3111300095,3111301119,3111302143,3111303167,3111304191,3111305215,3111306239,3111307263,3111308543,3111308799,3111309311,3111310335,3111311359,3111312383,3111313407,3111313663,3111313919,3111314175,3111314431,3111314943,3111315455,3111316479,3111317503,3111318527,3111319551,3111320575,3111321599,3111322623,3111323647,3111324671,3111324927,3111325183,3111325695,3111326719,3111327743,3111328767,3111329791,3111330815,3111331839,3111332863,3111333887,3111334911,3111335935,3111336959,3111337983,3111339007,3111340031,3111341055,3111342079,3111343103,3111344127,3111344639,3111345151,3111346175,3111347199,3111348223,3111349247,3111350271,3111351295,3111353343,3111355135,3111355391,3111356415,3111357439,3111357695,3111357951,3111358463,3111359231,3111359487,3111360511,3111361535,3111362559,3111363583,3111364607,3111365631,3111367679,3111368703,3111369727,3111370751,3111371775,3111373823,3111374079,3111374335,3111374591,3111374847,3111375871,3111376895,3111377919,3111378943,3111379967,3111380991,3111382015,3111383039,3111383551,3111384063,3111387135,3111388159,3111389183,3111390207,3111390719,3111390975,3111391231,3111392255,3111394303,3111395327,3111396351,3111397375,3111398399,3111399423,3111400447,3111402495,3111402751,3111403007,3111403263,3111403519,3111404031,3111404543,3111405055,3111405567,3111406591,3111407615,3111408639,3111409663,3111410687,3111411711,3111411967,3111412223,3111412479,3111412735,3111412991,3111413247,3111414783,3111415807,3111416063,3111416575,3111416831,3111417087,3111417343,3111417599,3111417855,3111418879,3111419903,3111421951,3111422975,3111423999,3111425023,3111426047,3111427071,3111428095,3111429119,3111430399,3111430655,3111432191,3111433215,3111434239,3111436287,3111437311,3111439359,3111440383,3111441407,3111442431,3111443455,3111444479,3111445503,3111446527,3111447295,3111447551,3111448575,3111449599,3111451647,3111452671,3111453695,3111454719,3111455743,3111456767,3111457791,3111458815,3111459839,3111460863,3111461887,3111462911,3111463935,3111464959,3111465983,3111467007,3111469055,3111470079,3111471103,3111473151,3111474175,3111475199,3111475711,3111476223,3111477247,3111477503,3111477759,3111478015,3111478271,3111479295,3111480319,3111481343,3111482367,3111482623,3111482879,3111483391,3111484415,3111485439,3111486463,3111487487,3111488511,3111490559,3111491583,3111493631,3111494655,3111495679,3111496703,3111497727,3111498495,3111498751,3111499775,3111500799,3111501823,3111502847,3111504895,3111505919,3111506943,3111507967,3111508991,3111510015,3111510271,3111510527,3111510783,3111511039,3111511551,3111511807,3111512063,3111513087,3111514111,3111515135,3111516159,3111518207,3111519231,3111520255,3111521279,3111522303,3111523327,3111524351,3111525375,3111526399,3111527423,3111528447,3111529471,3111530495,3111531519,3111533567,3111534079,3111534335,3111534591,3111535615,3111536639,3111537663,3111538687,3111539711,3111540735,3111541759,3111542783,3111543807,3111544831,3111545855,3111546879,3111547903,3111548159,3111548415,3111548671,3111548927,3111549951,3111550207,3111550463,3111550719,3111550975,3111551999,3111553023,3111554047,3111555071,3111556095,3111557119,3111558143,3111559167,3111560191,3111561215,3111562239,3111563263,3111564287,3111565311,3111566335,3111567359,3111568383,3111569407,3111570431,3111571455,3111572479,3111573503,3111574527,3111575551,3111576575,3111577599,3111578623,3111579647,3111580671,3111581695,3111582719,3111583743,3111584767,3111585791,3111586815,3111587839,3111588863,3111589887,3111590911,3111591935,3111592959,3111593983,3111594239,3111594495,3111595007,3111596031,3111597055,3111598079,3111599103,3111600127,3111601151,3111602175,3111603199,3111604223,3111605247,3111606271,3111606527,3111607295,3111608319,3111609343,3111610367,3111611391,3111612415,3111613439,3111614463,3111615487,3111616511,3111617535,3111618559,3111619583,3111620095,3111620351,3111620607,3111621631,3111622655,3111623679,3111624703,3111625727,3111626751,3111627775,3111628799,3111629823,3111630847,3111631871,3111634175,3111634687,3111634943,3111636991,3111638015,3111639039,3111639551,3111639807,3111640063,3111640319,3111640831,3111641087,3111643135,3111644159,3111645183,3111646207,3111647231,3111648255,3111648511,3111648767,3111649023,3111649279,3111650303,3111650815,3111651071,3111651327,3111652351,3111653375,3111653631,3111654911,3111655167,3111655423,3111656447,3111657471,3111657983,3111658239,3111658495,3111659519,3111660543,3111661567,3111662591,3111663615,3111664639,3111665663,3111666687,3111667711,3111668735,3111669759,3111670783,3111671807,3111672831,3111673855,3111674879,3111675903,3111676927,3111677951,3111678975,3111679231,3111679743,3111679999,3111681023,3111682047,3111683071,3111684095,3111685119,3111685375,3111685631,3111685887,3111686143,3111687167,3111687423,3111687679,3111687935,3111688191,3111689215,3111690239,3111691263,3111692287,3111693311,3111694335,3111695359,3111695615,3111695871,3111696127,3111696383,3111698431,3111701503,3111702527,3111713791,3111714815,3111715839,3111716863,3111717887,3111718911,3111719935,3111720959,3111721983,3111723007,3111725055,3111726079,3111727103,3111728127,3111729151,3111730175,3111731199,3111732223,3111732991,3111734271,3111735295,3111736319,3111737343,3111738367,3111739391,3111740415,3111741439,3111742463,3111743487,3111744511,3111745279,3111746559,3111747583,3111748607,3111748863,3111749119,3111749631,3111750655,3111751679,3111752703,3111753727,3111754239,3111754495,3111754751,3111755775,3111756799,3111757823,3111758079,3111758335,3111758591,3111758847,3111759871,3111760895,3111761919,3111762943,3111763967,3111766015,3111767039,3111768063,3111769087,3111770111,3111771135,3111772159,3111772671,3111772927,3111773183,3111774207,3111775231,3111776255,3111778303,3111779327,3111780351,3111780607,3111781375,3111782399,3111783423,3111784447,3111785471,3111786495,3111787519,3111788543,3111789567,3111790079,3111790335,3111790591,3111791615,3111792639,3111793663,3111794687,3111795711,3111796735,3111798783,3111799807,3111800831,3111801855,3111802879,3111803903,3111804927,3111805951,3111806975,3111807999,3111809023,3111810047,3111811071,3111812095,3111814143,3111815167,3111815423,3111816191,3111816447,3111817215,3111819263,3111821311,3111822335,3111823103,3111823359,3111824383,3111825407,3111826431,3111827455,3111828479,3111829503,3111830527,3111831551,3111832575,3111832831,3111833087,3111833343,3111833599,3111836671,3111837439,3111837695,3111838719,3111839743,3111840767,3111841791,3111842815,3111843839,3111844863,3111845887,3111846911,3111847935,3111848959,3111849983,3111851007,3111852031,3111852287,3111852543,3111853055,3111854079,3111855103,3111856127,3111858175,3111859199,3111859455,3111859711,3111859967,3111860223,3111861247,3111862271,3111863295,3111864319,3111865343,3111866367,3111867391,3111868415,3111869439,3111870463,3111871487,3111871999,3111872255,3111873535,3111874559,3111875583,3111876607,3111877631,3111878655,3111879679,3111880703,3111881727,3111882751,3111883775,3111884799,3111886847,3111887871,3111888895,3111889919,3111890943,3111891967,3111892991,3111894015,3111895039,3111896063,3111897087,3111899135,3111900159,3111901183,3111901695,3111902207,3111903231,3111904255,3111905279,3111906303,3111908351,3111909375,3111910399,3111911423,3111912447,3111913471,3111914495,3111915519,3111916543,3111919615,3111920639,3111921663,3111922687,3111923711,3111924735,3111925759,3111927807,3111928063,3111928319,3111928575,3111928831,3111929855,3111930879,3111931903,3111932927,3111933951,3111935999,3111937023,3111939071,3111939583,3111940095,3111941119,3111942143,3111943167,3111944191,3111945215,3111946239,3111947263,3111948287,3111949311,3111950335,3111951359,3111952383,3111953407,3111954431,3111955455,3111956479,3111957503,3111958527,3111959551,3111960575,3111962623,3111963647,3111964671,3111965695,3111966719,3111967743,3111969791,3111970815,3111971839,3111972863,3111973119,3111973375,3111973631,3111973887,3111974911,3111975935,3111976959,3111977983,3111979007,3111980031,3111981055,3111982079,3111983103,3111984127,3111985151,3111986175,3111987199,3111988223,3111989247,3111989759,3111990015,3111990271,3111991295,3111992319,3111993343,3111994367,3111995391,3111996415,3111997439,3111998463,3111999487,3112000511,3112001535,3112002559,3112003583,3112004607,3112005631,3112005887,3112006655,3112007679,3112008703,3112009727,3112010751,3112011775,3112012799,3112013823,3112014847,3112017919,3112018943,3112019967,3112020991,3112022015,3112023039,3112024063,3112025087,3112026111,3112027135,3112028159,3112029183,3112030207,3112031231,3112032255,3112033279,3112034303,3112034559,3112034815,3112035327,3112036351,3112037375,3112038399,3112039423,3112047615,3112048639,3112049663,3112050687,3112050943,3112051199,3112051455,3112051711,3112052735,3112053759,3112054271,3112054783,3112055807,3112056831,3112057855,3112058879,3112059647,3112059903,3112060159,3112062975,3112063231,3112063487,3112063743,3112063999,3112065023,3112066047,3112067071,3112068095,3112069119,3112070143,3112071167,3112072191,3112072447,3112072703,3112073215,3112074239,3112075263,3112076287,3112076799,3112077311,3112077823,3112078335,3112079359,3112080383,3112080639,3112080895,3112081151,3112081407,3112082431,3112082687,3112083455,3112085503,3112086527,3112087551,3112088575,3112088831,3112089087,3112089599,3112090623,3112091647,3112092671,3112093695,3112094719,3112095743,3112096767,3112097791,3112098815,3112099839,3112100095,3112100607,3112100863,3112101887,3112102911,3112103167,3112103423,3112103679,3112103935,3112104959,3112105983,3112107007,3112108031,3112109055,3112110079,3112111103,3112112127,3112113151,3112114175,3112115199,3112116223,3112118271,3112119295,3112120319,3112121343,3112122367,3112123391,3112124415,3112125439,3112126463,3112127487,3112128511,3112129535,3112130559,3112131583,3112132607,3112133631,3112134655,3112136703,3112137727,3112138751,3112139775,3112140799,3112141823,3112142847,3112143871,3112144895,3112145919,3112146943,3112148991,3112150015,3112150527,3112151039,3112152063,3112153087,3112154111,3112155135,3112156159,3112157183,3112158207,3112159231,3112160255,3112161279,3112162303,3112163327,3112164351,3112165375,3112166399,3112167423,3112168447,3112169471,3112170495,3112171519,3112172543,3112173567,3112174335,3112174591,3112175615,3112175871,3112176127,3112176383,3112176639,3112177663,3112178687,3112179711,3112179967,3112180223,3112180479,3112181759,3112182783,3112183807,3112184063,3112184831,3112185855,3112186879,3112187903,3112188927,3112189951,3112190975,3112191999,3112193023,3112194047,3112195071,3112196095,3112197119,3112198143,3112199167,3112200191,3112200447,3112201215,3112202239,3112203263,3112205311,3112205823,3112206335,3112207359,3112207871,3112208383,3112209407,3112210431,3112211455,3112212479,3112213503,3112214527,3112215551,3112216575,3112217599,3112218623,3112219647,3112220671,3112221695,3112222719,3112223743,3112224767,3112225791,3112227839,3112228863,3112229119,3112229631,3112229887,3112230911,3112231167,3112231423,3112231679,3112231935,3112232703,3112232959,3112233471,3112233727,3112233983,3112235007,3112236031,3112236287,3112237055,3112237311,3112237567,3112237823,3112238335,3112238591,3112238847,3112239103,3112239871,3112240127,3112240895,3112241151,3112242175,3112242943,3112243199,3112244223,3112245247,3112246271,3112246527,3112246783,3112248575,3112248831,3112249343,3112250367,3112251391,3112252415,3112252671,3112253439,3112254463,3112255487,3112256511,3112257535,3112257791,3112258047,3112258303,3112258559,3112259071,3112259327,3112259583,3112260351,3112260607,3112261631,3112261887,3112262399,3112262655,3112263679,3112264447,3112265727,3112266751,3112267775,3112268799,3112269823,3112270079,3112270335,3112270847,3112271871,3112272895,3112273151,3112273919,3112274943,3112275967,3112276991,3112278015,3112278527,3112278783,3112279039,3112280063,3112280319,3112281087,3112282111,3112283135,3112283647,3112284159,3112285183,3112286207,3112286463,3112287743,3112288255,3112288511,3112289279,3112291327,3112292351,3112292863,3112293375,3112295423,3112297471,3112301567,3112302591,3112303615,3112304639,3112305663,3112305919,3112306175,3112307711,3112308735,3112309759,3112310783,3112312831,3112313855,3112314879,3112315903,3112316671,3112316927,3112317183,3112317439,3112317695,3112317951,3112318975,3112319999,3112320255,3112320511,3112320767,3112321023,3112322047,3112323071,3112324095,3112325119,3112326143,3112327167,3112327423,3112327679,3112327935,3112328191,3112329215,3112330239,3112331263,3112331519,3112332287,3112333311,3112334335,3112335359,3112336383,3112337407,3112338431,3112339455,3112340479,3112341503,3112342527,3112343551,3112344575,3112345599,3112346623,3112347647,3112349695,3112350719,3112351743,3112351999,3112352255,3112352511,3112352767,3112353791,3112354047,3112354303,3112354559,3112354815,3112355839,3112356863,3112357887,3112358143,3112358911,3112359935,3112360959,3112361983,3112364031,3112365055,3112366079,3112367103,3112367359,3112368127,3112369151,3112370175,3112371199,3112372223,3112373247,3112374271,3112375295,3112376319,3112377343,3112378367,3112379391,3112380415,3112382463,3112383487,3112384511,3112385535,3112386559,3112386815,3112387071,3112387327,3112388607,3112389631,3112390655,3112391679,3112394751,3112395775,3112396799,3112397823,3112400895,3112401919,3112403967,3112404991,3112407039,3112408063,3112411135,3112412159,3112414207,3112415231,3112416255,3112417279,3112419327,3112420351,3112421375,3112421631,3112421887,3112422143,3112422399,3112422655,3112423167,3112423423,3112424447,3112425471,3112426495,3112426751,3112427519,3112428543,3112430591,3112431615,3112432639,3112433663,3112435711,3112436735,3112437759,3112439807,3112440831,3112441855,3112442879,3112443903,3112444927,3112446975,3112447999,3112449023,3112450047,3112451071,3112452095,3112453119,3112454143,3112455167,3112455423,3112455679,3112455935,3112456191,3112457215,3112458239,3112459263,3112460031,3112460287,3112461311,3112462335,3112463359,3112464383,3112465407,3112466431,3112467455,3112467711,3112467967,3112468223,3112468479,3112469503,3112470527,3112472575,3112473599,3112474623,3112475647,3112476671,3112477695,3112478719,3112479743,3112480767,3112482815,3112483327,3112483583,3112483839,3112485887,3112486911,3112487935,3112488959,3112489983,3112491007,3112492031,3112494079,3112495103,3112496127,3112497151,3112498175,3112499199,3112500223,3112501247,3112502271,3112503295,3112505343,3112506367,3112507391,3112508415,3112509439,3112509695,3112509951,3112510207,3112510463,3112511487,3112512511,3112513535,3112514559,3112515583,3112516607,3112517631,3112518655,3112519679,3112519935,3112520191,3112520703,3112521727,3112522751,3112523775,3112524799,3112525823,3112526847,3112527871,3112528895,3112529919,3112530943,3112531967,3112532991,3112533247,3112533503,3112533759,3112534015,3112535039,3112536063,3112536319,3112536575,3112536831,3112537087,3112538111,3112539135,3112540159,3112541183,3112542207,3112543231,3112544255,3112545279,3112546303,3112547327,3112548351,3112549375,3112550399,3112551423,3112552447,3112553471,3112554495,3112554751,3112555007,3112555263,3112555519,3112556543,3112557567,3112558591,3112559615,3112560639,3112561663,3112562687,3112563711,3112564479,3112564735,3112565759,3112566783,3112567807,3112568831,3112569855,3112571903,3112572927,3112573951,3112574975,3112577023,3112578047,3112579071,3112580095,3112581119,3112582143,3112582655,3112582911,3112583167,3112584191,3112585215,3112586239,3112587263,3112588287,3112589311,3112590335,3112591359,3112592383,3112593407,3112594431,3112595455,3112596479,3112597503,3112598527,3112599551,3112600575,3112601599,3112601855,3112602623,3112603647,3112604671,3112605695,3112606719,3112607743,3112608767,3112609791,3112610815,3112611839,3112612863,3112613887,3112614911,3112615935,3112616959,3112617983,3112620031,3112621055,3112622079,3112623103,3112624127,3112625151,3112626175,3112627199,3112628223,3112629247,3112630271,3112630527,3112630783,3112631295,3112632319,3112633343,3112634367,3112634623,3112634879,3112635135,3112635391,3112636415,3112637439,3112638463,3112639487,3112640511,3112641535,3112642559,3112643583,3112643839,3112644095,3112644607,3112645631,3112646655,3112647679,3112648703,3112649727,3112650751,3112651519,3112652799,3112653823,3112654847,3112655871,3112656895,3112657919,3112658943,3112659967,3112660991,3112662015,3112663039,3112664063,3112665087,3112666111,3112666623,3112667135,3112667647,3112668159,3112669183,3112670207,3112671231,3112672255,3112672511,3112672767,3112673279,3112674303,3112676351,3112677375,3112678399,3112679423,3112680447,3112680703,3112680959,3112681215,3112681471,3112682495,3112683519,3112684543,3112685567,3112686079,3112686335,3112687615,3112688639,3112689663,3112690687,3112691711,3112692735,3112693759,3112694783,3112695807,3112696831,3112697855,3112699903,3112700927,3112701951,3112702975,3112703231,3112703487,3112703743,3112703999,3112705023,3112706047,3112707071,3112708095,3112709119,3112709631,3112709887,3112710143,3112711167,3112712191,3112713215,3112714239,3112715263,3112715519,3112715775,3112716031,3112717311,3112718335,3112719359,3112720383,3112721407,3112722431,3112722687,3112722943,3112723199,3112723455,3112724479,3112725503,3112726527,3112727551,3112728575,3112729599,3112730623,3112731647,3112731903,3112732159,3112732415,3112732671,3112733695,3112734719,3112735743,3112736767,3112737791,3112741887,3112742911,3112743935,3112744959,3112745983,3112747007,3112748031,3112750079,3112750335,3112750847,3112751103,3112752127,3112753151,3112754175,3112755199,3112756223,3112757247,3112758271,3112759295,3112760319,3112762367,3112763391,3112764415,3112765439,3112765695,3112765951,3112766463,3112767487,3112768511,3112769535,3112770559,3112771583,3112772607,3112773631,3112774655,3112775679,3112776703,3112778751,3112779775,3112780799,3112781823,3112782847,3112783871,3112784895,3112785919,3112786943,3112787199,3112787967,3112788223,3112788479,3112788735,3112788991,3112791039,3112792063,3112793087,3112794111,3112795135,3112796159,3112797183,3112798207,3112799231,3112800255,3112801279,3112802303,3112803327,3112803583,3112803839,3112804095,3112804351,3112805375,3112805631,3112805887,3112806143,3112806399,3112807423,3112808447,3112809471,3112809983,3112810239,3112810495,3112811519,3112812543,3112814591,3112814847,3112815103,3112815615,3112816639,3112817663,3112818687,3112819711,3112820735,3112821759,3112822783,3112823807,3112824831,3112825855,3112826879,3112827903,3112828927,3112829951,3112830975,3112831999,3112833023,3112834047,3112835071,3112836095,3112836351,3112836607,3112836863,3112837119,3112838143,3112839167,3112840191,3112841215,3112842239,3112843263,3112844287,3112845311,3112846335,3112847359,3112848383,3112849407,3112850431,3112851455,3112852479,3112853503,3112854527,3112855551,3112856575,3112857599,3112858623,3112859647,3112860671,3112861695,3112862719,3112863743,3112865791,3112866815,3112867839,3112869887,3112870911,3112871167,3112871679,3112871935,3112872959,3112873983,3112875007,3112876031,3112877055,3112878079,3112879103,3112880127,3112882175,3112883199,3112884223,3112885247,3112885759,3112886271,3112887295,3112888319,3112888575,3112888831,3112889343,3112890367,3112891391,3112892415,3112893439,3112894463,3112894719,3112895231,3112895487,3112895743,3112895999,3112896255,3112896511,3112897535,3112898559,3112899583,3112900607,3112900863,3112901119,3112901375,3112901631,3112902655,3112903167,3112903679,3112904703,3112905727,3112906751,3112907775,3112908799,3112909823,3112910847,3112911871,3112912895,3112914943,3112915967,3112916991,3112918015,3112920063,3112921087,3112922111,3112923135,3112924159,3112925183,3112926207,3112927231,3112928255,3112929279,3112930303,3112931327,3112932351,3112933375,3112934399,3112935423,3112937471,3112938495,3112939007,3112939263,3112939519,3112940543,3112941567,3112942591,3112943615,3112944639,3112945663,3112945919,3112946175,3112946687,3112947711,3112948735,3112949759,3112950271,3112950783,3112951807,3112952831,3112953087,3112953343,3112953599,3112953855,3112954623,3112954879,3112955391,3112955647,3112955903,3112956159,3112956927,3112958975,3112959999,3112961023,3112962047,3112963071,3112964095,3112965119,3112966143,3112967167,3112968191,3112969215,3112970239,3112971263,3112972287,3112973311,3112973567,3112973823,3112974335,3112975359,3112977407,3112978431,3112979455,3112980479,3112980991,3112981247,3112981503,3112982527,3112983551,3112984575,3112985599,3112986623,3112987647,3112988671,3112989695,3112990719,3112991743,3112992767,3112993791,3112994815,3112995839,3112996863,3112997887,3112998911,3112999935,3113000959,3113001983,3113003007,3113004031,3113004287,3113004543,3113004799,3113005055,3113006079,3113007103,3113008127,3113009151,3113010175,3113011199,3113013247,3113013503,3113013759,3113014015,3113014271,3113016319,3113017343,3113018367,3113019391,3113020415,3113021439,3113022463,3113023487,3113023743,3113023999,3113024255,3113024511,3113025535,3113026559,3113027583,3113028607,3113029631,3113030655,3113031679,3113031935,3113032191,3113032447,3113032703,3113033727,3113034751,3113035775,3113036799,3113037823,3113038847,3113039871,3113040895,3113041919,3113042943,3113043967,3113044991,3113046015,3113047039,3113048063,3113049087,3113050111,3113051135,3113052159,3113053183,3113054207,3113055231,3113055487,3113055999,3113056255,3113057279,3113058303,3113059327,3113060351,3113061375,3113062399,3113063423,3113064447,3113065471,3113066495,3113067519,3113068287,3113068543,3113069567,3113070591,3113071615,3113072639,3113073663,3113074687,3113074943,3113075199,3113075455,3113075711,3113076735,3113077759,3113078527,3113078783,3113079807,3113080831,3113081855,3113082879,3113083903,3113084927,3113086975,3113087999,3113089023,3113090047,3113091071,3113093119,3113094143,3113095167,3113095679,3113095935,3113096191,3113097215,3113097471,3113097727,3113098239,3113099007,3113099263,3113099519,3113099775,3113100287,3113102335,3113103359,3113104383,3113105407,3113106431,3113107455,3113108479,3113109503,3113110527,3113111551,3113112575,3113113599,3113114623,3113115647,3113116159,3113116415,3113116671,3113117695,3113118719,3113120767,3113121791,3113122815,3113123839,3113124095,3113124351,3113124607,3113124863,3113125887,3113126911,3113127167,3113127679,3113127935,3113128959,3113129983,3113131007,3113132031,3113133055,3113134079,3113136127,3113139199,3113140223,3113141247,3113142271,3113143295,3113144319,3113145343,3113146367,3113146623,3113147135,3113148415,3113149439,3113150463,3113151487,3113151743,3113151999,3113152511,3113153535,3113154559,3113156607,3113157631,3113160703,3113160959,3113161727,3113162751,3113163775,3113164799,3113165823,3113166847,3113167871,3113168895,3113169919,3113170943,3113171967,3113172991,3113174015,3113175039,3113176063,3113177087,3113178111,3113179135,3113180159,3113182207,3113183231,3113184255,3113185279,3113186303,3113187327,3113188351,3113189375,3113190399,3113191423,3113193471,3113194495,3113195519,3113196543,3113197567,3113198591,3113200639,3113201663,3113202687,3113203711,3113204735,3113205759,3113206783,3113207807,3113208831,3113209855,3113210879,3113211903,3113212927,3113213439,3113213695,3113213951,3113214975,3113215999,3113217023,3113218047,3113218303,3113218559,3113219071,3113220095,3113221119,3113222143,3113223167,3113224191,3113225215,3113225471,3113225727,3113225983,3113226239,3113227263,3113228287,3113229311,3113230335,3113231359,3113232383,3113233407,3113234431,3113235455,3113236479,3113237503,3113238527,3113239551,3113240319,3113240575,3113241599,3113242623,3113243647,3113244671,3113244927,3113245695,3113246719,3113246975,3113247231,3113247487,3113247743,3113248767,3113249791,3113250559,3113250815,3113251071,3113251327,3113251583,3113251839,3113252863,3113253887,3113254911,3113255935,3113256959,3113257983,3113259007,3113260031,3113261055,3113262079,3113263103,3113264127,3113265151,3113266175,3113267199,3113268223,3113269247,3113270271,3113271295,3113272319,3113273343,3113274367,3113275391,3113275903,3113276159,3113276415,3113277439,3113278463,3113279487,3113280511,3113281535,3113282559,3113283583,3113284607,3113285631,3113286655,3113287679,3113288703,3113289727,3113290751,3113291775,3113293823,3113294847,3113295871,3113296895,3113297407,3113297663,3113297919,3113298943,3113299967,3113300991,3113301247,3113301503,3113303039,3113304063,3113306111,3113308159,3113309183,3113310207,3113311231,3113312255,3113313279,3113314303,3113315327,3113316351,3113316607,3113316863,3113317119,3113317375,3113318399,3113319423,3113320447,3113321471,3113322495,3113323007,3113323519,3113324543,3113325567,3113326591,3113327871,3113328127,3113328639,3113329663,3113330687,3113331711,3113332735,3113333759,3113334783,3113335807,3113336831,3113337855,3113338879,3113339903,3113340927,3113341951,3113342975,3113343231,3113343743,3113343999,3113345023,3113346815,3113347071,3113347583,3113347839,3113348095,3113349119,3113350143,3113350399,3113350655,3113350911,3113351167,3113352191,3113352447,3113352703,3113353215,3113354239,3113355263,3113356287,3113357311,3113358335,3113359359,3113360383,3113361407,3113362431,3113363455,3113364479,3113365503,3113366527,3113367551,3113368575,3113369599,3113369855,3113370111,3113370367,3113370623,3113370879,3113371391,3113371647,3113372671,3113373695,3113374719,3113375743,3113376767,3113377791,3113378815,3113379839,3113380863,3113381887,3113382911,3113383935,3113384959,3113385983,3113388031,3113389055,3113390079,3113391103,3113392127,3113392383,3113392639,3113393151,3113394175,3113395199,3113395455,3113395967,3113396223,3113397247,3113398271,3113399295,3113401343,3113402367,3113403391,3113404415,3113405439,3113406463,3113407487,3113408511,3113409535,3113410559,3113411583,3113412607,3113412863,3113413631,3113414655,3113415679,3113416703,3113417727,3113417983,3113418751,3113419775,3113420799,3113421823,3113422847,3113423871,3113424895,3113425151,3113425407,3113425919,3113426943,3113427199,3113427455,3113427711,3113427967,3113428991,3113430015,3113431039,3113432063,3113432319,3113432575,3113432831,3113433087,3113434111,3113435135,3113436159,3113437183,3113438207,3113439231,3113440255,3113441279,3113442303,3113443327,3113444351,3113445375,3113446399,3113447423,3113448447,3113449471,3113450495,3113452543,3113453567,3113454591,3113455615,3113456639,3113457663,3113458687,3113459711,3113460735,3113461759,3113462783,3113463807,3113464831,3113465855,3113466879,3113467903,3113468927,3113469951,3113470975,3113471999,3113473023,3113473279,3113473535,3113473791,3113475071,3113479167,3113480191,3113481215,3113482239,3113483263,3113484287,3113485311,3113486335,3113487359,3113488383,3113489407,3113490431,3113491455,3113492479,3113493503,3113494527,3113495551,3113496575,3113497599,3113498623,3113499647,3113500671,3113501695,3113502719,3113503743,3113504767,3113505791,3113506815,3113507839,3113508863,3113509887,3113510911,3113511679,3113511935,3113512959,3113513215,3113513983,3113515007,3113516031,3113517055,3113518079,3113519103,3113520127,3113521151,3113522175,3113523199,3113524223,3113525247,3113526271,3113527295,3113528319,3113529343,3113530367,3113531391,3113532415,3113533439,3113534463,3113535487,3113536511,3113537535,3113538559,3113539583,3113541631,3113542655,3113543679,3113544703,3113545727,3113546751,3113547775,3113548799,3113549823,3113550847,3113551871,3113553407,3113553919,3113554943,3113555967,3113556991,3113558015,3113559039,3113560063,3113561087,3113562111,3113563135,3113563647,3113563903,3113564159,3113565183,3113566207,3113567231,3113568255,3113569279,3113570303,3113571327,3113573375,3113574399,3113575423,3113576447,3113577471,3113578495,3113579519,3113580543,3113580799,3113581055,3113581311,3113581567,3113582591,3113583615,3113584127,3113584639,3113585663,3113586687,3113586943,3113587199,3113587455,3113587711,3113587967,3113588223,3113588479,3113588735,3113589759,3113590783,3113591807,3113592831,3113593855,3113594879,3113595903,3113596927,3113597951,3113598975,3113599231,3113599487,3113599743,3113599999,3113601023,3113602047,3113603071,3113604095,3113605119,3113606143,3113607167,3113608191,3113609215,3113610239,3113611263,3113613311,3113613567,3113613823,3113614079,3113614335,3113615359,3113615615,3113615871,3113616127,3113616383,3113617407,3113618431,3113619455,3113620479,3113620735,3113621503,3113622527,3113623551,3113624575,3113625599,3113626623,3113627647,3113628671,3113629695,3113630719,3113630975,3113631231,3113631487,3113631743,3113632767,3113633791,3113634815,3113636863,3113637887,3113638911,3113639935,3113640959,3113641983,3113643007,3113644031,3113645055,3113646079,3113647103,3113648127,3113648383,3113649151,3113650175,3113651199,3113652223,3113654271,3113655295,3113656319,3113657343,3113658367,3113659391,3113660415,3113661439,3113662463,3113663743,3113664511,3113665535,3113666559,3113667583,3113668607,3113669631,3113670655,3113671679,3113672703,3113673727,3113674751,3113675775,3113676799,3113677823,3113678847,3113679871,3113680895,3113681919,3113682943,3113683967,3113684735,3113684991,3113686015,3113687039,3113688063,3113689087,3113690111,3113691135,3113692159,3113693183,3113694207,3113695231,3113695743,3113695999,3113696255,3113697279,3113698303,3113699327,3113700351,3113701375,3113702399,3113703423,3113704447,3113705471,3113706495,3113707519,3113708543,3113709567,3113710591,3113711615,3113712639,3113713663,3113714687,3113715711,3113716735,3113717759,3113718015,3113718271,3113718527,3113718783,3113719807,3113720831,3113721855,3113722879,3113723903,3113725951,3113726975,3113727487,3113727999,3113729023,3113730047,3113731071,3113732095,3113733119,3113733375,3113734143,3113735167,3113736191,3113737215,3113738239,3113739263,3113740287,3113741311,3113742335,3113743359,3113744383,3113745407,3113746431,3113747455,3113748479,3113749503,3113750527,3113751551,3113752575,3113753599,3113754623,3113755135,3113755391,3113755647,3113756671,3113757439,3113757695,3113758719,3113759487,3113759743,3113760767,3113761791,3113762815,3113763327,3113763839,3113764863,3113765887,3113766911,3113767935,3113768959,3113769983,3113770239,3113770495,3113770751,3113771007,3113772031,3113773055,3113774079,3113775103,3113776127,3113777151,3113778175,3113779199,3113779455,3113779711,3113779967,3113780223,3113780479,3113780735,3113781247,3113782271,3113783295,3113784319,3113785343,3113786367,3113787391,3113788415,3113789439,3113790463,3113791487,3113792511,3113793535,3113794559,3113795583,3113796607,3113797631,3113798655,3113800703,3113800959,3113801215,3113801471,3113801727,3113802751,3113803775,3113804799,3113805823,3113807871,3113808895,3113809919,3113810943,3113812991,3113814015,3113815039,3113816063,3113817087,3113818111,3113819135,3113820159,3113822207,3113823231,3113824255,3113825279,3113825791,3113826047,3113827327,3113828351,3113829375,3113830399,3113831423,3113832447,3113833471,3113834495,3113835519,3113836543,3113837567,3113838591,3113839615,3113840639,3113841663,3113842687,3113843711,3113844735,3113845247,3113845759,3113846783,3113847807,3113848831,3113849855,3113850111,3113850367,3113850623,3113850879,3113851903,3113852927,3113853951,3113855999,3113857023,3113857279,3113857535,3113857791,3113858047,3113858303,3113859071,3113860095,3113861119,3113862143,3113863167,3113863423,3113863935,3113864191,3113865215,3113866239,3113867263,3113868287,3113869311,3113870335,3113871359,3113871615,3113871871,3113872127,3113872383,3113873407,3113874431,3113875455,3113876479,3113877503,3113878527,3113879551,3113880575,3113881599,3113882623,3113883647,3113884671,3113885695,3113886719,3113887743,3113888767,3113889791,3113890815,3113891839,3113892863,3113893887,3113894911,3113895935,3113896959,3113897983,3113899007,3113900031,3113901055,3113902079,3113903103,3113904127,3113905151,3113906175,3113907199,3113908223,3113910271,3113911295,3113912319,3113913343,3113914367,3113915391,3113916415,3113917439,3113918463,3113918719,3113918975,3113919487,3113920511,3113921535,3113922559,3113923583,3113924607,3113925631,3113925887,3113926143,3113926399,3113926655,3113927679,3113928703,3113929727,3113931775,3113932799,3113933055,3113933567,3113933823,3113934847,3113935871,3113936895,3113937919,3113938943,3113939967,3113940223,3113940479,3113940735,3113940991,3113942015,3113943039,3113944063,3113945087,3113947135,3113948159,3113949183,3113950207,3113951231,3113952255,3113953279,3113954303,3113955327,3113956351,3113956607,3113956863,3113957119,3113957375,3113958399,3113961471,3113962495,3113963519,3113964543,3113965567,3113966591,3113967615,3113968639,3113968895,3113969151,3113969407,3113969663,3113970687,3113971711,3113972735,3113972991,3113973247,3113973503,3113973759,3113974783,3113975807,3113976831,3113977855,3113978879,3113979135,3113979391,3113979647,3113979903,3113980415,3113980927,3113981951,3113982975,3113983999,3113985023,3113986047,3113987071,3113988095,3113989119,3113989375,3113989631,3113989887,3113990143,3113991167,3113993215,3113994239,3113994751,3113995007,3113995263,3113996287,3113997311,3113998335,3113999359,3114000383,3114001407,3114002431,3114002687,3114002943,3114003455,3114004479,3114005503,3114006527,3114007551,3114008575,3114009599,3114010623,3114011647,3114012671,3114013695,3114014719,3114015743,3114016767,3114017791,3114018815,3114019839,3114020095,3114020351,3114020607,3114020863,3114021887,3114022143,3114022911,3114023935,3114024959,3114025983,3114027007,3114027263,3114027519,3114027775,3114028031,3114030079,3114031103,3114033151,3114034175,3114035199,3114036223,3114036991,3114037247,3114038271,3114039295,3114040319,3114041343,3114042111,3114042367,3114043391,3114045439,3114046463,3114047487,3114048511,3114049535,3114050559,3114051583,3114052095,3114052607,3114052863,3114053119,3114053375,3114053631,3114055679,3114057727,3114058751,3114059775,3114060799,3114061823,3114062847,3114063871,3114064895,3114065919,3114066943,3114067967,3114068991,3114070015,3114071039,3114072063,3114073087,3114074111,3114075135,3114076159,3114077183,3114078207,3114079231,3114080255,3114081279,3114083327,3114084351,3114085375,3114086399,3114086911,3114087167,3114087423,3114088447,3114089471,3114091007,3114091263,3114091519,3114092543,3114093567,3114094591,3114095359,3114095615,3114096639,3114097663,3114098687,3114099711,3114100223,3114100479,3114100735,3114101759,3114102783,3114104831,3114105087,3114105343,3114105599,3114105855,3114106879,3114107903,3114108927,3114109695,3114109951,3114110975,3114111999,3114113023,3114114047,3114115071,3114115583,3114115839,3114116095,3114117119,3114118143,3114119167,3114120191,3114121215,3114122239,3114123263,3114124287,3114125311,3114126335,3114127359,3114127615,3114128383,3114129407,3114130431,3114131455,3114131967,3114132479,3114133503,3114134527,3114135551,3114136575,3114137599,3114138623,3114139647,3114140671,3114141695,3114142719,3114143743,3114144767,3114145791,3114146815,3114147839,3114148863,3114149887,3114150911,3114151935,3114152959,3114153983,3114155007,3114156031,3114157055,3114158079,3114159103,3114160127,3114161151,3114162175,3114163199,3114164223,3114167039,3114168319,3114169343,3114170367,3114171391,3114172415,3114173439,3114173695,3114174463,3114175487,3114176511,3114177535,3114177791,3114178047,3114178303,3114178559,3114179583,3114180607,3114181631,3114182655,3114183679,3114184703,3114185727,3114186751,3114187775,3114188799,3114189823,3114191871,3114192127,3114192383,3114192639,3114192895,3114193919,3114194943,3114195967,3114196991,3114198015,3114199039,3114201087,3114203135,3114203391,3114203647,3114203903,3114204159,3114205183,3114206207,3114207231,3114208255,3114209279,3114210303,3114211327,3114212351,3114213375,3114214399,3114215423,3114216447,3114217471,3114218495,3114219519,3114220543,3114221567,3114222591,3114223359,3114223615,3114224639,3114225663,3114226175,3114226431,3114226687,3114226943,3114227199,3114227455,3114227711,3114227967,3114228223,3114228479,3114228735,3114229759,3114230783,3114231807,3114232831,3114233087,3114233343,3114233599,3114233855,3114234879,3114235903,3114236927,3114237951,3114238975,3114239999,3114241023,3114242047,3114243071,3114244095,3114245119,3114245375,3114245631,3114245887,3114246143,3114247167,3114248191,3114249215,3114250239,3114251263,3114252287,3114252543,3114252799,3114253311,3114253567,3114253823,3114254079,3114254335,3114255359,3114256383,3114257407,3114258431,3114259455,3114260479,3114261503,3114262527,3114263551,3114264063,3114264319,3114264575,3114264831,3114265087,3114265343,3114265599,3114266623,3114267647,3114268159,3114268415,3114268671,3114269695,3114270719,3114271743,3114272767,3114273023,3114273279,3114273535,3114273791,3114274815,3114275839,3114276863,3114277887,3114278911,3114279935,3114280959,3114281983,3114283007,3114284031,3114285055,3114286079,3114286591,3114286847,3114287103,3114287359,3114288127,3114289151,3114290175,3114291199,3114291455,3114291711,3114291967,3114292223,3114293247,3114294271,3114295295,3114297343,3114298367,3114299391,3114299647,3114299903,3114300159,3114300415,3114301439,3114301951,3114302207,3114302463,3114303487,3114304255,3114304511,3114305535,3114306559,3114307583,3114308607,3114310655,3114311679,3114312703,3114313727,3114314751,3114315775,3114316799,3114318847,3114319871,3114320895,3114321919,3114322943,3114323199,3114323455,3114323711,3114323967,3114324991,3114326015,3114327039,3114328063,3114329087,3114330111,3114331135,3114332159,3114333183,3114334207,3114335231,3114336255,3114337279,3114338303,3114339327,3114340351,3114341375,3114342399,3114343423,3114344447,3114345471,3114346495,3114347519,3114348543,3114349567,3114350591,3114351615,3114353663,3114353919,3114354175,3114354431,3114354687,3114355711,3114355967,3114356223,3114356479,3114356735,3114357759,3114358783,3114359295,3114359551,3114359807,3114360831,3114361855,3114362879,3114363135,3114363391,3114363647,3114363903,3114364415,3114364927,3114365951,3114366975,3114367231,3114367487,3114367743,3114367999,3114369023,3114370047,3114371071,3114372095,3114373119,3114374143,3114374399,3114374655,3114374911,3114375167,3114377215,3114377471,3114377727,3114378239,3114379263,3114380287,3114381311,3114382335,3114383359,3114384383,3114384639,3114384895,3114385151,3114385407,3114386431,3114387455,3114387967,3114388479,3114389503,3114390527,3114391551,3114392575,3114393599,3114394623,3114395647,3114396671,3114397695,3114398719,3114399743,3114399999,3114400255,3114400511,3114400767,3114401023,3114401279,3114401535,3114401791,3114402815,3114403839,3114404351,3114404607,3114404863,3114405887,3114406911,3114407935,3114408959,3114409983,3114411007,3114412031,3114413055,3114414079,3114415103,3114416127,3114417151,3114418175,3114419199,3114420223,3114420735,3114421247,3114422271,3114423295,3114424319,3114424575,3114424831,3114425343,3114426367,3114427391,3114428415,3114429439,3114430719,3114430975,3114431231,3114431487,3114432511,3114433535,3114434559,3114434815,3114435071,3114435583,3114436607,3114437631,3114438655,3114439679,3114440703,3114441727,3114442751,3114443775,3114444799,3114446847,3114447871,3114448895,3114449919,3114450943,3114451967,3114452991,3114454015,3114455039,3114456063,3114457087,3114458111,3114459135,3114461183,3114461695,3114461951,3114462207,3114463231,3114464255,3114465279,3114466303,3114467327,3114467583,3114467839,3114468095,3114468351,3114469375,3114470399,3114471423,3114471679,3114471935,3114472447,3114473471,3114474495,3114475519,3114476543,3114477567,3114478591,3114479615,3114479871,3114480127,3114480383,3114480639,3114481663,3114482687,3114484735,3114485759,3114486783,3114487807,3114488831,3114489855,3114490879,3114491903,3114492159,3114492927,3114493951,3114495999,3114498047,3114499071,3114500095,3114500351,3114500607,3114501119,3114502143,3114503167,3114504191,3114505215,3114506239,3114507263,3114508287,3114509311,3114510847,3114511103,3114511359,3114512383,3114513407,3114514431,3114516479,3114517503,3114518527,3114519551,3114519807,3114520063,3114520319,3114520575,3114521599,3114522623,3114523647,3114524671,3114525695,3114526719,3114527743,3114528767,3114529791,3114530815,3114531839,3114532863,3114533887,3114534911,3114535935,3114536959,3114537983,3114541055,3114542079,3114543103,3114544127,3114545151,3114546175,3114547199,3114547455,3114547711,3114547967,3114548223,3114549247,3114549759,3114550271,3114551295,3114552319,3114553343,3114554367,3114555391,3114556415,3114557439,3114558463,3114559487,3114560511,3114561535,3114562559,3114563583,3114563839,3114564095,3114564351,3114564607,3114565631,3114566655,3114567679,3114568703,3114569727,3114570751,3114571775,3114572799,3114573823,3114574079,3114574335,3114574591,3114574847,3114575871,3114576895,3114577151,3114577663,3114577919,3114578943,3114579967,3114580223,3114580991,3114582015,3114583039,3114584063,3114585087,3114586111,3114587135,3114588159,3114588415,3114588671,3114588927,3114589183,3114590207,3114591231,3114592255,3114593279,3114594303,3114595327,3114596351,3114597375,3114598399,3114600447,3114601471,3114602495,3114603519,3114604543,3114605567,3114606591,3114607615,3114608639,3114609663,3114609919,3114610175,3114610431,3114610687,3114611711,3114612735,3114613759,3114614783,3114615807,3114616831,3114617855,3114618111,3114618879,3114619903,3114620159,3114620415,3114620671,3114620927,3114621951,3114622975,3114623999,3114625023,3114626047,3114627071,3114628095,3114629119,3114630143,3114631167,3114632191,3114633215,3114634239,3114635263,3114636287,3114637311,3114637567,3114637823,3114638079,3114638335,3114639359,3114640383,3114641407,3114641919,3114642175,3114642431,3114643455,3114644479,3114645503,3114646527,3114646783,3114647039,3114647295,3114647807,3114648063,3114648319,3114648575,3114649599,3114650623,3114651647,3114652671,3114653695,3114654719,3114655743,3114656767,3114657535,3114657791,3114658815,3114660863,3114661887,3114663935,3114664959,3114667007,3114668031,3114669055,3114670079,3114671103,3114671359,3114671615,3114672127,3114673151,3114674175,3114675199,3114676223,3114677247,3114678271,3114679295,3114680319,3114681343,3114682367,3114683391,3114684415,3114685439,3114685695,3114685951,3114686207,3114686463,3114687487,3114688511,3114689535,3114690559,3114691583,3114692607,3114693631,3114694655,3114695679,3114696703,3114697727,3114699775,3114700287,3114700543,3114700799,3114701055,3114701823,3114702847,3114703103,3114703871,3114704895,3114705919,3114706943,3114707967,3114708991,3114710015,3114711039,3114712063,3114712319,3114713087,3114714111,3114714623,3114714879,3114715135,3114716159,3114718207,3114719231,3114721279,3114722303,3114723327,3114724351,3114724607,3114724863,3114725119,3114725375,3114726399,3114727167,3114727423,3114728447,3114728703,3114728959,3114729215,3114729471,3114730495,3114732543,3114733567,3114734591,3114735615,3114736639,3114737663,3114738687,3114740735,3114741759,3114742783,3114743807,3114744831,3114745855,3114747903,3114748927,3114749183,3114749439,3114749695,3114750975,3114751999,3114753023,3114754047,3114755071,3114756095,3114757119,3114758143,3114759167,3114759423,3114760191,3114761215,3114762239,3114763263,3114764287,3114765311,3114766335,3114767359,3114768383,3114769407,3114770431,3114771455,3114772479,3114773503,3114774527,3114775551,3114775807,3114776063,3114776319,3114776575,3114777599,3114777855,3114778367,3114778623,3114779647,3114780671,3114781695,3114782719,3114783743,3114784767,3114785023,3114785279,3114785535,3114785791,3114786815,3114787839,3114788863,3114789375,3114790911,3114791935,3114792959,3114794239,3114794495,3114794751,3114795007,3114795519,3114796031,3114797055,3114798079,3114799103,3114800127,3114800383,3114801151,3114802175,3114803199,3114804223,3114805247,3114806271,3114807295,3114807551,3114808319,3114808831,3114809343,3114810367,3114811391,3114812415,3114813439,3114814463,3114815487,3114815743,3114816511,3114817535,3114818559,3114819583,3114820607,3114821631,3114822655,3114823679,3114824703,3114825727,3114826751,3114827775,3114828031,3114828287,3114828799,3114830847,3114831871,3114832895,3114833151,3114833407,3114833663,3114833919,3114834943,3114835455,3114835967,3114836991,3114838015,3114838271,3114838527,3114839039,3114841087,3114842111,3114843135,3114844159,3114844415,3114844671,3114845183,3114846207,3114847231,3114848255,3114848511,3114848767,3114849279,3114850303,3114850559,3114850815,3114851327,3114852351,3114853375,3114854399,3114855423,3114856447,3114857471,3114858495,3114860543,3114860799,3114861055,3114861311,3114861567,3114861823,3114862079,3114862335,3114862591,3114863615,3114864639,3114865663,3114866687,3114867711,3114868735,3114869759,3114870783,3114871807,3114872831,3114873855,3114874879,3114875903,3114876927,3114877951,3114878975,3114879999,3114880255,3114880511,3114880767,3114881023,3114881535,3114882047,3114883071,3114884095,3114885119,3114885375,3114885631,3114885887,3114886143,3114887167,3114887423,3114887679,3114887935,3114888191,3114889215,3114890239,3114892287,3114894335,3114895359,3114896383,3114897407,3114898431,3114899455,3114900479,3114901503,3114902527,3114903551,3114904575,3114905599,3114906623,3114907647,3114908671,3114909695,3114910719,3114911743,3114912767,3114913791,3114914815,3114915839,3114916863,3114917887,3114918911,3114919935,3114920959,3114921983,3114923007,3114924031,3114925055,3114925567,3114925823,3114926079,3114927103,3114928127,3114928383,3114928639,3114928895,3114929151,3114930175,3114931199,3114932223,3114933247,3114934271,3114935295,3114936319,3114936575,3114936831,3114937087,3114937343,3114938367,3114939391,3114940415,3114940671,3114940927,3114941183,3114941439,3114942463,3114942719,3114942975,3114943231,3114943487,3114944511,3114945535,3114946559,3114947583,3114948607,3114949631,3114950655,3114951679,3114952703,3114953727,3114954751,3114955775,3114956799,3114957823,3114958079,3114958335,3114958847,3114959103,3114959359,3114959615,3114959871,3114960895,3114961919,3114962943,3114963199,3114963455,3114963711,3114963967,3114964991,3114966015,3114967039,3114967551,3114967807,3114968063,3114968831,3114969087,3114970111,3114971135,3114972159,3114973183,3114974207,3114975231,3114976255,3114977279,3114978303,3114979327,3114980351,3114980607,3114980863,3114981119,3114981375,3114982399,3114983423,3114984447,3114985471,3114986495,3114987519,3114988543,3114989567,3114990591,3114991615,3114992127,3114992383,3114992639,3114993663,3114994687,3114995711,3114996735,3114997759,3114998783,3114999807,3115000831,3115001855,3115002879,3115003903,3115004927,3115005951,3115006975,3115007999,3115008511,3115009023,3115010047,3115011071,3115012095,3115013119,3115014143,3115014399,3115014911,3115015167,3115016191,3115017215,3115018239,3115019263,3115020287,3115021311,3115022335,3115022591,3115022847,3115023359,3115023615,3115024127,3115024383,3115025407,3115026431,3115027455,3115028479,3115029503,3115030527,3115031551,3115032831,3115033087,3115033343,3115033599,3115034623,3115035647,3115036671,3115037695,3115038719,3115039743,3115040767,3115041791,3115042815,3115043327,3115043583,3115043839,3115044863,3115045887,3115046911,3115047935,3115048959,3115049983,3115050751,3115051007,3115052031,3115055103,3115056127,3115057151,3115058175,3115059199,3115060223,3115063295,3115064319,3115066367,3115066879,3115067391,3115068415,3115069439,3115069695,3115070463,3115071487,3115071743,3115071999,3115072511,3115073535,3115073791,3115074047,3115074303,3115074559,3115075583,3115076607,3115077631,3115078655,3115079679,3115080703,3115081727,3115082751,3115083775,3115084799,3115085823,3115086847,3115087359,3115087615,3115087871,3115088895,3115090175,3115090431,3115090943,3115091967,3115092991,3115094015,3115095039,3115095295,3115095551,3115095807,3115096063,3115097087,3115098111,3115099135,3115099903,3115100159,3115101439,3115101695,3115101951,3115102207,3115103231,3115104255,3115105279,3115106303,3115107327,3115107839,3115108351,3115110399,3115111423,3115112447,3115114495,3115115519,3115116543,3115117567,3115118591,3115119615,3115120639,3115121663,3115122687,3115123711,3115124735,3115125759,3115126783,3115127295,3115127551,3115127807,3115128831,3115129599,3115129855,3115130879,3115131391,3115131647,3115131903,3115132927,3115133951,3115134975,3115135999,3115137023,3115137279,3115138047,3115139071,3115140095,3115141119,3115142143,3115143167,3115144191,3115145215,3115146239,3115147263,3115148287,3115149311,3115150335,3115151359,3115152383,3115154431,3115155455,3115155711,3115156223,3115156479,3115157503,3115159551,3115159807,3115160063,3115160575,3115161599,3115162623,3115163647,3115164671,3115165695,3115166719,3115167743,3115168767,3115169791,3115170815,3115171839,3115172863,3115173887,3115174911,3115175935,3115176959,3115177983,3115179007,3115180031,3115180287,3115180543,3115180799,3115181055,3115182079,3115183103,3115184127,3115185151,3115185407,3115185663,3115186175,3115187199,3115188223,3115189247,3115190271,3115191295,3115192319,3115193343,3115194367,3115195391,3115196415,3115197439,3115198463,3115198719,3115199487,3115200511,3115201535,3115202559,3115203583,3115203839,3115204095,3115204351,3115205631,3115206655,3115207679,3115208703,3115209727,3115210751,3115211263,3115211775,3115212799,3115213823,3115215359,3115215615,3115215871,3115216895,3115217919,3115218943,3115219967,3115220991,3115222015,3115222271,3115222527,3115222783,3115223039,3115223295,3115223551,3115224063,3115225087,3115225343,3115225599,3115226111,3115227135,3115228159,3115228415,3115228671,3115228927,3115230207,3115231231,3115232255,3115233279,3115234303,3115235327,3115236351,3115237375,3115238399,3115239423,3115240447,3115241471,3115242495,3115243519,3115244543,3115245567,3115246591,3115247615,3115248127,3115248383,3115248639,3115249663,3115250687,3115251711,3115252735,3115253759,3115254783,3115255807,3115256831,3115257855,3115258879,3115259903,3115260927,3115261951,3115262975,3115263999,3115265023,3115266047,3115267071,3115268095,3115268607,3115269119,3115270143,3115271167,3115272191,3115273215,3115274239,3115275263,3115276287,3115276543,3115276799,3115277055,3115277311,3115278335,3115279359,3115279871,3115280127,3115280383,3115281407,3115282431,3115283455,3115284479,3115285503,3115286527,3115287551,3115288575,3115289599,3115290111,3115291647,3115292671,3115293695,3115294719,3115295743,3115296767,3115297791,3115298815,3115299839,3115300863,3115301887,3115302911,3115303935,3115304959,3115305983,3115306239,3115307007,3115307263,3115308031,3115309055,3115310079,3115311103,3115311615,3115312127,3115313151,3115313663,3115314175,3115315199,3115316223,3115317247,3115318271,3115319295,3115320319,3115322367,3115323391,3115324415,3115325439,3115325695,3115325951,3115326463,3115327487,3115328511,3115329535,3115330559,3115331583,3115333631,3115334655,3115335679,3115336703,3115337727,3115338751,3115340799,3115341823,3115342335,3115342591,3115342847,3115343103,3115343359,3115343615,3115343871,3115344895,3115345919,3115346943,3115350015,3115351039,3115352063,3115353087,3115353599,3115353855,3115354111,3115355135,3115356159,3115357183,3115358207,3115359231,3115359743,3115360255,3115361279,3115362303,3115363327,3115364351,3115365375,3115366399,3115367423,3115368447,3115369471,3115370495,3115371519,3115372543,3115373567,3115374591,3115375615,3115376639,3115377663,3115378687,3115379711,3115380735,3115381759,3115382271,3115382783,3115383807,3115384831,3115385855,3115387903,3115388927,3115389951,3115390207,3115390975,3115391231,3115391487,3115391743,3115391999,3115393023,3115395071,3115396095,3115397119,3115398143,3115398399,3115398655,3115399167,3115400191,3115401215,3115402239,3115403263,3115404287,3115404799,3115405311,3115405567,3115405823,3115406079,3115406335,3115407359,3115408383,3115409407,3115410431,3115411455,3115412479,3115414527,3115414783,3115415039,3115415295,3115415551,3115416575,3115417599,3115417855,3115418111,3115418623,3115419647,3115420671,3115421695,3115422207,3115422463,3115422719,3115423231,3115423487,3115423743,3115424767,3115425791,3115426815,3115427839,3115428863,3115429887,3115430911,3115431935,3115432959,3115433983,3115435007,3115436031,3115437055,3115438079,3115438335,3115438591,3115438847,3115439103,3115440127,3115442175,3115443199,3115443455,3115443711,3115443967,3115444223,3115445247,3115445503,3115445759,3115446015,3115446271,3115447295,3115448319,3115449343,3115450367,3115451391,3115452415,3115454463,3115455487,3115456511,3115457535,3115458559,3115459071,3115461631,3115462655,3115462911,3115463167,3115463423,3115463679,3115464703,3115465727,3115466751,3115468799,3115469567,3115469823,3115470847,3115471871,3115472895,3115473919,3115474943,3115475967,3115476991,3115478015,3115479039,3115480063,3115481087,3115482111,3115483135,3115484159,3115485183,3115486207,3115487231,3115488255,3115489279,3115490303,3115491327,3115492351,3115493119,3115493375,3115494399,3115495423,3115496447,3115497471,3115498495,3115499519,3115500543,3115501823,3115502079,3115502591,3115503871,3115504127,3115504383,3115504639,3115505663,3115506687,3115507711,3115508735,3115509247,3115509503,3115509759,3115510783,3115511807,3115512831,3115513855,3115514879,3115515903,3115517951,3115518975,3115519999,3115521023,3115522047,3115523071,3115524095,3115525119,3115526143,3115527167,3115528191,3115529215,3115530239,3115531263,3115532287,3115533311,3115534335,3115535359,3115536383,3115537407,3115538431,3115538687,3115538943,3115539199,3115539455,3115540479,3115541503,3115541759,3115542015,3115542271,3115542527,3115543551,3115544575,3115545599,3115546623,3115547647,3115548671,3115549695,3115550719,3115551743,3115552767,3115553791,3115554815,3115555327,3115555839,3115556863,3115557887,3115558911,3115559935,3115560959,3115561215,3115561471,3115561727,3115562495,3115563007,3115564031,3115565055,3115566079,3115566591,3115566847,3115567103,3115567615,3115568127,3115569151,3115570175,3115571199,3115571455,3115571711,3115572223,3115573247,3115574271,3115576319,3115577343,3115577855,3115578367,3115578623,3115578879,3115579135,3115579391,3115580415,3115581439,3115582463,3115583487,3115584511,3115584767,3115585023,3115585535,3115586559,3115587583,3115588607,3115589631,3115590655,3115591679,3115592703,3115593727,3115593983,3115594239,3115594751,3115595775,3115596799,3115597823,3115598847,3115599871,3115600895,3115601919,3115602943,3115603967,3115604991,3115606015,3115607039,3115608063,3115609087,3115609343,3115609599,3115610111,3115611135,3115612159,3115613183,3115614207,3115615231,3115615487,3115615743,3115615999,3115616255,3115617279,3115618559,3115618815,3115619071,3115619327,3115620351,3115621375,3115622399,3115623423,3115624447,3115624703,3115624959,3115625215,3115625471,3115625727,3115625983,3115626239,3115626495,3115627519,3115628543,3115629567,3115630591,3115630847,3115631103,3115631359,3115631615,3115632127,3115632383,3115633663,3115635711,3115636735,3115637759,3115638783,3115639807,3115640831,3115641855,3115642879,3115643903,3115644927,3115645951,3115647999,3115649023,3115649279,3115649535,3115649791,3115650047,3115651071,3115652095,3115653119,3115654143,3115655167,3115656191,3115657215,3115658239,3115659263,3115660287,3115661311,3115662335,3115663359,3115664383,3115665407,3115666431,3115667455,3115668479,3115669503,3115670527,3115671551,3115672575,3115672831,3115673599,3115674623,3115675647,3115676159,3115676415,3115676671,3115677695,3115677951,3115678207,3115678719,3115679743,3115681791,3115682815,3115683839,3115684863,3115685887,3115687935,3115688959,3115689215,3115689471,3115689983,3115691007,3115692031,3115693055,3115694079,3115695103,3115697151,3115698175,3115698943,3115699199,3115700223,3115701247,3115702271,3115703295,3115704319,3115705343,3115706367,3115707391,3115708415,3115709439,3115710463,3115711487,3115714559,3115714815,3115715071,3115715327,3115715583,3115717631,3115718655,3115719679,3115720703,3115722751,3115723775,3115724799,3115725311,3115725567,3115725823,3115726847,3115727871,3115728895,3115729151,3115729663,3115729919,3115730943,3115731967,3115732991,3115733503,3115733759,3115734015,3115735039,3115736063,3115737087,3115738111,3115739135,3115739391,3115739647,3115739903,3115740159,3115741183,3115742207,3115743231,3115744255,3115745279,3115745791,3115746303,3115747327,3115748351,3115749375,3115750399,3115751423,3115752447,3115752703,3115752959,3115753215,3115753471,3115754495,3115755519,3115756543,3115757567,3115758591,3115759615,3115760639,3115761663,3115762687,3115763711,3115764735,3115765759,3115766783,3115767807,3115768831,3115769855,3115770879,3115771903,3115772927,3115773951,3115774975,3115775999,3115777023,3115779071,3115780095,3115781119,3115782143,3115783167,3115784191,3115785215,3115787263,3115788287,3115789311,3115790335,3115791359,3115791871,3115792383,3115793407,3115795455,3115796479,3115797503,3115798527,3115799551,3115799807,3115800063,3115800319,3115800575,3115801599,3115802623,3115802879,3115803135,3115803391,3115803647,3115804671,3115804927,3115805183,3115805439,3115805695,3115806719,3115806975,3115807231,3115807487,3115807743,3115808767,3115809791,3115810815,3115811071,3115811583,3115811839,3115812863,3115813887,3115814911,3115815935,3115816959,3115817983,3115819007,3115820031,3115822079,3115823103,3115824127,3115824895,3115825151,3115826175,3115828223,3115829247,3115830271,3115831295,3115832319,3115833343,3115834367,3115835391,3115836415,3115837439,3115838463,3115839487,3115840511,3115841535,3115842559,3115843583,3115844607,3115845631,3115846143,3115846399,3115846655,3115847679,3115848703,3115849727,3115850751,3115851775,3115852799,3115853823,3115854079,3115854335,3115854591,3115854847,3115855871,3115856895,3115857919,3115858943,3115859967,3115860991,3115861247,3115861759,3115862015,3115863039,3115864063,3115865087,3115866111,3115867135,3115868159,3115869183,3115870207,3115871231,3115872255,3115872767,3115873279,3115874303,3115875327,3115876351,3115877375,3115877887,3115878143,3115878399,3115879423,3115879679,3115880447,3115881471,3115882495,3115882751,3115883263,3115883519,3115883775,3115884031,3115885567,3115886591,3115887615,3115888639,3115889663,3115889919,3115890175,3115890431,3115890687,3115891711,3115891967,3115892479,3115892735,3115893759,3115894783,3115895807,3115896831,3115897855,3115898879,3115899135,3115899391,3115899647,3115899903,3115900671,3115900927,3115901951,3115902207,3115902463,3115902719,3115902975,3115903999,3115905023,3115906047,3115907071,3115908095,3115908863,3115909119,3115910143,3115912191,3115913215,3115914239,3115915263,3115916287,3115917311,3115918335,3115919359,3115920383,3115921407,3115922431,3115923455,3115924479,3115925503,3115926527,3115927551,3115928575,3115929087,3115929343,3115929599,3115929855,3115930111,3115930367,3115931391,3115931647,3115932671,3115933695,3115934719,3115935743,3115936767,3115937791,3115938815,3115939839,3115940863,3115941119,3115941375,3115941631,3115941887,3115942911,3115943935,3115945983,3115947007,3115948031,3115949055,3115950079,3115951103,3115952127,3115953151,3115954175,3115955199,3115956223,3115957247,3115959295,3115960319,3115961343,3115962367,3115962623,3115963135,3115963391,3115964415,3115965439,3115966463,3115967487,3115968511,3115969535,3115970559,3115971583,3115972607,3115973119,3115973631,3115974655,3115974911,3115975167,3115975679,3115975935,3115976703,3115976959,3115977215,3115977471,3115977727,3115978751,3115979775,3115980799,3115981055,3115981311,3115981823,3115982847,3115983871,3115984383,3115984895,3115985919,3115986943,3115987967,3115988479,3115988735,3115988991,3115990015,3115991295,3115991551,3115991807,3115992063,3115993087,3115994111,3115994367,3115994623,3115994879,3115995135,3115996159,3115997183,3115998207,3115999231,3116000255,3116002303,3116002815,3116003327,3116004351,3116006399,3116007423,3116008447,3116009471,3116010495,3116011519,3116012031,3116012543,3116013567,3116015615,3116016639,3116017663,3116018687,3116019711,3116020735,3116021759,3116022783,3116023807,3116024831,3116025855,3116026879,3116027903,3116028927,3116029951,3116030975,3116033023,3116034047,3116035071,3116036095,3116037119,3116038143,3116039167,3116040191,3116041215,3116042239,3116043263,3116044287,3116044543,3116044799,3116045055,3116045311,3116046335,3116047359,3116048383,3116050431,3116052479,3116053503,3116054527,3116055551,3116055807,3116056063,3116056319,3116056575,3116057599,3116058623,3116059647,3116060671,3116061695,3116062719,3116063743,3116064767,3116065791,3116066815,3116067327,3116067839,3116068863,3116069887,3116070911,3116071679,3116071935,3116072959,3116073983,3116075007,3116075519,3116075775,3116076031,3116077055,3116078079,3116079103,3116079615,3116079871,3116080127,3116080383,3116080639,3116080895,3116081151,3116082175,3116083199,3116083455,3116083711,3116084223,3116085247,3116085503,3116085759,3116086015,3116086271,3116087295,3116088319,3116089343,3116090367,3116091391,3116091647,3116092415,3116093439,3116094463,3116094719,3116094975,3116095231,3116095487,3116096511,3116097535,3116098559,3116099583,3116100095,3116100607,3116100863,3116101631,3116102143,3116102399,3116102655,3116102911,3116103167,3116103423,3116103679,3116104703,3116105727,3116106751,3116107007,3116107263,3116107775,3116108799,3116109823,3116110079,3116110335,3116110591,3116110847,3116111871,3116112895,3116113151,3116113407,3116113663,3116113919,3116114943,3116115967,3116116223,3116116479,3116116735,3116116991,3116118015,3116119039,3116120063,3116121087,3116121343,3116121599,3116121855,3116122111,3116123135,3116124159,3116125183,3116126207,3116127231,3116128255,3116130303,3116131327,3116132351,3116133375,3116134399,3116135423,3116136447,3116137471,3116138495,3116139519,3116140543,3116141567,3116141823,3116142591,3116142847,3116143103,3116143359,3116143615,3116144639,3116145663,3116147711,3116148735,3116149759,3116150783,3116151807,3116152063,3116152319,3116152831,3116153855,3116154879,3116155903,3116156927,3116158975,3116161023,3116162047,3116163071,3116164095,3116165119,3116166143,3116167167,3116169215,3116169471,3116169727,3116169983,3116170239,3116171263,3116172287,3116173311,3116174335,3116176383,3116177663,3116177919,3116178175,3116178431,3116179455,3116180223,3116180479,3116181503,3116182527,3116183551,3116184575,3116185599,3116185855,3116186111,3116186623,3116187647,3116188671,3116189695,3116189951,3116190207,3116190463,3116190719,3116191743,3116192767,3116193791,3116194815,3116195327,3116195583,3116195839,3116196863,3116197887,3116198911,3116199167,3116199423,3116199679,3116199935,3116200191,3116200447,3116200703,3116200959,3116201983,3116203007,3116204031,3116205055,3116206079,3116207103,3116208127,3116209151,3116210175,3116211199,3116212223,3116213247,3116214271,3116215295,3116216319,3116217343,3116218367,3116219391,3116220415,3116221439,3116222463,3116223487,3116224511,3116225535,3116226559,3116227583,3116228607,3116229631,3116230655,3116231679,3116232703,3116233727,3116234751,3116235775,3116238847,3116239871,3116240895,3116241151,3116241407,3116241663,3116241919,3116242943,3116243199,3116243455,3116243711,3116243967,3116244735,3116244991,3116246015,3116246271,3116246527,3116246783,3116247039,3116248063,3116248319,3116249087,3116249343,3116249599,3116249855,3116250111,3116251135,3116252159,3116254207,3116255231,3116256255,3116257279,3116257535,3116258047,3116258303,3116259327,3116259583,3116259839,3116260095,3116260351,3116261375,3116262399,3116263423,3116264447,3116265471,3116266495,3116268543,3116269311,3116269567,3116270591,3116271615,3116272639,3116272895,3116273663,3116274687,3116275711,3116276735,3116277759,3116278783,3116279807,3116281855,3116282879,3116285951,3116286975,3116287999,3116290047,3116291071,3116291583,3116293119,3116294143,3116295167,3116297215,3116298239,3116299263,3116300287,3116300543,3116300799,3116301055,3116301311,3116302335,3116303359,3116304383,3116305407,3116306431,3116307455,3116307711,3116307967,3116308479,3116309503,3116310527,3116311551,3116312575,3116314623,3116315647,3116316671,3116317695,3116318719,3116319743,3116320767,3116321791,3116322815,3116323839,3116324863,3116325887,3116326911,3116327935,3116328959,3116329983,3116330495,3116330751,3116331007,3116332031,3116333055,3116334079,3116335103,3116336127,3116337151,3116338175,3116339199,3116339455,3116339711,3116339967,3116340223,3116341247,3116342271,3116343295,3116344319,3116345343,3116346111,3116346367,3116348415,3116349439,3116350463,3116351487,3116352511,3116353535,3116354047,3116354559,3116355071,3116355327,3116355583,3116355839,3116356095,3116356351,3116356607,3116356863,3116357631,3116357887,3116358655,3116359167,3116359423,3116359679,3116359935,3116360191,3116360703,3116361727,3116361983,3116362239,3116363007,3116363775,3116364799,3116365567,3116365823,3116366335,3116366847,3116367871,3116368127,3116368383,3116368895,3116369407,3116370175,3116370943,3116371967,3116372223,3116372479,3116372991,3116373247,3116373503,3116374271,3116374527,3116374783,3116375039,3116375295,3116376063,3116377087,3116378111,3116379135,3116380159,3116381183,3116382207,3116383231,3116384255,3116384511,3116385279,3116386303,3116386815,3116387071,3116387327,3116388351,3116389375,3116390399,3116392191,3116392447,3116392959,3116393471,3116394495,3116395519,3116396543,3116397567,3116397823,3116398591,3116399103,3116399615,3116399871,3116400127,3116400639,3116401663,3116402687,3116402943,3116403967,3116404223,3116404479,3116404735,3116405759,3116406783,3116407295,3116407551,3116407807,3116408831,3116409599,3116409855,3116410623,3116410879,3116411391,3116411903,3116412415,3116412671,3116412927,3116413951,3116414463,3116414719,3116414975,3116415231,3116415743,3116415999,3116416255,3116416511,3116417023,3116417535,3116418047,3116418303,3116418559,3116419071,3116419327,3116420095,3116421119,3116422143,3116423167,3116424191,3116425215,3116426239,3116427263,3116428287,3116429311,3116430335,3116430847,3116431103,3116431359,3116432383,3116433407,3116434431,3116435455,3116436479,3116437503,3116438015,3116438271,3116438527,3116439551,3116440575,3116442879,3116443647,3116444927,3116445183,3116445439,3116445695,3116446719,3116447743,3116448767,3116449791,3116450047,3116450303,3116450559,3116450815,3116451839,3116452863,3116453887,3116454911,3116455935,3116456191,3116456447,3116456959,3116457983,3116459007,3116460031,3116461055,3116462079,3116464127,3116465151,3116465407,3116465663,3116466175,3116467199,3116468223,3116470271,3116471295,3116472319,3116473343,3116473855,3116474367,3116475391,3116475647,3116475903,3116476415,3116477439,3116478463,3116479487,3116480511,3116481535,3116482559,3116483583,3116484607,3116485631,3116486655,3116487679,3116488703,3116489727,3116490751,3116491775,3116492799,3116493823,3116494847,3116495103,3116495359,3116495615,3116495871,3116496895,3116497919,3116498943,3116499967,3116500991,3116502015,3116502271,3116502527,3116503039,3116504063,3116505087,3116506111,3116506367,3116506623,3116506879,3116507135,3116508159,3116509183,3116510207,3116511231,3116512255,3116512767,3116513023,3116513279,3116514303,3116515327,3116516351,3116517375,3116518399,3116519423,3116520447,3116521471,3116522495,3116523519,3116524543,3116524799,3116525055,3116525567,3116526591,3116527615,3116528639,3116529407,3116529663,3116530687,3116531711,3116532735,3116533759,3116534271,3116534783,3116535807,3116536831,3116537087,3116537343,3116537599,3116537855,3116538111,3116538879,3116539903,3116540927,3116541951,3116542975,3116543999,3116544255,3116544511,3116544767,3116545023,3116546047,3116546303,3116546815,3116547071,3116548095,3116549119,3116550143,3116551167,3116551679,3116552191,3116553215,3116554239,3116554751,3116555263,3116557311,3116558335,3116559359,3116560383,3116561407,3116562431,3116563455,3116564479,3116565503,3116566527,3116567551,3116568575,3116569599,3116570623,3116571647,3116572671,3116573695,3116574719,3116575743,3116576767,3116577791,3116578815,3116579839,3116580095,3116580351,3116580863,3116581887,3116582911,3116583935,3116584703,3116584959,3116585215,3116585471,3116587007,3116588031,3116589055,3116590079,3116591103,3116592127,3116593151,3116594175,3116595199,3116596223,3116597247,3116598271,3116599295,3116600319,3116601343,3116602367,3116602623,3116603391,3116604415,3116605439,3116606463,3116607487,3116607743,3116608511,3116609535,3116610559,3116611583,3116612607,3116613631,3116614655,3116615679,3116616703,3116617727,3116618751,3116619775,3116620031,3116620287,3116620543,3116620799,3116621823,3116622847,3116623871,3116624127,3116624383,3116624895,3116625151,3116625407,3116625663,3116625919,3116626943,3116627199,3116627455,3116627967,3116628991,3116630015,3116630271,3116630527,3116631039,3116632063,3116633087,3116634111,3116635135,3116635903,3116636159,3116637183,3116637695,3116637951,3116638207,3116639231,3116640255,3116641279,3116642303,3116643327,3116644351,3116645375,3116645631,3116645887,3116646399,3116647423,3116648447,3116649471,3116650495,3116651519,3116652543,3116653567,3116654591,3116654847,3116655615,3116655871,3116656127,3116656383,3116656639,3116657663,3116658687,3116659711,3116659967,3116660223,3116660735,3116661759,3116662271,3116662783,3116663807,3116664831,3116665855,3116667903,3116668927,3116669951,3116670975,3116673023,3116674047,3116675071,3116676095,3116677119,3116678143,3116679167,3116681215,3116682239,3116683263,3116684287,3116686335,3116686591,3116686847,3116687359,3116688383,3116689407,3116690431,3116691455,3116692479,3116693503,3116694527,3116696575,3116697599,3116698623,3116699647,3116700159,3116700671,3116701695,3116702207,3116702719,3116703231,3116703487,3116703743,3116704767,3116705791,3116706815,3116707839,3116708863,3116711935,3116712959,3116713983,3116714751,3116715007,3116716031,3116717055,3116718079,3116719103,3116720127,3116721151,3116724223,3116725247,3116726271,3116727295,3116728319,3116729343,3116729855,3116730111,3116730367,3116731391,3116732415,3116733439,3116733695,3116733951,3116734207,3116734463,3116735487,3116736511,3116737535,3116738559,3116739583,3116740607,3116741631,3116741887,3116742143,3116742399,3116742655,3116743679,3116744703,3116745215,3116745727,3116746751,3116747775,3116748031,3116748287,3116748799,3116749823,3116750847,3116751871,3116752895,3116753919,3116754943,3116755967,3116756991,3116759039,3116759295,3116759551,3116760063,3116761087,3116762111,3116764159,3116764415,3116764671,3116764927,3116765183,3116766207,3116767231,3116767743,3116767999,3116768255,3116768511,3116769279,3116770303,3116770559,3116770815,3116771327,3116772351,3116773375,3116774399,3116775423,3116775679,3116775935,3116776447,3116777471,3116778495,3116778751,3116779007,3116779263,3116779519,3116780543,3116781567,3116782591,3116783615,3116783871,3116784127,3116784383,3116784639,3116785663,3116786687,3116786943,3116787199,3116787711,3116788223,3116788735,3116789759,3116790783,3116792831,3116793855,3116794879,3116795903,3116796927,3116797951,3116798975,3116799999,3116800255,3116800511,3116800767,3116801023,3116802047,3116803071,3116804095,3116805119,3116806143,3116809215,3116810239,3116811263,3116812287,3116813311,3116814335,3116815359,3116816383,3116818431,3116819455,3116819967,3116820479,3116820991,3116821247,3116821503,3116822527,3116822783,3116823039,3116823295,3116823551,3116824575,3116825599,3116826623,3116827647,3116829695,3116830719,3116831743,3116832767,3116833791,3116834815,3116835839,3116836095,3116836863,3116837887,3116838911,3116839935,3116840447,3116840703,3116840959,3116841983,3116843007,3116844031,3116845055,3116846079,3116847103,3116848127,3116849151,3116850175,3116851199,3116852223,3116852479,3116852735,3116853247,3116854271,3116855295,3116856319,3116857343,3116858367,3116859391,3116860415,3116861439,3116862463,3116863487,3116864511,3116865023,3116865279,3116865535,3116866559,3116867071,3116867327,3116867583,3116868607,3116869631,3116870655,3116871679,3116872703,3116873727,3116874751,3116875775,3116876799,3116877823,3116878847,3116879871,3116880127,3116880383,3116880895,3116881407,3116881919,3116882943,3116883967,3116884735,3116884991,3116886015,3116887039,3116888063,3116888319,3116889087,3116890111,3116891135,3116892159,3116893183,3116894975,3116895231,3116895487,3116895743,3116895999,3116896255,3116897279,3116898303,3116899327,3116900351,3116900863,3116901119,3116901375,3116901631,3116902399,3116903423,3116905471,3116905727,3116905983,3116906495,3116907519,3116908543,3116908799,3116909055,3116909311,3116909567,3116910591,3116911615,3116912639,3116913663,3116914687,3116915711,3116916735,3116919807,3116920831,3116921855,3116922367,3116922623,3116922879,3116923135,3116923391,3116923903,3116924927,3116925951,3116926975,3116927999,3116929023,3116930047,3116931071,3116932095,3116933119,3116934143,3116935167,3116936191,3116937215,3116938239,3116939263,3116940287,3116940799,3116941055,3116941311,3116942335,3116943359,3116944383,3116944895,3116945407,3116945919,3116946431,3116947455,3116948479,3116949503,3116950527,3116951551,3116952575,3116953599,3116954623,3116954879,3116955135,3116955391,3116955647,3116956671,3116957695,3116958719,3116959743,3116960255,3116960767,3116961791,3116962303,3116962815,3116963839,3116964863,3116965119,3116965887,3116966911,3116967935,3116968191,3116968447,3116968703,3116968959,3116969983,3116971007,3116972031,3116973055,3116974079,3116975103,3116975359,3116976127,3116977151,3116978175,3116979199,3116980223,3116981247,3116982271,3116983295,3116984319,3116985343,3116986367,3116987391,3116988159,3116988415,3116990463,3116991487,3116992511,3116993535,3116994303,3116994559,3116995583,3116996351,3116996607,3116997631,3116998655,3116999679,3117000703,3117001727,3117002751,3117003775,3117004799,3117005823,3117006079,3117006335,3117006591,3117006847,3117007871,3117008895,3117009919,3117010943,3117011967,3117012991,3117014015,3117014271,3117014527,3117015039,3117015551,3117016063,3117017087,3117018111,3117019135,3117020159,3117021183,3117022207,3117022463,3117022719,3117022975,3117023231,3117023487,3117024255,3117025279,3117026303,3117027327,3117028351,3117029375,3117030399,3117031423,3117033471,3117035519,3117036543,3117037567,3117038591,3117039615,3117040639,3117041663,3117042687,3117043711,3117044735,3117045759,3117046783,3117047039,3117047295,3117047807,3117048831,3117049087,3117049343,3117049599,3117049855,3117050111,3117050367,3117050623,3117050879,3117051135,3117051391,3117051647,3117051903,3117052159,3117052415,3117052927,3117053951,3117054975,3117055999,3117057023,3117057535,3117058047,3117059071,3117059327,3117059583,3117060095,3117061119,3117062143,3117063167,3117064191,3117066239,3117068287,3117069311,3117070335,3117071359,3117072383,3117073407,3117074431,3117075455,3117076479,3117077503,3117078527,3117079551,3117080063,3117080575,3117081599,3117082623,3117083647,3117083903,3117084159,3117084415,3117084671,3117085695,3117086719,3117087743,3117088767,3117089791,3117090815,3117091839,3117092863,3117093887,3117094911,3117095935,3117096959,3117097215,3117097983,3117099007,3117100031,3117101055,3117102079,3117103103,3117104127,3117105407,3117105663,3117105919,3117106175,3117107199,3117107455,3117108223,3117109247,3117110271,3117110783,3117111295,3117111551,3117111807,3117112063,3117112319,3117113343,3117114367,3117115391,3117116415,3117117439,3117118463,3117119487,3117119999,3117120255,3117120511,3117121535,3117122559,3117123583,3117124607,3117125631,3117126655,3117127679,3117128703,3117129727,3117130751,3117131775,3117132799,3117133823,3117135871,3117136895,3117138943,3117139455,3117139967,3117140991,3117141503,3117141759,3117142015,3117143039,3117144063,3117144575,3117145087,3117147135,3117148159,3117149183,3117150207,3117151231,3117152255,3117152511,3117152767,3117153023,3117153279,3117154303,3117154559,3117154815,3117155327,3117156351,3117157375,3117158399,3117159423,3117160447,3117161471,3117162495,3117163519,3117164543,3117165567,3117166591,3117167615,3117167871,3117168127,3117168639,3117169663,3117170687,3117171711,3117172735,3117173759,3117174783,3117175807,3117176831,3117177855,3117178111,3117178879,3117179903,3117180159,3117180415,3117180671,3117180927,3117181951,3117182207,3117182463,3117182719,3117182975,3117183999,3117185023,3117185279,3117185791,3117186047,3117187071,3117188095,3117189119,3117190143,3117191167,3117192191,3117193215,3117194239,3117195263,3117195775,3117196031,3117196287,3117197311,3117198335,3117199359,3117200383,3117201407,3117201919,3117202175,3117202431,3117203455,3117204479,3117204735,3117204991,3117205247,3117205503,3117206527,3117208575,3117209599,3117210623,3117211647,3117212671,3117214719,3117215743,3117216767,3117217791,3117218815,3117219839,3117220863,3117221887,3117223423,3117223935,3117224959,3117225983,3117227007,3117228031,3117229055,3117230079,3117231103,3117232127,3117233151,3117234175,3117235199,3117236223,3117237247,3117237503,3117238015,3117238271,3117239295,3117240319,3117241343,3117242367,3117243391,3117244415,3117245439,3117246463,3117247487,3117248511,3117249535,3117250559,3117251583,3117252607,3117253631,3117254655,3117255679,3117256703,3117257727,3117258751,3117259775,3117260799,3117261823,3117262847,3117263871,3117264895,3117265919,3117266943,3117267967,3117268223,3117268479,3117268735,3117268991,3117269247,3117269503,3117269759,3117270015,3117271039,3117271295,3117271551,3117271807,3117272063,3117272319,3117272575,3117272831,3117273087,3117274111,3117276159,3117276415,3117276671,3117277183,3117278207,3117279231,3117280255,3117281279,3117282303,3117282559,3117282815,3117283327,3117284351,3117285375,3117286399,3117287423,3117288447,3117289471,3117290495,3117291519,3117291775,3117292031,3117292287,3117292543,3117293567,3117294591,3117295615,3117296639,3117297663,3117298687,3117299199,3117299711,3117300223,3117300735,3117301503,3117301759,3117302783,3117303039,3117303295,3117303551,3117303807,3117304831,3117305855,3117306879,3117307903,3117308927,3117309951,3117310975,3117311999,3117313023,3117314047,3117315071,3117316095,3117316351,3117316607,3117316863,3117317119,3117318143,3117319167,3117320191,3117321215,3117322239,3117323263,3117324287,3117325311,3117326335,3117326847,3117327359,3117328383,3117329407,3117330431,3117331455,3117332479,3117333503,3117334527,3117335551,3117336575,3117337599,3117338623,3117339647,3117340671,3117341695,3117342719,3117342975,3117343231,3117343743,3117343999,3117344255,3117344511,3117344767,3117345791,3117346815,3117347839,3117348863,3117349119,3117349375,3117349631,3117349887,3117350143,3117350399,3117350655,3117350911,3117351679,3117351935,3117352959,3117353215,3117353471,3117353983,3117354239,3117354495,3117355007,3117356031,3117356287,3117356543,3117356799,3117357055,3117358079,3117359103,3117359359,3117359615,3117359871,3117360127,3117360383,3117360639,3117360895,3117361151,3117362175,3117362687,3117362943,3117363199,3117364223,3117365247,3117366271,3117367295,3117368319,3117369343,3117370367,3117371391,3117372415,3117373439,3117374463,3117374719,3117374975,3117375487,3117376511,3117378559,3117379583,3117380607,3117381631,3117382655,3117383679,3117384703,3117385727,3117386751,3117387775,3117388799,3117389823,3117390847,3117392895,3117393151,3117393919,3117394943,3117395967,3117396479,3117396991,3117398015,3117399039,3117401087,3117402111,3117403135,3117404159,3117405183,3117405439,3117405695,3117405951,3117406207,3117407231,3117408255,3117408511,3117408767,3117409023,3117409279,3117410303,3117411327,3117411583,3117411839,3117412351,3117414399,3117414911,3117415167,3117415423,3117416447,3117417471,3117418495,3117419519,3117420543,3117421567,3117422591,3117423615,3117424639,3117426687,3117427711,3117428735,3117429759,3117430783,3117431807,3117432831,3117433855,3117434879,3117435903,3117436927,3117437951,3117438975,3117439999,3117441023,3117442047,3117443071,3117444095,3117445119,3117446143,3117447167,3117447423,3117448191,3117450239,3117451263,3117452287,3117453311,3117454335,3117455359,3117455615,3117455871,3117456127,3117457407,3117458431,3117459455,3117460479,3117460991,3117461503,3117462527,3117463551,3117464575,3117465599,3117466623,3117467647,3117468671,3117469695,3117470719,3117471743,3117473791,3117474815,3117475839,3117476863,3117477887,3117478911,3117479935,3117480959,3117481983,3117483007,3117485055,3117485311,3117485567,3117485823,3117486079,3117487103,3117488127,3117490175,3117491199,3117491711,3117491967,3117492223,3117493247,3117494271,3117494527,3117494783,3117495295,3117496319,3117497343,3117498367,3117499391,3117500415,3117500671,3117500927,3117501183,3117501439,3117502463,3117502719,3117502975,3117503231,3117503487,3117503999,3117504511,3117505535,3117506559,3117507583,3117508607,3117509631,3117510655,3117511679,3117512703,3117513727,3117514751,3117515775,3117516799,3117517823,3117518847,3117519871,3117520895,3117521919,3117522943,3117523199,3117523967,3117524991,3117526015,3117527039,3117528063,3117530111,3117531135,3117532159,3117532415,3117532671,3117533183,3117534207,3117535231,3117535487,3117535743,3117536255,3117537279,3117538303,3117538559,3117539071,3117539327,3117540351,3117541119,3117541375,3117542399,3117543423,3117543679,3117543935,3117544191,3117544447,3117545471,3117546495,3117547519,3117548543,3117549567,3117550591,3117551615,3117553663,3117554687,3117555711,3117556735,3117557759,3117558783,3117559807,3117560831,3117561855,3117562879,3117563903,3117565951,3117566975,3117567999,3117568255,3117568511,3117568767,3117569023,3117570047,3117571071,3117572095,3117573119,3117574143,3117575167,3117576191,3117577215,3117578239,3117579263,3117580287,3117581311,3117582335,3117582591,3117582847,3117583103,3117583359,3117584383,3117585407,3117586431,3117587455,3117587711,3117587967,3117588223,3117588479,3117588735,3117588991,3117589247,3117589503,3117590271,3117590527,3117591551,3117592575,3117593599,3117594111,3117594367,3117594623,3117595647,3117596671,3117597695,3117598719,3117599743,3117600255,3117600767,3117601791,3117602815,3117603071,3117603327,3117603583,3117603839,3117604863,3117605119,3117605887,3117606911,3117607167,3117607423,3117607679,3117607935,3117608959,3117609983,3117611007,3117612031,3117613055,3117614079,3117614335,3117614591,3117614847,3117615103,3117615359,3117615615,3117615871,3117616127,3117617151,3117618175,3117619199,3117620223,3117621247,3117621759,3117622015,3117622271,3117623295,3117623551,3117623807,3117624063,3117624319,3117625343,3117626367,3117627391,3117628415,3117628671,3117629439,3117630463,3117631487,3117632511,3117632767,3117633023,3117633279,3117633535,3117634559,3117636607,3117637631,3117638655,3117639679,3117640703,3117641727,3117642751,3117643007,3117643263,3117643519,3117643775,3117644799,3117645823,3117646847,3117647871,3117648895,3117649919,3117651199,3117651967,3117652991,3117654015,3117655039,3117656063,3117656319,3117656575,3117656831,3117657087,3117659135,3117660159,3117661183,3117663231,3117664255,3117664767,3117665279,3117666303,3117667327,3117668351,3117668863,3117669119,3117669375,3117670399,3117671423,3117672447,3117673471,3117674495,3117676543,3117677567,3117678591,3117679615,3117680383,3117680639,3117681407,3117681663,3117682687,3117683711,3117683967,3117684223,3117684735,3117685759,3117686783,3117687039,3117687295,3117687551,3117687807,3117688831,3117689855,3117690879,3117691903,3117692927,3117693951,3117694207,3117694463,3117694975,3117695999,3117696511,3117697023,3117698047,3117699071,3117699327,3117699583,3117700095,3117701119,3117702143,3117703167,3117704191,3117705215,3117706239,3117707263,3117707519,3117707775,3117708031,3117708799,3117709055,3117709311,3117710335,3117711359,3117712383,3117713407,3117714431,3117715455,3117716479,3117716735,3117716991,3117717503,3117718527,3117719551,3117720575,3117721599,3117721855,3117722111,3117722367,3117722623,3117723391,3117723647,3117724671,3117725695,3117725951,3117726207,3117726719,3117727743,3117728767,3117729791,3117730815,3117731327,3117731839,3117732863,3117733887,3117734911,3117735935,3117736959,3117737983,3117739007,3117741055,3117742079,3117743103,3117744127,3117744895,3117745151,3117746175,3117747199,3117748223,3117749247,3117749759,3117750015,3117750271,3117750527,3117750783,3117751039,3117751295,3117752319,3117753343,3117754367,3117755391,3117755647,3117755903,3117756159,3117756415,3117757439,3117758463,3117759487,3117760511,3117760767,3117761535,3117762559,3117763583,3117764607,3117764863,3117765119,3117765375,3117765631,3117766655,3117766911,3117767679,3117768703,3117769727,3117771775,3117772799,3117773823,3117775871,3117776895,3117777919,3117778943,3117779967,3117780991,3117782015,3117782783,3117783039,3117783807,3117784063,3117785087,3117786111,3117787135,3117788159,3117789183,3117790207,3117791231,3117792255,3117793279,3117793535,3117793791,3117794047,3117794303,3117795327,3117796351,3117797375,3117798399,3117799423,3117800447,3117800959,3117801471,3117802495,3117803519,3117804543,3117805823,3117806079,3117806335,3117806591,3117807615,3117807871,3117808639,3117809663,3117810687,3117811711,3117811967,3117812223,3117812479,3117812735,3117813759,3117814783,3117816831,3117817855,3117818879,3117819903,3117820671,3117820927,3117821951,3117822975,3117823999,3117826047,3117826303,3117826559,3117826815,3117827071,3117827839,3117828095,3117828351,3117828863,3117829119,3117830143,3117832191,3117833215,3117834239,3117834495,3117834751,3117835007,3117835263,3117835519,3117836031,3117836287,3117837311,3117837567,3117837823,3117838079,3117838335,3117839359,3117840383,3117841407,3117841919,3117842431,3117842943,3117843455,3117843967,3117844479,3117845503,3117846015,3117846527,3117847551,3117848575,3117849599,3117850623,3117851647,3117851903,3117852159,3117852415,3117852671,3117853695,3117853951,3117854463,3117854719,3117855743,3117856767,3117857791,3117858815,3117859839,3117860863,3117861887,3117862911,3117863935,3117864959,3117865983,3117867007,3117868031,3117871103,3117872127,3117873151,3117874175,3117875199,3117876223,3117876479,3117876735,3117876991,3117877247,3117878271,3117879295,3117880319,3117881343,3117882367,3117882623,3117882879,3117883135,3117883391,3117884415,3117885439,3117886463,3117887487,3117888511,3117889535,3117890559,3117891583,3117892607,3117893631,3117894655,3117896703,3117897727,3117898751,3117899775,3117900799,3117901823,3117902847,3117903871,3117904127,3117904383,3117904639,3117904895,3117905919,3117906943,3117907967,3117908223,3117908479,3117908735,3117908991,3117910015,3117911039,3117913087,3117914111,3117915135,3117916159,3117917183,3117917951,3117918207,3117919231,3117920255,3117921279,3117921535,3117921791,3117922047,3117922303,3117922559,3117922815,3117923327,3117924351,3117925375,3117926399,3117927423,3117928447,3117928959,3117929215,3117929471,3117930495,3117931519,3117932799,3117933055,3117933567,3117934591,3117935615,3117936639,3117937663,3117938175,3117938431,3117938687,3117939711,3117940735,3117940991,3117941247,3117941503,3117941759,3117942783,3117943039,3117943295,3117943551,3117943807,3117944063,3117944319,3117944575,3117944831,3117945855,3117946879,3117947903,3117948927,3117949183,3117949439,3117949695,3117949951,3117950975,3117951999,3117952255,3117952511,3117953023,3117953279,3117953535,3117954047,3117956095,3117957119,3117958143,3117958399,3117958655,3117958911,3117959167,3117959423,3117959679,3117959935,3117960191,3117961215,3117962239,3117963263,3117964287,3117965055,3117965311,3117966335,3117967359,3117968383,3117969407,3117970431,3117970943,3117971199,3117971455,3117972479,3117972735,3117973247,3117973503,3117974527,3117975551,3117975807,3117976063,3117976575,3117977599,3117978623,3117979647,3117980671,3117981695,3117982719,3117983743,3117984767,3117985791,3117986815,3117987839,3117988863,3117989375,3117989631,3117989887,3117990911,3117991935,3117992191,3117992447,3117992703,3117992959,3117993983,3117995007,3117996031,3117997055,3117998079,3117999615,3117999871,3118000127,3118002175,3118003199,3118004223,3118005247,3118006271,3118007039,3118007295,3118007551,3118007807,3118008063,3118008319,3118009343,3118010367,3118011391,3118012415,3118013439,3118014463,3118015487,3118015743,3118015999,3118016255,3118016511,3118017535,3118018559,3118019071,3118019327,3118019583,3118020607,3118020863,3118021119,3118021375,3118021631,3118021887,3118022143,3118022399,3118022655,3118023679,3118023935,3118024191,3118024447,3118024703,3118025727,3118026751,3118027775,3118028799,3118029823,3118030847,3118031871,3118032895,3118033919,3118034431,3118034943,3118035967,3118036223,3118036479,3118036735,3118038015,3118038527,3118038783,3118039039,3118039295,3118039551,3118039807,3118040063,3118041087,3118042111,3118042367,3118042879,3118043135,3118045183,3118046207,3118047231,3118048255,3118048511,3118048767,3118049023,3118049279,3118049535,3118049791,3118050047,3118050303,3118051327,3118052351,3118053375,3118054399,3118055423,3118056447,3118056703,3118056959,3118057471,3118058495,3118059519,3118060543,3118061567,3118062591,3118063615,3118064639,3118065663,3118066687,3118067711,3118068735,3118069759,3118071807,3118072063,3118072319,3118072575,3118072831,3118073855,3118074879,3118075903,3118076415,3118076671,3118076927,3118077183,3118077439,3118077951,3118078975,3118079999,3118081023,3118082047,3118083071,3118084095,3118085119,3118088191,3118089215,3118090239,3118091263,3118092287,3118093311,3118094335,3118095359,3118096383,3118097407,3118097663,3118097919,3118098175,3118098431,3118098687,3118098943,3118099199,3118099455,3118100479,3118101503,3118102527,3118102783,3118103551,3118104319,3118104575,3118106623,3118106879,3118107135,3118107391,3118107647,3118107903,3118108159,3118108415,3118108671,3118109695,3118109951,3118110719,3118111743,3118111999,3118112255,3118112511,3118112767,3118113791,3118114815,3118115839,3118116863,3118118911,3118119167,3118119423,3118119679,3118119935,3118120959,3118121983,3118122239,3118122495,3118122751,3118123007,3118124031,3118124543,3118124799,3118125055,3118127103,3118128127,3118128639,3118129151,3118130175,3118131199,3118132223,3118133247,3118134271,3118135295,3118136319,3118137343,3118138367,3118138623,3118138879,3118139135,3118140415,3118141439,3118142463,3118143487,3118144511,3118145535,3118146559,3118147583,3118148607,3118149631,3118150655,3118151679,3118152703,3118153727,3118154751,3118155775,3118156799,3118157823,3118158847,3118159103,3118159871,3118160895,3118161919,3118162943,3118163199,3118163711,3118163967,3118166015,3118167039,3118168063,3118169087,3118169343,3118169855,3118170111,3118171135,3118172159,3118173183,3118173439,3118173695,3118173951,3118174207,3118175231,3118176255,3118177279,3118178303,3118178559,3118178815,3118179071,3118179327,3118181375,3118182399,3118183423,3118184447,3118185471,3118186495,3118187519,3118188543,3118189567,3118190591,3118191615,3118192639,3118193663,3118194687,3118195711,3118196735,3118197759,3118198783,3118199807,3118200831,3118201855,3118202879,3118203903,3118204927,3118205951,3118206975,3118207999,3118208255,3118208511,3118208767,3118209023,3118210047,3118210559,3118211071,3118214143,3118215167,3118217215,3118218239,3118219263,3118220287,3118220543,3118220799,3118221055,3118221311,3118222335,3118223359,3118223615,3118223871,3118224127,3118224383,3118225407,3118226431,3118227455,3118229247,3118229503,3118231551,3118232575,3118233343,3118233599,3118234623,3118235647,3118236671,3118237695,3118238719,3118239743,3118240511,3118240767,3118241791,3118242815,3118243839,3118244863,3118245887,3118246911,3118248447,3118248959,3118249983,3118251007,3118252031,3118252543,3118253055,3118254079,3118255103,3118255615,3118256127,3118257151,3118258175,3118259199,3118259455,3118259711,3118260223,3118261247,3118262271,3118263295,3118263807,3118264319,3118265343,3118266367,3118266623,3118266879,3118267135,3118267391,3118268415,3118269439,3118270463,3118271487,3118272511,3118273791,3118274047,3118275071,3118275583,3118276607,3118277631,3118278655,3118279679,3118280703,3118281727,3118282751,3118283775,3118284031,3118284287,3118284543,3118284799,3118285055,3118285311,3118285567,3118285823,3118286079,3118286335,3118286591,3118286847,3118287871,3118288895,3118289919,3118290943,3118291967,3118293247,3118293503,3118293759,3118294015,3118295039,3118296063,3118297087,3118298111,3118300159,3118301183,3118302207,3118302463,3118302719,3118303231,3118304255,3118305279,3118306303,3118307327,3118308351,3118309375,3118310143,3118310399,3118311423,3118312447,3118313471,3118314495,3118315519,3118316543,3118317567,3118318591,3118319103,3118319359,3118319615,3118320639,3118321663,3118322687,3118323711,3118323967,3118324223,3118324479,3118324735,3118324991,3118325247,3118325759,3118327039,3118327295,3118327551,3118327807,3118328831,3118329087,3118329343,3118329599,3118329855,3118330879,3118331135,3118331391,3118331647,3118331903,3118332927,3118333951,3118334975,3118335999,3118337023,3118338047,3118339071,3118339327,3118339583,3118339839,3118340095,3118341119,3118341375,3118341631,3118341887,3118342143,3118343167,3118344191,3118344447,3118344703,3118344959,3118345215,3118346239,3118347263,3118348287,3118349311,3118350335,3118351359,3118352383,3118353407,3118354431,3118355455,3118356479,3118357503,3118358527,3118359551,3118360575,3118361599,3118362623,3118363647,3118364671,3118365695,3118366719,3118367743,3118368767,3118369279,3118369535,3118369791,3118370815,3118371839,3118372863,3118373887,3118374911,3118375679,3118375935,3118376959,3118377983,3118379007,3118380031,3118381055,3118382079,3118383103,3118384127,3118385151,3118385407,3118386175,3118387199,3118387455,3118387711,3118387967,3118388223,3118388479,3118388735,3118388991,3118389247,3118389759,3118390015,3118390527,3118390783,3118391039,3118391295,3118392319,3118394367,3118395391,3118395647,3118395903,3118396159,3118396415,3118397439,3118398463,3118399487,3118400511,3118401535,3118402559,3118403071,3118403327,3118403583,3118404607,3118405631,3118406655,3118407679,3118409727,3118410751,3118411775,3118413055,3118413311,3118413567,3118413823,3118414079,3118414335,3118414847,3118415871,3118416895,3118417663,3118417919,3118418943,3118419199,3118419455,3118419711,3118420223,3118420479,3118420735,3118420991,3118422015,3118423039,3118424063,3118425087,3118426111,3118428159,3118429183,3118430207,3118431231,3118432255,3118433279,3118434303,3118435327,3118436351,3118437375,3118438399,3118438655,3118438911,3118439167,3118439423,3118440447,3118440703,3118441215,3118441471,3118441727,3118442495,3118443519,3118444543,3118445567,3118446591,3118447615,3118448639,3118449663,3118451711,3118451967,3118452223,3118452479,3118452735,3118453759,3118454015,3118454271,3118454527,3118454783,3118456831,3118457855,3118458879,3118459647,3118459903,3118460927,3118461951,3118462975,3118463999,3118465023,3118465791,3118466047,3118467071,3118468095,3118469119,3118470143,3118471167,3118472191,3118472447,3118472703,3118472959,3118473215,3118474239,3118475263,3118476287,3118477311,3118478335,3118479359,3118480383,3118481407,3118482431,3118483455,3118484479,3118485503,3118486527,3118487551,3118488575,3118489599,3118490623,3118491647,3118492671,3118493695,3118494719,3118495743,3118496767,3118497791,3118500863,3118501887,3118502143,3118502399,3118502655,3118502911,3118504959,3118505983,3118507007,3118508031,3118509055,3118510079,3118511103,3118512127,3118513151,3118514175,3118515199,3118515711,3118516223,3118517247,3118518271,3118519295,3118519551,3118519807,3118520063,3118520319,3118520575,3118520831,3118521087,3118521343,3118522367,3118523391,3118524415,3118525439,3118526463,3118527487,3118528511,3118528767,3118529023,3118529535,3118530559,3118530815,3118531071,3118531327,3118531583,3118532607,3118532863,3118533119,3118533375,3118533631,3118534655,3118535679,3118535935,3118536191,3118536447,3118536703,3118536959,3118537471,3118537727,3118538751,3118539775,3118540799,3118541823,3118542847,3118544895,3118545919,3118546943,3118547967,3118548991,3118549247,3118550015,3118551039,3118552063,3118553087,3118554111,3118555135,3118556159,3118557183,3118558207,3118559231,3118559487,3118559743,3118560255,3118561279,3118562303,3118562559,3118562815,3118563071,3118563327,3118564351,3118565631,3118565887,3118566399,3118567423,3118568447,3118569471,3118570495,3118571519,3118571775,3118572031,3118572543,3118573567,3118574079,3118574591,3118575615,3118576639,3118577663,3118578687,3118579199,3118579455,3118579711,3118580735,3118580991,3118581247,3118581759,3118582015,3118582271,3118582783,3118583039,3118583295,3118583551,3118583807,3118584831,3118585855,3118586879,3118588159,3118588415,3118588671,3118588927,3118589951,3118590207,3118590463,3118590719,3118590975,3118591231,3118591999,3118593023,3118594047,3118595071,3118595327,3118595839,3118596095,3118597119,3118598143,3118599167,3118601215,3118602239,3118603263,3118604287,3118605311,3118606335,3118607359,3118608383,3118609407,3118610431,3118611455,3118612479,3118613503,3118614527,3118614783,3118615039,3118615295,3118615551,3118616575,3118617599,3118618623,3118619647,3118620671,3118620927,3118621183,3118621439,3118621695,3118622719,3118622975,3118623231,3118623487,3118623743,3118624767,3118625791,3118626815,3118627839,3118628863,3118629887,3118630911,3118631935,3118632959,3118633215,3118633471,3118633727,3118633983,3118635007,3118635263,3118635519,3118635775,3118636031,3118637055,3118638079,3118638591,3118638847,3118639103,3118640127,3118640383,3118640639,3118640895,3118641151,3118642175,3118642431,3118642687,3118642943,3118643199,3118644223,3118646271,3118647295,3118648319,3118649343,3118650367,3118651391,3118652415,3118653439,3118653695,3118657535,3118658559,3118659583,3118660607,3118662655,3118663167,3118663423,3118663679,3118664703,3118665727,3118666751,3118667775,3118668799,3118669823,3118670079,3118670335,3118670591,3118670847,3118671871,3118672895,3118673919,3118674943,3118675967,3118676991,3118678015,3118679039,3118679295,3118681087,3118682111,3118682879,3118683135,3118684159,3118685183,3118686207,3118687231,3118689279,3118689535,3118689791,3118690047,3118691327,3118692351,3118693375,3118694399,3118695423,3118695679,3118695935,3118696447,3118696703,3118697215,3118697471,3118698495,3118698751,3118699007,3118699263,3118699519,3118700543,3118701567,3118702591,3118703615,3118704639,3118705663,3118707711,3118708735,3118709759,3118711807,3118712831,3118713855,3118714879,3118715903,3118717951,3118718975,3118719999,3118721023,3118721535,3118722047,3118723071,3118724095,3118725119,3118726143,3118728191,3118729215,3118730239,3118731263,3118732031,3118732287,3118733311,3118734335,3118735359,3118736383,3118737407,3118738431,3118738943,3118739199,3118739455,3118740479,3118741503,3118741759,3118742015,3118742271,3118742527,3118743551,3118744575,3118745599,3118745855,3118746111,3118746367,3118746623,3118747647,3118748671,3118749695,3118750719,3118750975,3118751743,3118752767,3118753791,3118754815,3118755839,3118756863,3118759935,3118760959,3118761471,3118761727,3118761983,3118763007,3118764031,3118765311,3118766079,3118767103,3118768127,3118769151,3118770175,3118770431,3118770687,3118770943,3118771199,3118772223,3118773247,3118774271,3118775295,3118776319,3118777343,3118779391,3118779647,3118779903,3118780159,3118780415,3118781439,3118782463,3118783487,3118784511,3118784767,3118785023,3118785279,3118785535,3118786559,3118787583,3118788607,3118789631,3118790655,3118790911,3118791167,3118791423,3118791679,3118792703,3118793727,3118794751,3118795775,3118796799,3118797823,3118798847,3118799871,3118800895,3118801919,3118802943,3118803967,3118804991,3118806015,3118807039,3118807551,3118807807,3118808063,3118809087,3118809343,3118809599,3118810111,3118811135,3118812159,3118813183,3118814207,3118815231,3118815743,3118816255,3118817279,3118818303,3118819327,3118820351,3118821375,3118821887,3118822399,3118822911,3118823167,3118823423,3118823935,3118824447,3118825471,3118826495,3118826751,3118827519,3118828543,3118829567,3118829823,3118830335,3118830591,3118832639,3118833663,3118834687,3118835711,3118836735,3118837759,3118838783,3118839807,3118840831,3118841343,3118841855,3118842879,3118843903,3118844159,3118844415,3118844671,3118844927,3118845183,3118845439,3118845951,3118846975,3118849023,3118849279,3118850047,3118850559,3118850815,3118851071,3118852095,3118853119,3118854143,3118854655,3118854911,3118855167,3118856447,3118856703,3118856959,3118857215,3118858239,3118859263,3118860287,3118861311,3118861567,3118862079,3118862335,3118862591,3118862847,3118863103,3118863359,3118864383,3118865407,3118866431,3118867455,3118868223,3118868479,3118870527,3118871807,3118872063,3118872319,3118872575,3118873599,3118874111,3118874367,3118874623,3118874879,3118875135,3118875647,3118876671,3118877695,3118878719,3118879743,3118880767,3118881791,3118882815,3118883839,3118884095,3118884607,3118884863,3118885119,3118885375,3118885631,3118885887,3118886911,3118887935,3118888959,3118889215,3118889471,3118889727,3118889983,3118890239,3118890495,3118890751,3118891007,3118892031,3118893055,3118893567,3118893823,3118894079,3118895103,3118896127,3118898175,3118899199,3118900223,3118901247,3118902271,3118903295,3118904319,3118904575,3118904831,3118905087,3118905343,3118906367,3118907391,3118908415,3118908671,3118908927,3118909183,3118909439,3118910463,3118911487,3118912511,3118913535,3118914559,3118915583,3118916607,3118916863,3118917119,3118917631,3118918655,3118919679,3118920703,3118920959,3118921215,3118921471,3118921727,3118922751,3118923775,3118924799,3118925823,3118926847,3118927871,3118928895,3118929919,3118931967,3118932991,3118934015,3118934271,3118935039,3118936063,3118937087,3118938111,3118938367,3118938623,3118938879,3118939135,3118940159,3118940415,3118940671,3118940927,3118941183,3118942207,3118943231,3118944255,3118945279,3118946303,3118947327,3118948351,3118949375,3118950399,3118951423,3118952447,3118953215,3118953471,3118954495,3118955519,3118956543,3118957567,3118958591,3118960639,3118961663,3118962687,3118963711,3118964735,3118965759,3118967807,3118968831,3118969855,3118970879,3118971903,3118972927,3118973951,3118974975,3118975999,3118976255,3118976511,3118976767,3118977023,3118978047,3118979071,3118980095,3118981119,3118982143,3118983167,3118983423,3118983679,3118983935,3118984191,3118985215,3118986239,3118987263,3118991359,3118992383,3118992895,3118993151,3118993407,3118993663,3118993919,3118994431,3118994687,3118994943,3118995199,3118995455,3118996479,3118997503,3118998527,3118999551,3118999807,3119000063,3119000319,3119000575,3119000831,3119001087,3119001343,3119001599,3119002623,3119002879,3119003135,3119003647,3119003903,3119004159,3119004415,3119004671,3119005695,3119006463,3119006719,3119007743,3119008767,3119009791,3119010815,3119011839,3119012095,3119012351,3119012607,3119012863,3119013887,3119014143,3119014399,3119014655,3119014911,3119015935,3119016959,3119017983,3119019007,3119019263,3119020031,3119021055,3119022079,3119023103,3119024127,3119025151,3119026175,3119027199,3119028223,3119029247,3119030271,3119031551,3119031807,3119032063,3119032319,3119032575,3119032831,3119033343,3119034367,3119035391,3119036415,3119037439,3119038463,3119039487,3119039743,3119039999,3119040255,3119040511,3119041535,3119042047,3119042303,3119042559,3119043583,3119044607,3119046655,3119047679,3119048703,3119048959,3119049215,3119049471,3119049727,3119050751,3119051775,3119054847,3119055103,3119055359,3119055615,3119055871,3119056895,3119057919,3119058943,3119059199,3119059711,3119059967,3119060991,3119062015,3119063039,3119063295,3119063551,3119063807,3119064063,3119067135,3119068159,3119069183,3119070207,3119071231,3119071487,3119071743,3119071999,3119072255,3119073279,3119074303,3119075327,3119075839,3119076095,3119076351,3119077375,3119078399,3119079423,3119080447,3119081471,3119082495,3119083519,3119083775,3119084031,3119084543,3119086591,3119087615,3119087871,3119088127,3119088383,3119088639,3119088895,3119089663,3119090687,3119090943,3119091199,3119091711,3119092735,3119093247,3119093503,3119093759,3119094783,3119096831,3119097855,3119098879,3119099903,3119100927,3119101951,3119102463,3119102975,3119103999,3119105023,3119105279,3119106047,3119106559,3119107071,3119108095,3119109119,3119110399,3119110655,3119110911,3119111167,3119112191,3119113215,3119114239,3119115263,3119116287,3119117311,3119118335,3119119359,3119120383,3119121407,3119122431,3119122687,3119122943,3119123199,3119123455,3119123711,3119123967,3119124223,3119124479,3119125503,3119126015,3119126271,3119126527,3119127551,3119128575,3119129599,3119130623,3119131647,3119132671,3119133695,3119133951,3119134719,3119135743,3119136767,3119137023,3119137279,3119137535,3119137791,3119138047,3119138303,3119138815,3119139071,3119139327,3119139583,3119139839,3119141887,3119142911,3119143935,3119144959,3119145983,3119146239,3119146495,3119146751,3119147007,3119148031,3119148287,3119148543,3119148799,3119149055,3119149311,3119149567,3119149823,3119150079,3119152127,3119153151,3119154175,3119155199,3119156223,3119157247,3119158271,3119159295,3119160319,3119161343,3119162367,3119163391,3119163647,3119163903,3119164159,3119164415,3119165439,3119166463,3119167487,3119168511,3119169535,3119170559,3119171583,3119173631,3119174655,3119174911,3119175167,3119175679,3119175935,3119176447,3119176703,3119177727,3119178751,3119179775,3119180799,3119181823,3119182847,3119183359,3119183615,3119183871,3119184895,3119185151,3119185407,3119185663,3119186943,3119188223,3119188479,3119188735,3119188991,3119190015,3119191039,3119192063,3119193087,3119194111,3119194367,3119194623,3119194879,3119195135,3119196159,3119196927,3119197183,3119197695,3119197951,3119198207,3119199231,3119200255,3119201535,3119201791,3119202047,3119202303,3119203327,3119204095,3119204351,3119205375,3119205631,3119205887,3119206143,3119206399,3119207423,3119207679,3119207935,3119208191,3119208447,3119209471,3119210495,3119211519,3119212543,3119213567,3119214335,3119214591,3119215615,3119216639,3119217663,3119218687,3119219711,3119220735,3119220991,3119221247,3119221503,3119221759,3119222015,3119222271,3119222527,3119222783,3119223039,3119223295,3119223807,3119225855,3119226879,3119227903,3119228159,3119228927,3119230975,3119231999,3119233023,3119234047,3119235071,3119236095,3119237119,3119238143,3119238399,3119238655,3119238911,3119239167,3119240191,3119241215,3119242239,3119243263,3119243775,3119244031,3119244543,3119244799,3119245311,3119246335,3119247359,3119247615,3119247871,3119248127,3119248383,3119248639,3119248895,3119249151,3119249407,3119250431,3119251455,3119252479,3119253503,3119254015,3119254271,3119254527,3119255551,3119256575,3119256831,3119257599,3119258623,3119259647,3119260671,3119261695,3119262207,3119262463,3119262719,3119262975,3119263231,3119263487,3119263743,3119264767,3119265279,3119265535,3119265791,3119266815,3119267839,3119269887,3119270911,3119271935,3119272191,3119272447,3119272703,3119272959,3119273983,3119275007,3119276031,3119277055,3119278079,3119279103,3119280127,3119281151,3119282175,3119283199,3119283711,3119283967,3119284223,3119284479,3119284735,3119284991,3119285247,3119286271,3119287295,3119287551,3119287807,3119288063,3119288319,3119289343,3119290367,3119291391,3119292415,3119293439,3119294463,3119295487,3119296511,3119297535,3119297791,3119298047,3119298303,3119298559,3119299583,3119300607,3119301631,3119302655,3119302911,3119303167,3119303423,3119303679,3119304703,3119305727,3119306751,3119307775,3119308031,3119308287,3119308799,3119309823,3119310079,3119310591,3119310847,3119311103,3119311871,3119312895,3119313919,3119315967,3119318015,3119319039,3119320063,3119320575,3119321087,3119322111,3119323135,3119324159,3119324415,3119325183,3119326207,3119327231,3119328255,3119329279,3119330303,3119330815,3119331071,3119331327,3119332351,3119333375,3119334399,3119335423,3119336447,3119337471,3119338495,3119339519,3119340543,3119340799,3119341055,3119341311,3119341567,3119342079,3119342591,3119342847,3119343103,3119343359,3119343615,3119344639,3119348735,3119349759,3119350783,3119351807,3119352831,3119353855,3119354367,3119354879,3119355903,3119356927,3119358975,3119359231,3119359487,3119359743,3119359999,3119361023,3119362047,3119363071,3119364095,3119364351,3119364607,3119364863,3119365119,3119366143,3119367167,3119368191,3119369215,3119369727,3119370239,3119371263,3119372287,3119372799,3119373311,3119374335,3119374847,3119375359,3119376383,3119377407,3119378431,3119379455,3119380479,3119381503,3119382015,3119382271,3119382527,3119383551,3119384575,3119385599,3119386623,3119387647,3119388671,3119389695,3119389951,3119390207,3119390463,3119390719,3119391743,3119392767,3119393791,3119394815,3119395839,3119396863,3119397887,3119399935,3119400959,3119401983,3119403007,3119404031,3119405055,3119405311,3119405567,3119405823,3119406079,3119407103,3119408127,3119409151,3119410175,3119411199,3119411455,3119411711,3119411967,3119412223,3119412479,3119412735,3119413247,3119414271,3119415295,3119416319,3119417343,3119417599,3119417855,3119418111,3119418367,3119418623,3119418879,3119419135,3119419391,3119420415,3119421439,3119421951,3119422207,3119422463,3119423487,3119424511,3119425535,3119426559,3119426815,3119427071,3119427583,3119427839,3119428095,3119428351,3119428607,3119429631,3119430655,3119431679,3119432703,3119434751,3119435775,3119436799,3119437823,3119438079,3119438847,3119439871,3119440895,3119441407,3119441663,3119441919,3119442943,3119443967,3119444735,3119444991,3119446015,3119447039,3119448063,3119449087,3119450111,3119451135,3119452159,3119453183,3119454207,3119454463,3119455231,3119456255,3119457279,3119458303,3119459327,3119460351,3119460863,3119461375,3119462399,3119463423,3119464447,3119465471,3119466495,3119467519,3119468543,3119469567,3119470591,3119471615,3119472639,3119473663,3119474687,3119475711,3119475967,3119476735,3119477759,3119479807,3119480831,3119482879,3119483903,3119484159,3119484927,3119485951,3119486207,3119486463,3119486719,3119486975,3119487999,3119489023,3119490047,3119491071,3119492095,3119493119,3119494143,3119496191,3119496447,3119496703,3119496959,3119497215,3119498239,3119499263,3119500287,3119501311,3119501823,3119502079,3119503359,3119504383,3119505407,3119506431,3119507455,3119508479,3119509503,3119509759,3119510015,3119510271,3119510527,3119510783,3119511039,3119511295,3119511551,3119512575,3119513599,3119515647,3119516671,3119517695,3119518719,3119519743,3119520767,3119521791,3119522815,3119523839,3119524863,3119525887,3119526911,3119527935,3119528959,3119529983,3119531007,3119532031,3119533055,3119533311,3119533823,3119534079,3119535103,3119535359,3119535615,3119536127,3119537151,3119538175,3119539199,3119539711,3119540223,3119540479,3119541247,3119542271,3119543295,3119544319,3119545087,3119545343,3119546367,3119547391,3119547647,3119548415,3119548927,3119549439,3119549695,3119550463,3119551487,3119552511,3119553535,3119554559,3119555583,3119556607,3119557631,3119558655,3119559679,3119560703,3119560959,3119561215,3119561727,3119562751,3119563775,3119565823,3119566847,3119567871,3119568383,3119568639,3119568895,3119569151,3119569407,3119569663,3119569919,3119570943,3119571967,3119574015,3119575039,3119575295,3119576063,3119577087,3119578111,3119578367,3119578879,3119579135,3119580159,3119581183,3119581439,3119581695,3119581951,3119582207,3119583231,3119585279,3119586303,3119587327,3119588351,3119589375,3119590399,3119592191,3119592447,3119593471,3119593727,3119593983,3119594239,3119594495,3119594751,3119595007,3119595263,3119595519,3119596543,3119597055,3119597311,3119597567,3119598591,3119600639,3119601663,3119602687,3119603711,3119604735,3119605759,3119606783,3119607039,3119607295,3119607551,3119607807,3119608831,3119609855,3119610879,3119611391,3119611903,3119612927,3119613951,3119614975,3119615999,3119617023,3119617535,3119617791,3119618047,3119619071,3119620095,3119621119,3119622143,3119623167,3119624191,3119625215,3119626239,3119628287,3119629311,3119630335,3119631359,3119632383,3119632639,3119632895,3119633151,3119633407,3119633663,3119633919,3119634175,3119634431,3119635455,3119636479,3119638527,3119639551,3119640575,3119641599,3119642623,3119643391,3119643647,3119644671,3119645695,3119645951,3119646207,3119646463,3119646719,3119647743,3119648767,3119649791,3119650047,3119650303,3119651839,3119652863,3119653887,3119654399,3119654911,3119655935,3119656959,3119657983,3119659007,3119660031,3119661055,3119662079,3119663103,3119664127,3119666175,3119666431,3119666687,3119666943,3119667199,3119668223,3119669247,3119671295,3119672319,3119673343,3119674367,3119676415,3119677439,3119678463,3119679487,3119679743,3119679999,3119681535,3119682559,3119683583,3119684607,3119685119,3119685631,3119686655,3119687679,3119688703,3119689727,3119689983,3119690239,3119690495,3119690751,3119691775,3119692031,3119692287,3119692543,3119692799,3119693823,3119695871,3119696895,3119697919,3119698943,3119699199,3119699967,3119700223,3119700479,3119700735,3119700991,3119702015,3119702271,3119703039,3119704063,3119705087,3119706111,3119706623,3119706879,3119707135,3119708159,3119709183,3119710463,3119710719,3119710975,3119711231,3119712255,3119714303,3119715327,3119716095,3119716351,3119717375,3119718399,3119719423,3119720447,3119721215,3119722495,3119723519,3119724543,3119724799,3119725055,3119725311,3119725567,3119726591,3119727615,3119728639,3119729663,3119730687,3119731711,3119732735,3119733247,3119733759,3119734783,3119735807,3119736831,3119737855,3119738879,3119739391,3119739903,3119740927,3119741951,3119742975,3119743231,3119745023,3119746047,3119747071,3119748095,3119749119,3119749375,3119749631,3119750143,3119751167,3119752191,3119753215,3119755263,3119756287,3119757311,3119758335,3119759359,3119760383,3119760895,3119761151,3119761407,3119762431,3119763455,3119764479,3119764735,3119764991,3119765247,3119765503,3119766527,3119767551,3119768575,3119769599,3119770623,3119771647,3119772671,3119772927,3119773183,3119773439,3119773695,3119774719,3119775743,3119776767,3119777791,3119778047,3119778303,3119778559,3119778815,3119779839,3119780863,3119781887,3119782143,3119782399,3119782655,3119782911,3119783167,3119783423,3119783679,3119783935,3119784959,3119785471,3119785727,3119785983,3119788031,3119788287,3119788543,3119788799,3119789055,3119790079,3119792127,3119792383,3119792639,3119792895,3119793151,3119794175,3119795199,3119796223,3119797247,3119798271,3119799295,3119799807,3119800063,3119800319,3119801343,3119802367,3119802879,3119803391,3119804415,3119805439,3119806463,3119807487,3119807999,3119808511,3119809535,3119810559,3119810815,3119811071,3119811327,3119811583,3119812607,3119813375,3119813631,3119814143,3119814399,3119814655,3119815679,3119816703,3119816959,3119817215,3119817471,3119817727,3119818751,3119819775,3119820799,3119821823,3119822847,3119823871,3119824895,3119825919,3119826943,3119827967,3119828991,3119829247,3119829503,3119829759,3119830015,3119830271,3119830527,3119830783,3119831039,3119832063,3119832319,3119833087,3119833343,3119833855,3119834111,3119836159,3119836415,3119836671,3119836927,3119837183,3119838207,3119839231,3119839743,3119840255,3119841279,3119842047,3119842303,3119842559,3119842815,3119843071,3119843327,3119844351,3119845375,3119846399,3119846655,3119846911,3119847167,3119847423,3119848447,3119849215,3119849471,3119850495,3119851519,3119852543,3119853567,3119854591,3119854847,3119855615,3119857663,3119858687,3119859711,3119860735,3119861759,3119862783,3119863039,3119863295,3119863807,3119864831,3119865855,3119868927,3119869951,3119870975,3119871999,3119873023,3119875071,3119876095,3119878143,3119879167,3119880191,3119881215,3119882239,3119883263,3119884287,3119885311,3119886335,3119887359,3119887615,3119887871,3119888383,3119889407,3119890431,3119891455,3119892479,3119893503,3119894527,3119895551,3119896575,3119897599,3119898623,3119899647,3119900671,3119903743,3119903999,3119904255,3119905791,3119906303,3119906815,3119907839,3119908863,3119909887,3119910911,3119911935,3119912959,3119913983,3119915007,3119916031,3119917055,3119917311,3119917567,3119917823,3119918079,3119919103,3119920127,3119922175,3119923199,3119924223,3119925247,3119926271,3119927295,3119928319,3119929343,3119930367,3119931391,3119932415,3119933439,3119934463,3119935487,3119935999,3119936255,3119936511,3119937535,3119938559,3119939583,3119940351,3119940607,3119941631,3119942655,3119943679,3119944703,3119945727,3119946239,3119946495,3119946751,3119947775,3119948799,3119949823,3119950847,3119951871,3119952895,3119953919,3119954943,3119955455,3119955967,3119956991,3119958015,3119959039,3119960319,3119960575,3119960831,3119961087,3119962111,3119962367,3119962623,3119963135,3119963647,3119963903,3119964159,3119964671,3119965183,3119966207,3119967231,3119967743,3119967999,3119968255,3119969279,3119970303,3119971327,3119972351,3119973375,3119974399,3119975423,3119976447,3119976703,3119976959,3119977471,3119978495,3119979519,3119980543,3119981567,3119982591,3119983615,3119985663,3119986687,3119987711,3119987967,3119988735,3119989759,3119990015,3119990271,3119990527,3119990783,3119991039,3119991807,3119992831,3119993855,3119994879,3119995903,3119996927,3119997951,3119998975,3119999999,3120001023,3120002047,3120002303,3120002559,3120002815,3120003071,3120004095,3120005119,3120005631,3120005887,3120006143,3120007167,3120008191,3120008447,3120008703,3120009215,3120010239,3120011263,3120012287,3120013311,3120014335,3120016383,3120017407,3120018431,3120019455,3120019711,3120020479,3120021503,3120022527,3120023551,3120025599,3120026623,3120027647,3120028671,3120029695,3120030207,3120030719,3120030975,3120031231,3120031743,3120032767,3120033791,3120034815,3120035839,3120036863,3120037887,3120038911,3120039935,3120040959,3120041983,3120043007,3120044031,3120044287,3120044543,3120044799,3120045055,3120046079,3120046335,3120046591,3120046847,3120047103,3120048127,3120049151,3120050175,3120050943,3120051199,3120052223,3120053247,3120054271,3120055295,3120056319,3120057343,3120058367,3120059391,3120059647,3120060159,3120060415,3120061439,3120062463,3120063487,3120064511,3120065535,3120066559,3120067583,3120068607,3120069631,3120070655,3120071167,3120071679,3120071935,3120072191,3120072447,3120072703,3120073727,3120074751,3120075007,3120075263,3120075519,3120075775,3120076799,3120077055,3120077823,3120078847,3120079871,3120080895,3120081919,3120082943,3120083967,3120084991,3120085503,3120086015,3120087039,3120088063,3120089087,3120092159,3120093183,3120094207,3120095231,3120095743,3120095999,3120096255,3120097279,3120098047,3120098303,3120099327,3120101375,3120101887,3120102143,3120102399,3120103423,3120104447,3120104703,3120104959,3120105215,3120105471,3120106495,3120108543,3120109567,3120110591,3120112639,3120113663,3120114687,3120115711,3120116735,3120116991,3120117247,3120117503,3120117759,3120118783,3120119807,3120120831,3120121855,3120122879,3120123903,3120124927,3120125951,3120126975,3120127999,3120129023,3120130047,3120131071,3120132095,3120133119,3120134143,3120135167,3120136191,3120136447,3120137215,3120137471,3120137727,3120137983,3120138239,3120139263,3120140287,3120141311,3120142335,3120143359,3120143615,3120143871,3120144127,3120144383,3120145407,3120146431,3120147455,3120148479,3120149503,3120150527,3120151551,3120153599,3120153855,3120154623,3120155647,3120157695,3120158719,3120158975,3120159231,3120159743,3120159999,3120160255,3120160511,3120160767,3120161023,3120161791,3120162815,3120163839,3120164863,3120165887,3120168191,3120168447,3120168703,3120168959,3120169983,3120171007,3120172031,3120172543,3120173055,3120174079,3120175103,3120175615,3120175871,3120176127,3120177151,3120178175,3120178431,3120179199,3120179711,3120180223,3120180479,3120180735,3120182271,3120183295,3120184319,3120185343,3120186367,3120187391,3120188415,3120189439,3120190463,3120192511,3120193535,3120194047,3120194303,3120194559,3120195583,3120196607,3120197631,3120198655,3120198911,3120199167,3120199679,3120200703,3120201727,3120202751,3120203775,3120204799,3120206847,3120207103,3120207359,3120207615,3120207871,3120208895,3120209919,3120210943,3120211967,3120212991,3120214015,3120215039,3120216063,3120218111,3120219135,3120221183,3120222207,3120222463,3120222719,3120222975,3120223231,3120223743,3120223999,3120224255,3120225279,3120226303,3120227327,3120228351,3120229375,3120230399,3120231423,3120232447,3120233471,3120234495,3120235519,3120236543,3120237055,3120237567,3120237823,3120238079,3120238335,3120238591,3120238847,3120239103,3120239359,3120239615,3120239871,3120240127,3120240383,3120240639,3120240895,3120241151,3120241407,3120241663,3120242687,3120243711,3120244223,3120244479,3120244735,3120245759,3120246271,3120246783,3120247807,3120248831,3120249855,3120250879,3120251903,3120252159,3120252415,3120252671,3120252927,3120253951,3120254975,3120255999,3120257023,3120258047,3120259071,3120260095,3120261119,3120262143,3120263167,3120263423,3120263679,3120263935,3120264191,3120265215,3120266239,3120267263,3120268287,3120269311,3120270335,3120271359,3120272383,3120273407,3120274431,3120274943,3120275455,3120276479,3120277503,3120278527,3120279551,3120280575,3120280831,3120281087,3120281343,3120281599,3120282623,3120283647,3120284671,3120285695,3120286719,3120289791,3120291839,3120293119,3120293375,3120293631,3120293887,3120294143,3120294911,3120295935,3120296959,3120297983,3120298495,3120299007,3120300031,3120301055,3120304127,3120305151,3120306175,3120307199,3120308223,3120309247,3120310271,3120311295,3120312319,3120313343,3120314367,3120315391,3120316415,3120317439,3120318463,3120319487,3120320511,3120321535,3120322303,3120322559,3120323583,3120324607,3120325631,3120326655,3120327679,3120328703,3120329727,3120330751,3120331263,3120331775,3120332799,3120333823,3120334847,3120335871,3120336895,3120337151,3120337919,3120338943,3120339967,3120340991,3120341503,3120341759,3120342015,3120342527,3120343039,3120344063,3120345087,3120345343,3120345599,3120345855,3120346111,3120347135,3120348159,3120349183,3120349439,3120349695,3120349951,3120350207,3120350463,3120350719,3120351231,3120351487,3120351743,3120351999,3120352255,3120353279,3120353535,3120353791,3120354047,3120354559,3120354815,3120356351,3120356607,3120356863,3120357119,3120357375,3120358399,3120359423,3120359679,3120359935,3120360447,3120361471,3120362495,3120363519,3120364543,3120365567,3120365823,3120366079,3120366335,3120366591,3120366847,3120367103,3120367359,3120367615,3120367871,3120368383,3120368639,3120369663,3120370687,3120370943,3120371199,3120371711,3120371967,3120372223,3120372735,3120373759,3120374783,3120375807,3120376831,3120377343,3120377855,3120378879,3120379135,3120379391,3120379647,3120379903,3120380159,3120380415,3120380671,3120380927,3120381183,3120381439,3120381951,3120382975,3120383999,3120384511,3120384767,3120385023,3120386047,3120387071,3120388095,3120389119,3120390143,3120390399,3120390655,3120390911,3120391167,3120393215,3120393471,3120393727,3120393983,3120394239,3120395263,3120396287,3120396799,3120397311,3120399359,3120400383,3120401407,3120401663,3120401919,3120402175,3120402431,3120403455,3120404479,3120405503,3120406527,3120406783,3120407039,3120407295,3120407551,3120408575,3120408831,3120410623,3120411647,3120413695,3120414719,3120415743,3120417791,3120418815,3120419839,3120420863,3120421119,3120421375,3120421887,3120422911,3120423935,3120425983,3120427007,3120428031,3120429055,3120430079,3120431103,3120432127,3120433151,3120434175,3120435199,3120435455,3120435711,3120435967,3120436223,3120437247,3120438271,3120439295,3120439807,3120440063,3120440319,3120440575,3120440831,3120441343,3120442367,3120443391,3120444415,3120445439,3120446463,3120446975,3120447231,3120447487,3120448511,3120448767,3120449279,3120449535,3120449791,3120450559,3120451583,3120452607,3120453631,3120454655,3120455679,3120456703,3120457727,3120458751,3120459775,3120460799,3120461311,3120461823,3120462079,3120462335,3120462591,3120462847,3120463871,3120464895,3120465919,3120466943,3120467967,3120468991,3120470015,3120471039,3120473087,3120473343,3120473855,3120474111,3120475135,3120476159,3120477183,3120478207,3120478975,3120479231,3120480255,3120482047,3120482303,3120483327,3120484351,3120485375,3120486399,3120487423,3120488447,3120489471,3120490495,3120491519,3120492543,3120493567,3120494591,3120495615,3120496639,3120496895,3120497407,3120497663,3120497919,3120498175,3120498687,3120498943,3120499199,3120499455,3120499711,3120500735,3120501759,3120502783,3120503807,3120504063,3120504319,3120504575,3120504831,3120505343,3120505599,3120505855,3120506879,3120507903,3120508671,3120508927,3120509951,3120510719,3120510975,3120511999,3120513023,3120514047,3120514815,3120515071,3120516095,3120517119,3120518143,3120519167,3120520191,3120521215,3120521727,3120521983,3120522751,3120523007,3120523263,3120524287,3120525311,3120525567,3120525823,3120526079,3120526335,3120527359,3120527871,3120528127,3120528383,3120528639,3120528895,3120529151,3120529407,3120529919,3120530175,3120530431,3120531455,3120531711,3120531967,3120532223,3120532479,3120533503,3120534527,3120535551,3120536319,3120536575,3120537599,3120538623,3120539647,3120540671,3120541695,3120542463,3120542719,3120543743,3120544767,3120545791,3120546815,3120547071,3120547327,3120547583,3120547839,3120548863,3120549887,3120550911,3120551935,3120552959,3120553983,3120554239,3120555007,3120556031,3120557055,3120558079,3120559103,3120560127,3120561151,3120562175,3120594943,3120599039,3120601087,3120602111,3120603135,3120610303,3120611327,3120617471,3120617727,3120627711,3120644095,3120660479,3120661247,3120661503,3120662015,3120662271,3120662527,3120662783,3120663039,3120663295,3120663551,3120663807,3120664063,3120664319,3120664575,3120664831,3120665087,3120665343,3120665599,3120666623,3120666879,3120668159,3120668415,3120676863,3120680959,3120691199,3120691455,3120693247,3120726015,3120734207,3120734463,3120735231,3120736255,3120736767,3120737023,3120737279,3120738047,3120738303,3120742399,3120754687,3120755711,3120756735,3120758783,3120824319,3120840703,3120857087,3120922623,3120930815,3120934911,3120949247,3120951295,3120955391,3121086463,3121151999,3121348607,3121432575,3121436671,3121463295,3121467391,3121469439,3121471487,3121479679,3121545215,3121610751,3121741823,3121872895,3122003967,3122135039,3122282495,3122284543,3122285567,3122294783,3122297343,3122297599,3122298879,3122331647,3122364415,3122659327,3122661375,3122662399,3122675711,3122692095,3122700287,3122716671,3122722815,3122724863,3122741247,3122757631,3122774015,3122790399,3123052543,3123183615,3123314687,3123380223,3123412991,3123445759,3123576831,3123707903,3124232191,3124772607,3124772863,3124783103,3124785151,3124788223,3124789247,3124822015,3124838399,3124840447,3124842495,3124844543,3124845567,3124846591,3124848639,3124849663,3124850687,3124854783,3124887551,3124953087,3125018623,3125280767,3125542911,3125673983,3125805055,3126329343,3126853631,3126870015,3126873343,3126873599,3126874111,3126878207,3126886399,3126902783,3126904831,3126906879,3126910975,3126917119,3126918143,3126919167,3127115775,3127181311,3127246847,3127345151,3127640063,3127902207,3128426495,3128492031,3128524799,3128541183,3128557567,3128567295,3128567807,3128570879,3128571903,3128578047,3128580095,3128619007,3128623103,3128625151,3128629247,3128639487,3128643583,3128651775,3128655871,3129999359,3130261503,3130277887,3130284031,3130286079,3130290175,3130302463,3130310655,3130310911,3130311679,3130312703,3130314751,3130315775,3130316799,3130317823,3130318847,3130319871,3130320895,3130327039,3130458111,3130469887,3130470143,3130482175,3130482431,3130482687,3130486783,3130523647,3130654719,3130783743,3130783999,3130785791,3130851327,3130945535,3130949631,3130955775,3130959871,3130968063,3130968575,3130982399,3131006975,3131011071,3131012095,3131013119,3131015167,3131047935,3131310079,3131572223,3131834367,3132096511,3132211199,3132227583,3132293119,3132295167,3132295423,3132297983,3132298239,3132309503,3132313599,3132317695,3132321791,3132325887,3132358655,3132489727,3132502015,3132502527,3132507647,3132508159,3132510719,3132511231,3132516351,3132516863,3132549375,3132549631,3132588031,3132620799,3132915711,3132948479,3132964863,3132966143,3132981247,3132997631,3133005823,3133014015,3133046783,3133067263,3133068799,3133069055,3133070847,3133071103,3133071359,3133073407,3133073663,3133074431,3133075455,3133079039,3133079551,3133136895,3133140991,3133145087,3133311999,3133313023,3133317119,3133318143,3133404671,3133404927,3133405183,3133406207,3134282751,3134283775,3134312447,3134313471,3134314495,3134926847,3134927871,3135482111,3135482367,3135482623,3135482879,3135828479,3135828735,3135828991,3135879167,3135880191,3136119551,3136119807,3136985087,3136985343,3136985599,3136985855,3137349631,3137350655,3137394175,3137394431,3137940223,3137940479,3139506687,3139506943,3140552703,3140552959,3140553215,3140553471,3140598783,3140599807,3140614143,3140616191,3141145599,3141145855,3141360639,3141361663,3141426175,3141427199,3141429247,3141430271,3141430783,3141431295,3141433343,3141434367,3141508095,3141509119,3142168575,3142169599,3143017471,3143018495,3143025407,3143025663,3143047679,3143048191,3144073215,3144074239,3144074751,3144075263,3144076287,3144077311,3144078335,3144079359,3144080383,3144081407,3144083455,3144084479,3144085503,3144086527,3144094719,3144095743,3144097791,3144928511,3144928767,3145247743,3145248767,3145727999,3149135871,3149398015,3149881343,3149889535,3153792255,3153792511,3153793023,3153793535,3153793791,3154051071,3154116607,3154124799,3154126847,3154128895,3154132735,3154132991,3154141183,3154149375,3154157567,3154173951,3154178047,3154182143,3154247679,3154313215,3154378751,3154444287,3154509823,3154575359,3154640895,3155165183,3155427327,3155689471,3155869695,3155877887,3155951615,3156213759,3156279295,3156344831,3156361215,3156379903,3156380159,3156410367,3156456447,3156457471,3156475903,3156539391,3156539647,3156541439,3156606975,3156672511,3156738047,3156803583,3156869119,3156875263,3156875775,3156877311,3156885503,3156889599,3156890623,3156891135,3156891391,3156891647,3156892159,3156892671,3156893695,3156894207,3156894463,3156894719,3156895743,3156897791,3156899839,3156901887,3156906495,3156907007,3156908031,3156910079,3156912127,3156914175,3156914687,3156914943,3156916223,3156917247,3156920319,3156921343,3156922367,3156922623,3156922879,3156923135,3156923391,3156923647,3156923903,3156925439,3156926463,3156929791,3156930047,3156932607,3156934655,3157000191,3157008383,3157016575,3157024767,3157032959,3157065727,3157131263,3157196799,3157262335,3157786623,3158048767,3158310911,3158312959,3158313983,3158315007,3158316031,3158316543,3158317055,3158319103,3158321151,3158323199,3158325247,3158327295,3158329343,3158331391,3158332159,3158332415,3158333439,3158335487,3158337535,3158338559,3158339583,3158341631,3158343679,3158346239,3158346495,3158346751,3158347007,3158347263,3158347519,3158347775,3158349823,3158351871,3158352383,3158352639,3158355967,3158358015,3158360063,3158362111,3158365183,3158366207,3158368255,3158369023,3158370303,3158372351,3158374399,3158376447,3158378495,3158380543,3158381567,3158382591,3158384639,3158386687,3158388735,3158390783,3158392831,3158394879,3158396415,3158396671,3158396927,3158398975,3158401023,3158403071,3158405119,3158407167,3158409215,3158411263,3158413311,3158415359,3158417407,3158417663,3158417919,3158418175,3158418431,3158418687,3158418943,3158419455,3158421503,3158423551,3158424575,3158424831,3158427647,3158429695,3158431743,3158433791,3158435839,3158439935,3158441983,3158444031,3158446079,3158448127,3158448383,3158448639,3158448895,3158449151,3158450175,3158452223,3158454271,3158455295,3158456319,3158457343,3158458367,3158474751,3158507519,3158573055,3158573567,3158573823,3158574079,3158581247,3158589439,3158590463,3158591487,3158592511,3158593279,3158593535,3158615039,3158616063,3158630399,3158638591,3158704127,3158835199,3158846463,3158848255,3158848511,3158849535,3158849791,3158851071,3158851327,3158851583,3158853119,3158853375,3158853631,3158855679,3158857471,3158857727,3158857983,3158858239,3158858751,3158859007,3158859263,3158859519,3158859775,3158860031,3158860287,3158860543,3158860799,3158861055,3158861311,3158861567,3158862079,3158862591,3158863103,3158863359,3158864383,3158864895,3158865151,3158865407,3158865663,3158865919,3158866943,3158867199,3158867455,3158867967,3158884351,3158900735,3158917119,3158933503,3158949887,3158966271,3158982655,3158999039,3158999295,3158999551,3159000063,3159001087,3159002111,3159003135,3159005183,3159005439,3159005951,3159006207,3159007231,3159009279,3159009791,3159010047,3159010303,3159012351,3159012607,3159012863,3159013375,3159014399,3159014911,3159015167,3159015423,3159017471,3159019519,3159019775,3159020031,3159020543,3159021567,3159025663,3159027711,3159028735,3159028991,3159029247,3159029759,3159031807,3159048191,3159064575,3159080959,3159097343,3159359487,3159621631,3159883775,3160145919,3160147967,3160150015,3160152063,3160152319,3160152575,3160152831,3160153087,3160153343,3160153599,3160153855,3160154111,3160156159,3160158207,3160160255,3160162303,3160164351,3160166399,3160168447,3160170495,3160172543,3160174591,3160176639,3160177663,3160178687,3160180735,3160182783,3160184831,3160186879,3160188927,3160190975,3160193023,3160195071,3160197119,3160199167,3160201215,3160203263,3160205311,3160207359,3160209407,3160209663,3160210175,3160210431,3160210687,3160210943,3160211199,3160211455,3160213503,3160213759,3160214015,3160214527,3160215295,3160215551,3160219647,3160221183,3160221695,3160223743,3160228863,3160229887,3160231935,3160233983,3160235263,3160235519,3160236031,3160238079,3160240127,3160240383,3160240639,3160240895,3160241151,3160241407,3160241663,3160242175,3160244223,3160246527,3160246783,3160247295,3160247551,3160247807,3160248063,3160248319,3160250367,3160252415,3160254463,3160256511,3160258559,3160260607,3160261887,3160262143,3160262655,3160264703,3160266751,3160268799,3160271871,3160272383,3160272895,3160274943,3160276991,3160279039,3160281087,3160283135,3160285183,3160287231,3160289279,3160291327,3160293375,3160295423,3160297471,3160298495,3160299519,3160301567,3160303615,3160305663,3160307711,3160309759,3160311807,3160313855,3160315903,3160317951,3160322047,3160324095,3160325119,3160325375,3160325631,3160325887,3160326143,3160328191,3160330239,3160332287,3160334335,3160336383,3160338431,3160340479,3160346623,3160348671,3160350719,3160352767,3160354815,3160356351,3160356863,3160358911,3160359167,3160359423,3160359679,3160359935,3160360191,3160360447,3160360703,3160360959,3160363007,3160365055,3160365311,3160365567,3160365823,3160366079,3160366335,3160366591,3160366847,3160367103,3160369151,3160371199,3160373247,3160375295,3160377343,3160379391,3160379903,3160380415,3160380927,3160381439,3160383487,3160385535,3160387583,3160389631,3160391679,3160395775,3160397823,3160399871,3160401919,3160403967,3160406015,3160408063,3161456639,3161473023,3161489407,3161505791,3161538559,3161554943,3161571327,3161587711,3161604095,3161612287,3161613311,3161613567,3161613823,3161614335,3161614847,3161615615,3161616127,3161616383,3161618431,3161620479,3161636863,3161640959,3161645055,3161653247,3161669631,3161686015,3161702399,3161718783,3161719295,3161719807,3161720319,3161720831,3161721855,3161722879,3161723391,3161723647,3161723903,3161724159,3161724415,3161724671,3161725951,3161726975,3161727487,3161727743,3161727999,3161728255,3161728767,3161729023,3161729279,3161729535,3161730047,3161730303,3161730559,3161730815,3161731071,3161731583,3161732095,3161732607,3161733119,3161733631,3161734143,3161735167,3161751551,3161767935,3161784319,3161792255,3161792511,3161794815,3161795071,3161800703,3161817087,3161833471,3161835519,3161836031,3161836287,3161836543,3161839615,3161840639,3161840895,3161841663,3161846783,3161847807,3161848831,3161849343,3161849599,3161849855,3161866239,3161882623,3161899007,3161915391,3161931775,3161932799,3161933823,3161934847,3161935871,3161936895,3161937919,3161938943,3161939967,3161940991,3161941503,3161941759,3161942015,3161943039,3161944063,3161944575,3161946111,3161946367,3161946623,3161946879,3161947135,3161948159,3161952255,3161953279,3161953791,3161954559,3161954815,3161955071,3161955327,3161955839,3161956351,3161956863,3161957631,3161957887,3161958143,3161958399,3161960447,3161961471,3161961727,3161961983,3161962495,3161963519,3161963775,3161964031,3161964287,3161964543,3161980927,3161989119,3161990143,3161992191,3161993215,3161997311,3162005503,3162013695,3162021887,3162030079,3162038271,3162046463,3162054655,3162055167,3162055423,3162055679,3162055935,3162056703,3162056959,3162057215,3162057983,3162058495,3162059263,3162059775,3162061055,3162061823,3162062079,3162062591,3162062847,3162071039,3162087423,3162095615,3162103807,3162107903,3162108415,3162111487,3162111999,3162120191,3162128383,3162129407,3162129919,3162132479,3162132991,3162133503,3162136575,3162144767,3162152959,3162161151,3162169343,3162177535,3162185727,3162193919,3162202111,3162210303,3162218495,3162226687,3162234879,3162243071,3162251263,3162257407,3162258943,3162259455,3162267647,3162275839,3162284031,3162292223,3162300415,3162302463,3162304511,3162305535,3162306559,3162308607,3162316799,3162324991,3162327295,3162328063,3162328319,3162328575,3162328831,3162329087,3162331135,3162332671,3162332927,3162333183,3162341375,3162349567,3162353663,3162357759,3162365951,3162374143,3162374655,3162375167,3162381823,3162382335,3162390527,3162396671,3162397183,3162398207,3162398463,3162398719,3162406911,3162415103,3162423295,3162431487,3162439679,3162447871,3162456063,3162464255,3162472447,3162480639,3162488831,3162497023,3162502911,3162503167,3162504191,3162504447,3162537983,3162570751,3162603519,3162636287,3162669055,3162669567,3162669823,3162672127,3162672383,3162675711,3162675967,3162676223,3162677503,3162677759,3162678015,3162678271,3162678527,3162679039,3162679295,3162679807,3162680063,3162680575,3162680831,3162681343,3162682367,3162682879,3162683135,3162683391,3162686463,3162687487,3162688511,3162690047,3162693375,3162693631,3162694655,3162694911,3162695423,3162695679,3162695935,3162696191,3162696447,3162697215,3162697471,3162699263,3162699519,3162699775,3162700543,3162700799,3162701311,3162701567,3162701823,3162734591,3162767359,3162800127,3162832895,3162865663,3162931199,3162963967,3162996735,3163029503,3163062271,3163086847,3163095039,3163127807,3163160575,3163176959,3163177983,3163181055,3163181311,3163193343,3163226111,3163258879,3163291647,3163324415,3163357183,3163389951,3163422719,3163455487,3163521023,3163553791,3163684863,3163815935,3164078079,3164209151,3164340223,3164471295,3164594175,3164602367,3164667903,3164733439,3164798975,3164864511,3164864767,3164865023,3164865791,3164866559,3164866815,3164867071,3164867327,3164867583,3164868863,3164869375,3164869631,3164869887,3164870399,3164872447,3164872703,3164872959,3164873471,3164873727,3164873983,3164875007,3164875775,3164876799,3164877055,3164877567,3164878079,3164878335,3164878847,3164879103,3164879871,3164880127,3164880895,3164881663,3164881919,3164882175,3164882431,3164882687,3164882943,3164883455,3164883967,3164884991,3164885503,3164886015,3164886271,3164888831,3164889087,3164891391,3164891647,3164893183,3164896255,3164897279,3164899327,3164901375,3164903423,3164903679,3164904191,3164904447,3164904703,3164904959,3164905471,3164913663,3164915711,3164917759,3164919807,3164921855,3164923903,3164925951,3164927999,3164930047,3164932863,3164933119,3164934143,3164935935,3164936191,3164995583,3165030399,3165031423,3165032447,3165036543,3165038591,3165040639,3165044735,3165045759,3165046783,3165047807,3165061119,3165126655,3165192191,3165257727,3165323263,3165388799,3165413375,3165417471,3165421567,3165425663,3165437951,3165438207,3165439231,3165439487,3165439743,3165439999,3165440255,3165440511,3165440767,3165441023,3165442047,3165442303,3165442559,3165442815,3165443071,3165443583,3165444095,3165444351,3165444607,3165444863,3165445119,3165445375,3165445631,3165445887,3165446143,3165446399,3165446655,3165446911,3165448191,3165448447,3165448703,3165448959,3165449215,3165451263,3165451519,3165451775,3165452031,3165452287,3165452543,3165453055,3165453311,3165453567,3165453823,3165454079,3165454335,3165519871,3165585407,3165650943,3166175231,3166306303,3166437375,3166568447,3166568703,3166569215,3166569983,3166571263,3166572543,3166573823,3166575103,3166576383,3166576639,3166593023,3166594047,3166595071,3166596095,3166597119,3166598143,3166599167,3166600191,3166601215,3166609407,3166617599,3166625791,3166633983,3166638079,3166646271,3166647295,3166648319,3166649343,3166650367,3166654463,3166658559,3166658815,3166660095,3166660351,3166660607,3166660863,3166661119,3166661631,3166661887,3166662399,3166662655,3166666751,3166667263,3166667775,3166668799,3166670847,3166671615,3166671871,3166672895,3166674943,3166679039,3166681087,3166685183,3166687231,3166689279,3166691327,3166693375,3166695423,3166697471,3166698495,3166699519,3166961663,3167223807,3167748095,3167752191,3167752703,3167752959,3167753215,3167755775,3167756287,3167756799,3167757311,3167757823,3167758335,3167760383,3167761407,3167762431,3167772671,3167773695,3167773951,3167774207,3167774463,3167774719,3167775743,3167775999,3167776255,3167776511,3167776767,3167777791,3167778047,3167778815,3167780863,3167781887,3167782399,3167782655,3167782911,3167783935,3167784191,3167784447,3167784703,3167784959,3167797247,3167798271,3167798783,3167799295,3167800319,3167801343,3167803391,3167803903,3167804415,3167804927,3167805183,3167805439,3167825919,3167830015,3167834111,3167838207,3167842303,3167843327,3167844351,3167845375,3167845887,3167846399,3167847679,3167847935,3167848703,3167848959,3167849471,3167850495,3167852543,3167853055,3167853311,3167854591,3167862783,3167866879,3167867903,3167868159,3167868415,3167868927,3167870975,3167879167,3167895551,3167901695,3167902719,3167902975,3167903231,3167903743,3167932415,3167934463,3167935487,3167936511,3167938559,3167939583,3167939839,3167940351,3167940607,3167943679,3167944191,3167944447,3167944703,3167948799,3167950847,3167951359,3167951615,3167951871,3167952383,3167952895,3167985663,3167986687,3167987455,3167987711,3167987967,3167988223,3167988735,3167989759,3168002047,3168003071,3168004095,3168004607,3168004863,3168005887,3168006143,3168008191,3168008447,3168008703,3168009983,3168010239,3168011263,3168011519,3168011775,3168012287,3168014335,3168015359,3168015615,3168015871,3168016127,3168016383,3168018431,3168018943,3168019455,3168019711,3168019967,3168020223,3168020479,3168022527,3168035839,3168036863,3168037887,3168038399,3168038655,3168038911,3168039935,3168040959,3168041215,3168041471,3168041983,3168042495,3168044031,3168044287,3168044543,3168044799,3168045055,3168047103,3168049151,3168049407,3168049663,3168049919,3168050175,3168050431,3168050687,3168051199,3168059391,3168061439,3168073727,3168073983,3168074239,3168074495,3168074751,3168075007,3168075263,3168075519,3168075775,3168076031,3168076799,3168079871,3168080127,3168080639,3168080895,3168081407,3168081663,3168081919,3168083967,3168084223,3168084479,3168084735,3168084991,3168086015,3168088063,3168089087,3168090111,3168092159,3168096255,3168097279,3168097791,3168100351,3168108543,3168109567,3168110591,3168111615,3168112639,3168116735,3168120831,3168126975,3168127487,3168127743,3168127999,3168128255,3168128511,3168129023,3168130047,3168130303,3168130559,3168131071,3168131327,3168131583,3168131839,3168132095,3168133119,3168135167,3168135423,3168135679,3168136191,3168137215,3168137471,3168137727,3168137983,3168138239,3168139263,3168141311,3168142335,3168143359,3168145407,3168145663,3168147455,3168147711,3168147967,3168148223,3168148479,3168148735,3168148991,3168151551,3168153599,3168155903,3168156159,3168156415,3168156671,3168157695,3168161791,3168162047,3168162303,3168162815,3168163839,3168164095,3168164351,3168165119,3168165375,3168165631,3168165887,3168166911,3168167935,3168168447,3168168703,3168168959,3168169215,3168169471,3168169727,3168169983,3168172031,3168172543,3168172799,3168173311,3168173567,3168173823,3168174079,3168176127,3168177151,3168177407,3168177919,3168178175,3168179199,3168179711,3168179967,3168180223,3168180479,3168180991,3168181247,3168181503,3168181759,3168182015,3168182271,3168190463,3168190719,3168190975,3168191231,3168191999,3168192255,3168192511,3168194559,3168195071,3168195583,3168196095,3168196607,3168198655,3168199167,3168199423,3168199679,3168200703,3168201215,3168202751,3168203775,3168207103,3168207359,3168208127,3168208383,3168208895,3168209919,3168210943,3168211455,3168211967,3168212991,3168214015,3168214527,3168214783,3168215039,3168215295,3168215551,3168215807,3168216063,3168216575,3168216831,3168218111,3168219135,3168221183,3168223231,3168223487,3168223743,3168223999,3168224255,3168225279,3168225535,3168225791,3168226303,3168226815,3168227327,3168227583,3168227839,3168228095,3168228351,3168228607,3168228863,3168229119,3168229375,3168230399,3168230655,3168230911,3168231167,3168231423,3168232447,3168233471,3168235519,3168237567,3168239615,3168243711,3168247807,3168264191,3168265215,3168265471,3168265727,3168265983,3168266239,3168267007,3168267263,3168268287,3168269311,3168270079,3168270591,3168270847,3168271359,3168272383,3168534527,3168796671,3168829439,3168862207,3168865791,3168866047,3168870143,3168870399,3168877567,3168877823,3168894975,3168925695,3168926463,3168927487,3168927743,3168960511,3168993279,3169007615,3169008127,3169008383,3169008639,3169014783,3169015807,3169020415,3169020671,3169020927,3169026047,3169034239,3169042431,3169043455,3169044479,3169045503,3169046527,3169050623,3169052671,3169054719,3169056767,3169058815,3169091583,3169124351,3169157119,3169189887,3169222655,3169255423,3169288191,3169320959,3169583103,3169648639,3169714175,3169779711,3169796095,3169812479,3169820671,3169824767,3169826815,3169827839,3169828607,3169828863,3169845247,3169845503,3169845759,3169846271,3169847295,3169847807,3169848319,3169848575,3169848831,3169849087,3169849343,3169849599,3169849855,3169850367,3169851391,3169853439,3169853695,3169853951,3169854207,3169854463,3169855487,3169855999,3169856255,3169856511,3169857023,3169857279,3169857535,3169858047,3169858303,3169858559,3169859583,3169860607,3169860863,3169861631,3169862655,3169862911,3169863167,3169863423,3169863679,3169863935,3169864191,3169864447,3169864703,3169866495,3169867775,3169868031,3169868287,3169868799,3169869823,3169878015,3169882111,3169886207,3169894399,3169895423,3169895679,3169895935,3169896447,3169896959,3169897471,3169898495,3169898751,3169899007,3169899263,3169899519,3169899775,3169900031,3169900543,3169901055,3169901567,3169902079,3169902591,3169903615,3169904127,3169904383,3169904639,3169905151,3169905407,3169905663,3169906687,3169908735,3169910783,3169911295,3169911807,3169912319,3169912831,3169913343,3169913855,3169914111,3169914367,3169914623,3169914879,3169915135,3169915391,3169915903,3169916927,3169917439,3169917951,3169918975,3169920767,3169923071,3169925119,3169925631,3169925887,3169926143,3169926655,3169927167,3169927423,3169927679,3169928191,3169928447,3169928703,3169928959,3169930239,3169931263,3169931519,3169931775,3169932031,3169932287,3169932543,3169932799,3169933055,3169933311,3169935359,3169937407,3169937919,3169938431,3169938943,3169939199,3169941503,3169941759,3169942015,3169942527,3169943039,3169945599,3169945855,3169946111,3169946623,3169947135,3169947647,3169948159,3169948415,3169948671,3169949695,3169949951,3169950463,3169950719,3169951231,3169951487,3169951743,3169955839,3169956095,3169956351,3169956607,3169956863,3169957375,3169957631,3169958399,3169958655,3169958911,3169959423,3169959935,3169960191,3169960447,3169961471,3169961983,3169964031,3169964799,3169965055,3169965567,3169965823,3169966079,3169966591,3169967103,3169967359,3169967615,3169967871,3169968127,3169972735,3169973247,3169973759,3169974271,3169974783,3169975039,3169975295,3169976319,3170111487,3170115583,3170119679,3170123775,3170127871,3170131967,3170132991,3170135039,3170136063,3170136319,3170136575,3170136831,3170137087,3170137343,3170137599,3170137855,3170138367,3170138623,3170138879,3170139135,3170139391,3170140159,3170172927,3170246655,3170254847,3170263039,3170267647,3170267903,3170271231,3170279423,3170287615,3170295807,3170298879,3170303999,3170312191,3170320383,3170328575,3170336767,3170338815,3170344959,3170347007,3170349055,3170361343,3170369535,3170500607,3170631679,3170664447,3170697215,3170697727,3170698239,3170698751,3170699263,3170701311,3170705407,3170721791,3170724863,3170729983,3170762751,3170795519,3170828287,3170861055,3170861823,3170862335,3170865663,3170865919,3170871551,3170871807,3170872575,3170872831,3170875391,3170875647,3170882559,3170882815,3170884863,3170885119,3170885631,3170885887,3170893823,3171008511,3171024895,3171446783,3171448831,3172260095,3172260351,3172745215,3172753407,3172761599,3173314559,3173315583,3173887999,3173889023,3174223871,3174224639,3174279167,3174281215,3176411135,3176412159,3176412671,3176414207,3176415231,3176423423,3176423679,3176424191,3176424447,3176473599,3176474623,3176475647,3176489983,3176491007,3176850431,3176851455,3178466559,3178466815,3178467071,3178467327,3179144447,3179145215,3179147775,3179148031,3179148287,3179148799,3179153407,3179153919,3179251711,3179252223,3179259391,3179259903,3179282431,3184116735,3184123903,3184125951,3184127999,3184130047,3184131071,3187671039,3187687423,3187695615,3187703807,3187711999,3187714047,3187714303,3187715839,3187716095,3187719167,3187719423,3187720191,3187728383,3187730431,3187732479,3187734527,3187736575,3187752959,3187753215,3187753471,3187753727,3187753983,3187758847,3187759103,3187760127,3187760383,3187761151,3187769343,3187802111,3187818495,3187822591,3187824639,3187826687,3187834879,3187843071,3187851263,3187855359,3187857407,3187859455,3187863551,3187908607,3187910655,3187914751,3187916799,3187933183,3187933439,3187933951,3187934207,3187934975,3187935743,3187937279,3187937535,3187937791,3187938303,3187939071,3187939327,3187939839,3187943935,3187944191,3187944703,3187944959,3187945471,3187945727,3187948543,3187948799,3187949567,3187953663,3187955711,3187957759,3187961855,3187965951,3187982335,3187998719,3188006911,3188015103,3188031487,3188039679,3188047871,3188051967,3188052991,3188054015,3188056063,3188064255,3188080639,3188088831,3188094975,3188097023,3188105215,3188113407,3188117503,3188121599,3188125695,3188146175,3188146431,3188146687,3188170751,3188174847,3188178943,3188187135,3188197375,3188198399,3188199423,3188203519,3188207615,3188211711,3188228095,3188236287,3188237311,3188239359,3188240383,3188241407,3188242431,3188244479,3188260863,3188269055,3188273151,3188275199,3188277247,3188278271,3188279295,3188288511,3188289535,3188292607,3188293119,3188293631,3188301823,3188310015,3188326399,3188359167,3188400127,3188408319,3188416511,3188445183,3188449279,3188453375,3188455679,3188455935,3188473855,3188482047,3188490239,3188493311,3188495359,3188496383,3188498431,3188500479,3188502527,3188506623,3188514815,3188523007,3188539391,3188542207,3188542463,3188543487,3188545535,3188547583,3188551679,3188552703,3188553727,3188555775,3188572159,3188576255,3188588543,3188592639,3188593407,3188597759,3188598783,3188600831,3188604927,3188621311,3188625407,3188627455,3188628479,3188637695,3188645887,3188662271,3188670463,3188671487,3188672511,3188674559,3188678655,3188686847,3188690943,3188695039,3188697087,3188703231,3188981759,3189178367,3189243903,3189637119,3189768191,3190030335,3190292479,3190554623,3190816767,3191078911,3191087103,3191091199,3191093247,3191095295,3191099391,3191103487,3191107327,3191107583,3191111679,3191128063,3191132159,3191136255,3191144447,3191152639,3191155967,3191156223,3191156735,3191169023,3191193599,3191209983,3191275519,3191341055,3191406591,3191414783,3191418879,3191420927,3191439359,3191455743,3191472127,3191603199,3191603455,3191603967,3191605247,3191605759,3191606271,3191607295,3191607551,3191608319,3191608575,3191609599,3191610111,3191610367,3191610623,3191610879,3191611135,3191635967,3191652351,3191670015,3191670271,3191670783,3191671039,3191674879,3191675135,3191676927,3191677183,3191677695,3191678207,3191678463,3191678719,3191678975,3191679231,3191679487,3191681023,3191681279,3191681535,3191681791,3191682047,3191682559,3191682815,3191683071,3191683327,3191683583,3191683839,3191684095,3191684351,3191689215,3191689471,3191689727,3191689983,3191690495,3191691007,3191691263,3191692287,3191693311,3191695359,3191697407,3191698431,3191699455,3191700479,3191701503,3191719935,3191720191,3191720959,3191721471,3191721983,3191722495,3191724799,3191725055,3191732735,3191732991,3191734271,3191799807,3191865343,3191930879,3192389631,3192913919,3192946687,3192979455,3193044991,3193110527,3193111039,3193111551,3193112575,3193113599,3193114623,3193125887,3193126399,3193126911,3193127935,3193128959,3193129983,3193131007,3193132031,3193137151,3193138175,3193139199,3193140223,3193140991,3193141247,3193142271,3193143295,3193176063,3193307135,3193438207,3193503743,3193510911,3193511167,3193511935,3193512191,3193512959,3193513983,3193515007,3193516031,3193536511,3193537535,3193547775,3193548799,3193564159,3193564671,3193569279,3193575167,3193575423,3193599999,3193600255,3193602303,3193602559,3193634815,3193700351,3193724927,3193729023,3193733119,3193749503,3193757695,3193765887,3193774079,3193775103,3193776127,3193777151,3193778175,3193782271,3193782527,3193783039,3193783551,3193783807,3193784063,3193785343,3193785855,3193786367,3193786623,3193786879,3193787903,3193788159,3193789183,3193789439,3193789695,3193789951,3193790207,3193790463,3193798655,3193806847,3193810943,3193811967,3193812991,3193814015,3193815039,3193823231,3193827327,3193831423,3193864191,3193872383,3193880575,3193896959,3193929727,3193962495,3193987071,3193991167,3193995263,3194028031,3194044415,3194052607,3194056703,3194058751,3194060799,3194068991,3194071039,3194073087,3194077183,3194085375,3194093567,3194126335,3194126591,3194126847,3194127359,3194128127,3194128383,3194129407,3194129919,3194130175,3194130943,3194131199,3194133247,3194133503,3194133759,3194134015,3194134271,3194135295,3194135551,3194136319,3194136575,3194137343,3194139391,3194140159,3194142719,3194159103,3194165247,3194175487,3194177535,3194179583,3194180351,3194180607,3194181631,3194182655,3194183679,3194187775,3194188799,3194189823,3194191871,3194224639,3194355711,3194363903,3194365951,3194370047,3194372095,3194380287,3194381311,3194382335,3194382847,3194383103,3194383359,3194383615,3194383871,3194384127,3194384383,3194386431,3194388479,3194396671,3194413055,3194421247,3194428415,3194437631,3194441727,3194445823,3194450431,3194450687,3194450943,3194451199,3194454015,3194459135,3194466303,3194466815,3194467071,3194467327,3194468351,3194469375,3194469631,3194469887,3194470143,3194470399,3194486783,3194494975,3194511359,3194513407,3194515455,3194519551,3194535935,3194585087,3194589183,3194591231,3194592255,3194593279,3194595327,3194596351,3194597375,3194601471,3194601727,3194602495,3194603519,3194610943,3194611199,3194613503,3194613759,3194617855,3194626047,3194630143,3194634239,3194638335,3194640383,3194642431,3194646527,3194648575,3194652415,3194652671,3194658815,3194662911,3194664959,3194667007,3194675199,3194676223,3194679295,3194683391,3194687487,3194691583,3194699775,3194705919,3194707967,3194716159,3194724351,3194727423,3194728447,3194729471,3194730495,3194732543,3194736639,3194737663,3194740735,3194742783,3194744831,3194746879,3194748927,3194757119,3194765311,3194767359,3194768383,3194769407,3194773503,3194781695,3194798079,3194799103,3194804223,3194805247,3194806271,3194814463,3194822655,3194827007,3194827263,3194830847,3194842111,3194843135,3194845183,3194846207,3194847231,3194863615,3194871807,3194879999,3194888191,3194890239,3194896383,3194903551,3194904575,3194908671,3194910719,3194925055,3194929151,3194937343,3194937855,3194938367,3194938623,3194945535,3194953215,3194953727,3194961919,3194970111,3194974207,3194976255,3194977279,3194978303,3194979327,3194980351,3194984447,3194985471,3194986495,3194987519,3194990847,3194991103,3194991359,3194994687,3195019007,3195019263,3195023359,3195024383,3195025407,3195043839,3195045887,3195046911,3195052031,3195053055,3195054079,3195055103,3195056127,3195060223,3195061247,3195062271,3195062783,3195063039,3195063295,3195064319,3195066367,3195067391,3195068415,3195076607,3195084799,3195086847,3195087871,3195088895,3195089919,3195090943,3195091967,3195092479,3195092735,3195092991,3195097087,3195099135,3195100159,3195101183,3195109375,3195125759,3195133951,3195138047,3195139071,3195140095,3195142143,3195142655,3195142911,3195143167,3195143423,3195143679,3195143935,3195144191,3195144447,3195144703,3195150335,3195158527,3195199487,3195201535,3195203583,3195205631,3195206655,3195207679,3195211775,3195212031,3195212287,3195212799,3195213055,3195213311,3195213823,3195214079,3195214335,3195215871,3195224063,3195236351,3195240447,3195256831,3195258879,3195259903,3195260927,3195265023,3195273215,3195535359,3195543551,3195547647,3195551743,3195559935,3195568127,3195572223,3195576319,3195580415,3195584511,3195592703,3195593727,3195593983,3195594239,3195594495,3195594751,3195596799,3195597823,3195598847,3195600895,3195633663,3195641855,3195645951,3195650047,3195654143,3195654655,3195655423,3195655679,3195656191,3195656703,3195657215,3195657727,3195657983,3195658239,3195662335,3195662591,3195662847,3195663359,3195663615,3195663871,3195664127,3195664383,3195666431,3195691007,3195699199,3195707391,3195708671,3195708927,3195711487,3195712511,3195713535,3195714559,3195715583,3195721727,3195723775,3195731967,3195732479,3195732991,3195734015,3195734527,3195735551,3195735807,3195736063,3195736319,3195736575,3195736831,3195737087,3195738111,3195740159,3195742207,3195743231,3195744255,3195748351,3195748863,3195749375,3195751423,3195752447,3195763711,3195764735,3195768831,3195772927,3195781119,3195785215,3195789311,3195793407,3195801599,3195803647,3195804671,3195805695,3195807743,3195808767,3195809791,3195810815,3195811839,3195813887,3195822079,3195830271,3195838463,3195840511,3195842559,3195846655,3195852799,3195853823,3195854847,3195859967,3195860991,3195862015,3195863039,3196092415,3196125183,3196190719,3196207103,3196223487,3196305407,3196316927,3196317183,3196321791,3196583935,3196690687,3196690943,3196846079,3196977151,3197042687,3197075455,3197104127,3197108223,3197370367,3197392127,3197392383,3197470207,3197470463,3197474815,3197475071,3197501439,3197566975,3197599743,3197600767,3197601023,3197601279,3197601535,3197601791,3197602047,3197602303,3197603327,3197603839,3197612031,3197616127,3197632511,3197698047,3197730815,3197763583,3197894655,3198156799,3198484479,3198550015,3198681087,3198877695,3198894079,3198895103,3198896127,3198897151,3198898175,3198899199,3198900223,3198901247,3198902271,3198910463,3198926847,3198943231,3199467519,3199500287,3199504383,3199505407,3199506431,3199508479,3199516671,3199533055,3199549439,3199565823,3199582207,3199598591,3199631359,3199729663,3199762431,3199778815,3199779839,3199780863,3199782911,3199784959,3199785983,3199795199,3199811583,3199819775,3199820799,3199822847,3199823359,3199823871,3199827967,3199860735,3199926271,3199991551,3199991807,3200516095,3200565247,3200569343,3200573439,3200577535,3200579583,3200581631,3200614399,3200647167,3201302527,3201433599,3201499135,3201515519,3201522687,3201531903,3201533951,3201534975,3201535999,3201536255,3201537279,3201537535,3201538047,3201540095,3201543423,3201543679,3201544191,3201548287,3201556479,3201560575,3201561599,3201562623,3201563647,3201564671,3201630207,3201695743,3201761279,3201826815,3201851391,3201855487,3201859583,3201863679,3201865727,3201867775,3201875967,3201880063,3201884159,3201896447,3201900543,3201904639,3201910783,3201912831,3201913855,3201916927,3201923071,3201923327,3201923583,3201923839,3201924095,3201924351,3201924863,3201925119,3201957887,3202088959,3202109695,3202109951,3202115071,3202115327,3202120447,3202120703,3202145279,3202145535,3202220031,3202351103,3202875391,3203399679,3203465215,3203493887,3203494399,3203530751,3203531519,3203531775,3203532287,3203534847,3203535871,3203536383,3203536895,3203537919,3203538431,3203538687,3203538943,3203539967,3203543551,3203544575,3203545087,3203545599,3203547135,3203549183,3203553279,3203553535,3203555583,3203555839,3203556863,3203557119,3203557887,3203558143,3203561471,3203562495,3203564543,3203565055,3203566079,3203566591,3203566847,3203567103,3203567871,3203568127,3203568639,3203569663,3203569919,3203570431,3203570943,3203571199,3203572479,3203574271,3203574527,3203577855,3203578879,3203661823,3203923967,3204448255,3204790271,3204791295,3204934655,3204935679,3206937599,3206937855,3207901695,3207901951,3207909375,3207910399,3207911423,3207912447,3207913471,3208642559,3209691135,3210084351,3210215423,3210739711,3210739967,3210740223,3210740479,3210740735,3210741247,3210741503,3210741759,3210742015,3210742271,3210742783,3210743039,3210743295,3210743551,3210743807,3210744063,3210744319,3210744575,3210745087,3210745343,3210746111,3210746367,3210746623,3210746879,3210747135,3210747391,3210748159,3210748415,3210748671,3210748927,3210749183,3210749951,3210750207,3210750463,3210750975,3210751999,3210752255,3210752511,3210753023,3210753535,3210753791,3210754047,3210754303,3210754815,3210755071,3210755327,3210755583,3210755839,3210756095,3210756351,3210756607,3210757119,3210757631,3210758143,3210758399,3210758655,3210758911,3210759167,3210759679,3210760191,3210760447,3210760703,3210760959,3210761215,3210761471,3210762239,3210763263,3210763775,3210764031,3210764287,3210764543,3210764799,3210765311,3210766335,3210766591,3210767103,3210767359,3210767871,3210768127,3210768383,3210769919,3210770175,3210770431,3210770943,3210771199,3210771455,3210771711,3210771967,3210772223,3210772479,3210772735,3210772991,3210773247,3210773503,3210773759,3210774015,3210774271,3210774527,3210774783,3210775039,3210775295,3210775551,3210775807,3210776063,3210776319,3210776831,3210777087,3210777343,3210777599,3210777855,3210778111,3210779135,3210779391,3210779647,3210779903,3210780159,3210780415,3210780671,3210781695,3210781951,3210782463,3210782719,3210782975,3210783231,3210783487,3210783743,3210783999,3210784255,3210784511,3210784767,3210785791,3210786047,3210786303,3210786559,3210786815,3210787071,3210787583,3210787839,3210788351,3210788607,3210788863,3210789375,3210790143,3210790399,3210790655,3210790911,3210791167,3210791423,3210791679,3210791935,3210792703,3210793471,3210793727,3210794495,3210794751,3210795007,3210796031,3210796287,3210797055,3210797567,3210798079,3210798335,3210798591,3210798847,3210799103,3210800127,3210800895,3210801151,3210802175,3210802431,3210802687,3210802943,3210803455,3210803967,3210804223,3210804479,3210804735,3210805247,3210809343,3210810367,3210811391,3210817535,3210821631,3210822655,3210825727,3210827775,3210829823,3210830847,3210831359,3210831871,3210832895,3210835967,3210838015,3210870783,3210903551,3210919935,3210920959,3210921983,3210924031,3210926079,3210928127,3210931967,3210932223,3210936319,3211067391,3211067903,3211068159,3211068415,3211069183,3211069439,3211071743,3211071999,3211072511,3211072767,3211073023,3211074303,3211074559,3211074815,3211075071,3211075327,3211075583,3211076095,3211076351,3211076607,3211076863,3211077119,3211077375,3211077631,3211077887,3211078655,3211079935,3211080447,3211080703,3211081727,3211081983,3211082239,3211082495,3211082751,3211083007,3211083263,3211083519,3211083775,3211084031,3211084799,3211085055,3211085311,3211085823,3211087359,3211087615,3211087871,3211088383,3211089407,3211089663,3211091455,3211091711,3211091967,3211092223,3211094015,3211094271,3211097599,3211097855,3211098111,3211098367,3211099135,3211099391,3211100159,3211100415,3211100927,3211101183,3211101695,3211101951,3211102719,3211102975,3211103231,3211103487,3211103743,3211103999,3211104767,3211105023,3211105279,3211105791,3211106303,3211107071,3211107327,3211107583,3211107839,3211108095,3211108607,3211108863,3211109119,3211109375,3211109887,3211110143,3211110399,3211110655,3211111167,3211111423,3211112959,3211113215,3211113471,3211114495,3211114751,3211115007,3211115263,3211115519,3211116031,3211116287,3211117055,3211117311,3211117567,3211118079,3211118591,3211118847,3211119103,3211119615,3211120127,3211120383,3211120639,3211120895,3211121151,3211121663,3211122687,3211122943,3211123199,3211123455,3211123711,3211123967,3211124479,3211124735,3211125247,3211125503,3211125759,3211126527,3211126783,3211127295,3211127807,3211129343,3211129599,3211129855,3211130111,3211130367,3211130623,3211130879,3211131135,3211131391,3211131647,3211132927,3211137023,3211141119,3211142143,3211143167,3211145215,3211147263,3211148287,3211165695,3211167999,3211168255,3211182079,3211194367,3211195391,3211214847,3211223039,3211227135,3211231231,3211788287,3212312575,3212574719,3212836863,3213885439,3214934015,3219726335,3219730431,3219734527,3219750911,3219755007,3219759103,3219783935,3219784191,3219784703,3219787775,3219791871,3219800063,3219800575,3219800831,3219851263,3219853311,3219881983,3219899391,3219902463,3219906559,3219914495,3219914751,3220029439,3220030207,3220030463,3220030719,3220033535,3220037631,3220039679,3220040703,3220040959,3220041215,3220041471,3220041727,3220042239,3220045823,3220062207,3220062719,3220063231,3220063487,3220063743,3220064255,3220066303,3220069887,3220070399,3220078591,3220082687,3220094975,3220103167,3220127743,3220135935,3220140031,3220152319,3220161535,3220162559,3220163583,3220164607,3220168703,3220172799,3220258303,3220258815,3220278271,3220279295,3221225471,3221226239,3221226495,3221227519,3221258239,3221291007,3221356543,3221396223,3221396479,3221422079,3221560319,3221561087,3221562367,3221562623,3221565951,3221566207,3221568255,3221568511,3221568767,3221569279,3221576191,3221576447,3221577727,3221577983,3221578239,3221589503,3221589759,3221590015,3221590271,3221590527,3221594623,3221594879,3221605375,3221605887,3221608447,3221608703,3221614335,3221614591,3221614847,3221618175,3221618431,3221618687,3221618943,3221656831,3221657087,3221663999,3221664255,3221757951,3221758975,3221759231,3221759487,3221759999,3221761023,3221779199,3221779455,3221780479,3221790719,3221795071,3221795583,3221796095,3221796351,3221796607,3221796863,3221798911,3221803007,3221815295,3221856255,3221864447,3222011903,3222012159,3222012415,3222022399,3222022655,3222023935,3222024191,3222025727,3222025983,3222027775,3222028031,3222030335,3222030847,3222031359,3222031615,3222031871,3222032639,3222032895,3222036479,3222036735,3222036991,3222037247,3222037503,3222039807,3222040063,3222040319,3222040575,3222041599,3222041855,3222042111,3222042367,3222044927,3222045183,3222056447,3222059007,3222061055,3222061823,3222066943,3222067199,3222067455,3222067967,3222068479,3222068735,3222071039,3222071295,3222071551,3222072063,3222072319,3222075135,3222075391,3222075903,3222076159,3222208511,3222274047,3222276095,3222276351,3222280191,3222280703,3222283007,3222283263,3222283519,3222283775,3222284799,3222285055,3222285311,3222285823,3222286079,3222286591,3222286847,3222287359,3222287615,3222287871,3222288127,3222288383,3222288895,3222289151,3222298111,3222298367,3222305535,3222309119,3222309375,3222313727,3222316799,3222319615,3222320127,3222320383,3222320895,3222326015,3222326527,3222339583,3222441983,3222446079,3222455039,3222455295,3222509567,3222509823,3222519551,3222519807,3222520831,3222521087,3222535423,3222535679,3222806527,3222814719,3222867455,3222867711,3222872319,3222872575,3222874623,3222874879,3222875647,3222875903,3222890751,3222891007,3222893311,3222893567,3222934527,3222934783,3222936575,3222940927,3222941183,3222941695,3222952703,3222952959,3222953215,3222953727,3222953983,3222954239,3222956287,3222957567,3222957823,3222962431,3222963455,3222964223,3222968831,3222973951,3222979071,3222983167,3222983935,3222984447,3222984703,3222988543,3222988799,3222989055,3222989311,3222989567,3222989823,3222990079,3222990591,3222990847,3223091199,3223092223,3223094271,3223126015,3223127295,3223127807,3223130111,3223131135,3223134207,3223135231,3223138303,3223139327,3223140351,3223140863,3223141375,3223141887,3223142399,3223144447,3223146495,3223149055,3223149567,3223150591,3223154687,3223158783,3223159551,3223160319,3223160831,3223161343,3223162879,3223163391,3223163903,3223164415,3223164671,3223165951,3223166463,3223166975,3223170303,3223171583,3223173119,3223175167,3223176191,3223177215,3223179263,3223180287,3223181311,3223183359,3223184383,3223185407,3223185663,3223187455,3223188479,3223189503,3223191551,3223198463,3223198719,3223198975,3223199231,3223199487,3223199743,3223201791,3223202815,3223204863,3223205119,3223212031,3223212287,3223212543,3223213567,3223213823,3223214591,3223216383,3223217151,3223223295,3223223551,3223227391,3223227903,3223228159,3223229695,3223229951,3223236607,3223237631,3223243263,3223243519,3223249407,3223249663,3223250943,3223252991,3223258623,3223258879,3223260671,3223260927,3223262975,3223263231,3223263743,3223263999,3223264255,3223265023,3223265279,3223267327,3223267583,3223269119,3223269375,3223270399,3223271423,3223272959,3223273215,3223283199,3223283455,3223286783,3223289087,3223299583,3223301119,3223302399,3223302655,3223303167,3223303423,3223303679,3223304191,3223307263,3223307519,3223310079,3223311103,3223311359,3223311615,3223311871,3223314431,3223314687,3223315455,3223315711,3223316223,3223316479,3223321343,3223321599,3223321855,3223390719,3223390975,3223391999,3223392255,3223392511,3223393791,3223394303,3223395327,3223395583,3223395839,3223396095,3223396351,3223397375,3223397631,3223410431,3223416831,3223417087,3223417599,3223418367,3223420927,3223421439,3223421695,3223421951,3223422719,3223422975,3223424767,3223425535,3223425791,3223429887,3223430143,3223430911,3223431167,3223431423,3223432191,3223433215,3223435007,3223437311,3223447551,3223447807,3223449599,3223453183,3223453439,3223457791,3223458303,3223458559,3223458815,3223460351,3223460863,3223466495,3223466751,3223467007,3223468031,3223471615,3223471871,3223473663,3223473919,3223477247,3223478271,3223481087,3223481343,3223483391,3223483647,3223492607,3223493631,3223499519,3223499775,3223504639,3223504895,3223508991,3223513087,3223516415,3223516671,3223519231,3223519487,3223519999,3223524351,3223534335,3223534591,3223535359,3223537919,3223542271,3223542527,3223543295,3223543551,3223546879,3223547135,3223552511,3223553535,3223554559,3223554815,3223556095,3223556351,3223556607,3223556863,3223557375,3223558655,3223563263,3223563519,3223566079,3223568639,3223569663,3223570175,3223571711,3223571967,3223572223,3223572479,3223577855,3223578111,3223580671,3223581951,3223582207,3223582463,3223582719,3223582975,3223584767,3223591679,3223591935,3223592703,3223592959,3223595263,3223595519,3223599359,3223599615,3223600383,3223600639,3223650303,3223715839,3223781375,3223846911,3223847935,3223855103,3223857663,3223861503,3223861759,3223864831,3223865343,3223866879,3223867135,3223867391,3223867647,3223867903,3223868415,3223869439,3223869695,3223869951,3223871487,3223873535,3223881727,3223882751,3223883263,3223883519,3223889151,3223889407,3223889919,3223890175,3223890943,3223891455,3223902463,3223902719,3223905279,3223905535,3223906303,3223909375,3223911935,3223912191,3223938815,3223946239,3223947519,3223948287,3223948543,3223949823,3223950079,3223950335,3223950591,3223953663,3223955967,3223956223,3223958015,3223963135,3223963647,3223964159,3223964415,3223964671,3223965183,3223965439,3223966207,3223966463,3223967743,3223967999,3223968255,3223968511,3223970559,3223970815,3223978239,3223978495,3223979263,3223979775,3223988735,3223990271,3223991295,3223991551,3223991807,3223992063,3223993343,3223994111,3223994879,3223995391,3223995647,3223996415,3223996927,3223999487,3224000255,3224000511,3224001023,3224001279,3224002815,3224003071,3224003327,3224003583,3224003839,3224004095,3224004351,3224005631,3224006911,3224012031,3224014591,3224014847,3224016639,3224016895,3224024063,3224029695,3224030463,3224030719,3224030975,3224038655,3224038911,3224040959,3224041215,3224042751,3224043007,3224084735,3224084991,3224087551,3224088063,3224088319,3224090879,3224091135,3224091903,3224092159,3224092415,3224092671,3224093951,3224094207,3224094463,3224094975,3224095487,3224096511,3224097279,3224097535,3224097791,3224098047,3224099583,3224099839,3224101375,3224102399,3224103423,3224103679,3224104703,3224104959,3224109055,3224119551,3224126463,3224127231,3224129791,3224132351,3224170495,3224173567,3224272895,3224276991,3224293375,3224295423,3224296447,3224296959,3224297471,3224299519,3224301567,3224302335,3224302591,3224305663,3224312831,3224313087,3224314879,3224315135,3224367615,3224368127,3224369663,3224370431,3224370687,3224370943,3224371199,3224379135,3224379391,3224398591,3224398847,3224399103,3224399615,3224400127,3224400383,3224407295,3224407551,3224408319,3224408575,3224427519,3224427775,3224428543,3224429055,3224430335,3224430591,3224434687,3224434943,3224435967,3224436223,3224436735,3224502271,3224567807,3224571903,3224580095,3224580351,3224611839,3224612863,3224615935,3224616191,3224616959,3224617471,3224629247,3224629503,3224632319,3224632575,3224632831,3224633087,3224633343,3224646399,3224651775,3224652287,3224660991,3224661247,3224663807,3224671999,3224672255,3224672511,3224674047,3224674559,3224674815,3224677119,3224678655,3224680703,3224680959,3224682751,3224683007,3224683519,3224684031,3224689919,3224690687,3224692735,3224692991,3224694527,3224694783,3224698111,3224698367,3224698623,3224699135,3224699647,3224710655,3224710911,3224725247,3224725503,3224725759,3224727551,3224729599,3224730623,3224739071,3224739327,3224741887,3224742399,3224742911,3224743935,3224772351,3224776447,3224776703,3224777983,3224778239,3224778751,3224779007,3224779263,3224779775,3224783871,3224784383,3224785151,3224791039,3224791295,3224791807,3224793343,3224793599,3224793855,3224795391,3224795647,3224795903,3224796415,3224797439,3224797695,3224797951,3224798207,3224798463,3224798975,3224799231,3224799487,3224799743,3224799999,3224800255,3224800511,3224812031,3224812543,3224816639,3224816895,3224820735,3224820991,3224821247,3224822015,3224822271,3224826367,3224826623,3224826879,3224827391,3224827647,3224827903,3224828671,3224828927,3224829439,3224829695,3224833535,3224834559,3224835071,3224841727,3224842239,3224847359,3224848383,3224851455,3224851711,3224852735,3224852991,3224855039,3224855295,3224855551,3224855807,3224856063,3224856831,3224857087,3224857855,3224858111,3224858367,3224858623,3224858879,3224859391,3224859647,3224860159,3224860415,3224862975,3224863231,3224863487,3224863743,3224863999,3224878079,3224878335,3224878591,3224878847,3224879359,3224879615,3224879871,3224880383,3224880639,3224880895,3224882687,3224882943,3224883455,3224883711,3224884223,3224884479,3224886015,3224886271,3224886527,3224887295,3224887551,3224889343,3224889599,3224890879,3224891135,3224892415,3224892671,3224892927,3224900607,3224900863,3224933887,3224934143,3224940287,3224940543,3224955135,3224955391,3224956927,3224957183,3224957951,3224958207,3225028863,3225031423,3225033727,3225033983,3225034239,3225034751,3225035775,3225037055,3225049599,3225051391,3225052671,3225057535,3225057791,3225058047,3225058303,3225060607,3225060863,3225061375,3225061631,3225062399,3225062911,3225063423,3225076991,3225077247,3225077503,3225081087,3225081343,3225082367,3225082623,3225084415,3225085439,3225089279,3225089535,3225420799,3225422847,3225423103,3225423359,3225425919,3225426943,3225427199,3225427455,3225427967,3225428991,3225431039,3225431551,3225434111,3225436159,3225445375,3225446399,3225450495,3225451519,3225451775,3225452031,3225452543,3225456639,3225459711,3225459967,3225460479,3225460735,3225460991,3225462015,3225468927,3225469951,3225470463,3225471487,3225471743,3225498367,3225503487,3225506303,3225508863,3225509631,3225509887,3225510143,3225518591,3225518847,3225519103,3225519359,3225520639,3225520895,3225521151,3225522175,3225522943,3225524223,3225524479,3225524735,3225526271,3225528319,3225528831,3225529087,3225530367,3225530623,3225531903,3225532159,3225535999,3225540863,3225541119,3225541375,3225543935,3225544703,3225546751,3225548799,3225549055,3225549311,3225549567,3225550847,3225616383,3225616639,3225616895,3225617151,3225617407,3225617663,3225618687,3225618943,3225619455,3225619711,3225622271,3225622527,3225624575,3225625599,3225626367,3225626623,3225627391,3225627647,3225627903,3225628159,3225628415,3225628671,3225629183,3225629439,3225629695,3225629951,3225630207,3225630463,3225630719,3225631231,3225631487,3225632511,3225632767,3225635839,3225636095,3225636607,3225636863,3225637887,3225638143,3225638399,3225638655,3225638911,3225640447,3225640703,3225641983,3225643263,3225650943,3225651199,3225659135,3225659391,3225659647,3225659903,3225660159,3225660415,3225664767,3225667327,3225667583,3225669887,3225671935,3225672191,3225672447,3225672703,3225673215,3225673471,3225673727,3225676799,3225677823,3225679871,3225680127,3225680383,3225680639,3225681663,3225681919,3225682943,3225683199,3225687039,3225687807,3225688063,3225688831,3225689087,3225692159,3225694975,3225695231,3225695487,3225701119,3225701375,3225709567,3225710079,3225710591,3225715455,3225715711,3225715967,3225716735,3225716991,3225717247,3225717503,3225717759,3225720575,3225721343,3225723647,3225723903,3225724159,3225725439,3225725695,3225726207,3225726463,3225726719,3225726975,3225727231,3225727743,3225727999,3225728511,3225728767,3225729023,3225729279,3225729535,3225729791,3225730047,3225730303,3225735423,3225735679,3225735935,3225737215,3225737471,3225738495,3225738751,3225739263,3225739519,3225740543,3225740799,3225741055,3225742079,3225745919,3225746687,3225746943,3225747199,3225747711,3225747967,3225757695,3225758719,3225763839,3225764095,3225764863,3225765887,3225766399,3225766655,3225769471,3225769983,3225773311,3225773567,3225776639,3225777151,3225777407,3225781247,3225782271,3225807359,3225807615,3225807871,3225808895,3225810943,3225812991,3225827071,3225827327,3225835775,3225836287,3225843711,3225847039,3225847551,3225847807,3225848063,3225848831,3225849855,3225850111,3225853951,3225857023,3225857279,3225857535,3225857791,3225858047,3225858559,3225858815,3225860095,3225862143,3225863167,3225864191,3225864447,3225864703,3225867775,3225868031,3225868287,3225868543,3225869055,3225869311,3225869567,3225870335,3225870591,3225873663,3225873919,3225874943,3225875199,3225878527,3225885183,3225885439,3225885695,3225917183,3225917439,3225918207,3225918463,3225921023,3225921279,3225922559,3225922815,3225932543,3225932799,3225933055,3225933311,3225934335,3225934591,3225936639,3225936895,3225938175,3225938431,3225940991,3225941247,3225941503,3225941759,3225942015,3225942271,3225942527,3225944063,3225944831,3226008831,3226009599,3226009855,3226010879,3226011135,3226012671,3226012927,3226014463,3226014975,3226015231,3226015487,3226015743,3226016255,3226018303,3226018559,3226021119,3226026495,3226026751,3226067455,3226067711,3226068223,3226068479,3226110719,3226128639,3226140927,3226141695,3226141951,3226143487,3226143743,3226145535,3226145791,3226146559,3226146815,3226155519,3226155775,3226156543,3226156799,3226157567,3226157823,3226167807,3226168063,3226175231,3226175743,3226175999,3226177535,3226178559,3226188543,3226188799,3226189055,3226189823,3226190847,3226191359,3226191871,3226194175,3226194431,3226194687,3226194943,3226201087,3226201343,3226204927,3226205439,3226205951,3226207743,3226215423,3226237439,3226237695,3226240255,3226240511,3226244351,3226244607,3226244863,3226245375,3226245631,3226247167,3226247423,3226247935,3226248191,3226248447,3226248703,3226249983,3226250239,3226250495,3226251263,3226251519,3226267903,3226268159,3226268415,3226268927,3226269951,3226270719,3226271487,3226271743,3226271999,3226273791,3226274047,3226274559,3226274815,3226276095,3226276351,3226283519,3226291199,3226300927,3226301439,3226302463,3226303487,3226305535,3226307327,3226307583,3226308095,3226333183,3226337279,3226349055,3226349567,3226353663,3226366975,3226367231,3226374143,3226375423,3226376703,3226376959,3226378239,3226382335,3226384639,3226385407,3226386431,3226390527,3226392575,3226393087,3226393599,3226393855,3226397695,3226400255,3226400767,3226402815,3226470911,3226471167,3226473471,3226473983,3226474495,3226474751,3226476287,3226479359,3226480127,3226480383,3226481407,3226481663,3226482175,3226482431,3226488831,3226489087,3226509311,3226513407,3226521855,3226522111,3226536959,3226542079,3226547199,3226548735,3226548991,3226549247,3226549503,3226550015,3226550783,3226551039,3226551807,3226552319,3226552831,3226555391,3226555903,3226561535,3226561791,3226562047,3226564863,3226565119,3226565375,3226565631,3226574847,3226575103,3226575615,3226576383,3226576895,3226578943,3226580479,3226581247,3226583295,3226583551,3226583807,3226584063,3226585087,3226590207,3226591231,3226592255,3226592767,3226593023,3226593791,3226594047,3226612735,3226613759,3226615807,3226623999,3226625023,3226625279,3226626047,3226626303,3226629375,3226629631,3226630399,3226630655,3226631167,3226631423,3226631935,3226632191,3226633215,3226633471,3226635263,3226635519,3226635775,3226636031,3226636287,3226637823,3226638079,3226638591,3226638847,3226639615,3226640127,3226640639,3226640895,3226654207,3226654463,3226655743,3226656255,3226656511,3226658303,3226658559,3226661119,3226661375,3226664959,3226690815,3226691071,3226691327,3226691583,3226691839,3226695167,3226695423,3226695679,3226695935,3226696191,3226696703,3226697727,3226699775,3226705151,3226705407,3226705919,3226706175,3226707199,3226707455,3226715391,3226715647,3226715903,3226716159,3226716415,3226716671,3226716927,3226717951,3226718207,3226719231,3226720255,3226720511,3226721279,3226722047,3226722303,3226722559,3226723583,3226723839,3226724095,3226724351,3226725631,3226726143,3226728191,3226728447,3226731775,3226732031,3226732799,3226733055,3226733567,3226733823,3226734079,3226734335,3226734591,3226737407,3226737663,3226738175,3226738431,3226738687,3226739199,3226743295,3226743807,3226746367,3226746623,3226748671,3226749439,3226749695,3226752255,3226752767,3226753023,3226753279,3226753535,3226753791,3226754815,3226755071,3226755327,3226755583,3226755839,3226756095,3226756351,3226757375,3226757887,3226758143,3226758399,3226758655,3226763007,3226770687,3226772991,3226773247,3226774783,3226775039,3226775551,3226783743,3226784767,3226785023,3226786559,3226786815,3226787071,3226787327,3226788351,3226789375,3226789631,3226790911,3226791167,3226791679,3226792191,3226792703,3226792959,3226793215,3226793983,3226795263,3226795519,3226800127,3226800639,3226811391,3226811647,3226824191,3226824447,3226861823,3226862079,3226864383,3226864639,3226864895,3226865151,3226865407,3226866175,3226866431,3226867967,3226868223,3226868479,3226868735,3226883327,3226883583,3226884351,3226884607,3226893567,3226894079,3226894335,3226894591,3226894847,3226895359,3226895871,3226896127,3226896639,3226896895,3226897151,3226903295,3226903551,3226903807,3226904063,3226904319,3226904575,3226904831,3226905087,3226926591,3226926847,3226927103,3226992639,3226992895,3226993151,3226993663,3226993919,3226994175,3226994431,3226994687,3226994943,3226995455,3226996991,3226997247,3226998527,3226999039,3227013119,3227013375,3227013887,3227014399,3227014655,3227014911,3227017471,3227017983,3227018239,3227018495,3227019007,3227020287,3227020543,3227022847,3227023103,3227023359,3227024127,3227024383,3227025407,3227025663,3227025919,3227026175,3227026687,3227026943,3227038719,3227039743,3227040511,3227040767,3227041279,3227041535,3227042815,3227043071,3227044863,3227045119,3227053567,3227053823,3227054079,3227056639,3227057919,3227058175,3227123711,3227204607,3227204863,3227205119,3227205375,3227205631,3227205887,3227216895,3227217407,3227225087,3227225599,3227234559,3227234815,3227235071,3227235327,3227236607,3227236863,3227237119,3227237631,3227237887,3227238143,3227238399,3227240191,3227240447,3227240703,3227240959,3227243007,3227243263,3227243519,3227243775,3227244031,3227249151,3227249663,3227252735,3227254271,3227254527,3227258623,3227258879,3227273983,3227274239,3227274495,3227274751,3227276799,3227277055,3227278847,3227279103,3227281407,3227282175,3227282431,3227282687,3227282943,3227284479,3227284735,3227286783,3227287039,3227287295,3227287551,3227287807,3227288063,3227288319,3227288831,3227289087,3227289343,3227289599,3227290111,3227290367,3227290623,3227290879,3227291135,3227294207,3227294463,3227294975,3227304191,3227304447,3227309567,3227309823,3227310079,3227310335,3227312127,3227312383,3227317247,3227318271,3227320319,3227325439,3227326463,3227361791,3227362303,3227362815,3227385855,3227391999,3227392255,3227393023,3227393279,3227394303,3227394559,3227396351,3227396607,3227398399,3227398655,3227399679,3227399935,3227400447,3227400703,3227400959,3227401471,3227401727,3227402495,3227403007,3227403519,3227405311,3227405567,3227405823,3227406079,3227414271,3227415551,3227415807,3227416063,3227417087,3227417343,3227418111,3227418367,3227425791,3227427583,3227427839,3227429119,3227429375,3227429887,3227430143,3227430399,3227430655,3227437055,3227437311,3227438079,3227438591,3227439103,3227439615,3227439871,3227440127,3227440383,3227442175,3227442431,3227442687,3227443711,3227443967,3227444223,3227445503,3227445759,3227446015,3227446271,3227446527,3227446783,3227447039,3227447295,3227447807,3227448063,3227448575,3227448831,3227449087,3227450111,3227450367,3227451391,3227467775,3227468287,3227468799,3227471871,3227474943,3227475967,3227484159,3227517183,3227521279,3227521791,3227522815,3227523071,3227526143,3227526399,3227527423,3227527935,3227528191,3227528447,3227532031,3227532287,3227532799,3227534335,3227535615,3227535871,3227536895,3227537151,3227543295,3227543551,3227551487,3227551743,3227552255,3227553535,3227553791,3227554047,3227554303,3227556863,3227557375,3227557631,3227558911,3227559935,3227562239,3227566079,3227566335,3227568127,3227574271,3227576575,3227576831,3227579391,3227579647,3227582207,3227638271,3227638527,3227647999,3227659775,3227660031,3227660543,3227660799,3227678719,3227680767,3227713535,3227779071,3227779327,3227779583,3227779839,3227780351,3227780607,3227783679,3227783935,3227784703,3227784959,3227785727,3227792383,3227792639,3227792895,3227794687,3227794943,3227795199,3227795455,3227795967,3227796223,3227798783,3227799039,3227799295,3227799551,3227799807,3227801343,3227801599,3227803647,3227804415,3227804671,3227804927,3227805183,3227812863,3227813631,3227813887,3227814911,3227815167,3227815935,3227816191,3227818495,3227818751,3227819263,3227819519,3227822079,3227822335,3227822847,3227823103,3227824383,3227824639,3227825663,3227825919,3227826687,3227827199,3227827967,3227828223,3227829759,3227830015,3227831807,3227832063,3227833855,3227834367,3227837439,3227837951,3227842303,3227842815,3227843327,3227844095,3227844351,3227844607,3227844863,3227845119,3227845631,3227845887,3227846655,3227846911,3227847423,3227847679,3227848703,3227848959,3227851775,3227852031,3227853311,3227853567,3227862271,3227862527,3227863807,3227864063,3227865599,3227865855,3227866111,3227866367,3227866623,3227867647,3227867903,3227868159,3227873023,3227874047,3227874815,3227875071,3227878911,3227879167,3227879679,3227879935,3227880959,3227881215,3227883007,3227883519,3227885823,3227887871,3227888127,3227888383,3227889663,3227889919,3227890175,3227890431,3227890943,3227891455,3227891711,3227893759,3227894015,3227895039,3227895551,3227909119,3227909375,3227909631,3227909887,3227910399,3227910655,3227911679,3227912191,3227912447,3227912703,3227912959,3227913215,3227914495,3227914751,3227931135,3227931391,3227931647,3227931903,3227932927,3227933183,3227933695,3227933951,3227934463,3227934719,3227947519,3227955711,3227962367,3227962879,3227963391,3227964927,3227965183,3227967487,3227967743,3227967999,3227968255,3227968767,3227969023,3227971327,3227971583,3227974143,3227974655,3227975167,3227975679,3227976191,3227976447,3227977471,3227977727,3227979263,3227979519,3227980799,3227981055,3227981567,3227981823,3227982591,3227982847,3227985919,3227986175,3227986431,3227986943,3227987455,3227987711,3227997439,3228005631,3228006399,3228008959,3228009215,3228009471,3228009727,3228010751,3228011519,3228013311,3228013567,3228040703,3228041215,3228041983,3228042239,3228045055,3228045311,3228047103,3228047359,3228048383,3228048895,3228050175,3228050943,3228051199,3228051455,3228051711,3228051967,3228052223,3228052991,3228053503,3228053759,3228054783,3228055039,3228055295,3228055807,3228056319,3228059647,3228059903,3228060927,3228061183,3228061695,3228061951,3228062207,3228062463,3228077055,3228077311,3228077567,3228077823,3228078847,3228079103,3228080639,3228080895,3228081151,3228083967,3228084479,3228085247,3228085503,3228100607,3228101119,3228102143,3228102399,3228103935,3228104191,3228104447,3228104703,3228104959,3228105471,3228105727,3228105983,3228109311,3228109567,3228125951,3228126207,3228133375,3228134655,3228150271,3228150527,3228156671,3228156927,3228171775,3228172031,3228172287,3228237823,3228238335,3228238591,3228238847,3228239359,3228239615,3228240127,3228240383,3228240639,3228241407,3228250367,3228250623,3228250879,3228263679,3228263935,3228264447,3228264703,3228265983,3228266239,3228266495,3228266751,3228267007,3228267263,3228269055,3228269311,3228269567,3228270079,3228271103,3228271359,3228271615,3228271871,3228272127,3228274687,3228274943,3228279551,3228279807,3228280831,3228281087,3228281599,3228282111,3228282367,3228282623,3228283135,3228283391,3228283647,3228285695,3228285951,3228289023,3228297215,3228297727,3228297983,3228298495,3228300287,3228300543,3228309247,3228316159,3228316415,3228327167,3228328703,3228328959,3228329471,3228330751,3228331263,3228332287,3228332543,3228332799,3228334079,3228334335,3228334591,3228335359,3228335871,3228336127,3228336639,3228348159,3228353279,3228358399,3228362239,3228362495,3228363263,3228363519,3228364287,3228364543,3228368895,3228371455,3228371967,3228372735,3228372991,3228373247,3228373503,3228374783,3228375039,3228375295,3228375551,3228376575,3228376831,3228378367,3228378879,3228379135,3228379647,3228380415,3228380671,3228380927,3228381183,3228388095,3228388351,3228390399,3228390911,3228392191,3228392447,3228392959,3228393727,3228394239,3228394495,3228394751,3228395263,3228395519,3228395775,3228396799,3228397311,3228398847,3228399103,3228399359,3228399615,3228399871,3228400383,3228400639,3228400895,3228401151,3228402687,3228403199,3228404223,3228404735,3228405503,3228405759,3228406015,3228406271,3228406527,3228406783,3228407039,3228407295,3228412927,3228413183,3228419071,3228419327,3228420095,3228420351,3228420607,3228420863,3228421119,3228421375,3228421631,3228421887,3228422143,3228422399,3228422655,3228422911,3228423679,3228424191,3228424447,3228424703,3228424959,3228425471,3228426239,3228426751,3228427263,3228427519,3228427775,3228428287,3228428799,3228430335,3228430847,3228431103,3228431359,3228431871,3228432383,3228432639,3228432895,3228433151,3228433663,3228433919,3228434431,3228478463,3228479487,3228507647,3228507903,3228508159,3228508415,3228508671,3228509951,3228510207,3228511231,3228511487,3228511999,3228512255,3228512511,3228522495,3228522751,3228523007,3228523519,3228523775,3228524031,3228525567,3228525823,3228526079,3228526335,3228526591,3228526847,3228527103,3228531711,3228532223,3228532479,3228532735,3228532991,3228533759,3228534015,3228536063,3228536319,3228558591,3228559103,3228564479,3228564735,3228565247,3228565503,3228572927,3228573183,3228573951,3228577023,3228577279,3228578047,3228578303,3228581119,3228581375,3228582911,3228583167,3228583423,3228585983,3228590591,3228590847,3228591103,3228591359,3228604159,3228604415,3228611071,3228611327,3228617727,3228617983,3228618239,3228618495,3228618751,3228619007,3228620031,3228620287,3228620543,3228620799,3228627711,3228627967,3228628735,3228628991,3228630527,3228630783,3228631039,3228647423,3228647679,3228647935,3228648191,3228648959,3228649215,3228649471,3228649727,3228696575,3228734719,3228734975,3228807423,3228807679,3228827647,3228827903,3228828159,3228829183,3228833791,3229024255,3229036543,3229040639,3229089791,3229090047,3229092095,3229093887,3229104895,3229105151,3229120511,3229120767,3229151487,3229151743,3229152255,3229152767,3229155327,3229159423,3229159935,3229160959,3229161471,3229167103,3229167615,3229177599,3229177855,3229181439,3229181695,3229183999,3229184511,3229185535,3229186047,3229194495,3229194751,3229196799,3229197055,3229197311,3229198847,3229199103,3229199359,3229201407,3229201663,3229218047,3229218303,3229220863,3229221119,3229221375,3229245439,3229246719,3229250815,3229251071,3229254399,3229256959,3229258495,3229259519,3229264639,3229264895,3229265919,3229266175,3229266943,3229267199,3229273599,3229273855,3229274623,3229274879,3229275647,3229275903,3229276159,3229276415,3229281023,3229281791,3229283071,3229285631,3229285887,3229286143,3229354495,3229355775,3229358079,3229358335,3229359359,3229359615,3229359871,3229360127,3229360383,3229361919,3229362175,3229363711,3229363967,3229380607,3229380863,3229381375,3229381631,3229381887,3229382143,3229390847,3229391103,3229391359,3229391615,3229391871,3229392127,3229395455,3229395711,3229395967,3229396223,3229396479,3229396991,3229397247,3229397503,3229397759,3229398015,3229399039,3229400063,3229400319,3229400575,3229400831,3229401087,3229402879,3229403135,3229405183,3229405439,3229405695,3229408255,3229412095,3229412351,3229412607,3229414911,3229415167,3229415679,3229415935,3229417215,3229417471,3229450239,3229483007,3229483263,3229499647,3229511679,3229515775,3229679871,3229680383,3229680895,3229695487,3229700095,3229700351,3229701887,3229702143,3229704703,3229704959,3229712127,3229712383,3229745151,3229749759,3229750015,3229810687,3229814015,3229814271,3229815807,3229816063,3229817087,3229817343,3229817599,3229818623,3229818879,3229820159,3229820415,3229820927,3229821951,3229822207,3229830911,3229831167,3229833471,3229833727,3229834495,3229834751,3229835007,3229835263,3229835519,3229835775,3229838335,3229838591,3229838847,3229844479,3229844735,3229844991,3229845247,3229845503,3229845759,3229846015,3229846527,3229847039,3229847295,3229870335,3229870591,3229870847,3229874431,3229874687,3229874943,3229875199,3229875455,3229876223,3229876479,3229878527,3229878783,3229879039,3229879295,3229880063,3229880319,3229881087,3229881343,3229884159,3229884415,3229884927,3229885183,3229885439,3229886719,3229886975,3229889791,3229890047,3229890303,3229890559,3229891583,3229891839,3229900031,3229900287,3229901567,3229901823,3229902335,3229902591,3229937407,3229937663,3229937919,3229938175,3229938687,3229938943,3229939199,3229939455,3229940735,3229940991,3229941247,3229944319,3229944575,3229945343,3229945599,3229945855,3229947135,3229947391,3229948927,3229949183,3229949695,3229949951,3229950207,3229950975,3229951231,3229952255,3229952511,3229953279,3229953535,3229955327,3229955583,3229956095,3229956607,3229956863,3229958143,3229958399,3229958655,3229959167,3229967615,3229967871,3229969407,3229969663,3229969919,3229970431,3229972735,3229972991,3229975295,3229975551,3230004223,3230004479,3230005759,3230006015,3230007039,3230007295,3230072831,3230074623,3230074879,3230082559,3230083071,3230084095,3230084607,3230084863,3230085119,3230085375,3230085887,3230086143,3230086655,3230088959,3230089215,3230089727,3230089983,3230090239,3230090495,3230092543,3230092799,3230093823,3230094079,3230094335,3230095615,3230095871,3230096383,3230096639,3230096895,3230097151,3230097407,3230097663,3230098175,3230098431,3230098687,3230098943,3230099199,3230100735,3230100991,3230101503,3230104319,3230104575,3230105855,3230106111,3230106879,3230107135,3230109439,3230109695,3230109951,3230115071,3230115327,3230115583,3230116095,3230117631,3230117887,3230120191,3230120447,3230120703,3230120959,3230125823,3230126079,3230126335,3230126591,3230126847,3230128895,3230129151,3230129663,3230129919,3230130431,3230130687,3230131711,3230131967,3230132991,3230136319,3230136575,3230137599,3230137855,3230138111,3230140159,3230140415,3230140671,3230140927,3230142975,3230143231,3230143487,3230144255,3230144511,3230145279,3230145535,3230145791,3230146047,3230146303,3230146559,3230148351,3230148607,3230148863,3230149119,3230150655,3230150911,3230151167,3230151423,3230151679,3230151935,3230152191,3230152447,3230153215,3230153471,3230153727,3230153983,3230154239,3230156543,3230164735,3230167551,3230168063,3230174463,3230175231,3230177791,3230178303,3230178559,3230211839,3230212095,3230214911,3230215167,3230219775,3230220031,3230220287,3230222847,3230223103,3230223359,3230223615,3230225919,3230226175,3230226431,3230226687,3230226943,3230228223,3230228479,3230228735,3230228991,3230229247,3230229503,3230229759,3230230015,3230236159,3230236415,3230236671,3230236927,3230240767,3230241023,3230241791,3230242303,3230243839,3230244095,3230244351,3230244607,3230245119,3230246143,3230246911,3230247167,3230247679,3230247935,3230248191,3230251007,3230251263,3230251519,3230252031,3230254847,3230255359,3230255615,3230256127,3230256383,3230257919,3230259199,3230263807,3230264063,3230264319,3230266111,3230267135,3230267903,3230269695,3230271743,3230291455,3230291711,3230295039,3230295295,3230296319,3230297343,3230299647,3230302207,3230302975,3230309119,3230309375,3230310143,3230316287,3230316543,3230316799,3230317055,3230317311,3230317567,3230317823,3230318335,3230318591,3230318847,3230321663,3230321919,3230327807,3230328063,3230328319,3230329087,3230332927,3230333183,3230333695,3230333951,3230335231,3230335743,3230335999,3230336255,3230336511,3230339583,3230339839,3230340095,3230340351,3230344447,3230344703,3230350847,3230351103,3230354943,3230355199,3230365183,3230365439,3230367743,3230367999,3230368511,3230370303,3230370559,3230370815,3230372607,3230372863,3230374399,3230374911,3230375679,3230375935,3230377215,3230377471,3230378239,3230378495,3230379263,3230379775,3230382079,3230382335,3230383359,3230383615,3230384127,3230384383,3230387455,3230387711,3230390015,3230390783,3230400255,3230400767,3230401023,3230401535,3230402559,3230404607,3230405631,3230414847,3230415871,3230416895,3230420991,3230422015,3230424063,3230425087,3230432255,3230432767,3230433023,3230433279,3230435839,3230436351,3230437375,3230439423,3230440447,3230455807,3230456831,3230457855,3230458367,3230458879,3230459903,3230460927,3230463999,3230465023,3230466047,3230467071,3230468095,3230469119,3230471167,3230472191,3230475263,3230476287,3230477311,3230478335,3230479359,3230482431,3230483455,3230489599,3230490623,3230491135,3230491647,3230497791,3230498815,3230499839,3230503935,3230504959,3230508031,3230509055,3230510079,3230511103,3230513151,3230519295,3230521343,3230524415,3230525439,3230528511,3230529535,3230531583,3230531839,3230532607,3230532863,3230533375,3230534911,3230535167,3230535679,3230536191,3230536703,3230537215,3230537727,3230538239,3230538495,3230538751,3230544383,3230544639,3230546943,3230547455,3230550015,3230551039,3230551551,3230551807,3230552063,3230552319,3230554111,3230554367,3230554879,3230555135,3230556159,3230557183,3230557439,3230557695,3230558207,3230558975,3230559231,3230560255,3230564863,3230565119,3230565375,3230566911,3230567423,3230574591,3230574847,3230575615,3230575871,3230576127,3230576639,3230577663,3230581759,3230582015,3230582271,3230582783,3230588159,3230588927,3230589183,3230589439,3230589695,3230589951,3230590207,3230590975,3230596095,3230597119,3230662655,3230663679,3230663935,3230664703,3230665727,3230667007,3230667519,3230667775,3230668799,3230669823,3230670079,3230670847,3230671103,3230671359,3230671615,3230671871,3230672383,3230672895,3230673919,3230674943,3230675967,3230676991,3230678015,3230679039,3230681599,3230681855,3230682111,3230682623,3230683135,3230684159,3230684671,3230685183,3230686207,3230687231,3230691327,3230692351,3230695423,3230728191,3230729215,3230730239,3230731263,3230733311,3230734335,3230735359,3230736383,3230737407,3230737663,3230737919,3230739455,3230740479,3230741503,3230742527,3230743551,3230744575,3230745855,3230746111,3230746367,3230746623,3230747391,3230747647,3230748671,3230748927,3230749183,3230749439,3230749695,3230750719,3230752767,3230753279,3230753535,3230753791,3230754815,3230755839,3230756863,3230757887,3230758911,3230759935,3230760191,3230760447,3230760703,3230760959,3230769151,3230770175,3230771199,3230773247,3230774271,3230775295,3230775807,3230776319,3230777343,3230785535,3230786559,3230787071,3230787327,3230795007,3230795263,3230795519,3230795775,3230796287,3230796543,3230796799,3230797311,3230797567,3230799103,3230799359,3230799871,3230800127,3230823679,3230823935,3230824191,3230824447,3230825215,3230825471,3230826239,3230827519,3230827775,3230828031,3230828543,3230829055,3230829567,3230830079,3230832127,3230832383,3230832639,3230832895,3230833663,3230833919,3230834175,3230835455,3230837503,3230837759,3230838015,3230840319,3230840575,3230840831,3230841087,3230841343,3230841599,3230841855,3230842111,3230842367,3230843135,3230843391,3230844927,3230845183,3230845951,3230846207,3230849535,3230850047,3230851839,3230852095,3230852351,3230852607,3230853119,3230853375,3230853887,3230854399,3230854655,3230855167,3230855679,3230855935,3230857983,3230858751,3230865151,3230865407,3230867967,3230868223,3230868479,3230868735,3230870015,3230870271,3230878719,3230879487,3230879743,3230881791,3230882047,3230882303,3230882559,3230882815,3230888447,3230888703,3230895359,3230895615,3230897151,3230897407,3230897663,3230897919,3230898687,3230898943,3230899199,3230900991,3230901503,3230901759,3230902015,3230902271,3230902527,3230904319,3230904575,3230913023,3230913279,3230913535,3230913791,3230914047,3230914303,3230914815,3230915071,3230915327,3230915583,3230917631,3230917887,3230918399,3230918655,3230919423,3230919679,3230922239,3230922495,3230922751,3230923519,3230923775,3230924031,3230924287,3230933247,3230948607,3230951167,3230951423,3230953215,3230954495,3230967295,3230967551,3230967807,3230969599,3230969855,3230970111,3230972671,3230973951,3230974207,3230974463,3230974719,3230975487,3230975999,3230976255,3230980095,3230980351,3230980607,3230981119,3230981375,3230981631,3230981887,3230983935,3230991103,3230991359,3230991615,3230991871,3230994175,3230994431,3230995199,3230995455,3230995711,3230996223,3230996479,3230997247,3230997503,3230997759,3230999039,3230999295,3230999551,3230999807,3231000831,3231001087,3231001343,3231001599,3231002623,3231003903,3231004159,3231004415,3231004927,3231005183,3231005439,3231005695,3231005951,3231010047,3231010303,3231010815,3231011071,3231011583,3231011839,3231015423,3231015679,3231015935,3231016191,3231016447,3231016703,3231016959,3231017215,3231018495,3231018751,3231019007,3231020287,3231020543,3231020799,3231021567,3231021823,3231022079,3231022591,3231022847,3231028479,3231028735,3231042047,3231042303,3231043839,3231044095,3231047935,3231048191,3231048447,3231048703,3231049727,3231049983,3231051263,3231051519,3231051775,3231059967,3231060223,3231060991,3231061247,3231070719,3231074559,3231074815,3231075071,3231075583,3231075839,3231077119,3231077375,3231077631,3231078655,3231078911,3231079423,3231079679,3231079935,3231080191,3231080447,3231080703,3231082495,3231082751,3231083007,3231083263,3231083519,3231087615,3231087871,3231088127,3231088383,3231088895,3231091711,3231091967,3231092735,3231092991,3231093247,3231093503,3231101183,3231103231,3231103487,3231103999,3231104255,3231104767,3231105023,3231105535,3231106303,3231106559,3231106815,3231107071,3231107327,3231107583,3231107839,3231108095,3231108351,3231108607,3231109119,3231109375,3231109631,3231111679,3231112191,3231112447,3231112959,3231113215,3231113983,3231115775,3231116799,3231117055,3231118847,3231119103,3231119359,3231119615,3231120383,3231120639,3231120895,3231121151,3231128575,3231129087,3231149311,3231149567,3231154431,3231154687,3231155199,3231156223,3231166463,3231166719,3231166975,3231167231,3231167487,3231167743,3231167999,3231188479,3231188735,3231190527,3231190783,3231191295,3231191551,3231193599,3231194111,3231197695,3231197951,3231198207,3231198463,3231198975,3231199231,3231199487,3231200255,3231200767,3231201023,3231202559,3231203071,3231203327,3231204351,3231204607,3231204863,3231207167,3231207423,3231207935,3231208191,3231208959,3231209471,3231210239,3231210495,3231211775,3231212031,3231212287,3231215359,3231215615,3231215871,3231217407,3231217663,3231218175,3231218431,3231218687,3231218943,3231219199,3231219455,3231223039,3231223295,3231223807,3231224063,3231224319,3231224575,3231225599,3231225855,3231226879,3231227135,3231227391,3231227647,3231228927,3231229183,3231229439,3231229695,3231229951,3231231487,3231231743,3231234047,3231235071,3231236863,3231237119,3231237375,3231237631,3231241215,3231241471,3231241727,3231248639,3231248895,3231249407,3231249663,3231250431,3231250687,3231251711,3231251967,3231252223,3231252991,3231253503,3231254783,3231255039,3231255551,3231255807,3231256063,3231257087,3231257599,3231267071,3231267327,3231267839,3231268095,3231268351,3231268607,3231268863,3231275007,3231275263,3231275519,3231276287,3231276543,3231276799,3231281919,3231282175,3231282431,3231282943,3231283199,3231283455,3231283711,3231284991,3231285247,3231291647,3231291903,3231292159,3231292415,3231292927,3231293183,3231294975,3231295231,3231295487,3231295743,3231296255,3231296511,3231296767,3231299327,3231300095,3231300351,3231300607,3231300863,3231301119,3231302143,3231302399,3231302655,3231303167,3231307007,3231307263,3231308031,3231308287,3231308799,3231309055,3231316735,3231316991,3231321343,3231321599,3231322111,3231324671,3231325183,3231326207,3231333119,3231333375,3231338495,3231338751,3231352831,3231358975,3231368191,3231368447,3231368703,3231368959,3231383551,3231383807,3231385343,3231401215,3231401471,3231423999,3231424511,3231482879,3231483135,3231484927,3231485183,3231485439,3231485695,3231485951,3231486207,3231487999,3231488511,3231488767,3231489279,3231489535,3231490047,3231490559,3231490815,3231491327,3231491583,3231491839,3231492095,3231492351,3231492607,3231493631,3231493887,3231500031,3231500287,3231502079,3231502591,3231502847,3231503103,3231503615,3231503871,3231504639,3231504895,3231505407,3231505663,3231506687,3231506943,3231507199,3231507455,3231510271,3231510527,3231512575,3231512831,3231513087,3231514879,3231515647,3231516671,3231518207,3231518719,3231519231,3231520767,3231521791,3231523327,3231523583,3231529983,3231531007,3231539199,3231547391,3231547647,3231547903,3231549951,3231550207,3231550719,3231550975,3231551231,3231551999,3231553023,3231553791,3231554047,3231555327,3231556095,3231556351,3231556607,3231556863,3231557887,3231558399,3231558655,3231558911,3231559167,3231559423,3231559679,3231559935,3231561983,3231562239,3231562495,3231562751,3231563007,3231563263,3231563519,3231563775,3231574015,3231574527,3231577087,3231577599,3231579135,3231579647,3231580159,3231583231,3231584255,3231587327,3231588351,3231596031,3231596543,3231634943,3231635455,3231649791,3231651839,3231653631,3231654143,3231655167,3231655423,3231655935,3231663615,3231663871,3231664127,3231664383,3231664639,3231665407,3231665663,3231667199,3231667711,3231668735,3231668991,3231670015,3231670271,3231671039,3231671295,3231671551,3231671807,3231672319,3231672575,3231672831,3231673343,3231673599,3231673855,3231674111,3231674367,3231675391,3231675903,3231676159,3231676671,3231676927,3231677183,3231690751,3231692799,3231703039,3231711231,3231713791,3231714047,3231715071,3231715327,3231715583,3231716095,3231716351,3231716607,3231716863,3231717119,3231717375,3231718143,3231718399,3231718655,3231718911,3231719679,3231719935,3231720191,3231720703,3231720959,3231722751,3231723007,3231724031,3231724287,3231727871,3231728127,3231728383,3231728639,3231729407,3231729663,3231735551,3231736063,3231737343,3231737599,3231738367,3231738623,3231739135,3231739391,3231739647,3231739903,3231742719,3231742975,3231743487,3231743743,3231743999,3231744255,3231747583,3231747839,3231748095,3231750143,3231750399,3231750911,3231751167,3231751423,3231752191,3231752447,3231752703,3231753983,3231754239,3231754495,3231755263,3231755519,3231755775,3231756543,3231757311,3231759359,3231759615,3231760895,3231761407,3231763711,3231763967,3231768575,3231768831,3231769087,3231769343,3231769855,3231770111,3231770367,3231770879,3231771135,3231773183,3231773439,3231773951,3231775231,3231775487,3231775743,3231775999,3231776511,3231776767,3231778303,3231778815,3231793151,3231793663,3231801343,3231809535,3231810047,3231842303,3231843327,3231844351,3231845375,3231846399,3231846655,3231846911,3231847167,3231847423,3231848447,3231850495,3231851519,3231853567,3231855615,3231856639,3231857663,3231858687,3231859711,3231860735,3231861759,3231863807,3231864831,3231865855,3231866879,3231867903,3231868927,3231869951,3231873023,3231875071,3231876095,3231877119,3231878143,3231879167,3231881215,3231882239,3231883263,3231884287,3231885311,3231886335,3231888383,3231889407,3231889919,3231890431,3231892479,3231892991,3231893247,3231894527,3231895551,3231896575,3231897599,3231898623,3231899647,3231900671,3231901439,3231901695,3231903743,3231905791,3231906047,3231907839,3231911423,3231911935,3231912191,3231912447,3231912959,3231913215,3231913983,3231915007,3231916031,3231948799,3231973375,3232038911,3232094975,3232095231,3232104447,3232107519,3232108543,3232112639,3232113663,3232114687,3232115711,3232115967,3232116735,3232125183,3232125951,3232129023,3232130047,3232131071,3232133119,3232133631,3232133887,3232134143,3232135167,3232135679,3232135935,3232137215,3232139263,3232140287,3232141311,3232141823,3232142335,3232143359,3232143615,3232143871,3232144895,3232156159,3232156671,3232157695,3232159743,3232161791,3232162303,3232162559,3232162815,3232163839,3232165887,3232166911,3232167167,3232167423,3232167679,3232167935,3232168959,3232169215,3232169727,3232169983,3232235519,3232301055,3232302079,3232302335,3232309247,3232309503,3232310527,3232310783,3232311807,3232325631,3232327679,3232328703,3232329727,3232330751,3232331007,3232331263,3232332799,3232333311,3232333823,3232381439,3232382207,3232393471,3232393727,3232393983,3232432383,3232432639,3232432895,3232433151,3232433407,3232433663,3232438271,3232440319,3232452607,3232458239,3232458495,3232458751,3232460799,3232461311,3232461823,3232462847,3232464895,3232483327,3232489471,3232497663,3232555775,3232557055,3232557311,3232557567,3232557823,3232558591,3232559103,3232559359,3232560127,3232560383,3232560895,3232561663,3232561919,3232562431,3232562687,3232562943,3232563455,3232564479,3232567295,3232569599,3232570367,3232571391,3232581631,3232581887,3232583167,3232583423,3232583679,3232583935,3232584191,3232584447,3232584703,3232584959,3232585727,3232585983,3232586239,3232587519,3232587775,3232588287,3232588799,3232589311,3232589567,3232590079,3232590335,3232590847,3232591359,3232595967,3232598015,3232600063,3232602111,3232629759,3232630783,3232645119,3232646399,3232661503,3232694271,3232694527,3232694783,3232695807,3232696319,3232697855,3232698367,3232702463,3232703743,3232703999,3232704511,3232705535,3232706559,3232716799,3232727039,3232736767,3232737023,3232739327,3232739839,3232740095,3232740351,3232759807,3232825343,3232829695,3232829951,3232830975,3232831231,3232832511,3232832767,3232833279,3232833535,3232833791,3232834047,3232835071,3232835583,3232835839,3232836095,3232836607,3232836863,3232837119,3232837375,3232837631,3232838399,3232838655,3232839167,3232839679,3232839935,3232840959,3232841215,3232841471,3232841727,3232843007,3232843263,3232844543,3232844799,3232845055,3232846079,3232846335,3232846591,3232850943,3232851199,3232853247,3232853503,3232858111,3232858367,3232858623,3232858879,3232859135,3232859391,3232859647,3232859903,3232860927,3232861439,3232861695,3232861951,3232862207,3232862463,3232862975,3232863231,3232863487,3232863743,3232863999,3232864511,3232864767,3232865279,3232865535,3232866047,3232866303,3232866559,3232866815,3232867071,3232867327,3232867583,3232868095,3232868351,3232868863,3232869119,3232869375,3232869631,3232869887,3232871679,3232872191,3232872447,3232872959,3232873215,3232873471,3232873727,3232873983,3232874239,3232874495,3232899071,3232899327,3233288191,3233292287,3233431551,3233447935,3233451263,3233451519,3233463039,3233463295,3233484799,3233487359,3233487871,3233488895,3233516031,3233516287,3233546751,3233547007,3233549055,3233549311,3233557247,3233557503,3233561855,3233562367,3233562879,3233563135,3233563903,3233564159,3233564415,3233564671,3233564927,3233566719,3233566975,3233567231,3233567743,3233567999,3233568767,3233569023,3233569535,3233569791,3233570047,3233570815,3233571071,3233572095,3233572351,3233573119,3233573375,3233573631,3233573887,3233575679,3233575935,3233576191,3233576447,3233576959,3233577215,3233577471,3233577727,3233578239,3233578495,3233578751,3233579007,3233579263,3233579519,3233580031,3233580287,3233581055,3233581311,3233583359,3233583615,3233584895,3233585151,3233586431,3233586943,3233588223,3233589247,3233589759,3233590015,3233590271,3233590527,3233590783,3233591039,3233591295,3233593599,3233593855,3233594111,3233594367,3233594623,3233594879,3233595903,3233596927,3233605887,3233607167,3233607935,3233608191,3233609727,3233609983,3233612031,3233612287,3233613823,3233614847,3233615359,3233615615,3233617407,3233617663,3233617919,3233618175,3233620479,3233620735,3233620991,3233622015,3233622271,3233622527,3233624831,3233625087,3233625343,3233625599,3233625855,3233626111,3233628671,3233628927,3233629439,3233629695,3233629951,3233630463,3233630719,3233630975,3233631231,3233631487,3233631743,3233631999,3233635839,3233636095,3233636351,3233642239,3233642495,3233646591,3233646847,3233647359,3233647871,3233649663,3233649919,3233650431,3233650687,3233651199,3233651455,3233652479,3233652735,3233652991,3233654271,3233655551,3233663487,3233663999,3233664255,3233665023,3233666047,3233668863,3233669119,3233670399,3233671423,3233671679,3233676031,3233676287,3233677311,3233677567,3233682175,3233682431,3233683711,3233683967,3233684991,3233685503,3233688575,3233688831,3233692159,3233692671,3233692927,3233693183,3233693695,3233693951,3233694207,3233694463,3233694719,3233694975,3233695231,3233696511,3233696767,3233701631,3233701887,3233704959,3233705215,3233710335,3233711359,3233720319,3233721343,3233721599,3233721855,3233722111,3233723391,3233723647,3233723903,3233724415,3233725951,3233726975,3233728767,3233729279,3233729535,3233730047,3233730559,3233730815,3233731071,3233732607,3233736703,3233736959,3233737983,3233738751,3233739007,3233739263,3233739519,3233740543,3233741311,3233808383,3233823999,3233824255,3233873919,3233902591,3233902847,3233903615,3233903871,3233914879,3233915135,3233922815,3233923071,3233939455,3234004991,3234005247,3234005503,3234005759,3234006015,3234007039,3234007295,3234007551,3234007807,3234008063,3234008831,3234013695,3234013951,3234014975,3234015487,3234015743,3234016255,3234019327,3234019839,3234023423,3234023679,3234030079,3234030335,3234031103,3234031359,3234031871,3234032127,3234032383,3234033151,3234033407,3234033663,3234033919,3234034687,3234035455,3234039295,3234043135,3234043903,3234044159,3234048511,3234048767,3234049535,3234049791,3234051839,3234052095,3234052351,3234052607,3234052863,3234054911,3234055167,3234055423,3234055679,3234056959,3234057215,3234061055,3234061311,3234064639,3234064895,3234065407,3234065663,3234065919,3234070271,3234070527,3234070783,3234110463,3234119679,3234123775,3234127615,3234127871,3234136063,3234150911,3234151423,3234158847,3234159103,3234159615,3234160127,3234164991,3234165247,3234167295,3234167807,3234172927,3234173951,3234175999,3234177279,3234184447,3234184703,3234187007,3234187775,3234189055,3234189311,3234191359,3234193663,3234198783,3234199039,3234199295,3234199551,3234201343,3234203647,3234205695,3234209279,3234209535,3234232319,3234232575,3234233855,3234234111,3234248191,3234248703,3234267135,3234267391,3234270207,3234271231,3234275327,3234279423,3234283519,3234316287,3234320383,3234336767,3234340863,3234349055,3234353151,3234529279,3234529535,3234537471,3234537727,3234538751,3234539007,3234539519,3234549759,3234550015,3234553855,3234554623,3234554879,3234556415,3234556927,3234557439,3234564607,3234566911,3234568703,3234568959,3234569215,3234569727,3234569983,3234574335,3234574591,3234574847,3234576127,3234576895,3234578687,3234578943,3234579711,3234579967,3234581247,3234581503,3234582527,3234583039,3234583807,3234584063,3234584575,3234584831,3234587391,3234587647,3234588671,3234588927,3234589439,3234589695,3234592511,3234592767,3234594815,3234595071,3234596863,3234597119,3234599679,3234600191,3234600959,3234601215,3234602239,3234602495,3234603263,3234603775,3234608383,3234608639,3234609407,3234609663,3234611455,3234611711,3234612991,3234613247,3234615039,3234615295,3234617087,3234617599,3234619647,3234620159,3234620671,3234621183,3234622463,3234622719,3234627071,3234627327,3234629375,3234629631,3234630143,3234631167,3234632447,3234632703,3234633215,3234633471,3234634239,3234634495,3234634751,3234635519,3234636287,3234636543,3234639103,3234639359,3234639871,3234640127,3234642431,3234642687,3234644735,3234644991,3234645247,3234646015,3234647551,3234647807,3234648575,3234648831,3234651391,3234651647,3234653695,3234653951,3234654463,3234654719,3234656511,3234656767,3234659327,3234659839,3234726143,3234726399,3234726911,3234727935,3234733055,3234733311,3234739711,3234740223,3234743551,3234743807,3234745599,3234746879,3234747903,3234748159,3234749439,3234750207,3234751999,3234752255,3234753535,3234753791,3234755839,3234756095,3234762751,3234764799,3234766335,3234772223,3234772479,3234781439,3234781951,3234782719,3234783999,3234795007,3234795263,3234797823,3234798079,3234799359,3234799615,3234799871,3234800127,3234800639,3234800895,3234801663,3234802431,3234803711,3234803967,3234807807,3234808063,3234809087,3234810879,3234811135,3234814719,3234814975,3234815999,3234816767,3234820351,3234820607,3234821887,3234822399,3234822655,3234826751,3234827007,3234827519,3234827775,3234828031,3234828287,3234828799,3234829055,3234830079,3234831359,3234832127,3234832639,3234832895,3234833663,3234833919,3234838271,3234838527,3234839295,3234839551,3234841087,3234841599,3234841855,3234842367,3234842623,3234843647,3234844159,3234844415,3234853375,3234853631,3234853887,3234854143,3234854911,3234855167,3234856447,3234856703,3234857215,3234861055,3234988287,3234990847,3235004415,3235020799,3235028991,3235029247,3235032831,3235033087,3235053311,3235053567,3235053823,3235065343,3235065855,3235067647,3235067903,3235085311,3235086335,3235122175,3235122431,3235184639,3235184895,3235275775,3235276799,3235278847,3235282431,3235282943,3235291391,3235299327,3235307519,3235315711,3235447039,3235447295,3235450623,3235450879,3235452159,3235452415,3235454975,3235455231,3235457023,3235457279,3235461119,3235461375,3235461887,3235462143,3235462399,3235462655,3235463679,3235463935,3235464703,3235464959,3235472639,3235472895,3235473151,3235473407,3235473663,3235473919,3235474943,3235475455,3235477503,3235477759,3235478015,3235478271,3235480319,3235480575,3235480831,3235481087,3235482879,3235483391,3235484159,3235484671,3235484927,3235485183,3235485951,3235486463,3235486719,3235486975,3235487231,3235487487,3235488511,3235488767,3235489279,3235489535,3235491071,3235491583,3235492607,3235492863,3235493375,3235493631,3235497471,3235497727,3235500031,3235500287,3235501567,3235502335,3235502847,3235503103,3235503359,3235503871,3235504127,3235504383,3235504895,3235505407,3235508479,3235508735,3235508991,3235509503,3235509759,3235510015,3235512319,3235577855,3235585279,3235585535,3235633151,3235638271,3235641855,3235642111,3235643135,3235643903,3235644159,3235646463,3235646719,3235648511,3235649023,3235649791,3235650047,3235650303,3235650559,3235650815,3235651071,3235651327,3235651583,3235651839,3235652351,3235652607,3235652863,3235657471,3235657983,3235659007,3235659519,3235660031,3235660543,3235662847,3235663103,3235663359,3235663871,3235665151,3235665663,3235665919,3235666431,3235668735,3235668991,3235671807,3235672063,3235672319,3235672575,3235674367,3235674623,3235677695,3235677951,3235679231,3235679487,3235681791,3235682047,3235683327,3235683839,3235684863,3235685119,3235685375,3235685631,3235686655,3235686911,3235688191,3235688447,3235689215,3235689471,3235692287,3235692543,3235693823,3235694079,3235695615,3235695871,3235696383,3235696639,3235701247,3235701503,3235701759,3235702015,3235703807,3235704063,3235704575,3235704831,3235706111,3235706367,3235734783,3235735039,3235740159,3235740415,3235753983,3235754239,3235754495,3235774719,3235776767,3235800575,3235801087,3235807231,3235839999,3235843071,3235844095,3235856383,3235872767,3235971071,3235971327,3235995647,3235995903,3236044799,3236052991,3236069375,3236102143,3236102399,3236106239,3236168703,3236175871,3236192767,3236193279,3236193791,3236194303,3236196351,3236196607,3236196863,3236197119,3236198911,3236199167,3236200447,3236233215,3236239359,3236241407,3236267263,3236267519,3236268031,3236268287,3236269311,3236269823,3236270079,3236270335,3236272639,3236272895,3236276479,3236276735,3236277759,3236278783,3236279039,3236279295,3236279551,3236279807,3236280063,3236280319,3236280575,3236281599,3236281855,3236282111,3236282879,3236283135,3236283903,3236284159,3236284927,3236285183,3236287743,3236287999,3236288255,3236289023,3236289535,3236290047,3236290303,3236290559,3236292607,3236292863,3236293119,3236293375,3236293631,3236293887,3236294655,3236296191,3236296703,3236297215,3236297727,3236302847,3236306943,3236315135,3236316415,3236316671,3236316927,3236317183,3236317951,3236318463,3236318719,3236318975,3236319231,3236319487,3236319743,3236320255,3236320511,3236320767,3236321023,3236321279,3236321535,3236321791,3236322047,3236322303,3236322559,3236323327,3236323583,3236323839,3236324351,3236324607,3236324863,3236325119,3236325375,3236325631,3236325887,3236326143,3236326399,3236326655,3236326911,3236327167,3236327423,3236327935,3236328191,3236328447,3236328703,3236328959,3236329471,3236329727,3236330751,3236331263,3236331519,3236365567,3236365823,3236368127,3236368383,3236372991,3236373247,3236373503,3236373759,3236379391,3236379647,3236381183,3236381439,3236381695,3236383999,3236384255,3236385279,3236385535,3236385791,3236386303,3236387071,3236387327,3236387839,3236389375,3236392447,3236392703,3236393471,3236393983,3236394239,3236395007,3236395519,3236396799,3236397055,3236398847,3236399359,3236399615,3236400127,3236400383,3236401151,3236401407,3236403967,3236404223,3236406783,3236407551,3236408063,3236408319,3236409087,3236409599,3236411135,3236411391,3236412415,3236412671,3236413695,3236413951,3236416255,3236416511,3236418303,3236418559,3236418815,3236419583,3236419839,3236420095,3236420351,3236424959,3236425215,3236427519,3236427775,3236428031,3236429311,3236429567,3236438015,3236446207,3236462591,3236470783,3236546559,3236546815,3236560895,3236561151,3236566783,3236567039,3236571135,3236571391,3236575743,3236575999,3236585983,3236586239,3236587007,3236587263,3236604671,3236604927,3236611071,3236612095,3236613119,3236613375,3236617983,3236619775,3236620031,3236620287,3236623615,3236623871,3236638719,3236642815,3236659199,3236691967,3236695039,3236696063,3236729343,3236729599,3236757503,3236765695,3236774911,3236775423,3236775679,3236776191,3236776447,3236776959,3236777215,3236778239,3236778751,3236780287,3236780543,3236780799,3236781823,3236782335,3236784383,3236784895,3236785663,3236785919,3236786175,3236786431,3236786687,3236787967,3236788223,3236788479,3236789503,3236814591,3236814847,3236823295,3236825855,3236827135,3236958207,3236962303,3237003263,3237019647,3237038079,3237038335,3237040383,3237040639,3237040895,3237041151,3237043199,3237043455,3237043967,3237044223,3237045247,3237045503,3237047295,3237047807,3237050367,3237050623,3237051391,3237051647,3237154815,3237155839,3237156863,3237164031,3237165823,3237166079,3237166847,3237170175,3237171199,3237178879,3237179135,3237181439,3237183487,3237205503,3237206015,3237216255,3237281791,3237284607,3237284863,3237285375,3237285631,3237287935,3237288191,3237289471,3237289727,3237290495,3237291263,3237294847,3237295103,3237296639,3237297151,3237297407,3237300479,3237302527,3237305855,3237306111,3237308671,3237310719,3237312767,3237313023,3237319679,3237319935,3237320703,3237320959,3237321471,3237321727,3237322751,3237323263,3237323519,3237325055,3237325311,3237325823,3237326079,3237328639,3237328895,3237329151,3237329407,3237330943,3237331199,3237331967,3237332223,3237335039,3237335295,3237335551,3237337599,3237337855,3237338111,3237338367,3237339391,3237339647,3237340159,3237340415,3237345535,3237346303,3237366015,3237366271,3237412863,3237413119,3237415679,3237415935,3237416959,3237420287,3237420543,3237478399,3237511167,3237515263,3237523455,3237527551,3237535743,3237548031,3237552127,3237554687,3237555199,3237567487,3237567743,3237568511,3237572607,3237576703,3237609471,3237611007,3237611519,3237612799,3237613311,3237613567,3237614591,3237615615,3237616895,3237650943,3237651455,3237653503,3237653759,3237655039,3237655551,3237656319,3237656575,3237656831,3237657087,3237666815,3237667071,3237667327,3237667839,3237668095,3237668607,3237668863,3237669375,3237669631,3237669887,3237670399,3237670655,3237670911,3237675007,3237675263,3237681663,3237682943,3237684991,3237685247,3237688319,3237689343,3237690623,3237691903,3237698303,3237698559,3237712895,3237713151,3237715455,3237715711,3237716991,3237717247,3237717503,3237717759,3237724927,3237725183,3237725439,3237725695,3237726207,3237726463,3237726719,3237726975,3237727231,3237728255,3237732863,3237733119,3237733631,3237733887,3237734143,3237734399,3237773311,3237777407,3237781503,3237785599,3237795071,3237795327,3237797887,3237801983,3237858303,3237863423,3237867519,3237867775,3237868031,3237868287,3237868543,3237868799,3237869311,3237869567,3237869823,3237870079,3237870335,3237870591,3237870847,3237871103,3237871359,3237871615,3237893631,3237893887,3237894143,3237894399,3237894655,3237894911,3237895167,3237895423,3237895935,3237896191,3237900287,3237953535,3237969919,3238002687,3238008831,3238010879,3238017023,3238018303,3238018559,3238018815,3238019071,3238035711,3238035967,3238037503,3238039039,3238039551,3238039807,3238040063,3238040575,3238042623,3238042879,3238043135,3238043391,3238043647,3238043903,3238044159,3238044671,3238045183,3238047743,3238048255,3238048767,3238049791,3238050047,3238050303,3238050815,3238051071,3238051327,3238051839,3238053375,3238053887,3238054911,3238055935,3238056959,3238057215,3238057471,3238057983,3238059519,3238059775,3238060031,3238060287,3238060543,3238060799,3238061055,3238061311,3238061823,3238062079,3238062335,3238062591,3238063103,3238063359,3238063615,3238063871,3238064127,3238064383,3238064639,3238064895,3238065151,3238065407,3238065663,3238065919,3238066175,3238066431,3238066687,3238066943,3238067199,3238067455,3238067711,3238067967,3238068223,3238133759,3238199295,3238199551,3238203391,3238203647,3238203903,3238204415,3238204671,3238204927,3238205183,3238205439,3238205695,3238205951,3238206207,3238206719,3238206975,3238207231,3238207487,3238207743,3238207999,3238208255,3238208511,3238208767,3238209023,3238209279,3238209535,3238209791,3238210047,3238210303,3238210559,3238210815,3238211071,3238211327,3238211583,3238211839,3238212095,3238212351,3238212607,3238212863,3238213119,3238213375,3238213631,3238213887,3238214143,3238214399,3238214655,3238215423,3238215679,3238232063,3238232319,3238232575,3238234111,3238234367,3238234623,3238239743,3238239999,3238240255,3238240511,3238241023,3238241279,3238241535,3238241791,3238242047,3238242303,3238242559,3238242815,3238243071,3238243327,3238243583,3238243839,3238244095,3238244351,3238244863,3238245119,3238245375,3238245887,3238246143,3238246399,3238246911,3238247167,3238247423,3238247679,3238247935,3238248191,3238248447,3238258175,3238258431,3238258687,3238258943,3238260479,3238260735,3238260991,3238261247,3238261503,3238261759,3238262271,3238264575,3238264831,3238286847,3238287103,3238287359,3238330367,3238330623,3238330879,3238332927,3238333439,3238336511,3238336767,3238337023,3238337535,3238337791,3238338303,3238338559,3238340351,3238340607,3238340863,3238341119,3238341631,3238342143,3238342655,3238346751,3238347263,3238361087,3238361343,3238362367,3238362623,3238367231,3238367487,3238367743,3238367999,3238368511,3238368767,3238369023,3238369279,3238394367,3238394879,3238395647,3238395903,3238461439,3238502399,3238504447,3238510591,3238511103,3238511359,3238511615,3238512639,3238512895,3238513663,3238514175,3238514687,3238515711,3238516735,3238517759,3238518783,3238526975,3238527231,3238527487,3238527999,3238529023,3238529279,3238530047,3238531071,3238535167,3238536191,3238537215,3238538495,3238538751,3238539263,3238540799,3238541311,3238541567,3238541823,3238542591,3238542847,3238543359,3238544383,3238545407,3238545919,3238546175,3238546431,3238546943,3238547455,3238548479,3238548991,3238549503,3238550527,3238551039,3238551295,3238551551,3238555647,3238556159,3238556415,3238556671,3238557695,3238558719,3238559231,3238559487,3238559743,3238562303,3238562559,3238562815,3238568959,3238569215,3238569727,3238569983,3238570495,3238570751,3238571007,3238571263,3238571519,3238571775,3238572031,3238573567,3238574079,3238575103,3238576127,3238576383,3238576639,3238577151,3238578431,3238578687,3238578943,3238579199,3238579455,3238579711,3238580223,3238581247,3238581759,3238582015,3238582271,3238583295,3238583807,3238584319,3238585343,3238585855,3238586111,3238586367,3238586879,3238587135,3238587391,3238587647,3238588159,3238588415,3238589439,3238589695,3238589951,3238590207,3238590463,3238590719,3238590975,3238591231,3238592255,3238592511,3238594559,3238595583,3238595839,3238596607,3238596863,3238597119,3238597375,3238597631,3238597887,3238598143,3238598399,3238598655,3238598911,3238599167,3238599679,3238599935,3238600191,3238600703,3238600959,3238601215,3238601471,3238601727,3238601983,3238602239,3238602495,3238602751,3238604543,3238604799,3238605055,3238605311,3238605823,3238606847,3238607871,3238608895,3238621183,3238621439,3238621695,3238621951,3238622207,3238623231,3238623487,3238623743,3238623999,3238624255,3238624511,3238624767,3238625023,3238625279,3238630399,3238631423,3238632447,3238632959,3238633215,3238633471,3238641663,3238653951,3238655999,3238656255,3238656511,3238656767,3238657023,3238657535,3238657791,3238658047,3238675455,3238675711,3238682367,3238682623,3238723071,3238723327,3238795519,3238795775,3238827007,3238827519,3239051263,3239051519,3239051775,3239052031,3239053311,3239054335,3239055359,3239059455,3239060479,3239061503,3239062015,3239062271,3239062527,3239062783,3239063039,3239063295,3239063551,3239075839,3239076095,3239076351,3239076607,3239076863,3239077119,3239077375,3239077631,3239077887,3239078143,3239078399,3239078655,3239078911,3239079167,3239079423,3239079679,3239079935,3239088127,3239088383,3239088639,3239088895,3239089151,3239089407,3239089919,3239090175,3239090431,3239090687,3239090943,3239091199,3239091455,3239091711,3239091967,3239092223,3239104511,3239105279,3239105535,3239105791,3239106047,3239106559,3239106815,3239107071,3239107327,3239107583,3239107839,3239108095,3239109887,3239110143,3239110655,3239110911,3239111167,3239111423,3239111679,3239111935,3239112191,3239112447,3239112703,3239112959,3239113215,3239113471,3239113727,3239113983,3239114239,3239114495,3239114751,3239116543,3239116799,3239117055,3239117311,3239117823,3239118847,3239119871,3239120127,3239120383,3239120639,3239121663,3239121919,3239122943,3239123199,3239123455,3239123711,3239124991,3239125247,3239125503,3239125759,3239126015,3239126527,3239127039,3239127295,3239127551,3239127807,3239128063,3239128319,3239128575,3239128831,3239129087,3239130111,3239130367,3239130623,3239130879,3239131135,3239132159,3239133183,3239133439,3239133695,3239133951,3239134207,3239134463,3239134719,3239134975,3239135231,3239135487,3239135743,3239135999,3239136255,3239136511,3239136767,3239137023,3239137279,3239138303,3239138559,3239138815,3239139839,3239140095,3239140351,3239140863,3239141119,3239141375,3239145471,3239147519,3239148543,3239149567,3239160319,3239160575,3239160831,3239161087,3239161343,3239161599,3239161855,3239162367,3239162623,3239162879,3239163903,3239164159,3239164671,3239164927,3239165951,3239166207,3239166463,3239166719,3239166975,3239167231,3239167487,3239167743,3239167999,3239168255,3239168511,3239168767,3239169023,3239169279,3239169535,3239169791,3239170047,3239170303,3239170559,3239170815,3239171071,3239171327,3239171583,3239171839,3239172095,3239172607,3239172863,3239173119,3239173375,3239173631,3239173887,3239174143,3239174399,3239174655,3239174911,3239175167,3239175423,3239175679,3239175935,3239176191,3239180287,3239181311,3239181567,3239182335,3239230975,3239231487,3239232767,3239233023,3239264255,3239264767,3239266303,3239266815,3239267327,3239267839,3239268351,3239268863,3239269375,3239270399,3239270911,3239271423,3239271935,3239272447,3239272959,3239273215,3239273471,3239274495,3239275007,3239275263,3239275519,3239276031,3239276543,3239277055,3239277567,3239278079,3239278591,3239279103,3239280127,3239280639,3239281663,3239282687,3239283711,3239284735,3239285247,3239285503,3239285759,3239286783,3239287807,3239288831,3239289855,3239290879,3239291903,3239292927,3239293951,3239294975,3239295999,3239296255,3239297023,3239298047,3239299071,3239300095,3239300351,3239300607,3239300863,3239301119,3239302143,3239303167,3239304191,3239305215,3239305727,3239306239,3239307263,3239308287,3239309311,3239310335,3239311359,3239312383,3239313407,3239444735,3239444991,3239445759,3239446015,3239446271,3239446527,3239447551,3239447807,3239448063,3239448575,3239449599,3239449855,3239450111,3239450367,3239450623,3239451647,3239451903,3239452159,3239452415,3239452671,3239464959,3239465215,3239465471,3239465727,3239465983,3239466239,3239466495,3239467007,3239467263,3239467519,3239467775,3239468031,3239468287,3239468543,3239468799,3239469055,3239470079,3239470591,3239470847,3239471103,3239471615,3239471871,3239472127,3239472383,3239474943,3239475199,3239477247,3239478015,3239478271,3239479295,3239480319,3239480575,3239480831,3239481087,3239481343,3239481855,3239482367,3239483391,3239483647,3239483903,3239484415,3239485439,3239486719,3239486975,3239487487,3239487743,3239487999,3239488255,3239488511,3239488767,3239489023,3239489279,3239489535,3239501823,3239502847,3239503103,3239503359,3239503871,3239504895,3239506431,3239506687,3239506943,3239507199,3239507967,3239508223,3239508479,3239508735,3239508991,3239509247,3239509503,3239509759,3239510015,3239510527,3239511039,3239512063,3239514111,3239515135,3239516159,3239517183,3239518207,3239518463,3239521791,3239522303,3239522559,3239522815,3239523071,3239523327,3239523583,3239523839,3239524095,3239524351,3239524607,3239524863,3239525119,3239525375,3239525631,3239525887,3239526143,3239526399,3239538687,3239539199,3239539455,3239539711,3239539967,3239540223,3239540735,3239540991,3239541247,3239541503,3239541759,3239542015,3239542271,3239542783,3239543807,3239544063,3239544319,3239544575,3239544831,3239545087,3239545343,3239545855,3239546111,3239546367,3239546623,3239546879,3239547903,3239549951,3239550207,3239550463,3239550719,3239550975,3239551999,3239552511,3239552767,3239554047,3239554303,3239554559,3239554815,3239555071,3239556095,3239556351,3239556607,3239556863,3239557119,3239567359,3239567615,3239567871,3239568127,3239568383,3239568639,3239568895,3239571967,3239572223,3239572735,3239572991,3239573503,3239573759,3239574271,3239574783,3239575039,3239575295,3239575551,3239576063,3239576319,3239576575,3239577087,3239577343,3239577599,3239578623,3239578879,3239579135,3239579391,3239581695,3239581951,3239582207,3239582463,3239582719,3239582975,3239583231,3239583487,3239583743,3239584767,3239585023,3239585279,3239585791,3239586815,3239587839,3239591935,3239593983,3239600127,3239608319,3239624703,3239625727,3239626751,3239628799,3239629823,3239630847,3239631871,3239632895,3239633919,3239634943,3239635199,3239635455,3239635967,3239636991,3239638015,3239639039,3239639295,3239639551,3239639807,3239640063,3239641087,3239643135,3239645183,3239653375,3239657471,3239665663,3239666175,3239666687,3239667199,3239667711,3239668223,3239669247,3239670271,3239670783,3239671295,3239671807,3239672319,3239672831,3239673343,3239673855,3239682047,3239682559,3239683071,3239683583,3239684095,3239684607,3239686143,3239686655,3239687167,3239687679,3239688191,3239688703,3239689215,3239690239,3239690495,3239690751,3239691007,3239691263,3239691519,3239692031,3239692287,3239692543,3239692799,3239693055,3239693311,3239693567,3239693823,3239694079,3239694847,3239695359,3239695871,3239696383,3239696639,3239697407,3239697663,3239697919,3239698175,3239698431,3239704575,3239705599,3239705855,3239706111,3239706367,3239706879,3239707135,3239707391,3239707647,3239707903,3239708159,3239708415,3239708671,3239708927,3239709183,3239709439,3239709695,3239709951,3239710207,3239710463,3239710719,3239710975,3239711231,3239711743,3239711999,3239712511,3239712767,3239713023,3239713279,3239713535,3239713791,3239714303,3239714559,3239714815,3239735295,3239735807,3239736063,3239736319,3239737343,3239737599,3239737855,3239738111,3239739391,3239739647,3239739903,3239740159,3239740415,3239740671,3239740927,3239741183,3239741439,3239743999,3239744511,3239746559,3239759871,3239760127,3239760383,3239761407,3239761663,3239761919,3239762175,3239762431,3239762687,3239762943,3239763199,3239763455,3239763711,3239772159,3239772415,3239772671,3239773183,3239773439,3239773951,3239774207,3239774463,3239774719,3239774975,3239775231,3239775743,3239775999,3239776255,3239776767,3239778303,3239779327,3239780351,3239781375,3239781631,3239781887,3239782143,3239782399,3239782655,3239782911,3239783167,3239783423,3239783679,3239783935,3239784191,3239784447,3239788543,3239789055,3239789567,3239790079,3239790591,3239791103,3239791615,3239792127,3239792639,3239793151,3239793663,3239794175,3239794687,3239795199,3239795711,3239796223,3239796735,3239821311,3239821823,3239822079,3239822335,3239822847,3239823359,3239823871,3239824383,3239824895,3239825407,3239825919,3239826431,3239826943,3239827455,3239827967,3239828479,3239828991,3239830015,3239830527,3239831551,3239832575,3239834623,3239835135,3239836159,3239836671,3239837183,3239837695,3239837951,3239838207,3239838719,3239838975,3239839231,3239839487,3239839743,3239839999,3239840511,3239840767,3239841023,3239841279,3239841535,3239846911,3239847935,3239848447,3239848703,3239848959,3239849215,3239849471,3239849727,3239849983,3239850751,3239851007,3239851519,3239851775,3239852287,3239852543,3239853055,3239853311,3239853567,3239854079,3239859199,3239859455,3239859711,3239859967,3239860223,3239860479,3239860735,3239860991,3239861247,3239861503,3239861759,3239862015,3239862271,3239864831,3239865087,3239874559,3239874815,3239875071,3239875327,3239875583,3239875839,3239876095,3239876351,3239876607,3239876863,3239877119,3239877375,3239877631,3239877887,3239878143,3239878399,3239878655,3239882751,3239883007,3239883263,3239883519,3239883775,3239884031,3239884287,3239884543,3239884799,3239885055,3239885311,3239885567,3239885823,3239886079,3239886335,3239886591,3239886847,3239888895,3239889151,3239889407,3239889663,3239889919,3239890175,3239890431,3239890687,3239894015,3239895039,3239895295,3239895551,3239895807,3239896063,3239896319,3239896575,3239896831,3239897087,3239897343,3239897599,3239897855,3239898111,3239898367,3239898623,3239898879,3239899135,3239901695,3239901951,3239902207,3239902719,3239902975,3239903231,3239903487,3239903743,3239904255,3239904511,3239904767,3239905279,3239905535,3239905791,3239906303,3239906815,3239907071,3239907327,3239907583,3239908095,3239908351,3239908863,3239909375,3239909631,3239909887,3239910143,3239910399,3239911423,3239912447,3239912959,3239913215,3239913471,3239913983,3239914239,3239914495,3239915519,3239915775,3239916031,3239916287,3239916543,3239916799,3239917055,3239917311,3239917567,3239918591,3239918847,3239919615,3239927807,3239928575,3239928831,3239929855,3239930111,3239930367,3239930623,3239930879,3239931903,3239935999,3239936511,3239938815,3239939071,3239948287,3239948543,3239948799,3239949311,3239950335,3239950847,3239951103,3239951359,3239951615,3239951871,3239952383,3239954431,3239954687,3239954943,3239955199,3239955711,3239955967,3239956223,3239956479,3239959551,3239959807,3239960063,3239960319,3239960575,3239961087,3239961343,3239961599,3239962111,3239962623,3239966719,3239967231,3239968255,3239968767,3239969023,3239969535,3239970047,3239970303,3239970815,3239971839,3239972863,3239974399,3239975935,3239976191,3239976447,3239976703,3239976959,3239977727,3239977983,3239978751,3239979007,3239979263,3239979519,3239991295,3239991551,3239991807,3239992319,3239992575,3239992831,3239993343,3239994367,3239994623,3239994879,3239995135,3239995391,3239996415,3239996671,3239996927,3239997183,3239997439,3239997695,3239997951,3239998463,3239998719,3239998975,3239999231,3239999487,3240000511,3240001023,3240001535,3240002047,3240003071,3240003327,3240004863,3240005119,3240005375,3240005631,3240009727,3240009983,3240010239,3240010495,3240010751,3240011007,3240011519,3240011775,3240026111,3240027135,3240028159,3240029183,3240030207,3240030463,3240030719,3240031743,3240032255,3240033279,3240033535,3240033791,3240034303,3240034559,3240035327,3240035583,3240035839,3240036095,3240036351,3240037375,3240037887,3240038143,3240038399,3240038911,3240041727,3240042239,3240043519,3240044543,3240044799,3240045055,3240045311,3240045567,3240046591,3240047615,3240048639,3240049663,3240050175,3240050431,3240050687,3240051711,3240052735,3240052991,3240053247,3240053503,3240053759,3240054783,3240058879,3240059903,3240060927,3240061951,3240062975,3240063999,3240065023,3240066047,3240066559,3240066815,3240067071,3240083455,3240085503,3240087551,3240087807,3240088063,3240088575,3240089087,3240089599,3240089855,3240090111,3240090623,3240090879,3240091135,3240091647,3240097791,3240098815,3240099327,3240099839,3240100351,3240100607,3240100863,3240101375,3240101887,3240102143,3240102399,3240102655,3240102911,3240103935,3240104191,3240104703,3240104959,3240105215,3240105471,3240105727,3240105983,3240107007,3240107519,3240109055,3240109567,3240110079,3240110335,3240112639,3240112895,3240113151,3240113407,3240113663,3240113919,3240114175,3240114431,3240114687,3240114943,3240115199,3240116223,3240116479,3240116735,3240117247,3240118271,3240120319,3240120831,3240121343,3240121599,3240121855,3240122111,3240122367,3240123391,3240123647,3240123903,3240124159,3240124415,3240125439,3240125695,3240125951,3240126207,3240126463,3240126975,3240127999,3240128255,3240128511,3240129535,3240130047,3240132095,3240132351,3240132607,3240133631,3240134655,3240135679,3240136703,3240137727,3240138751,3240139775,3240140799,3240141311,3240141567,3240141823,3240142079,3240142335,3240142591,3240142847,3240143871,3240144895,3240145151,3240145919,3240146943,3240147967,3240148991,3240150015,3240152063,3240153087,3240154111,3240155135,3240156159,3240157183,3240157439,3240157695,3240158207,3240159231,3240160255,3240162303,3240162559,3240162815,3240163327,3240163583,3240163839,3240165375,3240165887,3240166399,3240166911,3240167423,3240167935,3240168447,3240168959,3240169471,3240169983,3240170495,3240171007,3240171519,3240172031,3240172543,3240172799,3240173055,3240173567,3240174079,3240174591,3240175103,3240175615,3240176127,3240176639,3240177151,3240177663,3240177919,3240178175,3240179199,3240179711,3240180223,3240180735,3240181247,3240181759,3240182271,3240182527,3240183295,3240183807,3240184319,3240184831,3240185343,3240185855,3240187391,3240187647,3240187903,3240188415,3240188927,3240189439,3240189951,3240190207,3240190463,3240190975,3240191487,3240191999,3240192255,3240192511,3240193023,3240193535,3240194047,3240194559,3240195071,3240195583,3240196095,3240196351,3240196607,3240197375,3240197631,3240198143,3240198655,3240199167,3240199679,3240200191,3240200703,3240201215,3240201727,3240202239,3240202751,3240203263,3240203775,3240204287,3240204799,3240205311,3240205567,3240205823,3240206335,3240206847,3240207359,3240207871,3240208127,3240208383,3240208895,3240209407,3240209919,3240210943,3240211455,3240211967,3240212479,3240212991,3240213503,3240213759,3240214015,3240214527,3240215039,3240215551,3240216063,3240216575,3240217087,3240217599,3240217855,3240218111,3240218623,3240218879,3240219135,3240219647,3240220159,3240220671,3240221183,3240221695,3240221951,3240222207,3240222719,3240223231,3240223743,3240223999,3240224255,3240225279,3240225791,3240226303,3240226815,3240227327,3240227839,3240228351,3240228863,3240229375,3240229887,3240230399,3240230911,3240231935,3240232959,3240235007,3240236031,3240237055,3240239103,3240240127,3240241151,3240242175,3240243199,3240243455,3240243711,3240244223,3240245247,3240246271,3240247295,3240248319,3240249343,3240250367,3240250623,3240250879,3240251135,3240251391,3240251647,3240251903,3240252159,3240252415,3240253439,3240254463,3240256511,3240257535,3240258559,3240259583,3240260607,3240262655,3240263679,3240264191,3240264703,3240265215,3240265727,3240266239,3240266751,3240267263,3240267775,3240268031,3240268287,3240269311,3240269823,3240270335,3240270847,3240271359,3240271871,3240272383,3240272895,3240273407,3240273919,3240274431,3240274943,3240275455,3240275967,3240276479,3240277503,3240278015,3240278527,3240279039,3240279295,3240279551,3240280063,3240280319,3240280575,3240280831,3240281087,3240281343,3240281599,3240282111,3240282367,3240282623,3240282879,3240283135,3240283391,3240283647,3240283903,3240284159,3240285183,3240286207,3240287231,3240288255,3240288511,3240288767,3240289023,3240289279,3240289791,3240290303,3240291327,3240292351,3240293375,3240294399,3240296447,3240296703,3240296959,3240297471,3240298495,3240300031,3240300543,3240301055,3240301311,3240301567,3240302591,3240302847,3240303103,3240303615,3240304639,3240305663,3240305919,3240306175,3240306687,3240306943,3240307199,3240307711,3240308223,3240308479,3240308735,3240309759,3240310783,3240311807,3240312319,3240312575,3240312831,3240316927,3240317951,3240318463,3240318719,3240318975,3240319999,3240321023,3240321535,3240321791,3240322047,3240322303,3240322559,3240324095,3240324351,3240324607,3240324863,3240325119,3240333567,3240333823,3240334335,3240335359,3240336383,3240336639,3240347135,3240347647,3240349695,3240351999,3240352255,3240352767,3240353791,3240354047,3240354303,3240354559,3240354815,3240355071,3240355327,3240355583,3240355839,3240361983,3240362239,3240362495,3240362751,3240363007,3240370175,3240370431,3240370943,3240371199,3240371455,3240371711,3240371967,3240372223,3240372479,3240372735,3240372991,3240373247,3240373503,3240373759,3240374015,3240374271,3240375295,3240376319,3240377343,3240377599,3240378367,3240380415,3240380671,3240380927,3240381183,3240381439,3240381695,3240383487,3240383999,3240384255,3240384511,3240384767,3240385023,3240385279,3240385535,3240386559,3240387583,3240388607,3240388863,3240389119,3240389375,3240389631,3240390655,3240391679,3240391935,3240392191,3240392447,3240392703,3240393727,3240394751,3240395775,3240396031,3240396287,3240396799,3240398847,3240399871,3240400895,3240403455,3240403967,3240404991,3240406015,3240406271,3240406527,3240407039,3240407295,3240407551,3240407807,3240408063,3240408319,3240408575,3240408831,3240409343,3240409599,3240409855,3240410111,3240410367,3240410623,3240410879,3240411135,3240413183,3240413695,3240413951,3240414207,3240417279,3240418303,3240419327,3240419839,3240420095,3240420351,3240420607,3240420863,3240421119,3240421375,3240422399,3240422655,3240422911,3240423167,3240423423,3240435711,3240435967,3240436223,3240436479,3240436735,3240436991,3240437503,3240437759,3240438015,3240438271,3240438527,3240438783,3240439039,3240439295,3240439551,3240439807,3240440831,3240442367,3240442879,3240444927,3240445439,3240445695,3240445951,3240446975,3240447999,3240449023,3240450047,3240455167,3240456191,3240460287,3240461055,3240461567,3240461823,3240462079,3240462335,3240462591,3240462847,3240463103,3240463359,3240463615,3240463871,3240464127,3240464383,3240464639,3240464895,3240465151,3240465407,3240465919,3240466175,3240466687,3240466943,3240467199,3240467455,3240467711,3240467967,3240468223,3240468479,3240476671,3240477695,3240477951,3240478207,3240478719,3240479743,3240480767,3240481791,3240482815,3240483839,3240484863,3240485119,3240485375,3240485887,3240486143,3240486399,3240486911,3240487679,3240487935,3240488191,3240488447,3240488703,3240488959,3240491007,3240491263,3240491519,3240491775,3240492031,3240492799,3240493055,3240501247,3240501503,3240501759,3240502015,3240502271,3240502783,3240504319,3240505343,3240505599,3240505855,3240506367,3240506623,3240506879,3240507391,3240525823,3240526847,3240527871,3240528127,3240528383,3240528639,3240528895,3240529407,3240529919,3240530943,3240531967,3240532223,3240532479,3240532735,3240532991,3240534015,3240550399,3240551423,3240552191,3240552447,3240553471,3240554495,3240555519,3240555775,3240556031,3240556287,3240556543,3240556799,3240557055,3240557311,3240557567,3240557823,3240558335,3240558591,3240559615,3240560127,3240560639,3240560895,3240561151,3240561407,3240561663,3240562687,3240575487,3240575743,3240576255,3240576511,3240576767,3240577023,3240577279,3240577535,3240577791,3240578559,3240578815,3240579071,3240582143,3240583167,3240587263,3240587519,3240587775,3240588031,3240588287,3240588543,3240588799,3240589055,3240589311,3240593407,3240593663,3240594175,3240594431,3240594943,3240595199,3240595455,3240599551,3240600575,3240601599,3240602623,3240605695,3240606719,3240607743,3240607999,3240608255,3240608511,3240608767,3240609791,3240611839,3240612095,3240612351,3240612863,3240613119,3240613375,3240613631,3240613887,3240614911,3240615935,3240621055,3240621567,3240621823,3240622079,3240622591,3240622847,3240624127,3240689663,3240690175,3240690687,3240691199,3240691711,3240692735,3240693247,3240693759,3240695807,3240697855,3240698111,3240698367,3240698623,3240699135,3240699391,3240699647,3240699903,3240700159,3240700415,3240700671,3240700927,3240701183,3240701439,3240701695,3240701951,3240702975,3240703999,3240704255,3240704511,3240704767,3240705023,3240706047,3240707071,3240707583,3240707839,3240709119,3240710143,3240710399,3240710655,3240710911,3240711167,3240711679,3240711935,3240712191,3240712447,3240712703,3240712959,3240713471,3240713727,3240713983,3240714239,3240716287,3240718335,3240718847,3240719103,3240719359,3240719871,3240720383,3240720895,3240721407,3240721919,3240722431,3240722687,3240722943,3240723455,3240724479,3240724991,3240725503,3240726527,3240727039,3240727551,3240728063,3240728575,3240729087,3240729599,3240730111,3240730623,3240731647,3240732671,3240733695,3240734719,3240735743,3240736255,3240736767,3240737791,3240738815,3240739071,3240739327,3240739583,3240739839,3240740095,3240740351,3240740607,3240740863,3240741119,3240741375,3240741631,3240741887,3240742143,3240742399,3240742655,3240742911,3240743423,3240743679,3240743935,3240744447,3240744959,3240745215,3240745471,3240745983,3240746495,3240747007,3240747263,3240747519,3240747775,3240748031,3240748287,3240748543,3240749055,3240749311,3240749567,3240749823,3240750335,3240750591,3240750847,3240751103,3240752127,3240752383,3240752639,3240752895,3240753151,3240753407,3240753663,3240753919,3240754175,3240755199,3240755455,3240755711,3240756223,3240757247,3240758015,3240758527,3240759039,3240759295,3240760319,3240760575,3240760831,3240761087,3240761343,3240762111,3240762367,3240763391,3240763903,3240764159,3240764415,3240764671,3240764927,3240765183,3240765439,3240765951,3240767487,3240767999,3240768255,3240768511,3240770559,3240771583,3240779775,3240780031,3240780287,3240780799,3240781823,3240782847,3240783871,3240784127,3240785407,3240785663,3240785919,3240786175,3240786431,3240787967,3240788991,3240789247,3240789759,3240790015,3240790271,3240790527,3240791551,3240791807,3240792063,3240792319,3240792575,3240792831,3240793087,3240793343,3240793599,3240794111,3240794367,3240794879,3240795135,3240795391,3240795647,3240795903,3240796159,3240809215,3240809471,3240809727,3240809983,3240810239,3240810495,3240810751,3240811007,3240811263,3240811519,3240811775,3240812031,3240812287,3240812543,3240813567,3240814591,3240816639,3240817663,3240818687,3240820735,3240820991,3240822783,3240823807,3240824319,3240824575,3240825855,3240826879,3240827135,3240827391,3240827647,3240827903,3240828159,3240828415,3240829439,3240830207,3240830463,3240830975,3240831231,3240831487,3240831743,3240831999,3240837119,3240838143,3240838399,3240838911,3240839167,3240839423,3240839679,3240840191,3240840447,3240840703,3240841215,3240843263,3240843519,3240843775,3240844031,3240844287,3240844543,3240844799,3240845055,3240845311,3240845823,3240846335,3240846591,3240846847,3240847359,3240847615,3240847871,3240848895,3240849151,3240850943,3240851199,3240851455,3240852735,3240852991,3240853247,3240853503,3240854527,3240855039,3240855551,3240855807,3240856063,3240856319,3240856575,3240856831,3240857087,3240857343,3240857599,3240857855,3240858111,3240858367,3240858623,3240858879,3240859135,3240859391,3240859647,3240861183,3240861439,3240861695,3240866815,3240867071,3240867327,3240867583,3240867839,3240874239,3240874495,3240875007,3240875519,3240876031,3240876543,3240877055,3240877567,3240879103,3240880127,3240881151,3240882175,3240883199,3240884223,3240884735,3240885247,3240886271,3241017343,3241017599,3241017855,3241018111,3241018367,3241022463,3241023487,3241024511,3241025535,3241026559,3241027583,3241029119,3241029375,3241029631,3241031679,3241032191,3241032703,3241032959,3241033215,3241033727,3241033983,3241034239,3241034495,3241034751,3241035007,3241035263,3241035519,3241035775,3241036031,3241036287,3241036543,3241036799,3241037055,3241037311,3241037823,3241038079,3241038335,3241038591,3241039103,3241039359,3241039615,3241039871,3241040127,3241040383,3241040639,3241040895,3241061375,3241062399,3241063423,3241063679,3241063935,3241064191,3241064703,3241064959,3241065471,3241066495,3241067519,3241068543,3241068799,3241069311,3241069567,3241069823,3241070079,3241070335,3241070847,3241071103,3241071359,3241071615,3241071871,3241072127,3241072383,3241072639,3241073407,3241073663,3241073919,3241074175,3241076735,3241077247,3241077759,3241078015,3241078271,3241078527,3241078783,3241079039,3241079295,3241079551,3241079807,3241080831,3241081343,3241081855,3241082111,3241082367,3241082879,3241083135,3241091071,3241091839,3241092095,3241093119,3241093375,3241093631,3241094143,3241095167,3241096191,3241097215,3241098239,3241098751,3241099007,3241099263,3241100287,3241100543,3241100799,3241101055,3241101311,3241101567,3241101823,3241102079,3241102335,3241102591,3241102847,3241103103,3241103359,3241103615,3241103871,3241104127,3241104383,3241104639,3241104895,3241105151,3241105407,3241108223,3241108735,3241108991,3241109247,3241117695,3241117951,3241118207,3241118463,3241118719,3241118975,3241119231,3241119487,3241119743,3241119999,3241120255,3241120511,3241120767,3241121023,3241121279,3241121535,3241121791,3241122047,3241122303,3241122559,3241123327,3241124095,3241124351,3241124607,3241124863,3241125119,3241125375,3241125631,3241125887,3241129983,3241130239,3241130495,3241130751,3241131007,3241131263,3241131519,3241131775,3241132031,3241132287,3241132543,3241142783,3241143295,3241144319,3241145343,3241145855,3241146111,3241146367,3241146623,3241146879,3241147903,3241148159,3241148415,3241476095,3241476351,3241476607,3241476863,3241477375,3241477631,3241477887,3241478143,3241478655,3241478911,3241479167,3241479423,3241481727,3241481983,3241482239,3241484799,3241485055,3241485311,3241486335,3241486591,3241487615,3241496575,3241496831,3241497087,3241497343,3241497599,3241497855,3241498111,3241498367,3241498623,3241498879,3241499135,3241499647,3241500159,3241500671,3241501183,3241501439,3241502463,3241502719,3241503231,3241503487,3241503999,3241505023,3241508351,3241508863,3241515775,3241516031,3241517055,3241518079,3241519103,3241519359,3241519615,3241538815,3241539071,3241539583,3241539839,3241540095,3241540607,3241541119,3241541375,3241541631,3241672703,3241672959,3241673215,3241673471,3241673727,3241674751,3241675007,3241675263,3241675519,3241675775,3241676287,3241676543,3241676799,3241677823,3241678079,3241678335,3241678591,3241678847,3241680895,3241681663,3241681919,3241682943,3241683199,3241683455,3241683967,3241684223,3241684479,3241686527,3241687551,3241687807,3241688063,3241688319,3241688575,3241689087,3241690111,3241690367,3241690623,3241690879,3241691135,3241692159,3241693183,3241699327,3241699839,3241700095,3241700351,3241701375,3241701631,3241701887,3241702399,3241702911,3241703167,3241703423,3241704447,3241704959,3241705215,3241705727,3241705983,3241706495,3241706751,3241707007,3241707263,3241707519,3241709567,3241709823,3241710079,3241710335,3241711615,3241712639,3241712895,3241713151,3241713663,3241714175,3241714687,3241715711,3241716991,3241717759,3241718783,3241719807,3241720063,3241720575,3241720831,3241721087,3241721343,3241721599,3241721855,3241722111,3241722367,3241722879,3241723903,3241724415,3241724671,3241724927,3241725951,3241726207,3241726975,3241727999,3241728255,3241730047,3241730303,3241730559,3241731071,3241733631,3241733887,3241734143,3241734399,3241736191,3241737215,3241737471,3241737727,3241737983,3241738239,3241739263,3241740287,3241740543,3241740799,3241741823,3241742335,3241742847,3241743103,3241743359,3241743615,3241743871,3241744383,3241745151,3241745407,3241746431,3241746687,3241746943,3241747199,3241747455,3241748479,3241748735,3241748991,3241750015,3241750527,3241751039,3241751551,3241752575,3241752831,3241753087,3241754623,3241754879,3241755135,3241756671,3241757951,3241758719,3241759743,3241760767,3241761023,3241761279,3241761535,3241762047,3241762303,3241762815,3241763071,3241763327,3241763839,3241764863,3241765119,3241765887,3241766143,3241770751,3241771007,3241773055,3241773311,3241773567,3241773823,3241774079,3241774335,3241774591,3241775103,3241775359,3241775615,3241776127,3241777151,3241778943,3241779199,3241780479,3241780735,3241780991,3241781503,3241781759,3241782271,3241782527,3241782783,3241783295,3241784575,3241785343,3241789439,3241789695,3241789951,3241790463,3241790975,3241791487,3241792511,3241793535,3241794047,3241795327,3241795839,3241796607,3241796863,3241797119,3241797375,3241797631,3241801727,3241801983,3241803263,3241803775,3241804031,3241812991,3241814015,3241814527,3241815039,3241820159,3241821695,3241822207,3241824255,3241826303,3241827327,3241828351,3241829375,3241830655,3241830911,3241831167,3241831423,3241832447,3241833471,3241833727,3241833983,3241834239,3241834495,3241835007,3241835263,3241835519,3241836543,3241837567,3241838591,3241840639,3241840895,3241841407,3241841663,3241842175,3241843199,3241843455,3241843711,3241845759,3241846783,3241847551,3241847807,3241848063,3241848319,3241848831,3241849343,3241849599,3241849855,3241850879,3241851903,3241852927,3241854463,3241854975,3241855999,3241857279,3241857535,3241859071,3241861119,3241863167,3241863423,3241863679,3241863935,3241864191,3241864447,3241864703,3241864959,3241865215,3241865471,3241865727,3241865983,3241866239,3241866751,3241867007,3241867775,3241868031,3241868287,3241868543,3241868799,3241869055,3241869311,3241934847,3242196991,3242393599,3242442751,3242446847,3242459135,3242467327,3242475519,3242483711,3242524671,3242590207,3242608383,3242608639,3242608895,3242614271,3242614783,3242615295,3242615551,3242616319,3242616575,3242617599,3242617855,3242621951,3242622207,3242622463,3242622975,3242655743,3242721279,3242741503,3242741759,3242840063,3242840319,3242850815,3242851071,3242852351,3242911231,3242911743,3242917887,3242950655,3242983423,3243048959,3243114495,3243245567,3243376639,3243384831,3243388927,3243393023,3243401215,3243402239,3243403263,3243404287,3243417599,3243425791,3243433983,3243442175,3243507711,3243507967,3243508223,3243508735,3243509247,3243509503,3243509759,3243510015,3243510271,3243510527,3243510783,3243511807,3243512063,3243512319,3243512575,3243512831,3243513087,3243513343,3243513855,3243514111,3243514367,3243514623,3243514879,3243515135,3243515391,3243515647,3243515903,3243519999,3243520511,3243520767,3243521023,3243521279,3243521535,3243521791,3243524095,3243524351,3243524607,3243524863,3243525119,3243525375,3243525631,3243525887,3243526143,3243526399,3243526655,3243526911,3243527167,3243527679,3243527935,3243528191,3243529215,3243529471,3243529727,3243529983,3243530239,3243530495,3243530751,3243531007,3243531263,3243531775,3243532031,3243532287,3243533311,3243533567,3243533823,3243534079,3243534335,3243535359,3243535615,3243535871,3243536127,3243536383,3243536639,3243536895,3243537407,3243537919,3243538431,3243539455,3243540479,3243540991,3243541503,3243541759,3243542015,3243542271,3243542527,3243543551,3243544063,3243544319,3243544575,3243552767,3243553023,3243553279,3243553535,3243553791,3243554047,3243554303,3243554559,3243554815,3243555071,3243555327,3243555583,3243555839,3243556863,3243565055,3243569151,3243570175,3243570431,3243570687,3243570943,3243571199,3243571711,3243571967,3243572223,3243572479,3243572991,3243573247,3243704319,3243769855,3243900927,3243966463,3243966719,3243966975,3243967487,3243968511,3243969023,3243969279,3243969535,3243970047,3243970559,3243974655,3243975679,3243975935,3243978751,3243982847,3243991039,3243999231,3244031999,3244034559,3244035071,3244097535,3244098559,3244099583,3244100607,3244102655,3244103679,3244104703,3244105727,3244107775,3244108799,3244109823,3244110847,3244111615,3244111871,3244112895,3244113407,3244113663,3244113919,3244114943,3244115967,3244116991,3244118015,3244120063,3244122111,3244123135,3244124159,3244125183,3244126207,3244127231,3244128255,3244129279,3244130303,3244131327,3244133375,3244133887,3244134399,3244135423,3244136447,3244136703,3244136959,3244137215,3244137471,3244138495,3244139519,3244140543,3244141567,3244142591,3244143615,3244143871,3244144127,3244144383,3244144639,3244146687,3244147711,3244149759,3244150783,3244151807,3244152831,3244153855,3244154879,3244155903,3244156927,3244158975,3244159999,3244161023,3244162047,3244163071,3244228607,3244261375,3244277759,3244294143,3244354047,3244354559,3244354815,3244529919,3244530175,3244554495,3244554751,3244664575,3244664831,3244667903,3244668415,3244706303,3244706559,3244740607,3244740863,3244763135,3244763391,3244794367,3244794879,3244795135,3244802559,3244802815,3244803839,3244804095,3244813311,3244813823,3244818431,3244818687,3244818943,3244819199,3244819455,3244819711,3244819967,3244820223,3244820479,3244820735,3244820991,3244821247,3244821503,3244821759,3244822015,3244822271,3244822527,3244822783,3244823039,3244823295,3244823551,3244823807,3244824063,3244824319,3244824575,3244824831,3244825087,3244825343,3244825855,3244826111,3244826367,3244826623,3244826879,3244827135,3244827391,3244827647,3244827903,3244828159,3244828415,3244828671,3244828927,3244829183,3244829439,3244829695,3244829951,3244830463,3244830719,3244830975,3244831231,3244831487,3244831743,3244831999,3244832255,3244832511,3244832767,3244833023,3244833279,3244833535,3244833791,3244834047,3244834303,3244834559,3244834815,3244835071,3244835327,3244835583,3244835839,3244836095,3244836607,3244836863,3244837119,3244837375,3244837887,3244838143,3244838399,3244838655,3244838911,3244839167,3244839423,3244839679,3244839935,3244840191,3244840447,3244840703,3244840959,3244841215,3244841471,3244841727,3244842239,3244842751,3244843007,3244843263,3244843519,3244843775,3244844031,3244844287,3244844543,3244844799,3244845055,3244845311,3244845567,3244845823,3244846335,3244846591,3244846847,3244847103,3244847359,3244847615,3244847871,3244848127,3244848383,3244848639,3244848895,3244849151,3244849407,3244849663,3244849919,3244850175,3244850431,3244850687,3244850943,3244851455,3244851711,3244851967,3244852223,3244852479,3244852735,3244852991,3244853247,3244853503,3244853759,3244854015,3244854271,3244854527,3244854783,3244855039,3244855295,3244855551,3244855807,3244856063,3244856319,3244856575,3244856831,3244857087,3244857343,3244857599,3244857855,3244858111,3244858367,3244858623,3244858879,3244859135,3244859391,3244859647,3244859903,3244860159,3244860415,3244860671,3244860927,3244861183,3244861439,3244861695,3244861951,3244862207,3244862463,3244862719,3244862975,3244863231,3244863487,3244863743,3244863999,3244864255,3244864511,3244864767,3244865023,3244865279,3244865535,3244865791,3244866047,3244866303,3244866559,3244866815,3244867071,3244867327,3244867583,3244868095,3244868351,3244868607,3244868863,3244869375,3244869631,3244869887,3244870143,3244870399,3244870655,3244870911,3244871167,3244871423,3244871679,3244872447,3244872703,3244872959,3244873215,3244873471,3244873727,3244873983,3244874239,3244874495,3244874751,3244875007,3244875263,3244875519,3244875775,3244876799,3244877055,3244877311,3244877567,3244877823,3244878079,3244878335,3244878591,3244878847,3244879103,3244879359,3244879615,3244879871,3244880127,3244880383,3244880639,3244880895,3244881151,3244881407,3244881663,3244881919,3244882175,3244882431,3244882687,3244882943,3244883199,3244883455,3244883711,3244883967,3244884223,3244884479,3244884735,3244884991,3244885247,3244885503,3244885759,3244886015,3244886271,3244886527,3244886783,3244887039,3244887295,3244887551,3244887807,3244888063,3244888319,3244888575,3244888831,3244889087,3244889343,3244889599,3244889855,3244890111,3244890367,3244890623,3244890879,3244891135,3244891391,3244891647,3244892159,3244892415,3244892671,3244892927,3244893183,3244893439,3244893695,3244893951,3244894463,3244894719,3244894975,3244895231,3244895487,3244895743,3244895999,3244896511,3244896767,3244897023,3244897279,3244897535,3244897791,3244898047,3244898303,3244898559,3244898815,3244899071,3244899327,3244899583,3244899839,3244900095,3244900351,3244900607,3244900863,3244901119,3244901375,3244901631,3244901887,3244902143,3244902399,3244902655,3244902911,3244903167,3244903423,3244903679,3244903935,3244904191,3244904447,3244904703,3244904959,3244905215,3244905471,3244905727,3244905983,3244906239,3244906495,3244906751,3244907007,3244907263,3244907519,3244907775,3244908287,3244908543,3244909055,3244909311,3244909567,3244909823,3244910079,3244910335,3244910591,3244910847,3244911103,3244911359,3244911615,3244911871,3244912127,3244912383,3244912639,3244912895,3244913151,3244913407,3244913663,3244913919,3244914175,3244914431,3244914687,3244914943,3244915199,3244915455,3244915711,3244915967,3244916223,3244916479,3244916735,3244916991,3244917247,3244917503,3244918015,3244918271,3244918527,3244918783,3244919039,3244919295,3244919551,3244919807,3244920063,3244920319,3244920575,3244920831,3244921087,3244921343,3244921599,3244921855,3244922111,3244922367,3244922623,3244922879,3244923135,3244923391,3244923647,3244923903,3244924159,3244924927,3244925183,3244925439,3244925695,3244925951,3244926207,3244926463,3244926719,3244926975,3244927231,3244927487,3244927743,3244927999,3244928255,3244928511,3244928767,3244929023,3244929279,3244929535,3244929791,3244930047,3244930303,3244930559,3244930815,3244931071,3244931327,3244931583,3244931839,3244932095,3244932607,3244932863,3244933375,3244933631,3244933887,3244934143,3244934399,3244934655,3244934911,3244935167,3244935423,3244935679,3244935935,3244936191,3244936959,3244937215,3244937471,3244937727,3244937983,3244938239,3244938495,3244938751,3244939007,3244939263,3244939519,3244939775,3244940031,3244940287,3244940543,3244940799,3244941055,3244941311,3244941567,3244941823,3244942079,3244942335,3244942591,3244942847,3244943103,3244943359,3244943615,3244943871,3244944127,3244944639,3244944895,3244945151,3244945407,3244945663,3244945919,3244946175,3244946431,3244946943,3244947455,3244947711,3244947967,3244948223,3244948479,3244948735,3244948991,3244949247,3244951551,3244952575,3244953599,3244954623,3244957695,3244958719,3244959743,3244960767,3244961791,3244962815,3244963839,3244966911,3244968959,3244969983,3244971007,3244972031,3244974079,3244974335,3244974591,3244975103,3244977151,3244979199,3244980223,3244981247,3244982271,3244983295,3244984319,3244985343,3244986367,3244987391,3244987647,3244987903,3244988159,3244988415,3244990463,3244991487,3244992511,3244994559,3244995583,3244996607,3244997631,3244997887,3244998143,3244998655,3244999679,3245000191,3245000447,3245000703,3245001727,3245002751,3245003263,3245003519,3245003775,3245004799,3245005823,3245006847,3245007871,3245008895,3245010431,3245010687,3245010943,3245011967,3245012991,3245013247,3245013503,3245014015,3245015039,3245016063,3245017087,3245018111,3245018367,3245018623,3245018879,3245019135,3245020159,3245020415,3245020671,3245020927,3245021183,3245022207,3245023231,3245024255,3245025279,3245025535,3245026303,3245026559,3245026815,3245027071,3245027327,3245027583,3245027839,3245028095,3245028351,3245029375,3245030399,3245031423,3245031679,3245031935,3245032191,3245032447,3245033471,3245034495,3245035519,3245036543,3245037567,3245038591,3245039615,3245040639,3245041663,3245042943,3245043199,3245044735,3245045759,3245046783,3245047807,3245050367,3245050623,3245050879,3245051903,3245052927,3245054975,3245055999,3245057023,3245058047,3245061119,3245062143,3245063167,3245065215,3245066239,3245067263,3245068287,3245069311,3245070591,3245070847,3245071359,3245072383,3245073407,3245076479,3245077503,3245077759,3245078015,3245078271,3245078527,3245079551,3245080575,3245081343,3245081599,3245082623,3245084927,3245085183,3245085439,3245085695,3245085951,3245086207,3245086463,3245086719,3245086975,3245087487,3245087743,3245087999,3245088255,3245088511,3245088767,3245089279,3245089791,3245090303,3245090815,3245091327,3245091839,3245092351,3245092863,3245093887,3245094911,3245095167,3245095423,3245095679,3245095935,3245096959,3245097983,3245098495,3245099007,3245103103,3245103359,3245103615,3245103871,3245104127,3245104639,3245104895,3245105151,3245105663,3245106175,3245106687,3245106943,3245107199,3245107455,3245107711,3245108735,3245109247,3245109503,3245109759,3245110015,3245110271,3245111295,3245112319,3245113343,3245113855,3245114111,3245114367,3245114879,3245115391,3245115903,3245116415,3245116927,3245117439,3245118463,3245119487,3245119999,3245120255,3245120511,3245121535,3245122047,3245122559,3245123071,3245123583,3245124095,3245124351,3245124607,3245125119,3245125631,3245125887,3245126143,3245126399,3245126655,3245126911,3245127167,3245127679,3245127935,3245128191,3245128447,3245128703,3245129215,3245129471,3245129983,3245130239,3245130495,3245130751,3245131007,3245131263,3245131519,3245131775,3245132031,3245132287,3245132543,3245132799,3245133311,3245133823,3245134079,3245134335,3245134591,3245134847,3245135103,3245135359,3245135615,3245135871,3245136127,3245136383,3245136639,3245137151,3245137407,3245137663,3245137919,3245138431,3245138943,3245139455,3245139967,3245140479,3245140991,3245141503,3245141759,3245142015,3245142527,3245143039,3245144063,3245145087,3245146111,3245147135,3245148159,3245149183,3245150207,3245154303,3245158399,3245158911,3245159423,3245159935,3245160447,3245160703,3245160959,3245161471,3245161727,3245161983,3245162239,3245162495,3245163007,3245163519,3245164031,3245164543,3245165055,3245165567,3245166591,3245166847,3245167103,3245167359,3245167615,3245167871,3245168127,3245168383,3245168639,3245168895,3245169151,3245169407,3245169919,3245170175,3245170431,3245170687,3245171711,3245172735,3245173759,3245174783,3245175039,3245175295,3245175551,3245175807,3245176063,3245176319,3245176831,3245177087,3245177343,3245177599,3245177855,3245178111,3245178623,3245178879,3245179391,3245179903,3245180415,3245180927,3245181183,3245181439,3245181951,3245182463,3245182975,3245183999,3245187071,3245188095,3245189119,3245190143,3245191167,3245193215,3245193727,3245193983,3245195263,3245195519,3245195775,3245197311,3245199359,3245199615,3245199871,3245200127,3245200383,3245200639,3245200895,3245201151,3245201407,3245201663,3245201919,3245202175,3245202431,3245202687,3245202943,3245203455,3245203711,3245203967,3245204223,3245204479,3245204735,3245204991,3245205247,3245205503,3245205759,3245206015,3245206271,3245206527,3245207295,3245207551,3245208063,3245208575,3245209087,3245209599,3245210111,3245210623,3245211135,3245211647,3245212671,3245213183,3245213695,3245214207,3245214719,3245215231,3245215743,3245217791,3245218815,3245219839,3245221887,3245223935,3245225983,3245228031,3245229055,3245230079,3245231103,3245232127,3245232383,3245232639,3245232895,3245233151,3245233407,3245233663,3245233919,3245234175,3245234431,3245234687,3245234943,3245235199,3245235455,3245235711,3245235967,3245236223,3245237247,3245237759,3245238271,3245238783,3245239295,3245240319,3245241343,3245242367,3245243391,3245244415,3245244671,3245244927,3245245183,3245245439,3245245695,3245245951,3245246463,3245246719,3245246975,3245247231,3245247487,3245247743,3245247999,3245248255,3245248511,3245248767,3245249023,3245249279,3245249791,3245250047,3245250303,3245250559,3245250815,3245251071,3245251327,3245251583,3245251839,3245252351,3245252607,3245252863,3245253119,3245253631,3245254143,3245254655,3245255167,3245255679,3245256191,3245256703,3245257215,3245257727,3245258239,3245258751,3245259263,3245259775,3245260031,3245260287,3245260799,3245261823,3245262847,3245263103,3245263871,3245264895,3245266943,3245268991,3245270015,3245271039,3245272063,3245273087,3245275135,3245277183,3245277695,3245278207,3245278719,3245279743,3245280255,3245280767,3245281279,3245282303,3245282815,3245283327,3245283839,3245284351,3245284607,3245284863,3245285375,3245285631,3245285887,3245286143,3245286399,3245287423,3245287679,3245287935,3245288191,3245288703,3245288959,3245289215,3245289471,3245290495,3245291519,3245292543,3245292799,3245293567,3245294079,3245294591,3245295103,3245295615,3245295871,3245296127,3245296639,3245297663,3245297919,3245298175,3245298431,3245298687,3245298943,3245299199,3245299455,3245299711,3245299967,3245300223,3245300735,3245300991,3245301247,3245301503,3245301759,3245302783,3245303807,3245304831,3245306367,3245306879,3245307135,3245307391,3245307903,3245308415,3245308927,3245309183,3245309439,3245309951,3245311999,3245314047,3245315071,3245316095,3245317119,3245318399,3245318655,3245318911,3245319167,3245319423,3245319679,3245319935,3245320703,3245321215,3245321471,3245321727,3245321983,3245322239,3245323263,3245324287,3245325311,3245326335,3245326847,3245327359,3245327871,3245328383,3245328639,3245328895,3245329407,3245329919,3245330431,3245330687,3245330943,3245331199,3245331455,3245333503,3245334527,3245334783,3245335039,3245335295,3245335551,3245335807,3245336063,3245336575,3245336831,3245337087,3245337855,3245338111,3245338367,3245339647,3245340671,3245341439,3245342719,3245408255,3245473791,3245498367,3245514751,3245517823,3245518079,3245518335,3245518591,3245520895,3245521151,3245522943,3245555711,3245572095,3245588479,3245604863,3245621247,3245637631,3245645823,3245646079,3245646591,3245647103,3245647615,3245647871,3245648639,3245648895,3245649151,3245649407,3245651967,3245652991,3245654015,3245670399,3245678591,3245686783,3245703167,3245735935,3245744127,3245744639,3245745151,3245748223,3245750271,3245750783,3245751551,3245751807,3245752319,3245760511,3245769471,3245770239,3245771007,3245771775,3245772543,3245774079,3245775615,3245776127,3245776383,3245776639,3245776895,3245778175,3245778431,3245778687,3245778943,3245779199,3245784831,3245785087,3245785343,3245785599,3245786111,3245786367,3245786623,3245786879,3245787135,3245788927,3245790463,3245790719,3245792511,3245793279,3245794303,3245795071,3245795327,3245795839,3245796095,3245796351,3245796863,3245797375,3245798399,3245798911,3245799167,3245799423,3245800447,3245801471,3245809663,3245834239,3245867007,3245873151,3245873407,3245916159,3245917183,3245932543,3245998079,3246002175,3246006271,3246014463,3246022655,3246030847,3246071807,3246079999,3246088191,3246096383,3246104575,3246108671,3246112767,3246120959,3246129151,3246129407,3246129663,3246129919,3246130175,3246130431,3246130687,3246130943,3246131199,3246131455,3246131711,3246132735,3246132991,3246133247,3246133503,3246133759,3246134015,3246134271,3246134783,3246135039,3246135295,3246135551,3246135807,3246136831,3246137087,3246137599,3246138111,3246138367,3246138623,3246138879,3246139391,3246139647,3246139903,3246140159,3246140415,3246140671,3246141183,3246141439,3246141695,3246141951,3246142207,3246142463,3246142975,3246144767,3246145023,3246145535,3246146559,3246147071,3246147327,3246147583,3246148607,3246149887,3246150143,3246150655,3246150911,3246151167,3246151679,3246151935,3246152191,3246152447,3246152703,3246152959,3246153215,3246153471,3246153727,3246157823,3246159871,3246160127,3246160383,3246160895,3246161151,3246161407,3246161919,3246162943,3246163199,3246163455,3246163711,3246163967,3246168063,3246169599,3246170111,3246174207,3246178303,3246180351,3246181119,3246181375,3246181631,3246182143,3246182399,3246186495,3246187007,3246187263,3246187519,3246190591,3246191615,3246192639,3246193663,3246194175,3246194431,3246260223,3246325759,3246359551,3246362623,3246371071,3246371327,3246379007,3246381055,3246381567,3246381823,3246383103,3246383359,3246386687,3246387199,3246388223,3246388735,3246388991,3246391295,3246393087,3246393343,3246613503,3246614527,3246651391,3246651647,3246691327,3246691839,3246784511,3246810111,3246810623,3246837759,3246838783,3246839807,3246852095,3246853119,3246853375,3246853631,3246853887,3246854143,3246855167,3246855423,3246855679,3246856191,3246856447,3246857215,3246857727,3246862335,3246864383,3246878719,3246879743,3246880767,3246881791,3246882815,3246884351,3246884863,3246885119,3246885375,3246887423,3246887935,3246888703,3246888959,3246890239,3246890495,3246894591,3246894847,3246906367,3246907391,3246915583,3247046655,3247046911,3247047679,3247048191,3247048447,3247048703,3247048959,3247049215,3247053823,3247054079,3247054335,3247054591,3247054847,3247063039,3247063295,3247063551,3247063807,3247064063,3247064319,3247064575,3247064831,3247065087,3247065343,3247065599,3247065855,3247066111,3247066367,3247066623,3247066879,3247067135,3247067647,3247067903,3247068159,3247068415,3247068671,3247068927,3247069183,3247069439,3247069695,3247069951,3247070207,3247070463,3247070719,3247070975,3247071231,3247071487,3247071743,3247072255,3247072511,3247072767,3247073023,3247073279,3247073535,3247073791,3247074047,3247074303,3247074559,3247074815,3247075071,3247075327,3247076095,3247076351,3247076607,3247076863,3247077119,3247077375,3247077887,3247078143,3247078399,3247078655,3247078911,3247079167,3247079423,3247080447,3247081471,3247083519,3247084543,3247085567,3247086591,3247087615,3247088639,3247089663,3247090687,3247091711,3247092735,3247093759,3247094783,3247095807,3247096575,3247096831,3247097855,3247098879,3247099903,3247100927,3247101951,3247102975,3247103231,3247106047,3247107071,3247108095,3247109119,3247110143,3247111167,3247111423,3247112191,3247177727,3247243263,3247244287,3247248383,3247248639,3247249151,3247249663,3247250175,3247250431,3247253503,3247255039,3247256831,3247257087,3247257343,3247257599,3247257855,3247258367,3247258623,3247259135,3247259647,3247260159,3247260415,3247260671,3247266559,3247266815,3247267071,3247267327,3247268863,3247269119,3247269375,3247269887,3247270143,3247270655,3247270911,3247271167,3247271423,3247271679,3247274239,3247274495,3247275263,3247275519,3247276031,3247278847,3247279615,3247279871,3247280127,3247288319,3247288575,3247288831,3247289343,3247290367,3247291391,3247291647,3247292415,3247301119,3247302143,3247302655,3247308799,3247309055,3247309567,3247309823,3247310079,3247310335,3247310591,3247313407,3247313663,3247313919,3247314431,3247314687,3247315711,3247315967,3247316479,3247316735,3247316991,3247318015,3247319039,3247320063,3247321087,3247321599,3247322111,3247322623,3247322879,3247323135,3247323647,3247323903,3247324159,3247324415,3247324671,3247324927,3247333631,3247333887,3247335167,3247335423,3247336447,3247337215,3247337471,3247337983,3247338239,3247338495,3247338751,3247339007,3247339519,3247340543,3247340799,3247341055,3247341311,3247341567,3247342591,3247343615,3247345663,3247345919,3247346175,3247346431,3247346687,3247346943,3247347199,3247347455,3247347711,3247347967,3247348223,3247348735,3247348991,3247349247,3247349503,3247349759,3247353855,3247356927,3247357951,3247358975,3247359999,3247360511,3247360767,3247361023,3247361279,3247361535,3247362047,3247362303,3247362559,3247362815,3247363071,3247363327,3247363583,3247363839,3247364095,3247364351,3247364607,3247364863,3247365119,3247365375,3247365631,3247365887,3247366143,3247368191,3247368703,3247368959,3247370239,3247370495,3247370751,3247371007,3247371263,3247371519,3247371775,3247372031,3247372287,3247372543,3247372799,3247373055,3247373567,3247373823,3247374335,3247374847,3247375359,3247375871,3247376383,3247378431,3247378943,3247379199,3247379455,3247380479,3247382527,3247390719,3247391743,3247392255,3247392767,3247393023,3247393535,3247394303,3247394559,3247397375,3247397631,3247397887,3247398143,3247398911,3247399423,3247399679,3247404799,3247405055,3247405311,3247405567,3247405823,3247406079,3247431679,3247431935,3247432191,3247432703,3247433471,3247433727,3247437823,3247438079,3247438335,3247438847,3247439103,3247439615,3247439871,3247702015,3247702271,3247702527,3247703295,3247703551,3247704063,3247704575,3247704831,3247705087,3247705599,3247705855,3247706111,3247706367,3247706623,3247706879,3247707135,3247708159,3247711743,3247712255,3247713279,3247713535,3247713791,3247714047,3247714559,3247715327,3247716351,3247717375,3247717631,3247717887,3247718143,3247718399,3247719423,3247720447,3247720703,3247720959,3247721215,3247721471,3247722495,3247723519,3247724543,3247725567,3247726335,3247726591,3247742975,3247749119,3247749631,3247751167,3247764479,3247764991,3247765247,3247765503,3247765759,3247766015,3247766271,3247766527,3247766783,3247767039,3247767295,3247767551,3247768063,3247768575,3247769599,3247771647,3247772671,3247773695,3247775743,3247783935,3247788031,3247790079,3247792127,3247800319,3247800575,3247800831,3247801087,3247801855,3247802623,3247803135,3247803391,3247803903,3247804159,3247804671,3247804927,3247805439,3247805951,3247806207,3247806463,3247806719,3247806975,3247807231,3247807743,3247807999,3247808511,3247808767,3247809791,3247810047,3247810559,3247810815,3247811071,3247811327,3247811839,3247812095,3247812863,3247813119,3247813631,3247813887,3247814143,3247814655,3247814911,3247815167,3247815423,3247815679,3247815935,3247816447,3247816703,3247823103,3247823359,3247825151,3247825407,3247828991,3247833087,3247833599,3247834111,3247834623,3247835135,3247836159,3247837183,3247838207,3247838463,3247838719,3247839231,3247839743,3247840255,3247841279,3247841791,3247842047,3247842303,3247842815,3247843327,3247843583,3247845375,3247845631,3247845887,3247846399,3247847423,3247848447,3247849471,3247849727,3247849983,3247850239,3247850495,3247850751,3247851007,3247851519,3247852543,3247853567,3247854591,3247855615,3247856127,3247856639,3247857663,3247858175,3247858431,3247859711,3247859967,3247861759,3247862015,3247862271,3247863807,3247864063,3247864319,3247864575,3247864831,3247865343,3247865599,3247865855,3247871999,3247875327,3247875583,3247876095,3247876351,3247876607,3247876863,3247877119,3247877631,3247879167,3247881215,3247881471,3247881983,3247882239,3247898623,3247899647,3247900671,3247901695,3247902719,3247903743,3247904767,3247905791,3247906815,3247907839,3247908863,3247909887,3247910911,3247911935,3247912959,3247913983,3247915007,3247917055,3247918079,3247919103,3247920127,3247921151,3247922175,3247922431,3247922687,3247922943,3247923199,3247925247,3247926271,3247927295,3247928319,3247929343,3247931391,3247939583,3247940607,3247941631,3247942655,3247943679,3247944703,3247945727,3247946751,3247947007,3247947263,3247947519,3247947775,3247955967,3247956223,3247956479,3247956735,3247960063,3247961087,3247961343,3247961599,3247961855,3247962111,3247963135,3247964159,3248095231,3248160767,3248226303,3248357375,3248488447,3248488703,3248490495,3248490751,3248491007,3248491519,3248492031,3248492543,3248493567,3248493823,3248494079,3248494591,3248496127,3248496639,3248496895,3248497151,3248498431,3248498687,3248504831,3248505343,3248505855,3248506367,3248506879,3248507391,3248507903,3248508927,3248509951,3248510975,3248511999,3248513279,3248513535,3248514047,3248514559,3248515071,3248517375,3248517631,3248518655,3248518911,3248519167,3248521215,3248521727,3248521983,3248522239,3248522751,3248523007,3248523519,3248524031,3248524287,3248526335,3248527359,3248528383,3248528895,3248529151,3248529407,3248536575,3248537599,3248540671,3248541183,3248541695,3248542207,3248542719,3248543231,3248543487,3248544511,3248544767,3248545791,3248546815,3248547839,3248548863,3248549631,3248549887,3248550911,3248551167,3248551935,3248553215,3248553471,3248553727,3248553983,3248554239,3248554495,3248555007,3248557055,3248558079,3248560127,3248560639,3248560895,3248561151,3248561663,3248575487,3248576511,3248582655,3248583679,3248584703,3248586751,3248587775,3248588799,3248589311,3248589823,3248590847,3248591615,3248591871,3248592383,3248592895,3248593919,3248594431,3248599039,3248603135,3248603391,3248603647,3248604159,3248605183,3248605439,3248605695,3248605951,3248606207,3248606719,3248606975,3248608255,3248609279,3248610303,3248611327,3248614399,3248615423,3248616703,3248616959,3248617471,3248619007,3248619519,3248621311,3248621567,3248622847,3248623103,3248623615,3248624895,3248625151,3248626687,3248626943,3248627199,3248627455,3248627711,3248628479,3248628735,3248629759,3248630015,3248630271,3248630527,3248630783,3248631039,3248631295,3248631551,3248631807,3248638463,3248638719,3248639487,3248639743,3248639999,3248645119,3248645375,3248645631,3248645887,3248646143,3248646399,3248646655,3248646911,3248647167,3248652287,3248652543,3248652799,3248653055,3248653311,3248653823,3248654079,3248654335,3248654591,3248654847,3248655103,3248655359,3248655615,3248656127,3248656383,3248685567,3248685823,3248686079,3248686591,3248686847,3248687103,3248688127,3248688383,3248688639,3248688895,3248689151,3248689919,3248690175,3248690431,3248690687,3248691199,3248693759,3248694015,3248694271,3248696575,3248696831,3248697087,3248697343,3248697599,3248697855,3248698367,3248698623,3248698879,3248699135,3248699391,3248702975,3248703231,3248703487,3248703743,3248703999,3248704255,3248704511,3248704767,3248705023,3248706559,3248706815,3248707327,3248707583,3248707839,3248708095,3248708351,3248708607,3248708863,3248709119,3248709375,3248709631,3248710143,3248710399,3248710655,3248710911,3248711167,3248711935,3248712191,3248712703,3248712959,3248713215,3248713727,3248713983,3248714239,3248714751,3248715007,3248715263,3248716287,3248716799,3248717055,3248717311,3248717567,3248717823,3248718079,3248721919,3248722175,3248722431,3248722943,3248723199,3248723455,3248723711,3248723967,3248728063,3248728319,3248728575,3248728831,3248729855,3248730111,3248730623,3248730879,3248731135,3248731391,3248731903,3248732159,3248732415,3248732671,3248732927,3248733183,3248733695,3248733951,3248734207,3248734719,3248734975,3248735231,3248735487,3248735743,3248735999,3248736255,3248736511,3248736767,3248737023,3248737279,3248737535,3248737791,3248738047,3248738303,3248750591,3248750847,3248751103,3248751359,3248751615,3248752639,3248752895,3248753151,3248753407,3248753663,3248753919,3248754431,3248754687,3248755711,3248756735,3248757759,3248758783,3248774143,3248775167,3248783615,3248783871,3248784127,3248784639,3248784895,3248785407,3248785663,3248786943,3248787199,3248787455,3248787711,3248787967,3248788223,3248788479,3248788735,3248789247,3248789503,3248789759,3248790015,3248790271,3248790527,3248790783,3248791039,3248791295,3248791551,3248799743,3248800255,3248800767,3248801279,3248801535,3248801791,3248802303,3248802815,3248803327,3248803839,3248804351,3248804863,3248805375,3248805887,3248806399,3248806911,3248807423,3248807935,3248808447,3248808959,3248810239,3248810495,3248812543,3248813055,3248813567,3248814079,3248815103,3248815615,3248816127,3248881663,3249012735,3249012991,3249013503,3249013759,3249014271,3249014783,3249024511,3249025535,3249025791,3249026047,3249026559,3249026815,3249027071,3249027583,3249045503,3249046527,3249046783,3249047551,3249048575,3249049599,3249049855,3249050623,3249051647,3249052671,3249053695,3249054719,3249055743,3249056767,3249057023,3249057535,3249057791,3249058815,3249059839,3249060863,3249061887,3249062911,3249063935,3249064959,3249065983,3249067007,3249068031,3249068287,3249068543,3249068799,3249069055,3249070079,3249071103,3249074175,3249075199,3249076223,3249078271,3249078783,3249079295,3249079807,3249080319,3249080831,3249081343,3249081855,3249082367,3249082879,3249083391,3249083647,3249083903,3249084927,3249085439,3249085951,3249086207,3249086463,3249088511,3249089023,3249089535,3249090047,3249090559,3249091071,3249091327,3249091583,3249092095,3249092607,3249093375,3249093631,3249094655,3249095679,3249096191,3249096703,3249097215,3249097727,3249098239,3249098751,3249099263,3249099775,3249100287,3249100799,3249101311,3249101823,3249102335,3249102847,3249103359,3249103871,3249104383,3249104895,3249105151,3249106431,3249106943,3249108479,3249108991,3249109503,3249110015,3249111039,3249111551,3249112063,3249112319,3249112575,3249113087,3249113599,3249114111,3249114623,3249115647,3249116159,3249116671,3249117183,3249117695,3249118207,3249118719,3249119231,3249119743,3249120255,3249120767,3249121279,3249121791,3249122303,3249122815,3249123071,3249123327,3249124351,3249124863,3249125375,3249125887,3249126399,3249126911,3249127423,3249127935,3249128447,3249128959,3249129471,3249129983,3249130495,3249131007,3249131519,3249132031,3249132543,3249132799,3249133055,3249133567,3249134079,3249134591,3249135615,3249136127,3249136639,3249137151,3249137663,3249138175,3249138687,3249139199,3249139711,3249140223,3249140735,3249141247,3249141759,3249142271,3249142527,3249143807,3249274879,3249405951,3249537023,3249537279,3249537535,3249537791,3249538303,3249541119,3249542143,3249543167,3249543423,3249544191,3249544959,3249547263,3249548287,3249548543,3249550847,3249551359,3249552639,3249552895,3249553151,3249553407,3249555455,3249556479,3249558527,3249559039,3249559551,3249560575,3249561599,3249561855,3249562111,3249562367,3249562623,3249562879,3249563135,3249563647,3249565695,3249566719,3249567743,3249568767,3249569791,3249570047,3249570303,3249574143,3249574399,3249574655,3249574911,3249576191,3249576447,3249577471,3249577727,3249582847,3249583103,3249584127,3249584895,3249585151,3249590527,3249590783,3249591039,3249591295,3249592319,3249593343,3249593599,3249595135,3249595391,3249596415,3249596671,3249596927,3249597695,3249597951,3249598207,3249598463,3249599487,3249599999,3249600255,3249600511,3249601535,3249601791,3249602047,3249602303,3249602559,3249602815,3249635327,3249636351,3249637375,3249638399,3249644031,3249644287,3249644543,3249645055,3249649151,3249649407,3249650687,3249651711,3249655807,3249657855,3249658367,3249658879,3249659903,3249668095,3249668351,3249676031,3249676287,3249676543,3249676799,3249677055,3249677311,3249678335,3249678847,3249679359,3249680383,3249681407,3249681663,3249681919,3249682431,3249683455,3249684479,3249696767,3249697279,3249697535,3249697791,3249698047,3249698303,3249698559,3249698815,3249699839,3249701119,3249701631,3249701887,3249702143,3249702399,3249702655,3249702911,3249703167,3249703423,3249703679,3249703935,3249704191,3249704447,3249704703,3249704959,3249705983,3249706495,3249707007,3249707519,3249708031,3249708543,3249709055,3249709311,3249709567,3249709823,3249710079,3249710335,3249710591,3249710847,3249711103,3249711359,3249711615,3249711871,3249712127,3249712383,3249712639,3249712895,3249713151,3249715199,3249715455,3249715711,3249715967,3249716223,3249716479,3249716735,3249716991,3249717247,3249718271,3249719295,3249720063,3249720319,3249721343,3249721599,3249721855,3249722111,3249722367,3249722623,3249723135,3249723391,3249723647,3249723903,3249724159,3249724415,3249724927,3249725183,3249725439,3249725951,3249726463,3249726975,3249727487,3249727999,3249728511,3249729023,3249729535,3249730559,3249731583,3249732607,3249733631,3249799167,3249805311,3249805567,3249875199,3249875455,3249876479,3249876735,3249934335,3249934591,3249967103,3249967359,3250024447,3250024703,3250051071,3250051327,3250051583,3250061311,3250192383,3250192639,3250192895,3250193151,3250193407,3250193663,3250194175,3250194431,3250194687,3250194943,3250195199,3250195455,3250195711,3250195967,3250196223,3250196479,3250200575,3250200831,3250201087,3250201343,3250201599,3250202111,3250202367,3250202623,3250233343,3250233599,3250233855,3250234111,3250234367,3250241535,3250242559,3250243583,3250244607,3250245631,3250245887,3250246143,3250246399,3250246655,3250247423,3250247679,3250256895,3250257151,3250257407,3250257663,3250257919,3250258175,3250258431,3250271231,3250271743,3250271999,3250272255,3250274303,3250276351,3250276607,3250276863,3250277375,3250278399,3250279423,3250280447,3250281471,3250282495,3250282751,3250283007,3250283263,3250283519,3250284543,3250284799,3250285055,3250285567,3250286591,3250287615,3250288639,3250290943,3250291199,3250291455,3250291711,3250292735,3250293759,3250294783,3250295807,3250296831,3250297855,3250298879,3250300927,3250301951,3250302463,3250302975,3250303999,3250305023,3250306047,3250307071,3250308095,3250323199,3250323455,3250323711,3250323967,3250324479,3250324991,3250325247,3250325503,3250326527,3250327039,3250327295,3250327551,3250328575,3250329343,3250330623,3250331647,3250335743,3250339839,3250348031,3250356223,3250357247,3250357759,3250358015,3250358527,3250358783,3250359295,3250359807,3250362879,3250363391,3250363903,3250364415,3250372607,3250373375,3250373631,3250374143,3250374655,3250374911,3250375679,3250376703,3250380799,3250386943,3250387199,3250387455,3250387711,3250388223,3250388479,3250388735,3250388991,3250405375,3250405887,3250406399,3250406911,3250407423,3250407935,3250408447,3250408959,3250409471,3250409983,3250411007,3250411519,3250411775,3250412031,3250413055,3250413567,3250414079,3250414591,3250415103,3250415359,3250415615,3250416127,3250416639,3250417663,3250418175,3250418687,3250419199,3250419711,3250420223,3250420735,3250421247,3250421759,3250422015,3250423295,3250423551,3250423807,3250424063,3250424319,3250424575,3250424831,3250425343,3250425599,3250425855,3250426111,3250426367,3250426623,3250426879,3250427135,3250427391,3250429951,3250438143,3250438399,3250438655,3250439167,3250439935,3250440191,3250440703,3250441215,3250442239,3250443263,3250446335,3250454527,3250585599,3250585855,3250586111,3250586623,3250588671,3250588927,3250589183,3250589439,3250589695,3250594815,3250595327,3250595839,3250596351,3250596863,3250597375,3250597887,3250598399,3250598911,3250599423,3250599935,3250600447,3250600959,3250601471,3250601983,3250610175,3250618367,3250626559,3250634751,3250642943,3250651135,3250659327,3250667519,3250675711,3250683903,3250692095,3250692351,3250692607,3250693119,3250693375,3250693631,3250694143,3250694399,3250694655,3250694911,3250695167,3250695679,3250697471,3250697727,3250697983,3250698239,3250698751,3250699263,3250699775,3250700287,3250701311,3250701823,3250703103,3250703615,3250704383,3250704895,3250705151,3250705407,3250706431,3250706943,3250707199,3250707711,3250708479,3250716671,3250716927,3250718207,3250720767,3250722047,3250722303,3250724863,3250733055,3250741247,3250742783,3250743551,3250743807,3250746367,3250747391,3250747903,3250748159,3250748415,3250749439,3250749695,3250749951,3250750463,3250751487,3250751743,3250751999,3250752511,3250753023,3250753535,3250754047,3250754303,3250754559,3250755071,3250755583,3250755839,3250756351,3250756863,3250757119,3250757375,3250757631,3250765823,3250782207,3250847743,3250978815,3251044351,3251109887,3251110399,3251110655,3251110911,3251111167,3251111423,3251111679,3251111935,3251112191,3251112447,3251112703,3251112959,3251113471,3251113983,3251114495,3251114751,3251115007,3251115263,3251115519,3251115775,3251116031,3251116287,3251116543,3251117055,3251117311,3251117567,3251117823,3251118079,3251118591,3251119103,3251120127,3251120639,3251121151,3251121663,3251122175,3251122687,3251123199,3251123711,3251124223,3251124735,3251125503,3251125759,3251126271,3251127295,3251127807,3251128319,3251129343,3251129855,3251130111,3251130367,3251130879,3251131391,3251131903,3251132415,3251132927,3251133439,3251133951,3251134463,3251134975,3251135999,3251136511,3251137023,3251137535,3251138047,3251138559,3251139071,3251139583,3251140095,3251141631,3251142143,3251142655,3251142911,3251143167,3251143423,3251143679,3251143935,3251144191,3251144447,3251144703,3251144959,3251145471,3251145727,3251145983,3251146239,3251146495,3251146751,3251147007,3251147263,3251147519,3251147775,3251148031,3251148287,3251148543,3251148799,3251149055,3251149311,3251149567,3251149823,3251150079,3251150335,3251150847,3251151103,3251151359,3251151615,3251151871,3251152127,3251152383,3251152895,3251153151,3251153407,3251153663,3251153919,3251154175,3251154431,3251154687,3251154943,3251155455,3251155711,3251155967,3251156223,3251156479,3251156735,3251156991,3251157247,3251157503,3251157759,3251158015,3251158271,3251158527,3251158783,3251159295,3251160063,3251160319,3251160575,3251160831,3251161087,3251161343,3251161599,3251161855,3251162111,3251162367,3251162623,3251162879,3251163135,3251163391,3251163647,3251163903,3251164159,3251164415,3251164671,3251164927,3251165439,3251165695,3251165951,3251166207,3251166463,3251166719,3251166975,3251167231,3251167487,3251167743,3251168255,3251168511,3251168767,3251169023,3251169279,3251169535,3251169791,3251170047,3251170303,3251170559,3251170815,3251171071,3251171327,3251171839,3251172095,3251172351,3251172607,3251172863,3251173119,3251173375,3251173631,3251173887,3251174143,3251174655,3251174911,3251175167,3251175423,3251177471,3251177983,3251178239,3251178495,3251179263,3251179519,3251180031,3251180543,3251181055,3251181567,3251182079,3251182591,3251183103,3251183615,3251183871,3251184127,3251184383,3251184639,3251184895,3251185407,3251185663,3251185919,3251186175,3251186431,3251186687,3251186943,3251187199,3251187455,3251187711,3251188735,3251189759,3251190783,3251191807,3251192319,3251192831,3251193343,3251193855,3251194367,3251194879,3251195391,3251195903,3251196415,3251196671,3251196927,3251197951,3251198975,3251199999,3251200511,3251200767,3251201023,3251201279,3251201535,3251201791,3251202047,3251202303,3251202559,3251202815,3251203327,3251203583,3251203839,3251204095,3251204607,3251204863,3251205119,3251205631,3251206143,3251206655,3251207167,3251207679,3251207935,3251208191,3251209215,3251210239,3251211263,3251212287,3251212543,3251212799,3251213055,3251213311,3251213823,3251214079,3251214335,3251214591,3251214847,3251215103,3251215359,3251215615,3251215871,3251216127,3251216383,3251216639,3251216895,3251217151,3251217407,3251217663,3251217919,3251218175,3251218431,3251219199,3251219455,3251219711,3251219967,3251220223,3251220479,3251222527,3251224575,3251225599,3251226111,3251226623,3251227135,3251227391,3251227647,3251228159,3251228415,3251228671,3251229695,3251230719,3251231743,3251232767,3251233791,3251234815,3251235839,3251236863,3251237887,3251238911,3251239935,3251240959,3251241215,3251243007,3251245311,3251245567,3251245823,3251246079,3251246335,3251246591,3251246847,3251247103,3251248895,3251249151,3251251199,3251252223,3251252735,3251256831,3251257343,3251259903,3251260415,3251260671,3251261439,3251262463,3251263487,3251263999,3251264255,3251265535,3251267839,3251268095,3251268351,3251268607,3251268863,3251269119,3251269375,3251269631,3251269887,3251270143,3251270399,3251270655,3251270911,3251271167,3251271423,3251271679,3251271935,3251272191,3251272447,3251272703,3251272959,3251273215,3251273471,3251273727,3251290111,3251298303,3251302399,3251306495,3251307007,3251307519,3251307775,3251308031,3251308543,3251309567,3251310079,3251310335,3251311103,3251311615,3251312127,3251312383,3251312639,3251313151,3251313663,3251314687,3251315711,3251316735,3251317759,3251318783,3251319295,3251319807,3251320063,3251320831,3251321855,3251322879,3251331071,3251331583,3251332095,3251333119,3251333375,3251333631,3251334143,3251334655,3251334911,3251335167,3251335679,3251336191,3251336703,3251337215,3251337727,3251338239,3251338751,3251339007,3251339263,3251347455,3251348479,3251349503,3251350527,3251351039,3251351551,3251352575,3251353599,3251354623,3251355647,3251356159,3251356671,3251357183,3251357695,3251358207,3251358463,3251358719,3251359231,3251360255,3251360511,3251360767,3251361279,3251361791,3251362303,3251362815,3251363327,3251364095,3251364607,3251364863,3251366911,3251367423,3251367679,3251367935,3251371007,3251371263,3251371519,3251371775,3251372031,3251424767,3251425023,3251634175,3251661311,3251661567,3251674879,3251675135,3251705343,3251705599,3251707391,3251707647,3251734271,3251734527,3251734783,3251802879,3251803135,3251835135,3251835391,3251896319,3252158463,3252174847,3252183039,3252189695,3252196351,3252197375,3252215807,3252232191,3252286463,3252287487,3252289535,3252289791,3252291327,3252291583,3252292607,3252293631,3252297727,3252297983,3252298239,3252298495,3252298751,3252299007,3252299263,3252299775,3252300031,3252300543,3252300799,3252308223,3252308479,3252310527,3252311039,3252313599,3252313855,3252314111,3252314623,3252314879,3252315135,3252316415,3252316671,3252318463,3252318719,3252318975,3252319231,3252319743,3252320255,3252320511,3252320767,3252321023,3252321279,3252321791,3252322303,3252323327,3252324351,3252326399,3252327423,3252329471,3252330495,3252334591,3252335615,3252336639,3252337151,3252337407,3252337663,3252337919,3252338175,3252338431,3252338687,3252340735,3252341247,3252341503,3252341759,3252342015,3252342271,3252342527,3252342783,3252346623,3252355071,3252355327,3252356863,3252357119,3252358911,3252359167,3252362239,3252362495,3252363007,3252363263,3252379647,3252379903,3252380159,3252380671,3252380927,3252381183,3252381439,3252381695,3252381951,3252382207,3252382463,3252382719,3252382975,3252383231,3252383743,3252383999,3252384511,3252384767,3252385023,3252385279,3252385535,3252385791,3252386559,3252386815,3252387071,3252387327,3252387583,3252387839,3252404223,3252406271,3252409343,3252409599,3252410623,3252410879,3252411391,3252412415,3252413439,3252413951,3252414463,3252415231,3252417279,3252418815,3252419071,3252423679,3252423935,3252424959,3252425215,3252426751,3252428287,3252430335,3252430591,3252433919,3252435199,3252435455,3252441087,3252441855,3252443135,3252445183,3252448767,3252449791,3252450047,3252450303,3252450559,3252451071,3252451327,3252452095,3252452351,3252452863,3252453375,3252457471,3252458751,3252460799,3252461055,3252461567,3252461823,3252462079,3252462847,3252463103,3252466687,3252467711,3252468735,3252468991,3252469503,3252473855,3252482047,3252486143,3252492287,3252499967,3252500991,3252501247,3252501759,3252502015,3252503551,3252504575,3252506879,3252507135,3252507647,3252509951,3252510207,3252510719,3252514815,3252515071,3252515327,3252515583,3252515839,3252516095,3252516351,3252516607,3252517119,3252517375,3252517631,3252517887,3252518143,3252518399,3252518655,3252518911,3252527103,3252535295,3252535551,3252536319,3252537343,3252537599,3252538367,3252539391,3252539647,3252539903,3252540159,3252540415,3252541439,3252541951,3252542207,3252542463,3252543487,3252551679,3252563967,3252564479,3252564735,3252564991,3252566015,3252566271,3252566527,3252566783,3252567039,3252567295,3252567551,3252567807,3252568063,3252576255,3252576511,3252576767,3252577023,3252577279,3252578047,3252578303,3252579327,3252579583,3252579839,3252580095,3252580351,3252584447,3252584703,3252584959,3252585215,3252585471,3252585727,3252585983,3252586239,3252586495,3252586751,3252587007,3252587263,3252587519,3252587775,3252588031,3252588543,3252589567,3252599807,3252600319,3252600575,3252600831,3252615935,3252616191,3252616703,3252616959,3252617215,3252617471,3252633599,3252634623,3252635135,3252635647,3252636671,3252636927,3252637183,3252637695,3252641791,3252642303,3252642559,3252642815,3252643071,3252643327,3252643583,3252643839,3252644863,3252645119,3252645375,3252645887,3252662271,3252666367,3252680703,3252681727,3252682239,3252682751,3252813823,3252830207,3252830463,3252833279,3252833535,3252833791,3252834047,3252834303,3252862975,3252879359,3252895743,3252903935,3252904447,3252904703,3252904959,3252905215,3252905471,3252905727,3252905983,3252906239,3252906495,3252906751,3252907007,3252907263,3252907519,3252907775,3252908031,3252908287,3252908543,3252908799,3252909055,3252909311,3252909567,3252909823,3252910335,3252910591,3252910847,3252911103,3252911359,3252911615,3252911871,3252912127,3252912383,3252912639,3252912895,3252913151,3252913407,3252913663,3252913919,3252914175,3252916223,3252920063,3252920319,3252928511,3252929535,3252930559,3252931071,3252931583,3252932095,3252933631,3252934655,3252936703,3252937215,3252937727,3252938239,3252938751,3252939263,3252939775,3252940287,3252940799,3252941311,3252941823,3252942847,3252943359,3252943871,3252944383,3252944895,3252945151,3252945407,3252945663,3252945919,3252947455,3252947711,3252948991,3252957183,3252958207,3252959231,3252959487,3252959743,3252960255,3252960511,3252963327,3252964351,3252965375,3252967935,3252968447,3252970751,3252971007,3252971263,3252971519,3252972543,3252973567,3252976383,3252976639,3252976895,3252977151,3252977407,3252977663,3252977919,3252978175,3252978431,3252978687,3252979711,3252979967,3252980223,3252980479,3252980735,3252980991,3252981247,3252981503,3252981759,3252982015,3252982271,3252982527,3252982783,3252983039,3252983551,3252983807,3252984063,3252984319,3252984575,3252984831,3252985087,3252985343,3252987903,3252988159,3252988415,3252988927,3252989439,3252989695,3252989951,3252991231,3252991487,3252991999,3252992255,3252992767,3252993023,3252994047,3252994303,3252994559,3252995071,3252995327,3252995839,3252996095,3252997119,3252997631,3252997887,3253002239,3253002495,3253002751,3253003007,3253003263,3253003519,3253003775,3253004031,3253004287,3253004799,3253005055,3253005311,3253006335,3253010431,3253075967,3253139455,3253139711,3253191935,3253192191,3253207039,3253217279,3253218303,3253223679,3253223935,3253230591,3253230847,3253243903,3253244415,3253265407,3253265663,3253276415,3253276671,3253277951,3253278207,3253278463,3253278719,3253288703,3253288959,3253291007,3253291263,3253291519,3253291775,3253292031,3253293055,3253293311,3253293567,3253294079,3253295103,3253295359,3253295615,3253295871,3253296127,3253298175,3253299199,3253300223,3253301247,3253302271,3253303295,3253305343,3253306367,3253306623,3253306879,3253307135,3253307391,3253309439,3253313791,3253314047,3253314559,3253314815,3253317119,3253317375,3253321983,3253322239,3253323775,3253324031,3253324287,3253326847,3253327871,3253329919,3253330943,3253331967,3253332479,3253336063,3253337087,3253337599,3253337855,3253384447,3253384703,3253401855,3253402111,3253441023,3253441279,3253441535,3253456639,3253456895,3253469183,3253534719,3253600255,3253600511,3253601279,3253602303,3253603327,3253605375,3253606399,3253606655,3253606911,3253607423,3253608447,3253610495,3253611519,3253611775,3253612031,3253613567,3253614591,3253615615,3253616639,3253617663,3253618687,3253619711,3253620735,3253621759,3253622015,3253622271,3253622527,3253622783,3253623807,3253624831,3253625855,3253626879,3253627903,3253628927,3253629951,3253630975,3253631999,3253633023,3253634559,3253634815,3253635071,3253636095,3253637119,3253638143,3253639167,3253640191,3253641215,3253641471,3253641727,3253642239,3253643263,3253644287,3253644543,3253644799,3253645055,3253645311,3253646335,3253647359,3253648383,3253649151,3253649407,3253649919,3253650175,3253650431,3253651455,3253652479,3253653503,3253654527,3253657599,3253658623,3253659647,3253660671,3253661695,3253662719,3253663743,3253664767,3253665791,3253666815,3253667839,3253668863,3253669887,3253670911,3253671935,3253672959,3253673983,3253675007,3253676031,3253677055,3253678079,3253679103,3253680127,3253682175,3253683199,3253685247,3253686271,3253687295,3253687551,3253687807,3253688063,3253688319,3253690367,3253691391,3253692415,3253693439,3253694463,3253695487,3253696511,3253697535,3253698559,3253699071,3253699583,3253699839,3253700095,3253700607,3253701119,3253701631,3253702143,3253702655,3253703167,3253703679,3253704191,3253704447,3253704703,3253705215,3253705471,3253705727,3253706239,3253706751,3253707263,3253707775,3253708287,3253708799,3253709311,3253709823,3253710335,3253710847,3253711103,3253711359,3253711615,3253711871,3253712383,3253712895,3253713151,3253713407,3253713919,3253714431,3253715455,3253715967,3253716479,3253716991,3253717503,3253717759,3253718015,3253719039,3253719295,3253719551,3253720063,3253720575,3253721087,3253721599,3253722111,3253722623,3253723135,3253723647,3253724159,3253724671,3253725183,3253725439,3253725695,3253726207,3253726719,3253727231,3253727743,3253728255,3253728767,3253729279,3253729791,3253730303,3253730815,3253731327,3253731583,3253736959,3253737215,3253737471,3253737727,3253737983,3253740031,3253740287,3253742335,3253742591,3253743871,3253744127,3253745151,3253745407,3253747455,3253747711,3253748735,3253748991,3253750271,3253750527,3253752319,3253752575,3253754367,3253754623,3253754879,3253755903,3253756159,3253758207,3253758463,3253760511,3253760767,3253761023,3253763071,3253763327,3253765119,3253765375,3253766143,3253766399,3253770751,3253771263,3253773567,3253773823,3253774079,3253774335,3253776383,3253776639,3253778431,3253778687,3253778943,3253780223,3253780479,3253782271,3253782527,3253782783,3253783039,3253784831,3253785087,3253785855,3253786367,3253786879,3253787391,3253787647,3253787903,3253788159,3253789439,3253789951,3253791231,3253791487,3253793279,3253793535,3253793791,3253794047,3253794303,3253794559,3253794815,3253795071,3253795839,3253796095,3253796351,3253796607,3253796863,3253862399,3253862655,3253882879,3253886975,3253887231,3253887487,3253887743,3253887999,3253888255,3253888511,3253888767,3253889023,3253889279,3253889791,3253890047,3253890303,3253890559,3253890815,3253891071,3253891327,3253891583,3253891839,3253892351,3253892863,3253893119,3253893375,3253893631,3253893887,3253894143,3253894399,3253894655,3253894911,3253895167,3253896703,3253896959,3253897215,3253898239,3253898495,3253898751,3253899263,3253899519,3253899775,3253900287,3253901311,3253901567,3253901823,3253902079,3253902335,3253904127,3253904383,3253904895,3253905151,3253905407,3253905919,3253906431,3253906687,3253906943,3253907455,3253908479,3253908735,3253908991,3253909247,3253909503,3253909759,3253910015,3253910271,3253910527,3253911039,3253911551,3253911807,3253912063,3253912575,3253913599,3253915647,3253916159,3253916671,3253917183,3253917439,3253917695,3253917951,3253918207,3253918719,3253919743,3253923839,3253927935,3253960703,3253960959,3253961215,3253961727,3253962239,3253962751,3253963263,3253963775,3253964287,3253964799,3253965311,3253965567,3253965823,3253966335,3253966847,3253967359,3253967615,3253967871,3253968895,3253969151,3253969407,3253969919,3253970431,3253970687,3253970943,3253971967,3253972991,3253974527,3253974783,3253975039,3253975295,3253975551,3253975807,3253976063,3253976319,3253976831,3253977087,3253985279,3253993471,3254067199,3254068735,3254068991,3254069247,3254124543,3254125567,3254126079,3254137599,3254137855,3254138879,3254150655,3254150911,3254151167,3254156799,3254157055,3254161407,3254161663,3254161919,3254162943,3254163199,3254163711,3254163967,3254164991,3254165247,3254165503,3254165759,3254166015,3254166271,3254166527,3254166783,3254167039,3254167295,3254167551,3254169087,3254169599,3254173695,3254175743,3254176255,3254177279,3254177535,3254187263,3254187519,3254207231,3254207487,3254208767,3254209023,3254209279,3254209535,3254209791,3254210047,3254210559,3254211327,3254214143,3254214399,3254215935,3254216191,3254216447,3254216703,3254222335,3254222847,3254223359,3254223615,3254226943,3254227199,3254232319,3254232575,3254236415,3254236671,3254236927,3254237183,3254239231,3254239487,3254239743,3254240255,3254241279,3254241535,3254241791,3254242047,3254244607,3254244863,3254245375,3254245631,3254250495,3254251007,3254255615,3254257663,3254276095,3254284287,3254285311,3254285567,3254285823,3254286079,3254491391,3254491647,3254493183,3254493439,3254493695,3254494463,3254508031,3254508543,3254509055,3254509567,3254521855,3254522367,3254607871,3254611455,3254611967,3254615551,3254623743,3254624255,3254648831,3254649087,3254649599,3254649855,3254650879,3254651903,3254652927,3254653439,3254654975,3254656255,3254656511,3254656767,3254657023,3254661119,3254662143,3254662655,3254663679,3254664191,3254665215,3254697983,3254698495,3254699007,3254699519,3254700031,3254700543,3254701055,3254701567,3254702079,3254702591,3254703103,3254703615,3254704127,3254704639,3254705151,3254705663,3254706175,3254707199,3254707711,3254708223,3254708735,3254709247,3254709759,3254710271,3254710783,3254711295,3254711807,3254712319,3254712831,3254713343,3254713855,3254714367,3254727423,3254727679,3254779903,3254780159,3254780671,3254780927,3254781183,3254781439,3254781951,3254782207,3254782463,3254782719,3254782975,3254783743,3254783999,3254784255,3254784511,3254785279,3254785535,3254785791,3254786047,3254786815,3254787071,3254788095,3254788351,3254789119,3254789375,3254789631,3254790655,3254790911,3254791423,3254791679,3254792191,3254792959,3254793215,3254794751,3254795007,3254795263,3254795519,3254795775,3254796031,3254796287,3254797311,3254798335,3254799359,3254800383,3254801407,3254802431,3254803455,3254804479,3254806527,3254807551,3254808575,3254809599,3254810623,3254811647,3254812671,3254812927,3254813183,3254813439,3254813695,3254813951,3254814207,3254814463,3254814719,3254814975,3254815231,3254815487,3254816255,3254816511,3254816767,3254817279,3254817535,3254817791,3254818047,3254818303,3254818559,3254818815,3254819327,3254819583,3254819839,3254820095,3254820351,3254820607,3254820863,3254821119,3254821375,3254821631,3254821887,3254822143,3254822399,3254822655,3254822911,3254823167,3254823423,3254823679,3254823935,3254824191,3254824447,3254824959,3254825215,3254825471,3254826239,3254826495,3254827263,3254827519,3254827775,3254828031,3254828543,3254828799,3254829055,3254829311,3254829567,3254829823,3254830079,3254830335,3254830591,3254830847,3254831103,3254831359,3254831615,3254831871,3254832127,3254832383,3254832639,3254832895,3254833151,3254833407,3254833663,3254833919,3254834175,3254834431,3254834687,3254834943,3254835199,3254835455,3254835711,3254835967,3254836223,3254836479,3254836735,3254836991,3254837247,3254837503,3254837759,3254838015,3254838527,3254838783,3254839039,3254839295,3254839551,3254839807,3254840063,3254840319,3254840575,3254840831,3254841087,3254841343,3254841599,3254841855,3254842111,3254842367,3254842879,3254843135,3254843391,3254843647,3254843903,3254844159,3254844415,3254844671,3254844927,3254845183,3254845439,3254882303,3254882559,3254882815,3254883071,3254883583,3254883839,3254884351,3254884607,3254884863,3254885119,3254885375,3254885631,3254885887,3254886143,3254886399,3254886655,3254886911,3254887423,3254888191,3254888447,3254888703,3254888959,3254889471,3254890495,3254890751,3254891007,3254891263,3254891519,3254891775,3254892031,3254892287,3254892543,3254892799,3254893055,3254893567,3254894079,3254894335,3254894591,3254894847,3254895103,3254895359,3254895615,3254895871,3254896127,3254896383,3254896639,3254896895,3254897151,3254897407,3254897663,3254897919,3254898175,3254898431,3254898687,3254898943,3254899199,3254899455,3254899967,3254900479,3254900991,3254901247,3254901503,3254901759,3254902271,3254904831,3254907903,3254908159,3254908415,3254908671,3254908927,3254909951,3254910719,3254910975,3255044095,3255044607,3255045631,3255046143,3255052287,3255053311,3255054335,3255054591,3255054847,3255055103,3255055359,3255055615,3255056383,3255057407,3255058431,3255059455,3255060223,3255060479,3255067647,3255068671,3255078911,3255079935,3255080959,3255081215,3255081471,3255081983,3255083007,3255084031,3255085055,3255086079,3255087103,3255107583,3255108607,3255109631,3255110655,3255111679,3255111935,3255113727,3255113983,3255114239,3255114495,3255114751,3255115263,3255115775,3255116287,3255116799,3255117823,3255118847,3255119871,3255120127,3255120383,3255120639,3255120895,3255121151,3255121407,3255121663,3255121919,3255122943,3255123455,3255123711,3255123967,3255124223,3255124479,3255124735,3255124991,3255126015,3255126271,3255126527,3255126783,3255127039,3255127551,3255128063,3255128575,3255128831,3255129087,3255129343,3255129855,3255130111,3255130623,3255131135,3255132159,3255132415,3255132671,3255132927,3255133183,3255133695,3255133951,3255134207,3255134719,3255134975,3255135231,3255139839,3255140351,3255141375,3255141631,3255142143,3255142399,3255144703,3255144959,3255145215,3255145471,3255145983,3255146495,3255146751,3255147007,3255147519,3255147775,3255148031,3255148543,3255149567,3255150079,3255150591,3255151103,3255152383,3255153663,3255153919,3255154175,3255154431,3255154687,3255155711,3255155967,3255156735,3255157247,3255157503,3255157759,3255160063,3255160319,3255160831,3255161855,3255162111,3255162879,3255163903,3255164927,3255165951,3255166975,3255167487,3255167743,3255167999,3255168511,3255169023,3255170047,3255171071,3255171327,3255172095,3255172351,3255172607,3255173119,3255187199,3255187455,3255205887,3255214079,3255222271,3255223295,3255224319,3255225343,3255226367,3255227391,3255228415,3255230463,3255230719,3255230975,3255231231,3255231487,3255231743,3255231999,3255232255,3255233023,3255233535,3255233791,3255234047,3255234303,3255234559,3255234815,3255235071,3255235327,3255235583,3255235839,3255236351,3255236607,3255236863,3255237119,3255237375,3255237887,3255238143,3255238399,3255238655,3255248127,3255248383,3255256319,3255256575,3255288831,3255289087,3255290879,3255291391,3255304191,3255304447,3255305215,3255305471,3255307263,3255307775,3255308031,3255308287,3255311359,3255311615,3255311871,3255312127,3255312383,3255315711,3255316223,3255316479,3255316735,3255316991,3255317247,3255317503,3255317759,3255318015,3255318271,3255318527,3255318783,3255319295,3255319551,3255319807,3255320063,3255320319,3255320575,3255321087,3255322111,3255323135,3255323391,3255323647,3255324159,3255324671,3255324927,3255325183,3255325695,3255326207,3255326719,3255327231,3255327743,3255328255,3255328767,3255336959,3255337983,3255338239,3255338495,3255338751,3255339007,3255340031,3255341055,3255342079,3255343103,3255344127,3255345151,3255353343,3255361535,3255362047,3255362559,3255364607,3255365119,3255365375,3255365631,3255366143,3255367167,3255368191,3255368703,3255369215,3255369727,3255370239,3255370495,3255370751,3255371519,3255371775,3255372287,3255372799,3255373311,3255373823,3255374335,3255374847,3255375359,3255375871,3255376383,3255376895,3255377151,3255377407,3255377919,3255378431,3255378943,3255379455,3255379967,3255380479,3255380991,3255381503,3255382015,3255382527,3255383039,3255383551,3255384063,3255384575,3255385087,3255385599,3255385855,3255386111,3255386623,3255387135,3255387391,3255387647,3255388159,3255388671,3255389183,3255389695,3255390207,3255390719,3255391231,3255391743,3255392255,3255392767,3255393023,3255393279,3255393791,3255394303,3255399679,3255399935,3255400191,3255400447,3255401471,3255412479,3255412735,3255413247,3255413503,3255413759,3255414271,3255414527,3255414783,3255416063,3255416319,3255416831,3255417855,3255418111,3255418623,3255418879,3255422975,3255423999,3255425023,3255425279,3255425535,3255425791,3255426047,3255426559,3255426815,3255427071,3255431167,3255435263,3255446527,3255446783,3255449599,3255450111,3255450367,3255450623,3255451135,3255452671,3255468031,3255468543,3255469055,3255469567,3255469823,3255470079,3255470591,3255470847,3255471103,3255471359,3255471615,3255471871,3255472127,3255472383,3255472639,3255472895,3255473151,3255473407,3255473663,3255473919,3255474175,3255476735,3255476991,3255477247,3255477503,3255477759,3255478271,3255482367,3255482623,3255482879,3255483135,3255484415,3255484671,3255484927,3255485183,3255485439,3255486463,3255486719,3255486975,3255487487,3255487743,3255487999,3255488255,3255488511,3255489535,3255489791,3255490047,3255490559,3255492607,3255496703,3255497727,3255497983,3255498239,3255498495,3255498751,3255500799,3255504895,3255505151,3255505663,3255505919,3255506431,3255506687,3255506943,3255507199,3255507455,3255507711,3255507967,3255508223,3255508479,3255508991,3255522047,3255523327,3255533567,3255534591,3255534847,3255540223,3255540735,3255544319,3255544575,3255544831,3255548927,3255549183,3255549951,3255550975,3255551999,3255555583,3255556095,3255556351,3255557119,3255557375,3255558143,3255558399,3255558655,3255559167,3255559679,3255560191,3255560703,3255561215,3255561983,3255562239,3255562751,3255563007,3255564031,3255564287,3255565311,3255566079,3255566335,3255570431,3255574527,3255578623,3255582719,3255590911,3255599103,3255615487,3255623679,3255631871,3255632127,3255632383,3255648255,3255648511,3255649023,3255649279,3255649535,3255649791,3255650303,3255652351,3255653375,3255654399,3255659519,3255660031,3255660287,3255660543,3255663615,3255663871,3255664639,3255666175,3255666431,3255666687,3255667711,3255668223,3255668479,3255668735,3255691263,3255691519,3255691775,3255692287,3255692799,3255697407,3255698687,3255698943,3255750655,3255750911,3255752959,3255753215,3255762943,3255771135,3255772159,3255772671,3255772927,3255773183,3255774207,3255774463,3255774719,3255774975,3255775231,3255776255,3255776511,3255776767,3255777279,3255778303,3255782399,3255783423,3255787519,3255787775,3255788031,3255788287,3255788543,3255789567,3255790591,3255790847,3255791103,3255791359,3255791615,3255792127,3255792383,3255792639,3255793663,3255794943,3255795199,3255795711,3255797759,3255798015,3255798783,3255799039,3255799295,3255800319,3255800575,3255800831,3255801343,3255801599,3255801855,3255802367,3255802623,3255802879,3255809535,3255809791,3255811071,3255811583,3255812095,3255812607,3255812863,3255813119,3255813631,3255817215,3255817471,3255817727,3255818239,3255818751,3255819007,3255819263,3255820287,3255821311,3255822335,3255822591,3255822847,3255823359,3255823615,3255823871,3255824383,3255826431,3255827455,3255828479,3256025087,3256057855,3256082431,3256090623,3256172543,3256221695,3256222207,3256222463,3256223743,3256226047,3256229887,3256231423,3256231679,3256233983,3256352767,3256385535,3256393727,3256394239,3256394751,3256395263,3256395775,3256396287,3256396799,3256397311,3256397823,3256398335,3256398847,3256399359,3256400895,3256401151,3256401407,3256401919,3256410111,3256410623,3256411135,3256411647,3256411903,3256412159,3256412671,3256413183,3256413695,3256414207,3256414719,3256415231,3256415743,3256416255,3256416767,3256417279,3256417791,3256418303,3256483839,3256484095,3256484351,3256484607,3256484863,3256485887,3256487935,3256488191,3256488447,3256488703,3256488959,3256489215,3256489471,3256489983,3256490239,3256490495,3256490751,3256491007,3256491263,3256491519,3256492031,3256501503,3256501759,3256502271,3256502527,3256502783,3256503039,3256503295,3256509439,3256509695,3256509951,3256510207,3256510463,3256511487,3256511999,3256513023,3256513535,3256513791,3256514047,3256514303,3256514559,3256516607,3256516863,3256517119,3256517375,3256517631,3256517887,3256518143,3256518399,3256518655,3256518911,3256519167,3256519423,3256519679,3256519935,3256520447,3256520703,3256521983,3256522239,3256522751,3256524287,3256524799,3256525823,3256526847,3256527871,3256528895,3256529919,3256530943,3256531967,3256532991,3256533247,3256533503,3256533759,3256534015,3256534271,3256534527,3256534783,3256535039,3256535295,3256535551,3256535807,3256536063,3256536319,3256536575,3256536831,3256537087,3256537343,3256537855,3256538111,3256538367,3256538623,3256538879,3256539135,3256539391,3256539647,3256539903,3256540159,3256540415,3256540927,3256541183,3256541439,3256541695,3256541951,3256542207,3256542719,3256543231,3256543487,3256543743,3256543999,3256544255,3256544511,3256544767,3256545023,3256545279,3256549375,3256614911,3256615935,3256616959,3256617983,3256619007,3256621055,3256622079,3256623103,3256624127,3256625151,3256626175,3256626687,3256627199,3256628223,3256629247,3256631295,3256633343,3256634367,3256635391,3256636415,3256638463,3256639487,3256640511,3256641535,3256642559,3256643583,3256644607,3256645631,3256646655,3256647679,3256648703,3256649727,3256650751,3256651775,3256652799,3256653823,3256654847,3256655103,3256655359,3256655871,3256656895,3256657151,3256657407,3256657919,3256658943,3256662015,3256663039,3256664063,3256664319,3256665087,3256666111,3256667135,3256667647,3256671231,3256672255,3256673023,3256673279,3256674303,3256675327,3256677375,3256678399,3256680447,3256688639,3256692735,3256693759,3256694271,3256694527,3256694783,3256695807,3256696831,3256697343,3256697599,3256697855,3256698367,3256698623,3256698879,3256699391,3256699903,3256700671,3256700927,3256701183,3256701695,3256701951,3256705279,3256705791,3256706047,3256706303,3256706559,3256706815,3256709631,3256709887,3256710655,3256711167,3256711423,3256713215,3256727551,3256727807,3256728063,3256728575,3256729599,3256731647,3256732671,3256732927,3256733183,3256733439,3256733695,3256735743,3256737791,3256745983,3256778751,3256786943,3256787199,3256787455,3256787711,3256787967,3256788223,3256788479,3256788735,3256788991,3256789247,3256789503,3256789759,3256790015,3256790271,3256790527,3256791039,3256791551,3256791807,3256792063,3256792319,3256792575,3256792831,3256793087,3256793343,3256793855,3256794111,3256794367,3256794623,3256794879,3256795135,3256811519,3256811775,3256812031,3256812543,3256813055,3256813567,3256813823,3256814079,3256814335,3256814591,3256815103,3256819711,3256821503,3256821759,3256822271,3256822527,3256822783,3256823807,3256824319,3256824575,3256824831,3256825087,3256825343,3256825599,3256825855,3256826111,3256826367,3256826623,3256826879,3256827135,3256827391,3256827647,3256827903,3256828159,3256828415,3256828927,3256829439,3256829951,3256830463,3256830975,3256831743,3256831999,3256833023,3256833535,3256833791,3256834047,3256835071,3256835327,3256835583,3256836095,3256836351,3256836863,3256837119,3256838143,3256839167,3256839423,3256839679,3256839935,3256840191,3256844287,3256844799,3256845055,3256845311,3256846335,3256847359,3256847615,3256847871,3256848127,3256848383,3256848639,3256849407,3256849663,3256849919,3256850175,3256850431,3256851455,3256851967,3256852479,3256853503,3256854527,3256855295,3256855551,3256855807,3256856575,3256857599,3256859647,3256860671,3256860927,3256861183,3256861439,3256862207,3256862463,3256862719,3256863743,3256864255,3256864511,3256864767,3256865791,3256866815,3256867839,3256868095,3256868351,3256868607,3256868863,3256869119,3256869375,3256869631,3256870911,3256871167,3256871935,3256872447,3256872703,3256872959,3256873983,3256874495,3256874751,3256875007,3256875519,3256875775,3256876031,3256876287,3256876543,3256876799,3256896255,3256896511,3256896767,3256897023,3256897279,3256897535,3256898047,3256898303,3256898559,3256899071,3256899583,3256900607,3256901631,3256902655,3256903679,3256903935,3256904191,3256904447,3256904703,3256905727,3256906751,3256907775,3256908031,3256908287,3256908543,3256908799,3256909567,3256909823,3256910079,3256910335,3256910847,3256911871,3256912895,3256913919,3256914943,3256915455,3256915711,3256915967,3256916991,3256918015,3256918271,3256918527,3256918783,3256919039,3256919295,3256919551,3256920063,3256920831,3256921087,3256922111,3256929023,3256929279,3256929791,3256930047,3256933375,3256933631,3256933887,3256934399,3256934655,3256934911,3256935423,3256935679,3256936447,3256936959,3256937215,3256937471,3256939263,3256939519,3256940543,3256941055,3256941311,3256941567,3256942591,3256944639,3256944895,3256945151,3256945407,3256945663,3256945919,3256946175,3256946431,3256946687,3256946943,3256947711,3256948735,3256949759,3256950015,3256950271,3256950527,3256950783,3256951039,3256951295,3256952831,3256953343,3256953855,3256954879,3256955391,3256955903,3256956159,3256957183,3256957439,3256958207,3256958463,3256958719,3256958975,3256959487,3256959999,3256960255,3256960511,3256961023,3256962559,3256962815,3256963071,3256963327,3256963583,3256963839,3256964095,3256965119,3256966143,3256967167,3256967423,3256967679,3256968191,3256969215,3256970239,3256970495,3256970751,3256971007,3256971263,3256971775,3256972031,3256972287,3256973311,3256973823,3256975359,3256981503,3256982527,3256983551,3256988671,3256989183,3256989695,3256989951,3256990207,3256990463,3256990719,3256991231,3256991487,3256991743,3257010943,3257011199,3257011455,3257012223,3257017343,3257022463,3257023999,3257024511,3257024767,3257025023,3257025535,3257025791,3257026047,3257027583,3257028607,3257029631,3257030655,3257031679,3257032703,3257033727,3257034751,3257035519,3257035775,3257036799,3257040895,3257041919,3257042943,3257043455,3257047039,3257047295,3257048063,3257049087,3257049343,3257049599,3257049855,3257050111,3257051135,3257052159,3257052415,3257052671,3257057279,3257058303,3257058815,3257059071,3257059327,3257060351,3257065471,3257065727,3257065983,3257066495,3257066751,3257067007,3257067263,3257067519,3257067775,3257068031,3257068287,3257068543,3257069567,3257070591,3257070847,3257071103,3257071359,3257071615,3257071871,3257072127,3257072383,3257072639,3257073663,3257074943,3257075199,3257075967,3257076223,3257076479,3257076735,3257077247,3257077759,3257082367,3257082623,3257083391,3257083903,3257084415,3257084671,3257084927,3257086975,3257088255,3257088511,3257089023,3257090047,3257092351,3257092607,3257092863,3257093119,3257093631,3257093887,3257094655,3257095167,3257096191,3257097215,3257097471,3257097983,3257098239,3257099263,3257102335,3257102847,3257103103,3257104383,3257104639,3257104895,3257105407,3257105663,3257106431,3257118719,3257119743,3257120255,3257120511,3257120767,3257121279,3257121535,3257121791,3257122303,3257122559,3257122815,3257131007,3257132031,3257133055,3257134079,3257135103,3257137151,3257138175,3257139199,3257139455,3257143295,3257143807,3257144063,3257144319,3257144575,3257144831,3257145087,3257145343,3257145599,3257146111,3257146367,3257148415,3257149439,3257150463,3257151487,3257154047,3257154559,3257155583,3257156095,3257157631,3257158655,3257159679,3257160191,3257160447,3257160703,3257161727,3257161983,3257162751,3257163263,3257163519,3257163775,3257164799,3257165823,3257166847,3257167103,3257167359,3257167615,3257167871,3257168895,3257169919,3257170175,3257170431,3257170943,3257171967,3257174271,3257174527,3257175039,3257176063,3257177087,3257178111,3257180159,3257180415,3257180671,3257180927,3257181183,3257181439,3257181695,3257182207,3257182463,3257182719,3257182975,3257183743,3257183999,3257184255,3257184511,3257184767,3257185279,3257186303,3257187327,3257188351,3257189375,3257190399,3257191423,3257192447,3257192703,3257192959,3257193471,3257195775,3257196031,3257196287,3257196543,3257200639,3257201151,3257201407,3257201663,3257202687,3257204735,3257204991,3257205247,3257225215,3257225471,3257225727,3257225983,3257226239,3257227263,3257228287,3257229311,3257229567,3257229823,3257230079,3257230335,3257231359,3257268223,3257268479,3257268735,3257269247,3257269503,3257269759,3257270015,3257270271,3257271295,3257271807,3257272063,3257272319,3257273343,3257274367,3257275391,3257276415,3257277439,3257278463,3257279487,3257280511,3257281535,3257282559,3257283583,3257284607,3257285631,3257286655,3257294847,3257303039,3257311231,3257331455,3257331711,3257335807,3257342975,3257343999,3257345023,3257346047,3257347071,3257348095,3257352191,3257353215,3257354239,3257355775,3257356287,3257356799,3257357311,3257357567,3257357823,3257361151,3257361407,3257361663,3257361919,3257362431,3257363455,3257363711,3257363967,3257364223,3257364479,3257367039,3257367551,3257368575,3257371903,3257372159,3257372415,3257372671,3257373695,3257374207,3257376767,3257377791,3257378815,3257379839,3257382911,3257383167,3257385983,3257387007,3257388031,3257389055,3257390079,3257391103,3257391615,3257393151,3257394175,3257395199,3257396223,3257397247,3257401343,3257453567,3257454591,3257455103,3257455359,3257455615,3257461759,3257462783,3257463039,3257463295,3257463551,3257463807,3257464063,3257464319,3257464831,3257465087,3257465343,3257465855,3257466879,3257467391,3257467903,3257468927,3257469183,3257469439,3257469951,3257470975,3257471231,3257471487,3257472255,3257472511,3257472767,3257475071,3257476095,3257476607,3257476863,3257477119,3257478143,3257479167,3257480191,3257481215,3257481471,3257481727,3257482239,3257482751,3257483007,3257483263,3257491455,3257495551,3257496575,3257497087,3257497343,3257497599,3257498623,3257499647,3257532415,3257542655,3257542911,3257543423,3257543679,3257544191,3257544703,3257544959,3257545215,3257546495,3257546751,3257548799,3257549823,3257550335,3257551359,3257551871,3257552127,3257552383,3257552639,3257552895,3257553407,3257553663,3257554687,3257554943,3257555967,3257556223,3257556479,3257557503,3257558015,3257558527,3257559039,3257559551,3257560063,3257560575,3257561087,3257561599,3257562111,3257563647,3257564159,3257564671,3257565183,3257573375,3257574143,3257577471,3257581567,3257584639,3257584895,3257585151,3257585663,3257589759,3257663487,3257729023,3257731071,3257732095,3257732607,3257734143,3257734399,3257734655,3257734911,3257735679,3257736191,3257737471,3257737727,3257737983,3257738239,3257738751,3257740543,3257740799,3257741055,3257741567,3257742335,3257743615,3257747199,3257747455,3257748479,3257749503,3257753087,3257753343,3257753855,3257754623,3257754879,3257755135,3257755391,3257756159,3257756415,3257761279,3257761791,3257763583,3257763839,3257765375,3257768703,3257771263,3257771519,3257771775,3257772031,3257772287,3257772543,3257775359,3257775615,3257776383,3257779199,3257779711,3257780223,3257780479,3257782271,3257784319,3257784575,3257784831,3257787135,3257787391,3257788415,3257788927,3257789439,3257789951,3257794559,3257835519,3257835775,3257836543,3257837567,3257843711,3257860095,3257925631,3257925887,3257926143,3257926399,3257926655,3257949183,3257949439,3257949695,3257949951,3257950207,3257951231,3257953279,3257961471,3257962495,3257962751,3257963519,3257964543,3257964799,3257965055,3257965311,3257965567,3257967615,3257968639,3257969663,3257970175,3257970687,3257971711,3257972735,3257973759,3257974271,3257974527,3257974783,3257975295,3257975807,3257976319,3257976575,3257976831,3257977087,3257977343,3257977599,3257977855,3257978111,3257978367,3257978623,3257978879,3257979135,3257979391,3257979647,3257979903,3257980159,3257980415,3257980671,3257980927,3257981183,3257981439,3257981695,3257981951,3257982975,3257983487,3257983999,3257985023,3257986047,3257987327,3257987583,3257987839,3257988095,3257989119,3257989631,3257989887,3257990143,3257990655,3257990911,3257991167,3257992191,3257992703,3257992959,3257993215,3257994239,3257995263,3257995775,3257996031,3257996287,3257996543,3258003711,3258003967,3258004479,3258004991,3258005247,3258005503,3258006527,3258008063,3258008575,3258009087,3258009343,3258009599,3258010623,3258010879,3258011135,3258011391,3258011647,3258012671,3258012927,3258013183,3258013439,3258013695,3258014719,3258014975,3258015231,3258015743,3258016767,3258018815,3258019327,3258019583,3258019839,3258020351,3258020607,3258021119,3258021887,3258022911,3258023167,3258023423,3258023679,3258023935,3258056703,3258056959,3258057215,3258057471,3258057727,3258057983,3258058239,3258058495,3258059007,3258059519,3258059775,3258060799,3258061311,3258061567,3258062847,3258063103,3258063359,3258063871,3258064127,3258064383,3258065151,3258065407,3258065663,3258065919,3258066175,3258066431,3258066943,3258067199,3258067455,3258067967,3258068223,3258068479,3258068991,3258069247,3258069503,3258069759,3258070015,3258070271,3258070527,3258070783,3258071295,3258071551,3258071807,3258072063,3258072319,3258072575,3258072831,3258073087,3258074111,3258074879,3258075135,3258075647,3258075903,3258076159,3258076415,3258076927,3258077183,3258077439,3258077695,3258077951,3258078207,3258078463,3258078719,3258078975,3258079231,3258079487,3258079743,3258079999,3258080255,3258081023,3258081279,3258081535,3258081791,3258082047,3258082303,3258082559,3258082815,3258083071,3258083583,3258083839,3258084351,3258084607,3258084863,3258085119,3258085631,3258085887,3258086143,3258086399,3258086655,3258086911,3258087167,3258087423,3258087679,3258087935,3258088191,3258088447,3258088703,3258088959,3258089215,3258090495,3258091519,3258092287,3258092543,3258092799,3258093567,3258094591,3258095359,3258095615,3258095871,3258096127,3258096383,3258097663,3258097919,3258098175,3258098431,3258098687,3258098943,3258099199,3258099455,3258099711,3258099967,3258100223,3258100735,3258100991,3258101247,3258101503,3258101759,3258102015,3258102271,3258102527,3258102783,3258103039,3258103295,3258103551,3258103807,3258104319,3258104575,3258104831,3258105343,3258105599,3258105855,3258106879,3258107135,3258107391,3258107647,3258107903,3258108415,3258108927,3258109183,3258109439,3258109951,3258110207,3258110463,3258110975,3258111487,3258111743,3258111999,3258112255,3258112511,3258112767,3258113023,3258113535,3258113791,3258114303,3258116351,3258116607,3258117119,3258118143,3258118399,3258118655,3258118911,3258119167,3258120191,3258120703,3258121215,3258121727,3258121983,3258122239,3258187775,3258253311,3258253567,3258254079,3258254335,3258255359,3258265599,3258266623,3258266879,3258267135,3258267391,3258267647,3258268671,3258268927,3258269183,3258269695,3258270719,3258270975,3258271231,3258271487,3258271743,3258272767,3258273791,3258275071,3258275327,3258275839,3258279935,3258280959,3258281983,3258282239,3258282495,3258283007,3258283519,3258284031,3258284287,3258284543,3258285055,3258286079,3258286591,3258287871,3258288127,3258288383,3258288639,3258288895,3258289151,3258289663,3258289919,3258290175,3258291199,3258292223,3258293247,3258294271,3258297343,3258297599,3258298111,3258298367,3258300415,3258301439,3258302463,3258303487,3258304511,3258305535,3258308095,3258308607,3258318847,3258320895,3258321919,3258322943,3258326015,3258327039,3258335231,3258336255,3258337279,3258339327,3258340351,3258341375,3258342399,3258343423,3258351615,3258352639,3258353663,3258354687,3258355711,3258355967,3258356223,3258356479,3258356735,3258358783,3258359807,3258360831,3258361855,3258362879,3258363903,3258364927,3258365951,3258366975,3258367999,3258384383,3258384639,3258385407,3258386431,3258387455,3258392063,3258392319,3258394623,3258394879,3258395391,3258395647,3258396671,3258404863,3258405887,3258407935,3258408959,3258410495,3258410751,3258411007,3258411263,3258411519,3258417151,3258417407,3258417663,3258418175,3258418687,3258419199,3258419711,3258420223,3258421247,3258422271,3258423295,3258424319,3258424575,3258424831,3258425599,3258425855,3258426111,3258427647,3258427903,3258428159,3258428415,3258430719,3258431231,3258431487,3258431999,3258432255,3258433023,3258441727,3258441983,3258442239,3258442495,3258442751,3258443775,3258444287,3258445823,3258446847,3258447359,3258447871,3258448895,3258449663,3258449919,3258468351,3258469375,3258470399,3258471423,3258472447,3258472703,3258472959,3258473471,3258474495,3258486783,3258487807,3258488063,3258488319,3258488575,3258488831,3258489343,3258492927,3258494463,3258495999,3258496255,3258496511,3258496767,3258497023,3258499071,3258500095,3258501119,3258503935,3258504191,3258504703,3258504959,3258505215,3258505727,3258506495,3258506751,3258507263,3258507775,3258508031,3258508287,3258508799,3258509055,3258509311,3258509567,3258509823,3258510079,3258510335,3258511359,3258511615,3258511871,3258512383,3258512639,3258512895,3258513407,3258514431,3258514943,3258515199,3258515455,3258580991,3258587135,3258588159,3258588927,3258589439,3258589695,3258589951,3258590207,3258590719,3258590975,3258591487,3258591743,3258591999,3258592255,3258592511,3258592767,3258593023,3258593279,3258595327,3258595839,3258596095,3258596351,3258596607,3258596863,3258597375,3258597887,3258598143,3258598399,3258598655,3258599423,3258600959,3258601471,3258601983,3258602495,3258602751,3258613759,3258619903,3258620415,3258620927,3258621951,3258630143,3258634239,3258636287,3258637311,3258637823,3258638079,3258638335,3258642431,3258642687,3258642943,3258643967,3258644223,3258644479,3258646527,3258647039,3258647807,3258648063,3258649599,3258649855,3258652671,3258653695,3258654719,3258656767,3258657023,3258658303,3258658559,3258659839,3258660863,3258661375,3258681343,3258682367,3258682879,3258683135,3258686719,3258686975,3258687487,3258688511,3258689023,3258689535,3258689791,3258690047,3258690559,3258691583,3258691839,3258692351,3258692607,3258692863,3258693119,3258693375,3258693631,3258693887,3258694143,3258694399,3258694655,3258694911,3258696703,3258697727,3258698751,3258699775,3258700799,3258701311,3258701823,3258702847,3258703359,3258703615,3258703871,3258707967,3258708991,3258709503,3258709759,3258710015,3258710271,3258710527,3258710783,3258711039,3258712063,3258728447,3258729471,3258729727,3258729983,3258730239,3258730495,3258730751,3258731007,3258731263,3258731519,3258731775,3258732031,3258732287,3258732543,3258732799,3258733055,3258733311,3258734079,3258734335,3258734591,3258745855,3258746879,3258763263,3258763519,3258763775,3258764031,3258764287,3258764543,3258764799,3258765055,3258765311,3258766335,3258767359,3258767615,3258767871,3258769919,3258770431,3258771455,3258772479,3258773503,3258774015,3258774271,3258774527,3258776063,3258776319,3258776575,3258777599,3258778623,3258779647,3258779903,3258780159,3258780671,3258781695,3258782719,3258783743,3258784255,3258784511,3258784767,3258785279,3258785535,3258785791,3258786047,3258786303,3258786815,3258787839,3258788095,3258788351,3258788863,3258789887,3258790911,3258791935,3258792447,3258792703,3258792959,3258793983,3258794495,3258794751,3258795007,3258796031,3258797055,3258797311,3258797567,3258798079,3258798335,3258798591,3258799103,3258799359,3258799615,3258800127,3258801151,3258802175,3258806271,3258807295,3258808319,3258808575,3258808831,3258809343,3258810367,3258811391,3258812415,3258813439,3258814463,3258816511,3258817535,3258818047,3258818303,3258818559,3258834943,3258835967,3258836991,3258837247,3258837503,3258838015,3258839039,3258840831,3258843135,3258843391,3258843647,3258844159,3258844671,3258844927,3258847231,3258847487,3258847743,3258847999,3258848255,3258848767,3258849023,3258849279,3258850559,3258850815,3258851327,3258853375,3258853631,3258853887,3258854143,3258854399,3258856447,3258857471,3258858495,3258859519,3258859775,3258860031,3258860543,3258861567,3258863615,3258867711,3258868735,3258869503,3258869759,3258870015,3258870271,3258870527,3258870783,3258871807,3258873855,3258874367,3258874879,3258875391,3258875903,3258876927,3258877951,3258878975,3258881023,3258882047,3258883071,3258883327,3258883583,3258884095,3258884351,3258884607,3258884863,3258885119,3258886143,3258887167,3258887679,3258887935,3258889215,3258890239,3258891263,3258891519,3258891775,3258892287,3258894335,3258895359,3258897919,3258898431,3258899455,3258900479,3258901503,3258902527,3258902783,3258903039,3258903295,3258903551,3258903807,3258904063,3258904575,3258905599,3258906623,3258906879,3258907391,3258907647,3258908671,3258941439,3258943487,3258944511,3258945535,3258945791,3258946047,3258946303,3258946559,3258947583,3258948607,3258949631,3258972159,3258974207,3259011071,3259012095,3259013119,3259014143,3259039743,3259105279,3259170815,3259191295,3259192319,3259222015,3259222271,3259236351,3259236863,3259237119,3259243007,3259243263,3259243519,3259244543,3259244799,3259247615,3259247871,3259293951,3259294207,3259301887,3259302143,3259302399,3259303423,3259305983,3259311103,3259311615,3259312639,3259313151,3259317247,3259318271,3259318527,3259326975,3259327487,3259328511,3259328767,3259334655,3259338751,3259339519,3259339775,3259340031,3259340799,3259341823,3259342847,3259343103,3259343359,3259343615,3259343871,3259344127,3259344639,3259344895,3259345151,3259345663,3259345919,3259346431,3259346687,3259346943,3259347199,3259347455,3259347711,3259347967,3259348223,3259348479,3259348735,3259348991,3259351039,3259351551,3259352063,3259352575,3259353087,3259354111,3259354367,3259354623,3259354879,3259355135,3259359231,3259366655,3259366911,3259367423,3259427327,3259427583,3259432959,3259435263,3259435519,3259460351,3259460607,3259465215,3259465471,3259466239,3259466495,3259491071,3259491327,3259497983,3259498239,3259498495,3259507711,3259507967,3259562495,3259562751,3259599359,3259599615,3259638783,3259639039,3259640831,3259641343,3259650047,3259650559,3259650815,3259652095,3259656191,3259658239,3259760639,3259761151,3259763199,3259764223,3259764479,3259764735,3259765247,3259765503,3259767295,3259767807,3259768063,3259768831,3259769855,3259770367,3259771135,3259771391,3259771903,3259772159,3259772415,3259772671,3259772927,3259774207,3259774463,3259775487,3259775999,3259787263,3259787775,3259788287,3259788799,3259789567,3259789823,3259790079,3259790335,3259791359,3259791871,3259792383,3259793407,3259794431,3259794943,3259795199,3259795455,3259796223,3259796479,3259797247,3259797503,3259797759,3259798015,3259798527,3259798783,3259799295,3259800063,3259800575,3259803647,3259803903,3259804159,3259804671,3259804927,3259805183,3259807743,3259808255,3259808767,3259809791,3259810047,3259811327,3259811839,3259812863,3259813887,3259814399,3259814655,3259816191,3259816703,3259816959,3259817471,3259817983,3259818239,3259818495,3259818751,3259819007,3259819775,3259820031,3259821055,3259821567,3259821823,3259822079,3259822591,3259823103,3259823615,3259823871,3259824127,3259825151,3259825407,3259825663,3259826175,3259865599,3259865855,3259866623,3259866879,3259891711,3259957247,3259958271,3259959295,3259960319,3259961343,3259962367,3259963391,3259964415,3259965439,3259966463,3259967487,3259968511,3259969535,3259970559,3259971583,3259972607,3259973631,3259981823,3259990015,3260006399,3260014591,3260018687,3260019711,3260021247,3260021759,3260022271,3260022783,3260284927,3260303871,3260304127,3260322047,3260322303,3260413951,3260414207,3260414463,3260414719,3260414975,3260415999,3260481535,3260481791,3260482047,3260482303,3260482559,3260482815,3260483071,3260483327,3260483583,3260484095,3260484863,3260485119,3260485375,3260485631,3260485887,3260486399,3260486655,3260487167,3260487423,3260487679,3260487935,3260488191,3260488703,3260488959,3260489471,3260489727,3260489983,3260490239,3260490495,3260490751,3260491007,3260491263,3260491519,3260491775,3260492031,3260492287,3260492543,3260492799,3260493055,3260493311,3260493567,3260493823,3260494079,3260494335,3260494591,3260495103,3260495359,3260495871,3260496127,3260496383,3260496895,3260497151,3260497407,3260497663,3260497919,3260498175,3260498431,3260498687,3260498943,3260499711,3260499967,3260500479,3260500735,3260500991,3260501247,3260501503,3260501759,3260502015,3260502271,3260502527,3260502783,3260503039,3260503295,3260503551,3260503807,3260504063,3260504319,3260504575,3260504831,3260505087,3260506367,3260506623,3260508159,3260508415,3260508671,3260509183,3260509439,3260509695,3260510207,3260510719,3260510975,3260511231,3260511487,3260512255,3260512511,3260512767,3260513023,3260513279,3260513791,3260514303,3260514559,3260514815,3260515071,3260515327,3260515583,3260515839,3260516095,3260516351,3260516607,3260516863,3260517119,3260517375,3260517631,3260517887,3260518143,3260518399,3260519423,3260519935,3260520191,3260520447,3260522495,3260522751,3260523007,3260523263,3260523519,3260523775,3260524287,3260524543,3260524799,3260525055,3260525311,3260525567,3260525823,3260526591,3260526847,3260527103,3260527359,3260527615,3260527871,3260528127,3260528383,3260528639,3260528895,3260529151,3260529407,3260529663,3260529919,3260530175,3260530431,3260530687,3260531711,3260532223,3260532479,3260532735,3260532991,3260533247,3260533503,3260533759,3260534015,3260534271,3260534783,3260535039,3260535295,3260535551,3260535807,3260536063,3260536575,3260536831,3260537087,3260537343,3260537599,3260537855,3260538367,3260538623,3260538879,3260539135,3260539391,3260539647,3260539903,3260540159,3260540415,3260540671,3260540927,3260541183,3260541439,3260542975,3260543231,3260543743,3260543999,3260544255,3260544511,3260544767,3260545023,3260545279,3260545535,3260545791,3260546047,3260546303,3260546815,3260547327,3260547583,3260547839,3260548095,3260548351,3260548607,3260549119,3260549375,3260549631,3260549887,3260550143,3260550655,3260551167,3260553983,3260554239,3260554751,3260555263,3260563455,3260571647,3260573695,3260574719,3260575743,3260579839,3260580351,3260580863,3260581375,3260581887,3260582399,3260583423,3260583679,3260583935,3260584447,3260585471,3260585727,3260585983,3260586495,3260587007,3260587519,3260588031,3260596223,3260596735,3260597247,3260597759,3260598783,3260599295,3260599807,3260600319,3260601343,3260601855,3260602367,3260602879,3260603903,3260604415,3260604927,3260605439,3260605951,3260606463,3260607487,3260607999,3260608511,3260609023,3260609535,3260610047,3260610559,3260611071,3260611583,3260612095,3260612607,3260643071,3260643327,3260644095,3260644351,3260678143,3260743679,3260809215,3260874751,3260875519,3260876799,3260877823,3260878847,3260879871,3260880895,3260881919,3260882943,3260883455,3260883967,3260884991,3260886015,3260887039,3260888063,3260889087,3260889343,3260889599,3260889855,3260890111,3260891135,3260892159,3260893183,3260893439,3260894207,3260894719,3260895231,3260898303,3260899327,3260900095,3260900351,3260900607,3260901119,3260903423,3260906239,3260906495,3260907519,3260915711,3260923903,3260927999,3260928255,3260928511,3260928767,3260940287,3261006847,3261007103,3261071359,3261136895,3261202431,3261267967,3261270015,3261271039,3261272063,3261273087,3261273855,3261274367,3261274623,3261274879,3261275135,3261276159,3261276415,3261276671,3261276927,3261277183,3261277695,3261278207,3261279231,3261280255,3261280767,3261281279,3261281535,3261282559,3261282815,3261283327,3261284351,3261284607,3261284863,3261285375,3261286399,3261286655,3261286911,3261287167,3261287935,3261288191,3261288447,3261288703,3261288959,3261289983,3261290495,3261292543,3261293055,3261293567,3261294591,3261294847,3261295103,3261295359,3261295615,3261296639,3261296895,3261297151,3261297663,3261297919,3261298175,3261307903,3261308159,3261308415,3261308671,3261308927,3261333503,3261399039,3261472767,3261473791,3261474047,3261474303,3261474559,3261474815,3261509375,3261509631,3261510655,3261510911,3261511167,3261522687,3261522943,3261525759,3261526015,3261530111,3261595647,3261595903,3261596159,3261596671,3261596927,3261597439,3261597695,3261597951,3261598207,3261598463,3261598719,3261599743,3261600767,3261601791,3261617407,3261617663,3261618175,3261618687,3261619711,3261620479,3261620991,3261622271,3261623295,3261624319,3261624575,3261624831,3261625343,3261626367,3261626623,3261626879,3261627135,3261627391,3261627903,3261628159,3261628415,3261628671,3261628927,3261629183,3261629439,3261629695,3261629951,3261630207,3261630463,3261630719,3261630975,3261631231,3261631743,3261631999,3261632255,3261632511,3261632767,3261633023,3261633535,3261634047,3261634559,3261634815,3261635583,3261635839,3261643775,3261644799,3261652991,3261653503,3261653759,3261654015,3261654271,3261654527,3261654783,3261655039,3261655295,3261655551,3261655807,3261656063,3261656319,3261656575,3261656831,3261657087,3261661183,3261662463,3261662719,3261666559,3261666815,3261669375,3261670399,3261671423,3261673471,3261675519,3261675775,3261676031,3261676543,3261676799,3261677055,3261677567,3261685759,3261687807,3261689855,3261691903,3261694463,3261694975,3261695487,3261695999,3261696511,3261697023,3261698047,3261698559,3261699071,3261699327,3261699583,3261700095,3261700607,3261701119,3261701631,3261702143,3261710335,3261718527,3261726719,3261734911,3261743103,3261751295,3261759487,3261767679,3261775871,3261776383,3261777407,3261777663,3261777919,3261778431,3261778943,3261779455,3261779711,3261779967,3261780479,3261780991,3261781503,3261782015,3261783039,3261784063,3261796351,3261796607,3261796863,3261797119,3261797375,3261797631,3261797887,3261798143,3261798399,3261805567,3261806591,3261810175,3261810687,3261811711,3261812735,3261812991,3261815807,3261816063,3261816575,3261816831,3261820927,3261821183,3261821439,3261821695,3261821951,3261822207,3261822463,3261822719,3261822975,3261823231,3261823487,3261823743,3261823999,3261824255,3261824511,3261824767,3261825023,3261825535,3261827071,3261828095,3261833215,3261833471,3261833727,3261833983,3261834239,3261834751,3261837311,3261838335,3261839359,3261843455,3261843711,3261844479,3261845503,3261850879,3261851135,3261851647,3261855743,3261856767,3261857791,3261923327,3261988863,3261989119,3261989375,3261989887,3261990399,3261990655,3261990911,3261991935,3261992191,3261992447,3261992703,3261992959,3261993471,3261993727,3261993983,3261994495,3261994751,3261995263,3261995519,3261995775,3261996031,3261996543,3261996799,3262001151,3262002175,3262002687,3262003199,3262004223,3262004735,3262005247,3262005759,3262006015,3262006271,3262006527,3262006783,3262007039,3262007295,3262007551,3262007807,3262008063,3262008319,3262008575,3262008831,3262009087,3262009343,3262010367,3262010623,3262010879,3262011135,3262011391,3262012415,3262013439,3262017535,3262017791,3262018047,3262018303,3262018559,3262018815,3262019071,3262019583,3262020607,3262021119,3262021375,3262021631,3262021887,3262022143,3262022911,3262023167,3262023423,3262023679,3262023935,3262024191,3262024447,3262024703,3262025215,3262025471,3262025727,3262026751,3262027263,3262027519,3262027775,3262028287,3262028543,3262028799,3262030847,3262031871,3262032895,3262033151,3262033407,3262033919,3262038015,3262038271,3262038527,3262038783,3262039039,3262039295,3262039551,3262039807,3262040063,3262040319,3262040575,3262041087,3262041343,3262041599,3262041855,3262042111,3262042367,3262042623,3262042879,3262043135,3262043391,3262043647,3262043903,3262044159,3262044415,3262044671,3262044927,3262045183,3262045439,3262045695,3262045951,3262046207,3262049279,3262049535,3262049791,3262050047,3262050303,3262050559,3262050815,3262051071,3262051583,3262051839,3262052351,3262052607,3262052863,3262053119,3262053375,3262053631,3262053887,3262054143,3262054399,3262099199,3262099455,3262108671,3262108927,3262114047,3262114303,3262119935,3262124031,3262128127,3262136319,3262137599,3262137855,3262138111,3262140415,3262140671,3262141183,3262141439,3262142463,3262142719,3262145023,3262145279,3262146047,3262146303,3262146559,3262146815,3262147583,3262147839,3262148607,3262148863,3262149119,3262149887,3262150911,3262151423,3262151935,3262152191,3262152703,3262185471,3262191615,3262192127,3262192639,3262193663,3262193919,3262194175,3262194431,3262194687,3262195711,3262196735,3262197759,3262200319,3262200575,3262200831,3262201087,3262201343,3262201855,3262202111,3262202879,3262203391,3262203647,3262203903,3262204927,3262205951,3262206463,3262207999,3262209023,3262209279,3262209535,3262210047,3262212095,3262213119,3262214143,3262214655,3262214911,3262215167,3262215423,3262221055,3262221567,3262221823,3262222079,3262223871,3262224895,3262225151,3262225407,3262226431,3262227455,3262227711,3262227967,3262228735,3262229247,3262229503,3262229759,3262235135,3262235647,3262236671,3262238975,3262239231,3262239743,3262240767,3262242303,3262242559,3262242815,3262243327,3262243839,3262244863,3262245119,3262245375,3262246399,3262246655,3262246911,3262248191,3262248447,3262248959,3262249471,3262283775,3262284799,3262285823,3262286079,3262286335,3262286847,3262287871,3262288127,3262288383,3262288895,3262289919,3262316543,3262348799,3262349055,3262382079,3262414847,3262415359,3262416895,3262417407,3262417919,3262418431,3262419455,3262419711,3262419967,3262420479,3262420991,3262421503,3262422015,3262422527,3262423039,3262423551,3262424063,3262424575,3262424831,3262425087,3262425343,3262425599,3262426111,3262426367,3262426623,3262427135,3262427647,3262428159,3262428671,3262429183,3262429695,3262430207,3262430719,3262431231,3262431743,3262432255,3262432767,3262433279,3262433791,3262434303,3262434815,3262435327,3262435583,3262435839,3262436351,3262436863,3262437119,3262437631,3262438399,3262438655,3262438911,3262439423,3262439935,3262440191,3262440447,3262440959,3262441215,3262441471,3262441983,3262442495,3262443007,3262443519,3262444031,3262444543,3262445055,3262445567,3262446591,3262447103,3262447615,3262460415,3262460671,3262460927,3262461183,3262461439,3262461695,3262461951,3262463999,3262472191,3262480383,3262488575,3262496767,3262505471,3262505983,3262506495,3262507007,3262507519,3262508543,3262508799,3262509055,3262509567,3262510079,3262511103,3262511615,3262512127,3262512639,3262513151,3262578687,3262579711,3262580735,3262581759,3262582783,3262583807,3262584063,3262611455,3262627839,3262636031,3262644223,3262648319,3262648831,3262649855,3262650367,3262650623,3262654463,3262654719,3262655231,3262655487,3262658303,3262658559,3262664703,3262670847,3262671359,3262672127,3262673919,3262674175,3262674687,3262675967,3262676479,3262676735,3262678271,3262678527,3262681087,3262681343,3262682623,3262682879,3262686207,3262686463,3262687743,3262687999,3262688255,3262688511,3262688767,3262690815,3262691583,3262692607,3262692863,3262693375,3262701567,3262703103,3262703359,3262703615,3262704127,3262704383,3262707967,3262708223,3262709759,3262710015,3262710271,3262710527,3262712575,3262712831,3262716415,3262716671,3262721535,3262721791,3262722047,3262724351,3262724863,3262725119,3262725631,3262726143,3262726655,3262726911,3262732799,3262733055,3262736383,3262736895,3262741247,3262741503,3262753791,3262754815,3262761727,3262761983,3262766079,3262767103,3262774783,3262775039,3262794751,3262797823,3262806015,3262808063,3262832639,3262836735,3262838783,3262839807,3262872063,3262872319,3262882815,3262883071,3262906367,3262914559,3262914815,3262915071,3262915583,3262916095,3262916607,3262917375,3262917631,3262918655,3262919679,3262920703,3262921727,3262922751,3262923775,3262924031,3262924287,3262924799,3262925823,3262926335,3262943231,3262943487,3262946815,3262947327,3262954495,3262955007,3262955519,3262956543,3262957567,3262957823,3262958591,3262959615,3262960127,3262960639,3262960895,3262961151,3262961663,3262961919,3262962175,3262962687,3262963711,3262964223,3262964479,3262964991,3262965247,3262966271,3262966527,3262967039,3262967295,3262967551,3262968063,3262968831,3262969343,3262969599,3262970111,3262970367,3262970879,3262971135,3262971647,3262971903,3263021055,3263022079,3263027199,3263028223,3263029247,3263030271,3263031295,3263032319,3263033343,3263033855,3263034367,3263034879,3263035391,3263036415,3263036927,3263037439,3263045631,3263053823,3263062015,3263070207,3263070463,3263070719,3263070975,3263071231,3263072255,3263074303,3263074815,3263075327,3263075839,3263077375,3263077887,3263078399,3263079423,3263080447,3263081471,3263082495,3263082751,3263083007,3263083263,3263083519,3263084543,3263085567,3263086591,3263086847,3263087103,3263087359,3263087871,3263088127,3263088383,3263088639,3263089151,3263089407,3263089663,3263089919,3263090175,3263090431,3263090687,3263090943,3263091199,3263091455,3263091711,3263091967,3263092479,3263092735,3263092991,3263093247,3263093503,3263093759,3263094015,3263094527,3263094783,3263095039,3263095295,3263095551,3263095807,3263096063,3263096319,3263096575,3263096831,3263097343,3263097599,3263097855,3263098111,3263098367,3263098623,3263098879,3263099135,3263099391,3263099903,3263100159,3263100415,3263100671,3263100927,3263101183,3263101439,3263101695,3263101951,3263102207,3263102463,3263102719,3263102975,3263120639,3263120895,3263127807,3263128063,3263128575,3263128831,3263129599,3263130111,3263130367,3263130623,3263131647,3263132671,3263133695,3263135999,3263136255,3263136767,3263137535,3263137791,3263138047,3263138303,3263138559,3263138815,3263141887,3263142399,3263143423,3263143935,3263144447,3263144959,3263145215,3263145727,3263145983,3263147007,3263147519,3263148287,3263148543,3263149055,3263149311,3263149567,3263149823,3263150079,3263152127,3263152639,3263152895,3263153151,3263153407,3263153663,3263154175,3263154687,3263154943,3263155711,3263155967,3263157247,3263157759,3263158015,3263161087,3263161343,3263161599,3263162111,3263162367,3263162623,3263162879,3263163903,3263164415,3263164671,3263165439,3263167999,3263168255,3263430655,3263496191,3263503103,3263503359,3263511551,3263512063,3263512575,3263512831,3263513855,3263514111,3263520767,3263545343,3263627263,3263627519,3263628031,3263628287,3263631871,3263632127,3263632383,3263633151,3263633407,3263633663,3263633919,3263634431,3263634943,3263635199,3263635455,3263635711,3263635967,3263636991,3263637247,3263639039,3263639295,3263639551,3263640575,3263641599,3263642623,3263646719,3263647743,3263651839,3263653119,3263653631,3263653887,3263654143,3263654399,3263654911,3263656959,3263657471,3263657727,3263657983,3263659007,3263659263,3263660031,3263661055,3263661311,3263661567,3263661823,3263666175,3263676415,3263677439,3263678463,3263680511,3263690751,3263692799,3263764991,3263765503,3263773951,3263774207,3263774463,3263774719,3263793151,3263793407,3263816959,3263817215,3263823871,3263826943,3263827199,3263827455,3263827711,3263828991,3263829503,3263849983,3263850239,3263858687,3263858943,3263859199,3263871231,3263871487,3263875583,3263876095,3263885311,3263885567,3263886335,3263886591,3263886847,3263887359,3263887615,3263897087,3263897343,3263954943,3263979519,3263987711,3264004095,3264004351,3264004607,3264005119,3264005375,3264005887,3264006143,3264008191,3264012543,3264012799,3264013055,3264013311,3264013567,3264013823,3264014079,3264014335,3264014591,3264014847,3264015103,3264015359,3264015615,3264015871,3264016127,3264016383,3264016639,3264016895,3264017151,3264017663,3264017919,3264018175,3264018431,3264018687,3264018943,3264019199,3264019967,3264020223,3264020479,3264086015,3264133375,3264133631,3264151551,3264184319,3264184831,3264185343,3264185855,3264186367,3264186879,3264187391,3264187903,3264188415,3264189439,3264190463,3264190975,3264191487,3264191999,3264200703,3264205311,3264205823,3264206335,3264206591,3264208895,3264217087,3264282623,3264286719,3264287231,3264287743,3264288255,3264290815,3264296191,3264297727,3264298751,3264299007,3264307199,3264311295,3264311807,3264312063,3264312319,3264312575,3264312831,3264313087,3264313343,3264313599,3264313855,3264314879,3264315135,3264315391,3264317439,3264318463,3264318975,3264319487,3264319743,3264319999,3264320255,3264320511,3264321023,3264321535,3264321791,3264322047,3264322303,3264322559,3264322815,3264323071,3264323327,3264323583,3264324607,3264325631,3264326655,3264327679,3264328703,3264329727,3264330751,3264331775,3264332287,3264332799,3264333311,3264333823,3264334335,3264334591,3264334847,3264335359,3264335871,3264336383,3264337407,3264337919,3264338431,3264338943,3264339455,3264339967,3264340223,3264340479,3264340735,3264340991,3264341503,3264341759,3264342015,3264342783,3264343039,3264343295,3264343551,3264343807,3264344063,3264345087,3264346111,3264347135,3264349183,3264350207,3264351231,3264351743,3264351999,3264354047,3264354303,3264354815,3264355071,3264355327,3264356351,3264357375,3264357631,3264357887,3264358399,3264359423,3264359679,3264359935,3264360191,3264360447,3264360959,3264361215,3264361471,3264361983,3264362239,3264362495,3264363519,3264364031,3264364287,3264364543,3264365055,3264366079,3264366335,3264366591,3264369151,3264369663,3264370687,3264371199,3264371711,3264372223,3264372735,3264373503,3264373759,3264374783,3264375039,3264376063,3264376319,3264376575,3264376831,3264377087,3264377343,3264377599,3264377855,3264378111,3264378367,3264378623,3264378879,3264379135,3264379391,3264379647,3264379903,3264380159,3264380415,3264380671,3264380927,3264381951,3264382975,3264385023,3264386047,3264387071,3264388095,3264389119,3264390143,3264391167,3264392191,3264393215,3264394239,3264395263,3264396287,3264397311,3264398335,3264399359,3264400383,3264401407,3264402431,3264403455,3264404479,3264405503,3264406527,3264407551,3264408575,3264409343,3264409599,3264410623,3264411647,3264413695,3264414719,3264414975,3264415231,3264415743,3264416767,3264417791,3264418047,3264418303,3264419327,3264419839,3264420863,3264421887,3264422143,3264422399,3264422655,3264422911,3264423167,3264423935,3264424959,3264425215,3264425727,3264425983,3264427007,3264428031,3264428287,3264428543,3264428799,3264429055,3264430079,3264430335,3264430591,3264430847,3264431103,3264431615,3264431871,3264432127,3264432639,3264433151,3264433663,3264434175,3264435199,3264436223,3264436479,3264437247,3264437503,3264437759,3264438271,3264438527,3264438783,3264439807,3264440575,3264440831,3264441343,3264441599,3264441855,3264442367,3264442879,3264443135,3264443391,3264444415,3264445439,3264446463,3264447487,3264447743,3264447999,3264449535,3264449791,3264450047,3264450303,3264450559,3264451583,3264451839,3264452095,3264452351,3264452607,3264453631,3264454655,3264455679,3264456703,3264457215,3264457471,3264457727,3264457983,3264458239,3264458751,3264463871,3264466943,3264467711,3264467967,3264468223,3264468479,3264468991,3264469247,3264469503,3264469759,3264470015,3264470271,3264470527,3264470783,3264471039,3264471295,3264471551,3264471807,3264472319,3264472575,3264472831,3264474623,3264475135,3264475391,3264475647,3264476159,3264476415,3264476671,3264477183,3264477439,3264477695,3264478207,3264478719,3264478975,3264479231,3264480255,3264483071,3264483327,3264494079,3264494335,3264495615,3264503807,3264511999,3264544767,3264561151,3264563199,3264564223,3264565247,3264567295,3264567551,3264567807,3264568063,3264568319,3264568575,3264568831,3264569087,3264569343,3264577535,3264585727,3264593919,3264602111,3264603135,3264604159,3264604671,3264605183,3264605439,3264605695,3264606207,3264606463,3264606719,3264606975,3264607231,3264607487,3264607743,3264610303,3264612607,3264613375,3264613631,3264614143,3264614399,3264614655,3264615423,3264615935,3264616191,3264616447,3264616959,3264617471,3264617727,3264618495,3264619007,3264619519,3264620543,3264621567,3264622591,3264622847,3264623103,3264623615,3264624127,3264624383,3264624639,3264625151,3264625407,3264626687,3264627711,3264628735,3264628991,3264629759,3264630015,3264630271,3264630527,3264630783,3264631807,3264632831,3264633855,3264634879,3264636927,3264637951,3264639999,3264640767,3264641023,3264642047,3264643071,3264651263,3264651775,3264652287,3264652799,3264653055,3264653311,3264653823,3264654335,3264654847,3264655359,3264655871,3264656127,3264656383,3264656895,3264657407,3264657919,3264658431,3264659455,3264659967,3264660479,3264660991,3264661503,3264662015,3264662527,3264663039,3264663551,3264664063,3264664319,3264664575,3264665087,3264665599,3264666111,3264666623,3264667135,3264667647,3264668159,3264669183,3264669695,3264670207,3264670719,3264671231,3264671743,3264672255,3264672767,3264673279,3264673791,3264674303,3264674815,3264675327,3264675839,3264676095,3264676351,3264741375,3264749567,3264750079,3264750591,3264751103,3264751615,3264752127,3264752639,3264752895,3264753151,3264753663,3264754175,3264754687,3264754943,3264755199,3264755711,3264756223,3264756735,3264757247,3264757759,3264765951,3264774143,3264782335,3264790527,3264806911,3264815103,3264825343,3264825855,3264826111,3264826367,3264826879,3264827135,3264827391,3264827647,3264828159,3264828415,3264828671,3264829439,3264830207,3264830463,3264830719,3264830975,3264831231,3264831487,3264831743,3264831999,3264832255,3264832511,3264832767,3264833023,3264833535,3264834047,3264834303,3264834559,3264835327,3264835583,3264835839,3264836351,3264836607,3264836863,3264837119,3264837375,3264837631,3264839679,3264840191,3264840447,3264840703,3264840959,3264841215,3264841471,3264841727,3264844031,3264844287,3264844799,3264845311,3264846079,3264846335,3264846591,3264846847,3264847103,3264847871,3264849919,3264850431,3264850687,3264850943,3264851967,3264854015,3264854271,3264854527,3264854783,3264855039,3264855551,3264856063,3264861695,3264862207,3264862463,3264862719,3264862975,3264863231,3264864255,3264865791,3264866047,3264872447,3264880639,3264888831,3264897023,3264905215,3264908799,3264909055,3264913407,3264921599,3264929791,3264937983,3265003519,3265003775,3265004031,3265004287,3265005567,3265006591,3265007103,3265007359,3265007615,3265008639,3265009663,3265009919,3265010175,3265010431,3265010687,3265011711,3265018879,3265019647,3265019903,3265020671,3265020927,3265021951,3265022975,3265023231,3265023487,3265023743,3265023999,3265025023,3265026303,3265027071,3265027583,3265027839,3265028095,3265028607,3265029119,3265029631,3265029887,3265031167,3265032191,3265033215,3265035775,3265036031,3265036287,3265037311,3265037823,3265038079,3265038335,3265039359,3265040383,3265040639,3265041663,3265041919,3265042431,3265043199,3265043455,3265043711,3265044223,3265044479,3265044735,3265044991,3265045503,3265045759,3265046015,3265046527,3265047807,3265048063,3265048319,3265048575,3265048831,3265049087,3265049599,3265050623,3265051135,3265051647,3265051903,3265052159,3265052671,3265053695,3265054207,3265054719,3265055231,3265055743,3265056255,3265056511,3265056767,3265060863,3265061375,3265061631,3265061887,3265062143,3265062399,3265062911,3265063679,3265063935,3265064959,3265067007,3265068031,3265069055,3265134591,3265135103,3265135359,3265135615,3265136639,3265137151,3265137407,3265137663,3265137919,3265138687,3265138943,3265139711,3265140735,3265142271,3265142527,3265142783,3265150975,3265159167,3265167359,3265175551,3265183743,3265191935,3265200127,3265216767,3265217023,3265265663,3265331199,3265340415,3265340671,3265340927,3265341183,3265341439,3265341695,3265341951,3265343487,3265347583,3265352703,3265352959,3265353215,3265355263,3265355775,3265356031,3265357055,3265357311,3265357567,3265357823,3265358847,3265359103,3265359871,3265360127,3265360383,3265360895,3265361919,3265363967,3265366015,3265366271,3265366527,3265367039,3265367295,3265367551,3265367807,3265369343,3265369599,3265369855,3265370111,3265370623,3265370879,3265376255,3265376511,3265378303,3265380095,3265384447,3265386495,3265388543,3265396735,3265462271,3265466367,3265470463,3265473535,3265474559,3265478655,3265479679,3265479935,3265480447,3265483775,3265484799,3265485311,3265485567,3265485823,3265486847,3265495039,3265511423,3265519615,3265523711,3265527807,3265528319,3265528575,3265528831,3265530879,3265531135,3265531391,3265531903,3265537791,3265538047,3265540095,3265544191,3265549311,3265549567,3265550079,3265550335,3265552383,3265553663,3265553919,3265554687,3265554943,3265559551,3265560575,3265568767,3265570815,3265572863,3265576959,3265581055,3265584639,3265584895,3265585151,3265585407,3265590271,3265590527,3265593343,3265594367,3265594879,3265595391,3265595903,3265596415,3265596927,3265597439,3265597951,3265599487,3265599999,3265600255,3265600511,3265601023,3265601535,3265601791,3265602047,3265602303,3265602559,3265602815,3265603071,3265603327,3265603583,3265603839,3265604095,3265604351,3265604607,3265604863,3265605119,3265605375,3265605631,3265605887,3265606143,3265606399,3265606655,3265606911,3265607167,3265607423,3265607935,3265608191,3265608447,3265608703,3265608959,3265609215,3265609471,3265609727,3265617919,3265626111,3265634303,3265642495,3265642751,3265643007,3265643263,3265643775,3265644031,3265644543,3265645055,3265645311,3265647359,3265647871,3265650687,3265658879,3265724415,3265789951,3265824767,3265825023,3265867775,3265868287,3265868543,3265868799,3265869055,3265869311,3265869567,3265869823,3265870847,3265871871,3265876991,3265877503,3265877759,3265878015,3265879039,3265880063,3265886207,3265886463,3265887231,3265887487,3265887743,3265888255,3265896191,3265896447,3265896703,3265896959,3265897215,3265897471,3265898495,3265898751,3265899007,3265899263,3265899519,3265899775,3265900287,3265900543,3265901567,3265902079,3265902335,3265902591,3265903615,3265904127,3265904383,3265904639,3265904895,3265905151,3265905663,3265905919,3265906175,3265906431,3265906687,3265906943,3265907199,3265907455,3265907711,3265908735,3265908991,3265909247,3265909503,3265909759,3265910015,3265910271,3265910527,3265910783,3265911039,3265911295,3265911551,3265911807,3265912063,3265912319,3265912575,3265912831,3265913087,3265913343,3265914367,3265914879,3265915135,3265915391,3265915647,3265915903,3265916159,3265916415,3265916671,3265916927,3265917183,3265917439,3265917695,3265917951,3265918207,3265918463,3265918719,3265918975,3265919231,3265919487,3265919743,3265919999,3265920255,3265920511,3265920767,3265921023,3265986559,3266052095,3266160895,3266161151,3266166271,3266166527,3266242047,3266242303,3266257663,3266257919,3266322431,3266330623,3266338815,3266339071,3266339327,3266339839,3266340095,3266340607,3266340863,3266341119,3266341375,3266341631,3266341887,3266342143,3266342399,3266342655,3266342911,3266343167,3266343423,3266343679,3266343935,3266344191,3266344447,3266344703,3266344959,3266345727,3266345983,3266346495,3266346751,3266347007,3266355199,3266363391,3266371583,3266379775,3266380799,3266381823,3266382847,3266383103,3266383359,3266383615,3266383871,3266384895,3266385919,3266386943,3266387967,3266396159,3266412543,3266420735,3266428927,3266437119,3266445311,3266510847,3266543615,3266545663,3266546175,3266546687,3266547711,3266576383,3266577919,3266578431,3266579455,3266579711,3266580479,3266580735,3266581247,3266581503,3266581759,3266582783,3266583551,3266584575,3266584831,3266585599,3266586111,3266586367,3266586623,3266587647,3266588671,3266589183,3266589439,3266589695,3266589951,3266590463,3266590719,3266591743,3266592767,3266596863,3266597887,3266598655,3266598911,3266599423,3266599679,3266600959,3266603007,3266604031,3266604543,3266604799,3266605055,3266605311,3266605567,3266605823,3266606079,3266607103,3266614783,3266615039,3266616575,3266617087,3266617343,3266619903,3266620415,3266620927,3266621183,3266621439,3266621695,3266621951,3266622207,3266622463,3266623487,3266624511,3266624767,3266625023,3266625279,3266625535,3266626815,3266627071,3266627583,3266628095,3266629119,3266629631,3266630143,3266631679,3266631935,3266632447,3266632703,3266633727,3266633983,3266634239,3266634495,3266634751,3266635775,3266636287,3266636799,3266637567,3266640639,3266640895,3266641919,3266707455,3266715391,3266715647,3266723839,3266732031,3266734079,3266735103,3266735615,3266736127,3266740223,3266748415,3266750463,3266751487,3266752511,3266753535,3266754559,3266755583,3266756607,3266764799,3266766847,3266772991,3266781183,3266789375,3266797567,3266798591,3266798847,3266799103,3266799615,3266799871,3266800383,3266800639,3266800895,3266801663,3266802687,3266802943,3266803199,3266803711,3266803967,3266804735,3266805759,3266813951,3266822143,3266830335,3266836479,3266836991,3266838527,3266969599,3267035135,3267039231,3267040255,3267041279,3267042303,3267042559,3267043327,3267044351,3267045375,3267046399,3267047423,3267048447,3267049471,3267050495,3267051519,3267052543,3267053567,3267054591,3267055615,3267056639,3267057663,3267058687,3267059711,3267060735,3267063807,3267064831,3267065087,3267065343,3267065599,3267065855,3267066111,3267066367,3267066879,3267067903,3267068927,3267069951,3267070975,3267071999,3267073023,3267074047,3267075071,3267076095,3267078143,3267079167,3267080191,3267081215,3267082239,3267083263,3267084287,3267085311,3267086335,3267087359,3267088383,3267089407,3267090431,3267091455,3267092479,3267093503,3267094527,3267095551,3267096575,3267097599,3267098623,3267098879,3267099135,3267099391,3267099647,3267100671,3267166207,3267231743,3267254783,3267255295,3267260415,3267260671,3267275263,3267275775,3267277311,3267277823,3267280383,3267280639,3267297279,3267362815,3267428351,3267444735,3267461119,3267485695,3267493887,3267494143,3267498239,3267498495,3267498751,3267504383,3267504639,3267505151,3267507711,3267508223,3267508735,3267508991,3267509247,3267509503,3267509759,3267510271,3267512831,3267513343,3267514367,3267516415,3267517439,3267517951,3267518463,3267524607,3267526655,3267527679,3267529215,3267529471,3267529727,3267530751,3267534335,3267534591,3267538943,3267540223,3267540479,3267541759,3267542527,3267542783,3267543039,3267543295,3267543551,3267544319,3267544831,3267545087,3267545855,3267546111,3267546623,3267547135,3267547391,3267547647,3267549183,3267550207,3267551231,3267551743,3267551999,3267552255,3267553023,3267553791,3267554303,3267554815,3267555071,3267555327,3267555583,3267556095,3267556351,3267556607,3267556863,3267557375,3267557631,3267557887,3267558399,3267558911,3267559423,3267567615,3267575807,3267579903,3267580927,3267581183,3267581439,3267581695,3267581951,3267582463,3267582719,3267582975,3267583999,3267585279,3267585535,3267586047,3267588095,3267590143,3267592191,3267612671,3267616767,3267622911,3267624959,3267625471,3267625727,3267625983,3267626239,3267626495,3267626751,3267627007,3267627519,3267627775,3267628031,3267628287,3267628543,3267628799,3267629055,3267629311,3267629567,3267629823,3267630079,3267630591,3267630847,3267631103,3267631615,3267632127,3267632639,3267632895,3267633151,3267633663,3267634175,3267635711,3267635967,3267636223,3267636735,3267636991,3267637247,3267637503,3267637759,3267638271,3267638527,3267638783,3267639295,3267639807,3267640063,3267640319,3267640575,3267640831,3267641087,3267641599,3267641855,3267642111,3267642367,3267642623,3267642879,3267643135,3267643391,3267643647,3267643903,3267644159,3267644415,3267644671,3267644927,3267645183,3267645439,3267645695,3267645951,3267647487,3267647743,3267647999,3267648255,3267648511,3267649023,3267649279,3267649535,3267650559,3267651071,3267651327,3267651583,3267651839,3267652095,3267652351,3267652607,3267652863,3267653119,3267653375,3267653887,3267654143,3267654911,3267655167,3267655679,3267656191,3267656447,3267657215,3267657471,3267657727,3267657983,3267658239,3267658495,3267658751,3267659263,3267659519,3267659775,3267660287,3267660543,3267660799,3267661311,3267661567,3267661823,3267662847,3267663103,3267663359,3267663871,3267664127,3267664383,3267664639,3267664895,3267665919,3267667199,3267667455,3267667967,3267668223,3267668479,3267670015,3267671551,3267671807,3267672063,3267672319,3267672575,3267672831,3267673087,3267673343,3267673599,3267673855,3267674367,3267674879,3267675135,3267675391,3267675647,3267675903,3267676159,3267676415,3267676927,3267677695,3267678207,3267678719,3267679487,3267679743,3267679999,3267680255,3267680767,3267681279,3267681535,3267681791,3267682047,3267682303,3267682559,3267682815,3267683071,3267683839,3267684351,3267685119,3267685375,3267685887,3267686399,3267686655,3267687935,3267688191,3267688703,3267688959,3267689727,3267689983,3267690495,3267741439,3267741695,3267756031,3267821567,3267887103,3268017407,3268017663,3268149247,3268165631,3268173823,3268182015,3268198399,3268214783,3268224767,3268225023,3268235263,3268235519,3268280319,3268345855,3268411391,3268425215,3268425727,3268426495,3268426751,3268427775,3268428031,3268428287,3268428543,3268429055,3268429311,3268429567,3268429823,3268476927,3268542463,3268544255,3268544511,3268607999,3268673535,3268739071,3268739327,3268739583,3268739839,3268740095,3268740351,3268740607,3268740863,3268741119,3268741375,3268741631,3268741887,3268742143,3268742399,3268742655,3268742911,3268743167,3268743423,3268743679,3268743935,3268744191,3268744447,3268744703,3268744959,3268745215,3268745471,3268745727,3268745983,3268746239,3268746495,3268746751,3268747007,3268747263,3268755455,3268756479,3268756735,3268763647,3268764159,3268764671,3268765183,3268765695,3268766719,3268766975,3268767231,3268767743,3268768255,3268768767,3268769279,3268769791,3268770303,3268770815,3268771327,3268771839,3268788223,3268804607,3268869375,3268870143,3268881919,3268882175,3268920575,3268920831,3268932351,3268932607,3268935679,3269066751,3269132287,3269197823,3269263359,3269264639,3269264895,3269271039,3269271551,3269272831,3269273087,3269273343,3269273855,3269275647,3269275903,3269276159,3269277183,3269277695,3269277951,3269280255,3269280767,3269281023,3269281279,3269281535,3269282047,3269282303,3269282559,3269282815,3269283327,3269283583,3269284863,3269285375,3269285631,3269285887,3269286399,3269286655,3269288703,3269288959,3269290495,3269290751,3269291263,3269291519,3269291775,3269292287,3269303039,3269303295,3269303551,3269303807,3269305855,3269306879,3269310975,3269311231,3269311743,3269311999,3269313791,3269314303,3269317887,3269318399,3269318911,3269319167,3269319423,3269320447,3269322239,3269322495,3269322751,3269323263,3269327871,3269328383,3269394431,3269419007,3269427199,3269430271,3269435391,3269443583,3269459967,3269525503,3269591039,3269627391,3269627647,3269631999,3269632255,3269638399,3269638655,3269656575,3269722111,3269771007,3269771263,3269787647,3269853183,3269918719,3269984255,3270049791,3270051839,3270052863,3270053887,3270054911,3270055935,3270056959,3270057471,3270057727,3270057983,3270060287,3270060543,3270060799,3270061055,3270062591,3270062847,3270065151,3270066175,3270074367,3270074623,3270074879,3270076415,3270077439,3270078463,3270086655,3270088447,3270088703,3270090751,3270096895,3270098943,3270107135,3270111231,3270246399,3270377471,3270381567,3270402047,3270410239,3270443007,3270508543,3270639615,3270640127,3270640383,3270640639,3270642175,3270642687,3270643199,3270643711,3270644223,3270644735,3270645247,3270645759,3270646271,3270646527,3270646783,3270647295,3270647807,3270648063,3270648319,3270648575,3270648831,3270649087,3270649343,3270649599,3270649855,3270650111,3270650367,3270650623,3270651135,3270651391,3270651647,3270651903,3270652415,3270652671,3270652927,3270653183,3270653439,3270653695,3270653951,3270654463,3270654719,3270654975,3270655231,3270655487,3270655743,3270655999,3270664191,3270666239,3270667263,3270668287,3270669311,3270670335,3270672127,3270672383,3270680575,3270684671,3270688767,3270836223,3270901759,3270903295,3270903551,3270903807,3270905855,3270909951,3270910975,3270911487,3270911743,3270911999,3270913023,3270920703,3270921215,3270921471,3270921727,3270922239,3270922495,3270923263,3270923519,3270924287,3270925311,3270926335,3270926591,3270926847,3270927103,3270927359,3270927615,3270927871,3270928127,3270928383,3270928895,3270929407,3270929663,3270929919,3270930431,3270930943,3270931199,3270931455,3270931967,3270932479,3270932991,3270933503,3270934015,3270934527,3270967295,3270968319,3270968831,3270969343,3270969855,3270970367,3270970879,3270971903,3270972415,3270973951,3270974463,3270974975,3270975487,3270975743,3270975999,3270976255,3270976511,3270976767,3270977023,3270977279,3270977535,3270977791,3270978047,3270978303,3270978559,3270978815,3270979071,3270979327,3270979583,3270979839,3270980095,3270980351,3270980607,3270980863,3270981631,3270981887,3270982143,3270982399,3270982655,3270982911,3270983167,3270983423,3270983679,3270991871,3271000063,3271008255,3271008767,3271009279,3271009791,3271010303,3271010815,3271011327,3271012863,3271013375,3271013887,3271014399,3271014911,3271015423,3271015935,3271016447,3271024639,3271032831,3271098367,3271163903,3271229439,3271249919,3271250175,3271350783,3271351039,3271360511,3271365887,3271366143,3271366399,3271366655,3271371263,3271371519,3271371775,3271372031,3271372287,3271372799,3271373055,3271373311,3271373567,3271373823,3271374079,3271374335,3271374847,3271375359,3271375871,3271376383,3271376639,3271376895,3271377407,3271377919,3271378687,3271378943,3271380991,3271381247,3271381503,3271381759,3271382527,3271383039,3271383295,3271383551,3271384063,3271384319,3271384575,3271384831,3271385087,3271385343,3271391231,3271391743,3271391999,3271392255,3271392511,3271392767,3271393279,3271393791,3271394047,3271394303,3271394559,3271394815,3271395071,3271395327,3271396863,3271397119,3271397375,3271397887,3271398143,3271398399,3271398911,3271399167,3271400447,3271400703,3271400959,3271401215,3271401471,3271403263,3271403519,3271403775,3271404031,3271405311,3271405567,3271405823,3271406079,3271406335,3271406591,3271406847,3271407615,3271407871,3271408127,3271408383,3271408639,3271408895,3271409151,3271409407,3271409663,3271417855,3271424511,3271425023,3271425279,3271425535,3271426047,3271426303,3271491583,3271544063,3271544319,3271557119,3271589887,3271688191,3271689215,3271689727,3271691775,3271692031,3271692287,3271692543,3271692799,3271693055,3271694079,3271694335,3271694591,3271695359,3271695615,3271695871,3271696383,3271700479,3271704575,3271710207,3271710463,3271711743,3271712255,3271712767,3271716863,3271717119,3271720959,3271729151,3271737343,3271738367,3271738879,3271739391,3271739903,3271740415,3271741439,3271741951,3271742463,3271742975,3271743999,3271744511,3271745023,3271745535,3271746047,3271746559,3271747071,3271747583,3271748095,3271748351,3271748607,3271749119,3271750143,3271750655,3271751167,3271751679,3271751935,3271752191,3271752703,3271753215,3271753727,3271770111,3271786495,3271787519,3271788543,3271789567,3271790591,3271791615,3271792639,3271793663,3271794687,3271795711,3271796735,3271797759,3271798783,3271799807,3271800319,3271800831,3271801855,3271802879,3271803903,3271804927,3271805951,3271806975,3271807999,3271809023,3271810047,3271811071,3271812095,3271813119,3271814143,3271815167,3271816447,3271816703,3271817215,3271818239,3271819263,3271884799,3271901183,3271909375,3271910399,3271910911,3271911423,3271911679,3271911935,3271912959,3271913215,3271913471,3271913983,3271914495,3271915007,3271915519,3271916031,3271916543,3271917311,3271917567,3271925759,3271926015,3271926271,3271926527,3271926783,3271927295,3271927551,3271928575,3271928831,3271929087,3271929343,3271929599,3271930111,3271930367,3271930623,3271930879,3271931135,3271931647,3271931903,3271932159,3271932415,3271932671,3271932927,3271933183,3271933695,3271933951,3271948799,3271949055,3272015871,3272017919,3272018943,3272019455,3272019711,3272019967,3272020991,3272024063,3272032255,3272032767,3272033023,3272033279,3272034815,3272035071,3272035839,3272036095,3272036351,3272036607,3272037119,3272037375,3272040447,3272048639,3272056831,3272065023,3272066047,3272066815,3272067071,3272067583,3272067839,3272068095,3272068351,3272068607,3272068863,3272071167,3272072191,3272072447,3272072703,3272072959,3272073471,3272073983,3272074239,3272074751,3272081407,3272083455,3272083711,3272086015,3272086527,3272089343,3272089599,3272090111,3272091647,3272092415,3272092671,3272093183,3272093439,3272093695,3272094207,3272094719,3272095231,3272095743,3272096255,3272096767,3272097279,3272097535,3272097791,3272106239,3272106495,3272106751,3272107007,3272107263,3272107519,3272107775,3272108031,3272108287,3272108543,3272108799,3272109055,3272109311,3272109567,3272109823,3272110079,3272110335,3272110591,3272110847,3272111103,3272111359,3272111615,3272112127,3272112383,3272113151,3272113407,3272113663,3272113919,3272114175,3272122367,3272131071,3272131327,3272131583,3272132095,3272132607,3272132863,3272133119,3272133631,3272134143,3272134655,3272135167,3272135679,3272136191,3272136703,3272137215,3272137727,3272138239,3272138751,3272146943,3272212479,3272213503,3272213759,3272214015,3272214271,3272214527,3272215039,3272215295,3272215551,3272215807,3272216063,3272217087,3272217343,3272217855,3272218111,3272218879,3272219135,3272219391,3272219647,3272220159,3272220415,3272220671,3272221183,3272221439,3272221695,3272221951,3272222463,3272222719,3272223231,3272223487,3272223743,3272224255,3272224511,3272225023,3272225279,3272225535,3272225791,3272226047,3272226559,3272227071,3272227327,3272227583,3272227839,3272228095,3272228351,3272228607,3272228863,3272237055,3272245247,3272261631,3272261887,3272262143,3272262399,3272262655,3272262911,3272263167,3272263423,3272263935,3272264191,3272264447,3272264703,3272264959,3272265215,3272265471,3272265727,3272265983,3272266239,3272266495,3272266751,3272267007,3272267263,3272267519,3272267775,3272268031,3272268287,3272268543,3272268799,3272269055,3272351743,3272352767,3272353023,3272353279,3272353535,3272353791,3272355839,3272356351,3272356607,3272356863,3272357887,3272358911,3272359935,3272368127,3272376319,3272384511,3272392703,3272400895,3272401151,3272402943,3272403199,3272403455,3272403967,3272404223,3272404479,3272404991,3272406015,3272407039,3272407551,3272408063,3272417279,3272418559,3272418815,3272419327,3272420863,3272421119,3272421375,3272421887,3272422143,3272422399,3272422911,3272423423,3272423935,3272424447,3272425471,3272441855,3272474623,3272474879,3272475135,3272475391,3272475903,3272476159,3272476415,3272476671,3272476927,3272477183,3272477439,3272477695,3272477951,3272478207,3272478463,3272478719,3272478975,3272479231,3272479487,3272479743,3272479999,3272480255,3272480511,3272480767,3272481023,3272481279,3272481791,3272482047,3272482303,3272482559,3272482815,3272491007,3272499199,3272499711,3272500223,3272500735,3272501247,3272501503,3272501759,3272502783,3272503295,3272503807,3272504319,3272504831,3272505343,3272505855,3272506111,3272506367,3272506879,3272507391,3272515583,3272523775,3272537855,3272538111,3272540159,3272546559,3272546815,3272572927,3272589311,3272605695,3272613887,3272622079,3272623103,3272624127,3272624383,3272624639,3272624895,3272625151,3272626175,3272627199,3272628223,3272629247,3272629759,3272630015,3272638463,3272646655,3272646911,3272647423,3272647679,3272647935,3272649215,3272649471,3272649727,3272652287,3272652799,3272653311,3272653823,3272654847,3272663039,3272671231,3272671487,3272736767,3272737791,3272738815,3272739839,3272740863,3272741887,3272742911,3272743167,3272743423,3272743935,3272744959,3272753151,3272769535,3272802303,3272802815,3272803071,3272804095,3272804351,3272855807,3272856063,3272856831,3272857087,3272867839,3272868863,3272869887,3272870911,3272871935,3272872191,3272872447,3272872703,3272872959,3272873983,3272875007,3272875519,3272875775,3272876031,3272884223,3272892415,3272892927,3272893439,3272893695,3272893951,3272894463,3272894719,3272894975,3272895231,3272895487,3272895999,3272896511,3272897023,3272897279,3272897535,3272898047,3272898559,3272899327,3272899583,3272900095,3272900607,3272900863,3272901119,3272901375,3272901631,3272901887,3272902143,3272902399,3272902655,3272902911,3272903167,3272903423,3272903679,3272903935,3272904191,3272904447,3272904959,3272905215,3272905727,3272905983,3272906239,3272906495,3272906751,3272907007,3272907263,3272907519,3272907775,3272908031,3272908287,3272908543,3272908799,3272916991,3272917503,3272918527,3272919039,3272919551,3272920063,3272920575,3272921087,3272921343,3272921599,3272922111,3272922623,3272923135,3272923647,3272924159,3272924671,3272925183,3272927231,3272927743,3272932863,3272933375,3272933631,3272933887,3272934399,3272934655,3272934911,3272935167,3272937471,3272938495,3272939519,3272940543,3272941055,3272941311,3272941567,3272944895,3272945407,3272945663,3272945919,3272948223,3272948735,3272966143,3272982527,3272998911,3273007103,3273015295,3273023487,3273024511,3273025535,3273026559,3273028607,3273029631,3273029887,3273030143,3273030399,3273030655,3273031679,3273032191,3273033215,3273033727,3273034239,3273034751,3273035263,3273035775,3273036287,3273036799,3273037311,3273037823,3273038335,3273038847,3273039871,3273048063,3273048319,3273048575,3273048831,3273049087,3273049855,3273050111,3273051647,3273051903,3273052415,3273052671,3273052927,3273053183,3273053439,3273053695,3273053951,3273054207,3273054463,3273054719,3273055231,3273055487,3273055743,3273055999,3273056255,3273064447,3273129983,3273138175,3273146367,3273148415,3273150463,3273152511,3273154559,3273162751,3273170943,3273179135,3273187327,3273187839,3273188351,3273188863,3273189375,3273189631,3273189887,3273190399,3273191935,3273192447,3273193471,3273193983,3273194495,3273195007,3273195519,3273261055,3273261567,3273262079,3273262591,3273262847,3273263103,3273263615,3273264127,3273264639,3273265151,3273266175,3273266687,3273267455,3273267711,3273268223,3273268735,3273269247,3273277439,3273278463,3273279487,3273281535,3273282559,3273283071,3273283583,3273284607,3273285631,3273293823,3273302015,3273310207,3273318399,3273327103,3273327359,3273327615,3273328383,3273328639,3273331967,3273332223,3273334271,3273334783,3273335039,3273337855,3273338111,3273340927,3273341951,3273342463,3273342719,3273343999,3273344511,3273345023,3273345279,3273346559,3273346815,3273347071,3273347327,3273347583,3273347839,3273348351,3273349119,3273349631,3273351935,3273352191,3273361919,3273362175,3273364479,3273364735,3273364991,3273365247,3273368063,3273368575,3273369343,3273369599,3273370367,3273370623,3273371135,3273372927,3273373183,3273373439,3273373695,3273375743,3273376255,3273377791,3273378047,3273378559,3273378815,3273381887,3273382143,3273382399,3273382655,3273384191,3273384703,3273387263,3273387519,3273387775,3273388031,3273391103,3273391871,3273392127,3273392639,3273393663,3273394175,3273394687,3273394943,3273395199,3273395711,3273396223,3273396735,3273397247,3273397503,3273397759,3273398271,3273398783,3273399295,3273399807,3273400319,3273408511,3273433087,3273433599,3273434111,3273434623,3273435135,3273435391,3273435647,3273436159,3273437183,3273437695,3273438207,3273438719,3273439231,3273439743,3273440255,3273440511,3273440767,3273441279,3273444095,3273444351,3273449471,3273457663,3273523199,3273588735,3273687039,3273719807,3273721855,3273722367,3273728255,3273728511,3273732095,3273736191,3273744383,3273752575,3273768959,3273785343,3273801727,3273802239,3273802751,3273803263,3273803775,3273804287,3273804799,3273805311,3273805567,3273805823,3273806335,3273806847,3273807359,3273807871,3273808383,3273808895,3273809407,3273809919,3273818111,3273826303,3273834495,3273835519,3273836543,3273837567,3273838591,3273839615,3273840639,3273841663,3273842687,3273850879,3273851903,3273852927,3273854975,3273855999,3273857023,3273858559,3273859071,3273861119,3273862143,3273863167,3273863679,3273864191,3273864703,3273865215,3273866239,3273866751,3273867263,3273867519,3273867775,3273868031,3273868287,3273869311,3273871359,3273871615,3273871871,3273872383,3273872639,3273872895,3273873151,3273873919,3273874431,3273875455,3273875711,3273875967,3273876223,3273876479,3273876735,3273876991,3273877247,3273877503,3273877759,3273878015,3273878271,3273878527,3273878783,3273879039,3273879551,3273879807,3273880063,3273880575,3273881087,3273881599,3273881855,3273882111,3273882367,3273883135,3273883391,3273883647,3273916415,3273932799,3273935871,3273936383,3273940991,3273943039,3273943295,3273945087,3273947135,3273949183,3273981951,3274047487,3274048511,3274049535,3274050559,3274051583,3274052351,3274052607,3274053119,3274053375,3274053631,3274054655,3274055167,3274055423,3274055679,3274063871,3274072063,3274080255,3274088447,3274096639,3274113023,3274145791,3274162175,3274162687,3274163199,3274163711,3274164223,3274164735,3274165247,3274165759,3274166271,3274166783,3274167295,3274167807,3274168319,3274168831,3274169343,3274170367,3274170879,3274171391,3274171903,3274172415,3274172927,3274173439,3274173951,3274174207,3274174463,3274175487,3274175999,3274176511,3274177023,3274178047,3274178559,3274244095,3274309631,3274326015,3274334719,3274335231,3274335743,3274336255,3274336767,3274337279,3274337791,3274338303,3274338815,3274339327,3274339839,3274340351,3274340863,3274341375,3274341887,3274342399,3274342911,3274343423,3274343935,3274344447,3274344959,3274345471,3274345983,3274346495,3274347007,3274347519,3274348031,3274348543,3274349055,3274350079,3274350591,3274358783,3274366975,3274368511,3274368767,3274369023,3274370047,3274371071,3274371327,3274371839,3274372095,3274373119,3274373375,3274373631,3274374143,3274375167,3274383359,3274384383,3274385407,3274386431,3274388479,3274389503,3274390527,3274391551,3274392063,3274392575,3274393087,3274393599,3274394111,3274394623,3274395135,3274395647,3274396159,3274396671,3274397183,3274397695,3274398207,3274399743,3274406655,3274406911,3274407935,3274408191,3274408447,3274408703,3274408959,3274409215,3274409471,3274409983,3274410239,3274410495,3274410751,3274411007,3274411263,3274411519,3274411775,3274412031,3274412287,3274412543,3274412799,3274413055,3274413311,3274413567,3274413823,3274414079,3274414335,3274414591,3274414847,3274415103,3274415359,3274415615,3274415871,3274416127,3274424319,3274440703,3274506239,3274571775,3274579967,3274580991,3274581503,3274581759,3274582015,3274583039,3274584063,3274585087,3274586111,3274587135,3274588159,3274596351,3274604543,3274612735,3274620927,3274629119,3274637311,3274670079,3274686463,3274686719,3274686975,3274687231,3274687487,3274687743,3274687999,3274688255,3274688511,3274688767,3274689023,3274689279,3274689535,3274689791,3274690047,3274690303,3274690559,3274690815,3274691071,3274691327,3274691583,3274691839,3274692095,3274692351,3274692607,3274692863,3274693119,3274693375,3274693631,3274693887,3274694143,3274694399,3274694655,3274694911,3274695167,3274695423,3274695679,3274695935,3274696191,3274696447,3274696703,3274696959,3274697215,3274697471,3274697727,3274697983,3274698239,3274698495,3274698751,3274699007,3274699263,3274699519,3274699775,3274700031,3274700287,3274700543,3274700799,3274701055,3274701311,3274701567,3274701823,3274702079,3274702335,3274702591,3274702847,3274801151,3274802175,3274803199,3274804223,3274805247,3274806271,3274807295,3274809343,3274810367,3274811391,3274812415,3274813439,3274814463,3274815487,3274816511,3274817535,3274819583,3274821631,3274823679,3274825727,3274827775,3274828799,3274829823,3274831871,3274833919,3274842111,3274850303,3274866431,3274866687,3274883071,3274899455,3274909695,3274910207,3274910975,3274911231,3274911743,3274912767,3274913023,3274913279,3274914815,3274915071,3274915839,3274916607,3274916863,3274917119,3274917375,3274917887,3274918399,3274918655,3274918911,3274919423,3274919935,3274921983,3274923007,3274924031,3274928127,3274929151,3274929407,3274929663,3274930175,3274932223,3274932991,3274933247,3274938367,3274938623,3274938879,3274939135,3274939391,3274940415,3274942463,3274944511,3274948607,3274952447,3274952703,3274954239,3274954751,3274955007,3274955263,3274956287,3274956543,3274956799,3274957055,3274957567,3274957823,3274958079,3274958335,3274959359,3274959615,3274960383,3274960639,3274961407,3274961663,3274961919,3274962175,3274962431,3274962687,3274962943,3274963199,3274963455,3274963711,3274963967,3274964223,3274964479,3274964735,3274964991,3275030527,3275096063,3275104255,3275105279,3275105791,3275106303,3275106815,3275107327,3275107839,3275108351,3275108863,3275109375,3275109887,3275110399,3275110911,3275111167,3275111423,3275111935,3275112447,3275120639,3275136511,3275136767,3275137023,3275137279,3275137535,3275138047,3275138559,3275139071,3275139583,3275139839,3275140095,3275140607,3275141119,3275141631,3275142143,3275142655,3275143167,3275144703,3275145215,3275153407,3275161599,3275227135,3275292671,3275358207,3275366399,3275366655,3275366911,3275367167,3275367423,3275367935,3275368191,3275368447,3275371007,3275371263,3275371519,3275371775,3275372031,3275372287,3275372543,3275372799,3275373055,3275373311,3275373567,3275373823,3275374079,3275374335,3275374591,3275382783,3275390975,3275399167,3275407359,3275415551,3275423743,3275457023,3275457791,3275458303,3275458559,3275459583,3275459839,3275460095,3275460607,3275460863,3275488767,3275489279,3275497471,3275505663,3275506175,3275506687,3275507199,3275507711,3275509759,3275510015,3275510271,3275510527,3275511295,3275511551,3275511807,3275512063,3275512319,3275512575,3275512831,3275513087,3275513343,3275513599,3275513855,3275522047,3275530239,3275530751,3275531263,3275531775,3275532031,3275532287,3275532799,3275533055,3275533311,3275533567,3275533823,3275534335,3275534847,3275535359,3275535871,3275536383,3275536895,3275537407,3275537919,3275538431,3275539455,3275540479,3275541503,3275542527,3275543551,3275544575,3275545599,3275546623,3275548671,3275549695,3275549951,3275550207,3275550463,3275550719,3275551743,3275552767,3275553791,3275554815,3275620351,3275622399,3275623423,3275623935,3275624447,3275624959,3275625471,3275625983,3275626495,3275626751,3275627007,3275627519,3275628031,3275628543,3275629055,3275629311,3275629567,3275630079,3275630591,3275631103,3275631615,3275632383,3275632639,3275633151,3275633407,3275633663,3275634687,3275635199,3275636735,3275637247,3275637759,3275638271,3275638783,3275639807,3275640319,3275640831,3275641343,3275641855,3275642367,3275642879,3275643135,3275643391,3275643903,3275644415,3275644927,3275653119,3275661311,3275669503,3275677695,3275685887,3275751423,3275759615,3275775999,3275776255,3275776511,3275776767,3275777023,3275777279,3275777535,3275777791,3275778047,3275778303,3275778559,3275778815,3275779327,3275779839,3275780095,3275780351,3275780607,3275780863,3275781119,3275781375,3275781631,3275781887,3275783679,3275783935,3275784191,3275784703,3275785215,3275785727,3275786239,3275786751,3275787263,3275788287,3275788799,3275789311,3275789823,3275790335,3275790847,3275791359,3275791871,3275792383,3275792895,3275793407,3275793919,3275794431,3275794943,3275795455,3275795967,3275796479,3275796991,3275797503,3275798015,3275799039,3275799551,3275800063,3275800575,3275808767,3275816959,3275882495,3275884543,3275886591,3275888639,3275889663,3275890687,3275898879,3275899135,3275899647,3275899903,3275900159,3275900415,3275900671,3275901183,3275901439,3275901695,3275901951,3275902207,3275902719,3275902975,3275903231,3275903487,3275903743,3275903999,3275904255,3275904511,3275904767,3275905023,3275905279,3275905535,3275905791,3275906303,3275906559,3275907071,3275907327,3275907583,3275907839,3275908095,3275908351,3275908607,3275908863,3275909119,3275909631,3275909887,3275910143,3275910399,3275910655,3275910911,3275911167,3275911423,3275911679,3275911935,3275912191,3275912447,3275912703,3275912959,3275913215,3275913471,3275913983,3275914239,3275914495,3275914751,3275915007,3275915263,3275915775,3275916287,3275916799,3275917311,3275917823,3275918335,3275918847,3275919359,3275919871,3275920383,3275920895,3275921407,3275921919,3275922431,3275922943,3275923455,3275931647,3275937791,3275939839,3275948031,3276013567,3276016127,3276016383,3276016639,3276018687,3276018943,3276019199,3276019455,3276023551,3276023807,3276024831,3276025087,3276028671,3276028927,3276033023,3276033535,3276034303,3276034559,3276036863,3276037119,3276037375,3276037631,3276038399,3276038655,3276041727,3276041983,3276046335,3276062719,3276063231,3276063743,3276064255,3276064767,3276065279,3276065791,3276066303,3276066815,3276067327,3276067839,3276068351,3276068863,3276069375,3276069887,3276070399,3276070911,3276071935,3276072447,3276072959,3276073471,3276073983,3276074495,3276075007,3276075519,3276076031,3276076287,3276076543,3276077055,3276078079,3276078591,3276079103,3276095487,3276096511,3276097535,3276098559,3276098815,3276099327,3276099583,3276100607,3276101631,3276102655,3276103679,3276104703,3276105215,3276105471,3276105727,3276106751,3276107775,3276108799,3276109823,3276110847,3276111871,3276112895,3276113919,3276114943,3276115967,3276116991,3276117247,3276117503,3276118015,3276119039,3276120319,3276120831,3276121087,3276122111,3276123135,3276124159,3276125183,3276126207,3276127231,3276128255,3276129279,3276130303,3276132351,3276133375,3276134399,3276135423,3276136447,3276136703,3276136959,3276137215,3276137471,3276138495,3276139519,3276140543,3276141567,3276142591,3276143615,3276144639,3276152831,3276161023,3276169215,3276177407,3276185599,3276193791,3276201983,3276210175,3276275711,3276283903,3276292095,3276293119,3276294143,3276295167,3276295423,3276304383,3276304639,3276305919,3276306431,3276308479,3276309503,3276310527,3276311551,3276312575,3276313599,3276314623,3276315647,3276316671,3276324863,3276333055,3276341247,3276406783,3276414975,3276415999,3276417023,3276419071,3276420095,3276421119,3276422143,3276422655,3276423167,3276423423,3276423679,3276423935,3276424191,3276424447,3276424703,3276424959,3276425215,3276425471,3276425727,3276425983,3276426239,3276426495,3276426751,3276427007,3276427263,3276427519,3276427775,3276428031,3276428287,3276428543,3276428799,3276429311,3276429823,3276430079,3276430591,3276431103,3276431359,3276447743,3276451583,3276464127,3276472319,3276473343,3276473855,3276474367,3276474623,3276474879,3276475135,3276475391,3276475903,3276476159,3276476415,3276476671,3276477439,3276477951,3276478463,3276479743,3276479999,3276480511,3276480767,3276481023,3276481535,3276482559,3276482815,3276483071,3276483327,3276483839,3276484351,3276484607,3276484863,3276485631,3276486655,3276486911,3276487167,3276491263,3276491519,3276491775,3276492031,3276492287,3276492543,3276492799,3276496639,3276497407,3276497663,3276497919,3276498431,3276499455,3276500223,3276500991,3276501247,3276505087,3276505343,3276505599,3276506623,3276507135,3276507391,3276507647,3276508159,3276508927,3276509183,3276510207,3276510719,3276510975,3276511487,3276511743,3276512255,3276513023,3276514559,3276514815,3276515327,3276515583,3276518911,3276519423,3276519679,3276520191,3276520447,3276520703,3276524543,3276524799,3276525055,3276525311,3276526079,3276526591,3276527359,3276527615,3276528127,3276528383,3276528639,3276528895,3276529151,3276532991,3276533247,3276533503,3276533759,3276535551,3276535807,3276536063,3276536319,3276536575,3276536831,3276537087,3276537855,3276668927,3276677119,3276678143,3276678655,3276679167,3276679679,3276680191,3276680703,3276681215,3276681727,3276682239,3276682751,3276683007,3276683263,3276683519,3276683775,3276684287,3276684799,3276685311,3276685823,3276686335,3276686847,3276687359,3276687871,3276688383,3276688895,3276689407,3276689919,3276690175,3276690431,3276690943,3276691455,3276691967,3276692479,3276692991,3276693503,3276694015,3276694527,3276695039,3276695551,3276696063,3276696575,3276697087,3276697599,3276698111,3276699135,3276699647,3276700159,3276700671,3276701183,3276701695,3276709887,3276718079,3276726271,3276727295,3276728319,3276729343,3276730367,3276731391,3276732415,3276733439,3276734463,3276736511,3276736767,3276737023,3276737279,3276737535,3276737791,3276738047,3276738559,3276738815,3276739071,3276740351,3276741375,3276741631,3276742655,3276742911,3276743167,3276743423,3276744191,3276744703,3276744959,3276745215,3276745727,3276745983,3276746239,3276746751,3276748287,3276748799,3276749055,3276749311,3276749823,3276750079,3276750335,3276754943,3276755199,3276755711,3276755967,3276757503,3276757759,3276759039,3276761855,3276762111,3276762623,3276762879,3276763903,3276764159,3276765183,3276766975,3276767231,3276767743,3276768511,3276768767,3276769023,3276769279,3276770815,3276771071,3276771327,3276772351,3276773375,3276774399,3276775423,3276781567,3276783103,3276783615,3276784383,3276784639,3276784895,3276785151,3276785407,3276785663,3276785919,3276786175,3276786431,3276786687,3276786943,3276787455,3276787711,3276787967,3276788735,3276788991,3276789247,3276789503,3276789759,3276790015,3276790271,3276790527,3276790783,3276791039,3276791295,3276791551,3276792831,3276793087,3276793343,3276793855,3276794367,3276795903,3276797951,3276799487,3276799743,3276799999,3276808191,3276809215,3276810239,3276811263,3276812287,3276812543,3276812799,3276813311,3276814335,3276815359,3276816383,3276824575,3276832767,3276834815,3276835071,3276835327,3276835839,3276836351,3276836863,3276837887,3276838143,3276838399,3276838655,3276838911,3276839167,3276839423,3276839935,3276840191,3276840959,3276849151,3276857343,3276857599,3276857855,3276858111,3276858367,3276858623,3276858879,3276859391,3276859647,3276859903,3276860159,3276860415,3276860927,3276861183,3276861439,3276865535,3276866559,3276866815,3276867071,3276867327,3276868095,3276868351,3276868607,3276868863,3276869119,3276869887,3276870143,3276870655,3276871423,3276871679,3276872703,3276873727,3276874751,3276875775,3276876031,3276876287,3276876543,3276877567,3276877823,3276878079,3276878335,3276878847,3276879359,3276879871,3276880895,3276881407,3276881919,3276882687,3276882943,3276883199,3276883455,3276883967,3276884991,3276886015,3276886271,3276887039,3276887295,3276888063,3276888575,3276889855,3276890367,3276890623,3276891135,3276891391,3276892159,3276893183,3276893439,3276895487,3276895743,3276895999,3276896255,3276897791,3276898047,3276898303,3276899583,3276899839,3276900351,3276900607,3276902399,3276903423,3276903679,3276903935,3276904191,3276904447,3276905471,3276905727,3276906239,3276906495,3276906751,3276908031,3276908287,3276909055,3276909567,3276910591,3276910847,3276911871,3276912383,3276912639,3276912895,3276913919,3276914175,3276914687,3276918783,3276920831,3276921087,3276921343,3276921855,3276922879,3276926719,3276927487,3276927743,3276927999,3276928255,3276928511,3276928767,3276931071,3276939263,3276955647,3276956159,3276958463,3276958719,3276958975,3276959231,3276959487,3276959743,3276963071,3276963327,3276963839,3276964351,3276964863,3276965375,3276966399,3276966911,3276968447,3276968959,3276969471,3276969983,3276970495,3276971519,3276972031,3276980223,3276988415,3276996607,3277062143,3277127679,3277128191,3277128703,3277129215,3277129727,3277130239,3277130751,3277131007,3277132543,3277132799,3277133311,3277133567,3277133823,3277134591,3277134847,3277135871,3277137151,3277137407,3277137663,3277137919,3277138687,3277138943,3277139199,3277139967,3277140223,3277140479,3277140735,3277140991,3277141503,3277141759,3277142783,3277143039,3277143551,3277144575,3277145087,3277146111,3277146623,3277146879,3277147135,3277147647,3277148159,3277149439,3277149695,3277150207,3277150463,3277151743,3277152255,3277153791,3277154303,3277154815,3277155583,3277156607,3277156863,3277157375,3277157631,3277157887,3277160447,3277176831,3277177343,3277177599,3277177855,3277178111,3277178367,3277178623,3277178879,3277179135,3277179391,3277179647,3277179903,3277180159,3277180415,3277180671,3277180927,3277181183,3277181439,3277181695,3277181951,3277182207,3277182463,3277182719,3277182975,3277183231,3277183487,3277183743,3277183999,3277184255,3277184511,3277184767,3277185023,3277185279,3277185535,3277185791,3277186047,3277186303,3277186559,3277186815,3277187071,3277187327,3277187583,3277188351,3277188607,3277188863,3277189119,3277189375,3277189631,3277189887,3277190143,3277190399,3277190655,3277190911,3277191423,3277191679,3277191935,3277192191,3277192447,3277192703,3277192959,3277193215,3277194239,3277194495,3277258751,3277324287,3277324799,3277325311,3277326335,3277326847,3277327359,3277327871,3277328383,3277328895,3277329407,3277329919,3277330431,3277330943,3277331455,3277332479,3277332991,3277333503,3277334015,3277334527,3277335039,3277335551,3277336063,3277336575,3277337087,3277337599,3277338111,3277338623,3277339135,3277339647,3277340159,3277340671,3277341183,3277341695,3277342207,3277342719,3277343231,3277343743,3277344767,3277345279,3277345791,3277346303,3277346559,3277346815,3277347071,3277347327,3277347839,3277348351,3277348863,3277349887,3277350399,3277350911,3277351423,3277351935,3277352447,3277352959,3277353471,3277353983,3277354495,3277355007,3277355519,3277356031,3277356543,3277357055,3277357567,3277358079,3277359103,3277359615,3277360127,3277360639,3277361151,3277361663,3277362175,3277362687,3277363199,3277363711,3277364223,3277364735,3277365247,3277365759,3277366271,3277366783,3277367295,3277367807,3277368319,3277368831,3277369343,3277369855,3277370367,3277370623,3277370879,3277371391,3277371903,3277372415,3277372927,3277373439,3277373951,3277374463,3277374719,3277374975,3277375999,3277376511,3277377535,3277377791,3277378047,3277378559,3277378815,3277379071,3277379583,3277380095,3277380351,3277380607,3277381119,3277381631,3277382143,3277382399,3277382655,3277383167,3277383679,3277384191,3277384703,3277385215,3277385727,3277386239,3277386751,3277387263,3277387775,3277388287,3277388543,3277388799,3277389311,3277389823,3277394943,3277395455,3277395711,3277404415,3277404671,3277411839,3277412095,3277414399,3277414655,3277414911,3277415167,3277415423,3277415679,3277415935,3277416447,3277416703,3277416959,3277417215,3277417983,3277418239,3277419263,3277419519,3277421823,3277422079,3277422591,3277424639,3277425151,3277427455,3277427711,3277429759,3277430015,3277455359,3277463551,3277463807,3277464063,3277464575,3277464831,3277471743,3277472255,3277475839,3277476095,3277476863,3277477887,3277479935,3277480447,3277480959,3277481471,3277481983,3277482495,3277483007,3277483519,3277484031,3277484543,3277485055,3277486079,3277486591,3277487103,3277487615,3277488127,3277504511,3277520895,3277553663,3277586431,3277651967,3277684735,3277685247,3277685759,3277686271,3277686783,3277687295,3277687807,3277688319,3277688831,3277689343,3277689855,3277690879,3277691391,3277691903,3277692415,3277692927,3277693439,3277693951,3277694463,3277694975,3277695487,3277695999,3277696255,3277696511,3277697023,3277697535,3277698047,3277698559,3277699071,3277699583,3277700607,3277701119,3277701631,3277702143,3277702655,3277703679,3277704191,3277704703,3277705215,3277706239,3277706751,3277707263,3277707775,3277708287,3277708799,3277709311,3277709823,3277710079,3277710335,3277710847,3277711359,3277711871,3277712383,3277712895,3277713407,3277713919,3277714431,3277714943,3277715711,3277716479,3277716735,3277716991,3277717503,3277725695,3277727743,3277727999,3277730815,3277731839,3277732863,3277742079,3277745151,3277746175,3277750271,3277766655,3277774847,3277783039,3277815807,3277816063,3277816319,3277816575,3277816831,3277817087,3277817343,3277817599,3277817855,3277818111,3277818367,3277818623,3277818879,3277819135,3277819391,3277819647,3277819903,3277820159,3277820415,3277820671,3277820927,3277821183,3277821439,3277821695,3277821951,3277822207,3277822463,3277822975,3277823231,3277823487,3277823743,3277823999,3277824255,3277824511,3277825023,3277825279,3277825535,3277826047,3277826303,3277826815,3277827071,3277827327,3277827583,3277828095,3277828351,3277828607,3277828863,3277829119,3277829375,3277829631,3277829887,3277830143,3277830399,3277830911,3277831167,3277831423,3277831679,3277831935,3277832191,3277833215,3277833727,3277834239,3277834495,3277834751,3277835263,3277835519,3277835775,3277836287,3277836799,3277837311,3277838335,3277838847,3277839103,3277839359,3277839871,3277840383,3277840895,3277841407,3277841919,3277842431,3277842943,3277843455,3277843967,3277845503,3277847039,3277847551,3277848063,3277848575,3277856767,3277864959,3277873151,3277881343,3277881599,3277882367,3277882623,3277882879,3277883135,3277883391,3277883647,3277883903,3277884159,3277884415,3277884671,3277884927,3277885183,3277885439,3277885695,3277885951,3277886207,3277886463,3277886975,3277887231,3277887487,3277887743,3277887999,3277888255,3277888511,3277888767,3277889023,3277889279,3277889535,3277897727,3277905919,3277914111,3277946879,3277963263,3277979647,3277987839,3278004223,3278012415,3278020607,3278028799,3278036991,3278045183,3278061567,3278061823,3278062079,3278065663,3278110719,3278115839,3278117631,3278118143,3278118399,3278125055,3278125567,3278160639,3278160895,3278168063,3278168319,3278176255,3278241791,3278307327,3278372863,3278635007,3278766079,3278767103,3278767615,3278768127,3278769151,3278769663,3278770175,3278770687,3278771711,3278772223,3278772735,3278773247,3278773759,3278774271,3278774783,3278775295,3278775807,3278776319,3278776831,3278777343,3278777855,3278778367,3278779391,3278779903,3278780415,3278780927,3278781439,3278781951,3278782463,3278789887,3278790143,3278790399,3278790655,3278793727,3278794751,3278807039,3278811135,3278813183,3278815231,3278823423,3278831615,3278865663,3278865919,3278897151,3278913535,3278921727,3278929919,3278938111,3278946303,3278954495,3278962687,3278981375,3278981631,3279028223,3279028735,3279029247,3279029759,3279030271,3279030783,3279031295,3279031807,3279032319,3279032831,3279033343,3279033855,3279034367,3279035391,3279035903,3279036159,3279036415,3279044607,3279052799,3279053311,3279053823,3279054335,3279054847,3279055359,3279055871,3279056383,3279056639,3279056895,3279057151,3279057407,3279057919,3279058943,3279059455,3279059967,3279060223,3279060479,3279060991,3279064063,3279064319,3279069183,3279077375,3279078399,3279085567,3279089663,3279093759,3279159295,3279290367,3279291391,3279291647,3279294719,3279294975,3279295231,3279295487,3279295743,3279295999,3279296511,3279297279,3279297535,3279298047,3279298559,3279300095,3279300351,3279301375,3279301631,3279305215,3279305471,3279306751,3279310847,3279311871,3279312895,3279313919,3279314943,3279315711,3279315967,3279316223,3279316479,3279317759,3279318271,3279318527,3279318783,3279319039,3279320063,3279321087,3279322623,3279323135,3279330815,3279331071,3279335167,3279335423,3279339519,3279340031,3279340543,3279340799,3279341055,3279341567,3279341823,3279342079,3279342335,3279342591,3279342847,3279343103,3279343359,3279343615,3279344127,3279344383,3279345151,3279345663,3279346943,3279347711,3279348223,3279348735,3279348991,3279349247,3279349503,3279349759,3279351039,3279351295,3279351807,3279352319,3279352575,3279352831,3279353087,3279353343,3279354879,3279355647,3279355903,3279421439,3279486975,3279552511,3279560703,3279568895,3279570943,3279571199,3279575039,3279576063,3279576319,3279576575,3279577087,3279585279,3279588607,3279589375,3279589887,3279590399,3279592959,3279593215,3279594495,3279595263,3279599615,3279599871,3279601663,3279609855,3279618047,3279619839,3279620095,3279622143,3279634431,3279642623,3279646719,3279648767,3279650303,3279650815,3279659007,3279661055,3279671295,3279673343,3279675391,3279677439,3279678463,3279679487,3279680511,3279681535,3279683583,3279752959,3279753215,3279946751,3279947775,3279948799,3279949823,3279950847,3279951871,3279952895,3279953919,3279955967,3279958015,3279971327,3279972351,3279974399,3279976447,3279978495,3279978751,3279979007,3279979263,3279979519,3279979775,3279980031,3279980287,3279980543,3279980799,3279981055,3279981311,3279981567,3279981823,3279982079,3279982335,3279982591,3279982847,3279983103,3279983615,3279983871,3279984127,3279984639,3279985151,3279985407,3279985663,3279985919,3279986687,3279987455,3279987711,3279988223,3279988735,3279989247,3279989759,3279990271,3279990783,3279991295,3279991551,3279991807,3279992319,3279992831,3279993855,3279994367,3279994879,3280003071,3280003583,3280004607,3280005119,3280005631,3280006143,3280006655,3280007167,3280007679,3280008191,3280009215,3280009727,3280010239,3280010751,3280011263,3280011519,3280011775,3280014335,3280014591,3280015103,3280015359,3280015871,3280016383,3280017663,3280017919,3280018431,3280019455,3280019711,3280019967,3280020479,3280020735,3280021247,3280021503,3280022783,3280023039,3280023551,3280024575,3280024831,3280025599,3280026111,3280026623,3280026879,3280027647,3280027903,3280028159,3280028415,3280029183,3280029439,3280030207,3280030463,3280031743,3280031999,3280032255,3280032511,3280033535,3280033791,3280035327,3280035583,3280036607,3280036863,3280037887,3280038399,3280039167,3280039423,3280039935,3280040959,3280048383,3280048639,3280050175,3280050943,3280051199,3280052223,3280052991,3280054783,3280055039,3280055807,3280056063,3280056319,3280056575,3280060415,3280061439,3280061695,3280063231,3280063743,3280063999,3280064511,3280064767,3280065535,3280065791,3280067327,3280067583,3280069887,3280070143,3280070655,3280070911,3280071423,3280071679,3280076287,3280076543,3280076799,3280084991,3280093183,3280109567,3280117759,3280125951,3280126207,3280126463,3280126719,3280126975,3280127231,3280127487,3280127743,3280127999,3280128255,3280128511,3280128767,3280129023,3280129279,3280129535,3280129791,3280130047,3280130303,3280130559,3280130815,3280131071,3280131327,3280131583,3280131839,3280132095,3280132351,3280132607,3280132863,3280133119,3280133375,3280133631,3280133887,3280134143,3280142335,3280207871,3280273407,3280273663,3280274943,3280275199,3280275455,3280275711,3280275967,3280276479,3280276735,3280276991,3280277503,3280278015,3280278271,3280278527,3280278783,3280279039,3280279295,3280279551,3280280063,3280280319,3280280575,3280280831,3280281087,3280281343,3280281599,3280281855,3280282111,3280282367,3280282623,3280282879,3280283135,3280283647,3280284159,3280284415,3280284671,3280284927,3280287231,3280287487,3280287743,3280288255,3280288511,3280288767,3280289535,3280289791,3280290815,3280292095,3280292351,3280292607,3280292863,3280293119,3280293375,3280293631,3280293887,3280294143,3280294399,3280294655,3280294911,3280295167,3280295423,3280295679,3280295935,3280296191,3280296447,3280296959,3280297471,3280297727,3280297983,3280306175,3280310271,3280311295,3280312319,3280314367,3280322559,3280322815,3280323071,3280323327,3280323583,3280325119,3280325631,3280326655,3280326911,3280327679,3280328703,3280329727,3280330751,3280338943,3280347135,3280355327,3280371711,3280379903,3280381951,3280383999,3280386047,3280388095,3280389119,3280390143,3280391167,3280392191,3280392703,3280392959,3280393471,3280394239,3280395263,3280395519,3280396287,3280404479,3280407551,3280408063,3280416767,3280420863,3280435711,3280437247,3280453631,3280454399,3280454655,3280455679,3280456703,3280457727,3280458751,3280459775,3280460799,3280461311,3280461567,3280462847,3280463871,3280466943,3280467967,3280468991,3280470015,3280535551,3280568319,3280576511,3280576767,3280577279,3280577535,3280577791,3280578047,3280578303,3280578559,3280578815,3280579071,3280579327,3280579583,3280579839,3280580095,3280580351,3280580607,3280580863,3280581119,3280581375,3280581631,3280581887,3280582143,3280582399,3280582655,3280582911,3280583167,3280583423,3280583679,3280583935,3280584191,3280584447,3280584703,3280585215,3280585727,3280586239,3280586751,3280587263,3280587775,3280588287,3280588799,3280589311,3280589823,3280590335,3280590847,3280591359,3280591871,3280592127,3280592383,3280592895,3280593919,3280594431,3280594687,3280594943,3280595455,3280595967,3280596479,3280596991,3280597503,3280597759,3280598015,3280598527,3280599039,3280599551,3280600063,3280600575,3280601087,3280609279,3280617471,3280625663,3280627455,3280633855,3280634111,3280634623,3280635135,3280635391,3280635647,3280636415,3280636927,3280637183,3280637439,3280637695,3280637951,3280638207,3280638719,3280640255,3280640511,3280641023,3280641535,3280641791,3280642047,3280650239,3280650495,3280650751,3280651007,3280651263,3280651519,3280651775,3280652031,3280652287,3280652543,3280652799,3280653055,3280653311,3280653567,3280653823,3280654079,3280654591,3280654847,3280655103,3280655359,3280655615,3280655871,3280656127,3280656639,3280656895,3280657407,3280657663,3280657919,3280658175,3280658431,3280660479,3280662527,3280665343,3280665599,3280665855,3280666623,3280732159,3280764927,3280765951,3280766975,3280767999,3280769023,3280770047,3280771071,3280772095,3280773119,3280774143,3280775167,3280776191,3280777215,3280777471,3280777727,3280778239,3280779263,3280780287,3280781311,3280782335,3280783359,3280784383,3280785407,3280786431,3280788479,3280789503,3280791551,3280792575,3280793599,3280794623,3280795647,3280796671,3280797695,3280863231,3280889855,3280890111,3280903167,3280904191,3280917503,3280918527,3280928767,3280930303,3280930559,3280933887,3280934399,3280936959,3280937983,3280939007,3280940031,3280942079,3280942335,3280942591,3280943103,3280944127,3280945151,3280946175,3280946431,3280946687,3280947199,3280951039,3280951295,3280951807,3280952831,3280953343,3280953855,3280954367,3280955135,3280955391,3280956159,3280956415,3280956927,3280957183,3280957439,3280958463,3280958975,3280959487,3280959743,3280960511,3280961535,3280963583,3280964607,3280966911,3280967679,3280968447,3280969727,3280970239,3280970495,3280971775,3280972799,3280973823,3280974079,3280974335,3280974591,3280975103,3280975359,3280975871,3280976639,3280976895,3280977407,3280979711,3280979967,3280985087,3280985343,3280987135,3280987391,3280987647,3280991231,3280991743,3280993535,3280993791,3280994303,3280994559,3280994815,3280995071,3280995327,3280995583,3280995839,3280996095,3280996351,3280996607,3280996863,3280997119,3280997375,3280997631,3280997887,3280998143,3280998399,3280998655,3280999423,3280999679,3280999935,3281000191,3281000447,3281000703,3281000959,3281001215,3281001471,3281001727,3281001983,3281002239,3281002495,3281010687,3281018879,3281027071,3281035263,3281043455,3281059839,3281125375,3281126399,3281126655,3281126911,3281127167,3281127423,3281133567,3281141759,3281149951,3281158143,3281166335,3281174527,3281190911,3281256447,3281321983,3281338367,3281338623,3281338879,3281339135,3281339391,3281339647,3281339903,3281340159,3281340415,3281340671,3281340927,3281341183,3281341439,3281341695,3281341951,3281342207,3281343231,3281343487,3281343743,3281343999,3281344255,3281344511,3281344767,3281345023,3281345279,3281345535,3281346047,3281346303,3281346559,3281346815,3281347071,3281347327,3281347583,3281347839,3281348095,3281348351,3281348607,3281349119,3281349375,3281349631,3281349887,3281350143,3281350655,3281350911,3281351167,3281351423,3281351679,3281351935,3281352191,3281352447,3281352703,3281352959,3281353215,3281353471,3281353727,3281353983,3281354239,3281354495,3281354751,3281356799,3281357055,3281357823,3281358335,3281359359,3281359871,3281361663,3281361919,3281362431,3281362687,3281365247,3281365503,3281370111,3281370367,3281371135,3281372159,3281372671,3281373183,3281375231,3281377279,3281379327,3281383423,3281385471,3281387519,3281453055,3281470975,3281471231,3281518591,3281649663,3281715199,3281731583,3281780735,3281846271,3281911807,3281919999,3281928191,3281944575,3281960959,3281961983,3281963007,3281964031,3281965055,3281966079,3281966591,3281967103,3281968127,3281969663,3281970175,3281970687,3281970943,3281971199,3281971711,3281972223,3281972735,3281973247,3281973759,3281974271,3281974783,3281975295,3281975551,3281975807,3281976319,3281976831,3281977343,3282042879,3282059263,3282067455,3282083839,3282084351,3282084863,3282085375,3282085887,3282086399,3282086911,3282087423,3282087935,3282088447,3282089471,3282089983,3282090495,3282091007,3282091519,3282092031,3282093055,3282095103,3282096127,3282097151,3282098175,3282100223,3282101247,3282102271,3282103295,3282104319,3282105343,3282106367,3282107391,3282108415,3282119423,3282119679,3282173951,3282174463,3282174975,3282175487,3282177023,3282177535,3282178047,3282178559,3282179071,3282179583,3282180095,3282180607,3282181119,3282181631,3282182143,3282190335,3282190847,3282191359,3282191615,3282191871,3282192383,3282192895,3282193407,3282193919,3282194431,3282194687,3282195455,3282196479,3282197503,3282198527,3282206719,3282223103,3282231295,3282239487,3282242047,3282242303,3282305023,3282370559,3282370815,3282371583,3282372095,3282372351,3282372607,3282373119,3282390015,3282390271,3282395391,3282395903,3282399231,3282399743,3282402559,3282402815,3282411007,3282411263,3282428415,3282428671,3282430463,3282430719,3282432255,3282432511,3282432767,3282435583,3282435839,3282436095,3282448895,3282449151,3282452479,3282452735,3282461439,3282461695,3282464767,3282465023,3282465279,3282465535,3282465791,3282468095,3282468351,3282468607,3282477055,3282485247,3282493439,3282501631,3282534399,3282538495,3282542591,3282546687,3282550783,3282554879,3282558975,3282563071,3282563583,3282564095,3282564351,3282565119,3282565375,3282565631,3282567167,3282632703,3282698239,3282706431,3282714623,3282722815,3282731007,3282739199,3282739455,3282739711,3282739967,3282740223,3282740479,3282740735,3282740991,3282741247,3282741503,3282741759,3282742015,3282742271,3282742527,3282742783,3282743039,3282743295,3282743551,3282743807,3282744063,3282744319,3282744575,3282744831,3282745087,3282745343,3282745599,3282745855,3282746111,3282746367,3282746623,3282746879,3282747391,3282763775,3282772991,3282774015,3282960383,3283091455,3283111935,3283113471,3283156991,3283173375,3283176447,3283177471,3283178495,3283179519,3283180543,3283181311,3283181567,3283182591,3283183615,3283184639,3283185663,3283186687,3283187711,3283188735,3283189759,3283206143,3283206655,3283207167,3283207679,3283208191,3283208703,3283209215,3283209727,3283210239,3283210751,3283211263,3283211775,3283212287,3283212799,3283213311,3283213823,3283214335,3283214847,3283215359,3283215871,3283216383,3283216895,3283217407,3283218943,3283219455,3283219967,3283220479,3283220991,3283221503,3283222015,3283222271,3283222527,3283223039,3283223551,3283224063,3283224575,3283225087,3283225599,3283226111,3283226623,3283227135,3283227647,3283229183,3283229695,3283230207,3283230719,3283238911,3283247103,3283247615,3283248127,3283248639,3283249151,3283249663,3283249919,3283250175,3283250687,3283251199,3283251711,3283252223,3283252735,3283253247,3283253503,3283253759,3283254271,3283255295,3283256319,3283257343,3283258367,3283258879,3283259135,3283259391,3283262463,3283262719,3283263231,3283263487,3283271679,3283279871,3283288063,3283310591,3283312127,3283312383,3283312639,3283316735,3283337215,3283337727,3283338239,3283339263,3283339775,3283340031,3283340287,3283341311,3283345407,3283348479,3283349503,3283357695,3283363839,3283365887,3283369983,3283389183,3283389439,3283391743,3283391999,3283392255,3283392511,3283399423,3283399679,3283402751,3283406847,3283410943,3283415039,3283417343,3283417599,3283419135,3283451903,3283460095,3283460607,3283461119,3283461631,3283461887,3283462143,3283462655,3283462911,3283463167,3283463679,3283464191,3283468287,3283472383,3283476479,3283480575,3283482623,3283483647,3283484159,3283484415,3283484671,3283484927,3283485183,3283485439,3283485695,3283485951,3283486207,3283486463,3283486719,3283486975,3283487487,3283487743,3283487999,3283488255,3283488767,3283489023,3283489279,3283489535,3283489791,3283490047,3283490559,3283490815,3283491071,3283491327,3283491583,3283491839,3283492095,3283492351,3283492607,3283492863,3283493119,3283493887,3283494143,3283494399,3283494655,3283494911,3283495167,3283495423,3283495679,3283495935,3283496191,3283496447,3283496703,3283496959,3283497215,3283497471,3283497727,3283498239,3283498495,3283498751,3283499007,3283499263,3283499519,3283499775,3283500031,3283500287,3283500543,3283500799,3283501055,3283509247,3283517439,3283525631,3283533823,3283534591,3283534847,3283535615,3283535871,3283536383,3283536895,3283537407,3283537919,3283538431,3283538943,3283539455,3283539967,3283540479,3283540991,3283541503,3283542015,3283550207,3283550463,3283552255,3283553023,3283553279,3283553535,3283553791,3283554047,3283554303,3283554559,3283556351,3283556607,3283556863,3283558399,3283558655,3283558911,3283559423,3283559679,3283559935,3283560191,3283560447,3283560703,3283560959,3283561471,3283562495,3283562751,3283566591,3283566847,3283567103,3283567359,3283567615,3283569919,3283570175,3283570687,3283570943,3283571711,3283571967,3283572735,3283573247,3283574527,3283575551,3283575807,3283580159,3283580415,3283582975,3283583231,3283583743,3283583999,3283585023,3283585279,3283585535,3283585791,3283586047,3283586559,3283586815,3283587071,3283587583,3283588095,3283588351,3283589119,3283589375,3283590143,3283591167,3283592191,3283593215,3283595263,3283595775,3283596287,3283598079,3283598335,3283598591,3283598847,3283599103,3283599359,3283599615,3283599871,3283600895,3283601919,3283602175,3283602431,3283602943,3283603199,3283603455,3283604479,3283604735,3283605503,3283606783,3283607295,3283607551,3283608575,3283608831,3283609087,3283611903,3283612927,3283613183,3283613695,3283614975,3283615231,3283615743,3283623935,3283632127,3283632639,3283633151,3283633663,3283634175,3283634687,3283635199,3283635455,3283635711,3283636223,3283636735,3283637759,3283638271,3283638783,3283639295,3283639807,3283640319,3283648511,3283649023,3283656703,3283664895,3283673087,3283675135,3283675647,3283675903,3283677183,3283678207,3283678463,3283678719,3283678975,3283679231,3283679487,3283681279,3283746815,3283812351,3283877887,3283943423,3283944447,3283945471,3283946495,3283947519,3283948543,3283949567,3283950591,3283951615,3283952639,3283953663,3283954687,3283955711,3283956735,3283957759,3283958783,3283959807,3283960831,3283961855,3283962367,3283962879,3283963903,3283964927,3283966975,3283967999,3283969023,3283970047,3283971071,3283972095,3283973119,3283974143,3283975167,3283976191,3283976703,3283977215,3283977727,3283978751,3283979263,3283979775,3283980287,3283980543,3283980799,3283981823,3283982335,3283982847,3283983103,3283983615,3283983871,3283984383,3283984895,3283985407,3283985919,3283986431,3283986943,3283987455,3283987967,3283988735,3283988991,3283989503,3283990015,3283990527,3283991039,3283991551,3283992063,3283992575,3283993087,3283993599,3283994111,3283994623,3283995135,3283995647,3283996159,3283996671,3283997183,3283997695,3283998207,3283998719,3283999231,3283999743,3283999999,3284000255,3284000767,3284001279,3284002303,3284002815,3284003327,3284003839,3284004351,3284004863,3284005375,3284005887,3284006143,3284006399,3284007423,3284007935,3284008447,3284008959,3284009215,3284009471,3284009727,3284009983,3284010239,3284010751,3284011519,3284011775,3284012031,3284012799,3284013311,3284013567,3284013823,3284014079,3284014335,3284014591,3284014847,3284015103,3284015359,3284015615,3284015871,3284016127,3284016383,3284016639,3284017151,3284025343,3284026111,3284026367,3284026623,3284026879,3284027647,3284028415,3284028671,3284028927,3284030463,3284030975,3284031231,3284031487,3284031743,3284031999,3284033535,3284041727,3284041983,3284042239,3284042495,3284042751,3284043007,3284043263,3284043519,3284043775,3284044031,3284044287,3284044543,3284044799,3284045055,3284045311,3284045567,3284045823,3284046079,3284046335,3284046591,3284046847,3284047103,3284047615,3284047871,3284048127,3284048383,3284048639,3284049151,3284049407,3284049663,3284049919,3284058111,3284066303,3284075007,3284075519,3284076031,3284076543,3284077055,3284077567,3284078079,3284078591,3284079103,3284079615,3284080127,3284080639,3284081151,3284081663,3284082175,3284082687,3284083199,3284083711,3284084223,3284084735,3284085247,3284085759,3284086271,3284086783,3284087295,3284087807,3284088319,3284088575,3284089343,3284089855,3284090367,3284090879,3284091135,3284091391,3284091903,3284092415,3284092927,3284093439,3284093951,3284094975,3284095231,3284095487,3284095999,3284096511,3284097023,3284097535,3284098047,3284098559,3284099071,3284099327,3284099583,3284099839,3284100095,3284100607,3284101119,3284101631,3284102143,3284102655,3284103167,3284103679,3284104191,3284104703,3284105215,3284105727,3284106239,3284106751,3284107263,3284107775,3284108287,3284108799,3284109311,3284109823,3284110335,3284110847,3284111359,3284111615,3284111871,3284112383,3284112895,3284113919,3284114431,3284114943,3284115455,3284115967,3284116479,3284116991,3284117503,3284118015,3284118527,3284119039,3284119551,3284120063,3284120575,3284121087,3284121599,3284122111,3284122623,3284123135,3284124159,3284124671,3284125183,3284125695,3284126207,3284127231,3284127743,3284128255,3284128767,3284129279,3284129791,3284130303,3284130815,3284131327,3284131839,3284132351,3284132863,3284133375,3284133631,3284133887,3284134911,3284135935,3284136447,3284136959,3284137471,3284137983,3284138495,3284139007,3284172799,3284187135,3284189183,3284193279,3284195327,3284197375,3284199423,3284200447,3284201471,3284201983,3284202239,3284202495,3284203519,3284204031,3284204543,3284205311,3284205567,3284271103,3284402175,3284467711,3284533247,3284598783,3284664319,3284670975,3284671231,3284672511,3284680703,3284681215,3284681727,3284681983,3284682751,3284683263,3284683775,3284684287,3284684799,3284685311,3284685823,3284686079,3284686335,3284686847,3284687359,3284687871,3284688383,3284688895,3284697087,3284705279,3284713471,3284713727,3284713983,3284714239,3284714495,3284714751,3284715007,3284715263,3284715519,3284715775,3284716031,3284716287,3284716543,3284716799,3284717055,3284717311,3284717567,3284717823,3284718079,3284718335,3284718591,3284718847,3284719103,3284719359,3284719615,3284719871,3284720127,3284720383,3284720895,3284721151,3284721407,3284721663,3284722175,3284722687,3284723199,3284723711,3284724223,3284724479,3284724735,3284725247,3284725759,3284726271,3284726783,3284727295,3284727807,3284728319,3284728831,3284729343,3284729599,3284729855,3284795391,3284803583,3284811775,3284819967,3284820991,3284821503,3284821759,3284822015,3284823039,3284824319,3284824831,3284825087,3284825343,3284828159,3284844543,3284860927,3284926463,3284991999,3285057535,3285065727,3285073919,3285074175,3285074431,3285074687,3285079295,3285079551,3285082111,3285084159,3285084415,3285084671,3285084927,3285085183,3285085439,3285085695,3285086207,3285088255,3285088511,3285088767,3285089279,3285090303,3285098495,3285099519,3285099775,3285114879,3285115391,3285115903,3285116415,3285116927,3285117439,3285117695,3285118207,3285118463,3285118975,3285119487,3285119743,3285120511,3285121023,3285121535,3285122047,3285123071,3285188607,3285189119,3285189631,3285201919,3285202943,3285203967,3285204479,3285218815,3285220863,3285221375,3285231615,3285232127,3285234175,3285234431,3285234687,3285234943,3285235199,3285236991,3285237247,3285280255,3285280511,3285280767,3285287935,3285288191,3285288447,3285299711,3285300223,3285319679,3285320191,3285320703,3285321215,3285321727,3285321983,3285322239,3285322751,3285323263,3285323775,3285324287,3285324799,3285325311,3285325823,3285326335,3285326847,3285327359,3285327871,3285328127,3285328383,3285328895,3285329407,3285329919,3285330431,3285330943,3285331455,3285331967,3285332991,3285333503,3285334015,3285334527,3285335039,3285335551,3285336063,3285344255,3285347583,3285347839,3285348351,3285349375,3285352447,3285368831,3285385215,3285386239,3285387263,3285388287,3285389311,3285390335,3285391359,3285392383,3285393407,3285394431,3285395455,3285395967,3285396479,3285397503,3285397759,3285398015,3285398271,3285398527,3285399551,3285400575,3285401599,3285402623,3285403647,3285404671,3285406719,3285407743,3285408767,3285409791,3285410815,3285412863,3285413887,3285416959,3285417215,3285417727,3285417983,3285419007,3285420031,3285425151,3285426175,3285427199,3285427455,3285427711,3285427967,3285428223,3285429247,3285430271,3285431295,3285432319,3285434367,3285436415,3285437439,3285438463,3285440511,3285441535,3285442559,3285443583,3285444607,3285446655,3285447679,3285449215,3285449471,3285450751,3285453567,3285453823,3285454847,3285455103,3285455871,3285456383,3285456639,3285457151,3285457407,3285457663,3285457919,3285458943,3285459711,3285459967,3285460479,3285460991,3285465087,3285465343,3285466111,3285466367,3285466623,3285466879,3285467135,3285467391,3285467647,3285467903,3285468159,3285471743,3285471999,3285472255,3285473279,3285473535,3285474559,3285474815,3285475071,3285475327,3285476351,3285476607,3285477119,3285477375,3285478655,3285478911,3285479423,3285479679,3285480703,3285480959,3285481983,3285482239,3285483007,3285483519,3285484543,3285485055,3285485311,3285485567,3285486079,3285486591,3285487103,3285487359,3285488639,3285489663,3285491455,3285491711,3285492223,3285492479,3285492735,3285493759,3285494015,3285494783,3285495807,3285496319,3285496575,3285498111,3285498367,3285498623,3285499391,3285499647,3285499903,3285500159,3285500415,3285500927,3285501183,3285502207,3285502463,3285502719,3285503743,3285503999,3285507839,3285508095,3285508607,3285509119,3285509375,3285510143,3285512191,3285515263,3285515519,3285515775,3285516031,3285516287,3285581823,3285614591,3285630975,3285633023,3285635071,3285636095,3285636351,3285637119,3285638143,3285639167,3285641215,3285641983,3285642239,3285643263,3285645311,3285647359,3285712895,3285721087,3285729279,3285737471,3285745663,3285746687,3285747711,3285748735,3285749759,3285750783,3285751807,3285752575,3285752831,3285753343,3285753855,3285762047,3285762559,3285763071,3285763583,3285764095,3285764607,3285765119,3285766143,3285766655,3285766911,3285767167,3285767679,3285768191,3285768703,3285768959,3285769215,3285769727,3285770239,3285770495,3285770751,3285771007,3285771263,3285771519,3285771775,3285772031,3285772287,3285772543,3285772799,3285773055,3285773311,3285773567,3285773823,3285774079,3285774335,3285774591,3285774847,3285775103,3285775615,3285775871,3285776127,3285776383,3285776639,3285776895,3285777151,3285777407,3285777663,3285777919,3285778175,3285778431,3285843967,3285852159,3285860351,3285868543,3285876735,3285909503,3285910527,3285910783,3285913087,3285913343,3285915903,3285916159,3285916415,3285917183,3285917439,3285918719,3285918975,3285919487,3285919743,3285920767,3285922303,3285922559,3285922815,3285923327,3285924607,3285924863,3285926143,3285926911,3285927167,3285927679,3285927935,3285928447,3285928703,3285928959,3285929471,3285931519,3285932031,3285932287,3285933567,3285934079,3285934591,3285934847,3285936127,3285936639,3285938175,3285938431,3285938687,3285938943,3285939199,3285939711,3285940735,3285941247,3285941503,3285942527,3285942783,3285943039,3285943295,3285943551,3285943807,3285944063,3285944319,3285944575,3285944831,3285945343,3285945599,3285946111,3285946367,3285946879,3285947135,3285947391,3285947647,3285947903,3285948159,3285948415,3285948671,3285948927,3285949183,3285949439,3285949695,3285949951,3285950207,3285950463,3285950975,3285951231,3285951487,3285951999,3285952255,3285952511,3285953535,3285954047,3285954559,3285955583,3285955839,3285956095,3285956351,3285956607,3285956863,3285957119,3285957375,3285957631,3285957887,3285958143,3285958399,3285958655,3285958911,3285959167,3285959423,3285959935,3285960191,3285960447,3285960703,3285961727,3285962239,3285962495,3285963775,3285964287,3285964543,3285964799,3285966847,3285967103,3285967359,3285967615,3285968383,3285968639,3285968895,3285971199,3285971455,3285971711,3285971967,3285972223,3285972479,3285972735,3285972991,3285975039,3286106111,3286106623,3286107391,3286109183,3286109439,3286109695,3286110207,3286110463,3286111999,3286112255,3286112511,3286112767,3286113023,3286113279,3286113791,3286114047,3286114303,3286122495,3286130687,3286131711,3286132735,3286133759,3286134783,3286135807,3286136831,3286137855,3286138111,3286138367,3286138879,3286155263,3286171647,3286237183,3286302719,3286310911,3286311423,3286311935,3286312447,3286312959,3286313471,3286313983,3286314495,3286315007,3286315519,3286315775,3286316031,3286316543,3286317055,3286317567,3286318079,3286318591,3286319103,3286320127,3286321151,3286322175,3286323199,3286323455,3286323711,3286323967,3286324223,3286325247,3286326271,3286327295,3286327551,3286327807,3286328063,3286328319,3286329343,3286330367,3286331391,3286332415,3286333439,3286334463,3286335487,3286336511,3286337535,3286338559,3286339583,3286340607,3286340863,3286342655,3286344703,3286345727,3286346751,3286347775,3286348799,3286349823,3286350847,3286351871,3286352895,3286353919,3286354943,3286355967,3286356991,3286358015,3286359039,3286360063,3286361087,3286362111,3286362367,3286362623,3286363135,3286364159,3286365183,3286367231,3286368255,3286376447,3286384639,3286401023,3286409215,3286417407,3286417663,3286417919,3286418175,3286418431,3286418687,3286418943,3286419199,3286419455,3286419711,3286419967,3286420223,3286420735,3286420991,3286421247,3286421503,3286421759,3286422015,3286422271,3286422527,3286422783,3286423039,3286423295,3286423551,3286423807,3286424063,3286424319,3286424575,3286424831,3286425087,3286425343,3286425599,3286433791,3286499327,3286514431,3286514687,3286537983,3286538239,3286564863,3286566143,3286566399,3286566655,3286567423,3286571007,3286571775,3286630399,3286636031,3286636287,3286638591,3286646783,3286654975,3286655231,3286655487,3286655743,3286655999,3286656255,3286656511,3286656767,3286657023,3286657279,3286657535,3286657791,3286658047,3286658303,3286658559,3286658815,3286659327,3286659583,3286659839,3286660095,3286660351,3286660607,3286660863,3286661119,3286661375,3286661631,3286662143,3286662399,3286662655,3286662911,3286663167,3286671359,3286679551,3286728703,3286761471,3286761727,3286761983,3286765567,3286769407,3286769663,3286769919,3286773759,3286777855,3286781951,3286782207,3286782463,3286782719,3286783487,3286783999,3286784511,3286784767,3286785023,3286785535,3286785791,3286786047,3286786303,3286787071,3286787327,3286787583,3286787839,3286788095,3286788351,3286788607,3286789119,3286789631,3286790143,3286790655,3286790911,3286791679,3286791935,3286792191,3286794239,3286888447,3286889471,3286892543,3286893055,3286893567,3286894591,3286895103,3286895615,3286896127,3286896639,3286897151,3286897663,3286898175,3286898687,3286899711,3286899967,3286900223,3286900735,3286900991,3286901503,3286902015,3286902527,3286902783,3286903039,3286903551,3286903807,3286904063,3286904319,3286904575,3286904831,3286905087,3286905343,3286905599,3286905855,3286906111,3286906367,3286906879,3286907135,3286907391,3286907647,3286907903,3286908159,3286908415,3286908671,3286908927,3286909951,3286913023,3286913535,3286913791,3286914047,3286915071,3286915583,3286915839,3286916095,3286916863,3286917119,3286917631,3286917887,3286918143,3286919167,3286920191,3286921215,3286922239,3286923263,3286924287,3286925311,3286925823,3286926079,3286926335,3286926591,3286926847,3286927103,3286927359,3286927615,3286927871,3286928127,3286928383,3286928639,3286928895,3286929151,3286929407,3286929663,3286929919,3286930175,3286930431,3286930687,3286930943,3286931199,3286931455,3286931711,3286931967,3286932223,3286932479,3286932735,3286932991,3286933247,3286933503,3286933759,3286934015,3286934271,3286934527,3286934783,3286935039,3286935551,3286935807,3286936063,3286936319,3286936575,3286936831,3286937087,3286937343,3286937599,3286937855,3286938111,3286938367,3286938623,3286938879,3286939135,3286939391,3286939647,3286939903,3286940159,3286940415,3286940671,3286940927,3286941183,3286941439,3286941695,3286942719,3286943743,3286944767,3286945791,3286946815,3286947839,3286948863,3286949887,3286950911,3286951935,3286952959,3286953983,3286956031,3286957055,3286958079,3287023615,3287154687,3287162879,3287171071,3287171583,3287172095,3287172607,3287173119,3287173631,3287174143,3287174655,3287175167,3287175679,3287176191,3287176703,3287177215,3287178239,3287178751,3287179007,3287179263,3287180287,3287181311,3287182335,3287183359,3287184383,3287185407,3287185919,3287186175,3287186431,3287187455,3287191551,3287196671,3287198719,3287199743,3287201791,3287202815,3287203839,3287212031,3287212543,3287212799,3287213311,3287213567,3287213823,3287214079,3287214335,3287214591,3287214847,3287215103,3287215359,3287215615,3287215871,3287216127,3287216383,3287216639,3287217151,3287217407,3287217663,3287217919,3287218175,3287218431,3287218687,3287218943,3287219199,3287219455,3287219711,3287220223,3287285759,3287416831,3287425023,3287433215,3287433727,3287434239,3287434751,3287435263,3287436287,3287436799,3287437311,3287438335,3287438847,3287439359,3287439871,3287440383,3287440895,3287441407,3287442431,3287443967,3287444479,3287444991,3287445503,3287446527,3287447039,3287447551,3287448063,3287448575,3287449087,3287449599,3287450111,3287450623,3287451135,3287451647,3287452159,3287452671,3287453183,3287454207,3287454463,3287454719,3287455231,3287455743,3287456255,3287457279,3287457791,3287458047,3287458303,3287458559,3287459327,3287459583,3287459839,3287460095,3287460351,3287460607,3287460863,3287461119,3287461375,3287461631,3287461887,3287462143,3287462655,3287462911,3287463167,3287463423,3287463679,3287463935,3287464191,3287464447,3287464703,3287464959,3287465215,3287465471,3287465727,3287465983,3287467007,3287468031,3287469055,3287470079,3287471103,3287471359,3287471615,3287472127,3287472639,3287473151,3287473407,3287473919,3287474175,3287476223,3287477247,3287479039,3287479295,3287480319,3287481343,3287482367,3287548415,3287548927,3287549439,3287549951,3287550463,3287550975,3287551487,3287551999,3287552511,3287553023,3287553535,3287554047,3287554559,3287555071,3287555583,3287556095,3287564287,3287572479,3287580671,3287588863,3287597055,3287605247,3287630591,3287630847,3287631359,3287631871,3287632383,3287632895,3287633407,3287633919,3287634431,3287634943,3287635199,3287635455,3287635967,3287636479,3287636991,3287637503,3287638015,3287639039,3287639551,3287639807,3287640063,3287640575,3287641087,3287641599,3287641855,3287642111,3287642623,3287643135,3287643647,3287644671,3287645183,3287645439,3287645695,3287645951,3287646207,3287662591,3287662847,3287663103,3287663359,3287663615,3287663871,3287664127,3287664383,3287664639,3287664895,3287665151,3287665407,3287665919,3287666431,3287666687,3287666943,3287667199,3287667455,3287667711,3287667967,3287668223,3287668479,3287668735,3287668991,3287669247,3287669503,3287669759,3287670015,3287670271,3287670527,3287670783,3287671039,3287671295,3287671551,3287671807,3287672063,3287672319,3287672575,3287672831,3287673087,3287673343,3287673599,3287673855,3287674111,3287674367,3287674879,3287675135,3287675647,3287675903,3287676159,3287676415,3287676671,3287676927,3287677183,3287677439,3287677695,3287677951,3287678207,3287678463,3287678719,3287678975,3287687167,3287695359,3287703551,3287704063,3287704575,3287705087,3287705599,3287706111,3287706623,3287707135,3287707391,3287707647,3287708159,3287708671,3287709183,3287709695,3287710207,3287710719,3287711231,3287711743,3287718911,3287719167,3287719423,3287719679,3287719935,3287728127,3287729407,3287729663,3287729919,3287730175,3287732223,3287734271,3287734527,3287734783,3287735039,3287735295,3287736319,3287736831,3287737343,3287737855,3287738367,3287738879,3287739391,3287739903,3287740415,3287740927,3287741439,3287741951,3287742975,3287743487,3287743999,3287744511,3287810047,3287818239,3287826431,3287826687,3287826943,3287827199,3287827455,3287827711,3287827967,3287828223,3287828479,3287828735,3287828991,3287829247,3287829503,3287829759,3287830015,3287830271,3287830527,3287830783,3287831295,3287831551,3287831807,3287832063,3287832319,3287832575,3287832831,3287833087,3287833343,3287833855,3287834111,3287834367,3287834623,3287842815,3287851007,3287859199,3287859455,3287859711,3287867391,3287867903,3287868415,3287868927,3287869439,3287869951,3287870463,3287870975,3287871487,3287872511,3287873023,3287873535,3287874047,3287874559,3287875071,3287875583,3287941119,3287945215,3287946239,3287949311,3287949567,3287949823,3287950079,3287950335,3287950591,3287951103,3287951359,3287951615,3287951871,3287952127,3287952383,3287953151,3287953407,3287953663,3287953919,3287954175,3287954431,3287954687,3287954943,3287955199,3287955455,3287955711,3287955967,3287956223,3287956479,3287956735,3287956991,3287957247,3287957503,3287965695,3287973887,3287982079,3287990271,3287998463,3288006655,3288072191,3288088575,3288104959,3288116223,3288116479,3288116991,3288117247,3288118271,3288118783,3288119295,3288120319,3288121343,3288137727,3288143615,3288143871,3288145663,3288146175,3288150015,3288151039,3288159231,3288160255,3288162303,3288163327,3288163583,3288163839,3288164095,3288164351,3288164607,3288164863,3288165119,3288165375,3288165631,3288165887,3288166143,3288203263,3288236031,3288236543,3288237055,3288237311,3288238079,3288238591,3288239103,3288239615,3288240127,3288240639,3288241151,3288241663,3288242175,3288242687,3288243711,3288244735,3288245247,3288245503,3288245759,3288246271,3288246783,3288247295,3288247807,3288248831,3288249855,3288250367,3288250879,3288251391,3288251903,3288252415,3288260607,3288268799,3288334335,3288399871,3288400127,3288400383,3288400639,3288400895,3288401151,3288401407,3288401663,3288401919,3288403711,3288403967,3288406527,3288407039,3288408063,3288413183,3288414207,3288416255,3288417279,3288417535,3288418047,3288418303,3288418815,3288423423,3288425727,3288426495,3288426751,3288427263,3288427519,3288427775,3288428543,3288428799,3288429311,3288429567,3288430079,3288430335,3288430591,3288432639,3288433407,3288433919,3288434175,3288434687,3288434943,3288435199,3288435711,3288435967,3288436223,3288436479,3288436735,3288439807,3288440063,3288440831,3288441087,3288441343,3288442879,3288443135,3288443647,3288443903,3288444927,3288449023,3288465407,3288465919,3288466175,3288466431,3288467455,3288469503,3288481791,3288485887,3288489983,3288514559,3288522751,3288530943,3288532991,3288534527,3288535039,3288543487,3288543743,3288543999,3288545791,3288546303,3288547327,3288547583,3288547839,3288548095,3288549375,3288549631,3288549887,3288553215,3288553471,3288553983,3288554239,3288554495,3288555007,3288555263,3288555519,3288557567,3288557823,3288558079,3288558335,3288558847,3288559103,3288564735,3288568831,3288569855,3288570111,3288570367,3288577023,3288578047,3288580095,3288588287,3288608255,3288610815,3288611071,3288614655,3288616959,3288617215,3288661759,3288662015,3288727551,3288727807,3288753919,3288754175,3288758271,3288758527,3288772607,3288774655,3288774911,3288775167,3288775679,3288776703,3288778239,3288778495,3288778751,3288779007,3288779263,3288779775,3288780799,3288782591,3288782847,3288783359,3288783871,3288784127,3288785407,3288785663,3288785919,3288786175,3288786431,3288786687,3288787967,3288788223,3288792831,3288793087,3288897791,3288898047,3288898303,3288901631,3288901887,3288910335,3288910847,3288911103,3288911359,3288911615,3288912127,3288912639,3288913151,3288913663,3288914175,3288914431,3288914687,3288914943,3288915455,3288915711,3288915967,3288916223,3288916735,3288916991,3288919295,3288919551,3288921343,3288921599,3288989695,3288989951,3289002751,3289003007,3289004031,3289005311,3289014527,3289014783,3289015295,3289015551,3289020159,3289020415,3289020671,3289020927,3289021439,3289024767,3289025023,3289025535,3289025791,3289027327,3289027583,3289027839,3289044735,3289044991,3289047039,3289048063,3289048319,3289048831,3289049087,3289053951,3289054207,3289055231,3289070335,3289070591,3289070847,3289071103,3289071359,3289074431,3289074687,3289075711,3289077759,3289078271,3289078527,3289081599,3289081855,3289082111,3289086975,3289087231,3289089791,3289090047,3289093631,3289093887,3289094143,3289100031,3289100287,3289102335,3289103359,3289103615,3289103871,3289104383,3289107967,3289108479,3289114367,3289114623,3289115135,3289115391,3289119231,3289119743,3289120511,3289120767,3289123327,3289123583,3289123839,3289124863,3289128959,3289137151,3289153535,3289154047,3289154303,3289154815,3289155327,3289155583,3289155839,3289161215,3289161471,3289161727,3289169919,3289186303,3289186559,3289212159,3289212415,3289212671,3289212927,3289213183,3289213439,3289213695,3289213951,3289214207,3289214463,3289214719,3289215231,3289217279,3289217535,3289217791,3289218047,3289218303,3289218559,3289220351,3289220607,3289221119,3289221631,3289227519,3289227775,3289229311,3289229567,3289230591,3289230847,3289231359,3289233919,3289234175,3289235199,3289235455,3289237503,3289237759,3289238015,3289238271,3289238527,3289238783,3289239039,3289239295,3289239551,3289239807,3289240063,3289243391,3289243647,3289248255,3289248511,3289248767,3289249023,3289249279,3289250815,3289251071,3289251327,3289251583,3289251839,3289319423,3289320447,3289321471,3289325567,3289333759,3289343999,3289350143,3289382911,3289401343,3289401855,3289402367,3289410559,3289411327,3289411583,3289414143,3289414655,3289430527,3289431039,3289433599,3289434111,3289439231,3289439487,3289439743,3289439999,3289440255,3289441535,3289441791,3289442047,3289442303,3289445375,3289445631,3289446399,3289446655,3289464831,3289465855,3289467903,3289468927,3289472511,3289472767,3289477631,3289477887,3289478143,3289479167,3289491455,3289491711,3289491967,3289492223,3289495807,3289496063,3289503743,3289504767,3289505535,3289505791,3289506303,3289506559,3289506815,3289507071,3289507327,3289507583,3289507839,3289512191,3289512959,3289514239,3289514495,3289514751,3289515007,3289517055,3289518079,3289544703,3289545727,3289554431,3289554687,3289554943,3289555967,3289556991,3289558783,3289559039,3289560063,3289561087,3289562879,3289563135,3289564159,3289564415,3289564671,3289564927,3289565183,3289569535,3289569791,3289570303,3289571327,3289571583,3289571839,3289572095,3289572607,3289572863,3289573119,3289573375,3289574655,3289574911,3289581567,3289582079,3289582335,3289582591,3289610239,3289611007,3289611263,3289612287,3289614335,3289615359,3289615871,3289619455,3289620479,3289624575,3289625087,3289625343,3289625599,3289629695,3289629951,3289630207,3289630463,3289630719,3289634303,3289634815,3289637631,3289637887,3289638911,3289640959,3289641215,3289641727,3289641983,3289642239,3289643007,3289643263,3289643519,3289645055,3289653247,3289660415,3289661183,3289661439,3289677823,3289710591,3289777407,3289777663,3289777919,3289778175,3289779199,3289780223,3289788415,3289792511,3289809407,3289809663,3289809919,3289812991,3289817087,3289907199,3289908223,3289923583,3289924607,3290103807,3290104319,3290107135,3290107391,3290107647,3290107903,3290111999,3290112255,3290120191,3290128383,3290136575,3290169343,3290171135,3290171391,3290171647,3290171903,3290172159,3290172415,3290173439,3290181631,3290185727,3290226687,3290230783,3290234879,3290243071,3290245119,3290246143,3290247167,3290249215,3290251263,3290267647,3290275839,3290284031,3290288127,3290292223,3290296319,3290431487,3290433535,3290435583,3290446847,3290447103,3290447871,3290456063,3290460159,3290464255,3290472447,3290480639,3290482687,3290484735,3290486783,3290488831,3290489343,3290489855,3290490367,3290492927,3290494975,3290955775,3290957823,3290958079,3290959871,3290960127,3290960639,3290961151,3290962175,3290962687,3290963455,3290963711,3290967295,3290967551,3290974719,3290974975,3290976255,3290976767,3290977023,3290977279,3290978815,3290979327,3290980351,3290984447,3290988543,3290992639,3290996735,3291000831,3291004927,3291021311,3291029503,3291037695,3291037951,3291038207,3291038463,3291038719,3291038975,3291039743,3291039999,3291040255,3291040511,3291040767,3291041023,3291041279,3291041791,3291042047,3291042303,3291042559,3291042815,3291043071,3291043327,3291043583,3291043839,3291044095,3291044351,3291044607,3291045375,3291045631,3291045887,3291078655,3291086847,3291103231,3291119615,3291152383,3291168767,3291176959,3291183103,3291184127,3291185151,3291201535,3291201791,3291202047,3291202303,3291202559,3291202815,3291203071,3291203327,3291203583,3291203839,3291204095,3291204351,3291204863,3291205119,3291205631,3291206143,3291206399,3291206911,3291207167,3291207423,3291207679,3291207935,3291208191,3291208447,3291208703,3291208959,3291209215,3291209471,3291209727,3291209983,3291210239,3291210495,3291210751,3291211007,3291211263,3291211519,3291211775,3291212031,3291212287,3291212543,3291212799,3291213055,3291213311,3291213567,3291213823,3291214079,3291214335,3291214591,3291214847,3291215103,3291215359,3291215615,3291215871,3291216127,3291216383,3291216639,3291216895,3291217151,3291217407,3291217919,3291230207,3291234303,3291242495,3291248383,3291248639,3291250431,3291250687,3291258879,3291262975,3291267071,3291279359,3291283455,3291287551,3291291647,3291295743,3291299839,3291308031,3291312127,3291316223,3291324415,3291325439,3291326463,3291330559,3291331583,3291332607,3291343871,3291344895,3291348991,3291353087,3291353343,3291353599,3291354111,3291354367,3291354623,3291354879,3291355135,3291355391,3291355647,3291355903,3291356159,3291356415,3291356671,3291357183,3291365375,3291367423,3291369471,3291373567,3291377663,3291378687,3291379711,3291380735,3291381759,3291383807,3291385855,3291386879,3291387903,3291388927,3291389951,3291397119,3291398143,3291406335,3291408383,3291410431,3291412479,3291414527,3291426815,3291428351,3291428607,3291428863,3291429119,3291430399,3291430911,3291439103,3291447295,3291463679,3291480319,3291480575,3291480831,3291481855,3291482367,3291482623,3291483135,3291483647,3291484159,3291484415,3291484927,3291485439,3291486207,3291487231,3291487743,3291488511,3291488767,3291489023,3291489279,3291490047,3291491327,3291491583,3291492351,3291492607,3291493631,3291494143,3291494911,3291495679,3291497471,3291497727,3291498751,3291499263,3291499519,3291499775,3291500287,3291500799,3291501311,3291501567,3291502591,3291502847,3291503103,3291503359,3291503615,3291503871,3291504127,3291504383,3291505407,3291505663,3291505919,3291506431,3291506943,3291507967,3291508223,3291509503,3291510015,3291510527,3291510783,3291511039,3291511295,3291511551,3291514111,3291514623,3291515647,3291515903,3291516671,3291517183,3291517439,3291517951,3291518463,3291518719,3291518975,3291519231,3291519487,3291520255,3291521023,3291521535,3291521791,3291522303,3291522559,3291523071,3291523839,3291525119,3291525631,3291526143,3291526399,3291526911,3291527167,3291527423,3291527679,3291527935,3291528191,3291529215,3291530751,3291531007,3291532031,3291532543,3291532799,3291533311,3291533567,3291533823,3291534079,3291534847,3291535103,3291535871,3291536895,3291537151,3291537407,3291537919,3291538431,3291538687,3291538943,3291539455,3291539711,3291540223,3291540479,3291540991,3291541247,3291541759,3291542527,3291543039,3291543295,3291544319,3291544575,3291544831,3291545087,3291545343,3291545599,3291545855,3291546111,3291546367,3291546623,3291546879,3291547135,3291547391,3291547647,3291547903,3291548159,3291548415,3291548671,3291548927,3291549183,3291549439,3291549695,3291549951,3291550207,3291550463,3291550719,3291550975,3291551231,3291551487,3291551743,3291551999,3291552255,3291552511,3291552767,3291553023,3291553279,3291553535,3291553791,3291554047,3291554303,3291554559,3291555327,3291555583,3291555839,3291556095,3291556351,3291556607,3291556863,3291557119,3291557375,3291557631,3291557887,3291558143,3291558399,3291558655,3291558911,3291559167,3291559423,3291559679,3291559935,3291560191,3291560447,3291560703,3291560959,3291561215,3291561471,3291561727,3291561983,3291562239,3291562495,3291562751,3291563007,3291563519,3291564031,3291564287,3291564543,3291564799,3291565055,3291565567,3291566591,3291566847,3291567103,3291567359,3291567615,3291567871,3291568127,3291568383,3291568639,3291568895,3291569151,3291569407,3291570175,3291570431,3291570687,3291570943,3291571199,3291571455,3291571711,3291571967,3291611135,3291611647,3291611903,3291612159,3291613183,3291615231,3291616255,3291616511,3291616767,3291617279,3291619327,3291619839,3291627519,3291643903,3291660287,3291676671,3291712511,3291712767,3291736063,3291738111,3291742207,3291742975,3291743231,3291746303,3291748351,3291751679,3291751935,3291755263,3291755519,3291755775,3291756031,3291756543,3291756799,3291757055,3291757311,3291758847,3291759103,3291759359,3291759615,3291760895,3291761151,3291762687,3291762943,3291765247,3291765503,3291765759,3291766015,3291779583,3291779839,3291781119,3291783167,3291785215,3291787263,3291803647,3291805951,3291808255,3291808511,3291813119,3291813375,3291814143,3291814399,3291815679,3291815935,3291828735,3291829247,3291830527,3291830783,3291835391,3291835647,3291836671,3291836927,3291837439,3291838463,3291841791,3291842047,3291842559,3291844607,3291847167,3291847423,3291857151,3291857407,3291868159,3291869183,3291874047,3291874303,3291877375,3291877631,3291880959,3291881215,3291881727,3291881983,3291885567,3291885823,3291891711,3291892223,3291895807,3291896831,3291907071,3291908095,3291917311,3291917823,3291940095,3291940351,3291946239,3291946495,3291947007,3291947263,3291949055,3291951103,3291967487,3291968511,3291971583,3291972607,3291980799,3291981823,3292004351,3292004607,3292005119,3292005375,3292005631,3292006399,3292006911,3292008191,3292009215,3292009471,3292009727,3292009983,3292010239,3292010751,3292011263,3292012031,3292012287,3292012543,3292012799,3292013055,3292013823,3292014335,3292014591,3292015103,3292015615,3292015871,3292016127,3292016895,3292017151,3292017407,3292018175,3292018687,3292019199,3292019455,3292020479,3292020735,3292020991,3292021247,3292021503,3292021759,3292022271,3292022527,3292023039,3292023807,3292025087,3292025855,3292026111,3292026623,3292027647,3292028159,3292029183,3292029439,3292030207,3292031231,3292031487,3292031999,3292032511,3292033023,3292033791,3292034047,3292034559,3292034815,3292035071,3292036351,3292036607,3292036863,3292037119,3292037375,3292037631,3292037887,3292038911,3292039423,3292040191,3292041727,3292042239,3292042751,3292043775,3292045311,3292045567,3292046079,3292046335,3292046591,3292047615,3292047871,3292048127,3292049151,3292049407,3292049663,3292050687,3292050943,3292051711,3292051967,3292052479,3292052991,3292053759,3292054015,3292054271,3292054527,3292054783,3292055551,3292055807,3292056575,3292057087,3292057343,3292057599,3292057855,3292058111,3292058623,3292059391,3292059647,3292059903,3292060671,3292060927,3292062463,3292062719,3292063487,3292063743,3292064255,3292064511,3292064767,3292065023,3292065791,3292066047,3292066303,3292066559,3292067071,3292067327,3292067583,3292067839,3292068095,3292070143,3292070399,3292070655,3292070911,3292071167,3292071423,3292071935,3292072191,3292072447,3292072703,3292072959,3292073215,3292074239,3292074495,3292075519,3292076543,3292076799,3292077055,3292077311,3292077567,3292078079,3292078847,3292079103,3292079359,3292079615,3292079871,3292080127,3292080383,3292081151,3292081663,3292082175,3292082431,3292082687,3292082943,3292083967,3292084223,3292084479,3292085503,3292085759,3292086271,3292087039,3292087551,3292087807,3292089343,3292090879,3292091903,3292092159,3292092415,3292092927,3292093183,3292093695,3292094975,3292095487,3292095743,3292095999,3292096511,3292097279,3292097535,3292097791,3292098815,3292099071,3292099839,3292100351,3292100607,3292100863,3292101119,3292101375,3292101631,3292102143,3292102655,3292103167,3292103423,3292104191,3292104447,3292104703,3292105727,3292105983,3292107007,3292107263,3292107519,3292107775,3292108031,3292108287,3292108543,3292108799,3292109311,3292109567,3292109823,3292110079,3292110335,3292110591,3292110847,3292111359,3292111615,3292111871,3292112639,3292113407,3292113663,3292113919,3292114175,3292114431,3292114943,3292115455,3292115711,3292115967,3292116223,3292116735,3292116991,3292117247,3292117503,3292117759,3292118015,3292119295,3292119551,3292120063,3292120319,3292121087,3292121343,3292121855,3292122111,3292122879,3292123391,3292123647,3292124671,3292125183,3292125439,3292125695,3292126463,3292126975,3292127231,3292127487,3292127743,3292127999,3292128511,3292128767,3292129023,3292129279,3292129535,3292130559,3292130815,3292131071,3292131327,3292131583,3292132095,3292132351,3292132607,3292132863,3292133375,3292133887,3292134655,3292134911,3292135167,3292136447,3292136703,3292137215,3292137471,3292137727,3292138239,3292138495,3292139263,3292139775,3292140543,3292141567,3292142591,3292142847,3292143103,3292143359,3292143871,3292144383,3292144639,3292144895,3292145151,3292145407,3292146687,3292147711,3292147967,3292148735,3292149503,3292149759,3292150271,3292150783,3292151039,3292151551,3292152319,3292153855,3292154879,3292155647,3292155903,3292156415,3292156927,3292157183,3292157695,3292158463,3292158975,3292159231,3292159487,3292159743,3292159999,3292160255,3292160511,3292161535,3292162303,3292162559,3292162815,3292163071,3292163327,3292163583,3292164351,3292164863,3292165119,3292165375,3292165631,3292166143,3292166399,3292166911,3292167167,3292167423,3292167935,3292168191,3292168447,3292168703,3292168959,3292169215,3292169471,3292169727,3292170239,3292170495,3292171519,3292171775,3292172799,3292173055,3292174591,3292175359,3292175871,3292176639,3292177407,3292177663,3292178175,3292178431,3292178687,3292178943,3292180223,3292180479,3292182015,3292182527,3292183039,3292183295,3292183551,3292183807,3292184063,3292184575,3292186111,3292186367,3292186623,3292187135,3292187647,3292187903,3292189439,3292189951,3292190719,3292190975,3292191999,3292192255,3292192511,3292192767,3292193023,3292193279,3292194303,3292194559,3292195071,3292195583,3292195839,3292196863,3292197119,3292197631,3292198143,3292198655,3292199423,3292199679,3292200191,3292200959,3292201215,3292201471,3292201727,3292201983,3292202495,3292202751,3292203263,3292204031,3292204287,3292204543,3292205055,3292206079,3292207359,3292207615,3292207871,3292208127,3292208383,3292210175,3292210687,3292210943,3292211711,3292211967,3292212991,3292213247,3292213759,3292214015,3292214271,3292215039,3292215295,3292215551,3292216831,3292217855,3292218111,3292218623,3292218879,3292219135,3292219391,3292219647,3292219903,3292220159,3292220415,3292220927,3292221183,3292221439,3292221951,3292222463,3292222975,3292223231,3292224255,3292225023,3292225791,3292226303,3292226559,3292227071,3292227583,3292228351,3292228863,3292229375,3292229631,3292229887,3292230143,3292231167,3292232191,3292232447,3292232703,3292232959,3292233471,3292233727,3292233983,3292235263,3292236287,3292236543,3292236799,3292237567,3292238079,3292238335,3292238591,3292239103,3292239359,3292239615,3292239871,3292240383,3292240639,3292240895,3292241151,3292241407,3292241663,3292243455,3292244479,3292244735,3292244991,3292245247,3292245759,3292246527,3292246783,3292247807,3292248575,3292248831,3292249343,3292249599,3292249855,3292250111,3292250879,3292251135,3292251391,3292251647,3292252927,3292253183,3292253439,3292254207,3292254719,3292255231,3292255487,3292255743,3292255999,3292256511,3292257279,3292257535,3292260095,3292260351,3292260863,3292261375,3292261631,3292262143,3292262655,3292263167,3292263679,3292263935,3292264447,3292266495,3292266751,3292267007,3292267263,3292267519,3292267775,3292268031,3292268543,3292269567,3292269823,3292270079,3292270335,3292275711,3292275967,3292276223,3292276479,3292276735,3292276991,3292277247,3292277503,3292277759,3292278015,3292278271,3292278527,3292278783,3292279039,3292279295,3292279551,3292279807,3292280063,3292280319,3292280575,3292280831,3292281087,3292281343,3292281599,3292282111,3292282367,3292282879,3292283135,3292283391,3292283647,3292283903,3292284159,3292284415,3292284927,3292285439,3292285695,3292285951,3292286207,3292286463,3292286719,3292286975,3292287231,3292287487,3292287743,3292287999,3292288255,3292288511,3292288767,3292289023,3292289535,3292289791,3292290047,3292290303,3292290559,3292290815,3292291071,3292291583,3292293119,3292293375,3292293631,3292293887,3292294655,3292294911,3292295167,3292295423,3292295679,3292295935,3292296191,3292296447,3292297215,3292297471,3292334079,3292336127,3292340223,3292344319,3292345343,3292346367,3292348671,3292348927,3292349183,3292349439,3292350463,3292351487,3292352511,3292356607,3292364799,3292381183,3292385279,3292387327,3292389375,3292391423,3292393471,3292397567,3292495871,3292512255,3292525311,3292525567,3292528639,3294625791,3295674367,3296722943,3298820095,3299344383,3299606527,3299868671,3300130815,3300392959,3300655103,3300917247,3300921343,3300925439,3300929535,3300933631,3300935679,3300937727,3300938751,3300941823,3300946943,3300947967,3300948991,3300949247,3300953087,3300954111,3300958207,3300966399,3301114879,3301115135,3301117695,3301117951,3301178623,3301178879,3301179391,3301179647,3301179903,3301180415,3301181439,3301181695,3301181951,3301182207,3301183231,3301183487,3301183743,3301183999,3301184255,3301185023,3301185535,3301185791,3301186303,3301186559,3301187071,3301187327,3301187583,3301187839,3301188095,3301188351,3301188607,3301189119,3301189375,3301189631,3301189887,3301190399,3301190911,3301191167,3301191423,3301191679,3301191935,3301192191,3301192447,3301193471,3301193727,3301194239,3301196287,3301196543,3301196799,3301197055,3301197311,3301197823,3301198079,3301198335,3301199103,3301200127,3301200383,3301200639,3301200895,3301201151,3301201407,3301201919,3301202175,3301202431,3301202943,3301203199,3301203455,3301203711,3301204479,3301204735,3301204991,3301205247,3301205503,3301205759,3301206527,3301206783,3301207039,3301207295,3301207551,3301208063,3301208319,3301210111,3301210879,3301211135,3301212671,3301213183,3301214719,3301214975,3301216767,3301217023,3301217535,3301217791,3301218047,3301218303,3301219583,3301219839,3301220095,3301220351,3301220607,3301220863,3301221375,3301221631,3301222143,3301222399,3301222655,3301222911,3301223167,3301223423,3301223679,3301223935,3301224191,3301224447,3301224703,3301225471,3301226751,3301227007,3301227263,3301227519,3301227775,3301228031,3301228287,3301228543,3301229055,3301229311,3301229567,3301229823,3301230335,3301230591,3301230847,3301231103,3301232383,3301232639,3301232895,3301233151,3301233663,3301233919,3301234431,3301234687,3301235455,3301235711,3301236735,3301236991,3301237503,3301238783,3301239295,3301239551,3301239807,3301240063,3301240319,3301240831,3301241087,3301241343,3301241599,3301242111,3301242879,3301243135,3301243391,3301243903,3301244671,3301245951,3301246975,3301247487,3301247743,3301247999,3301248767,3301249023,3301249279,3301249535,3301249791,3301250047,3301250303,3301251071,3301252095,3301252351,3301253375,3301253631,3301254143,3301254399,3301254911,3301255167,3301255935,3301257983,3301258495,3301258751,3301259263,3301259519,3301259775,3301260031,3301260543,3301260799,3301261567,3301262591,3301263359,3301263615,3301264127,3301264895,3301265407,3301266431,3301266687,3301266943,3301267199,3301267455,3301267967,3301268223,3301268735,3301268991,3301269247,3301270015,3301272319,3301274111,3301274367,3301274623,3301275391,3301275647,3301277695,3301277951,3301278463,3301278719,3301280255,3301281279,3301282047,3301282559,3301283327,3301283583,3301283839,3301284095,3301284351,3301284863,3301285119,3301285631,3301285887,3301286143,3301286911,3301287679,3301287935,3301288191,3301289215,3301289471,3301289983,3301290495,3301290751,3301291263,3301292031,3301292287,3301292543,3301292799,3301293055,3301293311,3301293823,3301295359,3301295615,3301295871,3301296383,3301296639,3301297919,3301298175,3301298431,3301298687,3301299199,3301299455,3301299967,3301301247,3301301503,3301302015,3301302271,3301302527,3301302783,3301303551,3301303807,3301304063,3301304575,3301305087,3301305343,3301305599,3301306879,3301307135,3301307391,3301307647,3301307903,3301308159,3301309183,3301309439,3301309951,3301310975,3301311231,3301311743,3301311999,3301312511,3301312767,3301313023,3301313279,3301313535,3301314047,3301314303,3301314559,3301314815,3301315839,3301316095,3301316607,3301317119,3301317375,3301317887,3301318143,3301318399,3301318911,3301319423,3301319935,3301320191,3301320703,3301320959,3301321215,3301321471,3301321727,3301322495,3301322751,3301323007,3301323263,3301323519,3301323775,3301324031,3301324543,3301325055,3301325567,3301326079,3301326847,3301327103,3301327615,3301328127,3301328383,3301328639,3301329151,3301329407,3301329919,3301332223,3301332479,3301333247,3301333759,3301334271,3301334783,3301335039,3301335295,3301335551,3301335807,3301336575,3301336831,3301337343,3301337599,3301338367,3301339135,3301339647,3301340671,3301341951,3301342207,3301342975,3301343231,3301343743,3301343999,3301344255,3301344511,3301344767,3301345023,3301345535,3301345791,3301346303,3301347327,3301348351,3301349119,3301350143,3301350399,3301350911,3301351167,3301351935,3301352191,3301352447,3301352703,3301352959,3301353215,3301353471,3301354239,3301354751,3301355007,3301355263,3301355519,3301355775,3301356031,3301356543,3301356799,3301357311,3301357567,3301357823,3301358079,3301358335,3301358847,3301359103,3301359615,3301359871,3301360127,3301360383,3301360895,3301361151,3301361407,3301361919,3301362687,3301364223,3301365247,3301365503,3301366015,3301366271,3301366783,3301367039,3301367295,3301367551,3301367807,3301368063,3301368575,3301368831,3301369087,3301369343,3301369599,3301370367,3301370623,3301371135,3301371391,3301371647,3301371903,3301372927,3301373183,3301374207,3301374463,3301374719,3301374975,3301375231,3301375999,3301376255,3301377791,3301378047,3301378303,3301378559,3301378815,3301379071,3301379583,3301381631,3301382143,3301382399,3301382655,3301382911,3301383935,3301384191,3301384959,3301385215,3301385471,3301385727,3301385983,3301386239,3301386495,3301386751,3301387263,3301388031,3301388287,3301388543,3301388799,3301389055,3301389567,3301390079,3301390335,3301390847,3301391359,3301391871,3301392127,3301392895,3301393151,3301393663,3301393919,3301394687,3301394943,3301395199,3301395711,3301395967,3301396479,3301396735,3301397247,3301397759,3301398271,3301398783,3301400575,3301400831,3301401087,3301401343,3301401599,3301402367,3301402623,3301402879,3301403391,3301403647,3301403903,3301404159,3301404927,3301405951,3301406207,3301406463,3301406719,3301406975,3301407231,3301407487,3301407743,3301408511,3301408767,3301409279,3301409535,3301409791,3301410047,3301410559,3301411327,3301411583,3301411839,3301412607,3301413119,3301413375,3301414399,3301414655,3301414911,3301415423,3301415679,3301415935,3301416191,3301417215,3301417471,3301418239,3301418495,3301419007,3301419263,3301419519,3301419775,3301420031,3301420287,3301422079,3301422335,3301422847,3301423103,3301423359,3301424127,3301425151,3301425663,3301426175,3301426431,3301426687,3301426943,3301427199,3301427455,3301428223,3301428479,3301430015,3301430527,3301430783,3301431295,3301431551,3301431807,3301432063,3301432575,3301433087,3301433599,3301433855,3301434111,3301434623,3301434879,3301435135,3301435391,3301435903,3301436415,3301437439,3301437695,3301437951,3301438207,3301438463,3301438975,3301439487,3301439999,3301440511,3301441279,3301445631,3301452543,3301452799,3301453823,3301457919,3301462015,3301466111,3301470207,3301471231,3301471487,3301474047,3301474303,3301490687,3301494783,3301498879,3301502975,3301507071,3301507327,3301507583,3301507839,3301508095,3301508607,3301509119,3301510143,3301511167,3301513215,3301515263,3301523455,3301531647,3301539839,3301540095,3301540351,3301540863,3301541119,3301541375,3301541887,3301542399,3301542655,3301542911,3301543167,3301543423,3301543679,3301543935,3301544191,3301544447,3301544959,3301545215,3301545727,3301545983,3301546239,3301546495,3301546751,3301547007,3301547263,3301547519,3301547775,3301548031,3301556223,3301559551,3301560319,3301565695,3301565951,3301566463,3301568511,3301570559,3301572607,3301605375,3301605631,3301605887,3301613567,3301629951,3301631999,3301634047,3301636095,3301637119,3301638143,3301703679,3301834751,3301900287,3301904383,3301908479,3301911807,3301912063,3301912575,3301933055,3301949439,3301965823,3302490111,3302490367,3302490623,3302491135,3302492159,3302494207,3302496255,3302498303,3302506495,3302508543,3302511359,3302511615,3302522879,3302523903,3302525951,3302526975,3302529023,3302530047,3302531071,3302531327,3302531583,3302531839,3302532095,3302533119,3302533375,3302533887,3302534143,3302535167,3302536191,3302537215,3302538239,3302539263,3302540287,3302541311,3302542335,3302542591,3302542847,3302543103,3302543359,3302544383,3302544639,3302544895,3302545151,3302545407,3302545919,3302546431,3302546943,3302547455,3302547967,3302548479,3302548991,3302549503,3302550015,3302550527,3302551551,3302552063,3302552575,3302552831,3302553087,3302553343,3302553599,3302554111,3302554367,3302554623,3302554879,3302555135,3302555391,3302555647,3302621183,3302684671,3302686719,3302750207,3302752255,3302760447,3302768639,3302776831,3302785023,3302793215,3302801407,3302805503,3302809599,3302817791,3302883327,3302948863,3302949119,3302949375,3302949631,3302949887,3302950143,3302950655,3302950911,3302951423,3302951679,3302951935,3302952191,3302952447,3302952703,3302952959,3302953471,3302953727,3302953983,3302954239,3302954495,3302955007,3302955263,3302955519,3302955775,3302956031,3302956287,3302956543,3302957055,3302957311,3302957567,3302957823,3302958079,3302958335,3302958591,3302958847,3302959103,3302959359,3302959615,3302959871,3302960127,3302960383,3302960639,3302960895,3302961151,3302977535,3302981631,3302985727,3302987775,3302989823,3302993919,3302998015,3303010303,3303011583,3303012351,3303013375,3303013631,3303014399,3304062975,3304063231,3304063487,3304063743,3304064255,3304064511,3304064767,3304065279,3304065535,3304065791,3304066559,3304066815,3304067071,3304067327,3304067583,3304069119,3304069375,3304069887,3304070399,3304070655,3304070911,3304071423,3304071679,3304071935,3304072447,3304072703,3304072959,3304073215,3304074239,3304074495,3304074751,3304075775,3304076031,3304076799,3304077055,3304077567,3304077823,3304078079,3304078335,3304078591,3304078847,3304079103,3304079359,3304079615,3304080127,3304080639,3304081407,3304081663,3304082431,3304082943,3304083199,3304083455,3304083711,3304083967,3304084223,3304084735,3304085247,3304086015,3304086271,3304086527,3304087807,3304088575,3304089087,3304089343,3304089599,3304089855,3304090111,3304090623,3304090879,3304091135,3304091647,3304091903,3304092159,3304092415,3304092671,3304093183,3304093439,3304093695,3304093951,3304094463,3304095231,3304095487,3304097791,3304098047,3304099327,3304099839,3304100095,3304100607,3304101119,3304101887,3304102399,3304102911,3304103679,3304103935,3304105471,3304105727,3304105983,3304106495,3304107263,3304107519,3304108031,3304108543,3304108799,3304109055,3304110335,3304110591,3304110847,3304111103,3304111359,3304111615,3304111871,3304112383,3304112639,3304113151,3304113407,3304113663,3304114175,3304114943,3304115967,3304116223,3304116479,3304117503,3304117759,3304118527,3304118783,3304119039,3304119295,3304119551,3304119807,3304120319,3304120831,3304121343,3304122111,3304122367,3304122623,3304122879,3304123391,3304123647,3304123903,3304124159,3304124671,3304124927,3304125183,3304125439,3304125695,3304125951,3304126719,3304126975,3304127231,3304127487,3304127743,3304127999,3304128255,3304128511,3304128767,3304129023,3304129535,3304129791,3304130303,3304130815,3304131071,3304132095,3304132351,3304132607,3304132863,3304133119,3304133375,3304134143,3304134655,3304135935,3304136959,3304137215,3304137471,3304137727,3304137983,3304138239,3304138495,3304139263,3304139775,3304140031,3304140287,3304140543,3304140799,3304141055,3304141311,3304142591,3304142847,3304143103,3304143359,3304143871,3304144127,3304144383,3304144639,3304145663,3304145919,3304146687,3304147199,3304147455,3304147967,3304148479,3304148735,3304148991,3304149247,3304149503,3304150015,3304150271,3304150527,3304150783,3304151807,3304152063,3304152319,3304152575,3304153599,3304154111,3304155135,3304155391,3304155647,3304156159,3304156415,3304156927,3304157183,3304157695,3304157951,3304158207,3304158463,3304158719,3304159231,3304159487,3304159743,3304160511,3304160767,3304161023,3304161535,3304161791,3304162047,3304162559,3304162815,3304163583,3304163839,3304164095,3304164351,3304165119,3304165375,3304165631,3304166143,3304166655,3304167167,3304167423,3304168191,3304168703,3304168959,3304169215,3304169727,3304169983,3304170751,3304171263,3304172287,3304172543,3304172799,3304174079,3304174591,3304174847,3304175103,3304175359,3304175871,3304176127,3304176383,3304176639,3304177407,3304178175,3304178431,3304178687,3304178943,3304179199,3304179455,3304179711,3304180479,3304180735,3304180991,3304181247,3304181759,3304182783,3304183295,3304183551,3304183807,3304184063,3304184319,3304184575,3304185343,3304185599,3304186367,3304186879,3304187647,3304188159,3304188415,3304188671,3304189183,3304190207,3304190463,3304190719,3304190975,3304191231,3304191487,3304191743,3304191999,3304192255,3304192767,3304193023,3304194047,3304194559,3304194815,3304195071,3304195327,3304195583,3304196095,3304196607,3304196863,3304197887,3304198143,3304198655,3304198911,3304199167,3304199423,3304199679,3304199935,3304200447,3304200703,3304200959,3304201215,3304201471,3304201727,3304202751,3304203007,3304203263,3304203775,3304204287,3304205055,3304205823,3304206079,3304206335,3304206847,3304207359,3304207615,3304207871,3304208127,3304208383,3304208639,3304208895,3304209151,3304209919,3304210175,3304210431,3304210687,3304211199,3304211455,3304211711,3304211967,3304212223,3304212479,3304212735,3304212991,3304213503,3304213759,3304214015,3304215039,3304215295,3304215551,3304215807,3304216063,3304216575,3304216831,3304217087,3304219135,3304219903,3304220159,3304220415,3304220671,3304221183,3304221439,3304221695,3304221951,3304222463,3304222719,3304223231,3304223487,3304223999,3304224255,3304225023,3304225279,3304225535,3304226303,3304226815,3304227071,3304227327,3304227583,3304227839,3304228095,3304228351,3304228607,3304228863,3304229119,3304229375,3304229631,3304229887,3304230143,3304230399,3304230655,3304231167,3304231679,3304231935,3304232191,3304232447,3304232703,3304233215,3304233471,3304233727,3304233983,3304234495,3304234751,3304235007,3304235263,3304235519,3304236543,3304237055,3304238591,3304239359,3304239615,3304239871,3304240127,3304240639,3304241663,3304243199,3304243967,3304244223,3304244479,3304244735,3304244991,3304245247,3304245503,3304245759,3304247039,3304247295,3304247551,3304248063,3304248575,3304249855,3304250879,3304251135,3304251647,3304252159,3304252415,3304253439,3304253695,3304253951,3304254207,3304254463,3304254975,3304255231,3304255487,3304255743,3304255999,3304256255,3304256511,3304257279,3304257535,3304257791,3304258047,3304258303,3304259327,3304260095,3304260607,3304260863,3304261375,3304261631,3304261887,3304262143,3304262399,3304263167,3304263679,3304264191,3304264447,3304265471,3304265727,3304265983,3304266239,3304266495,3304267263,3304267519,3304267775,3304268031,3304268799,3304269055,3304269311,3304269823,3304270335,3304270591,3304270847,3304271359,3304271615,3304272383,3304272895,3304273151,3304274431,3304275455,3304275711,3304276223,3304276479,3304276735,3304276991,3304277247,3304277759,3304278271,3304278527,3304278783,3304279295,3304279807,3304280319,3304280575,3304280831,3304281087,3304281599,3304281855,3304282623,3304282879,3304283135,3304283647,3304283903,3304284159,3304284415,3304284671,3304284927,3304285183,3304285439,3304286207,3304286463,3304286975,3304287231,3304288767,3304289023,3304289535,3304289791,3304290047,3304292351,3304292607,3304292863,3304293375,3304293631,3304293887,3304294143,3304294399,3304294655,3304295167,3304295423,3304295935,3304296191,3304296447,3304296959,3304297215,3304297727,3304298239,3304299007,3304299519,3304299775,3304300031,3304300799,3304301311,3304301567,3304302847,3304303615,3304304383,3304304895,3304305151,3304305407,3304305919,3304306431,3304306687,3304306943,3304307455,3304307711,3304308479,3304308991,3304309247,3304309759,3304310015,3304310271,3304310527,3304311039,3304311295,3304311807,3304312063,3304312319,3304312831,3304313087,3304313599,3304313855,3304314879,3304315135,3304315391,3304315903,3304316159,3304316415,3304317183,3304317951,3304318463,3304318975,3304319487,3304319743,3304319999,3304320255,3304320511,3304320767,3304321023,3304321279,3304321535,3304321791,3304322047,3304322559,3304322815,3304323071,3304323327,3304323583,3304323839,3304324351,3304324607,3304325631,3304326143,3304326399,3304326911,3304327423,3304327679,3304327935,3304328703,3304328959,3304329471,3304331263,3304331519,3304332799,3304333311,3304333567,3304335359,3304335871,3304336127,3304337407,3304337663,3304337919,3304338431,3304338943,3304339455,3304339711,3304339967,3304340479,3304340735,3304340991,3304341247,3304341503,3304341759,3304342527,3304343039,3304343295,3304343551,3304343807,3304344063,3304344319,3304345855,3304346367,3304347391,3304347903,3304348927,3304349183,3304349951,3304350463,3304351231,3304351487,3304351743,3304351999,3304353535,3304353791,3304354303,3304354815,3304355071,3304355327,3304355583,3304357375,3304357631,3304358655,3304360191,3304360703,3304361215,3304361471,3304361727,3304361983,3304362239,3304362751,3304363007,3304363775,3304364031,3304364543,3304365823,3304366079,3304367103,3304367359,3304367615,3304367871,3304368127,3304368383,3304368639,3304368895,3304369151,3304370175,3304370687,3304370943,3304371711,3304371967,3304372223,3304372735,3304373503,3304374015,3304375039,3304375295,3304375807,3304376319,3304376575,3304377087,3304377343,3304378367,3304378623,3304378879,3304379135,3304379391,3304379647,3304379903,3304380415,3304380671,3304380927,3304381183,3304381695,3304382207,3304382719,3304383231,3304384255,3304384767,3304385023,3304385279,3304385535,3304385791,3304386047,3304386303,3304387327,3304387839,3304388095,3304388863,3304389119,3304389631,3304389887,3304390655,3304391167,3304391423,3304391935,3304392191,3304392447,3304392703,3304392959,3304393215,3304393471,3304393727,3304395007,3304395775,3304396287,3304396543,3304396799,3304397055,3304397311,3304397823,3304398079,3304398591,3304398847,3304399359,3304399615,3304400127,3304400895,3304401407,3304401663,3304401919,3304402175,3304402943,3304403199,3304403455,3304403967,3304405247,3304405503,3304405759,3304406015,3304406271,3304406527,3304406783,3304408575,3304408831,3304410111,3304410879,3304411647,3304411903,3304412415,3304412927,3304413439,3304414463,3304414975,3304415487,3304416255,3304416511,3304416767,3304417279,3304417535,3304417791,3304418047,3304418303,3304418559,3304418815,3304419071,3304419327,3304420351,3304420607,3304421119,3304421375,3304421887,3304423935,3304424703,3304425215,3304426495,3304426751,3304427007,3304427263,3304427519,3304428287,3304428543,3304430591,3304431103,3304431359,3304431871,3304432127,3304432383,3304432639,3304432895,3304433151,3304433407,3304433663,3304433919,3304434687,3304434943,3304435199,3304435455,3304435967,3304436735,3304437247,3304437759,3304438015,3304438271,3304438527,3304438783,3304439039,3304439295,3304439807,3304440575,3304440831,3304441343,3304441599,3304441855,3304442367,3304442879,3304443135,3304443647,3304444159,3304444415,3304444927,3304445183,3304445439,3304445695,3304445951,3304446207,3304446463,3304446719,3304447231,3304447487,3304447743,3304448511,3304448767,3304449023,3304450047,3304450303,3304450559,3304450815,3304451071,3304451583,3304451839,3304452351,3304453119,3304454655,3304455167,3304455423,3304455935,3304456191,3304511487,3304511743,3304513535,3304513791,3304521727,3304521983,3304523263,3304525055,3304525823,3304526847,3304527359,3304527615,3304527871,3304530175,3304530943,3304531711,3304532479,3304532991,3304533247,3304533503,3304533759,3304534015,3304534271,3304535039,3304535295,3304535551,3304537599,3304538111,3304539135,3304540159,3304540671,3304541439,3304541695,3304541951,3304542463,3304542975,3304543487,3304545023,3304545279,3304545535,3304545791,3304546559,3304547071,3304547839,3304548095,3304548351,3304548607,3304549631,3304549887,3304550143,3304551167,3304551423,3304551679,3304551935,3304552191,3304552447,3304552959,3304553215,3304553471,3304553727,3304553983,3304554239,3304554495,3304554751,3304555007,3304555519,3304555775,3304556031,3304556287,3304557055,3304557311,3304557823,3304558591,3304558847,3304559103,3304559615,3304559871,3304560639,3304560895,3304561151,3304561407,3304561663,3304561919,3304562687,3304563199,3304563455,3304563711,3304564223,3304564735,3304564991,3304565759,3304566015,3304566783,3304567551,3304567807,3304568063,3304568831,3304569087,3304569343,3304569599,3304569855,3304570367,3304570623,3304570879,3304571135,3304571391,3304571647,3304572159,3304572415,3304572671,3304573183,3304573439,3304573695,3304573951,3304574463,3304574975,3304575231,3304575487,3304575999,3304576511,3304576767,3304577023,3304578047,3304578303,3304578559,3304578815,3304579071,3304579583,3304580095,3304580607,3304580863,3304581119,3304581375,3304581631,3304581887,3304582143,3304582399,3304582911,3304583167,3304584191,3304584447,3304584703,3304585215,3304585983,3304586495,3304587007,3304669183,3304685567,3304701951,3304718335,3304734719,3304736767,3304740863,3304751103,3304759295,3304763391,3304767487,3304769535,3304770559,3304771583,3304773631,3304781823,3304783871,3304801023,3304804095,3304806399,3304809471,3304812543,3304820735,3304821759,3304822783,3304823807,3304824831,3304841215,3304843263,3304845311,3304846335,3304847615,3304847871,3304848127,3304848383,3304849407,3305111551,3307044351,3307044607,3307208703,3309305855,3312451583,3312975871,3313500159,3313762303,3314024447,3314093055,3314093311,3314286591,3314548735,3314810879,3314827263,3314829311,3314831359,3314833407,3314835455,3314843647,3314860031,3314868223,3314876415,3314892799,3314909183,3314909439,3314910207,3314911231,3314912255,3314913279,3314914303,3314915327,3314916351,3314917375,3314918399,3314919423,3314920447,3314921471,3314922495,3314923519,3314924543,3314925567,3314941951,3315073023,3315138559,3315204095,3315269631,3315286271,3315288831,3315289343,3315290111,3315290623,3315293183,3315293439,3315294207,3315302399,3315318783,3315322879,3315326975,3315331071,3315333119,3315351551,3315367935,3315384319,3315400703,3315417087,3315425279,3315433471,3315449855,3315450879,3315451903,3315452927,3315453951,3315454975,3315455999,3315457023,3315458047,3315459071,3315460095,3315461119,3315462143,3315463167,3315463423,3315463679,3315464191,3315465215,3315466239,3315482623,3315499007,3315515391,3315531775,3315539967,3315548159,3315552255,3315554303,3315556351,3315559423,3315560191,3315560447,3315564543,3315568639,3315572735,3315580927,3315597311,3315656703,3315658751,3316121599,3316645887,3317170175,3317301247,3317432319,3317497855,3317530623,3317547007,3317563391,3317694463,3318218751,3318743039,3318874111,3318939647,3318947839,3318948351,3318948607,3318950399,3318950655,3318952959,3318953215,3318956031,3318964223,3318972415,3318987007,3318987263,3318988799,3319005183,3319136255,3319152639,3319156735,3319160831,3319161599,3319161855,3319162111,3319162367,3319162879,3319164927,3319166975,3319169023,3319201791,3319234559,3319242751,3319250943,3319255039,3319257087,3319258111,3319259135,3319263231,3319267327,3319270143,3319270399,3319398399,3319529471,3319537663,3319545855,3319554047,3319562239,3319570431,3319577343,3319578111,3319595007,3319611391,3319619583,3319627775,3319635967,3319644159,3319652351,3319660543,3319791615,3319981567,3319981823,3320053759,3320184831,3320250367,3320258559,3320266751,3320283135,3320285183,3320287231,3320289279,3320291327,3320295423,3320297471,3320299519,3320300543,3320301567,3320301823,3320302591,3320303615,3320304639,3320305663,3320306687,3320307711,3320308735,3320309759,3320310783,3320311807,3320312831,3320313855,3320314879,3320315903,3320381439,3320446975,3320451071,3320455167,3320463359,3320476927,3320477951,3320478207,3320478719,3320479231,3320479743,3320500223,3320502271,3320504319,3320505343,3320506367,3320507391,3320508415,3320509439,3320510463,3320512511,3320578047,3320643583,3320709119,3320774655,3320791039,3320807423,3320823807,3320840191,3320905727,3320938495,3320971263,3320979455,3320981503,3320981759,3320982783,3320983039,3320995839,3321004031,3321008127,3321012223,3321016319,3321018367,3321020415,3321022463,3321024511,3321032703,3321036799,3321069567,3321102335,3321167871,3321233407,3321298943,3321364479,3321430015,3321495551,3321561087,3321570815,3321571071,3321593855,3321626623,3321692159,3321708543,3321724927,3321757695,3321790463,3321806847,3321823231,3321839615,3321855999,3321860095,3321864191,3321868287,3321872383,3321876479,3321880575,3321884671,3321885695,3321886719,3321887743,3321888767,3321968639,3321970687,3322003455,3322008575,3322023935,3322028031,3322036223,3322052607,3322202111,3322203135,3322339583,3322339839,3322352895,3322353151,3322353407,3322354175,3322355455,3322355711,3322372095,3322380287,3322434815,3322435071,3322436607,3322436863,3322437375,3322437631,3322446847,3322447103,3322609663,3322610687,3322646527,3322646783,3322657535,3322657791,3322658047,3322658559,3322683391,3322691583,3322748927,3322757119,3322773503,3322806271,3322875903,3322888191,3322943743,3322943999,3322970111,3323002879,3323003135,3323003391,3323003903,3323004159,3323004671,3323004927,3323013887,3323014143,3323017727,3323017983,3323020799,3323021055,3323022591,3323022847,3323027455,3323027711,3323030015,3323030271,3323031807,3323032575,3323032831,3323033087,3323033343,3323033599,3323034111,3323038719,3323038975,3323048959,3323049727,3323061247,3323061503,3323062015,3323062527,3323062783,3323064319,3323064831,3323068415,3323199487,3323201535,3323202559,3323202815,3323203327,3323207679,3323215871,3323224063,3323232255,3323240959,3323241215,3323246335,3323246591,3323270399,3323270655,3323339263,3323339775,3323340031,3323340287,3323342591,3323343615,3323343871,3323346175,3323346431,3323354367,3323355647,3323356671,3323356927,3323378687,3323378943,3323382783,3323383295,3323387903,3323388159,3323388415,3323391231,3323391487,3323394559,3323395071,3323659263,3323660543,3323661311,3323662335,3323674623,3323691007,3323741439,3323741695,3323747327,3323747583,3323757055,3323757567,3323758591,3323854591,3323854847,3323985919,3323987711,3324012543,3324012799,3324013055,3324013311,3324013567,3324051455,3324182527,3324193279,3324193791,3324199167,3324199423,3324255231,3324256255,3324259327,3324259583,3324259839,3324267519,3324268031,3324277759,3324278783,3324354559,3324362751,3324379135,3324380159,3324380927,3324381183,3324382463,3324382719,3324408319,3324408831,3324409855,3324410367,3324449535,3324449791,3324470271,3324474367,3324488703,3324489983,3324499455,3324499967,3324500223,3324500479,3324579839,3324582911,3324583935,3324587775,3324613631,3324615679,3324633087,3324633599,3324634111,3324635647,3324636159,3324636671,3324637183,3324637951,3324640255,3324640767,3324641023,3324641279,3324806143,3324806399,3324808191,3324808447,3324813567,3324813823,3324814079,3324816383,3324817407,3324820479,3324820991,3324821247,3324821503,3324832767,3324833791,3324837631,3324837887,3324843775,3324844031,3324844543,3324844799,3324850175,3324850943,3324867583,3324868607,3324895999,3324896255,3324899327,3324899839,3324900095,3324980223,3324981247,3325000959,3325001215,3325034495,3325035519,3325067263,3325100287,3325100543,3325101055,3325108223,3325110271,3325122303,3325122559,3325123071,3325126399,3325126655,3325128703,3325129215,3325131775,3325132031,3325132799,3325133823,3325134335,3325136127,3325136383,3325141503,3325141759,3325142015,3325142271,3325144831,3325145087,3325169663,3325171711,3325190143,3325231103,3325232127,3325233151,3325234175,3325234431,3325249279,3325249535,3325250303,3325250559,3325255679,3325255935,3325256447,3325256959,3325257215,3325257727,3325258751,3325259775,3325261311,3325265919,3325266943,3325267711,3325268735,3325269759,3325270015,3325271039,3325271295,3325271551,3325271807,3325278719,3325278975,3325281023,3325281279,3325284863,3325285375,3325290239,3325290495,3325296383,3325296639,3325304575,3325304831,3325306879,3325307903,3325308927,3325313023,3325329407,3325345791,3325358079,3325359103,3325359615,3325360127,3325362175,3325427711,3325427967,3325430527,3325431551,3325443583,3325444095,3325448447,3325448959,3325450239,3325451007,3325451263,3325452799,3325453311,3325461503,3325461759,3325463807,3325464063,3325465087,3325466623,3325467135,3325469695,3325469951,3325470207,3325471231,3325471487,3325471999,3325474303,3325474559,3325478911,3325479423,3325481727,3325481983,3325483007,3325483775,3325484287,3325484799,3325485055,3325485311,3325486591,3325486847,3325487359,3325487615,3325487871,3325490943,3325492991,3325497343,3325499903,3325505535,3325509631,3325551615,3325552639,3325554687,3325558783,3325562879,3325565439,3325573119,3325574143,3325575167,3325591551,3325624319,3325630975,3325631487,3325633535,3325633791,3325640703,3325644799,3325689855,3325690367,3325690623,3325690879,3325691647,3325691903,3325693183,3325694207,3325694719,3325722623,3325755391,3325796863,3325797375,3325886719,3325887487,3325888511,3325890559,3325935615,3325935871,3325936383,3325936639,3325936895,3325937151,3325937407,3325937663,3325938943,3325940735,3325942271,3325942527,3325956095,3325960191,3325976063,3325976319,3325978623,3325978879,3325980671,3325980927,3325986815,3325987071,3325992447,3325992959,3325993983,3325994239,3325996799,3325997055,3326019839,3326020095,3326020863,3326021119,3326023679,3326023935,3326024191,3326024447,3326024703,3326024959,3326025983,3326026239,3326026495,3326026751,3326027519,3326027775,3326028799,3326029311,3326029823,3326030079,3326032127,3326032383,3326032895,3326033151,3326034175,3326034687,3326035967,3326036223,3326036479,3326036735,3326036991,3326037247,3326040319,3326040575,3326041343,3326041599,3326042367,3326042879,3326050303,3326050559,3326051071,3326051327,3326051583,3326051839,3326052095,3326052351,3326052863,3326053375,3326053887,3326054143,3326054655,3326054911,3326055167,3326055423,3326056447,3326056703,3326057727,3326058239,3326058751,3326059007,3326059263,3326059519,3326059775,3326060031,3326061567,3326061823,3326062335,3326062591,3326062847,3326063615,3326064895,3326065151,3326066687,3326066943,3326068223,3326068479,3326070015,3326070271,3326071295,3326071807,3326073343,3326073855,3326074367,3326074623,3326077183,3326077439,3326077695,3326077951,3326078207,3326078463,3326079231,3326079487,3326079743,3326079999,3326080255,3326080511,3326081791,3326082047,3326097919,3326098175,3326099455,3326099711,3326101247,3326101503,3326103807,3326104063,3326104575,3326105087,3326105855,3326106111,3326108671,3326108927,3326111231,3326111487,3326113023,3326113279,3326115071,3326115327,3326121983,3326122239,3326124287,3326124543,3326126079,3326126335,3326128127,3326128383,3326129151,3326129663,3326130943,3326131199,3326132479,3326132735,3326133503,3326134271,3326134527,3326134783,3326136575,3326136831,3326137855,3326138111,3326139391,3326139647,3326140927,3326141183,3326145535,3326146047,3326149375,3326149631,3326154495,3326154751,3326159871,3326160127,3326162431,3326162943,3326165247,3326165503,3326166271,3326166527,3326168575,3326168831,3326170367,3326170623,3326172159,3326172415,3326172671,3326172927,3326189567,3326189823,3326190335,3326190591,3326192383,3326192639,3326194943,3326195199,3326198015,3326198271,3326199551,3326200063,3326201087,3326201343,3326203647,3326204159,3326204415,3326204671,3326205183,3326205439,3326208511,3326208767,3326210559,3326210815,3326211327,3326211839,3326212607,3326213119,3326213631,3326213887,3326214143,3326214399,3326215167,3326215423,3326218751,3326219007,3326219263,3326219775,3326220543,3326220799,3326221311,3326221567,3326222591,3326222847,3326225151,3326225407,3326225919,3326226175,3326231807,3326232063,3326232319,3326232575,3326233087,3326233343,3326234879,3326235135,3326235647,3326235903,3326237183,3326237695,3326239231,3326239487,3326240255,3326240511,3326242047,3326242815,3326243327,3326243583,3326245631,3326245887,3326249727,3326249983,3326250751,3326251007,3326252799,3326253055,3326256639,3326256895,3326262015,3326262271,3326262783,3326263039,3326263551,3326263807,3326264575,3326264831,3326266879,3326267135,3326268415,3326269183,3326270463,3326270719,3326271743,3326271999,3326274047,3326274303,3326276095,3326276351,3326279423,3326279679,3326406655,3326408703,3326413823,3326414335,3326420991,3326423039,3326613503,3326615551,3326619647,3326623743,3326631935,3326640127,3326680831,3326681087,3326681343,3326682623,3326682879,3326686463,3326686719,3326686975,3326687999,3326688255,3326690559,3326690815,3326691071,3326692351,3326693375,3326693631,3326693887,3326697215,3326699519,3326699775,3326700799,3326713343,3326714111,3326716927,3326717951,3326718207,3326719743,3326720255,3326721535,3326721791,3326722047,3326726143,3326726399,3326726655,3326728703,3326728959,3326729215,3326729471,3326729727,3326734335,3326734591,3326737151,3326737663,3326737919,3326738175,3326744575,3326745087,3326745599,3326952191,3326952447,3326953983,3326954495,3327051007,3327051263,3327053823,3327054079,3327054847,3327055103,3327069695,3327069951,3327144959,3327145983,3327162367,3327162623,3327162879,3327163391,3327256831,3327257087,3327397375,3327397887,3327399935,3327400191,3327401471,3327401727,3327426559,3327459327,3327592703,3327593215,3327594751,3327595007,3327595519,3327595775,3327596543,3327596799,3327598335,3327598847,3327599871,3327600127,3327601151,3327601407,3327602687,3327602943,3327603711,3327603967,3327605247,3327605503,3327606015,3327606527,3327607295,3327607551,3327609087,3327609343,3327609855,3327610111,3327612927,3327613439,3327614975,3327615231,3327615487,3327616255,3327617023,3327617279,3327619327,3327619583,3327620351,3327620607,3327621887,3327622143,3327622655,3327622911,3327623679,3327623935,3327624703,3327624959,3327630079,3327630335,3327630591,3327630847,3327633919,3327634175,3327635967,3327636223,3327638015,3327638271,3327639295,3327639551,3327640063,3327640319,3327642367,3327642623,3327647487,3327647743,3327648511,3327648767,3327650047,3327650303,3327652607,3327652863,3327653119,3327653375,3327653631,3327654143,3327655167,3327655423,3327656959,3327657215,3327657727,3327657983,3327658495,3327658751,3327661567,3327661823,3327662079,3327662847,3327663615,3327664127,3327668223,3327668479,3327669759,3327670015,3327672575,3327672831,3327673087,3327673599,3327675647,3327675903,3327676927,3327677183,3327678975,3327679231,3327679743,3327679999,3327681535,3327681791,3327684351,3327684607,3327685887,3327686143,3327688447,3327688703,3327689983,3327690239,3327692287,3327692799,3327693311,3327693567,3327696639,3327696895,3327699967,3327700223,3327702527,3327703039,3327703295,3327703551,3327705855,3327706111,3327707135,3327707647,3327709951,3327710207,3327710463,3327710719,3327710975,3327711231,3327712255,3327712511,3327714047,3327714303,3327716095,3327716351,3327717119,3327717375,3327720191,3327720447,3327723519,3327725311,3327743999,3327746047,3327769599,3327770111,3327780863,3327782911,3327788287,3327789055,3327806463,3327811583,3327885311,3327918079,3327995903,3327996927,3328028671,3328030719,3328180223,3328181247,3328181759,3328185855,3328186111,3328187647,3328187903,3328196351,3328196607,3328202751,3328204799,3328213759,3328214015,3328214783,3328215295,3328224255,3328224511,3328235007,3328235519,3328236543,3328237311,3328241663,3328242943,3328243199,3328245759,3328249599,3328249855,3328255487,3328255743,3328299775,3328301055,3328306431,3328306687,3328316927,3328317439,3328335871,3328344063,3328358399,3328360447,3328383999,3328385023,3328393727,3328393983,3328394239,3328394495,3328412927,3328413183,3328414719,3328414975,3328420351,3328420607,3328421119,3328421375,3328432639,3328433663,3328433919,3328435711,3328435967,3328436223,3328475135,3328477183,3328479231,3328483327,3328514815,3328515071,3328516095,3328557055,3328557823,3328558335,3328558591,3328558847,3328559103,3328559871,3328561663,3328562175,3328562431,3328563199,3328563711,3328565503,3328565759,3328566527,3328566783,3328567039,3328567295,3328568575,3328568831,3328569087,3328571903,3328572159,3328572415,3328572671,3328572927,3328617983,3328618239,3328629503,3328629759,3328630015,3328630271,3328630783,3328631807,3328638975,3328704511,3328705023,3328705279,3328705535,3328705791,3328707071,3328707327,3328708607,3328708863,3328709631,3328709887,3328710655,3328710911,3328711679,3328711935,3328712191,3328712703,3328712959,3328713471,3328713983,3328714239,3328714495,3328714751,3328717567,3328718079,3328719615,3328719871,3328722687,3328722943,3328724735,3328725247,3328726527,3328726783,3328727807,3328728575,3328729087,3328729343,3328729855,3328730367,3328731135,3328731391,3328732159,3328732671,3328734207,3328734463,3328736255,3328736511,3328738303,3328738815,3328739839,3328740095,3328742399,3328742911,3328747007,3328747263,3328748287,3328748543,3328753919,3328754175,3328755967,3328756223,3328757759,3328758015,3328759295,3328759551,3328760063,3328760319,3328761599,3328761855,3328762367,3328762623,3328762879,3328763135,3328764159,3328764415,3328764671,3328764927,3328765695,3328766207,3328769023,3328769279,3328774911,3328775167,3328781567,3328781823,3328794623,3328798207,3328798463,3328800255,3328801791,3328802047,3328802559,3328802815,3328824063,3328824575,3328824831,3328825087,3328825343,3328826367,3328838143,3328838399,3328838655,3328838911,3328839935,3328840191,3328840703,3328840959,3328841983,3328842239,3328842495,3328842751,3328843007,3328843263,3328845055,3328845311,3328848127,3328848383,3328854271,3328854783,3328859391,3328859647,3328859903,3328860159,3328863231,3328863487,3328864511,3328864767,3328867839,3328868095,3328868863,3328869119,3328871679,3328871935,3328873215,3328873471,3328873727,3328873983,3328876031,3328876287,3328877823,3328878079,3328881151,3328881407,3328882175,3328882431,3328883455,3328883711,3328885247,3328885503,3328886527,3328887551,3328888319,3328888575,3328890367,3328890623,3328892927,3328893183,3328893695,3328893951,3328895743,3328895999,3328897535,3328897791,3328898303,3328898559,3328899839,3328900095,3328901631,3328901887,3328902399,3328902655,3328903679,3328903935,3328907519,3328907775,3328912639,3328912895,3328913407,3328913663,3328914687,3328914943,3328915455,3328915967,3328921087,3328921343,3328922111,3328922367,3328922623,3328922879,3328924415,3328924671,3328926463,3328926719,3328930047,3328930303,3328932351,3328932607,3328933631,3328933887,3328934911,3328935167,3328935935,3328936191,3328939519,3328939775,3328940287,3328940799,3328942335,3328942591,3328944127,3328944383,3328945151,3328945407,3328945919,3328946175,3328948991,3328949247,3328952063,3328952319,3328954623,3328954879,3328958207,3328958463,3328958975,3328959231,3328959487,3328959743,3328961791,3328962047,3328963839,3328964351,3328964863,3328965375,3329498623,3329498879,3330613247,3330614783,3330617087,3330617343,3330621183,3330623743,3330624255,3330624511,3330625535,3330627071,3330636031,3330636287,3330637823,3330638335,3330640895,3330641151,3330646015,3330646271,3330646527,3330647295,3330649599,3330649855,3330657791,3330658047,3330662911,3330663167,3330664191,3330664447,3330677759,3330678783,3330714367,3330714623,3330726655,3330726911,3330754559,3330754815,3330763519,3330763775,3330765823,3330766335,3330767871,3330768383,3330768639,3330771199,3330771711,3330775039,3330775295,3330775551,3330778623,3330778879,3330779135,3330779391,3330779647,3330781951,3330782463,3330782719,3330783487,3330783743,3330785279,3330785791,3330791423,3330791679,3330796543,3330796799,3330797823,3330798079,3330812927,3330813951,3330815743,3330815999,3330842111,3330842367,3330866943,3330867199,3330883583,3330884351,3330884863,3330885119,3330888191,3330888703,3330888959,3330889215,3330889471,3330890239,3330890751,3330892287,3330892543,3330893567,3330893823,3330894079,3330894591,3330894847,3330897919,3330898175,3330898431,3330898943,3330901759,3330902015,3330903039,3330904575,3330904831,3330925311,3330925567,3330925823,3330926079,3330934015,3330934271,3330936319,3330936575,3330936831,3330937343,3330938111,3330938623,3330939391,3330939647,3330940415,3330940671,3330948607,3330948863,3330950655,3330950911,3330954495,3330954751,3330955263,3330955519,3330958335,3330958591,3330959103,3330959359,3330961151,3330961407,3330962175,3330962431,3330963455,3330963711,3330964479,3330964735,3330968063,3330968319,3330970879,3330971391,3330972415,3330972671,3330973183,3330973439,3330973695,3330973951,3330975743,3330975999,3330978047,3330978303,3330980863,3330981119,3330981375,3330981631,3330981887,3330982143,3330982399,3330982655,3330984959,3330985727,3330988799,3330989055,3330989311,3330990079,3330990591,3330991103,3330991615,3330991871,3330993407,3330993663,3330994687,3330994943,3330995455,3330995711,3330995967,3330996223,3330998015,3330998783,3331001599,3331001855,3331003135,3331003647,3331003903,3331004415,3331006207,3331006463,3331007743,3331007999,3331010047,3331010303,3331010815,3331011071,3331011839,3331012095,3331013119,3331013375,3331013887,3331014143,3331015679,3331015935,3331016447,3331016703,3331016959,3331017215,3331017471,3331017727,3331023359,3331023615,3331025663,3331025919,3331027711,3331027967,3331030271,3331030527,3331031295,3331032063,3331032575,3331032831,3331033087,3331033343,3331037183,3331037439,3331037695,3331037951,3331038975,3331039231,3331040511,3331040767,3331041791,3331042047,3331043583,3331043839,3331044095,3331044351,3331045631,3331045887,3331047679,3331047935,3331050495,3331050751,3331051007,3331051519,3331052543,3331053055,3331054847,3331055359,3331055615,3331056383,3331058943,3331059199,3331059967,3331060223,3331060479,3331060735,3331063551,3331063807,3331079679,3331079935,3331098111,3331098367,3331099903,3331100159,3331102463,3331102719,3331110399,3331110655,3331117823,3331118079,3331194879,3331260415,3331269119,3331269375,3331269631,3331269887,3331271423,3331271679,3331271935,3331272191,3331272703,3331272959,3331273215,3331273471,3331273727,3331273983,3331274239,3331274495,3331274751,3331275263,3331275519,3331275775,3331276031,3331356671,3331357183,3331358719,3331362815,3331366911,3331371007,3331408383,3331408639,3331408895,3331410687,3331410943,3331411199,3331411455,3331411711,3331411967,3331418111,3331418367,3331421695,3331422207,3331423743,3331424255,3331428351,3331428607,3331428863,3331429119,3331429375,3331429887,3331430143,3331430399,3331430655,3331430911,3331431167,3331431423,3331431679,3331431935,3331432191,3331432447,3331448831,3331449087,3331449599,3331449855,3331450111,3331450367,3331450623,3331450879,3331451391,3331451647,3331452159,3331452415,3331452671,3331523071,3331523839,3331524095,3331524607,3331525375,3331525631,3331525887,3331526399,3331526655,3331527167,3331527679,3331563519,3331563775,3331565567,3331566079,3331585791,3331586047,3331630335,3331630591,3331632639,3331632895,3331633407,3331633919,3331636479,3331636735,3331637247,3331638271,3331638783,3331647231,3331647487,3331649279,3331649535,3331818495,3331818751,3331824895,3331825151,3331935231,3331936255,3331962879,3331963903,3331983103,3331983359,3331988479,3331989503,3331997183,3331997439,3332001791,3332002047,3332002815,3332003071,3332005119,3332005375,3332005631,3332005887,3332028415,3332030463,3332381695,3332382207,3332416511,3332418047,3332423423,3332423679,3332430079,3332430335,3332440319,3332460543,3332460799,3332461311,3332461567,3332462335,3332462591,3332473855,3332477951,3332482303,3332483071,3332483583,3332483839,3332484095,3332491263,3332492031,3332497407,3332498431,3332500735,3332500991,3332501247,3332501503,3332503039,3332503551,3332505343,3332505599,3332505855,3332508671,3332508927,3332524031,3332527103,3332528127,3332529151,3332529663,3332554751,3332558847,3332562943,3332563455,3332564479,3332564735,3332566783,3332567039,3332570879,3332571391,3332579327,3332581375,3332590079,3332590591,3332594687,3332594943,3332595455,3332595711,3332610559,3332611071,3332611327,3332611583,3332616191,3332616959,3332617727,3332624383,3332625919,3332626175,3332626431,3332626687,3332636415,3332636671,3332833279,3332833535,3332841471,3332841727,3332866303,3332874239,3332875007,3332875263,3332876287,3332882431,3332890623,3332897279,3332898559,3332899071,3332906495,3332909055,3332909823,3332910079,3332922879,3332923391,3332925695,3332929023,3332930047,3332931327,3332947967,3332948223,3332964351,3332964607,3332966143,3332966655,3332979967,3332980735,3332988927,3332989951,3332997119,3332997375,3332998911,3332999167,3333008383,3333008895,3333012479,3333012991,3333014015,3333014527,3333017599,3333018111,3333023231,3333025279,3333029631,3333031679,3333031935,3333032703,3333032959,3333036031,3333036799,3333039359,3333039871,3333042431,3333042687,3333043711,3333043967,3333047039,3333047295,3333048319,3333048575,3333050111,3333050367,3333050879,3333051135,3333057023,3333057535,3333063935,3333064191,3333064447,3333064703,3333065983,3333066239,3333070847,3333071103,3333072895,3333073151,3333073919,3333074431,3333075199,3333075455,3333078783,3333079039,3333079807,3333080063,3333081087,3333081343,3333084927,3333085695,3333085951,3333086207,3333086719,3333086975,3333087487,3333087743,3333090559,3333090815,3333092351,3333092607,3333093631,3333093887,3333096447,3333096703,3333097471,3333097727,3333100799,3333101055,3333102079,3333102335,3333102591,3333102847,3333105407,3333105663,3333106175,3333106687,3333107967,3333108223,3333109247,3333109503,3333111807,3333112063,3333113855,3333114367,3333115135,3333115647,3333116159,3333116671,3333118207,3333118463,3333118975,3333119231,3333119999,3333120255,3333120511,3333120767,3333124607,3333124863,3333126655,3333126911,3333128703,3333128959,3333131519,3333131775,3333132543,3333133311,3333135103,3333135359,3333135871,3333136127,3333137919,3333138431,3333139455,3333139711,3333140479,3333140735,3333143039,3333143295,3333144063,3333144319,3333144831,3333145343,3333146623,3333146879,3333147391,3333147647,3333149183,3333149695,3333151999,3333152255,3333152767,3333153023,3333154047,3333154303,3333155327,3333155583,3333156607,3333156863,3333157119,3333157375,3333158655,3333159167,3333164543,3333164799,3333166335,3333166591,3333167871,3333168127,3333168639,3333168895,3333171967,3333172479,3333174783,3333175039,3333175295,3333175807,3333176831,3333177343,3333178367,3333178623,3333179135,3333179647,3333181183,3333181439,3333182719,3333182975,3333186559,3333186815,3333187327,3333187583,3333188351,3333188607,3333192191,3333192447,3333194495,3333195007,3333195263,3333195519,3333197311,3333197567,3333198591,3333198847,3333199615,3333199871,3333200383,3333200895,3333205503,3333205759,3333206783,3333207039,3333207551,3333207807,3333208575,3333208831,3333212671,3333212927,3333213695,3333213951,3333214719,3333214975,3333215231,3333215487,3333216255,3333216767,3333217023,3333217279,3333219327,3333219583,3333222655,3333222911,3333224703,3333224959,3333230591,3333230847,3333232895,3333233407,3333237503,3333237759,3333238783,3333239295,3333240575,3333241087,3333241599,3333241855,3333242623,3333243135,3333243647,3333243903,3333244671,3333244927,3333246207,3333246463,3333247999,3333248255,3333248511,3333248767,3333250047,3333250303,3333252351,3333252607,3333253887,3333254143,3333255935,3333256191,3333257727,3333257983,3333259263,3333259519,3333260031,3333260287,3333261311,3333261567,3333262847,3333263359,3333264895,3333265151,3333265407,3333265663,3333266431,3333266687,3333266943,3333267199,3333268479,3333268735,3333269247,3333269503,3333270015,3333270271,3333270527,3333270783,3333271551,3333271807,3333279999,3333280511,3333281535,3333281791,3333283071,3333283583,3333284863,3333285119,3333285631,3333285887,3333286655,3333286911,3333289215,3333289471,3333290239,3333290495,3333290751,3333291007,3333362687,3333363711,3333383167,3333384191,3333385983,3333386239,3333427967,3333428223,3333436927,3333437183,3333437439,3333437695,3333437951,3333439487,3333443839,3333444095,3333444351,3333444607,3333444863,3333445119,3333452799,3333453311,3333453567,3333453823,3333466111,3333467647,3333480191,3333481471,3333482495,3333482751,3333563903,3333564415,3333564671,3333564927,3333565439,3333565951,3333566463,3333566719,3333566975,3333567231,3333567487,3333583871,3333584895,3333593855,3333594111,3333609983,3333610239,3333614847,3333615103,3333621503,3333621759,3333624319,3333624575,3333675775,3333676031,3333677567,3333678079,3333701887,3333702143,3333702399,3333702655,3333705727,3333709567,3333710591,3333710847,3333711359,3333712127,3333712383,3333712639,3333716735,3333716991,3333717247,3333717503,3333717759,3333718015,3333721599,3333721855,3333723647,3333723903,3333724159,3333724671,3333735167,3333735423,3333750527,3333750783,3333766399,3333766655,3333781503,3333783551,3333792511,3333792767,3333801727,3333801983,3333859839,3333860095,3333871103,3333871615,3333872639,3333881343,3333881855,3333933055,3333933311,3333933567,3333939455,3333939711,3333988607,3333988863,3334020095,3334021119,3334054911,3334055167,3334068479,3334068735,3334078975,3334079231,3334086655,3334094847,3334111743,3334111999,3334138623,3334138879,3334187775,3334188031,3334343935,3334344191,3334375423,3334375935,3334932223,3334932479,3334962175,3334963199,3334967551,3334967807,3334986495,3334987007,3334988799,3334989055,3334995967,3334996223,3334996479,3334996735,3334996991,3334997247,3334997503,3334998527,3335003135,3335004159,3335012351,3335028735,3335043327,3335043583,3335057407,3335058175,3335160319,3335160575,3335170815,3335171071,3335180287,3335180543,3335252735,3335252991,3335276287,3335276799,3335278079,3335278335,3335326719,3335327487,3335349759,3335350015,3335429631,3335430143,3335439615,3335439871,3335440383,3335441151,3335451903,3335452159,3335456767,3335457791,3335458815,3335460863,3335475199,3335475455,3335480063,3335480319,3335506175,3335506431,3335747071,3335749631,3335784191,3335784447,3335860991,3335861247,3336139775,3336140799,3336171519,3336173567,3336173823,3337043967,3337044223,3337044479,3337044735,3337044991,3337046015,3337046527,3337047551,3337050111,3337051647,3337051903,3337052159,3337053183,3337054463,3337054719,3337054975,3337055231,3337060351,3337104127,3337104383,3337104639,3337104895,3337105151,3337106175,3337106431,3337106687,3337106943,3337107199,3337107455,3337107711,3337122815,3337123071,3337147903,3337148415,3337217791,3337218047,3337289983,3337295871,3337296127,3337297919,3337302015,3337303551,3337304063,3337322495,3337322751,3337323007,3337324543,3337325567,3337326591,3337335295,3337335807,3337341951,3337342463,3337355007,3337430271,3337430527,3337640447,3337640959,3337650175,3337650687,3337650943,3337651199,3337651455,3337651711,3337651967,3337652479,3337652991,3337653503,3337653759,3337654015,3337654271,3337654527,3337654783,3337655039,3337656063,3337656319,3337660927,3337661183,3337662975,3337663231,3337682943,3337737215,3337737471,3337882111,3337882623,3337895935,3337900031,3337912319,3337945087,3337957375,3337961471,3337964031,3337964287,3337965055,3337965311,3337969663,3337973759,3337977855,3337980671,3337980927,3337986047,3337986303,3337990143,3337990655,3337990911,3338010367,3338010623,3338017791,3338018815,3338021887,3338022911,3338067711,3338067967,3338069247,3338069759,3338076415,3338076671,3338079743,3338079999,3338080511,3338080767,3338081535,3338082047,3338084095,3338084351,3338086911,3338087167,3338090239,3338090495,3338091519,3338091775,3338093567,3338093823,3338096127,3338096639,3338097919,3338098431,3338101759,3338102271,3338103295,3338103551,3338106111,3338106623,3338110719,3338110975,3338111743,3338111999,3338112767,3338113023,3338117375,3338117631,3338118143,3338118399,3338121215,3338121471,3338121727,3338121983,3338125567,3338125823,3338126847,3338127103,3338128895,3338129663,3338131455,3338131967,3338132479,3338132735,3338134783,3338135039,3338136063,3338136319,3338137087,3338137343,3338137599,3338138111,3338138367,3338138623,3338139391,3338139647,3338140927,3338141183,3338350591,3338354687,3338359807,3338360063,3338360831,3338361343,3338361855,3338362879,3338424319,3338432511,3338436607,3338437631,3338446079,3338446335,3338460671,3338460927,3338567679,3338600447,3338621951,3338622207,3338622719,3338623231,3338686463,3338688511,3338770431,3338772479,3338825727,3338827775,3338949887,3338950143,3338951679,3338951935,3338953727,3338954239,3338956543,3338956799,3338957823,3338958079,3338958591,3338958847,3338959615,3338959871,3338960383,3338960639,3338964991,3338965247,3338968575,3338968831,3338976767,3338977023,3338993407,3338993663,3339000575,3339000831,3339028991,3339029759,3339039743,3339040255,3339075583,3339076863,3339077631,3339077887,3339079167,3339079423,3339079679,3339080703,3339080959,3339081727,3339081983,3339082751,3339086335,3339086591,3339091967,3339092991,3339093503,3339094015,3339136767,3339137023,3339142655,3339142911,3339147775,3339148031,3339153407,3339155455,3339159551,3339160575,3339160831,3339161599,3339162623,3339163647,3339164671,3339165695,3339167743,3339168767,3339177983,3339178495,3339179007,3339180031,3339181055,3339184127,3339186175,3339188223,3339190271,3339215359,3339215615,3339260927,3339261951,3339263999,3339270399,3339270655,3339271167,3339324927,3339325439,3339327999,3339328511,3339329279,3339342847,3339343103,3339373055,3339373567,3339386367,3339386879,3339655679,3339656191,3339667967,3339668479,3339669503,3339671807,3339672063,3339672575,3339702271,3339703295,3339707391,3339708415,3339710463,3339728895,3339729151,3339729407,3339729663,3339729919,3339743231,3339744255,3339747327,3339748351,3339753471,3339754495,3339760639,3339761663,3339777023,3339778047,3339778815,3339779071,3339918335,3339919359,3339924479,3339924735,3339926015,3339926527,3339927551,3339931135,3339931647,3339934719,3339935743,3339952127,3339954175,3339955199,3339956223,3339965439,3339968511,3339974911,3339975167,3339975423,3339975679,3339975935,3339976191,3340066815,3340067839,3340080127,3340081151,3340084223,3340085247,3340086271,3340087295,3340088319,3340089343,3340097535,3340098559,3340107775,3340369919,3340383743,3340384255,3340386815,3340387327,3340388351,3340390399,3340391423,3340394495,3340396543,3340408319,3340408575,3340414975,3340415231,3340418559,3340419071,3340426239,3340426751,3340429823,3340430079,3340431871,3340432383,3340436991,3340437503,3340440831,3340441087,3340443135,3340443647,3340453375,3340453887,3340454911,3340455167,3340460031,3340462079,3340481535,3340482559,3340484095,3340484351,3340489727,3340490751,3340492799,3340633087,3340636159,3340643839,3340644351,3340648703,3340648959,3340654591,3340656639,3340677119,3340679167,3340685055,3340685311,3340687359,3340689407,3340833535,3340833791,3340835327,3340835839,3340846079,3340846335,3340846591,3340846847,3340851455,3340851711,3340852735,3340853247,3340857343,3340858367,3340858623,3340858879,3340896255,3340896511,3340896767,3340897023,3340897279,3340897791,3340911359,3340915455,3340919295,3340921343,3340923391,3340923903,3340924927,3340957695,3340959743,3341027839,3341028351,3341031679,3341032447,3341057023,3341058047,3341082367,3341082623,3341086719,3341087231,3341087743,3341163007,3341163519,3341180927,3341182463,3341182719,3341182975,3341196799,3341197311,3341205503,3341207039,3341207551,3341216511,3341216767,3341217791,3341219839,3341220351,3341220607,3341221887,3341287423,3341418495,3341421567,3341422591,3341444863,3341445631,3341464575,3341464831,3341470207,3341470463,3341472255,3341472511,3341479935,3341480447,3341484287,3341485055,3341487103,3341487615,3341488639,3341489151,3341495295,3341495551,3341500159,3341500415,3341511679,3341513215,3341513727,3341517823,3341518847,3341531135,3341533951,3341534207,3341534719,3341535231,3341535487,3341546239,3341547007,3341547519,3341549311,3341631999,3341632767,3341634815,3341635071,3341643519,3341643775,3341644287,3341644799,3341645055,3341645567,3341646079,3341646591,3341651967,3341654015,3341657087,3341657599,3341657855,3341658111,3341660415,3341660671,3341660927,3341661183,3341689087,3341689343,3341709311,3341710335,3341739519,3341739775,3341742335,3341742847,3341743103,3341743359,3341755903,3341756159,3341758463,3341759487,3341760511,3341762559,3341777919,3341778943,3341782271,3341782527,3341784063,3341784831,3341785087,3341787135,3341789183,3341791743,3341791999,3341796607,3341797375,3341807615,3341808639,3341815295,3341815807,3341827071,3341827327,3341828095,3341829119,3341837311,3341838335,3341854719,3341854975,3341858303,3341858559,3341863935,3341864959,3341867007,3341869055,3341869311,3341870079,3341870335,3341873919,3341874175,3341879551,3341880063,3341942783,3342008319,3342139391,3342143487,3342143999,3342144511,3342144767,3342145023,3342145279,3342145535,3342145791,3342146047,3342146303,3342146559,3342146815,3342147071,3342150911,3342151423,3342157055,3342157311,3342157567,3342158335,3342158591,3342162175,3342162431,3342186239,3342186495,3342186751,3342187007,3342189311,3342189567,3342204927,3342467071,3342467327,3342468095,3342468351,3342470655,3342471167,3342487551,3342488575,3342489599,3342490623,3342496767,3342497791,3342504959,3342505983,3342507007,3342510079,3342512127,3342516223,3342516479,3342516991,3342517247,3342526463,3342528511,3342530559,3342531583,3342532095,3342532351,3342532607,3342534143,3342534655,3342543359,3342543871,3342552063,3342553087,3342565375,3342567423,3342569471,3342570239,3342570495,3342579711,3342581759,3342585599,3342585855,3342595071,3342595583,3342595839,3342596095,3342598143,3342603263,3342604287,3342605311,3342605567,3342623743,3342623999,3342624255,3342624511,3342624767,3342627839,3342628095,3342629631,3342629887,3342652415,3342652671,3342653183,3342653439,3342655743,3342655999,3342657535,3342657791,3342663423,3342933503,3342933759,3342934015,3342958591,3342958847,3342974975,3342977023,3342989055,3342989311,3342990079,3342990335,3342999039,3342999551,3343012863,3343013887,3343015935,3343019007,3343020031,3343021055,3343024127,3343025151,3343055871,3343056895,3343074815,3343075071,3343075327,3343076351,3343077375,3343078399,3343079423,3343080447,3343080959,3343081471,3343115519,3343115775,3343123967,3343124479,3343126015,3343126527,3343129087,3343129599,3343136255,3343136767,3343144447,3343144703,3343144959,3343145983,3343153151,3343155199,3343167487,3343169535,3343171583,3343172607,3343177727,3343177983,3343178239,3343178495,3343178751,3343319295,3343336447,3343336703,3343342847,3343343103,3343346175,3343346687,3343355391,3343355903,3343359743,3343359999,3343364095,3343365631,3343366655,3343366911,3343372543,3343373311,3343373567,3343373823,3343380479,3343384319,3343458559,3343459071,3343459327,3343459583,3343460863,3343461375,3343465471,3343466495,3343563775,3343564799,3343575807,3343576063,3343652095,3343652351,3343656447,3343656703,3343764479,3343764991,3343858687,3343859199,3343890431,3343890687,3343905023,3343905279,3344126975,3344127999,3344131071,3344131583,3344138239,3344138495,3344138751,3344139263,3344139775,3344140287,3344141311,3344144383,3344148479,3344154623,3344156671,3344158719,3344166911,3344167935,3344171263,3344195583,3344203775,3344208639,3344208895,3344236287,3344237055,3344238335,3344238591,3344240639,3344242175,3344242687,3344243199,3344243711,3344252671,3344252927,3344255999,3344261887,3344262143,3344262399,3344266239,3344266751,3344268543,3344269311,3344287743,3344287999,3344288767,3344289791,3344292863,3344296447,3344296959,3344297983,3344299263,3344299519,3344299775,3344300543,3344300799,3344301823,3344379903,3344380927,3344406527,3344408575,3344411135,3344411647,3344429055,3344431103,3344486399,3344488447,3344534271,3344534527,3344633855,3344637951,3344648447,3344648703,3344648959,3344649215,3344650239,3344652287,3344658431,3344660479,3344666623,3344667135,3344670719,3344670975,3344671231,3344671743,3344677887,3344678911,3344681983,3344685055,3344691199,3344693247,3344694271,3344695295,3344937471,3344937983,3344938239,3344938495,3344955391,3344955647,3344964607,3344965631,3344973823,3344974847,3344979967,3344982015,3344999423,3345000447,3345007615,3345008639,3345010687,3345011711,3345219583,3345220863,3345221631,3345221887,3345222655,3345223423,3345223679,3345223935,3345224703,3345224959,3345225215,3345225471,3345226751,3345227007,3345295871,3345296383,3345299455,3345301503,3345303551,3345304319,3345313791,3345314815,3345327103,3345328127,3345333247,3345334271,3345339391,3345340415,3345375231,3345377279,3345383423,3345384447,3345390591,3345391615,3345398783,3345399807,3345401855,3345403903,3345412095,3345413119,3345418239,3345419519,3345422847,3345423359,3345424383,3345430527,3345432575,3345433599,3345433855,3345434879,3345435135,3345435391,3345436159,3345436927,3345437183,3345437695,3345437951,3345438207,3345438463,3345438975,3345439743,3345439999,3345440255,3345441023,3345441791,3345442303,3345442559,3345442815,3345443327,3345443583,3345443839,3345446655,3345446911,3345447679,3345448447,3345448703,3345448959,3345449215,3345449471,3345451263,3345451519,3345452031,3345452543,3345455871,3345456127,3345457151,3345457407,3345466111,3345466367,3345466879,3345467135,3345467903,3345468159,3345469695,3345469951,3345470719,3345470975,3345475071,3345475327,3345479935,3345480447,3346140671,3346141183,3346188799,3346189311,3346189567,3346190079,3346190335,3346196479,3346197503,3346198527,3346200575,3346201599,3346202623,3346209279,3346209791,3346210303,3346216447,3346216959,3346219007,3346221055,3346225151,3346227199,3346234367,3346235391,3346252031,3346252287,3346269695,3346270207,3346282495,3346284543,3346297855,3346298111,3346305023,3346306047,3346312191,3346312447,3346312703,3346312959,3346319359,3346321407,3346323455,3346325503,3346327551,3346328575,3346329599,3346330623,3346399231,3346464767,3346471423,3346471935,3346483199,3346484223,3346499583,3346499839,3346500095,3346520063,3346521087,3346524159,3346525183,3346528255,3346529279,3346530303,3346543103,3346543359,3346543615,3346543871,3346544127,3346545151,3346545663,3346567167,3346567423,3346570751,3346571007,3346591487,3346591743,3346662143,3346662399,3346663167,3346663423,3346691071,3346692095,3346730495,3346731007,3346793215,3346793471,3346793983,3346794495,3346799103,3346799615,3346807295,3346807807,3346899711,3346899967,3346923519,3346989055,3346998527,3346998783,3346999807,3347000319,3347001343,3347016703,3347017727,3347021823,3347022847,3347030527,3347030783,3347032831,3347033087,3347034111,3347039231,3347039487,3347039743,3347039999,3347040255,3349446911,3349447167,3349458431,3349458687,3349463039,3349463295,3349477119,3349477375,3349479167,3349479423,3349528831,3349529087,3349533695,3349533951,3349544703,3349544959,3349545215,3349545727,3349545983,3349549567,3349550079,3349551103,3349553407,3349553663,3349554687,3349597951,3349598207,3349600255,3349601023,3349605375,3349605631,3349607423,3349607935,3349608447,3349609471,3349610239,3349614591,3349616127,3349616639,3349617663,3349637119,3349639167,3349640191,3349641215,3349643263,3349644287,3349645311,3349647359,3349649407,3349653503,3349678591,3349679103,3349682687,3349683199,3349686783,3349687295,3349725183,3349726207,3349731327,3349733375,3349739519,3349740543,3349987327,3350003711,3350042879,3350043135,3350134783,3350136063,3350136319,3350136575,3350136831,3350145279,3350145535,3350146047,3350150143,3350159871,3350160383,3350160639,3350160895,3350161919,3350162431,3350162943,3350167551,3350175743,3350176511,3350181887,3350183167,3350191103,3350192127,3350196223,3350196735,3350200063,3350469119,3350469631,3350470655,3350475775,3350476799,3350487039,3350488063,3350505471,3350507519,3350547711,3350547967,3350548735,3350548991,3350561279,3350561535,3350574591,3350574847,3350575103,3350606847,3350607871,3350618111,3350619135,3350623231,3350624255,3350626303,3350626815,3350636543,3350636799,3350637055,3350637311,3350638591,3350640639,3350642687,3350643455,3350643711,3350645759,3350646015,3350648831,3350650879,3350653183,3350653439,3350653695,3350653951,3350654207,3350654463,3350654719,3350654975,3350761727,3350761983,3350762239,3350762495,3350762751,3350763007,3350763263,3350763519,3350790399,3350793471,3350793727,3350814975,3350815231,3350815743,3350818303,3350819839,3350820351,3350823423,3350823935,3350825727,3350825983,3350834687,3350835199,3350836223,3350836991,3350837247,3350837759,3350843391,3350843647,3350855679,3350862079,3350864639,3350970367,3350971391,3350978559,3350980607,3350994943,3350998015,3351002111,3351003135,3351004159,3351005183,3351015423,3351016447,3351030783,3351031807,3351034879,3351035903,3351036927,3351037951,3351043071,3351043327,3351043583,3351044095,3351047167,3351047423,3351052287,3351053823,3351058943,3351059455,3351071743,3351072767,3351074815,3351076863,3351078911,3351079167,3351079679,3351080447,3351080959,3351081215,3351081727,3351081983,3351086079,3351087103,3351094271,3351095295,3351096319,3351097343,3351103487,3351104511,3351112703,3351113727,3351115775,3351117823,3351129087,3351129343,3351129599,3351130111,3351194623,3351194879,3351196159,3351196671,3351232511,3351232767,3351275519,3351276543,3351295999,3351298047,3351303167,3351304191,3351306239,3351306751,3351307263,3351308287,3351310335,3351326719,3351328767,3351329279,3351329535,3351336959,3351339007,3351355391,3351356415,3351357439,3351359487,3351372799,3351373823,3351375871,3351376895,3351474687,3351475199,3351478783,3351479295,3351483391,3351484415,3351486463,3351488511,3351494911,3351495167,3351495423,3351497727,3351498751,3351501823,3351502591,3351502847,3351503871,3351504895,3351512575,3351513087,3351524095,3351524351,3351614975,3351615231,3351642111,3351695871,3351696383,3351696639,3351697407,3351698431,3351850751,3351851007,3351853055,3351853311,3351853567,3351854847,3351855103,3351855359,3351855871,3351856127,3351860223,3351861247,3351869695,3351870463,3351870975,3351871231,3351895551,3351895807,3351896319,3351896575,3351904255,3351933439,3351939071,3351961599,3351962623,3351963647,3351964159,3351964671,3351964927,3351965183,3351965439,3351965695,3351969279,3351969535,3351969791,3352035327,3352037375,3352037887,3352038399,3352046591,3352049663,3352051711,3352054527,3352054783,3352055807,3352066047,3352067071,3352068095,3352069119,3352082431,3352083455,3352088575,3352089087,3352089343,3352090623,3352093695,3352094719,3352096767,3352098815,3352099071,3352559871,3352563199,3352563455,3352573951,3352574207,3352574463,3352575743,3352575999,3352581631,3352582143,3352583935,3352584191,3352591359,3352591615,3352615423,3352616959,3352887295,3352918015,3352919039,3352920575,3352920831,3352925695,3352926207,3352927999,3352928255,3352928511,3352928767,3352929279,3352929535,3352930815,3352931071,3352931583,3352932095,3352932351,3352932607,3352934911,3352935423,3352935935,3352936191,3352937471,3352937727,3352937983,3352938239,3352940287,3352940543,3352942591,3352942847,3352945407,3352945663,3352946431,3352946687,3352946943,3352947199,3352948223,3352948479,3352948735,3352948991,3352951039,3352951295,3352951807,3352952063,3352952575,3352952831,3352981503,3352981759,3353310207,3353311231,3353334783,3353335039,3353335295,3353335807,3353343999,3353344511,3353344767,3353345023,3353347839,3353348095,3353651455,3353651711,3353653503,3353653759,3353722367,3353722623,3353729023,3353729279,3353730047,3353731071,3353732351,3353732607,3353736191,3353737215,3353737471,3353737727,3353763839,3353764863,3353765887,3353855999,3353858047,3353861119,3353862143,3353864959,3353865215,3353872383,3353872895,3353876479,3353877503,3353880831,3353881087,3353883135,3353883647,3353885695,3353896959,3353897983,3353899007,3353900031,3353906175,3353907199,3353908223,3353909247,3353912319,3353912831,3353913343,3353914367,3353915391,3353915647,3353915903,3353916159,3353916415,3353917439,3353918463,3353919487,3353927679,3353928703,3353928959,3353939711,3353939967,3353942527,3353943039,3353957119,3353957375,3353960191,3353960447,3353976063,3353976319,3353979647,3353979903,3353982719,3353983231,3353989631,3353989887,3354007039,3354007295,3354009599,3354009855,3354010111,3354010367,3354010623,3354010879,3354013951,3354014463,3354014719,3354014975,3354017279,3354017535,3354024703,3354024959,3354026239,3354026495,3354030079,3354030335,3354031615,3354031871,3354032127,3354032383,3354034175,3354034431,3354034687,3354035455,3354035711,3354036223,3354036991,3354037247,3354044927,3354045183,3354046975,3354047231,3354047999,3354048255,3354049279,3354049535,3354050047,3354050303,3354051839,3354052095,3354052607,3354052863,3354053375,3354053631,3354054655,3354054911,3354056191,3354056447,3354057983,3354058495,3354061567,3354061823,3354063103,3354063359,3354066687,3354066943,3354132479,3354132735,3354132991,3354134271,3354134527,3354135039,3354135295,3354136063,3354136319,3354138367,3354138623,3354139135,3354139391,3354141183,3354141439,3354141951,3354142207,3354142975,3354143231,3354143487,3354143999,3354144255,3354145023,3354146047,3354146559,3354147071,3354147583,3354149375,3354149631,3354150399,3354150655,3354151935,3354152447,3354152959,3354153215,3354155519,3354155775,3354156031,3354156287,3354157055,3354157311,3354158335,3354158591,3354159359,3354159615,3354163455,3354163711,3354166015,3354166271,3354168575,3354169343,3354173439,3354173695,3354175487,3354175743,3354178047,3354178559,3354180095,3354180351,3354181631,3354181887,3354182911,3354183167,3354186239,3354186495,3354191103,3354191615,3354192639,3354192895,3354194175,3354194431,3354195711,3354195967,3354197503,3354197759,3354198015,3354198271,3354202879,3354203135,3354206463,3354206975,3354207743,3354207999,3354209023,3354209279,3354209791,3354210047,3354211327,3354211583,3354216703,3354216959,3354217983,3354218239,3354221567,3354222079,3354222335,3354222591,3354223615,3354224127,3354224895,3354225151,3354226431,3354226687,3354228223,3354228479,3354230527,3354230783,3354231039,3354231295,3354235903,3354236159,3354236415,3354236671,3354237439,3354237695,3354237951,3354238207,3354240767,3354241023,3354244607,3354244863,3354245887,3354246143,3354246655,3354247167,3354251007,3354251263,3354256127,3354256383,3354259199,3354259711,3354259967,3354260479,3354262015,3354262527,3354265087,3354265343,3354266623,3354266879,3354267135,3354267391,3354268671,3354268927,3354269183,3354269439,3354270463,3354270719,3354271231,3354271487,3354272255,3354272511,3354273023,3354273279,3354274815,3354275071,3354275327,3354275583,3354275839,3354276095,3354276351,3354276607,3354279167,3354279423,3354280191,3354280447,3354280703,3354281215,3354282751,3354283007,3354284543,3354284799,3354285311,3354285567,3354286079,3354286335,3354286847,3354287103,3354287359,3354287615,3354288639,3354288895,3354289151,3354289407,3354290175,3354290431,3354291199,3354291455,3354291967,3354292223,3354292479,3354292735,3354293247,3354293503,3354294271,3354294527,3354296575,3354296831,3354298879,3354299135,3354299391,3354299903,3354300415,3354300671,3354300927,3354301183,3354302207,3354302463,3354303487,3354303743,3354303999,3354304255,3354312959,3354313215,3354313471,3354313727,3354313983,3354314751,3354316031,3354316287,3354316799,3354317055,3354317823,3354318079,3354318591,3354319103,3354320895,3354321151,3354321407,3354321663,3354322175,3354322431,3354325759,3354326015,3354326271,3354326527,3354329087,3354329343,3354329599,3354329855,3354330111,3354330367,3354331135,3354331391,3354331647,3354331903,3354333183,3354333439,3354339327,3354339583,3354340863,3354341119,3354342143,3354342399,3354343423,3354344191,3354344447,3354344703,3354345215,3354345471,3354348287,3354348543,3354350847,3354351103,3354352895,3354353151,3354354175,3354354431,3354357247,3354357759,3354359295,3354359551,3354360575,3354360831,3354361343,3354361599,3354362879,3354363135,3354366719,3354366975,3354367999,3354368255,3354370047,3354370303,3354370559,3354370815,3354372095,3354372351,3354372607,3354372863,3354373119,3354373375,3354374399,3354374911,3354375167,3354375423,3354376191,3354376447,3354376959,3354377215,3354379519,3354379775,3354380031,3354380287,3354381055,3354381311,3354383103,3354383359,3354383871,3354384127,3354385407,3354385663,3354387711,3354387967,3354388735,3354388991,3354390527,3354390783,3354396671,3354397183,3354399487,3354399743,3354400255,3354400511,3354402047,3354402303,3354403327,3354403839,3354406143,3354406399,3354407423,3354407679,3354410239,3354410495,3354410751,3354411007,3354411519,3354411775,3354415615,3354415871,3354417663,3354417919,3354419455,3354419711,3354420223,3354420479,3354421503,3354421759,3354422015,3354422271,3354423807,3354424319,3354425855,3354426367,3354426623,3354426879,3354427647,3354427903,3354428415,3354428671,3354433023,3354433279,3354436095,3354436351,3354436607,3354436863,3354437119,3354437375,3354438399,3354438655,3354439423,3354439679,3354440703,3354440959,3354441471,3354441727,3354442239,3354442495,3354442751,3354443007,3354443263,3354443775,3354445311,3354445567,3354446335,3354446591,3354447103,3354447359,3354447615,3354448127,3354448895,3354449151,3354450687,3354450943,3354451455,3354451711,3354453503,3354453759,3354454015,3354454271,3354455295,3354455551,3354457087,3354457343,3354458367,3354458623,3354468351,3354468863,3354469375,3354476031,3354490879,3354492927,3354494975,3354495231,3354495487,3354495743,3354499071,3354503167,3354591231,3354656767,3354676223,3354677247,3354682367,3354682623,3354683391,3354687487,3354688511,3354707455,3354707967,3354736639,3354736895,3354737663,3354738175,3354738431,3354740991,3354741247,3354747135,3354747391,3354770687,3354770943,3354788095,3354789887,3354790399,3354807551,3354810367,3354810623,3354814975,3354815231,3354823423,3354823679,3354832895,3354836991,3354853119,3354853375,3354855423,3354857471,3354859519,3354861567,3354862079,3354862335,3354862591,3354862847,3354863103,3354864127,3354865663,3354866175,3354866431,3354867711,3354869759,3354873855,3354874879,3354875391,3354886143,3354890239,3354893311,3354894335,3354894847,3354895359,3354895871,3354896383,3354896895,3354897407,3354897919,3354898431,3354902527,3354918911,3354955775,3354956031,3354967295,3354967551,3354972159,3354972415,3354974207,3354974463,3354975231,3354975487,3354980095,3354980351,3354980607,3354980863,3355012607,3355013119,3355019007,3355019263,3355039743,3355040255,3355049727,3355049983,3355052287,3355053055,3355065343,3355065599,3355082751,3355090943,3355249151,3355249663,3355310591,3355311103,3355338751,3355340799,3355351039,3355351295,3355363071,3355363327,3355372287,3355372543,3355384831,3355385855,3355406335,3355407359,3355408383,3355413759,3355414015,3355414271,3355414527,3355432959,3355435007,3355443199,3355445247,3355447295,3355447551,3355447807,3355448063,3355448319,3355448831,3355449343,3355450367,3355451391,3355458559,3355458815,3355459071,3355459327,3355459583,3355459839,3355460095,3355460351,3355460607,3355461119,3355461887,3355463423,3355463935,3355464191,3355464447,3355464959,3355465215,3355465983,3355466239,3355467263,3355467519,3355467775,3355468799,3355469567,3355470591,3355470847,3355471103,3355471359,3355471615,3355472383,3355472639,3355473407,3355473919,3355475199,3355477503,3355478015,3355478271,3355478783,3355479039,3355479551,3355479807,3355480063,3355485183,3355487743,3355487999,3355488255,3355488767,3355489023,3355489279,3355489535,3355491071,3355491327,3355494655,3355494911,3355495423,3355496447,3355498495,3355500543,3355508735,3355510271,3355510527,3355510783,3355512831,3355516927,3355525119,3355535359,3355537407,3355537663,3355537919,3355538175,3355538431,3355539199,3355539455,3355540479,3355540735,3355540991,3355541503,3355541759,3355542015,3355545599,3355547647,3355547903,3355548159,3355548671,3355549695,3355549951,3355550207,3355552767,3355553023,3355553279,3355553535,3355553791,3355555839,3355557887,3355559935,3355561983,3355564031,3355566079,3355574271,3355576319,3355578367,3355582463,3355590655,3355592703,3355599871,3355600895,3355604991,3355607039,3355615231,3355623423,3355639807,3355642367,3355642879,3355643903,3355647999,3355668991,3355669247,3355672575,3355677183,3355677439,3355682815,3355684863,3355686911,3355688959,3355689471,3355689727,3355689983,3355691007,3355693055,3355695103,3355697151,3355701503,3355701759,3355702015,3355702271,3355703295,3355705343,3355709439,3355713535,3355720447,3355720703,3355722751,3355723263,3355729919,3355738111,3355746303,3355754495,3355770879,3355773183,3355773439,3355773695,3355773951,3355774975,3355779071,3355781119,3355783167,3355787263,3355803647,3355820031,3355836415,3355837439,3355837695,3355841023,3355841279,3355843327,3355843583,3355844863,3355845119,3355845375,3355847423,3355847679,3355849727,3355849983,3355850495,3355850751,3355852799,3355856639,3355856895,3355860991,3355869183,3355870207,3355870719,3355873279,3355875327,3355877375,3355885567,3355901951,3355902975,3355903999,3355905535,3355905791,3355906047,3355910143,3355918335,3355923455,3355924479,3355926527,3355930623,3355934719,3355939839,3355940863,3355942911,3355947007,3355949055,3355949567,3355951103,3355967487,3356033023,3356033791,3356034047,3356035071,3356037119,3356041215,3356049407,3356049663,3356051455,3356051711,3356051967,3356052223,3356052479,3356053247,3356054015,3356054527,3356057087,3356057343,3356057599,3356057855,3356059135,3356060671,3356061695,3356062207,3356062463,3356062719,3356063743,3356064255,3356064511,3356065791,3356066047,3356069119,3356069631,3356070143,3356070655,3356070911,3356071423,3356072447,3356073215,3356073471,3356073983,3356075263,3356076287,3356076543,3356077567,3356078079,3356078335,3356079359,3356079615,3356080639,3356080895,3356082431,3356082687,3356082943,3356083967,3356084479,3356084735,3356085247,3356085759,3356086271,3356086527,3356087295,3356087807,3356088063,3356088319,3356089087,3356089343,3356090623,3356090879,3356091391,3356091647,3356091903,3356093183,3356093951,3356094975,3356096255,3356096511,3356096767,3356097023,3356097535,3356097791,3356098303,3356098559,3356099583,3356100607,3356102399,3356102655,3356105727,3356106751,3356107007,3356107263,3356109311,3356109567,3356110847,3356113919,3356114943,3356123135,3356131839,3356132351,3356133375,3356133887,3356134143,3356134655,3356134911,3356135167,3356135423,3356135679,3356135935,3356136191,3356137471,3356137727,3356137983,3356138239,3356138495,3356139007,3356139263,3356139519,3356139775,3356140031,3356140287,3356140543,3356140799,3356141311,3356142847,3356143103,3356143615,3356144127,3356144639,3356145151,3356145407,3356145663,3356145919,3356146175,3356146431,3356146687,3356146943,3356147199,3356147455,3356147711,3356148223,3356148479,3356148735,3356148991,3356149503,3356149759,3356150015,3356150527,3356150783,3356151039,3356151295,3356151551,3356151807,3356152063,3356152319,3356152575,3356152831,3356154623,3356154879,3356156671,3356156927,3356157951,3356158207,3356158463,3356158719,3356158975,3356159743,3356159999,3356160255,3356160511,3356160767,3356161279,3356161535,3356162559,3356162815,3356163583,3356163839,3356164095,3356171519,3356171775,3356172031,3356172287,3356172543,3356172799,3356174335,3356176383,3356180479,3356190719,3356192767,3356194815,3356196863,3356229631,3356233727,3356237823,3356246015,3356262655,3356263167,3356263423,3356263679,3356265215,3356265471,3356267007,3356267263,3356268799,3356269055,3356269311,3356269823,3356270079,3356272383,3356272639,3356272895,3356273151,3356273407,3356273663,3356274431,3356278783,3356279039,3356279295,3356279807,3356280831,3356282879,3356284927,3356286975,3356287487,3356287743,3356288255,3356288767,3356289023,3356289791,3356290303,3356290559,3356291071,3356293119,3356295167,3356297215,3356299263,3356303359,3356303615,3356305663,3356307455,3356316415,3356316671,3356317695,3356328959,3356329983,3356332031,3356334079,3356336127,3356336639,3356338175,3356339967,3356341247,3356341503,3356342271,3356343039,3356343551,3356344319,3356360703,3356362751,3356364799,3356368895,3356369407,3356369663,3356369919,3356370175,3356370943,3356372991,3356375039,3356376063,3356376319,3356376575,3356376831,3356377087,3356379391,3356379647,3356380159,3356380927,3356381183,3356381951,3356382207,3356389375,3356389887,3356390399,3356390655,3356391167,3356391423,3356393471,3356413183,3356413951,3356419839,3356420351,3356420607,3356422143,3356425471,3356425727,3356426239,3356434431,3356437247,3356437503,3356440319,3356440575,3356440831,3356441087,3356454143,3356454399,3356463615,3356463871,3356468735,3356468991,3356480511,3356480767,3356491775,3356493823,3356495871,3356499967,3356508159,3356508671,3356509183,3356509439,3356509695,3356510207,3356511999,3356512255,3356514303,3356514559,3356514815,3356515327,3356515583,3356515839,3356516095,3356516351,3356520447,3356521471,3356521727,3356522495,3356557311,3356819455,3356884991,3356950527,3356958463,3356958719,3356967167,3356967423,3356967935,3356968959,3356969727,3356969983,3356972031,3356972543,3356979967,3356980223,3356980479,3356980735,3356981247,3356986367,3356986623,3356988415,3356988671,3356989439,3356989951,3356991231,3356991487,3356996607,3356997631,3356998911,3356999167,3357003007,3357003263,3357003519,3357003775,3357007871,3357011967,3357015551,3357016063,3357018623,3357019135,3357020159,3357032447,3357042687,3357043711,3357047807,3357048831,3357057023,3357065215,3357073407,3357077503,3357081599,3357084927,3357085183,3357085695,3357086207,3357086719,3357087743,3357088767,3357089279,3357089535,3357089791,3357090815,3357091327,3357091839,3357092351,3357092863,3357093887,3357094399,3357094911,3357096959,3357097983,3357098239,3357098495,3357099007,3357099263,3357099519,3357100543,3357100799,3357101055,3357102079,3357102335,3357103103,3357103359,3357103615,3357104127,3357104383,3357104639,3357104895,3357106175,3357106431,3357106687,3357107199,3357108223,3357108735,3357109247,3357114367,3357138943,3357147135,3357179903,3357188095,3357190143,3357192191,3357194239,3357194495,3357194751,3357195007,3357195263,3357195519,3357196031,3357196287,3357204479,3357205503,3357206527,3357207551,3357208575,3357212671,3357368319,3357376511,3357403135,3357405183,3357407231,3357409279,3357411327,3357412351,3357412863,3357413119,3357413375,3357414399,3357415423,3357415679,3357416447,3357417215,3357417471,3357418495,3357418751,3357419007,3357419519,3357420031,3357421055,3357421311,3357421567,3357422847,3357423103,3357423359,3357424639,3357425663,3357442047,3357442303,3357442559,3357442815,3357443071,3357443327,3357443583,3357444607,3357444863,3357448191,3357448703,3357448959,3357449727,3357450751,3357451007,3357451519,3357451775,3357452287,3357452799,3357453055,3357453311,3357454591,3357454847,3357455103,3357455359,3357455871,3357456127,3357456639,3357456895,3357457663,3357457919,3357458431,3357474815,3357475071,3357475839,3357476351,3357476607,3357476863,3357477631,3357477887,3357480959,3357483007,3357491199,3357499391,3357507583,3357515775,3357523967,3357532159,3357556735,3357556991,3357557759,3357559295,3357559551,3357559807,3357560319,3357560575,3357560831,3357561855,3357581311,3357589503,3357605887,3357606911,3357607167,3357613055,3357613311,3357618943,3357619199,3357623039,3357623295,3357626623,3357626879,3357627135,3357627391,3357627647,3357627903,3357628415,3357630719,3357633535,3357633791,3357634815,3357635071,3357635327,3357635583,3357635839,3357636095,3357637887,3357638143,3357640703,3357644799,3357646847,3357647871,3357648895,3357650431,3357650943,3357657855,3357658111,3357658623,3357658879,3357670655,3357670911,3357671423,3357671679,3357707263,3357707519,3357712383,3357713407,3357715199,3357715455,3357726463,3357726719,3357727743,3357728767,3357736959,3357745151,3357753343,3357773823,3357774847,3357775871,3357776127,3357776383,3357776895,3357777919,3357783807,3357784063,3357784319,3357784575,3357785087,3357785855,3357786111,3357802495,3357835263,3357841407,3357842431,3357842943,3357843199,3357843455,3357851647,3357855743,3357856767,3357859839,3357868031,3357933567,3358007295,3358013439,3358014463,3358015487,3358023679,3358031871,3358033919,3358034943,3358036991,3358037503,3358038015,3358039039,3358040063,3358064639,3358130175,3358131199,3358132223,3358132479,3358132735,3358133247,3358133759,3358134271,3358142719,3358142975,3358143231,3358143487,3358143999,3358144511,3358145023,3358149631,3358150655,3358151679,3358152703,3358152959,3358153215,3358153727,3358153983,3358154239,3358154751,3358158847,3358159359,3358159615,3358159871,3358160895,3358236671,3358244863,3358261247,3358326783,3358392319,3358457855,3358523391,3358543871,3358544127,3358559231,3358560255,3358563327,3358564095,3358564351,3358566911,3358568447,3358569215,3358570495,3358578687,3358579967,3358587903,3358588927,3358654463,3358658559,3358660607,3358670847,3358695423,3358703615,3358715647,3358715903,3358716927,3358717951,3358719999,3358728191,3358736383,3358738175,3358738687,3358739711,3358739967,3358742783,3358743295,3358744575,3358752767,3358754815,3358756863,3358758911,3358759935,3358760959,3358769151,3358779391,3358781439,3358851071,3358855167,3358859263,3358887935,3358892031,3358908415,3358912511,3358916607,3358924799,3358932991,3358941183,3358965759,3358973951,3358982143,3359047679,3359059199,3359059455,3359060223,3359060479,3359080447,3359096831,3359105023,3359109119,3359110911,3359111167,3359113215,3359244287,3359254527,3359257087,3359259647,3359259903,3359260671,3359268863,3359277055,3359285247,3359293439,3359305727,3359307775,3359308799,3359309823,3359313919,3359315967,3359318015,3359356927,3359358975,3359363071,3359364095,3359365119,3359366143,3359375359,3359440895,3359448831,3359449087,3359498239,3359502335,3359505407,3359505663,3359505919,3359506431,3359506687,3359521791,3359522815,3359539199,3359571967,3359582207,3359584255,3359586303,3359588351,3359596543,3359598591,3359599615,3359621119,3359637503,3359797247,3359801343,3359899647,3359916031,3359932415,3359948799,3359965183,3359967231,3359969279,3359970303,3359972351,3359973375,3359981567,3359997183,3359997439,3359997951,3360006143,3360014335,3360096255,3360104447,3360112639,3360116735,3360117247,3360118783,3360120831,3360123903,3360124927,3360125951,3360127999,3360128511,3360129023,3360145407,3360153599,3360157695,3360159743,3360161791,3360251903,3360253951,3360255999,3360260095,3360276479,3360278527,3360280575,3360282623,3360284671,3360325631,3360333823,3360342015,3360354303,3360356351,3360358399,3360366591,3360382975,3360399359,3360403455,3360405503,3360407551,3360423935,3360534527,3360536575,3360537599,3360538623,3360667647,3360669695,3360686079,3360706559,3360710655,3360718847,3360763903,3360765951,3360767999,3360780287,3360780543,3360781055,3360781311,3360781567,3360782079,3360782335,3360788479,3360789503,3360849919,3360882687,3360948223,3361013759,3361021951,3361030143,3361030655,3361033983,3361034239,3361036287,3361046527,3361048575,3361049599,3361052671,3361054719,3361058815,3361062911,3361071103,3361079295,3361144831,3361210367,3361275903,3361284095,3361296383,3361298431,3361300479,3361308671,3361325055,3361341439,3361374207,3361378303,3361380351,3361382399,3361415167,3361417215,3361419263,3361423359,3361456127,3361472511,3361538047,3361570815,3361587199,3361599487,3361601535,3361603583,3361665023,3361667071,3361668095,3361669119,3361713151,3361716223,3361717247,3361726463,3361734655,3362258943,3362324479,3362326015,3362326271,3362337279,3362337535,3362337791,3362338047,3362349055,3362351103,3362353151,3362355199,3362357247,3362381823,3362390015,3362422783,3362428927,3362430975,3362431999,3362433023,3362434047,3362435071,3362437119,3362438143,3362440191,3362441215,3362446335,3362446847,3362447359,3362449407,3362450175,3362451455,3362452479,3362452991,3362453247,3362453503,3362455551,3362471935,3362476031,3362476287,3362476543,3362477055,3362478079,3362484223,3362486271,3362488319,3362504703,3362506751,3362507775,3362508031,3362508543,3362508799,3362510847,3362512895,3362514943,3362516991,3362519039,3362521087,3362529279,3362537471,3362539007,3362539263,3362542335,3362542591,3362545663,3362549759,3362552063,3362552575,3362553087,3362553343,3362553599,3362553855,3362557951,3362562047,3362568191,3362569215,3362569727,3362569983,3362570239,3362586623,3362652159,3362664447,3362668543,3362676735,3362678783,3362679807,3362680831,3362684927,3362690815,3362692095,3362692607,3362692863,3362695167,3362697215,3362703359,3362705407,3362711551,3362713599,3362717695,3362815999,3362832383,3362838527,3362840575,3362897919,3362914303,3362930687,3362934783,3362936831,3362938879,3362942975,3362945023,3362983935,3362984447,3362984703,3362984959,3362985983,3362988031,3362992127,3362996223,3362998271,3363000319,3363004415,3363005439,3363010559,3363011583,3363012607,3363024895,3363025151,3363025407,3363025663,3363025919,3363026431,3363026943,3363027199,3363027967,3363028991,3363045375,3363110911,3363176447,3363274751,3363280639,3363281407,3363289087,3363291135,3363299327,3363373055,3363438591,3363471359,3363487743,3363504127,3363512319,3363553791,3363554047,3363554303,3363554559,3363554815,3363555327,3363555583,3363557119,3363557375,3363559423,3363561471,3363562495,3363563519,3363565567,3363569663,3363577855,3363586047,3363587071,3363588095,3363589119,3363593727,3363593983,3363594239,3363600383,3363600639,3363600895,3363601407,3363601919,3363602175,3363602431,3363610623,3363611647,3363614719,3363617791,3363618815,3363627007,3363635199,3363651583,3363667967,3363668223,3363668479,3363676159,3363678207,3363679231,3363682303,3363684351,3363708927,3363713023,3363713279,3363714047,3363715583,3363716095,3363716607,3363717119,3363733503,3363831807,3364224255,3364224511,3364575487,3364575743,3364809727,3364810751,3364874239,3364874495,3365335039,3365336063,3365337087,3365338111,3366096895,3366100991,3366972927,3366973183,3367763967,3367804927,3367833599,3367834111,3367834367,3367834623,3367835135,3367837695,3367840767,3367841791,3367846911,3367847935,3368052991,3368053247,3368053503,3368086527,3368087551,3368157183,3368173567,3368204287,3368205311,3368218623,3368220671,3368467455,3368467711,3368892415,3368892671,3369591807,3369592831,3369593855,3369596927,3369597951,3369796607,3369797631,3369805823,3369806847,3369807871,3369808895,3369809919,3369902079,3369904127,3369905663,3369906175,3370188799,3370196991,3370201087,3370218495,3370219519,3370220543,3370221567,3370450943,3370455039,3370455295,3370455551,3370455807,3370459135,3370487807,3370488319,3370488575,3370488831,3370489855,3370490879,3370506239,3370507263,3370515455,3370516479,3370723327,3370724351,3370725375,3370779647,3370780671,3370835967,3370840063,3370926079,3370942463,3371106303,3371122687,3375256575,3375257599,3375258623,3375259647,3375263743,3375264255,3375264511,3375264767,3375265791,3375266815,3375267839,3375464447,3375465471,3375466495,3375479295,3375479807,3375480831,3375486463,3375486975,3376873471,3376873983,3376874495,3376925695,3376926719,3377267199,3377267711,3377274879,3377278975,3377279487,3377279999,3377281023,3377281279,3377281535,3377281791,3377282303,3377282815,3377283071,3377291263,3377292287,3377294335,3377295359,3377793791,3377794047,3377828351,3377828607,3377885695,3377885951,3378418687,3378419711,3378511871,3380744191,3380745215,3380746239,3380747263,3380748287,3380760831,3380761087,3380761599,3380764671,3380806911,3380807167,3380808191,3380808703,3380811775,3380813823,3380815103,3380815359,3380815871,3380816127,3380816383,3380816639,3380816895,3380817151,3380817407,3380817663,3380817919,3380818175,3380818431,3380818687,3380818943,3380822015,3380822271,3380822527,3380822783,3380823039,3380824063,3380824319,3380824575,3380825087,3380825343,3380825599,3380825855,3380826111,3380828159,3380829183,3380830207,3380830463,3380830719,3380831231,3380831743,3380831999,3380832255,3380832767,3380833023,3380833279,3380833791,3380834303,3380834815,3380835071,3380835327,3380835839,3380836351,3380836607,3380836863,3380837375,3380840447,3380843519,3380844543,3380853759,3380854783,3380858879,3380860927,3380861951,3380862975,3380865023,3380867071,3380869119,3381350399,3381351423,3381354495,3381373951,3381374975,3381377023,3381379071,3381385215,3381387263,3381448703,3381452799,3381453823,3381460991,3381944319,3381946367,3381947391,3381952511,3381960703,3381962751,3381963775,3381968895,3381972991,3381974015,3381975039,3381979135,3381980159,3381985279,3382010879,3382018047,3382053887,3382057983,3382059007,3382063103,3382064895,3382065151,3382066175,3382067199,3382071295,3382072319,3382073343,3382075391,3382076415,3382077439,3382078463,3382080511,3382081535,3382083583,3382087679,3382091775,3382099967,3382558719,3382575103,3382577151,3382579199,3382580223,3382583295,3382585343,3382587391,3382588415,3382589439,3382591487,3382599679,3382600703,3382601727,3382602751,3382603775,3382605823,3382607871,3382642687,3382644735,3382646783,3382648831,3382653951,3382654975,3382657023,3382659071,3382661119,3382662143,3382665215,3382669311,3382670335,3382672383,3382677503,3382683647,3382685695,3382686719,3382689791,3382695935,3382696959,3382697983,3382704127,3382706175,3382853631,3382870015,3383701503,3383705599,3383754751,3384148991,3384152063,3384153087,3384154111,3384155135,3384162047,3384162303,3384167423,3384168447,3384169471,3384170495,3384175615,3384177663,3384180735,3384184831,3384185855,3384186879,3384196095,3384197119,3384205823,3384206335,3384209407,3384210431,3384211455,3384212479,3384213503,3384279039,3384410111,3384672255,3384688639,3384705023,3384737791,3385851903,3386114047,3386245119,3386376191,3386392575,3386395647,3386396671,3386398719,3386399743,3386408959,3386425343,3386441727,3386458111,3386474495,3386490879,3386499071,3386503167,3386504191,3386505215,3386507263,3386523647,3386540031,3386541055,3386541311,3386544383,3386544639,3386546175,3386546431,3386546687,3386547199,3386548223,3386551295,3386552319,3386553343,3386554367,3386555391,3386556415,3386572799,3386589183,3386601471,3386605567,3386613759,3386621951,3386630143,3386632191,3386634239,3386636287,3386637311,3386638335,3386640895,3386641151,3386641663,3386641919,3386642431,3386644735,3386644991,3386645247,3386645503,3386645759,3386646015,3386662911,3386671103,3386675199,3386687487,3386695679,3386703871,3386720255,3386726399,3386727423,3386728447,3386732543,3386733567,3386734591,3386734847,3386735103,3386735359,3386735615,3386736127,3386736383,3386736639,3386753023,3386761215,3386769407,3386773503,3386774527,3386779647,3386779903,3386780159,3386780415,3386780671,3386781695,3386783743,3386784767,3386785791,3386802175,3386900479,3387162623,3387228159,3387260927,3387293695,3387359231,3387424767,3387555839,3387556351,3387556607,3387558911,3387559167,3387566847,3387567103,3387567359,3387567615,3387568127,3387572223,3387576319,3387578367,3387584511,3387588607,3387589887,3387590143,3387590399,3387590655,3387592191,3387592703,3387593727,3387594239,3387595007,3387595263,3387600895,3387604991,3387613183,3387617279,3387619327,3387619583,3387686911,3387736063,3387752447,3387817983,3387834367,3387850751,3387867135,3387949055,3388014591,3388080127,3388211199,3388342271,3388407807,3388473343,3388604415,3388997631,3389001727,3389005823,3389014015,3389014271,3389014783,3389015295,3389015807,3389016063,3389016575,3389017087,3389017343,3389017599,3389017855,3389018111,3389018367,3389018623,3389019135,3389019391,3389019903,3389020159,3389020671,3389020927,3389021183,3389021695,3389021951,3389022207,3389022463,3389022719,3389022975,3389023231,3389023743,3389023999,3389024255,3389024511,3389024767,3389025023,3389025279,3389025535,3389025791,3389026047,3389026303,3389026559,3389027071,3389027327,3389027583,3389028607,3389028863,3389029375,3389029887,3389030399,3389034495,3389035519,3389035775,3389036031,3389036287,3389036543,3389037567,3389037823,3389038079,3389038335,3389038591,3389044735,3389046783,3389063167,3389063679,3389063935,3389064191,3389064447,3389064703,3389065215,3389067263,3389071359,3389079551,3389084671,3389085183,3389085695,3389086207,3389086719,3389091327,3389092351,3389092863,3389093887,3389095935,3389104127,3389112319,3389116415,3389120511,3389122559,3389122815,3389123583,3389123839,3389124351,3389124607,3389125375,3389125631,3389128703,3389129727,3389132799,3389142015,3389143039,3389144063,3389145087,3389151231,3389152255,3389153023,3389153279,3389161471,3389163519,3389165567,3389167615,3389169663,3389171711,3389173759,3389174783,3389175807,3389177855,3389179903,3389181951,3389182975,3389194239,3389195775,3389196287,3389197567,3389197823,3389198079,3389198335,3389202431,3389210623,3389210879,3389211135,3389211391,3389211647,3389212671,3389213183,3389213439,3389213695,3389213951,3389214207,3389214463,3389214719,3389218815,3389222911,3389223935,3389225983,3389226239,3389226495,3389226751,3389227007,3389227519,3389228031,3389228543,3389228799,3389229055,3389229311,3389229567,3389230079,3389235199,3389243391,3389247487,3389251583,3389259775,3389263871,3389266175,3389266431,3389266943,3389267455,3389267711,3389267967,3389276159,3389284351,3389292543,3389300735,3389301247,3389301759,3389302015,3389302271,3389302527,3389302783,3389303039,3389303295,3389303807,3389304063,3389304319,3389304575,3389304831,3389305087,3389305599,3389305855,3389306111,3389306367,3389306623,3389306879,3389307135,3389307647,3389307903,3389308159,3389308415,3389308671,3389308927,3389317119,3389322239,3389324031,3389324287,3389325311,3389326335,3389326847,3389327359,3389329407,3389333503,3389341695,3389345791,3389349887,3389353983,3389355007,3389355263,3389358079,3389358591,3389359359,3389359615,3389366271,3389374463,3389378559,3389381631,3389382655,3389390847,3389391359,3389391615,3389392127,3389392383,3389392895,3389394943,3389399039,3389407231,3389407743,3389408255,3389409279,3389409791,3389410303,3389410559,3389410815,3389411327,3389411583,3389411839,3389412351,3389412607,3389412863,3389413119,3389413887,3389414143,3389414399,3389414911,3389415167,3389415423,3389415935,3389416191,3389416447,3389416959,3389417215,3389417471,3389417983,3389418239,3389418495,3389418751,3389419007,3389419519,3389420031,3389420287,3389420543,3389421311,3389421567,3389422591,3389431807,3389435903,3389439999,3389444095,3389452287,3389453311,3389454335,3389455359,3389456383,3389456895,3389457407,3389458431,3389460479,3389464575,3389469695,3389470719,3389471231,3389471487,3389471743,3389472767,3389480959,3389489151,3389493247,3389521919,3389522175,3389522431,3389523455,3389523967,3389524223,3389524479,3389524735,3389524991,3389525247,3389525503,3389526015,3389528063,3389528319,3389528575,3389529087,3389529343,3389529599,3389529855,3389530111,3389532159,3389533183,3389534207,3389538303,3389538559,3389540351,3389541375,3389541631,3389541887,3389542399,3389543423,3389544447,3389545471,3389545727,3389545983,3389546495,3389547519,3389548543,3389549055,3389549311,3389549567,3389550591,3389552639,3389553663,3389554687,3389562879,3389571071,3389575167,3389579263,3389587455,3389595647,3389595903,3389596159,3389596671,3389597439,3389597695,3389599743,3389600255,3389600511,3389601535,3389601791,3389602047,3389602815,3389603583,3389603839,3389604095,3389604351,3389604863,3389605119,3389605375,3389605887,3389606399,3389606655,3389606911,3389607423,3389607679,3389608191,3389608447,3389608703,3389608959,3389609215,3389609471,3389609727,3389609983,3389610239,3389610495,3389610751,3389611519,3389612031,3389616127,3389617151,3389618175,3389640703,3389644799,3389645055,3389645311,3389645823,3389661183,3389669375,3389673471,3389677567,3389681663,3389685759,3389718527,3389784063,3389784319,3389784831,3389785087,3389786111,3389788159,3389788415,3389788927,3389789695,3389789951,3389790207,3389790719,3389790975,3389791231,3389791743,3389791999,3389792255,3389800447,3389801471,3389801727,3389802495,3389802751,3389803263,3389803519,3389804543,3389805567,3389806079,3389807359,3389807615,3389808127,3389808639,3389808895,3389809151,3389809663,3389809919,3389810175,3389810431,3389810687,3389811199,3389811455,3389811711,3389811967,3389812479,3389812735,3389813759,3389814015,3389814527,3389815295,3389815807,3389816063,3389816575,3389816831,3389846527,3389847551,3389847807,3389848063,3389848319,3389848575,3389848831,3389849087,3389849343,3389849599,3389915135,3389916159,3389917183,3389919231,3389923327,3389931519,3389932031,3389932287,3389932799,3389933055,3389933567,3389933823,3389934847,3389935103,3389935615,3389935871,3389936127,3389936895,3389937663,3389937919,3389938175,3389938687,3389939199,3389939455,3389939711,3389939967,3389940223,3389940479,3389940735,3389940991,3389941247,3389941503,3389941759,3389942271,3389942783,3389943295,3389943551,3389943807,3389944319,3389944831,3389945087,3389945343,3389945855,3389946879,3389947391,3389947647,3389947903,3389948159,3389948415,3389949695,3389950207,3389950463,3389950975,3389951231,3389951487,3389951743,3389952255,3389953279,3389953535,3389953791,3389954047,3389954303,3389954815,3389955327,3389956095,3389957119,3389957375,3389957631,3389957887,3389958399,3389960447,3389961727,3389962239,3389962751,3389966335,3389967359,3389968383,3389968895,3389969663,3389969919,3389970175,3389970431,3389970943,3389971199,3389971711,3389971967,3389972479,3389972735,3389973503,3389973759,3389974015,3389974271,3389974527,3389975039,3389975295,3389976575,3389977599,3389978111,3389978367,3389979135,3389979391,3389979647,3389980415,3389980671,3390308351,3390310399,3390316543,3390324735,3390324991,3390325247,3390325503,3390325759,3390326015,3390327551,3390327807,3390328575,3390328831,3390329087,3390329343,3390330367,3390330623,3390331647,3390332415,3390332927,3390333183,3390333439,3390333695,3390333951,3390334463,3390335231,3390335487,3390336511,3390336767,3390337023,3390337535,3390337791,3390338303,3390338559,3390338815,3390339071,3390339327,3390339839,3390340351,3390341119,3390375935,3390377983,3390382079,3390386175,3390390271,3390398463,3390406655,3390406911,3390407167,3390407423,3390407935,3390408191,3390408703,3390409215,3390409727,3390409983,3390410495,3390411007,3390411519,3390412031,3390412287,3390413567,3390413823,3390414079,3390414335,3390414847,3390418943,3390423039,3390423551,3390423807,3390424063,3390426111,3390426367,3390426623,3390428159,3390428415,3390430207,3390437887,3390438143,3390438399,3390438655,3390439423,3390441471,3390443519,3390447359,3390447615,3390450431,3390450687,3390455807,3390472191,3390480383,3390480639,3390480895,3390481151,3390481407,3390481663,3390481919,3390482175,3390482431,3390482687,3390482943,3390483455,3390483711,3390483967,3390484479,3390488575,3390492671,3390496767,3390500863,3390502911,3390504959,3390767103,3390769407,3390769663,3390770175,3390770431,3390770687,3390770943,3390771199,3390775295,3390775807,3390776063,3390776831,3390777343,3390779391,3390782463,3390783487,3390783999,3390784255,3390784511,3390784767,3390785023,3390785535,3390787583,3390788351,3390788607,3390788863,3390789631,3390790399,3390790655,3390791679,3390791935,3390792191,3390792703,3390795263,3390795519,3390796031,3390796287,3390796543,3390797311,3390798847,3390799359,3390799615,3390800383,3390800895,3390801407,3390801919,3390802431,3390802943,3390803199,3390803967,3390804479,3390804991,3390807039,3390808319,3390810367,3390811135,3390812159,3390815487,3390815999,3390819327,3390819839,3390820351,3390820607,3390823423,3390823935,3390824191,3390825983,3390826495,3390827263,3390827519,3390827775,3390828031,3390828287,3390829567,3390830079,3390830591,3390831103,3390831359,3390831615,3390831871,3390832127,3390832639,3390858751,3390859007,3390963711,3390972671,3390972927,3390973695,3390973951,3390977023,3390977535,3390978047,3390978559,3390995711,3390996479,3391068671,3391068927,3391069183,3391074303,3391075583,3391075839,3391082495,3391083519,3391085567,3391086591,3391094783,3391160319,3391161087,3391161855,3391162367,3391176703,3391177215,3391177727,3391183871,3391184639,3391184895,3391186431,3391186943,3391187199,3391187967,3391188223,3391188479,3391188991,3391211519,3391211775,3391212031,3391212543,3391213055,3391213311,3391213567,3391215615,3391215871,3391216895,3391217151,3391217407,3391217663,3391356927,3391358975,3391361023,3391364095,3391364351,3391365887,3391366143,3391367679,3391367935,3391368703,3391368959,3391369215,3391373311,3391375103,3391375359,3391375615,3391376127,3391376895,3391377407,3391378687,3391379199,3391379967,3391380223,3391380991,3391383551,3391384831,3391385087,3391385343,3391386623,3391387135,3391387903,3391388159,3391388671,3391389183,3391389695,3391390207,3391390463,3391390719,3391391743,3391391999,3391392255,3391393023,3391393279,3391395071,3391396863,3391397375,3391397887,3391398399,3391398911,3391399935,3391400703,3391400959,3391401983,3391402495,3391403007,3391403263,3391404031,3391404287,3391404543,3391406079,3391407103,3391407359,3391407615,3391407871,3391408127,3391408639,3391408895,3391409151,3391409663,3391410431,3391410687,3391410943,3391411455,3391411711,3391412223,3391412735,3391413759,3391414271,3391414783,3391415039,3391415551,3391415807,3391416319,3391416575,3391416831,3391419391,3391420159,3391420415,3391426559,3391426815,3391427071,3391427583,3391428095,3391428351,3391428607,3391429119,3391429375,3391430655,3391432703,3391433215,3391433727,3391433983,3391434239,3391434751,3391435775,3391436287,3391436543,3391436799,3391437055,3391437311,3391437567,3391437823,3391439359,3391439871,3391440895,3391441151,3391441407,3391441663,3391441919,3391442431,3391442687,3391442943,3391443967,3391444223,3391444479,3391444991,3391445247,3391446271,3391446527,3391447039,3391447551,3391447807,3391448575,3391448831,3391449087,3391449599,3391451135,3391451391,3391451903,3391452415,3391452927,3391453183,3391453439,3391453695,3391454207,3391454975,3391455231,3391455487,3391455743,3391457279,3391458047,3391458303,3391461375,3391463423,3391463679,3391464191,3391464447,3391465215,3391465727,3391465983,3391466239,3391468287,3391468543,3391469311,3391469567,3391472127,3391472383,3391472895,3391473407,3391473663,3391477759,3391478271,3391478783,3391479039,3391479807,3391482111,3391482879,3391483903,3391484415,3391485951,3391486463,3391486719,3391487743,3391487999,3391489023,3391490047,3391492095,3391496191,3391500287,3391523327,3391523583,3391523839,3391524863,3391525375,3391525887,3391526143,3391528191,3391528447,3391528959,3391529471,3391529983,3391531775,3391532031,3391532799,3391533055,3391533567,3391534079,3391535103,3391553535,3391619071,3391620095,3391620607,3391620863,3391621119,3391622911,3391623167,3391627263,3391651839,3391653375,3391653631,3391654143,3391654911,3391655167,3391655679,3391656447,3391656959,3391657471,3391657727,3391658495,3391658751,3391659263,3391659519,3391660031,3391660543,3391660799,3391662079,3391663103,3391664127,3391668223,3391676415,3391684607,3391686655,3391687167,3391687423,3391688191,3391688703,3391717375,3391717631,3391717887,3391718399,3391718911,3391719167,3391719423,3391720703,3391720959,3391721215,3391721471,3391721727,3391721983,3391722239,3391722495,3391723519,3391725567,3391733759,3391734015,3391734783,3391736831,3391737855,3391741951,3391746047,3391750143,3391751423,3391751679,3391753215,3391753471,3391758335,3391762943,3391763199,3391763455,3391763711,3391764991,3391765247,3391766271,3391766527,3391768319,3391774719,3391776767,3391782911,3391784959,3391785215,3391785471,3391786239,3391788543,3391789055,3391789311,3391789567,3391790079,3391790335,3391791103,3391791359,3391791615,3391791871,3391792127,3391792383,3391793151,3391793663,3391794175,3391794431,3391794687,3391794943,3391795455,3391796735,3391797247,3391797759,3391801855,3391802111,3391802367,3391802623,3391802879,3391803135,3391804927,3391805183,3391805439,3391806207,3391806975,3391807231,3391808767,3391809279,3391809535,3391809791,3391810303,3391810559,3391815679,3391816447,3391816703,3391817727,3391819775,3391823871,3391827967,3391832063,3391832575,3391832831,3391833087,3391834111,3391835135,3391836159,3391836671,3391837183,3391838207,3391838719,3391838975,3391839231,3391840255,3391841279,3391842303,3391843327,3391844351,3391845887,3391846399,3391847423,3391848447,3391852543,3391856639,3391860735,3391860991,3391862783,3391863039,3391864831,3391866879,3391873023,3391873279,3391874047,3391874559,3391874815,3391875071,3391876863,3391877119,3391879167,3391881215,3391885311,3391889407,3391893503,3391894527,3391895551,3391896575,3391897599,3391898111,3391898367,3391898623,3391900159,3391900415,3391901695,3391905791,3391906047,3391906303,3391906815,3391907839,3391909887,3391910911,3391911935,3391913983,3391914239,3391914495,3391915007,3391915519,3391915775,3391916287,3391916543,3391917567,3391918079,3391918591,3391919103,3391920127,3391930367,3391946751,3391947519,3391947775,3391948287,3391948799,3391949311,3391949823,3391950079,3391950335,3391950591,3391954943,3391971327,3391979519,3391979775,3391980031,3391980543,3391983615,3391984639,3391984895,3391985151,3391986687,3391987199,3391987455,3391987711,3391991807,3392012287,3392016383,3392017151,3392017407,3392017919,3392018431,3392020479,3392022527,3392022783,3392028671,3392040959,3392045055,3392045311,3392046079,3392049151,3392053247,3392057343,3392061439,3392069631,3392070399,3392070655,3392073727,3392077823,3392079871,3392086015,3392094207,3392098559,3392098815,3392099327,3392100095,3392100351,3392101887,3392102143,3392102399,3392106495,3392108543,3392109823,3392110079,3392110335,3392110591,3392110847,3392111103,3392111615,3392112127,3392112639,3392113663,3392114175,3392114431,3392114687,3392118783,3392119807,3392120319,3392120831,3392121855,3392122623,3392123391,3392123903,3392124415,3392125695,3392125951,3392126463,3392126975,3392127231,3392127487,3392129023,3392129279,3392130303,3392130559,3392130815,3392131071,3392132863,3392133119,3392133375,3392134143,3392134399,3392134655,3392134911,3392135167,3392143359,3392208895,3392212735,3392212991,3392217087,3392217343,3392217599,3392218367,3392218623,3392219135,3392219391,3392219647,3392221183,3392221951,3392223743,3392224255,3392224767,3392225023,3392225279,3392228351,3392229375,3392230143,3392230399,3392231423,3392231935,3392232191,3392235519,3392236031,3392236287,3392237567,3392238079,3392238335,3392240127,3392240383,3392240639,3392240895,3392244223,3392244735,3392245247,3392245503,3392246015,3392246783,3392247039,3392247295,3392247551,3392247807,3392251391,3392251903,3392252415,3392252927,3392254463,3392254975,3392255487,3392255743,3392255999,3392256511,3392256767,3392257023,3392257279,3392257791,3392258047,3392259327,3392259583,3392261887,3392262143,3392266239,3392270335,3392272383,3392272639,3392272895,3392273407,3392278527,3392282623,3392286719,3392286975,3392287231,3392287743,3392288767,3392293375,3392293887,3392294399,3392295935,3392296191,3392296959,3392297727,3392298751,3392299007,3392300031,3392300287,3392300543,3392300799,3392301055,3392302079,3392302335,3392302847,3392303103,3392303359,3392304127,3392304639,3392304895,3392305151,3392305407,3392305919,3392306175,3392307199,3392309503,3392309759,3392310271,3392313343,3392313855,3392314367,3392314879,3392315135,3392315391,3392316927,3392317183,3392317695,3392318207,3392318463,3392318975,3392319231,3392319487,3392319743,3392320511,3392321023,3392322559,3392323583,3392324607,3392325119,3392325375,3392325631,3392326655,3392326911,3392331007,3392331263,3392331519,3392331775,3392336127,3392337151,3392337919,3392338943,3392339199,3392339455,3392339711,3392339967,3392340991,3392344063,3392348159,3392354303,3392356351,3392364543,3392372735,3392380927,3392385023,3392389119,3392401407,3392403455,3392404479,3392405503,3392406015,3392406527,3392407551,3392409599,3392413695,3392413951,3392414463,3392414719,3392415231,3392415487,3392415743,3392415999,3392416255,3392416767,3392417023,3392417535,3392417791,3392418559,3392418815,3392419071,3392419327,3392419839,3392420351,3392420863,3392421119,3392421375,3392421887,3392438271,3392438527,3392438783,3392439039,3392439551,3392439807,3392440063,3392440319,3392440575,3392440831,3392441343,3392441855,3392442111,3392442367,3392442623,3392442879,3392443391,3392443647,3392443903,3392444159,3392444415,3392444671,3392444927,3392445183,3392445439,3392445695,3392445951,3392446463,3392450559,3392454655,3392462847,3392472063,3392475135,3392479231,3392487423,3392499711,3392503807,3392504575,3392505087,3392505343,3392505855,3392506879,3392507135,3392507391,3392507647,3392507903,3392508927,3392509951,3392510207,3392510463,3392510975,3392511999,3392516095,3392520191,3392524287,3392528383,3392536575,3392602111,3392602879,3392603135,3392609791,3392610303,3392618495,3392626687,3392630783,3392634879,3392635903,3392636927,3392637951,3392638975,3392643071,3392647167,3392651263,3392659455,3392667647,3392668671,3392669695,3392671743,3392675839,3392681983,3392682239,3392682495,3392683007,3392683519,3392684031,3392688127,3392692223,3392700415,3392708607,3392712703,3392716799,3392733183,3392740863,3392741119,3392741375,3392765951,3392782335,3392786431,3392786943,3392787455,3392789503,3392790527,3392794623,3392798975,3392799231,3392799487,3392799743,3392800767,3392802815,3392803839,3392806911,3392815103,3392819199,3392823295,3392824319,3392824575,3392824831,3392825343,3392826367,3392827391,3392828415,3392829439,3392830463,3392830719,3392830975,3392831231,3392831487,3392832511,3392833535,3392835583,3392839679,3392845823,3392847871,3392856063,3392856831,3392857087,3392857343,3392858111,3392858367,3392858623,3392858879,3392859135,3392859647,3392860159,3392860671,3392861183,3392861439,3392861695,3392862207,3392863231,3392864255,3392864767,3392865279,3392866303,3392866559,3392867071,3392867327,3392868351,3392880639,3392888831,3392892927,3392897023,3392901119,3392903167,3392905215,3392909311,3392913407,3392917503,3392918527,3392919551,3392921599,3392921855,3392922623,3392922879,3392923135,3392923391,3392923647,3392924159,3392924671,3392924927,3392925183,3392925695,3392925951,3392926719,3392927231,3392927743,3392927999,3392928255,3392928767,3392929279,3392929535,3392929791,3392931839,3392933887,3392942079,3392944127,3392945151,3392946175,3392951807,3392952063,3392954367,3392956415,3392958463,3392962559,3392963583,3392970751,3392978943,3392983039,3392987135,3392995327,3392995583,3392995839,3392996351,3392997375,3392998399,3392999423,3393003519,3393011711,3393012735,3393013759,3393014783,3393015807,3393016319,3393016831,3393017855,3393018879,3393019903,3393020159,3393020415,3393021439,3393021695,3393021951,3393022463,3393022975,3393023231,3393023487,3393023743,3393023999,3393024511,3393025023,3393025279,3393025535,3393025791,3393026047,3393026559,3393026815,3393027071,3393027839,3393028095,3393044479,3393048575,3393052671,3393060863,3393062399,3393062911,3393069055,3393077247,3393085439,3393089535,3393090559,3393091071,3393093631,3393101823,3393110015,3393118207,3393122303,3393123327,3393123583,3393123839,3393124095,3393124351,3393125631,3393125887,3393126143,3393126399,3393131263,3393131519,3393134591,3393142783,3393146879,3393150975,3393159167,3393167359,3393175551,3393183743,3393187839,3393189887,3393190911,3393191167,3393191423,3393191935,3393198335,3393198591,3393206271,3393206527,3393208063,3393208831,3393214207,3393214463,3393217535,3393217791,3393218303,3393218559,3393219839,3393220095,3393220351,3393220607,3393222911,3393223167,3393223423,3393223679,3393225471,3393225727,3393227007,3393227263,3393227519,3393227775,3393231871,3393232127,3393236479,3393236735,3393237759,3393238015,3393241087,3393241343,3393245695,3393245951,3393251839,3393252095,3393253375,3393253631,3393257471,3393260031,3393260543,3393261567,3393265663,3393268223,3393268479,3393273855,3393282047,3393286143,3393290239,3393298431,3393300479,3393302527,3393306623,3393314815,3393318911,3393320959,3393323007,3393354751,3393355263,3393355775,3393363967,3393364991,3393366015,3393367039,3393369087,3393371135,3393372159,3393374975,3393375743,3393376255,3393388543,3393389567,3393390591,3393392639,3393396735,3393400831,3393404927,3393421311,3393470463,3393474559,3393478655,3393486847,3393495039,3393499135,3393502975,3393503231,3393507327,3393511423,3393519615,3393520639,3393521151,3393521663,3393523711,3393524223,3393524479,3393527807,3393535999,3393544191,3393548287,3393552383,3393553407,3393554431,3393556479,3393560575,3393568767,3393572863,3393576959,3393581055,3393585151,3393593343,3393597439,3393601535,3393609727,3393613823,3393617919,3393618431,3393618687,3393618943,3393619455,3393620223,3393620479,3393620735,3393620991,3393621247,3393622015,3393626111,3393628159,3393628415,3393630207,3393634303,3393638399,3393650687,3393658879,3393662975,3393675263,3393679359,3393683455,3393689599,3393691647,3393695743,3393696255,3393696511,3393696767,3393697279,3393697791,3393698303,3393698559,3393698815,3393699327,3393699839,3393717759,3393718015,3393724415,3393726463,3393728511,3393736703,3393740799,3393741311,3393741567,3393741823,3393742079,3393742335,3393743103,3393743359,3393743615,3393743871,3393744895,3393748991,3393765375,3393773567,3393774591,3393775615,3393777663,3393779711,3393780735,3393781759,3393782783,3393783039,3393783295,3393783551,3393783807,3393785855,3393788927,3393789439,3393789951,3393798143,3393806335,3393814527,3393815551,3393816575,3393818623,3393822719,3393830911,3393835007,3393839103,3393843199,3393847295,3393848319,3393849343,3393851391,3393855487,3393855743,3393855999,3393856255,3393856511,3393856767,3393857023,3393857535,3393858047,3393858303,3393858559,3393858815,3393859071,3393859327,3393859583,3393859839,3393860351,3393860607,3393860863,3393861375,3393861631,3393861887,3393862143,3393862655,3393862911,3393863167,3393863679,3393865727,3393867775,3393871871,3393872383,3393873151,3393873407,3393874943,3393875199,3393875455,3393875967,3393876991,3393878015,3393879039,3393879551,3393880063,3393896447,3393906687,3393907711,3393908735,3393910783,3393911807,3393912063,3393912319,3393912831,3393913855,3393914879,3393916927,3393921023,3393929215,3393937407,3393941503,3393945599,3393961983,3393963775,3393964031,3393966079,3393970175,3393974271,3393974527,3393974783,3393975039,3393976319,3393977343,3393978367,3393995263,3393995519,3393995775,3393996031,3393999615,3393999871,3394000127,3394000383,3394000639,3394005759,3394006015,3394011135,3394027519,3394035711,3394039807,3394040063,3394040319,3394040575,3394040831,3394041087,3394041343,3394041599,3394041855,3394042879,3394043903,3394047999,3394048255,3394060287,3394064383,3394066431,3394067455,3394068479,3394076671,3394078719,3394078975,3394079231,3394079743,3394109439,3394111487,3394113535,3394116607,3394117119,3394117631,3394121727,3394125823,3394142207,3394150399,3394150655,3394150911,3394151167,3394151423,3394151679,3394151935,3394152191,3394152447,3394152703,3394152959,3394153215,3394153471,3394153727,3394153983,3394154239,3394154495,3394158591,3394162687,3394166783,3394168831,3394170879,3394172927,3394173695,3394173951,3394174975,3394179071,3394181119,3394183167,3394191359,3394215935,3394216703,3394216959,3394217215,3394217983,3394220031,3394222079,3394224127,3394224383,3394224639,3394225151,3394225407,3394225663,3394226175,3394226431,3394226943,3394227199,3394228223,3394228479,3394228735,3394228991,3394229503,3394230015,3394230271,3394230527,3394230783,3394231039,3394231295,3394232319,3394234367,3394236415,3394238463,3394239487,3394240511,3394244095,3394244607,3394248703,3394252799,3394256895,3394265087,3394267135,3394269183,3394273279,3394277375,3394279423,3394281471,3394285567,3394289663,3394293759,3394297855,3394306047,3394307071,3394308095,3394310143,3394314239,3394322431,3394326527,3394330623,3394338815,3394347007,3394351103,3394355199,3394359295,3394363391,3394437119,3394438143,3394441215,3394453503,3394461695,3394465791,3394467839,3394468863,3394469887,3394478079,3394482175,3394484223,3394486271,3394494463,3394498559,3394500607,3394501631,3394507263,3394507775,3394508287,3394508543,3394508799,3394510847,3394514943,3394519039,3394521087,3394523135,3394527231,3394535423,3394537983,3394538239,3394539007,3394539263,3394544383,3394544639,3394548223,3394548479,3394555647,3394555903,3394558719,3394559487,3394559999,3394560255,3394561023,3394561279,3394564863,3394565375,3394565631,3394565887,3394621439,3394625535,3394629631,3394631679,3394633727,3394634751,3394635775,3394637823,3394639871,3394641919,3394648063,3394650111,3394658303,3394662399,3394664447,3394666495,3394667007,3394668031,3394668287,3394668543,3394668799,3394669823,3394670591,3394670847,3394671103,3394671359,3394671615,3394672127,3394672639,3394672895,3394673919,3394674687,3394675711,3394676991,3394677503,3394677759,3394678271,3394678527,3394679551,3394679807,3394680319,3394680575,3394681087,3394681343,3394681599,3394681855,3394682367,3394682623,3394682879,3394686975,3394689023,3394691071,3394697215,3394697471,3394697727,3394697983,3394698239,3394699263,3394700287,3394707455,3394715647,3394719743,3394723839,3394724863,3394725887,3394732031,3394740223,3394744319,3394752511,3394753535,3394754559,3394756607,3394760703,3394760959,3394764287,3394764543,3394764799,3394765311,3394765567,3394765823,3394766335,3394766591,3394768639,3394768895,3394769151,3394769407,3394769919,3394770175,3394770431,3394770687,3394770943,3394772991,3394774015,3394774783,3394775039,3394776063,3394777087,3394781183,3394789375,3394791167,3394792959,3394796287,3394796543,3394797567,3394813951,3394815999,3394818047,3394830335,3394831359,3394832383,3394834431,3394834687,3394834943,3394835199,3394835711,3394835967,3394836479,3394838527,3394846719,3394850815,3394854911,3394855935,3394856447,3394856959,3394857215,3394857983,3394859007,3394860031,3394860543,3394860799,3394861055,3394861311,3394862079,3394863103,3394871295,3394879487,3394883583,3394887679,3394889727,3394891775,3394893823,3394894847,3394895871,3394896895,3394897919,3394899967,3394904063,3394904319,3394904575,3394905087,3394905343,3394905599,3394906111,3394906367,3394906623,3394907135,3394908159,3394910207,3394912255,3394920447,3394928639,3394936831,3394940927,3394945023,3394945279,3394945535,3394946047,3394946303,3394946559,3394947071,3394948095,3394948351,3394948607,3394949119,3394953215,3394957311,3394959359,3394959615,3394959871,3394960127,3394960383,3394961407,3394962431,3394963455,3394965503,3394967551,3394969343,3394969599,3394970623,3394971647,3394972671,3394973695,3394977791,3394985983,3394990079,3394994175,3394995199,3394998271,3395002367,3395006463,3395010559,3395014655,3395018751,3395026943,3395027967,3395028991,3395031039,3395031807,3395032063,3395032319,3395032575,3395035135,3395039231,3395043327,3395059711,3395067903,3395076095,3395078143,3395080191,3395082239,3395084287,3395088383,3395091455,3395092479,3395093503,3395094015,3395094527,3395096575,3395104767,3395108863,3395117055,3395121151,3395129343,3395131391,3395131647,3395131903,3395132159,3395132415,3395133439,3395141631,3395144959,3395145215,3395145727,3395149823,3395155967,3395156991,3395158015,3395158271,3395158527,3395166207,3395170303,3395174399,3395174911,3395175167,3395175423,3395175679,3395175935,3395176191,3395176447,3395176703,3395176959,3395177215,3395177471,3395177983,3395178495,3395178751,3395179007,3395179263,3395179519,3395180031,3395180287,3395180543,3395181055,3395181567,3395182591,3395190783,3395198975,3395199999,3395200511,3395200767,3395201023,3395202047,3395202815,3395215359,3395219455,3395223551,3395224575,3395224831,3395231743,3395239935,3395256319,3395262207,3395262463,3395264511,3395272703,3395276799,3395280895,3395284991,3395287039,3395287551,3395287807,3395288063,3395289087,3395379199,3395387391,3396995071,3396997119,3396999167,3397001215,3397003263,3397005311,3397009407,3397017599,3397021695,3397025791,3397026047,3397026303,3397026815,3397027071,3397027327,3397027839,3397029887,3397033983,3397038079,3397058559,3397066751,3397070847,3397074943,3397083135,3397087231,3397088255,3397090303,3397091327,3397099519,3397103615,3397105663,3397107711,3397115903,3397119999,3397124095,3397128191,3397131263,3397132287,3397136383,3397140479,3397148671,3397156863,3397165055,3397173247,3397173503,3397173759,3397174015,3397174271,3397175295,3397175807,3397176063,3397176319,3397176575,3397176831,3397177343,3397181439,3397185535,3397187583,3397188607,3397189631,3397201919,3397206015,3397210111,3397211135,3397211647,3397212159,3397212671,3397213183,3397213439,3397213695,3397214207,3397215231,3397215743,3397216255,3397216767,3397217023,3397217279,3397217535,3397217791,3397218047,3397218303,3397222399,3397230591,3397234687,3397238783,3397255167,3397263359,3397267455,3397271551,3397275647,3397277695,3397279743,3397283327,3397283839,3397285887,3397287935,3397304319,3397308415,3397312511,3397320703,3397322751,3397323775,3397328895,3397330943,3397337087,3397338367,3397338623,3397339135,3397339391,3397339903,3397340927,3397341183,3397345279,3397349375,3397361663,3397363711,3397365759,3397369855,3397373951,3397374463,3397374975,3397386239,3397394431,3397402623,3397406207,3397406463,3397410815,3397411327,3397411583,3397411839,3397412351,3397412863,3397413375,3397413631,3397413887,3397414399,3397414911,3397419007,3397419519,3397421311,3397427199,3397443583,3397451775,3397468159,3397492735,3397496831,3397498879,3397500927,3397501951,3397503999,3397505023,3397505279,3397506559,3397506815,3397507071,3397507583,3397507839,3397508095,3397509119,3397510143,3397511167,3397512191,3397512447,3397512703,3397512959,3397513727,3397514239,3397515263,3397516287,3397516543,3397516799,3397517055,3397517311,3397525503,3397526527,3397527039,3397527295,3397527551,3397528575,3397530623,3397531647,3397532671,3397533695,3397566463,3397569279,3397569535,3397572095,3397572351,3397572863,3397573119,3397574655,3397582847,3397584895,3397586943,3397588991,3397591039,3397595135,3397599231,3397603327,3397605375,3397607423,3397623807,3397631999,3397636095,3397640191,3397648383,3397713919,3397715967,3397718015,3397722111,3397726207,3397730303,3397732351,3397733375,3397734399,3397735423,3397736447,3397736703,3397736959,3397737471,3397738495,3397742591,3397746687,3397763071,3397771263,3397776895,3397777407,3397779455,3397781503,3397783551,3397785599,3397787647,3397791999,3397792767,3397793023,3397793279,3397793535,3397793791,3397794303,3397794559,3397794815,3397812223,3397816319,3397832703,3397836799,3397844991,3397845247,3397845503,3397845759,3397846015,3397846271,3397847551,3397847807,3397848063,3397849087,3397849599,3397849855,3397850367,3397850879,3397852415,3397852671,3397853695,3397853951,3397854207,3397854463,3397854719,3397857535,3397857791,3397858559,3397861887,3397862399,3397865215,3397865471,3397867775,3397868031,3397869055,3397869311,3397871103,3397871359,3397871871,3397872127,3397872383,3397872639,3397873407,3397873663,3397873919,3397874687,3397875711,3397876735,3397877759,3397878527,3397878783,3397881855,3397882111,3397882367,3397882623,3397887743,3397887999,3397889023,3397889279,3397891071,3397892095,3397892351,3397892607,3397894143,3397894399,3397894911,3397895423,3397895679,3397897215,3397897727,3397900799,3397901311,3397903103,3397903359,3397904127,3397904383,3397905407,3397905919,3397906175,3397906431,3397906943,3397907455,3397908479,3397908991,3397909503,3397910015,3397910527,3397918719,3397922815,3397926911,3397927935,3397928959,3397929983,3397931007,3397932031,3397933055,3397934079,3397935103,3397939199,3397951487,3397959679,3397963775,3397971967,3397974015,3397975039,3397976063,3397984255,3397992447,3398004735,3398008831,3398017023,3398021119,3398023167,3398025215,3398029311,3398033407,3398033663,3398033919,3398034943,3398035199,3398035455,3398037503,3398039551,3398041599,3398062079,3398066175,3398074367,3398090751,3398098943,3398107135,3398156287,3398164479,3398165503,3398166015,3398168063,3398168575,3398172671,3398180863,3398189055,3398205439,3398208511,3398213631,3398221823,3398230015,3398238207,3398279167,3398287359,3398291455,3398295551,3398303743,3398304767,3398305791,3398307839,3398311935,3398320127,3398336511,3398340607,3398352895,3398361087,3398369279,3398369791,3398370303,3398371327,3398373375,3398381567,3398383615,3398385663,3398393855,3398394879,3398396927,3398397951,3398402047,3398418431,3398434815,3398467583,3398475775,3398481919,3398483967,3398485247,3398485503,3398486015,3398487039,3398488063,3398492159,3398500351,3398504447,3398508543,3398565887,3398567423,3398569983,3398572031,3398574079,3398582271,3398590463,3398598655,3398606847,3398610943,3398612991,3398613759,3398614015,3398615039,3398616063,3398619135,3398621183,3398623231,3398631423,3398634751,3398635775,3398636031,3398636799,3398637311,3398637823,3398638847,3398639359,3398639615,3398640127,3398640895,3398641663,3398642175,3398642943,3398643199,3398644223,3398644735,3398645247,3398645503,3398646783,3398647039,3398647807,3398655999,3398668287,3398672383,3398680575,3398684671,3398688767,3398705151,3398709247,3398710271,3398713343,3398729727,3398737919,3398742015,3398746111,3398750207,3398754303,3398758399,3398768639,3398770687,3398778879,3398787071,3398795263,3398803455,3398811647,3398819839,3398828031,3398829055,3398830079,3398831103,3398831359,3398831615,3398831871,3398832127,3398840319,3398842367,3398843391,3398844415,3398851071,3398851327,3398852607,3398860799,3398873087,3398877183,3398881279,3398885375,3398894591,3398895615,3398897663,3398901759,3398902015,3398902271,3398902783,3398903807,3398905855,3398909951,3398918143,3398926335,3398934527,3398938623,3398942719,3398959103,3398962175,3398962431,3398975487,3398983679,3398991871,3399004159,3399008255,3399012351,3399016447,3399024639,3399025663,3399026175,3399026431,3399026687,3399028735,3399032831,3399036927,3399041023,3399045119,3399047167,3399057407,3399065599,3399068159,3399068415,3399077887,3399081983,3399106559,3399122943,3399131135,3399135231,3399137279,3399138303,3399138815,3399139327,3399147519,3399155711,3399196671,3399200767,3399201279,3399201791,3399203327,3399203839,3399221247,3399286783,3399303167,3399311359,3399319551,3399331839,3399332351,3399332863,3399333375,3399333887,3399335423,3399335935,3399344127,3399352319,3399389183,3399393279,3399401471,3399409663,3399413759,3399414015,3399414271,3399414527,3399414783,3399416319,3399416831,3399417087,3399417855,3399450623,3399467007,3399483391,3399495679,3399499775,3399507967,3399512063,3399514111,3399515135,3399515647,3399516159,3399517183,3399518207,3399519231,3399520255,3399521279,3399522303,3399523327,3399524351,3399528447,3399528703,3399544575,3399544831,3399546879,3399547135,3399548415,3399548671,3399548927,3399557119,3399565311,3399581695,3399583487,3399583743,3399584255,3399584511,3399587839,3399588095,3399589631,3399589887,3399593983,3399598079,3399614463,3399622655,3399626751,3399630847,3399631615,3399631871,3399632895,3399633407,3399633663,3399633919,3399634943,3399639295,3399639551,3399639807,3399640063,3399640319,3399640575,3399640831,3399641087,3399641343,3399641599,3399642111,3399642367,3399642623,3399643135,3399655423,3399659519,3399661567,3399662591,3399663615,3399671807,3399679999,3399680255,3399680511,3399681535,3399681791,3399682047,3399688191,3399696383,3399712767,3399720959,3399729151,3399745535,3399749631,3399751679,3399752191,3399752447,3399752703,3399753727,3399761919,3399770111,3399778303,3399786495,3399794687,3399798783,3399800831,3399802879,3399811071,3399819263,3399823359,3399825407,3399826431,3399826943,3399827455,3399828479,3399828991,3399829503,3399831551,3399835647,3399838719,3399839231,3399839487,3399839743,3399841791,3399842815,3399843839,3399852031,3399856127,3399860223,3399864319,3399868415,3399872255,3399873023,3399873279,3399873535,3399873791,3399874047,3399875327,3399876607,3399917567,3399921663,3399923711,3399923967,3399924223,3399924735,3399925759,3399933951,3399942143,3399944959,3399945215,3399945727,3399946239,3399947519,3399947775,3399948031,3399948287,3399950079,3399950335,3399954943,3399955711,3399956223,3399956479,3399956735,3399956991,3399957247,3399957503,3399958015,3399958527,3399961087,3399961343,3399961599,3399962879,3399963135,3399963903,3399964159,3399965951,3399966463,3399967487,3399967743,3399967999,3399970303,3399970815,3399974911,3399979007,3399979519,3399979775,3399980287,3399980543,3399982079,3399982335,3399983103,3399983359,3399983615,3399991295,3399995391,3399999487,3400000255,3400000511,3400001023,3400001535,3400002047,3400002559,3400004607,3400005631,3400005887,3400006143,3400006399,3400006655,3400007167,3400007423,3400007679,3400024063,3400028159,3400029183,3400031231,3400031743,3400031999,3400032255,3400040447,3400044543,3400045567,3400046591,3400047615,3400048639,3400056831,3400060927,3400062975,3400065023,3400073215,3400077311,3400079359,3400081407,3400081919,3400082175,3400089343,3400089599,3400097791,3400105983,3400114175,3400118271,3400120319,3400122367,3400130559,3400133887,3400134143,3400138751,3400146943,3400151039,3400155135,3400159231,3400161279,3400163327,3400167423,3400171519,3400179711,3400183807,3400187903,3400188927,3400189951,3400191999,3400194047,3400204287,3400212479,3400220671,3400224767,3400228863,3400232959,3400245247,3400253439,3400257535,3400259583,3400261631,3400263679,3400263935,3400264191,3400264447,3400264703,3400265215,3400265471,3400265727,3400267775,3400268799,3400269823,3400270847,3400271359,3400271615,3400271871,3400273919,3400274943,3400275967,3400278015,3400286207,3400294399,3400310783,3400335359,3400336383,3400336639,3400336895,3400337151,3400337407,3400339455,3400341503,3400341759,3400342015,3400343551,3400351743,3400359935,3400364031,3400365055,3400366079,3400367103,3400368127,3400388607,3400392703,3400400895,3400401919,3400402175,3400402431,3400402943,3400404991,3400409087,3400413183,3400417279,3400421375,3400421631,3400423423,3400424447,3400425471,3400429567,3400431615,3400431871,3400432127,3400432639,3400433663,3400434431,3400434943,3400435199,3400435711,3400436479,3400436735,3400436991,3400437247,3400437503,3400437759,3400438015,3400438271,3400438527,3400438783,3400439039,3400439295,3400439551,3400439807,3400440063,3400440319,3400440575,3400440831,3400441087,3400441343,3400441855,3400445951,3400446463,3400450047,3400458239,3400466431,3400466687,3400470015,3400470271,3400471807,3400472319,3400475903,3400476159,3400476415,3400476927,3400477439,3400477695,3400478719,3400478975,3400480255,3400480511,3400485631,3400485887,3400486911,3400487167,3400488191,3400488959,3400489471,3400489727,3400491007,3400491263,3400495103,3400495359,3400496383,3400496639,3400496895,3400497151,3400497407,3400497663,3400497919,3400498175,3400499199,3400503295,3400507391,3400507903,3400508159,3400508415,3400508671,3400510719,3400511487,3400511743,3400512255,3400512511,3400512767,3400513023,3400513279,3400514303,3400514559,3400515583,3400531967,3400532991,3400534015,3400535039,3400535551,3400536063,3400548351,3400581119,3400589311,3400597503,3400605695,3400607743,3400608255,3400608767,3400609791,3400630271,3400646655,3400646911,3400647679,3400648191,3400648703,3400648959,3400649727,3400649983,3400650495,3400650751,3400651775,3400652799,3400653055,3400654847,3400663039,3400683519,3400691711,3400695807,3400728575,3400736767,3400744959,3400753151,3400761343,3400763391,3400764415,3400765439,3400766463,3400767487,3400768511,3400769535,3400773631,3400775679,3400777727,3400790015,3400794111,3400802303,3400806399,3400808447,3400810495,3400826879,3400835071,3400839167,3400847359,3400849407,3400851455,3400859647,3400860671,3400861695,3400862719,3400864767,3400865791,3400866815,3400867839,3400876031,3400880127,3400882175,3400884223,3400888319,3400892415,3400894463,3400894719,3400897535,3400897791,3400898815,3400899071,3400904959,3400905215,3400907775,3400908031,3400911871,3400912127,3400923647,3400924159,3400925183,3400933375,3400937471,3400941567,3400945663,3400949759,3400957951,3400966143,3400974335,3400982527,3400990719,3400998911,3401003007,3401007103,3401007615,3401007871,3401008127,3401008383,3401008895,3401009407,3401009663,3401010175,3401010431,3401010687,3401011199,3401015295,3401023487,3401056255,3401383935,3401400319,3401404415,3401408511,3401416703,3401416959,3401418751,3401420799,3401424895,3401428991,3401431039,3401433087,3401441279,3401449471,3401515007,3401515263,3401515519,3401516031,3401519103,3401523199,3401527295,3401529343,3401530367,3401531391,3401532415,3401539583,3401543679,3401545727,3401547775,3401580543,3402629119,3403303423,3403303679,3403312639,3403312895,3403340287,3403340543,3403345919,3403346175,3403687935,3403688191,3404123903,3404124159,3404125695,3404126207,3404126463,3404126719,3404202751,3404203007,3404376575,3404376831,3404377599,3404377855,3404665599,3404665855,3404672255,3404672511,3404846079,3404846335,3404846591,3404846847,3404847103,3404847359,3404848383,3404848639,3404848895,3404849151,3404850431,3404850687,3404852479,3404852735,3404853503,3404853759,3404856319,3404856575,3405774847,3405775103,3405775871,3405776895,3405777407,3405777919,3405778431,3405779455,3405779711,3405779967,3405780991,3405781247,3405784063,3405785087,3405785599,3405786111,3405786367,3405787135,3405791231,3405792255,3405793279,3405793535,3405795583,3405796351,3405797887,3405798399,3405799423,3405799935,3405800447,3405800959,3405801215,3405801471,3405803519,3405804031,3405804543,3405806079,3405806335,3405807615,3405807871,3405808127,3405809663,3405809919,3405810175,3405810431,3405810687,3405810943,3405811199,3405811455,3405811711,3405811967,3405812223,3405812479,3405812735,3405812991,3405813247,3405814015,3405814271,3405814527,3405815807,3405817855,3405819903,3405820159,3405820415,3405820671,3405821951,3405832191,3405832447,3405833215,3405839359,3405840383,3405841151,3405841407,3405842431,3405842687,3405843199,3405844735,3405844991,3405845247,3405845503,3405846015,3405846527,3405846783,3405847039,3405847551,3405848319,3405848575,3405857023,3405857791,3405858303,3405858815,3405859839,3405860351,3405860863,3405862911,3405863423,3405863679,3405865215,3405867007,3405868031,3405868287,3405868543,3405869055,3405873151,3405894399,3405894655,3405905151,3405905663,3405905919,3405922303,3405924351,3405924607,3405924863,3405925119,3405934591,3405936639,3405938175,3405938687,3405939199,3405939711,3405941759,3405942015,3405942783,3405943039,3405943295,3405943807,3405944063,3405944319,3405944575,3405944831,3405946367,3405946879,3405948927,3405950975,3405951999,3405952511,3405956095,3405956607,3405956863,3405957119,3405959167,3405959423,3405959679,3405959935,3405960191,3405960703,3405961215,3405963519,3405963775,3405964287,3405964543,3405964799,3405966335,3405966847,3405967359,3405988863,3405989119,3405989887,3405990399,3405990655,3405990911,3405991167,3405991423,3405991935,3405993983,3405994495,3405995007,3405996031,3405997055,3405998079,3405998335,3405998591,3405999103,3406000127,3406002431,3406002687,3406002943,3406003199,3406004991,3406005247,3406005503,3406005759,3406006015,3406006271,3406006527,3406007039,3406007295,3406007807,3406008063,3406008319,3406013439,3406013951,3406069759,3406070783,3406071551,3406071807,3406073855,3406075391,3406075647,3406076927,3406077951,3406078207,3406078719,3406078975,3406081535,3406082047,3406083071,3406083327,3406084095,3406084351,3406084607,3406084863,3406085119,3406089471,3406089727,3406090239,3406091263,3406094079,3406094335,3406095103,3406095359,3406095871,3406096383,3406103039,3406103551,3406104063,3406104319,3406105087,3406105343,3406105599,3406105855,3406106111,3406106623,3406107391,3406107903,3406108415,3406108671,3406108927,3406109183,3406109695,3406109951,3406110719,3406113791,3406114047,3406114303,3406114815,3406115327,3406115839,3406117375,3406117887,3406118399,3406118655,3406120959,3406121983,3406122239,3406122495,3406123007,3406131455,3406131711,3406132223,3406132735,3406132991,3406133247,3406133503,3406133759,3406134271,3406134783,3406135039,3406145535,3406146559,3406146815,3406147583,3406148607,3406149375,3406149631,3406149887,3406150399,3406150655,3406151423,3406151679,3406152447,3406152703,3406153727,3406155775,3406156287,3406156799,3406157311,3406157823,3406158335,3406158847,3406164991,3406165247,3406165503,3406166015,3406167039,3406200831,3406201343,3406201599,3406201855,3406202111,3406202623,3406202879,3406203135,3406203391,3406203903,3406204159,3406204415,3406204671,3406205951,3406206463,3406206975,3406207999,3406208255,3406208511,3406208767,3406209023,3406221311,3406222335,3406225407,3406229503,3406229759,3406230015,3406230271,3406231295,3406231551,3406232063,3406233087,3406233343,3406266623,3406266879,3406268415,3406268927,3406269439,3406270463,3406271231,3406271487,3406271999,3406272511,3406272767,3406273023,3406273279,3406273535,3406274047,3406274303,3406274559,3406276607,3406276863,3406277375,3406277631,3406278143,3406278655,3406282751,3406283263,3406284287,3406284543,3406284799,3406285055,3406286591,3406286847,3406290943,3406291711,3406291967,3406292991,3406294015,3406295039,3406299135,3406299391,3406299647,3406299903,3406300159,3406301183,3406301439,3406301951,3406302207,3406304255,3406304767,3406305023,3406305279,3406307327,3406315519,3406316543,3406316799,3406317055,3406317311,3406319615,3406320127,3406320383,3406321151,3406321663,3406322175,3406322431,3406322687,3406323199,3406323455,3406323711,3406326271,3406326783,3406327039,3406327295,3406327807,3406328063,3406328319,3406328575,3406328831,3406329343,3406329855,3406330879,3406331391,3406331647,3406331903,3406340607,3406340863,3406341119,3406341375,3406341631,3406342143,3406342399,3406342655,3406343167,3406343423,3406343679,3406344191,3406346239,3406346495,3406346751,3406347263,3406347775,3406348543,3406349055,3406349567,3406350335,3406350591,3406350847,3406351103,3406351359,3406351615,3406351871,3406352383,3406352639,3406354431,3406354687,3406354943,3406355455,3406355711,3406356223,3406364671,3406372863,3406373119,3406373887,3406374399,3406379007,3406379263,3406379519,3406380031,3406380543,3406380799,3406381055,3406381311,3406381567,3406382079,3406382591,3406383359,3406383871,3406384639,3406385151,3406389247,3406390783,3406391039,3406391807,3406392319,3406392575,3406392831,3406393087,3406403071,3406403327,3406404863,3406405119,3406405375,3406405631,3406409727,3406410239,3406410495,3406410751,3406411007,3406411263,3406411775,3406412799,3406413311,3406414591,3406415871,3406417919,3406418175,3406418431,3406418943,3406419967,3406420479,3406420735,3406420991,3406422015,3406423039,3406424063,3406430719,3406430975,3406434303,3406436351,3406438911,3406439167,3406439423,3406444543,3406444799,3406445055,3406445311,3406449151,3406449663,3406450431,3406451711,3406452991,3406454527,3406454783,3406455295,3406455807,3406456319,3406457087,3406457343,3406457855,3406458367,3406460927,3406461183,3406461695,3406461951,3406462207,3406462463,3406462975,3406512383,3406512639,3406513663,3406513919,3406514175,3406514431,3406514687,3406514943,3406515199,3406516223,3406516735,3406516991,3406517247,3406518271,3406518783,3406519039,3406519295,3406519807,3406520319,3406520575,3406521343,3406522367,3406523647,3406523903,3406524415,3406524927,3406525183,3406525695,3406525951,3406526463,3406526719,3406526975,3406527231,3406527743,3406527999,3406528255,3406528511,3406528767,3406529023,3406529279,3406529535,3406530047,3406530303,3406530559,3406531583,3406531839,3406532607,3406540799,3406541055,3406541823,3406542847,3406543103,3406543359,3406543615,3406544895,3406548991,3406550015,3406551039,3406551551,3406551807,3406552063,3406552319,3406553087,3406565375,3406565631,3406566143,3406566399,3406566911,3406567167,3406567423,3406567679,3406568447,3406568959,3406569215,3406570751,3406571007,3406572287,3406572799,3406573055,3406573567,3406575103,3406575871,3406576127,3406576639,3406577919,3406578431,3406578943,3406579199,3406579711,3406583295,3406583551,3406583807,3406584575,3406584831,3406585599,3406585855,3406586111,3406586367,3406586879,3406587391,3406587647,3406587903,3406589951,3406590463,3406590719,3406590975,3406591231,3406591487,3406591743,3406591999,3406592511,3406593023,3406594047,3406594559,3406594815,3406596351,3406596607,3406596863,3406604287,3406604799,3406605311,3406605823,3406606335,3406610431,3406611455,3406612479,3406614527,3406615295,3406615551,3406617087,3406617343,3406617599,3406617855,3406618111,3406618623,3406619135,3406619391,3406619647,3406620671,3406621183,3406622719,3406623743,3406625023,3406625279,3406625791,3406626815,3406631167,3406631423,3406631679,3406631935,3406632959,3406633215,3406635007,3406635263,3406635519,3406635775,3406636799,3406637055,3406637311,3406637567,3406637823,3406638079,3406638591,3406643199,3406645247,3406645759,3406646783,3406647295,3406649343,3406649855,3406650367,3406651391,3406663935,3406664191,3406664447,3406667775,3406668031,3406668287,3406668799,3406669567,3406669823,3406670847,3406671103,3406671359,3406671615,3406675967,3406683135,3406683647,3406683903,3406684159,3406684671,3406684927,3406685183,3406685439,3406685951,3406686463,3406686719,3406687231,3406687487,3406688255,3406696447,3406696959,3406697215,3406697471,3406697727,3406698495,3406699519,3406699775,3406700543,3406700799,3406701055,3406701311,3406705151,3406705663,3406706431,3406706687,3406706943,3406707455,3406707967,3406708479,3406708735,3406717951,3406718719,3406718975,3406719231,3406719487,3406719743,3406719999,3406720255,3406720767,3406721023,3406721535,3406722047,3406722559,3406722815,3406724095,3406733823,3406734079,3406734591,3406734847,3406735103,3406735359,3406737407,3406737663,3406738431,3406738687,3406739199,3406739455,3406740991,3406741503,3406741759,3406742015,3406742527,3406742783,3406743039,3406743295,3406743551,3406743807,3406744063,3406744319,3406744831,3406745087,3406745855,3406746111,3406746623,3406746879,3406747135,3406747391,3406747647,3406751487,3406751743,3406754815,3406755071,3406755327,3406755583,3406757887,3406761983,3406763007,3406763775,3406766079,3406774783,3406775295,3406780159,3406780927,3406781439,3406781695,3406782207,3406784767,3406785023,3406785535,3406785791,3406786047,3406786303,3406786559,3406787839,3406788351,3406788607,3406789119,3406789375,3406789631,3406790655,3406790911,3406791167,3406791679,3406792191,3406792703,3406793471,3406793727,3406793983,3406794495,3406794751,3406795775,3406796031,3406796287,3406796543,3406796799,3406797311,3406797567,3406797823,3406798847,3406802431,3406802687,3406802943,3406815231,3406815743,3406815999,3406816255,3406817279,3406819839,3406820607,3406820863,3406821119,3406821375,3406821631,3406821887,3406822911,3406823167,3406823423,3406825471,3406825727,3406825983,3406826239,3406826495,3406827007,3406827519,3406829567,3406830079,3406830335,3406830591,3406832127,3406832383,3406832639,3406832895,3406833151,3406833407,3406835711,3406835967,3406836735,3406837247,3406837759,3406838271,3406838527,3406838783,3406839295,3406839551,3406839807,3406857471,3406857727,3406857983,3406860287,3406864639,3406865151,3406865663,3406865919,3406866175,3406866687,3406866943,3406867199,3406867711,3406867967,3406868223,3406868991,3406869503,3406870527,3406870783,3406871039,3406871551,3406873599,3406875903,3406876159,3406878719,3406881023,3406881279,3406881535,3406881791,3406882047,3406883583,3406883839,3406884095,3406884351,3406884607,3406884863,3406885119,3406885375,3406886143,3406886399,3406886911,3406889215,3406889471,3406889727,3406889983,3406890239,3406890751,3406891263,3406891519,3406892287,3406893055,3406893567,3406893823,3406894079,3406894335,3406894591,3406894847,3406895103,3406895615,3406896127,3406896383,3406896639,3406896895,3406897151,3406898687,3406898943,3406899199,3406901247,3406902271,3406902527,3406902783,3406903295,3406903551,3406903807,3406905343,3406905599,3406905855,3406906111,3406906879,3406907135,3406907391,3406907903,3406908415,3406909439,3406909695,3406909951,3406910207,3406910463,3406910719,3406910975,3406911231,3406911487,3406911999,3406912767,3406913023,3406913279,3406915583,3406917631,3406918143,3406918655,3406919167,3406919679,3406919935,3406920191,3406920447,3406920703,3406921215,3406921471,3406923775,3406924031,3406924287,3406927871,3406928127,3406928639,3406928895,3406929919,3406930431,3406930943,3406931199,3406934015,3406934783,3406935039,3406936063,3406936575,3406936831,3406937087,3406937343,3406937599,3406938111,3406938367,3406938623,3406938879,3406940159,3406942207,3406943231,3406946303,3406946559,3406946815,3406947071,3406947839,3406948095,3406948351,3406948607,3406948863,3406949631,3406949887,3406950143,3406950399,3406951423,3406951935,3406952191,3406952447,3406952959,3406953215,3406954239,3406954495,3406955007,3406955775,3406956287,3406956543,3406957311,3406959103,3406959615,3406960127,3406960383,3406960639,3406961151,3406961407,3406961663,3406961919,3406962175,3406962431,3406962687,3406962943,3406963199,3406963711,3406963967,3406964223,3406964479,3406964735,3406966783,3406967295,3406967551,3406967807,3406968063,3406968319,3406968575,3406968831,3406969087,3406969343,3406969599,3406969855,3406970367,3406970623,3406972927,3406973951,3406974975,3406975487,3406976767,3406977023,3406978047,3406978559,3406978815,3406979071,3406979583,3406979839,3406980095,3406980607,3406981375,3406981631,3406981887,3406982143,3406982655,3406982911,3406983167,3406987263,3406987519,3406987775,3406988031,3406988799,3406989567,3406989823,3406991359,3406991615,3406991871,3406992383,3406993151,3406993407,3406993663,3406993919,3406994431,3406995455,3406995711,3406995967,3406999551,3406999807,3407000063,3407000319,3407004927,3407005439,3407005695,3407007743,3407007999,3407008255,3407008511,3407008767,3407009279,3407009535,3407009791,3407012863,3407013887,3407017471,3407017983,3407020287,3407020543,3407020799,3407021055,3407021311,3407021567,3407023103,3407023359,3407023871,3407024639,3407024895,3407025663,3407026175,3407026431,3407026943,3407027711,3407027967,3407028223,3407030271,3407030527,3407030783,3407031039,3407031295,3407032063,3407032575,3407032831,3407033343,3407033599,3407034879,3407035135,3407035391,3407035903,3407036415,3407036671,3407036927,3407037183,3407037439,3407037695,3407037951,3407038207,3407038463,3407038719,3407038975,3407039231,3407039487,3407039999,3407045631,3407045887,3407046143,3407046399,3407047167,3407047679,3407048191,3407048447,3407048703,3407053055,3407053311,3407053567,3407053823,3407054079,3407054335,3407054847,3407055871,3407056383,3407056895,3407057151,3407057407,3407057663,3407057919,3407058175,3407058431,3407058687,3407059967,3407060223,3407062015,3407065087,3407065343,3407065599,3407066111,3407067135,3407073279,3407073535,3407073791,3407074815,3407076351,3407076863,3407077119,3407077375,3407078399,3407079423,3407079679,3407079935,3407080191,3407081983,3407082239,3407083519,3407084031,3407084287,3407085311,3407085567,3407089663,3407089919,3407090175,3407091711,3407092735,3407095807,3407096319,3407096575,3407096831,3407097087,3407097343,3407097855,3407098111,3407100159,3407100927,3407101183,3407101439,3407101695,3407101951,3407102207,3407102463,3407102975,3407103743,3407103999,3407104255,3407104511,3407105023,3407105535,3407106047,3407106303,3407106559,3407107071,3407107583,3407108095,3407108351,3407108607,3407109631,3407109887,3407110143,3407110399,3407110655,3407110911,3407111167,3407112447,3407112703,3407113215,3407113727,3407114239,3407114495,3407114751,3407115007,3407115263,3407115519,3407116287,3407116799,3407117055,3407117567,3407117823,3407118335,3407119359,3407120127,3407120383,3407122431,3407123455,3407123711,3407123967,3407124223,3407124479,3407126527,3407142911,3407143423,3407144447,3407144703,3407144959,3407145215,3407145983,3407146239,3407146495,3407147519,3407148031,3407148543,3407148799,3407151103,3407151871,3407152127,3407152383,3407152639,3407152895,3407153151,3407153407,3407153663,3407153919,3407154175,3407154431,3407154943,3407155199,3407155455,3407155711,3407155967,3407156223,3407156735,3407156991,3407157247,3407157503,3407159551,3407160063,3407160575,3407160831,3407161087,3407161599,3407161855,3407162367,3407162623,3407163135,3407163391,3407167487,3407167743,3407168511,3407168767,3407169535,3407169791,3407170047,3407170559,3407171839,3407172095,3407172351,3407172607,3407173631,3407174655,3407175423,3407175679,3407176703,3407177727,3407177983,3407178751,3407181823,3407182079,3407182335,3407182847,3407183103,3407183359,3407183871,3407184895,3407185407,3407185663,3407185919,3407186431,3407186943,3407187199,3407187711,3407187967,3407188223,3407188479,3407189503,3407203327,3407203839,3407204095,3407204351,3407208447,3407221247,3407221759,3407222015,3407222271,3407222783,3407223039,3407223295,3407223807,3407224319,3407224575,3407224831,3407233535,3407233791,3407234047,3407234303,3407234559,3407235839,3407236095,3407236351,3407236607,3407236863,3407237119,3407238143,3407238399,3407238655,3407238911,3407239167,3407240191,3407241215,3407241471,3407241983,3407242239,3407243775,3407244031,3407244799,3407245311,3407246335,3407246847,3407247359,3407247871,3407248383,3407250175,3407250431,3407250687,3407250943,3407255551,3407258367,3407258623,3407259135,3407259391,3407259903,3407260159,3407260415,3407260671,3407261695,3407263743,3407264255,3407264511,3407264767,3407265023,3407266047,3407266303,3407266559,3407267071,3407267839,3407268607,3407268863,3407269119,3407269631,3407269887,3407270911,3407271423,3407272191,3407272959,3407273727,3407273983,3407275007,3407275263,3407275519,3407276543,3407278079,3407278335,3407278591,3407279103,3407279359,3407279871,3407280895,3407281151,3407281663,3407281919,3407282175,3407282431,3407283199,3407283455,3407283967,3407284479,3407284735,3407285247,3407286271,3407287039,3407287295,3407288063,3407289855,3407290367,3407291391,3407292415,3407292671,3407292927,3407293183,3407293951,3407294207,3407294463,3407294719,3407294975,3407295231,3407295743,3407295999,3407296255,3407297023,3407297535,3407297791,3407298559,3407299583,3407300095,3407300351,3407300607,3407300863,3407301119,3407301375,3407301887,3407302143,3407302655,3407303935,3407304191,3407304447,3407305215,3407305471,3407305727,3407306751,3407307263,3407307519,3407307775,3407308031,3407308543,3407308799,3407309055,3407309311,3407309567,3407309823,3407310079,3407310335,3407310591,3407310847,3407311103,3407311871,3407312127,3407312383,3407313919,3407314175,3407314431,3407314687,3407314943,3407315199,3407315455,3407315711,3407315967,3407316991,3407317247,3407317503,3407318015,3407318527,3407318783,3407321087,3407324159,3407324415,3407325183,3407326207,3407326463,3407326719,3407326975,3407327231,3407327487,3407327743,3407328255,3407328767,3407329023,3407329535,3407329791,3407330303,3407330815,3407331327,3407331583,3407331839,3407332607,3407333119,3407333375,3407334399,3407335423,3407339519,3407339775,3407340031,3407341567,3407342079,3407342591,3407343615,3407344639,3407344895,3407345663,3407345919,3407346175,3407346431,3407346687,3407347199,3407347455,3407349759,3407350015,3407350271,3407350527,3407350783,3407351039,3407351295,3407351807,3407352319,3407352575,3407353087,3407353343,3407353599,3407354367,3407354623,3407354879,3407355903,3407356415,3407356671,3407356927,3407357951,3407358463,3407358719,3407358975,3407359999,3407360511,3407361023,3407362047,3407362303,3407362559,3407362815,3407363071,3407363327,3407364095,3407364863,3407365119,3407366655,3407366911,3407367167,3407367679,3407367935,3407368703,3407369215,3407369983,3407370239,3407370751,3407371007,3407371263,3407371519,3407371775,3407372287,3407373823,3407374335,3407374591,3407374847,3407375103,3407375359,3407375615,3407375871,3407376127,3407376639,3407376895,3407377407,3407377663,3407377919,3407378431,3407378687,3407378943,3407379455,3407379711,3407379967,3407380479,3407380735,3407381247,3407382015,3407382527,3407382783,3407383039,3407384319,3407384831,3407385087,3407385599,3407386111,3407386623,3407387135,3407387903,3407388159,3407388927,3407389183,3407389951,3407390207,3407390463,3407390719,3407391231,3407391999,3407392255,3407392767,3407394047,3407394815,3407395327,3407395839,3407396351,3407396607,3407397375,3407397631,3407398655,3407398911,3407399167,3407399423,3407399679,3407400447,3407401983,3407402495,3407403263,3407403519,3407403775,3407404031,3407409151,3407409407,3407409663,3407410175,3407410431,3407410943,3407411199,3407413247,3407417343,3407417599,3407417855,3407418111,3407418879,3407420415,3407421183,3407422463,3407423487,3407424511,3407425023,3407425279,3407425535,3407427583,3407429631,3407430143,3407430399,3407430655,3407431679,3407432447,3407432703,3407432959,3407433471,3407434239,3407434495,3407434751,3407435263,3407436543,3407436799,3407438335,3407438591,3407439103,3407439359,3407439871,3407440383,3407440639,3407440895,3407441151,3407441919,3407443711,3407443967,3407444479,3407444735,3407444991,3407445247,3407445503,3407446271,3407446783,3407447039,3407447295,3407447551,3407447807,3407448063,3407448575,3407448831,3407449087,3407449855,3407450111,3407450367,3407450879,3407451135,3407451391,3407452159,3407452415,3407453183,3407453695,3407453951,3407454207,3407454719,3407454975,3407455231,3407455487,3407455743,3407455999,3407456255,3407456767,3407457279,3407457535,3407457791,3407458303,3407458559,3407459327,3407459583,3407459839,3407460095,3407460351,3407460607,3407461119,3407461375,3407461887,3407462143,3407462399,3407462655,3407463423,3407463935,3407464191,3407464703,3407464959,3407465471,3407466495,3407470591,3407471359,3407471615,3407471871,3407472127,3407472639,3407473151,3407473407,3407473919,3407474175,3407474431,3407474687,3407474943,3407475199,3407475455,3407475967,3407476223,3407476479,3407478783,3407479295,3407479551,3407480319,3407480575,3407480831,3407481855,3407482111,3407482623,3407482879,3407487231,3407487487,3407487743,3407488255,3407489023,3407489279,3407490047,3407491327,3407491839,3407492095,3407492351,3407492607,3407492863,3407493631,3407494143,3407494399,3407495423,3407495679,3407496191,3407496447,3407496959,3407497471,3407497727,3407497983,3407498239,3407498495,3407498751,3407499007,3407499263,3407499519,3407499775,3407500287,3407500543,3407501055,3407501567,3407501823,3407502335,3407502847,3407503615,3407503871,3407504127,3407504383,3407504639,3407504895,3407505407,3407506175,3407506431,3407506943,3407507199,3407507455,3407507967,3407508223,3407508735,3407508991,3407509247,3407509503,3407511295,3407511551,3407511807,3407512063,3407512319,3407512575,3407513087,3407513599,3407513855,3407514111,3407514623,3407515135,3407515391,3407515903,3407516671,3407517183,3407518207,3407518463,3407518719,3407518975,3407519231,3407519743,3407521791,3407522047,3407522303,3407522559,3407522815,3407523071,3407523327,3407523583,3407523839,3407524095,3407524607,3407524863,3407525887,3407526143,3407526399,3407526911,3407527423,3407527679,3407527935,3407530495,3407531007,3407531263,3407531519,3407531775,3407532031,3407532287,3407532543,3407532799,3407533055,3407533311,3407533567,3407533823,3407534335,3407534591,3407534847,3407535103,3407535615,3407535871,3407536127,3407536383,3407536639,3407537151,3407537407,3407538175,3407538431,3407538687,3407538943,3407539711,3407540735,3407540991,3407541503,3407541759,3407542271,3407544063,3407544319,3407544575,3407545599,3407545855,3407546367,3407546879,3407547135,3407547391,3407548159,3407548671,3407548927,3407549183,3407549439,3407549695,3407549951,3407550463,3407550975,3407551999,3407552255,3407553279,3407553535,3407554047,3407554559,3407554815,3407555839,3407556095,3407556351,3407556607,3407557631,3407557887,3407558143,3407558655,3407558911,3407559167,3407559423,3407559679,3407559935,3407560191,3407560703,3407560959,3407561471,3407562495,3407562751,3407563007,3407563263,3407563775,3407564031,3407564543,3407564799,3407565055,3407565311,3407566079,3407566335,3407566591,3407566847,3407567103,3407567359,3407568383,3407568895,3407569151,3407569407,3407569663,3407569919,3407570431,3407570687,3407571455,3407571967,3407572223,3407572479,3407572735,3407572991,3407573503,3407574271,3407574527,3407574783,3407575295,3407576063,3407576319,3407576575,3407594239,3407594751,3407595519,3407595775,3407596031,3407596287,3407596543,3407596799,3407597567,3407599615,3407600383,3407601663,3407601919,3407602943,3407603455,3407603711,3407603967,3407604223,3407604479,3407604735,3407604991,3407605759,3407606015,3407606271,3407606783,3407608063,3407608319,3407608575,3407609087,3407609343,3407611903,3407612415,3407612671,3407612927,3407613183,3407613951,3407614207,3407614719,3407614975,3407615231,3407615743,3407617023,3407617279,3407618303,3407619071,3407619583,3407620351,3407620607,3407620863,3407621375,3407623423,3407623679,3407623935,3407624191,3407624447,3407624703,3407625215,3407625983,3407626239,3407627263,3407627775,3407628287,3407628543,3407629055,3407629311,3407629567,3407630079,3407631359,3407631615,3407631871,3407632127,3407632383,3407632639,3407632895,3407633151,3407633919,3407634431,3407636991,3407637503,3407638527,3407638783,3407639039,3407639295,3407641343,3407641599,3407642367,3407642623,3407643135,3407643391,3407643647,3407644671,3407644927,3407645695,3407645951,3407646463,3407646719,3407646975,3407647231,3407648255,3407648511,3407648767,3407649535,3407650047,3407650559,3407651071,3407652095,3407652351,3407652863,3407653119,3407653631,3407654399,3407654911,3407655423,3407655935,3407656191,3407656447,3407656703,3407657215,3407657471,3407657727,3407657983,3407659007,3407659263,3407659519,3407659775,3407660031,3407660287,3407661055,3407661311,3407661567,3407662079,3407662591,3407662847,3407663103,3407666175,3407666687,3407667455,3407667711,3407668223,3407668479,3407669759,3407670015,3407670783,3407671039,3407671295,3407672575,3407672831,3407673087,3407673343,3407673599,3407674367,3407674879,3407675647,3407675903,3407676159,3407677439,3407677951,3407678463,3407678719,3407679231,3407679487,3407680511,3407680767,3407681023,3407682047,3407682559,3407682815,3407686655,3407687167,3407687423,3407687679,3407688191,3407688447,3407688703,3407688959,3407689215,3407689727,3407689983,3407690239,3407691007,3407691263,3407691519,3407691775,3407692031,3407692287,3407692543,3407693055,3407693311,3407693823,3407694079,3407694335,3407694591,3407695615,3407695871,3407696127,3407696383,3407697151,3407697407,3407698431,3407698687,3407699199,3407699455,3407699711,3407699967,3407700223,3407700479,3407700735,3407700991,3407701247,3407701503,3407701759,3407702015,3407704063,3407704319,3407704575,3407705599,3407706111,3407707135,3407707647,3407707903,3407708159,3407720447,3407720703,3407721983,3407722495,3407722751,3407723007,3407723263,3407723519,3407723775,3407724287,3407726591,3407727615,3407727871,3407728127,3407729151,3407729407,3407730175,3407730687,3407730943,3407731199,3407731455,3407731711,3407732223,3407732479,3407732735,3407733247,3407733503,3407733759,3407734527,3407734783,3407735039,3407735551,3407736063,3407736319,3407736831,3407738879,3407739135,3407740159,3407740415,3407740927,3407745023,3407745535,3407746047,3407747071,3407747327,3407747583,3407747839,3407748095,3407748351,3407748607,3407749375,3407750143,3407750655,3407751167,3407753215,3407753727,3407755263,3407755775,3407756031,3407756543,3407757311,3407757823,3407758079,3407758335,3407758591,3407760127,3407760383,3407760895,3407761151,3407761407,3407761663,3407761919,3407762431,3407762687,3407762943,3407763199,3407763455,3407763711,3407763967,3407765503,3407765759,3407767551,3407768575,3407769343,3407769599,3407771647,3407771903,3407772159,3407772415,3407772671,3407773439,3407773695,3407774463,3407774719,3407775487,3407776511,3407776767,3407777279,3407777535,3407777791,3407778047,3407778303,3407779839,3407780095,3407780607,3407780863,3407781119,3407781375,3407782143,3407782399,3407782655,3407782911,3407783423,3407783935,3407784447,3407785215,3407785471,3407785727,3407785983,3407786495,3407786751,3407787007,3407788031,3407788543,3407788799,3407789055,3407790079,3407790591,3407790847,3407791615,3407791871,3407792127,3407792383,3407793151,3407793407,3407794175,3407794687,3407794943,3407795199,3407795711,3407796223,3407796479,3407796735,3407797247,3407797503,3407797759,3407798015,3407799295,3407799807,3407800063,3407800319,3407800831,3407801087,3407801343,3407801855,3407802111,3407802367,3407802879,3407803391,3407803903,3407804159,3407804927,3407805439,3407805695,3407805951,3407806463,3407807231,3407807487,3407807999,3407808255,3407808511,3407809023,3407809791,3407812351,3407813119,3407814655,3407815167,3407815679,3407816703,3407817983,3407818495,3407819007,3407819263,3407819519,3407819775,3407820287,3407820799,3407821823,3407822079,3407823615,3407824127,3407824383,3407824895,3407825151,3407825663,3407825919,3407826687,3407826943,3407827199,3407827711,3407827967,3407828223,3407828479,3407829503,3407830015,3407831039,3407831295,3407831551,3407832319,3407832575,3407832831,3407833087,3407833343,3407833855,3407834111,3407834623,3407835135,3407835647,3407837183,3407837439,3407838207,3407838463,3407847423,3407847679,3407847935,3407848191,3407848447,3407848959,3407849471,3407849727,3407849983,3407850239,3407851007,3407851263,3407851775,3407852031,3407852799,3407853055,3407853311,3407854079,3407854335,3407854591,3407854847,3407855103,3407855359,3407857151,3407857663,3407858175,3407858687,3407858943,3407859711,3407861247,3407861503,3407861759,3407862527,3407862783,3407863039,3407863295,3407863807,3407864063,3407864319,3407864575,3407864831,3407865087,3407865343,3407866367,3407866623,3407867391,3407867903,3407868927,3407869439,3407869695,3407869951,3407870463,3407870719,3407871231,3407871487,3407871743,3407871999,3407873023,3407873535,3407873791,3407877119,3407877375,3407878655,3407878911,3407879423,3407879679,3407880703,3407881727,3407882751,3407883263,3407883775,3407884031,3407884287,3407884799,3407886079,3407886335,3407886591,3407886847,3407887359,3407887615,3407887871,3407888127,3407888639,3407889151,3407889407,3407889919,3407890175,3407890943,3407891455,3407891711,3407892479,3407892735,3407892991,3407893247,3407893503,3407894015,3407895807,3407896319,3407896575,3407897087,3407897599,3407898111,3407898367,3407898623,3407898879,3407899135,3407899903,3407902463,3407902719,3407903231,3407904767,3407905279,3407905535,3407905791,3407906047,3407906303,3407906815,3407907327,3407907839,3407908095,3407908351,3407908607,3407908863,3407910911,3407911167,3407911423,3407912703,3407917823,3407918079,3407918591,3407919103,3407919615,3407920127,3407920639,3407921151,3407921407,3407922175,3407922431,3407922687,3407923967,3407924735,3407925247,3407926271,3407926527,3407927807,3407928575,3407928831,3407929087,3407937535,3407938047,3407938559,3407938815,3407939327,3407939583,3407940607,3407941631,3407942655,3407942911,3407943167,3407943423,3407943679,3407943935,3407944191,3407944447,3407944703,3407944959,3407945215,3407945471,3407945727,3407945983,3407946495,3407946751,3407947263,3407947519,3407948287,3407948543,3407949055,3407949311,3407951615,3407951871,3407952127,3407952383,3407952895,3407953407,3407953663,3407954175,3407954431,3407954687,3407955199,3407955455,3407955711,3407955967,3407956223,3407956479,3407957247,3407957503,3407957759,3407958015,3407962111,3407963135,3407963391,3407963647,3407964159,3407964927,3407965183,3407965695,3407965951,3407968255,3407968511,3407968767,3407969023,3407969279,3407970303,3407970559,3407970815,3407971071,3407971327,3407971583,3407971839,3407972351,3407973887,3407974143,3407974399,3407974655,3407974911,3407975679,3407976447,3407976703,3407976959,3407977215,3407977471,3407977727,3407977983,3407978495,3407980799,3407981311,3407981823,3407982079,3407982335,3407982591,3407982847,3407983103,3407983359,3407983615,3407984127,3407984895,3407985151,3407985663,3407985919,3407986175,3407987711,3407987967,3407988223,3407988735,3407988991,3407989247,3407990015,3407990271,3407990783,3407992319,3407992831,3407993087,3407993855,3407994623,3407994879,3407995647,3407995903,3407997183,3407997439,3407998207,3407998463,3407998719,3407998975,3407999231,3407999743,3407999999,3408000255,3408000767,3408001535,3408001791,3408004095,3408004351,3408004863,3408005887,3408006655,3408006911,3408007167,3408008447,3408008703,3408009983,3408010239,3408010495,3408011263,3408011519,3408012287,3408012543,3408012799,3408013055,3408013311,3408013823,3408014079,3408014591,3408014847,3408015359,3408015871,3408016127,3408016895,3408017151,3408017407,3408017919,3408018175,3408018431,3408018943,3408019199,3408019711,3408020223,3408020479,3408020735,3408020991,3408021503,3408021759,3408022271,3408022527,3408022783,3408023039,3408023551,3408023807,3408024063,3408025599,3408025855,3408026623,3408026879,3408027903,3408028159,3408028671,3408029183,3408029695,3408029951,3408030207,3408030463,3408030719,3408030975,3408031231,3408031487,3408031743,3408031999,3408032255,3408032767,3408033023,3408033279,3408033791,3408036607,3408037119,3408038143,3408038399,3408038911,3408039423,3408039935,3408040191,3408040703,3408040959,3408041215,3408041471,3408041727,3408041983,3408042495,3408042751,3408044031,3408044287,3408044799,3408045055,3408045567,3408045823,3408046079,3408048127,3408048383,3408048639,3408049407,3408049663,3408050687,3408050943,3408051199,3408051711,3408051967,3408052223,3408054271,3408054527,3408055295,3408056319,3408056831,3408057087,3408057343,3408057599,3408057855,3408058367,3408058623,3408058879,3408059135,3408059391,3408059903,3408060159,3408062463,3408062719,3408062975,3408063231,3408063487,3408063743,3408063999,3408064511,3408064767,3408065023,3408065279,3408065791,3408066047,3408066303,3408066559,3408067071,3408067327,3408067583,3408068095,3408095999,3408096255,3409379839,3409380607,3409381631,3409381887,3409382143,3409382399,3409382655,3409382911,3409383423,3409383935,3409384447,3409384703,3409384959,3409385215,3409385727,3409385983,3409386239,3409387007,3409387263,3409387775,3409388031,3409388287,3409388799,3409389055,3409389823,3409390079,3409390335,3409390591,3409391103,3409391615,3409392127,3409392639,3409392895,3409394943,3409395455,3409395711,3409395967,3409396223,3409396479,3409396735,3409397503,3409397759,3409399039,3409399295,3409399551,3409400063,3409400319,3409400575,3409402111,3409403135,3409403391,3409403647,3409403903,3409404415,3409404671,3409405183,3409405439,3409405951,3409406463,3409406719,3409406975,3409407231,3409407743,3409408255,3409408767,3409409023,3409409535,3409409791,3409410047,3409410815,3409412095,3409412607,3409412863,3409414143,3409414399,3409414911,3409415167,3409416447,3409416703,3409417215,3409417727,3409417983,3409419007,3409420031,3409420287,3409420543,3409421311,3409422335,3409423615,3409423871,3409424383,3409424639,3409424895,3409427711,3409428223,3409428479,3409428735,3409428991,3409429503,3409429759,3409430271,3409431039,3409431551,3409432575,3409433855,3409434111,3409434623,3409435135,3409435647,3409435903,3409436159,3409436415,3409436671,3409436927,3409437439,3409437695,3409438719,3409439999,3409440255,3409440767,3409442815,3409443327,3409443583,3409443839,3409444095,3409444351,3409444607,3409444863,3409445119,3409445375,3409445887,3409446143,3409446911,3409447935,3409448191,3409448447,3409448959,3409449471,3409449727,3409449983,3409450495,3409451007,3409451263,3409452031,3409452287,3409454591,3409454847,3409455103,3409455359,3409455615,3409455871,3409456127,3409456639,3409456895,3409457151,3409457663,3409459199,3409460223,3409460735,3409461247,3409462271,3409462783,3409463295,3409465343,3409465855,3409466879,3409467135,3409467391,3409467903,3409468415,3409469183,3409469439,3409469695,3409470463,3409470975,3409471231,3409472511,3409472767,3409473023,3409473279,3409473535,3409474559,3409475071,3409475583,3409475839,3409476095,3409476607,3409477119,3409485823,3409486079,3409486335,3409486847,3409487103,3409487359,3409487871,3409488127,3409488383,3409488895,3409489407,3409489663,3409489919,3409490175,3409490431,3409490687,3409490943,3409491711,3409491967,3409492223,3409492479,3409492735,3409492991,3409494015,3409494271,3409494527,3409494783,3409495039,3409495295,3409495551,3409495807,3409496319,3409496575,3409497087,3409498111,3409498879,3409499391,3409499647,3409499903,3409500159,3409500415,3409500671,3409501183,3409502975,3409503487,3409503999,3409504511,3409504767,3409505279,3409506303,3409506559,3409506815,3409507327,3409508351,3409508863,3409509119,3409509375,3409509631,3409509887,3409510143,3409510911,3409511167,3409511679,3409512191,3409512447,3409512703,3409512959,3409513471,3409513983,3409514239,3409514495,3409516287,3409516543,3409517055,3409517311,3409517567,3409517823,3409518079,3409519103,3409519615,3409520383,3409520639,3409521151,3409521663,3409522175,3409522431,3409522687,3409523711,3409524735,3409525247,3409525503,3409526015,3409526271,3409526527,3409527039,3409527295,3409527551,3409528063,3409528831,3409529087,3409529343,3409530111,3409530367,3409530879,3409531135,3409531391,3409531903,3409532927,3409533183,3409533439,3409533695,3409533951,3409536255,3409536511,3409538303,3409538559,3409538815,3409539327,3409540095,3409541119,3409541375,3409541887,3409542143,3409547519,3409547775,3409548031,3409548287,3409549311,3409550591,3409550847,3409559551,3409561599,3409561855,3409562111,3409562367,3409562879,3409563135,3409563391,3409565695,3409566207,3409566719,3409567231,3409567487,3409567743,3409571839,3409572351,3409573375,3409573887,3409574143,3409574399,3409575167,3409575935,3409707007,3409739775,3409740031,3409743871,3409744127,3409744383,3409745919,3409746175,3409772543,3409838335,3409838591,3409838847,3409871359,3409871615,3409871871,3409872895,3409873663,3409873919,3409874687,3409874943,3409875711,3409875967,3409876991,3409878015,3409878271,3409879295,3409879551,3409879807,3409880063,3409880319,3409880575,3409881087,3409881855,3409882111,3409883135,3409883391,3409883647,3409884159,3409885183,3409886207,3409886463,3409886719,3409887999,3409888255,3409888511,3409888767,3409889023,3409889791,3409890047,3409890559,3409890815,3409891327,3409891839,3409892351,3409892863,3409893119,3409893375,3409895423,3409896447,3409897471,3409897983,3409898239,3409899519,3409901055,3409901311,3409901567,3409969151,3410755583,3410771967,3410780159,3410788351,3410792447,3410794495,3410796543,3410797567,3410798591,3410799615,3410800639,3410804735,3410808831,3410811903,3410812927,3410813951,3410814975,3410817023,3410818047,3410818559,3410818815,3410819071,3410820095,3410821119,3410853887,3410862079,3410866175,3410866431,3410866687,3410866943,3410867199,3410868223,3410869503,3410870271,3410874367,3410886655,3410887935,3410888703,3410890751,3410894847,3410898943,3410903039,3410911231,3410915327,3410919423,3410919935,3410920191,3410920447,3410921471,3410923519,3410924543,3410925567,3410926591,3410927615,3410927871,3410928127,3410928383,3410928895,3410929151,3410931711,3410932991,3410933247,3410934271,3410934783,3410935807,3410936063,3410936319,3410936831,3410937855,3410938879,3410939903,3410943999,3410952191,3410956287,3410958335,3410958847,3410959359,3410959615,3410959871,3410960383,3410961407,3410961663,3410964479,3410968319,3410968575,3410984959,3411017727,3411018751,3411019263,3411019775,3411021823,3411023871,3411025919,3411030015,3411032063,3411032319,3411032575,3411033087,3411034111,3411050495,3411050751,3411051007,3411051263,3411051519,3411052543,3411053567,3411054591,3411058687,3411060735,3411060991,3411061247,3411061759,3411062783,3411065855,3411066879,3411083263,3411083519,3411084287,3411084543,3411084799,3411085055,3411085311,3411086335,3411087359,3411091455,3411099647,3411107839,3411111935,3411116031,3411124223,3411128319,3411130367,3411132415,3411144703,3411145727,3411146751,3411147775,3411148799,3411149311,3411149823,3411150847,3411154943,3411155199,3411155455,3411155967,3411156991,3411161087,3411165183,3411173375,3411177471,3411181567,3411189503,3411189759,3411197951,3411202047,3411204607,3411204863,3411205631,3411206143,3411210239,3411212287,3411212799,3411213311,3411214335,3411215359,3411216383,3411216639,3411217407,3411218431,3411220479,3411226623,3411228671,3411230719,3411247103,3411254783,3411255295,3411263487,3411269631,3411270143,3411270399,3411270655,3411271679,3411275775,3411277823,3411278335,3411278591,3411278847,3411279871,3411296255,3411312639,3411313151,3411313663,3411313919,3411314175,3411314687,3411316735,3411318783,3411320831,3411329023,3411331327,3411331583,3411331839,3411332607,3411332863,3411333631,3411333887,3411337215,3411341311,3411345407,3411354879,3411355647,3411376127,3411376383,3411395327,3411396607,3411410943,3411436031,3411436543,3411436799,3411437311,3411437567,3411437823,3411438335,3411440127,3411440383,3411440639,3411440895,3411460095,3411464191,3411468287,3411470335,3411472383,3411474943,3411475199,3411475967,3411476479,3411509247,3411542015,3411550207,3411558399,3411560191,3411560447,3411560703,3411560959,3411561727,3411562239,3411562495,3411563007,3411563263,3411563519,3411563775,3411565055,3411565311,3411565567,3411565823,3411566079,3411566335,3411566591,3411567615,3411568639,3411569663,3411569919,3411570175,3411570687,3411574783,3411582975,3411587071,3411591167,3411599359,3411607551,3411608575,3411608831,3411609087,3411609599,3411610111,3411611647,3411615743,3411623935,3411632127,3411633151,3411634175,3411635199,3411636223,3411637247,3411638271,3411640319,3411641343,3411641599,3411641855,3411642367,3411643391,3411644415,3411644671,3411644927,3411645951,3411646207,3411647487,3411648511,3411656703,3411673087,3411674111,3411674623,3411675135,3411677183,3411679231,3411681279,3411689471,3411705855,3411730431,3411737599,3411737855,3411738623,3411746815,3411755007,3411757055,3411762431,3411762687,3411762943,3411763199,3411767295,3411769343,3411771391,3411779583,3411787775,3411795967,3411804159,3411805183,3411805695,3411805951,3411806207,3411808255,3411810303,3411810815,3411812351,3411820543,3411836927,3411845119,3411853311,3411857407,3411857663,3411857919,3411858175,3411858431,3411858687,3411858943,3411859199,3411859455,3411860735,3411861247,3411861503,3411869695,3411943423,3411951615,3411967999,3411984383,3412000767,3412002815,3412004863,3412017151,3412025343,3412049919,3412050943,3412051967,3412055039,3412055807,3412056063,3412057087,3412058111,3412066303,3412107263,3412108287,3412109311,3412110335,3412112383,3412113407,3412114431,3412115455,3412123647,3412124671,3412125695,3412125951,3412126207,3412126719,3412127743,3412128767,3412129791,3412131839,3412213759,3412214015,3412216831,3412217343,3412217599,3412221951,3412230143,3412246527,3412254719,3412262911,3412264959,3412265215,3412265471,3412267007,3412271103,3412273151,3412275199,3412279295,3412281343,3412283391,3412287487,3412295679,3412296191,3412296703,3412297727,3412298751,3412299263,3412299519,3412299775,3412300287,3412300799,3412301311,3412302847,3412303871,3412312063,3412320255,3412322303,3412324351,3412326399,3412327423,3412327935,3412328191,3412328447,3412336639,3412340735,3412342783,3412343039,3412343295,3412343551,3412343807,3412344063,3412344319,3412344575,3412344831,3412348927,3412361215,3412363263,3412363519,3412364031,3412364287,3412365055,3412365311,3412365567,3412365823,3412366591,3412366847,3412369407,3412377599,3412381695,3412385791,3412393983,3412426751,3412427007,3412428287,3412428543,3412428799,3412434943,3412443135,3412444671,3412445183,3412451327,3412594687,3412596735,3412598783,3412602879,3412606975,3412615167,3412631551,3412632063,3412632575,3412633599,3412634111,3412634623,3412636159,3412636671,3412637183,3412637695,3412638207,3412638719,3412639743,3412656127,3412672511,3412680703,3412697087,3412705279,3412713471,3412721663,3412787199,3412819967,3412852735,3412918271,3412926463,3412927487,3412928511,3412929535,3412930559,3412931583,3412932607,3412933631,3412934655,3412951039,3413000191,3413004287,3413008383,3413016575,3413024767,3413032959,3413037055,3413041151,3413043199,3413043967,3413044223,3413045247,3413047295,3413098495,3413102591,3413106687,3413110783,3413112831,3413113855,3413114879,3413133311,3413135359,3413139455,3413147647,3413155839,3413164031,3413172223,3413173247,3413173503,3413180415,3413213183,3413229567,3413245951,3413262335,3413263359,3413264383,3413264639,3413264895,3413265151,3413265407,3413266431,3413270527,3413278719,3413295103,3413303295,3413304319,3413305343,3413306367,3413307391,3413308415,3413309439,3413310463,3413311487,3413327871,3413344255,3413360639,3413370367,3413370623,3413377023,3413524479,3413540863,3413557247,3413565439,3413569535,3413569791,3413570047,3413570303,3413570559,3413571583,3413572607,3413573631,3413573887,3413574143,3413574399,3413574655,3413575679,3413576703,3413576959,3413577215,3413577471,3413577727,3413577983,3413578239,3413578495,3413578751,3413579007,3413579775,3413582079,3413582335,3413582847,3413583871,3413584127,3413584383,3413584639,3413584895,3413585919,3413586175,3413586687,3413586943,3413587967,3413588223,3413588479,3413593087,3413593599,3413593855,3413594111,3413595135,3413595391,3413595647,3413595903,3413596159,3413597183,3413597695,3413597951,3413598207,3413599231,3413602303,3413602559,3413604351,3413606399,3413616639,3413616895,3413636607,3413636863,3413639167,3413639423,3413639679,3413640447,3413640959,3413646335,3413646591,3413647103,3413647871,3413653247,3413653503,3413654271,3413654527,3413655807,3413656575,3413657087,3413657343,3413657599,3413658879,3413659135,3413659903,3413660159,3413661183,3413661439,3413661951,3413662463,3413662719,3413663231,3413664255,3413664511,3413664767,3413667583,3413667839,3413670399,3413670655,3413671167,3413671423,3413672703,3413672959,3413674495,3413674751,3413675775,3413676031,3413676543,3413676799,3413677823,3413678079,3413678591,3413678847,3413679615,3413679871,3413680895,3413681151,3413685759,3413686015,3413686271,3413686527,3413687295,3413687551,3413687807,3413688319,3413688831,3413689087,3413689599,3413689855,3413690367,3413690623,3413691391,3413691647,3413695487,3413695743,3413696511,3413697535,3413699839,3413700095,3413700607,3413701119,3413702143,3413702399,3413703167,3413703423,3413704447,3413704703,3413737471,3413744127,3413745407,3413747455,3413747711,3413748223,3413748479,3413749503,3413749759,3413751039,3413751295,3413751551,3413752063,3413752575,3413752831,3413753855,3413762047,3413770239,3413786623,3413835775,3413843967,3413848063,3413850111,3413850623,3413850879,3413851135,3413852159,3413856255,3413860351,3413868543,3413884927,3413893119,3413901311,3413902847,3413903359,3413905407,3413907455,3413917695,3413925887,3413934079,3413946367,3413950463,3413966847,3414050303,3414050815,3414155519,3414155775,3414163455,3414171647,3414179839,3414188031,3414196223,3414204415,3414220799,3414222335,3414222847,3414223871,3414224895,3414226943,3414227967,3414228991,3414230015,3414230527,3414231039,3414233087,3414245375,3414253567,3414261759,3414269951,3414278143,3414294527,3414302719,3414310911,3414327295,3414335487,3414339583,3414343679,3414360063,3414376447,3414409215,3414413311,3414417407,3414423295,3414423551,3414425599,3414426623,3414427647,3414429695,3414429951,3414430207,3414430463,3414430719,3414430975,3414431231,3414431743,3414431999,3414432511,3414432767,3414433791,3414441983,3414450175,3414458367,3414466559,3414474751,3414478847,3414482943,3414491135,3414523903,3414532095,3414540287,3414554623,3414555647,3414556671,3414605823,3414616063,3414618111,3414620159,3414620671,3414622207,3414638591,3414646783,3414654975,3414663167,3414667263,3414669311,3414670335,3414670591,3414670847,3414671359,3414787071,3414787327,3414787583,3414787839,3414789119,3414789375,3414790655,3414790911,3414791423,3414791679,3414791935,3414792191,3414792959,3414793215,3415080959,3415082239,3415082495,3415083007,3415083519,3415083775,3415089151,3415097343,3415103487,3415113727,3415121919,3415130111,3415136255,3415136767,3415137023,3415137279,3415137535,3415137791,3415138303,3415146495,3415162879,3415171071,3415179263,3415187455,3415191551,3415195647,3415220223,3415224319,3415228415,3415228927,3415229183,3415236607,3415244799,3415277567,3415285759,3415286271,3415286783,3415287551,3415287807,3415288319,3415288831,3415289855,3415290367,3415290879,3415292415,3415293951,3415302143,3415306239,3415308287,3415310335,3415326719,3415334911,3415343103,3415368191,3415368447,3415425023,3415431167,3415432191,3415435263,3415436287,3415436799,3415437311,3415441407,3415467007,3415467519,3415468031,3415469055,3415469567,3415474175,3415495679,3415496191,3415496703,3415497727,3415497983,3415498751,3415506943,3415556095,3415563263,3415564287,3415568383,3415572479,3415605247,3415737599,3415737855,3415738879,3415739135,3415740159,3415740415,3415741695,3415741951,3415742207,3415742463,3415746047,3415746303,3415746815,3415747071,3415747839,3415748351,3415749375,3415749631,3415750143,3415750399,3415751423,3415752191,3415752703,3415760895,3415769087,3415777279,3415785471,3415793663,3415801855,3415802879,3415803391,3415803903,3415804159,3415804415,3415804927,3415805439,3415805951,3415806975,3415810047,3415814399,3415814655,3415815167,3415816191,3415817215,3415818239,3415822335,3415826431,3415834623,3415838719,3415842815,3415851007,3415855103,3415856127,3415858175,3415859199,3415867391,3416047615,3416063999,3416131583,3416133631,3416135679,3416137727,3416145919,3416154111,3416215551,3416215807,3416216063,3416216319,3416216575,3416216831,3416217087,3416217343,3416217599,3416217855,3416218111,3416218367,3416218623,3416260607,3416261119,3416261631,3416262655,3416264703,3416268799,3416272895,3416273919,3416274943,3416276991,3416285183,3416287231,3416289279,3416293375,3416293631,3416293887,3416294399,3416295423,3416295679,3416295935,3416296447,3416296703,3416297471,3416301567,3416309759,3416317951,3416318207,3416318463,3416326143,3416327167,3416328191,3416330239,3416334335,3416342527,3416371199,3416371711,3416371967,3416372223,3416372479,3416372735,3416372991,3416373247,3416373759,3416374015,3416374271,3416374527,3416374783,3416375295,3416383487,3416391679,3416457215,3416473599,3416474623,3416475391,3416475647,3416475903,3416482047,3416482303,3416483583,3416483839,3416484351,3416484607,3416488191,3416488447,3416489471,3416489727,3416489983,3416506367,3416514559,3416522751,3416588287,3416653823,3416667135,3416668159,3416686591,3416690687,3416694271,3416694783,3416702975,3416707071,3416709119,3416709375,3416709631,3416710143,3416711167,3416719359,3416721407,3416723455,3416724479,3416724991,3416725247,3416725503,3416726527,3416727551,3416735743,3416752127,3416784895,3416793087,3416801279,3416817663,3416850431,3416851455,3416851967,3416852479,3416854527,3416856575,3416858623,3416862719,3416863743,3416864767,3416865023,3416865535,3416865791,3416866047,3416866303,3416866815,3416883199,3416915967,3416920063,3416921087,3416922111,3416922367,3416922623,3416923135,3416924159,3416928255,3416928511,3416928767,3416929279,3416930303,3416930815,3416931327,3416932351,3416936447,3416937215,3416937471,3416939007,3416939519,3416940543,3416948735,3416981503,3416982527,3416982783,3416983039,3416983551,3416985599,3416989695,3416997887,3417006079,3417014271,3417022463,3417030655,3417034751,3417035007,3417035775,3417036799,3417037823,3417038079,3417038335,3417038591,3417038847,3417042943,3417044991,3417047039,3417055231,3417112575,3417128959,3417135103,3417137151,3417145343,3417178111,3417179135,3417179391,3417179647,3417180159,3417182207,3417184255,3417184767,3417185023,3417185279,3417185791,3417186303,3417194495,3417198591,3417200639,3417202687,3417210879,3417227263,3417243647,3417244671,3417245695,3417246719,3417247743,3417251839,3417260031,3417264127,3417268223,3417268735,3417269247,3417270271,3417270783,3417271295,3417271807,3417272063,3417275391,3417276415,3417284607,3417288703,3417289215,3417289727,3417291263,3417291775,3417292799,3417333759,3417337855,3417338367,3417338623,3417338879,3417339903,3417340415,3417340927,3417341951,3417346047,3417348095,3417348351,3417348607,3417349119,3417349631,3417350143,3417352191,3417354239,3417356287,3417357311,3417357567,3417357823,3417358335,3417374719,3417440255,3417608703,3417608959,3417788159,3417788415,3417833471,3417849855,3417853951,3417858047,3417866239,3417915391,3417939967,3417946111,3417947135,3417947391,3417947647,3417947903,3417948159,3417964543,3418030079,3418062847,3418063871,3418067199,3418067455,3418067711,3418071039,3418079231,3418095615,3418111999,3418128383,3418136575,3418144767,3418148863,3418150911,3418152959,3418155007,3418157055,3418161151,3418161663,3418162431,3418162687,3418163199,3418165247,3418167295,3418167551,3418167807,3418168319,3418169343,3418177535,3418181631,3418183679,3418184191,3418184959,3418185727,3418189823,3418190847,3418191871,3418192895,3418193919,3418202111,3418206207,3418208255,3418210303,3418218495,3418220543,3418221567,3418222591,3418223615,3418226687,3418227711,3418228735,3418230783,3418232831,3418233343,3418233855,3418234879,3418235903,3418236415,3418236927,3418241023,3418242303,3418242559,3418243071,3418251263,3418255359,3418257407,3418259455,3418267647,3418271743,3418273791,3418275839,3418279935,3418281983,3418282239,3418282495,3418283519,3418284031,3418286079,3418287103,3418288127,3418290175,3418290431,3418290687,3418291199,3418291711,3418292223,3418292991,3418293247,3418293503,3418293759,3418294015,3418294271,3418296319,3418298367,3418299391,3418300415,3418300927,3418301439,3418302463,3418304511,3418306559,3418308607,3418324991,3418326015,3418326271,3418326527,3418327039,3418329087,3418333183,3418345471,3418357759,3418365951,3418374143,3418382335,3418391039,3418391295,3418392063,3418392575,3418392831,3418393087,3418393343,3418393599,3418393855,3418394111,3418394367,3418394623,3418394879,3418395135,3418395391,3418396415,3418396671,3418396927,3418397183,3418397439,3418397695,3418397951,3418398207,3418398719,3418398975,3418399231,3418399487,3418399743,3418400255,3418400767,3418401023,3418401279,3418401535,3418403071,3418403327,3418403583,3418403839,3418404095,3418404351,3418405375,3418405631,3418406143,3418406399,3418406911,3418423295,3418453247,3418453503,3418456063,3418472447,3418480639,3418488831,3418505215,3418507263,3418507519,3418507775,3418508031,3418511103,3418511359,3418513407,3418517503,3418518527,3418519551,3418554367,3418570751,3418578943,3418583039,3418583551,3418583807,3418585087,3418586111,3418586367,3418586623,3418586879,3418587135,3418621951,3418623999,3418626047,3418627071,3418628095,3418636287,3418642943,3418643199,3418643455,3418644479,3418644735,3418644991,3418645247,3418645503,3418645759,3418646271,3418646527,3418648063,3418648319,3418648575,3418648831,3418651135,3418651391,3418651903,3418652159,3418652415,3418652671,3418750975,3418816511,3418947583,3418955775,3418959871,3418960383,3418960895,3418961919,3418962943,3418963967,3418988543,3418992639,3418993663,3418993919,3418994431,3418994687,3418995711,3418996735,3419013119,3419062271,3419070463,3419070975,3419071743,3419071999,3419072511,3419073023,3419073279,3419073535,3419074559,3419078655,3419209727,3419226111,3419234303,3419242495,3419243007,3419244031,3419247615,3419248895,3419249151,3419249407,3419249663,3419249919,3419250175,3419250431,3419250687,3419254783,3419255807,3419257599,3419258111,3419258623,3419258879,3419259135,3419259391,3419259903,3419260415,3419265535,3419266559,3419267071,3419267327,3419271167,3419271423,3419271679,3419271935,3419273215,3419275263,3419340799,3419344895,3419348991,3419353087,3419354111,3419356159,3419356671,3419356927,3419357183,3419406335,3419411455,3419411711,3419411967,3419412223,3419412479,3419414527,3419422719,3419439103,3419442431,3419442687,3419471871,3419504639,3419508735,3419512831,3419516927,3419517951,3419518975,3419519999,3419520767,3419521023,3419527935,3419528191,3419529215,3419537407,3419541503,3419553791,3419557887,3419558399,3419558655,3419559935,3419560959,3419561983,3419570175,3419602943,3419611135,3419617279,3419618303,3419619327,3419635711,3419643903,3419668479,3419672575,3419674623,3419675647,3419676671,3419684863,3419688959,3419693055,3419701247,3419709439,3419717631,3419734015,3419774975,3419783167,3419791359,3419844607,3419845119,3419873279,3419877375,3419877631,3419877887,3419878143,3419878399,3419879423,3419880447,3419881471,3419897855,3419899903,3419900159,3419900415,3419900671,3419901695,3419901951,3419902207,3419902463,3419902719,3419903231,3419903487,3419906047,3419914239,3419922431,3419924479,3419925503,3419925759,3419930623,3419967743,3419967999,3419968511,3419968767,3419970303,3419970559,3419971583,3419979775,3419996159,3420020735,3420028927,3420029951,3420030975,3420031487,3420031999,3420032255,3420032511,3420033023,3420034047,3420034559,3420035071,3420036095,3420037119,3420038143,3420039167,3420040191,3420040703,3420040959,3420041215,3420042239,3420043263,3420044287,3420045311,3420048383,3420061695,3420127231,3420323839,3420332031,3420333311,3420333567,3420335871,3420336127,3420364799,3420365055,3420372991,3420377087,3420389375,3420393471,3420393727,3420394239,3420394751,3420395007,3420395519,3420397567,3420401663,3420411903,3420412415,3420412927,3420413951,3420422143,3420430335,3420434431,3420434687,3420434943,3420435199,3420435455,3420436479,3420437503,3420438527,3420454911,3421077759,3421084159,3421084927,3421086975,3421087231,3421093887,3421106175,3421110271,3421503487,3421519871,3421528575,3421536255,3421544447,3421552383,3421611519,3421611775,3421613823,3421614079,3421624319,3421625343,3421663231,3421665279,3421716479,3421732863,3422296063,3422296831,3422367743,3422368767,3422369791,3422371839,3422384127,3422388223,3422415103,3422415359,3422420991,3422423295,3422423551,3422429183,3422429695,3422431231,3422431487,3422433791,3422435583,3422445567,3422472959,3422473215,3422480127,3422480383,3422481151,3422481407,3422484479,3422484735,3422484991,3422485247,3422517247,3422518271,3422543359,3422543871,3422546687,3422546943,3422552063,3422553599,3422553855,3422554879,3422555135,3422555391,3422555903,3422556159,3422556415,3422556671,3422556927,3422557695,3422557951,3422558207,3422558463,3422560255,3422560511,3422561279,3422561535,3422562047,3422562303,3422562559,3422562815,3422566911,3422567167,3422568959,3422569471,3422569727,3422569983,3422570495,3422570751,3422571263,3422571519,3422573311,3422573567,3422574591,3422574847,3422575103,3422575359,3422575615,3422575871,3422576639,3422577151,3422577919,3422578175,3422580735,3422580991,3422584831,3422585087,3422586879,3422587135,3422595071,3422595839,3422596095,3422596607,3422597119,3422597375,3422598143,3422598399,3422599423,3422599679,3422600703,3422600959,3422601471,3422601727,3422606591,3422606847,3422607103,3422607359,3422608895,3422609407,3422609663,3422609919,3422611199,3422611455,3422612479,3422612735,3422613759,3422614015,3422615807,3422616063,3422617087,3422617343,3422618111,3422618367,3422618623,3422619135,3422620927,3422621183,3422623231,3422623487,3422623743,3422623999,3422625535,3422625791,3422628351,3422628607,3422630143,3422630655,3422630911,3422631423,3422632703,3422633215,3422638591,3422638847,3422639615,3422639871,3422641407,3422641919,3422642175,3422642687,3422645759,3422646015,3422646527,3422646783,3422648575,3422648831,3422649087,3422649343,3422649855,3422650111,3422650623,3422650879,3422658047,3422658303,3422659839,3422660351,3422662399,3422662911,3422663679,3422663935,3422664447,3422664703,3422665215,3422665471,3422665727,3422665983,3422666495,3422667519,3422670079,3422670335,3422672639,3422672895,3422673919,3422674175,3422674431,3422674687,3422675199,3422675711,3422677759,3422678015,3422679039,3422679295,3422679807,3422680319,3422680831,3422681087,3422687231,3422687487,3422687999,3422688255,3422688767,3422689023,3422689279,3422689535,3422689791,3422690047,3422690815,3422691327,3422693375,3422693631,3422699519,3422699775,3422700799,3422701567,3422703615,3422704127,3422705663,3422707711,3422708735,3422708991,3422709247,3422709503,3422711807,3422712319,3422713855,3422714111,3422715391,3422715647,3422716159,3422716415,3422739199,3422739455,3422740479,3422740735,3422741759,3422742015,3422746623,3422746879,3422747135,3422747391,3422749695,3422749951,3422750207,3422750463,3422751999,3422752255,3422754047,3422754303,3422755583,3422755839,3422756351,3422756863,3422758911,3422759423,3422759935,3422760191,3422760447,3422760703,3422760959,3422761471,3422762495,3422762751,3422763263,3422764287,3422764799,3422765055,3422765311,3422765567,3422767871,3422768127,3422768895,3422769151,3422771455,3422771711,3422772479,3422772735,3422774271,3422774783,3422775295,3422775551,3422776063,3422776319,3422777855,3422778367,3422781439,3422781951,3422782207,3422782463,3422782975,3422783231,3422786047,3422786559,3422787071,3422787327,3422789375,3422789631,3422789887,3422790143,3422791167,3422791423,3422792191,3422792447,3422796287,3422796543,3422797567,3422797823,3422799103,3422799359,3422808831,3422809087,3422809599,3422809855,3422812159,3422812415,3422812927,3422813439,3422813951,3422814207,3422978047,3422978303,3422978559,3422978815,3422982399,3422982911,3423076351,3423077375,3423092735,3423093759,3423094783,3423095807,3423096831,3423097855,3423128575,3423128831,3423129087,3423129599,3423135999,3423136255,3423143935,3423145983,3423151103,3423151871,3423162367,3423163391,3423182847,3423184895,3423190271,3423190527,3423237119,3423238143,3423241471,3423241983,3423249407,3423250431,3423256575,3423257087,3423257343,3423258623,3423260671,3423268863,3423269887,3423273215,3423273471,3423273727,3423273983,3423275007,3423277055,3423285247,3423287295,3423287807,3423303679,3423304703,3423311871,3423313151,3423313407,3423313919,3423328767,3423329023,3423336447,3423337471,3423371263,3423375359,3423379455,3423410175,3423412223,3423416319,3423417343,3423418367,3423418623,3423418879,3423419391,3423430655,3423431679,3423436287,3423436799,3423465471,3423466495,3423468543,3423469567,3423473663,3423474687,3423477759,3423478783,3423489023,3423489279,3423489535,3423489791,3423490047,3423521791,3423522815,3423532031,3423533055,3423534591,3423534847,3423535103,3423543295,3423545343,3423571967,3423574015,3423579135,3423580159,3423582207,3423586303,3423602687,3423603711,3423612671,3423612927,3423614975,3423615487,3423626239,3423627263,3423629311,3423630335,3423637503,3423639551,3423651839,3423653887,3423705599,3423705855,3423716095,3423716351,3423731711,3423797247,3423797503,3423801087,3423801343,3423827711,3423827967,3423830271,3423830527,3423838719,3423838975,3423844863,3423845119,3423848447,3423849471,3423849983,3423850495,3423850751,3423854335,3423854591,3423855103,3423858175,3423858431,3423858687,3423858943,3423859199,3423859455,3423859711,3423859967,3423862527,3424272127,3424272383,3424334847,3424335871,3424367359,3424367615,3424378879,3424379135,3424412415,3424412671,3424489983,3424490239,3424493823,3424494079,3424507135,3424507391,3425173503,3425304575,3425305343,3425305599,3425314559,3425314815,3425315327,3425315583,3425316863,3425317119,3425317375,3425317631,3425317887,3425318143,3425320959,3425321215,3425323263,3425323519,3425325823,3425326079,3425326335,3425326591,3425328639,3425328895,3425330431,3425330687,3425335039,3425335295,3425339391,3425339647,3425341183,3425341439,3425347327,3425347583,3425347839,3425348095,3425348607,3425349119,3425349375,3425349631,3425350143,3425350655,3425352959,3425353471,3425355007,3425355263,3425356543,3425356799,3425357823,3425358079,3425360383,3425360639,3425360895,3425361151,3425363455,3425363967,3425368575,3425368831,3425471487,3425472511,3425484799,3425488895,3425697791,3425699839,3425705983,3425706495,3425713663,3425714175,3425722367,3425726463,3425728511,3425828863,3425845247,3425845759,3425894399,3425994495,3425994751,3426013183,3426013439,3426189311,3426189823,3426193919,3426194431,3426197503,3426197759,3426201599,3426201855,3426296063,3426296319,3426298879,3426299391,3426356991,3426357247,3426369023,3426369535,3426387967,3426388991,3426398207,3426399231,3426400255,3426400511,3426418687,3426435071,3426439167,3426441215,3426441727,3426445823,3426446335,3426446591,3426446847,3426468351,3426468607,3426470399,3426470655,3426482687,3426484223,3426618879,3426619391,3426646015,3426648063,3426655999,3426656255,3426671103,3426671359,3426678271,3426679039,3426725119,3426725887,3426729471,3426729983,3426744319,3426746367,3427067647,3427067903,3427112447,3427112703,3427116543,3427117311,3427127295,3427127551,3427129599,3427129855,3427130367,3427130879,3427488767,3427489023,3427494143,3427494399,3427503615,3427503871,3427507711,3427507967,3427525887,3427526143,3427584767,3427585023,3427600895,3427601407,3427604479,3427604735,3427618303,3427618559,3427631103,3427632127,3427651071,3427651327,3427729407,3427729663,3427730431,3427730687,3427730943,3427731967,3427732223,3427732479,3427732735,3427735039,3427735295,3427736063,3427736319,3427741951,3427742207,3427742463,3427742719,3427743231,3427743487,3427743743,3427743999,3427744255,3427745279,3427745791,3427746047,3427746303,3427746559,3427746815,3427747071,3427747327,3427747583,3427747839,3427748095,3427748351,3427748607,3427749631,3427749887,3427750655,3427750911,3427752447,3427752959,3427753215,3427753471,3427753727,3427753983,3427754239,3427754495,3427754751,3427755007,3427755263,3427755519,3427755775,3427756287,3427756543,3427756799,3427757055,3427757311,3427757567,3427757823,3427758079,3427758591,3427758847,3427759103,3427759359,3427759871,3427760127,3427760895,3427761663,3427761919,3427762175,3427762431,3427762687,3427763455,3427763711,3427763967,3427764223,3427764479,3427765503,3427765759,3427766783,3427767039,3427767807,3427769599,3427770111,3427770367,3427770623,3427771391,3427771647,3427771903,3427772415,3427772671,3427772927,3427773183,3427773439,3427773695,3427773951,3427774719,3427775231,3427777279,3427777535,3427778303,3427778559,3427779071,3427779327,3427780095,3427780351,3427780863,3427781631,3427781887,3427782399,3427782655,3427783423,3427783679,3427783935,3427784703,3427785215,3427785471,3427785727,3427786751,3427787263,3427787775,3427788031,3427788287,3427788799,3427789567,3427790079,3427790847,3427791103,3427791615,3427791871,3427792383,3427792639,3427793407,3427793919,3427794175,3427794943,3427796991,3427818239,3427818495,3427831551,3427831807,3427833343,3427833599,3427860479,3428057087,3428222975,3428227071,3428237823,3428238079,3428286719,3428286975,3428296959,3428297215,3428299519,3428299775,3428301055,3428301311,3428306175,3428306431,3428315903,3428316159,3428318975,3428319231,3428399359,3428399615,3428425215,3428425727,3428434943,3428435199,3428437503,3428437759,3428496639,3428496895,3428581375,3428582399,3428582655,3428582911,3428583423,3428583679,3428584447,3428585727,3428585983,3428586239,3428587263,3428587519,3428587775,3428588031,3428588543,3428588799,3428591871,3428592639,3428593663,3428593919,3428594687,3428595199,3428595455,3428598271,3428598527,3428599039,3428599295,3428600575,3428600831,3428601599,3428602111,3428602879,3428603903,3428605183,3428605695,3428605951,3428606463,3428606719,3428607999,3428609023,3428610047,3428610559,3428610815,3428611071,3428612607,3428613887,3428614143,3428620031,3428620287,3428621823,3428622335,3428623615,3428623871,3428624639,3428625151,3428628223,3428630015,3428634623,3428634879,3428635135,3428635391,3428635647,3428635903,3428637951,3428638207,3428638463,3428638719,3428639487,3428640255,3428640511,3428640767,3428643327,3428643583,3428644095,3428644351,3428645887,3428646143,3428646399,3428646655,3428646911,3428660735,3428661503,3428684799,3428685055,3428689407,3428689663,3428690687,3428690943,3428694015,3428694271,3428695039,3428695551,3428696063,3428696831,3428697087,3428700415,3428700671,3428702463,3428702719,3428707071,3428707327,3428709631,3428709887,3428710143,3428711423,3428711935,3428712447,3428991743,3428991999,3429028607,3429028863,3429171199,3429212415,3429212671,3429236735,3429316351,3429316607,3429343231,3429343487,3429381887,3429382143,3429500927,3429502975,3429567999,3429568511,3429571583,3429572607,3429598719,3429598975,3429603583,3429603839,3429616639,3429616895,3429763071,3429765119,3429775359,3429777407,3429892095,3429957631,3430114815,3430115327,3430135551,3430135807,3430220031,3430220287,3430356991,3430357247,3430357759,3430358015,3430386175,3430386687,3430703871,3430704127,3430705151,3430706175,3430722303,3430722559,3430724607,3430725631,3430812671,3430813183,3430836735,3430837247,3430842367,3430842879,3430845439,3430845951,3430849535,3430850047,3430874623,3430875135,3430937855,3430938111,3430938879,3430939135,3431073279,3431073535,3431114495,3431114751,3431467519,3431468031,3431469055,3431517951,3431518207,3431533567,3431533823,3431534079,3431534335,3431563263,3431571455,3431572479,3431572991,3431573247,3431573503,3431574527,3431579647,3431587839,3431596287,3431602687,3431602943,3431603199,3431606271,3431607807,3431608063,3431609343,3431613439,3431613695,3431620095,3431620351,3431621631,3431622399,3431622655,3431622911,3431624703,3431624959,3431638783,3431639039,3431641855,3431642623,3431644671,3431644927,3431657471,3431658751,3431661311,3431745023,3431745279,3431745791,3431746047,3431747071,3431747327,3431748607,3431749119,3431752703,3431753215,3431753471,3431755007,3431759615,3431759871,3431792895,3431793151,3431797503,3431797759,3431799551,3431799807,3431809023,3431809279,3431809535,3431809791,3431810559,3431810815,3431811071,3431811327,3431812095,3431812351,3431812863,3431813119,3431814399,3431814655,3431816447,3431816703,3431816959,3431817215,3431825663,3431825919,3431826175,3431826431,3431834111,3431834367,3431836671,3431836927,3431837439,3431837695,3431846655,3431846911,3431850751,3431851007,3431851263,3431851519,3431852799,3431853055,3431858943,3431859199,3431862271,3431862527,3431864319,3431864575,3431865087,3431865343,3431865599,3431865855,3431866367,3431866623,3431868159,3431868415,3431868671,3431868927,3431869951,3431870719,3431874047,3431874303,3431874559,3431875071,3431877375,3431877631,3431878655,3431878911,3431879679,3431879935,3431881983,3431882239,3431882495,3431882751,3431883007,3431883263,3431884031,3431884543,3431884799,3431885311,3431886079,3431886591,3431887871,3431888127,3431890175,3431890431,3431890943,3431891199,3431894015,3431894527,3431895039,3431895295,3431896831,3431897087,3431898111,3431898367,3431900415,3431900927,3431901183,3431901439,3431903999,3431904255,3431904511,3431904767,3431906559,3431906815,3431909119,3431909375,3431909631,3431909887,3431912447,3431912703,3431914239,3431914495,3431915519,3431915775,3431916799,3431917055,3431917311,3431917567,3431919103,3431919359,3431922431,3431922687,3431922943,3431923199,3431924479,3431924991,3431926783,3431927295,3431928063,3431928319,3431931391,3431931647,3431931903,3431932415,3431932671,3431932927,3431933183,3431933439,3431934207,3431934463,3431934719,3431934975,3431935231,3431935487,3431935743,3431935999,3431936767,3431937023,3431937279,3431937791,3431939071,3431939327,3431942399,3431942911,3431943423,3431943935,3431944703,3431945727,3431945983,3431946239,3431947263,3431947519,3431950335,3431950591,3431951103,3431951359,3431952383,3431952639,3431953663,3431953919,3431954175,3431954431,3431957503,3431957759,3431959295,3431959551,3431961599,3431961855,3431962623,3431962879,3431965183,3431965695,3431965951,3431966207,3431966463,3431966719,3431966975,3431967487,3431968255,3431968511,3431969535,3431970047,3431970815,3431971327,3431974911,3431975167,3431975679,3431975935,3431976447,3431976703,3431978239,3431978495,3431978751,3431979263,3431980287,3431980543,3431981823,3431982079,3431983103,3431983359,3431983615,3431983871,3431985407,3431985663,3431985919,3431986175,3431986431,3431986687,3431987711,3431987967,3432004607,3432005631,3432009215,3432009471,3432034815,3432035071,3432036607,3432036863,3432037375,3432038399,3432054783,3432055039,3432055295,3432056831,3432079615,3432079871,3432092415,3432092671,3432106239,3432106495,3432113407,3432113663,3432133887,3432134143,3432205311,3432206335,3432324607,3432324863,3432329215,3432330239,3432361983,3432366079,3432517119,3432517631,3432533503,3432533759,3432534015,3432534271,3432534527,3432538623,3432538879,3432540159,3432540415,3432570879,3432572927,3432574719,3432574975,3432585215,3432585727,3432585983,3432613631,3432613887,3432631807,3432632319,3432634111,3432634367,3432647935,3432648191,3432659455,3432659967,3432660479,3432660991,3432663039,3432689151,3432689663,3432695807,3432697855,3432701951,3432702975,3432703231,3432726271,3432726527,3432776191,3432776447,3432777471,3432777727,3432779263,3432779519,3432781823,3432782079,3432783103,3432783359,3432783615,3432783871,3432807423,3432808447,3432809215,3432809471,3432809983,3432810239,3432812031,3432812287,3432814335,3432814591,3432861695,3432865791,3432866047,3432866303,3432866559,3432869887,3432871935,3432872959,3432873471,3432873983,3432875519,3432878079,3432878591,3432880127,3432882175,3432883199,3432883711,3432884223,3432886271,3432888319,3432888831,3432890367,3432898559,3432899583,3432900863,3432901119,3432901375,3432901631,3432901887,3432902655,3432904703,3432905215,3432905471,3432906495,3432906751,3433068543,3433068799,3433594879,3433627647,3433693183,3433693439,3433693695,3433694207,3433694975,3433695231,3433699583,3433699839,3433701119,3433701375,3433702655,3433702911,3433703167,3433703423,3433703679,3433703935,3433705727,3433706239,3433707519,3433707775,3433708031,3433708287,3433708799,3433709055,3433710847,3433711103,3433712127,3433712383,3433713919,3433714175,3433718527,3433718783,3433721599,3433721855,3433725951,3433726207,3433727743,3433727999,3433729279,3433729535,3433729791,3433730047,3433731327,3433731583,3433732351,3433732607,3433734143,3433734399,3433737983,3433738239,3433738495,3433738751,3433739007,3433739263,3433740031,3433740287,3433740799,3433741055,3433741823,3433742079,3433742847,3433743103,3433744383,3433744639,3433745151,3433745407,3433749247,3433749503,3433751807,3433752063,3433753855,3433754111,3433756927,3433757183,3433758207,3433758463,3433759487,3433759743,3433760255,3433760767,3433763583,3433764095,3433768191,3433768447,3433770751,3433771007,3433772031,3433772287,3433774591,3433774847,3433775359,3433775871,3433776639,3433776895,3433777663,3433777919,3433778687,3433778943,3433779455,3433779711,3433781247,3433781503,3433787903,3433788415,3433790975,3433791231,3433793023,3433793279,3433794815,3433795071,3433796863,3433797119,3433797375,3433797631,3433798143,3433798655,3433800447,3433800959,3433802495,3433803007,3433806079,3433806335,3433807359,3433807615,3433808127,3433808383,3433810431,3433810687,3433811711,3433811967,3433812991,3433813247,3433814527,3433814783,3433816831,3433817087,3433817343,3433817599,3433818111,3433818623,3433819647,3433819903,3433821439,3433821695,3433955583,3433956351,3433956863,3433958399,3433959167,3433959423,3433963519,3433964799,3433965055,3433966079,3433966335,3433967359,3433967615,3433968383,3433968639,3433980927,3433981183,3433981951,3433983999,3434012415,3434012927,3434014719,3434015231,3434020607,3434156031,3434156287,3434427391,3434428415,3434807551,3434810111,3434810367,3434831359,3434831615,3434833407,3434833663,3434834175,3434834431,3434840319,3434840575,3434842623,3434842879,3434872575,3435069439,3435088383,3435088639,3435134975,3435208959,3435209215,3435282687,3435284479,3435311615,3435312383,3435507199,3435511807,3435593727,3435601919,3435610111,3435626495,3435630591,3435634687,3435638783,3435642879,3435646975,3435649023,3435651071,3435655167,3435657215,3435659263,3435659775,3435660287,3435660543,3435663615,3435663871,3435664895,3435665663,3435669503,3435669759,3435670015,3435670527,3435671551,3435671807,3435672319,3435672575,3435673343,3435673599,3435675135,3435676671,3435678719,3435679487,3435679743,3435679999,3435680255,3435680511,3435681023,3435681279,3435683327,3435683583,3435683839,3435684607,3435685119,3435685375,3435688191,3435688703,3435688959,3435689215,3435689471,3435689727,3435690239,3435690495,3435691007,3435691263,3435691775,3435692031,3435692287,3435692543,3435692799,3435693055,3435694847,3435695103,3435695871,3435696127,3435699199,3435699455,3435701503,3435702015,3435702271,3435702527,3435703295,3435703551,3435704831,3435705087,3435705599,3435705855,3435706879,3435707135,3435708671,3435708927,3435709951,3435710207,3435710975,3435711231,3435711743,3435711999,3435712511,3435712767,3435713279,3435713535,3435714303,3435714559,3435715327,3435715583,3435716095,3435716351,3435718655,3435719167,3435719679,3435719935,3435720191,3435720447,3435721471,3435721727,3435723519,3435723775,3435724287,3435724799,3435725567,3435725823,3435726079,3435726335,3435727103,3435727615,3435727871,3435728127,3435728639,3435728895,3435734015,3435734271,3435735551,3435735807,3435736831,3435737087,3435737599,3435737855,3435738623,3435738879,3435739391,3435739647,3435741951,3435742207,3435742463,3435742719,3435744255,3435744511,3435747327,3435747839,3435749375,3435749631,3435750399,3435750655,3435751423,3435751679,3435754239,3435754495,3435755263,3435755519,3435755775,3435756287,3435758591,3435759103,3435759359,3435759615,3435762431,3435762943,3435763199,3435763455,3435764735,3435764991,3435766527,3435766783,3435769599,3435769855,3435771391,3435771647,3435774975,3435775231,3435778815,3435779071,3435780351,3435780607,3435781119,3435781631,3435784703,3435784959,3435785471,3435785727,3435788031,3435788287,3435789055,3435789311,3435792383,3435792639,3435794175,3435794431,3435794943,3435795199,3435796735,3435796991,3435798527,3435798783,3435800319,3435800575,3435800831,3435801087,3435804415,3435804671,3435806207,3435806463,3435807999,3435808255,3435810047,3435810559,3435812095,3435812607,3435814143,3435814399,3435814655,3435814911,3435815679,3435815935,3435818751,3435819263,3435819775,3435820031,3435821311,3435821567,3435825919,3435826175,3435826943,3435827199,3435831295,3435831551,3435832063,3435832831,3435835391,3435835647,3435838463,3435838719,3435839999,3435840255,3435841279,3435841535,3435841791,3435842047,3435842559,3435843071,3435843839,3435844351,3435844607,3435845375,3435846911,3435847167,3435848447,3435848959,3435849727,3435850239,3435850495,3435850751,3435851519,3435851775,3435852543,3435853055,3435859199,3435859455,3435862271,3435862783,3435871231,3435871487,3435871999,3435872255,3435873535,3435873791,3435874047,3435874303,3435874815,3435875071,3435876095,3435876351,3435879679,3435879935,3435881471,3435881727,3435884287,3435884799,3435887103,3435887359,3435888639,3435888895,3435890175,3435890687,3435891455,3435891711,3435895295,3435895807,3435897599,3435897855,3435902463,3435903231,3435907839,3435908095,3435908863,3435909119,3435911167,3435911423,3435912447,3435912703,3435913215,3435913471,3435916031,3435916287,3435918079,3435918335,3435918847,3435919103,3435919871,3435920127,3435920639,3435920895,3436249343,3436252415,3436253183,3436255743,3436256255,3436261375,3436262399,3436263423,3436265727,3436268287,3436278271,3436278527,3436282367,3436282623,3436283135,3436283391,3436288767,3436289023,3436289791,3436290047,3436314367,3436476415,3436478463,3436507135,3436509183,3436734463,3436736511,3436737023,3436739583,3436739839,3436740607,3436756991,3436761087,3436765183,3436807167,3436807423,3436807679,3436807935,3436808191,3436808447,3436808703,3436808959,3436809215,3436809727,3436810239,3436811263,3436811775,3436812287,3436812799,3436813311,3436813823,3436814079,3436814335,3436814847,3436815103,3436815359,3436816383,3436818431,3436818687,3436818943,3436819199,3436819455,3436822783,3436823039,3436826623,3436826879,3436827135,3436827647,3436827903,3436828159,3436828671,3436829183,3436829951,3436830207,3436830463,3436830719,3436831231,3436836095,3436836351,3437297919,3437301759,3437305855,3437307391,3437307903,3437308415,3437308927,3437310975,3437311487,3437314047,3437314303,3437317119,3437319167,3437322239,3437322495,3437325055,3437325311,3437328383,3437328639,3437328895,3437329663,3437329919,3437330431,3437331711,3437331967,3437332479,3437332735,3437334015,3437334271,3437334783,3437335551,3437336063,3437336319,3437341695,3437342207,3437343231,3437343487,3437346303,3437346559,3437350911,3437351423,3437353471,3437353727,3437354751,3437355007,3437356031,3437356543,3437358847,3437359103,3437428735,3437489407,3437489663,3437691391,3437691647,3437691903,3437692415,3437692671,3437693439,3437693695,3437693951,3437694207,3437695231,3437695999,3437696767,3437702911,3437703167,3437703423,3437703679,3437703935,3437704191,3437704703,3437706495,3437706751,3437707263,3437707519,3437707775,3437708031,3437708287,3437708799,3437709311,3437709823,3437710079,3437710335,3437712639,3437713663,3437715199,3437715455,3437715711,3437715967,3437716991,3437717247,3437718527,3437720063,3437723135,3437725183,3437725695,3437726207,3437726463,3437726975,3437734399,3437734655,3437741311,3437741567,3437748223,3437748479,3437748991,3437749247,3437749503,3437749759,3437750015,3437750271,3437750527,3437751551,3437751807,3437752063,3437752319,3437752575,3437755135,3437755647,3437755903,3437756159,3437756415,3437772799,3437776895,3437805567,3437805823,3437806079,3437806335,3437806591,3437806847,3437807871,3437808127,3437809407,3437809663,3437810431,3437811711,3437812223,3437812479,3437812735,3437812991,3437813503,3437821951,3437822207,3437823999,3437824255,3437824767,3437825023,3437825535,3437826047,3437828095,3437828351,3437828863,3437829375,3437830399,3437830911,3437831167,3437831423,3437833215,3437833471,3437833983,3437834239,3437835007,3437835263,3437836543,3437836799,3437841151,3437841407,3437841919,3437842175,3437844479,3437844991,3437845759,3437846015,3437846271,3437846527,3437846783,3437847039,3437848063,3437848319,3437849855,3437850111,3437850367,3437850879,3437851135,3437851391,3437851647,3437851903,3437854463,3437854719,3437855999,3437856255,3437858047,3437858303,3437858815,3437859071,3437859583,3437859839,3437862399,3437862655,3437865983,3437866495,3437867519,3437867775,3437868287,3437868799,3437869823,3437870847,3437873151,3437873407,3437874431,3437874943,3437875199,3437875455,3437876991,3437877247,3437879039,3437879295,3437881087,3437881343,3437961215,3437964287,3437979647,3437979903,3437980159,3438006271,3438010367,3438014463,3438018559,3438034943,3438051327,3438084095,3438116863,3438118655,3438118911,3438137087,3438137343,3438139391,3438140415,3438141951,3438142207,3438167551,3438167807,3438215423,3438215679,3438216191,3438217983,3438218239,3438218751,3438219263,3438219519,3438219775,3438221311,3438221567,3438246911,3438247167,3438251775,3438252031,3438252543,3438252799,3438261759,3438262015,3438271487,3438272511,3438280447,3438428159,3438430207,3438432255,3438460927,3438465023,3438542847,3438608383,3438611711,3438611967,3438641407,3438641663,3438643711,3438644479,3438645759,3438646015,3438646527,3438647039,3438647295,3438647551,3438650367,3438650623,3438651391,3438651647,3438652159,3438652671,3438652927,3438653183,3438654463,3438654719,3438657279,3438657535,3438658815,3438659071,3438660095,3438660351,3438660607,3438660863,3438661119,3438661375,3438662655,3438662911,3438664447,3438664959,3438668287,3438668799,3438669823,3438670079,3438670847,3438671103,3438671359,3438671615,3438681855,3438682111,3438715903,3438716671,3438716927,3438717183,3438717439,3438718719,3438718975,3438719231,3438719743,3438719999,3438720255,3438720511,3438721535,3438721791,3438722047,3438742527,3438742783,3438745087,3438745599,3438746111,3438746367,3438749695,3438749951,3438750463,3438750719,3438752255,3438752511,3438753023,3438753279,3438753535,3438753791,3438754047,3438754303,3438755583,3438756095,3438759167,3438759423,3438761471,3438761727,3438761983,3438762751,3438763263,3438763519,3438764031,3438764287,3438766847,3438767359,3438770943,3438771455,3438772735,3438772991,3438774783,3438775039,3438776575,3438776831,3438777343,3438777599,3438783743,3438784255,3438785535,3438785791,3438787583,3438787839,3438788095,3438788351,3438788607,3438788863,3438790399,3438790655,3438794495,3438795007,3438799871,3438800127,3438800639,3438801151,3438803711,3438803967,3439070975,3439071231,3439219967,3439220223,3447991551,3447991807,3447992319,3447994367,3448016895,3448018943,3448319999,3448324095,3448371455,3448371711,3448371967,3448372223,3448377343,3448377855,3448379391,3448379647,3448379903,3448380415,3448380671,3448381183,3448381439,3448381695,3448381951,3448382719,3448382975,3448389631,3448389887,3448443135,3448443391,3448443903,3448444415,3448444927,3448445951,3448446719,3448446975,3448455167,3448455679,3448455935,3448456959,3448457215,3448500479,3448500735,3448546815,3448547327,3448668159,3448669183,3448693759,3448694783,3448899327,3448899839,3448901631,3448901887,3448904447,3448904703,3448905215,3448905727,3448905983,3448906239,3448906495,3448907007,3448907519,3448907775,3448912127,3448912383,3448913151,3448913407,3448913663,3448913919,3448916479,3448916735,3448919039,3448919295,3448919551,3448919807,3448921599,3448921855,3448922111,3448922367,3448923391,3448923647,3448924671,3448924927,3448925183,3448925439,3448931071,3448931583,3448934911,3448935167,3448936703,3448936959,3448937215,3448937471,3448939519,3448939775,3448941567,3448941823,3448945151,3448945663,3448946431,3448946687,3448947455,3448947711,3448952319,3448952575,3448953343,3448953599,3448954111,3448954367,3448955391,3448955647,3448955903,3448956159,3448957951,3448958463,3448959999,3448960255,3448960511,3448960767,3448987647,3448989695,3448990719,3448991743,3448995839,3449004031,3449094143,3449096191,3449100287,3449100799,3449102079,3449102335,3449141247,3449141503,3449141759,3449142015,3449142783,3449143295,3449159679,3449160703,3449161215,3449163519,3449163775,3449164799,3449165311,3449165567,3449166079,3449166847,3449167103,3449167359,3449167615,3449168383,3449168895,3449169151,3449169663,3449170431,3449170687,3449171199,3449172223,3449172479,3449172735,3449172991,3449173247,3449173503,3449173759,3449174015,3449174271,3449174783,3449175039,3449175295,3449175551,3449175807,3449176063,3449177599,3449178111,3449178367,3449178623,3449179903,3449180671,3449186303,3449186559,3449186815,3449187071,3449189631,3449189887,3449190655,3449190911,3449195775,3449196031,3449196287,3449198847,3449199103,3449199615,3449199871,3449202687,3449204479,3449204735,3449205759,3449206271,3449207039,3449208575,3449209599,3449209855,3449212415,3449212671,3449212927,3449213183,3449213695,3449213951,3449215487,3449215743,3449215999,3449220351,3449220863,3449221119,3449221375,3449222655,3449224447,3449224703,3449224959,3449225471,3449254143,3449254911,3449273599,3449273855,3449278975,3449279487,3449290495,3449390079,3449391103,3449414655,3449415423,3449651455,3449651967,3449769727,3449769983,3449773055,3449773311,3449792767,3449793023,3449813759,3449814015,3449823231,3449824255,3449843199,3449843711,3450079999,3450080255,3450082047,3450082303,3450084863,3450085119,3450088959,3450089215,3450093567,3450101759,3450103807,3450104831,3450105855,3450107903,3450109951,3450118143,3450123263,3450123775,3450124287,3450126335,3450128383,3450129407,3450130431,3450131967,3450132479,3450133503,3450134527,3450136575,3450139135,3450139647,3450140671,3450142719,3450217215,3450217471,3450253567,3450253823,3450263039,3450263295,3450272511,3450272767,3450287615,3450288127,3450334719,3450335231,3450580479,3450580735,3450612479,3450612735,3450632191,3450634239,3450699007,3450699263,3450707967,3450710015,3450731519,3450732543,3450773503,3450777599,3450852351,3450853375,3450940415,3450940671,3450943487,3450943743,3450950655,3450951423,3450953727,3450953983,3450959871,3450960127,3450962943,3450963455,3450979583,3450979839,3450980095,3450980351,3450986495,3450986751,3450988799,3450989055,3451032319,3451032575,3451032831,3451036415,3451036671,3451037695,3451037951,3451039743,3451039999,3451040255,3451040511,3451041535,3451041791,3451042047,3451043583,3451043839,3451170303,3451170559,3451187967,3451188223,3451207423,3451207679,3451236351,3451236607,3451289855,3451290111,3451293439,3451293695,3451294207,3451294463,3451302143,3451302399,3451310079,3451310335,3451312383,3451312895,3451371519,3451371775,3451502847,3451503103,3451506943,3451507199,3451509247,3451509503,3451715839,3451724543,3451725311,3451726847,3451727359,3451737343,3451737599,3451740927,3451741183,3451741695,3451742207,3451744255,3451745535,3451749887,3451750143,3451756543,3451756799,3451766783,3451767295,3451767551,3451767807,3451776511,3451777023,3451780863,3451879423,3451879935,3451896319,3451896575,3451912191,3452174335,3452182527,3452186623,3452194047,3452194303,3452204543,3452204799,3452305407,3452313599,3452317695,3452321791,3452329983,3452332031,3452333055,3452334079,3452338175,3452370943,3452371199,3452371455,3452420351,3452420607,3452436479,3452502015,3452506111,3452509695,3452510207,3452516095,3452516351,3452652031,3452652543,3452689407,3452690431,3452715007,3452723199,3452724735,3452724991,3452725247,3452764415,3452765183,3452765439,3452765951,3452766207,3452766719,3452766975,3452768767,3452769023,3452769535,3452769791,3452770047,3452770303,3452771071,3452771327,3452771583,3452771839,3452773887,3452774655,3452774911,3452775167,3452777471,3452777727,3452778495,3452778751,3452779007,3452779263,3452779775,3452780031,3452780543,3452781055,3452781567,3452781823,3452782079,3452782335,3452783359,3452783871,3452784639,3452784895,3452785919,3452786175,3452788991,3452789247,3452790271,3452791039,3452791295,3452791551,3452793087,3452793343,3452796159,3452796415,3452797183,3452797439,3452799487,3452799743,3452801535,3452801791,3452802559,3452802815,3452803327,3452803583,3452806143,3452806911,3452807167,3452807423,3452807679,3452807935,3452808191,3452808447,3452809727,3452809983,3452810239,3452811007,3452811519,3452811775,3452812287,3452812543,3452814079,3452814335,3452815359,3452815615,3452816127,3452816383,3452816639,3452816895,3452817663,3452817919,3452818431,3452819455,3452819967,3452820479,3452820735,3452820991,3452821503,3452822527,3452824063,3452824319,3452825599,3452826111,3452827135,3452827391,3452828927,3452829439,3452895231,3452895487,3452902399,3452902655,3452912127,3452912383,3452914175,3452914431,3452919551,3452919807,3452920831,3452923391,3452924159,3452924415,3452931327,3452931583,3452933119,3452933631,3452934911,3452936191,3452938751,3452939263,3452942847,3452943103,3452953087,3452953343,3452958207,3452958719,3452960511,3453026559,3453028095,3453028351,3453028607,3453028863,3453029375,3453092095,3453096703,3453097983,3453099775,3453101311,3453108223,3453109759,3453110015,3453123839,3453124095,3453128959,3453129215,3453129983,3453130239,3453133823,3453134335,3453134847,3453139455,3453140991,3453149183,3453149439,3453151231,3453151743,3453151999,3453155327,3453155583,3453157119,3453157631,3453159423,3453159935,3453163519,3453164031,3453178623,3453178879,3453180671,3453180927,3453192447,3453192703,3453195263,3453195519,3453196799,3453197055,3453197311,3453206527,3453207551,3453207807,3453208575,3453208831,3453209599,3453209855,3453210367,3453210623,3453213183,3453214719,3453215231,3453215999,3453217023,3453217791,3453219327,3453219583,3453219839,3453220607,3453222911,3453223423,3453224191,3453224447,3453227263,3453227775,3453233151,3453233407,3453241343,3453241599,3453241855,3453242111,3453243391,3453243647,3453245183,3453245439,3453247487,3453247743,3453247999,3453248255,3453250303,3453250559,3453252607,3453252863,3453253887,3453254143,3453254399,3453254655,3453255167,3453255423,3453256959,3453257215,3453259007,3453259263,3453264639,3453264895,3453265151,3453265407,3453266687,3453266943,3453267199,3453267455,3453267711,3453267967,3453270783,3453271295,3453272063,3453272319,3453272831,3453273087,3453274111,3453274367,3453274623,3453274879,3453276159,3453276671,3453277183,3453277439,3453278207,3453278463,3453278975,3453279231,3453279743,3453280255,3453281279,3453281535,3453283327,3453283583,3453284095,3453284607,3453285631,3453285887,3453403135,3453403903,3453404159,3453404927,3453405183,3453405951,3453406207,3453406463,3453406719,3453406975,3453407231,3453407743,3453408255,3453409023,3453409535,3453411327,3453419519,3453421055,3453421311,3453421823,3453422079,3453422335,3453422591,3453423359,3453424127,3453424383,3453425151,3453427711,3453552383,3453552895,3453554175,3453554431,3453554943,3453555199,3453555967,3453556223,3453557503,3453557759,3453599999,3453600255,3453603839,3453604095,3453607935,3453608959,3453609983,3453610495,3453610751,3453611007,3453611263,3453612543,3453613055,3453613311,3453614591,3453615103,3453615359,3453615615,3453615871,3453616127,3453736959,3453737215,3453785087,3453785343,3453794303,3453794559,3453796351,3453800447,3453805567,3453805823,3454274303,3454274559,3454278143,3454278399,3454279679,3454279935,3454280959,3454281471,3454281983,3454282239,3454284287,3454284799,3454300159,3454300415,3454302719,3454302975,3454386175,3454386687,3454436351,3454436607,3454497791,3454498815,3454599423,3454601215,3454603007,3454603519,3454604031,3454604799,3454607359,3454608127,3454608383,3454609151,3454611455,3454617343,3454617599,3454617855,3454618111,3454618367,3454618623,3454619647,3454631423,3454631935,3454634751,3454636031,3454636287,3454636543,3454636799,3454637055,3454638847,3454639103,3454639359,3454639615,3454645503,3454645759,3454650623,3454650879,3454652159,3454652415,3454661631,3454662655,3454664447,3454672895,3454681087,3454694143,3454694399,3454694655,3454695423,3454697471,3454702335,3454702847,3454705663,3454705919,3454706431,3454706687,3454706943,3454707199,3454707455,3454707967,3454708223,3454708735,3454708991,3454709759,3454710015,3454710783,3454711039,3454711807,3454712831,3454713087,3454713343,3454713855,3454714111,3454714879,3454715135,3454715391,3454715647,3454716415,3454716671,3454721023,3454721535,3454722559,3454723071,3454723327,3454725119,3454725375,3454726655,3454726911,3454727423,3454727679,3454729727,3454729983,3454730239,3454731775,3454732031,3454732287,3454796031,3454808831,3454809087,3454809599,3454809855,3454810111,3454810367,3454813951,3454814207,3454814975,3454815231,3454815743,3454816255,3454816511,3454816767,3454821631,3454821887,3454828287,3454828543,3454838783,3454839039,3454855679,3454855935,3454861055,3454861567,3454867711,3454867967,3454881535,3454881791,3454883839,3454915071,3454926591,3454932223,3454932479,3454934271,3454934527,3454935807,3454936063,3454936575,3454936831,3454938879,3454939135,3454939647,3454939903,3454941695,3454941951,3454942207,3454942719,3454943231,3454959615,3455002623,3455003391,3455035391,3455035903,3455067903,3455068159,3455132159,3455133695,3455357951,3455358975,3455359231,3455359487,3455582207,3455583743,3455584255,3455584767,3455588351,3455588863,3455589119,3455589375,3455589631,3455591679,3455591935,3455592191,3455592447,3455592703,3455594239,3455594495,3455594751,3455595007,3455595519,3455595775,3455596031,3455596543,3455596799,3455597311,3455597567,3455598847,3455599103,3455599359,3455599615,3455600127,3455600639,3455600895,3455601151,3455601407,3455601919,3455602175,3455602687,3455615487,3455616255,3455616511,3455616767,3455617279,3455619071,3455619839,3455620095,3455621631,3455622143,3455624191,3455624447,3455627519,3455628287,3455628543,3455628799,3455630847,3455631103,3455631359,3455632639,3455632895,3455633407,3455634431,3455635455,3455635711,3455635967,3455636223,3455636479,3455637759,3455638271,3455638527,3455639551,3455639807,3455640063,3455640319,3455640575,3455640831,3455641087,3455641343,3455641599,3455642879,3455643135,3455644159,3455644415,3455644927,3455645439,3455645695,3455645951,3455646719,3455646975,3455647231,3455647487,3455647743,3455713279,3455778815,3455802623,3455802879,3455804927,3455805183,3455830015,3455830271,3455831039,3455832063,3455832575,3455832831,3455833087,3455834111,3455834367,3455834623,3455835391,3455835647,3455835903,3455842559,3455842815,3455843071,3455843327,3455843583,3455843839,3455846911,3455847167,3455850495,3455850751,3455854847,3455855103,3455867903,3455868927,3455871999,3455872255,3455881215,3455881471,3455886847,3455887103,3455887615,3455887871,3455899903,3455900159,3455900671,3455900927,3455905279,3455905791,3455906047,3455908607,3455908863,3455909887,3455975423,3456016383,3456024575,3456106495,3456107519,3456108543,3456110591,3456111103,3456111615,3456112639,3456112895,3456113663,3456114687,3456122879,3456124927,3456125951,3456126975,3456129023,3456129279,3456129535,3456131071,3456139263,3456140287,3456141311,3456141567,3456141823,3456142079,3456142335,3456145407,3456146431,3456147455,3456155647,3456163839,3456172031,3456188415,3456192511,3456193535,3456194047,3456194559,3456195583,3456196095,3456196351,3456204799,3456237567,3456303103,3456303359,3456303615,3456304895,3456305151,3456306175,3456306431,3456307455,3456307711,3456311295,3456892927,3456958463,3457027583,3457027839,3457029119,3457029631,3457029887,3457030655,3457030911,3457031423,3457032959,3457033215,3457033471,3457033727,3457035263,3457035519,3457036543,3457036799,3457040127,3457040383,3457040639,3457040895,3457041151,3457041407,3457041663,3457041919,3457043199,3457043455,3457044735,3457044991,3457045759,3457046015,3457048575,3457048831,3457051903,3457052159,3457052671,3457052927,3457053695,3457053951,3457054207,3457054719,3457055231,3457055487,3457056255,3457056511,3457058815,3457059071,3457061631,3457061887,3457062911,3457063167,3457063679,3457064191,3457067519,3457067775,3457068799,3457069055,3457070079,3457070335,3457070847,3457071103,3457071359,3457071615,3457072639,3457072895,3457075199,3457075455,3457075711,3457075967,3457076735,3457076991,3457077503,3457077759,3457078783,3457079039,3457081087,3457081343,3457081855,3457082623,3457084671,3457084927,3457085695,3457085951,3457086207,3457086719,3457087999,3457088255,3457088511,3457088767,3457122303,3457122815,3457136639,3457138687,3457143039,3457143295,3457179135,3457179391,3457714431,3457714687,3457714943,3457715455,3457715711,3457715967,3457716991,3457717247,3457718271,3457718527,3457722367,3457722879,3457723391,3457723903,3457755647,3457756159,3457756415,3457757183,3457761279,3457761535,3457762047,3457762559,3457762815,3457763583,3457763839,3457764607,3457764863,3457765375,3457765631,3457765887,3457859839,3457860095,3457986559,3457986815,3457987583,3458195455,3458196479,3458196735,3458197503,3458197759,3458277375,3458277631,3458284031,3458284287,3458794239,3458794495,3458795007,3458795263,3458811903,3458812159,3458812415,3458813951,3458818047,3458820095,3458820351,3458820607,3458820863,3458821119,3458821887,3458822143,3458835455,3458835711,3458836479,3458836991,3458837503,3458839551,3458840575,3458841599,3458842367,3458842623,3458859007,3458875391,3458883583,3458891775,3458908159,3458909183,3458924543,3458990079,3459055615,3459121151,3459134975,3459135231,3459186687,3459230975,3459231231,3459232255,3459232511,3459252223,3459252479,3459252735,3459256831,3459257087,3459258367,3459259391,3459264767,3459265023,3459265791,3459266559,3459273727,3459274751,3459284991,3459293183,3459304447,3459305471,3459312639,3459312895,3459327999,3459329023,3459330047,3459335935,3459336191,3459343359,3459343615,3459362815,3459364863,3459366911,3459368959,3459371007,3459373055,3459375103,3459383807,3459384063,3459384319,3459384575,3459385343,3459385599,3459387391,3459387647,3459390207,3459390463,3459390719,3459390975,3459392511,3459392767,3459393535,3459393791,3459394815,3459395583,3459395839,3459396095,3459396863,3459397119,3459397375,3459397631,3459397887,3459398143,3459398655,3459398911,3459400191,3459400447,3459401215,3459401983,3459403775,3459404031,3459404543,3459405311,3459405823,3459406079,3459406335,3459406591,3459407103,3459407359,3459408895,3459409151,3459409919,3459410175,3459413247,3459414015,3459414271,3459414527,3459415039,3459415295,3459417087,3459417343,3459417855,3459418111,3459422207,3459422463,3459425279,3459425791,3459426815,3459427071,3459428095,3459428351,3459428607,3459428863,3459429119,3459429631,3459430143,3459430399,3459430655,3459430911,3459432191,3459432447,3459433983,3459434239,3459435519,3459436031,3459437311,3459438079,3459438847,3459439103,3459439615,3459439871,3459440639,3459440895,3459441151,3459441407,3459443199,3459443967,3459444479,3459444991,3459445503,3459446015,3459446527,3459447039,3459448063,3459448319,3459448831,3459449087,3459449343,3459450623,3459450879,3459456511,3459456767,3459457279,3459457535,3459457791,3459512319,3459513855,3459514623,3459514879,3459518719,3459518975,3459519487,3459519743,3459520767,3459521023,3459523071,3459523839,3459525631,3459525887,3459528447,3459528703,3459530495,3459530751,3459531263,3459531519,3459533311,3459534335,3459536639,3459536895,3459537407,3459537663,3459538687,3459538943,3459539199,3459539455,3459542015,3459542271,3459544319,3459544575,3459546111,3459546367,3459547647,3459547903,3459550719,3459550975,3459551231,3459551487,3459552255,3459552767,3459553279,3459553535,3459556607,3459557119,3459558911,3459559167,3459559679,3459559935,3459560447,3459560703,3459561983,3459562239,3459563519,3459563775,3459564543,3459564799,3459566847,3459567103,3459568639,3459568895,3459569407,3459569663,3459571455,3459571711,3459572991,3459573503,3459574015,3459574271,3459576575,3459576831,3459577599,3459577855,3459592191,3459592447,3459592703,3459592959,3459593215,3459593471,3459593727,3459593983,3459594239,3459596031,3459596287,3459615231,3459615487,3459615743,3459615999,3459616255,3459616767,3459620863,3459624959,3459629055,3459645439,3459649535,3459653631,3459657727,3459686399,3459689983,3459690239,3459690751,3459691007,3459691263,3459691519,3459691775,3459692543,3459710975,3459711231,3459714047,3459714303,3459714559,3459714815,3459715839,3459716095,3459717631,3459717887,3459718399,3459718655,3459719679,3459720191,3459720447,3459720703,3459720959,3459721215,3459721471,3459721727,3459723007,3459723263,3459724031,3459724287,3459724543,3459724799,3459725567,3459725823,3459726847,3459727103,3459731455,3459735551,3459752959,3459753983,3459847679,3459847935,3459852543,3459852799,3459907583,3459907839,3459909375,3459909631,3459910911,3459911167,3459911679,3459911935,3459912703,3459912959,3459914751,3459915007,3459917055,3459917311,3459918847,3459919103,3459919615,3459919871,3459920127,3459920639,3459922175,3459922431,3459923199,3459923455,3459925759,3459926015,3459928319,3459928575,3459928831,3459929087,3459929599,3459929855,3459930111,3459930367,3459930879,3459931135,3459932415,3459932671,3459934207,3459934463,3459936255,3459936511,3459937535,3459938303,3459940095,3459940351,3459941887,3459942399,3459944959,3459945215,3459948287,3459948543,3459948799,3459949055,3459949567,3459950079,3459950335,3459951103,3459952127,3459952383,3459952639,3459952895,3459954431,3459954687,3459955455,3459955967,3459958015,3459958271,3459961087,3459961343,3459963647,3459963903,3459970047,3459970303,3459971583,3459971839,3459972095,3459972351,3460177919,3460178431,3460178943,3460179967,3460180991,3460182015,3460183039,3460184063,3460202495,3460204543,3460206591,3460210687,3460210943,3460211199,3460218879,3460227071,3460235263,3460440063,3460440319,3460440575,3460441087,3460441599,3460442879,3460453631,3460453887,3460458239,3460458495,3460482303,3460482559,3460484095,3460484351,3460564479,3460564735,3460566271,3460566527,3460567807,3460568063,3460568319,3460568831,3460570623,3460570879,3460572671,3460572927,3460578559,3460578815,3460579583,3460579839,3460580607,3460581119,3460581631,3460581887,3460583679,3460583935,3460586239,3460586495,3460587007,3460587519,3460587775,3460588031,3460588799,3460589311,3460590591,3460590847,3460591615,3460591871,3460593407,3460593663,3460594943,3460595199,3460598015,3460598527,3460599039,3460599295,3460599551,3460599807,3460603391,3460603647,3460605439,3460605695,3460609023,3460609535,3460610047,3460610559,3460612863,3460613119,3460614655,3460614911,3460616447,3460616703,3460617727,3460617983,3460621055,3460621567,3460623615,3460623871,3460626687,3460626943,3460627199,3460627455,3460628479,3460628735,3460628991,3460629247,3460631551,3460631807,3460632319,3460632575,3460633343,3460633599,3460634367,3460634623,3460639487,3460639743,3460641791,3460642047,3460642815,3460643071,3460643583,3460643839,3460646143,3460646911,3460647423,3460648447,3460649727,3460649983,3460650239,3460650495,3460652031,3460652287,3460652799,3460653055,3460654335,3460654847,3460655103,3460655359,3460657407,3460657663,3460658431,3460658687,3460658943,3460659199,3460660991,3460661247,3460663039,3460663295,3460665087,3460665343,3460665855,3460666111,3460666623,3460667135,3460667647,3460667903,3460668671,3460668927,3460670207,3460670463,3460671231,3460671487,3460672255,3460672511,3460673791,3460674047,3460674559,3460674815,3460675327,3460675583,3460675839,3460676095,3460677375,3460677631,3460678911,3460679167,3460679423,3460680191,3460681215,3460681727,3460682751,3460683263,3460684031,3460684287,3460685055,3460685311,3460686335,3460686591,3460686847,3460687359,3460691967,3460692479,3460693247,3460693503,3460762367,3460762623,3460763391,3460763647,3460785151,3460785919,3460794623,3460794879,3460797439,3460797951,3460878335,3460878591,3460880383,3460882431,3460892159,3460892415,3460893439,3460893695,3460894463,3460894719,3460894975,3460895231,3460895487,3460896255,3460896511,3460896767,3460897023,3460897279,3460899327,3460899583,3460901375,3460901631,3460903935,3460904191,3460907263,3460907519,3460908287,3460908543,3460908799,3460910335,3460910591,3460910847,3460912127,3460912383,3460912639,3460912895,3460913407,3460913663,3460916223,3460916479,3460916735,3460916991,3460917759,3460918015,3460918271,3460918527,3460918783,3460919039,3460919295,3460920319,3460920575,3460920831,3460921343,3460921599,3460921855,3460924159,3460924415,3460925183,3460925695,3460925951,3460926207,3460926463,3460926719,3460926975,3460927231,3460929023,3460929279,3460929535,3460929791,3460930047,3460931071,3460931327,3460931583,3460931839,3460932095,3460932351,3460932607,3460932863,3460933119,3460933887,3460934143,3460934655,3460934911,3460935167,3460935423,3460935679,3460935935,3460936191,3460936447,3460936703,3460936959,3460937215,3460937471,3460937727,3460937983,3460938239,3460938495,3460939263,3460939519,3460940287,3460940543,3460941311,3460941567,3460941823,3460942079,3460942335,3460943359,3460943615,3460943871,3460944383,3460944639,3460944895,3460945151,3460945663,3460945919,3460946687,3460946943,3460947199,3460947455,3460947711,3460947967,3460948991,3460949247,3460950271,3460950527,3460951295,3460951551,3460952319,3460952575,3460952831,3460953599,3460953855,3460954111,3460954623,3460954879,3460955135,3460955391,3460955647,3461021695,3461031935,3461032191,3461087231,3461286143,3461286399,3461330943,3461331199,3461331711,3461331967,3461332223,3461332479,3461332735,3461332991,3461357567,3461358079,3461358591,3461358847,3461362687,3461362943,3461363967,3461364223,3461364479,3461364735,3461409023,3461409279,3461410047,3461410303,3461410559,3461414911,3461419007,3461423103,3461425151,3461425407,3461441535,3461441791,3461442047,3461442303,3461442559,3461442815,3461443071,3461443327,3461489407,3461489663,3461489919,3461490175,3461490943,3461491199,3461492223,3461492991,3461494015,3461494271,3461495039,3461495551,3461508607,3461509119,3461513727,3461513983,3461514239,3461514495,3461514751,3461515007,3461515263,3461515775,3461516031,3461516287,3461516543,3461549311,3461549567,3461549823,3461550079,3461556223,3461556479,3461556735,3461557503,3461557759,3461558015,3461558271,3461570559,3461571839,3461572607,3461572863,3461573119,3461573375,3461573631,3461574655,3461575679,3461575935,3461577727,3461578239,3461578751,3461581567,3461581823,3461583871,3461584383,3461611519,3461615615,3461619711,3461627903,3461631999,3461632511,3461633023,3461636095,3461644287,3461660671,3461661951,3461662207,3461662463,3461662719,3461663231,3461668863,3461672959,3461677055,3461677311,3461677567,3461678079,3461679103,3461680127,3461680639,3461681151,3461682175,3461682431,3461683199,3461683711,3461683967,3461684223,3461685247,3461693439,3461718015,3461719039,3461720063,3461724159,3461725183,3461725695,3461726207,3461743871,3461744127,3461745663,3461745919,3461746175,3461746431,3461746943,3461747199,3461748479,3461748735,3461748991,3461749247,3461751295,3461751551,3461752063,3461752319,3461753855,3461754111,3461754367,3461754623,3461755647,3461755903,3461756159,3461756671,3461757951,3461758207,3461758975,3461759487,3461759743,3461759999,3461762815,3461763071,3461763839,3461764607,3461765887,3461766143,3461766911,3461767167,3461769983,3461770239,3461771007,3461771263,3461772031,3461772799,3461773311,3461773567,3461773823,3461774591,3461775871,3461776127,3461776383,3461776639,3461776895,3461777407,3461777663,3461778431,3461782015,3461782271,3461786879,3461787391,3461787903,3461788159,3461788671,3461788927,3461789695,3461789951,3461791487,3461791743,3461792255,3461792511,3461793279,3461793535,3461794047,3461795327,3461795839,3461796351,3461797375,3461797631,3461798399,3461798655,3461799679,3461800447,3461803007,3461803263,3461803519,3461803775,3461804031,3461804287,3461805311,3461805823,3461806847,3461807103,3461807871,3461808127,3461873663,3461897727,3461897983,3461905407,3461905663,3461940735,3461940991,3461948159,3461948415,3461948927,3461949183,3461949695,3461950207,3461950719,3461951231,3461953535,3461953791,3461968127,3461968383,3461970431,3461970687,3461972223,3461972479,3461977855,3461978111,3461984767,3461985023,3461992703,3461992959,3461999871,3462000127,3462000895,3462001151,3462001919,3462002431,3462148607,3462148863,3462163967,3462164223,3462168319,3462168575,3462169599,3462169855,3462170623,3462171135,3462171391,3462171647,3462173695,3462173951,3462174463,3462174719,3462179839,3462180095,3462181375,3462182143,3462190847,3462191103,3462191871,3462192127,3462194175,3462194431,3462231039,3462231295,3462231807,3462232063,3462268415,3462268671,3462276863,3462277119,3462290175,3462290431,3462314239,3462314495,3462321407,3462321663,3462321919,3462322175,3462323711,3462323967,3462339071,3462339583,3462340607,3462340863,3462350847,3462351103,3462633471,3462633727,3462660607,3462660863,3462661119,3462661375,3463004159,3463006207,3463089151,3463090175,3463116799,3463118847,3463156735,3463157759,3463184383,3463192575,3463192831,3463194623,3463198719,3463213311,3463213823,3463214079,3463215103,3463243775,3463245055,3463249663,3463518207,3463520255,3463634943,3463638783,3463639039,3463640063,3463640319,3463640575,3463640831,3463641855,3463642623,3463643135,3463708671,3463774207,3463905279,3463921663,3463925759,3463938047,3463946239,3463946495,3463949055,3463949311,3463949567,3463949823,3463951103,3463951359,3463953407,3463953663,3464108031,3464108287,3464127999,3464128255,3464129535,3464130047,3464167423,3464167679,3464169215,3464169471,3464171775,3464172031,3464173567,3464173823,3464175103,3464175359,3464180735,3464200703,3464200959,3464201471,3464201727,3464201983,3464202239,3464202495,3464202751,3464203007,3464203263,3464203519,3464204799,3464205055,3464205311,3464205567,3464205823,3464206079,3464206335,3464206591,3464206847,3464207103,3464207359,3464207615,3464207871,3464208127,3464208383,3464216575,3464244223,3464245247,3464261631,3464265727,3464340479,3464341503,3464349695,3464351743,3464384511,3464388607,3464391935,3464392191,3464392703,3464392959,3464394751,3464396799,3464421631,3464421887,3464424959,3464425215,3464425471,3464425727,3464426495,3464426751,3464429311,3464429567,3464478719,3464479743,3464480767,3464481791,3464482815,3464483839,3464484095,3464484351,3464484607,3464485119,3464485375,3464485887,3464486911,3464495103,3464626175,3464626431,3464626687,3464627199,3464627967,3464628735,3464628991,3464630271,3464631295,3464635391,3464635647,3464637183,3464637439,3464639487,3464639743,3464641791,3464642047,3464642559,3464642815,3464643071,3464647935,3464648191,3464648703,3464649215,3464650239,3464664319,3464684543,3464684799,3464688383,3464688639,3464691711,3464740863,3464741119,3464744447,3464744703,3464744959,3464749055,3464757247,3464769535,3464773631,3464814591,3464815615,3465154559,3465158655,3465177087,3465179135,3465412607,3465413119,3465413375,3465413631,3465462783,3465463039,3465463295,3465463551,3465471999,3465472511,3465472767,3465473023,3465474815,3465475071,3465475327,3465475583,3465794815,3465795071,3465806591,3465810943,3465811455,3465816063,3465822207,3465823231,3465953279,3465953535,3465954047,3465954559,3465955071,3465955583,3465961983,3465962239,3465963775,3465964031,3465965567,3465965823,3466067967,3466068735,3466069247,3466069503,3466070015,3466070271,3466071295,3466073087,3466075135,3466075647,3466076159,3466076415,3466076671,3466077183,3466077695,3466077951,3466078463,3466078719,3466078975,3466079231,3466079743,3466079999,3466080255,3466080511,3466080767,3466081535,3466158079,3466166271,3466290687,3466290943,3466489855,3466490111,3466674175,3466678271,3466688767,3466689023,3466690303,3466690559,3466707199,3466707455,3466709247,3466709503,3466710271,3466710527,3466710783,3466711039,3466713087,3466713599,3466715135,3466715391,3466716159,3466716415,3466717439,3466717695,3466717951,3466718207,3466756095,3466772479,3466786047,3466786303,3466790655,3466790911,3466791167,3466791423,3466792447,3466792703,3466794751,3466795263,3466796031,3466796287,3466803199,3466803967,3466804479,3466804991,3466807039,3466807295,3466808575,3466808831,3466809087,3466809343,3466810111,3466810623,3466811903,3466812415,3466812671,3466812927,3466813183,3466813695,3466816511,3466816767,3466818559,3466818815,3466819583,3466819839,3466823935,3466824191,3466824703,3466824959,3466825471,3466825727,3466826495,3466826751,3466828287,3466828543,3466829823,3466830079,3466830335,3466830591,3466832383,3466832639,3466833919,3466834175,3466838783,3466839039,3466840063,3466840319,3466843903,3466844159,3466844415,3466844671,3466845439,3466845695,3466846207,3466854399,3466860799,3466861311,3466901503,3466903551,3466907647,3466909695,3466910463,3466910719,3466914303,3466914559,3466915327,3466915583,3466958079,3466958335,3467023871,3467024127,3467024639,3467024895,3467027967,3467028223,3467028991,3467029247,3467029759,3467030015,3467031295,3467031551,3467032063,3467032319,3467033599,3467033855,3467036927,3467037183,3467037439,3467037695,3467038719,3467049727,3467049983,3467051007,3467051263,3467051519,3467056639,3467056895,3467059455,3467059711,3467063295,3467063551,3467068927,3467069439,3467116543,3467134975,3467137023,3467139071,3467140095,3467145471,3467145727,3467149311,3467150335,3467156479,3467157503,3467160831,3467161087,3467161599,3467164159,3467164415,3467180543,3467181055,3467378687,3467444223,3467554815,3467567103,3467673599,3467681791,3467706367,3467902975,3467947263,3467947519,3467948031,3467949055,3467950335,3467951103,3467951871,3467952127,3467964415,3467968511,3468034047,3468036095,3468036351,3468036607,3468036863,3468037375,3468037887,3468038143,3468038655,3468038911,3468039167,3468039423,3468041215,3468041471,3468041727,3468041983,3468042495,3468042751,3468044799,3468045055,3468045311,3468045567,3468045823,3468046079,3468046335,3468046591,3468046847,3468047103,3468047359,3468047615,3468047871,3468048127,3468048383,3468048639,3468049407,3468049663,3468049919,3468050175,3468050431,3468050687,3468052479,3468052735,3468052991,3468053759,3468054015,3468054271,3468055551,3468055807,3468056575,3468056831,3468057087,3468057343,3468057599,3468057855,3468058111,3468058367,3468059647,3468059903,3468060159,3468060671,3468061695,3468061951,3468062463,3468062719,3468063231,3468063487,3468063743,3468063999,3468064255,3468064767,3468065023,3468065279,3468065535,3468065791,3468066047,3468068095,3468068351,3468068863,3468069631,3468081407,3468081663,3468081919,3468082431,3468082687,3468083967,3468084223,3468084735,3468084991,3468085247,3468085503,3468085759,3468086015,3468086271,3468087807,3468088063,3468090623,3468090879,3468091391,3468091647,3468093695,3468093951,3468095231,3468095487,3468096255,3468096511,3468096767,3468097023,3468099327,3468099583,3468100607,3468100863,3468104703,3468104959,3468107263,3468107519,3468127743,3468128255,3468132351,3468140543,3468148991,3468149247,3468149503,3468149759,3468150271,3468150527,3468150783,3468151039,3468156159,3468156415,3468168959,3468169215,3468169727,3468169983,3468172543,3468172799,3468173055,3468173311,3468174335,3468174591,3468174847,3468175103,3468176127,3468176383,3468176895,3468177151,3468178687,3468178943,3468179711,3468179967,3468180735,3468180991,3468181247,3468181503,3468181759,3468182015,3468185855,3468186367,3468187647,3468187903,3468189951,3468190463,3468193023,3468193279,3468195327,3468195583,3468197887,3468198143,3468199679,3468199935,3468200703,3468201215,3468203519,3468204031,3468204799,3468205055,3468205311,3468205567,3468207871,3468208127,3468209407,3468209663,3468210431,3468210687,3468210943,3468211455,3468211967,3468212223,3468214527,3468214783,3468215551,3468215807,3468216063,3468216575,3468217087,3468217343,3468217599,3468217855,3468222975,3468223231,3468225279,3468225535,3468226815,3468227071,3468230143,3468230399,3468230655,3468231935,3468232703,3468234751,3468238847,3468247039,3468296191,3468361727,3468367871,3468368895,3468369919,3468370943,3468375039,3468376063,3468443647,3468460031,3468468223,3468477439,3468477951,3468478975,3468479231,3468492799,3468496895,3468500991,3468505087,3468509183,3468513279,3468517375,3468521471,3468525567,3468529663,3468533759,3468554239,3468555263,3468556287,3468557311,3468591103,3468591359,3468591871,3468593151,3468593407,3468593663,3468594431,3468594943,3468595199,3468595455,3468595711,3468596735,3468596991,3468599039,3468599295,3468613631,3468614655,3468615679,3468617727,3468619775,3468623871,3468656639,3468658175,3468658431,3468685311,3468685567,3468685823,3468687103,3468687359,3468687615,3468687871,3468894207,3468898303,3468898559,3468898815,3468899583,3468902399,3468918783,3468920831,3468921087,3468921855,3468922879,3469025023,3469025279,3469029887,3469030143,3469043455,3469043711,3469055743,3469055999,3469064191,3469064447,3469070335,3469070591,3469131007,3469131263,3469131775,3469132799,3469176319,3469176575,3469186303,3469186559,3469279231,3469283327,3469313535,3469313791,3469502975,3469503487,3469503999,3469504255,3469508607,3469524991,3469537279,3469539327,3469539839,3469540095,3469627647,3469627903,3469628927,3469629183,3469822975,3469823231,3469823487,3469823743,3469823999,3469859583,3469859839,3469893631,3469901823,3469989887,3469990399,3470061823,3470062079,3470062335,3470062591,3470062847,3470063103,3470063359,3470063615,3470063871,3470064895,3470082303,3470082559,3470083071,3470083327,3470085119,3470085375,3470085631,3470085887,3470086655,3470087167,3470087423,3470087679,3470087935,3470088191,3470088703,3470088959,3470091519,3470091775,3470093823,3470094079,3470094847,3470095103,3470095615,3470095871,3470096127,3470096383,3470096639,3470097151,3470098175,3470098431,3470131199,3470134015,3470134271,3470135295,3470136319,3470137343,3470139391,3470149631,3470150143,3470192639,3470196735,3470299647,3470300159,3470301183,3470301439,3470301951,3470302207,3470382335,3470382591,3470382847,3470383103,3470383359,3470383615,3470458879,3470475263,3470545919,3470546943,3470558207,3470559231,3470572543,3470575615,3470610431,3470614527,3470651391,3470655487,3470665215,3470665471,3470671871,3470680063,3470734591,3470734847,3470744063,3470744575,3470745855,3470746111,3470749951,3470750463,3470752767,3470753023,3470754047,3470754303,3470754559,3470755839,3470756095,3470759935,3470768895,3470769151,3470770175,3470778367,3470786559,3470794751,3470802943,3470856447,3470856703,3470857215,3470858239,3470874623,3470875647,3470884863,3470885887,3470886911,3470894591,3470895103,3471057919,3471058943,3471263743,3471265791,3471276031,3471278079,3471312383,3471312895,3471313151,3471313407,3471313663,3471313919,3471314175,3471314431,3471314687,3471314943,3471316991,3471317247,3471317503,3471317759,3471319039,3471320063,3471321087,3471322111,3471322623,3471323647,3471324159,3471324671,3471324927,3471325183,3471327231,3471328255,3471330303,3471331327,3471332351,3471332607,3471332863,3471333119,3471333375,3471335423,3471336191,3471336447,3471337471,3471337983,3471338495,3471339519,3471340031,3471341567,3471341823,3471342079,3471342335,3471342591,3471342847,3471343103,3471343359,3471343615,3471570943,3471572991,3471654911,3471655167,3471655423,3471655679,3471656959,3471657727,3471657983,3471658239,3471658495,3471658751,3471659007,3471659263,3471660543,3471661567,3471662079,3471662591,3471663103,3471667199,3471668991,3471669247,3471671039,3471671295,3471704063,3471769599,3471769855,3471772671,3471772927,3471774463,3471774719,3471778559,3471779071,3471780607,3471780863,3471782911,3471783679,3471784447,3471784959,3471785471,3471785983,3471787263,3471787519,3471788799,3471789055,3471789567,3471789823,3471790847,3471791103,3471791871,3471792127,3471797503,3471798015,3471798271,3471798527,3471801599,3471801855,3471802879,3471803647,3471806207,3471806463,3471806975,3471807231,3471807743,3471807999,3471808511,3471808767,3471809279,3471809535,3471817983,3471818751,3471819263,3471819519,3471822335,3471822591,3471822847,3471823103,3471823359,3471823615,3471824383,3471824639,3471826175,3471826687,3471827711,3471827967,3471832575,3471832831,3472149247,3472149503,3472211967,3472228351,3472244735,3472244991,3472245503,3472246015,3472249343,3472249599,3472252927,3472253183,3472255487,3472255743,3472258559,3472258815,3472375807,3472392191,3472408575,3472424959,3472425727,3472457727,3472561151,3472562175,3472568319,3472572415,3472678911,3472687103,3472703487,3472707583,3472709631,3472710655,3472719871,3472723967,3472728063,3472728319,3472729087,3472730111,3472743423,3472743935,3472744447,3472745215,3473039359,3473041407,3473044735,3473044991,3473045247,3473045503,3473045759,3473046015,3473046271,3473260543,3473268735,3473276927,3473342463,3473755391,3473755647,3473917439,3473917695,3473961471,3473961727,3474053119,3474055167,3474193407,3474193663,3474193919,3474194431,3474195199,3474195455,3474196991,3474197503,3474198271,3474198527,3474199039,3474199295,3474199551,3474199807,3474204159,3474204415,3474206975,3474207231,3474207743,3474207999,3474209023,3474209279,3474211327,3474211583,3474212607,3474212863,3474213375,3474213631,3474214655,3474214911,3474215935,3474216191,3474216447,3474217983,3474218239,3474218751,3474219007,3474220799,3474221311,3474221823,3474222079,3474224383,3474224639,3474224895,3474225151,3474227199,3474227455,3474228223,3474228735,3474229247,3474229759,3474230271,3474230527,3474231551,3474231807,3474233087,3474233343,3474234623,3474234879,3474238207,3474238719,3474239743,3474240511,3474240767,3474241279,3474242047,3474242559,3474243839,3474244095,3474244607,3474244863,3474247935,3474248191,3474249215,3474249727,3474250495,3474250751,3474252287,3474252543,3474253055,3474253311,3474254079,3474254335,3474256639,3474256895,3474257407,3474257919,3474261247,3474262527,3474265343,3474265599,3474265855,3474266111,3474266879,3474267135,3474269183,3474269439,3474273535,3474273791,3474275071,3474275327,3474276607,3474276863,3474279423,3474279679,3474282239,3474282495,3474284287,3474284799,3474285567,3474286079,3474286591,3474286847,3474287871,3474288127,3474290431,3474290687,3474295551,3474295807,3474296575,3474296831,3474298879,3474299135,3474299391,3474299647,3474301695,3474301951,3474304511,3474304767,3474305791,3474306047,3474307071,3474307327,3474307583,3474307839,3474308351,3474308607,3474309119,3474325503,3474343423,3474343679,3474344959,3474345215,3474346751,3474347007,3474350335,3474350591,3474352383,3474352639,3474353663,3474353919,3474391039,3474456575,3474463231,3474463487,3474464255,3474464767,3474548223,3474548479,3474964479,3474964735,3474965503,3474965759,3474966527,3474966783,3474968575,3474969343,3474970879,3474971135,3474971903,3474972159,3474972671,3474972927,3474977535,3474977791,3474978559,3474978815,3474979839,3474980095,3474998015,3474998783,3474999295,3474999551,3475002111,3475002367,3475004159,3475004671,3475005183,3475005695,3475006207,3475006463,3475006719,3475006975,3475007231,3475007487,3475008767,3475009023,3475009279,3475009535,3475010047,3475010303,3475010559,3475010815,3475012607,3475013119,3475047935,3475048191,3475049983,3475050239,3475050495,3475051007,3475053311,3475053567,3475054591,3475054847,3475056639,3475056895,3475058431,3475058687,3475059967,3475060223,3475062271,3475062527,3475063039,3475063295,3475063551,3475063807,3475064319,3475064575,3475065599,3475065855,3475066111,3475066367,3475067135,3475067391,3475067647,3475067903,3475068927,3475069183,3475069951,3475070207,3475073279,3475073535,3475075071,3475075327,3475075839,3475076095,3475076351,3475076607,3475077119,3475077375,3475077631,3475077887,3475078143,3475078399,3475079167,3475079935,3475080191,3475080959,3475081727,3475081983,3475082751,3475083007,3475086335,3475086591,3475089151,3475089407,3475092479,3475092735,3475095807,3475096063,3475098367,3475098623,3475099135,3475099903,3475101439,3475101695,3475105279,3475105791,3475106047,3475106303,3475106815,3475107071,3475111423,3475111935,3475112191,3475113215,3475115007,3475120127,3475122943,3475123199,3475124223,3475172351,3475172607,3475243007,3475360255,3475360511,3475386367,3475390463,3475889151,3475889407,3475909119,3475909375,3475909631,3475910655,3475912703,3475913215,3475913983,3475914239,3475914751,3475916287,3475916799,3475919871,3475920383,3475920639,3475920895,3475921151,3475921407,3475922943,3475930623,3475930879,3475931135,3475939327,3475952383,3475952639,3475953663,3475953919,3475954175,3475955711,3475959807,3475996671,3476029439,3476417535,3476418559,3476439039,3476439551,3476440319,3476440575,3476441087,3476441343,3476442111,3476442367,3476442623,3476443903,3476444159,3476445183,3476446207,3476447231,3476455423,3476458495,3476458751,3476521727,3476521983,3476522495,3476522751,3476527615,3476527871,3476534015,3476534271,3476536063,3476536575,3476541439,3476541695,3476543999,3476544255,3476544511,3476544767,3476549631,3476550143,3476550399,3476552703,3476553983,3476554239,3476562943,3476563199,3476566015,3476566271,3476566783,3476567039,3476569855,3476570111,3476570879,3476571135,3476572671,3476572927,3476573439,3476573695,3476579583,3476579839,3476580095,3476580351,3476582143,3476582399,3476582911,3476583423,3476583679,3476583935,3476588031,3476588287,3476590079,3476590335,3476595967,3476596223,3476598527,3476598783,3476599551,3476600063,3476600575,3476601087,3476602111,3476602367,3476603135,3476603391,3476604159,3476604415,3476605439,3476605695,3476607487,3476607743,3476607999,3476608255,3476610303,3476610559,3476613119,3476613375,3476613631,3476613887,3476614143,3476614399,3476614655,3476614911,3476617215,3476617983,3476618751,3476619007,3476621311,3476621567,3476623871,3476624383,3476624895,3476625407,3476626687,3476626943,3476627967,3476628223,3476628479,3476628735,3476628991,3476629247,3476629759,3476630015,3476633599,3476633855,3476635391,3476635903,3476639231,3476639487,3476639999,3476640255,3476643327,3476643583,3476645375,3476645887,3476646143,3476646399,3476648959,3476649215,3476650239,3476651007,3476651775,3476652031,3476653311,3476653567,3476654847,3476655359,3476655871,3476656127,3476657151,3476657407,3476658175,3476658687,3476660479,3476660735,3476660991,3476661503,3476664063,3476664319,3476664575,3476665087,3476665343,3476665599,3476665855,3476666111,3476667647,3476667903,3476669183,3476669439,3476671487,3476671743,3476672511,3476672767,3476673279,3476673535,3476678399,3476678911,3476679679,3476679935,3476680703,3476681215,3476681983,3476682495,3476683007,3476683263,3476683775,3476684031,3476684287,3476684543,3476684799,3476685055,3476685567,3476685823,3476686079,3476686591,3476686847,3476687103,3476691199,3476691455,3476697855,3476698111,3476699135,3476699391,3476699647,3476699903,3476701439,3476701695,3476704767,3476705279,3476707327,3476707583,3476709631,3476709887,3476710143,3476710655,3476710911,3476711167,3476711679,3476711935,3476712191,3476712447,3476712959,3476713215,3476713983,3476714239,3476722175,3476722431,3476724735,3476725247,3476728831,3476729343,3476729599,3476729855,3476832255,3476840447,3476881407,3476946943,3477158911,3477159935,3477176319,3477209087,3477225471,3477237759,3477238271,3477239807,3477240831,3477309951,3477310207,3477311487,3477311743,3477312255,3477312511,3477314559,3477314815,3477316863,3477317119,3477317887,3477318143,3477319679,3477319935,3477322495,3477322751,3477324543,3477324799,3477328383,3477328639,3477328895,3477329151,3477329407,3477329919,3477330175,3477330687,3477333503,3477333759,3477334527,3477334783,3477337855,3477338111,3477339903,3477340159,3477553663,3477553919,3477554175,3477554431,3477555455,3477556223,3477556479,3477557247,3477559551,3477559807,3477562623,3477562879,3477563391,3477563647,3477564415,3477564671,3477564927,3477565183,3477565439,3477565695,3477567743,3477567999,3477569023,3477569279,3478114303,3478118399,3478192127,3478257663,3478261759,3478262015,3478263295,3478263807,3478275839,3478276095,3478278399,3478278655,3478279935,3478280191,3478280447,3478280703,3478284543,3478285055,3478285567,3478285823,3478289407,3478289919,3478720511,3478722559,3478727935,3478728191,3478729215,3478729471,3478732799,3478749183,3478831103,3478832127,3478835967,3478836223,3478841343,3478842367,3478846975,3478847487,3478865151,3478865663,3478868991,3478869247,3478870783,3478871039,3478875391,3478875903,3478876159,3478876671,3478879999,3478880255,3479003647,3479003903,3479207935,3479240703,3479240959,3479241471,3479241727,3479244543,3479244799,3479247359,3479247615,3479250943,3479251199,3479251967,3479252223,3479253247,3479253503,3479256831,3479257087,3479258623,3479258879,3479259135,3479259391,3479259903,3479260159,3479260927,3479261183,3479264255,3479264511,3479265279,3479265535,3479268607,3479269119,3479568383,3479603711,3479603967,3479633919,3479699455,3479896063,3479924223,3479924479,3479956479,3479956735,3479961599,3480096511,3480096767,3480174847,3480175359,3480175871,3480176127,3480176639,3480176895,3480178687,3480178943,3480179199,3480179455,3480179711,3480179967,3480181503,3480182271,3480182783,3480183039,3480183551,3480183807,3480184063,3480184319,3480185599,3480185855,3480187903,3480188159,3480223743,3480256511,3480388607,3480389119,3480444927,3480449023,3480551423,3480551679,3480551935,3480552191,3480552447,3480552703,3480552959,3480553215,3480553471,3480553727,3480553983,3480554239,3480554495,3480554751,3480555263,3480555519,3480555775,3480556287,3480556543,3480557055,3480557311,3480557567,3480557823,3480558079,3480558591,3480558847,3480559359,3480559615,3480560895,3480561151,3480561919,3480562175,3480564735,3480564991,3480567039,3480567551,3480568319,3480568575,3480568831,3480569599,3480569855,3480570111,3480570367,3480570623,3480570879,3480571391,3480571647,3480575231,3480575487,3480575743,3480577023,3480579327,3480579583,3480579839,3480580095,3480580351,3480580607,3480580863,3480581119,3480581375,3480581631,3480581887,3480582143,3480582399,3480582655,3480583423,3480587519,3480587775,3480588799,3480589055,3480591103,3480591359,3480591615,3480592127,3480592383,3480592639,3480592895,3480593151,3480593407,3480593663,3480593919,3480594175,3480594431,3480595711,3480595967,3480596991,3480597247,3480598271,3480598527,3480599039,3480599295,3480599551,3480599807,3480600575,3480601087,3480601343,3480601599,3480601855,3480602111,3480602879,3480603647,3480603903,3480604159,3480604671,3480604927,3480605183,3480605439,3480605695,3480605951,3480606207,3480606463,3480606719,3480606975,3480607231,3480607487,3480610303,3480610559,3480611327,3480611583,3480611839,3480612095,3480612351,3480613631,3480758271,3480758527,3480761343,3480761599,3480816895,3480817151,3480818943,3480819199,3480956927,3480957183,3480958463,3480958719,3480959743,3480959999,3481169151,3481169407,3481223679,3481223935,3481224191,3481225215,3481226239,3481227263,3481227775,3481228287,3481229055,3481229311,3481231359,3481233407,3481238015,3481238271,3481665535,3481731071,3481733119,3481733631,3481735167,3481736191,3481736703,3481737983,3481738239,3481738751,3481739263,3481784831,3481785343,3481796607,3481812991,3481829375,3481866239,3481866495,3481867775,3481868031,3481869311,3481869567,3481870335,3481870591,3481870847,3481871103,3481871871,3481872383,3481872895,3481873151,3481873663,3481873919,3481874175,3481874431,3481875967,3481876223,3481878015,3481878271,3481880319,3481880575,3481881087,3481881343,3481881599,3481881855,3481882879,3481883135,3481883647,3481884415,3481886975,3481887231,3481887999,3481888255,3481888511,3481888767,3481892095,3481892351,3481892863,3481893119,3481893375,3481893631,3481894911,3481895167,3481896191,3481896447,3481897727,3481897983,3481900543,3481900799,3481901055,3481901311,3481901567,3481901823,3481904383,3481904639,3481904895,3481905151,3481906687,3481906943,3481907199,3481907711,3481909247,3481909503,3481909759,3481910015,3481912319,3481912575,3481912831,3481913087,3481915903,3481916159,3481916927,3481917183,3481917695,3481918207,3481919487,3481919743,3481919999,3481920255,3481922815,3481923071,3481924351,3481924607,3481926143,3481926399,3481936895,3481937151,3481937407,3481937663,3481970431,3481970687,3481993727,3481993983,3481994239,3481994751,3481995007,3481995519,3481996031,3481997311,3481997567,3481998591,3481998847,3481999103,3481999359,3481999615,3482002175,3482002431,3482003455,3482004479,3482006015,3482007551,3482008063,3482008319,3482011135,3482011647,3482012671,3482012927,3482013951,3482014463,3482015487,3482015999,3482017791,3482018047,3482018559,3482019071,3482019583,3482020607,3482022143,3482022399,3482024703,3482024959,3482025215,3482025471,3482028543,3482028799,3482029311,3482029567,3482030335,3482030591,3482032895,3482033151,3482033663,3482033919,3482034431,3482035199,3482035711,3482035967,3482037503,3482037759,3482038783,3482039551,3482040319,3482041087,3482041599,3482041855,3482042623,3482043135,3482043391,3482043647,3482044927,3482045183,3482045695,3482046975,3482047487,3482047743,3482048255,3482048511,3482048767,3482049791,3482050559,3482051327,3482051583,3482051839,3482052863,3482053631,3482054655,3482058239,3482058495,3482591231,3482595327,3482599423,3482603519,3482605567,3482612735,3482615807,3482632191,3482714623,3482714879,3482716415,3482716671,3482717439,3482717695,3482722047,3482722303,3482723583,3482723839,3482725887,3482726143,3482728959,3482729215,3482731263,3482731775,3482733055,3482733311,3482735359,3482735615,3482736383,3482736639,3482736895,3482737151,3482738175,3482738687,3482738943,3482739199,3482740479,3482740735,3482740991,3482741247,3482742271,3482742783,3482743295,3482743551,3482744831,3482745087,3482748671,3482748927,3482749951,3482750207,3482751231,3482751487,3482751743,3482751999,3482752255,3482752511,3482755071,3482763263,3482775551,3482779647,3482861823,3482862079,3482863871,3482864127,3482864639,3482865151,3482867711,3482867967,3482868223,3482868479,3482869247,3482869503,3482870271,3482870527,3482871039,3482871295,3482873599,3482873855,3482875135,3482875391,3482876159,3482876415,3482877183,3482877439,3482943743,3482943999,3482947583,3482947839,3482948095,3482948607,3482949375,3482949631,3482954239,3482954751,3482955519,3482956031,3482957055,3482957311,3482957823,3482958079,3482973951,3482974207,3483025407,3483041791,3483140351,3483140607,3483147263,3483147519,3483147775,3483148031,3483151103,3483151359,3483151871,3483152127,3483152383,3483152639,3483154431,3483154943,3483156223,3483156479,3483158527,3483159039,3483160063,3483160319,3483164159,3483164415,3483164671,3483164927,3483167231,3483167999,3483168511,3483168767,3483169791,3483170303,3483172607,3483172863,3483254783,3483271167,3483304191,3483304703,3483308543,3483309055,3483310847,3483311103,3483312895,3483313407,3483314687,3483315199,3483315967,3483316223,3483317247,3483317759,3483318527,3483318783,3483336703,3483336959,3483337215,3483338239,3483339263,3483341823,3483342079,3483342847,3483343103,3483344895,3483435007,3483533311,3483631615,3483697151,3483775487,3483775743,3483791359,3483795455,3483828223,3483836415,3483846655,3483847679,3483849727,3483850751,3483851775,3483852799,3483853311,3483859455,3483859711,3483877375,3483893759,3484013055,3484013567,3484041727,3484041983,3484058879,3484059135,3484059391,3484059903,3484060159,3484060927,3484068351,3484068863,3484287999,3484288255,3484289279,3484292095,3484297215,3484297471,3484299519,3484299775,3484305919,3484306431,3484310527,3484311039,3484313599,3484314111,3484314367,3484314623,3484318719,3484319743,3484320511,3484321791,3484322047,3484325887,3484326911,3484327423,3484327935,3484332031,3484336127,3484338175,3484338431,3484338943,3484339199,3484341759,3484342015,3484342271,3484343295,3484419839,3484420095,3484422143,3484424191,3484424447,3484438527,3484438783,3484439551,3484439807,3484442623,3484446719,3484447231,3484447487,3484447999,3484448255,3484450815,3484456191,3484456703,3484457727,3484457983,3484459775,3484460031,3484460287,3484460543,3484461055,3484461567,3484463359,3484463615,3484464127,3484464383,3484466431,3484466687,3484468223,3484468479,3484468991,3484469247,3484470527,3484471295,3484471551,3484471807,3484473343,3484473855,3484477183,3484477695,3484478207,3484478719,3484478975,3484479231,3484479487,3484479743,3484479999,3484480255,3484482047,3484482559,3484483327,3484565503,3484573695,3484616191,3484616447,3484621567,3484621823,3484622079,3484647423,3484663807,3484729343,3484730623,3484731135,3484731647,3484732671,3484733183,3484733439,3484733695,3484734207,3484734463,3484735231,3484737791,3484738303,3484739071,3484739327,3484740351,3484740607,3484741119,3484742399,3484742655,3484742911,3484743167,3484743423,3484744447,3484744959,3484745215,3484745727,3484762111,3484778495,3484811263,3484815359,3484818687,3484818943,3484884991,3484893183,3485220863,3485229055,3485237247,3485253631,3485270015,3485278207,3485306623,3485306879,3485313023,3485313279,3485313535,3485313791,3485314047,3485317119,3485318143,3485319167,3485323263,3485335551,3485442047,3485443071,3485444095,3485445119,3485446143,3485462527,3485464575,3485466623,3485597695,3485642495,3485642751,3485648639,3485648895,3485695999,3485720063,3485720319,3485728767,3485729023,3485730047,3485730303,3485730559,3485730815,3485734399,3485734911,3485735167,3485735423,3485735679,3485735935,3485736191,3485736447,3485737215,3485737471,3485738495,3485738751,3485739263,3485739775,3485740031,3485740287,3485742847,3485743359,3485744895,3485745151,3485745407,3485745663,3485746431,3485746687,3485747711,3485747967,3485748991,3485749247,3485750015,3485750271,3485750783,3485751039,3485751551,3485752319,3485752831,3485753599,3485755391,3485755647,3485759743,3485760255,3485828607,3485828863,3485829375,3485829631,3485831423,3485831679,3485832191,3485832703,3485833983,3485834495,3485834751,3485835007,3485836799,3485837055,3485837567,3485837823,3485838591,3485838847,3485839103,3485839359,3485840383,3485840639,3485843455,3485843711,3485844223,3485844735,3485844991,3485845247,3485846271,3485846783,3485847551,3485847807,3485848319,3485848575,3485849855,3485850111,3485851135,3485851391,3485852927,3485853183,3485854463,3485855231,3485856511,3485856767,3485857023,3485857279,3485857791,3485858047,3485884415,3485885695,3485885951,3485886975,3485887231,3485892351,3485893375,3485893631,3485895935,3485896447,3485898495,3485898751,3485900799,3485901055,3485902591,3485902847,3485903871,3485904127,3485904895,3485905151,3485905407,3485905663,3485906431,3485906687,3485907199,3485907455,3485908479,3485908735,3485913087,3485913343,3485913599,3485913855,3485915647,3485915903,3485916415,3485916671,3485920255,3485920767,3485921791,3485922047,3485923071,3485923327,3485924607,3485924863,3485925887,3485926143,3485926911,3485927167,3485929471,3485929727,3485930495,3485930751,3485933823,3485934591,3485934847,3485935103,3485935615,3485935871,3485938687,3485938943,3485939711,3485939967,3485940735,3485940991,3485943551,3485943807,3485945087,3485945343,3485947391,3485947647,3485948671,3485948927,3485949439,3485949695,3485950207,3485950463,3485950719,3485950975,3485951231,3485951487,3485952255,3485952511,3485953535,3485953791,3485958143,3485958399,3485959167,3485959423,3485960447,3485960703,3485961983,3485962239,3485962495,3485963519,3485963775,3485965567,3485965823,3485966335,3485966591,3485966847,3485967103,3485967359,3486023679,3486031871,3486269439,3486285823,3486302207,3486310399,3486384127,3486384383,3486385151,3486385663,3486387199,3486387455,3486390527,3486390783,3486391039,3486391295,3486391807,3486392063,3486392831,3486393087,3486393343,3486393599,3486395391,3486395647,3486395903,3486396159,3486396415,3486396671,3486398463,3486398719,3486399743,3486399999,3486401279,3486401535,3486402559,3486402815,3486403583,3486403839,3486404095,3486404351,3486404607,3486405119,3486405375,3486405631,3486406655,3486407167,3486407935,3486408191,3486409727,3486409983,3486412287,3486412543,3486414335,3486414591,3486415103,3486415359,3486415615,3486415871,3486482687,3486482943,3486484223,3486484479,3486485247,3486485759,3486488063,3486488319,3486488575,3486489087,3486490111,3486490367,3486580735,3486580991,3486581503,3486581759,3486582015,3486582271,3486582527,3486582783,3486583039,3486583295,3486583807,3486584063,3486584319,3486584831,3486585343,3486585599,3486586367,3486586623,3486586879,3486587135,3486587391,3486587647,3486587903,3486588415,3486588671,3486589951,3486590207,3486590463,3486591743,3486591999,3486592255,3486592511,3486593023,3486593279,3486593791,3486594047,3486594303,3486594559,3486594815,3486595071,3486595327,3486595583,3486595839,3486596095,3486596351,3486596607,3486596863,3486597119,3486597375,3486597631,3486597887,3486598655,3486598911,3486599167,3486599423,3486599679,3486599935,3486600447,3486601215,3486601471,3486601727,3486601983,3486602239,3486603007,3486603263,3486603519,3486603775,3486604031,3486604287,3486604543,3486605055,3486605311,3486605567,3486606079,3486606335,3486606591,3486606847,3486607359,3486607615,3486607871,3486608127,3486608383,3486609151,3486609663,3486609919,3486610175,3486610431,3486610687,3486610943,3486611455,3486611711,3486611967,3486612223,3486612479,3486612735,3486612991,3486613247,3486613759,3486614015,3486614271,3486614527,3486614783,3486615039,3486615295,3486615551,3486616319,3486616831,3486617087,3486617343,3486617599,3486617855,3486618111,3486618367,3486618623,3486618879,3486619135,3486619391,3486619647,3486619903,3486620159,3486620415,3486620671,3486620927,3486621183,3486621439,3486621695,3486621951,3486622207,3486622463,3486622719,3486622975,3486623231,3486623487,3486623743,3486623999,3486624255,3486624511,3486624767,3486625023,3486625279,3486625535,3486625791,3486626047,3486626303,3486626559,3486627071,3486627327,3486627583,3486627839,3486628095,3486628351,3486628607,3486628863,3486629375,3486629631,3486629887,3486630143,3486631679,3486631935,3486632447,3486632703,3486632959,3486633215,3486633471,3486633727,3486633983,3486634239,3486634495,3486634751,3486635007,3486635263,3486635519,3486635775,3486636031,3486636287,3486636543,3486636799,3486637055,3486637311,3486637823,3486638335,3486638591,3486638847,3486639103,3486639359,3486639615,3486640127,3486640383,3486640639,3486642175,3486642431,3486642687,3486642943,3486646015,3486646271,3486662655,3486688255,3486688511,3486747647,3486752767,3486765055,3486765311,3486765567,3486765823,3486766079,3486766335,3486766591,3486766847,3486767103,3486768127,3486769151,3487039487,3487105023,3487189247,3487189503,3487197183,3487197439,3487236095,3487249663,3487249919,3487283455,3487283711,3487285759,3487286271,3487301631,3487523839,3487524863,3487544319,3487544575,3487703039,3487707135,3487728639,3487728895,3487729151,3487729407,3487729919,3487730175,3487730431,3487730943,3487734015,3487734271,3487734527,3487735039,3487735551,3487735807,3487739647,3487739903,3487740415,3487741439,3487741695,3487741951,3487750399,3487751167,3487752191,3487752447,3487755775,3487756031,3487757311,3487757567,3487757823,3487842303,3487858431,3487858687,3487859199,3487861759,3487862015,3487875071,3487883263,3487891455,3487907839,3487913471,3487913983,3487916543,3487917055,3487919615,3487920127,3487921407,3487921663,3487922431,3487922687,3487922943,3487924223,3487957759,3487958271,3487958527,3487959039,3487960063,3487963135,3487964159,3487969791,3487970047,3487985663,3487985919,3487986431,3487986687,3487986943,3487987199,3487987711,3487988223,3487988735,3487988991,3488014335,3488022527,3488047871,3488048127,3488071679,3488072703,3488079871,3488083967,3488088063,3488098303,3488098559,3488104447,3488110079,3488110335,3488112639,3488120831,3488186367,3488219135,3488350207,3488415743,3488684543,3488684799,3488685055,3488685311,3488687359,3488687615,3488688639,3488688895,3488690943,3488691455,3488693247,3488693503,3488694015,3488694271,3488696319,3488696831,3488698111,3488698367,3488698623,3488698879,3488699647,3488699903,3488700671,3488700927,3488701951,3488702207,3488702719,3488702975,3488703231,3488703487,3488705791,3488706047,3488708351,3488708607,3488709631,3488710143,3488727039,3488727295,3488727551,3488727807,3488729087,3488730111,3488910335,3488911359,3488924671,3488925695,3488927743,3488928767,3488929023,3488929279,3488929791,3488930815,3488931071,3488933631,3488933887,3488939007,3488939263,3488939519,3488939775,3488940031,3488956415,3488989183,3489005567,3489136639,3489137663,3489139711,3489140735,3489144831,3489153535,3489154047,3489155583,3489156607,3489157375,3489157631,3489158399,3489158655,3489158911,3489159167,3489160191,3489161215,3489162495,3489162751,3489163007,3489167615,3489167871,3489168127,3489168383,3489169407,3489185791,3489193983,3489267711,3489341439,3489345535,3489398783,3489399039,3489464319,3489529855,3489552895,3489553407,3489553919,3489554431,3489562623,3489566719,3489673471,3489673727,3489685503,3489687551,3489718271,3489718527,3489719039,3489719551,3489719807,3489720063,3489720319,3489775103,3489775359,3490703615,3490703871,3490792447,3490792959,3490793215,3490793471,3491381247,3491389439,3491936767,3491937023,3491969023,3491970047,3492151295,3492162303,3492162559,3492162815,3492163071,3492167679,3492593663,3492593919,3492795647,3492795903,3492827391,3492827647,3492871423,3492871679,3492880639,3492880895,3492881151,3492881407,3492912127,3492912383,3492917247,3492917503,3492921087,3492921343,3492921855,3492922111,3492953087,3492953343,3492965375,3492965631,3492969471,3492969727,3492969983,3493002239,3493002495,3493010943,3493011199,3493021695,3493021951,3493105663,3493105919,3493106943,3493107199,3493110271,3493110783,3493113855,3493114623,3493115135,3493115391,3493115647,3493115903,3493116159,3493167103,3493183487,3493244927,3493249023,3493335807,3493336063,3493336319,3493336575,3493337599,3493337855,3493338111,3493338367,3493338623,3493338879,3493339135,3493339903,3493340159,3493340415,3493340671,3493340927,3493341183,3493341951,3493342207,3493342463,3493342719,3493343743,3493343999,3493344255,3493344511,3493344767,3493345023,3493345279,3493345535,3493345791,3493346047,3493346303,3493346559,3493346815,3493347071,3493347327,3493384191,3493388287,3493855231,3493855743,3493856767,3493857279,3493863679,3493863935,3493866495,3493867519,3493869567,3493871615,3493881855,3493882879,3493929983,3493931007,3493936127,3493937151,3493939199,3493941247,3493942271,3493943295,3493946367,3493947391,3493958399,3493958655,3493958911,3493959167,3493959423,3493959679,3493980159,3493981183,3493982207,3493984255,3493986303,3493987327,3493990399,3493991423,3493998591,3494000639,3494003711,3494004735,3494005247,3494009855,3494010879,3494013951,3494014719,3494014975,3494017023,3494043647,3494044671,3494044927,3494045695,3494045951,3494046207,3494046463,3494046719,3494046975,3494047231,3494047487,3494047743,3494049791,3494051839,3494075391,3494076415,3494078463,3494079487,3494088703,3494090751,3494092799,3494093823,3494094847,3494095871,3494121471,3494122495,3494125567,3494126591,3494135807,3494136831,3494139903,3494141951,3494143999,3494145023,3494163455,3494164479,3494168575,3494170623,3494181631,3494181887,3494184959,3494187007,3494191359,3494191615,3494191871,3494192127,3494192383,3494192639,3494197247,3494198271,3494202111,3494203391,3494207487,3494208511,3494227967,3494228223,3494244351,3494246399,3494247423,3494251519,3494262783,3494264831,3494271999,3494273023,3494275071,3494277119,3494302975,3494303743,3494310911,3494311935,3494316031,3494317055,3494336511,3494337535,3494342655,3494344703,3494359039,3494360063,3494361087,3494362111,3494368255,3494369023,3494369279,3494371327,3494373375,3494380543,3494381567,3494382591,3494410239,3494412287,3494422527,3494425599,3494437887,3494438399,3494438655,3494438911,3494453247,3494453503,3494459391,3494460415,3494464511,3494465535,3494498303,3494499327,3494499839,3494500095,3494510591,3494512639,3494516735,3494517759,3494563839,3494565887,3494594559,3494595583,3494605823,3494606847,3494608895,3494610943,3494611967,3494623231,3494625279,3494627327,3494628351,3494632447,3494633471,3494645759,3494646783,3494647807,3494660095,3494661119,3494664191,3494665215,3494668287,3494670335,3494696959,3494697471,3494697983,3494699007,3494700031,3494701055,3494709759,3494710271,3494727679,3494729727,3494730751,3494731775,3494743039,3494744063,3494747135,3494748159,3494749183,3494750207,3494757375,3494758399,3494776831,3494777855,3494783231,3494783743,3494785023,3494787071,3494789119,3494792191,3494793215,3494803455,3494805503,3494806015,3494806527,3494807039,3494807295,3494807551,3494813183,3494813439,3494825983,3494826239,3494826495,3494826751,3494827007,3494827263,3494827519,3494852607,3494854655,3494862847,3494863871,3494871295,3494871551,3494893567,3494894591,3494917119,3494917631,3494928383,3494930431,3494930943,3494931199,3494964223,3494965247,3494968319,3494972415,3494973439,3494974463,3494979583,3494981631,3494984191,3494984703,3494985983,3494986495,3494986751,3494999039,3494999551,3495000063,3495001087,3495005439,3495005695,3495006207,3495007231,3495010303,3495011327,3495012351,3495014399,3495016959,3495017471,3495020543,3495020799,3495021055,3495021567,3495021823,3495022079,3495022591,3495023615,3495024639,3495053311,3495054335,3495057407,3495059455,3495065599,3495066623,3495076863,3495077887,3495090175,3495091199,3495098367,3495100415,3495109631,3495109887,3495110143,3495110399,3495113727,3495114751,3495120895,3495122943,3495153663,3495155711,3495175167,3495176191,3495186431,3495188479,3495190527,3495192575,3495193599,3495197695,3495198719,3495215103,3495217151,3495219199,3495235583,3495237631,3495250943,3495251199,3495251967,3495254015,3495260159,3495261183,3495271423,3495272447,3495273471,3495274495,3495285759,3495288831,3495320063,3495320575,3495332863,3495333887,3495347455,3495347711,3495349247,3495350271,3495356671,3495356927,3495357183,3495357439,3495367679,3495368703,3495370751,3495372799,3495375871,3495376895,3495387647,3495388159,3495388671,3495389183,3495390207,3495391231,3495395583,3495395839,3495396351,3495396607,3495397119,3495397375,3495399423,3495400447,3495403519,3495404031,3495404543,3495405055,3495405567,3495412735,3495413759,3495415807,3495429119,3495430143,3495446527,3495448575,3495455743,3495456767,3495460863,3495461887,3495463935,3495464959,3495465983,3495467007,3495475199,3495477247,3495478271,3495479295,3495505919,3495506943,3495512063,3495513087,3495515135,3495516159,3495526399,3495527423,3495551999,3495553023,3495566335,3495566591,3495576575,3495577599,3495579647,3495581695,3495583743,3495585791,3495587839,3495588863,3495618559,3495619583,3495620607,3495622655,3495650303,3495650559,3495651327,3495651583,3495651839,3495652095,3495652351,3495652607,3495652863,3495653119,3495653631,3495654399,3495673855,3495674367,3495674623,3495674879,3495675391,3495688191,3495689215,3495694335,3495696383,3495703551,3495704575,3495718911,3495720959,3495724031,3495727103,3495739391,3495740415,3495749631,3495750655,3495755775,3495756799,3495758335,3495758847,3495790591,3495792639,3495797759,3495798783,3495804927,3495805439,3495815167,3495817215,3495828479,3495829503,3495847935,3495849983,3495862271,3495864319,3495864831,3495865343,3495866367,3495868415,3495871487,3495872511,3495880191,3495880703,3495896063,3495897087,3495930879,3495931903,3495968767,3495985151,3495988223,3495989247,3496001535,3496017919,3496034303,3496050687,3496072447,3496072703,3496072959,3496073215,3496073727,3496073983,3496078847,3496079103,3496132607,3496148991,3496151039,3496152063,3496161535,3496161791,3496164095,3496164351,3496165119,3496165375,3496190719,3496190975,3496296447,3496312831,3496332543,3496332799,3496339455,3496339967,3496449023,3496449535,3496451583,3496452095,3496454911,3496455167,3496458239,3496458495,3496468479,3496476671,3496806399,3496808447,3496878079,3496882175,3496894463,3496902655,3496947711,3496949759,3496951807,3496959999,3496968447,3496968703,3496968959,3496975615,3496975871,3496976383,3496976639,3496979199,3496979455,3496979711,3496979967,3496981503,3496982527,3497020415,3497020671,3497066495,3497082879,3497164799,3497181183,3497234175,3497234431,3497249535,3497249791,3497252351,3497252607,3497254911,3497255167,3497256703,3497256959,3497296895,3497297151,3497317375,3497317887,3497318143,3497319167,3497319423,3497352191,3497352447,3497410559,3497431039,3497447423,3497451519,3497664255,3497664511,3497717759,3497718783,3497719295,3497721343,3497721599,3497721855,3497775103,3497775359,3497775615,3497778175,3497778687,3497778943,3497820159,3497852927,3497983999,3497984255,3497984511,3497985023,3497985279,3497985535,3497986303,3497986559,3497986815,3497987071,3497987583,3497987839,3497988095,3497988351,3497988607,3497988863,3497989119,3497989375,3497989631,3497989887,3497990143,3497990655,3497990911,3497991167,3497991423,3497991679,3497992191,3497992447,3497992703,3497993215,3497993471,3497993727,3497993983,3497994239,3497994495,3497994751,3497995263,3497995519,3497997055,3497997311,3497998335,3497998591,3497998847,3497999103,3497999359,3497999871,3498000127,3498000383,3498008575,3498010879,3498012415,3498012671,3498012927,3498013183,3498013695,3498013951,3498014207,3498015231,3498015487,3498015743,3498016255,3498016767,3498017535,3498017791,3498018047,3498018303,3498018559,3498018815,3498019071,3498019327,3498019583,3498019839,3498020095,3498020351,3498020863,3498021375,3498021631,3498022399,3498022655,3498022911,3498023167,3498023935,3498024191,3498024447,3498024959,3498025471,3498026239,3498026751,3498027007,3498027263,3498027519,3498027775,3498028287,3498028799,3498029055,3498029311,3498029567,3498029823,3498030335,3498030847,3498032127,3498032383,3498033151,3498035199,3498036735,3498036991,3498037247,3498037503,3498037759,3498038015,3498038271,3498038527,3498039039,3498039295,3498039551,3498039807,3498040063,3498040319,3498040575,3498040831,3498041087,3498041343,3498043647,3498043903,3498047487,3498047743,3498047999,3498048255,3498048511,3498048767,3498049023,3498049535,3498285311,3498285567,3498287103,3498295295,3498708991,3498717183,3499299327,3499299583,3499986943,3499988991,3500351487,3500359679,3500384255,3500389375,3500389631,3500389887,3500391423,3500391679,3500392447,3500396799,3500397055,3500400127,3500400383,3500406015,3500406271,3500408831,3500552191,3500556287,3500728319,3500736511,3500752895,3500754431,3500755199,3500755455,3500761087,3500820223,3500820479,3501052159,3501052415,3501068287,3501068799,3501069055,3501069311,3501076735,3501076991,3501078783,3501079039,3501146111,3501146367,3501167103,3501167359,3501167615,3501168127,3501169151,3501169407,3501181695,3501181951,3501187583,3501188095,3501189375,3501189631,3501190143,3501190399,3501192191,3501192447,3501192703,3501192959,3501328383,3501328639,3501522943,3501588479,3501722623,3501722879,3501735935,3501736191,3501977087,3501977599,3502418175,3502418431,3502439167,3502439423,3502518783,3502519295,3502545663,3502545919,3502638079,3502638335,3502683135,3502683391,3502993407,3502993919,3503206399,3503206911,3503250431,3503250943,3503323135,3503323647,3503386111,3503386367,3503454719,3503454975,3503478783,3503479039,3503738879,3503740927,3503757823,3503758335,3503890431,3503894527,3503990783,3503992831,3504086015,3504086527,3504136191,3504138239,3504162815,3504164863,3504193535,3504194559,3504207871,3504208127,3504223743,3504223999,3504521215,3504521727,3504889343,3504889855,3504922623,3504923391,3504932351,3504932863,3505004543,3505012735,3505112063,3505113087,3505119231,3505119487,3505270271,3505270527,3505416703,3505417471,3505424383,3505425407,3505446143,3505446399,3505474559,3505474815,3505511679,3505511935,3505661951,3505662463,3505818623,3505819647,3505999359,3506000127,3506043135,3506044927,3506765823,3506831359,3506967551,3506967807,3506968063,3506968319,3506969599,3506970111,3506973695,3506974719,3506999295,3506999807,3507000063,3507000319,3507001087,3507001343,3507003647,3507003903,3507007743,3507007999,3507025407,3507025663,3507028479,3507028735,3507033087,3507033343,3507037183,3507037439,3507047167,3507047423,3507048703,3507048959,3507056383,3507056639,3507057407,3507057919,3507058431,3507058687,3507061759,3507062015,3507071231,3507071999,3507077119,3507081215,3507081471,3507081727,3507082751,3507083007,3507083775,3507084287,3507290111,3507355647,3507357695,3507358207,3507359999,3507360255,3507378175,3507384319,3507388415,3507388927,3507389439,3507390463,3507394559,3507395071,3507395583,3507395839,3507404799,3507412991,3507414783,3507416063,3507419135,3507420159,3507421183,3507425791,3507426047,3507426303,3507426559,3507428095,3507428351,3507436287,3507436799,3507445759,3507453951,3507486463,3507486719,3507522559,3507523583,3507524095,3507525631,3507526655,3507527167,3507527423,3507527679,3507531775,3507532031,3507532287,3507532543,3507535871,3507567615,3507568639,3507576831,3507582463,3507582719,3507585023,3507601407,3507748863,3507765247,3507782143,3507782655,3507782911,3507783167,3507785727,3507786751,3507789823,3507798015,3507815679,3507815935,3507816703,3507816959,3507817727,3507817983,3507819007,3507819263,3507819775,3507820031,3507820543,3507821055,3507822079,3507822847,3507823359,3507823615,3507825151,3507825663,3507829759,3507830015,3508011263,3508011519,3508013055,3508013311,3508109311,3508109567,3508109823,3508110591,3508111359,3508111615,3508111871,3508112383,3508113407,3508113919,3508114431,3508114687,3508115455,3508117247,3508117503,3508117759,3508118015,3508119807,3508120319,3508120575,3508121599,3508122111,3508122367,3508122623,3508123135,3508123647,3508125951,3508126463,3508126719,3508127487,3508127743,3508129791,3508130815,3508132095,3508132351,3508132607,3508132863,3508134143,3508135423,3508135679,3508136447,3508137983,3508220927,3508221951,3508222975,3508223999,3508224255,3508243967,3508244223,3508275199,3508275455,3508278527,3508278783,3508279039,3508279295,3508279807,3508280063,3508280319,3508280575,3508280831,3508281087,3508281343,3508281599,3508281855,3508282111,3508282367,3508282623,3508282879,3508283135,3508283391,3508283647,3508283903,3508284159,3508284415,3508284671,3508286207,3508286463,3508286719,3508287999,3508288255,3508288511,3508289023,3508289279,3508289535,3508289791,3508291327,3508292095,3508292351,3508292863,3508294143,3508295423,3508295679,3508295935,3508296703,3508296959,3508297215,3508297471,3508297727,3508298239,3508298495,3508298751,3508299007,3508299263,3508299519,3508299775,3508300031,3508300287,3508301823,3508302079,3508302335,3508302591,3508303615,3508303871,3508304383,3508304639,3508306943,3508307199,3508308991,3508309247,3508310527,3508310783,3508311039,3508311295,3508311807,3508312063,3508312319,3508312575,3508312831,3508313343,3508313599,3508313855,3508314367,3508314623,3508314879,3508315135,3508315391,3508315647,3508315903,3508316159,3508316415,3508316671,3508316927,3508317183,3508317439,3508317695,3508317951,3508318463,3508318719,3508318975,3508319487,3508319743,3508319999,3508320255,3508320511,3508320767,3508321791,3508322303,3508322559,3508322815,3508323071,3508323327,3508323583,3508323839,3508324095,3508324351,3508324607,3508324863,3508325119,3508325375,3508325631,3508325887,3508326399,3508326655,3508326911,3508327167,3508327679,3508327935,3508328447,3508328703,3508329471,3508329727,3508329983,3508330495,3508331263,3508331519,3508332031,3508332287,3508332543,3508332799,3508333055,3508333311,3508333823,3508334335,3508334591,3508334847,3508335103,3508335359,3508335615,3508336127,3508336383,3508336639,3508336895,3508337151,3508337663,3508337919,3508338175,3508338431,3508338687,3508404223,3508688639,3508688895,3508690943,3508695039,3508731903,3508732927,3508733439,3508748287,3508756479,3508756991,3508757247,3508760575,3508760831,3508761087,3508761599,3508762111,3508762623,3508764671,3508768767,3508771839,3508772351,3508772607,3508772863,3508776959,3508779007,3508780031,3508780543,3508782079,3508782335,3508782591,3508785151,3508789247,3508789503,3508789759,3508790015,3508790271,3508791039,3508791295,3508791551,3508797439,3508913151,3508913407,3508969471,3508972543,3508973567,3508994047,3508994303,3508994559,3508995839,3508996095,3508997631,3508997887,3508999679,3508999935,3509001215,3509001471,3509002239,3509002495,3509002751,3509003519,3509006335,3509006591,3509008895,3509009151,3509010943,3509011199,3509012991,3509013247,3509015295,3509015807,3509016575,3509016831,3509018111,3509018367,3509018623,3509018879,3509019391,3509019647,3509021439,3509021951,3509023999,3509024255,3509025535,3509025791,3509026047,3509026303,3509027327,3509027839,3509028351,3509028607,3509028863,3509029119,3509030399,3509030911,3509031423,3509031935,3509032703,3509032959,3509033215,3509033471,3509036031,3509036287,3509039103,3509039359,3509039615,3509039871,3509043711,3509043967,3509044479,3509044735,3509046015,3509046271,3509047807,3509048063,3509048319,3509048575,3509050111,3509050367,3509050623,3509051391,3509052927,3509053183,3509053951,3509054207,3509058303,3509058559,3509157887,3509166079,3509190655,3509198847,3509215231,3509223423,3509239807,3509256191,3509290751,3509291007,3509295103,3509295359,3509295615,3509295871,3509296639,3509296895,3509298687,3509299199,3509299455,3509299711,3509301759,3509302015,3509304063,3509304319,3509305087,3509305343,3509308159,3509308671,3509311743,3509312255,3509313023,3509313535,3509314047,3509314303,3509315327,3509315583,3509316351,3509316607,3509316863,3509317119,3509317375,3509317631,3509318399,3509318655,3509319935,3509320191,3509320447,3509320703,3509321471,3509321727,3509346303,3509354495,3509387263,3509420031,3509478911,3509479423,3509518591,3509520383,3509520639,3509521151,3509521407,3509521663,3509521919,3509522175,3509522431,3509522687,3509522943,3509523199,3509523711,3509524479,3509524735,3509524991,3509526015,3509526271,3509527551,3509527807,3509528319,3509528831,3509529343,3509529599,3509530111,3509530367,3509532671,3509532927,3509533439,3509534719,3509535231,3509535487,3509536767,3509537023,3509538815,3509539071,3509539327,3509539583,3509540351,3509540607,3509542399,3509542655,3509544447,3509544703,3509545215,3509545471,3509549823,3509550079,3509551103,3509551359,3509553151,3509553407,3509554175,3509554431,3509555455,3509555711,3509556735,3509557247,3509557503,3509557759,3509558783,3509559039,3509559295,3509560319,3509560575,3509561599,3509561855,3509562879,3509563135,3509563391,3509563647,3509563903,3509564159,3509564671,3509564927,3509569279,3509570047,3509570303,3509570559,3509570815,3509572095,3509575679,3509576191,3509576447,3509576959,3509577727,3509577983,3509578239,3509578751,3509579775,3509580031,3509580287,3509580543,3509580799,3509581055,3509581311,3509581823,3509582847,3509583615,3509583871,3509723135,3509727231,3509731327,3509739519,3509792767,3509793535,3509793791,3509796095,3509796351,3509796863,3509825791,3509826303,3509826559,3509829375,3509829631,3509846015,3509875967,3509876223,3509977087,3509993471,3509997567,3510005759,3510008319,3510008575,3510008831,3510009087,3510009343,3510024191,3510026239,3510075391,3510075647,3510076159,3510076415,3510076671,3510076927,3510077183,3510077439,3510077951,3510078207,3510078463,3510078719,3510079231,3510079487,3510079743,3510080511,3510081023,3510081535,3510081791,3510082047,3510082303,3510082559,3510082815,3510083071,3510083839,3510084095,3510085119,3510085631,3510085887,3510099967,3510108159,3510173695,3510173951,3510174463,3510174719,3510178815,3510179071,3510179327,3510179583,3510183935,3510184191,3510184703,3510185471,3510186495,3510186751,3510187263,3510187519,3510188031,3510188287,3510190079,3510190335,3510191103,3510191359,3510192895,3510193407,3510193919,3510194175,3510194943,3510195455,3510195711,3510195967,3510201343,3510201599,3510202623,3510203135,3510203903,3510204159,3510206719,3510206975,3510207231,3510207743,3510209023,3510209279,3510211839,3510212607,3510213375,3510213631,3510216447,3510216703,3510218495,3510218751,3510220287,3510220543,3510224127,3510224383,3510226175,3510226431,3510228479,3510228735,3510228991,3510229247,3510231295,3510231551,3510232831,3510233087,3510234623,3510234879,3510236671,3510237183,3510239999,3510240255,3510242303,3510242559,3510243327,3510243583,3510243839,3510245375,3510245631,3510249471,3510249983,3510250751,3510251007,3510251263,3510253055,3510253311,3510253567,3510254079,3510254591,3510254847,3510255103,3510257663,3510258175,3510258431,3510258943,3510259199,3510260223,3510260479,3510260735,3510261503,3510261759,3510263295,3510263551,3510263807,3510264063,3510264319,3510265087,3510265343,3510266111,3510266367,3510268159,3510268415,3510268671,3510268927,3510269695,3510269951,3510270719,3510270975,3510280191,3510286335,3510288383,3510321151,3510321663,3510321919,3510322175,3510323199,3510324223,3510325247,3510326271,3510327295,3510328319,3510328575,3510328831,3510329599,3510329855,3510331391,3510332415,3510332927,3510333183,3510333439,3510333951,3510334975,3510335231,3510335743,3510335999,3510337279,3510337535,3510363647,3510363903,3510368255,3510368511,3510368767,3510369279,3510370047,3510370303,3510476543,3510476799,3510546431,3510550527,3510844415,3510844927,3510935551,3510943743,3510962175,3510962687,3510962943,3510963199,3510965247,3510966015,3510966527,3510966783,3510967551,3510968575,3510970623,3510971391,3510971647,3510972159,3510974207,3510974975,3510975999,3510976255,3510977279,3510977535,3510979839,3510980095,3510980607,3510980863,3510983167,3510983423,3510983935,3510984191,3510985215,3510985471,3510986495,3510986751,3510988799,3510989055,3510990079,3510990335,3510991103,3510991359,3510992383,3510992895,3510994175,3510994431,3510995967,3510996223,3511000575,3511000831,3511002111,3511002623,3511002879,3511003135,3511003391,3511003647,3511004159,3511004671,3511005439,3511005951,3511006719,3511007231,3511010815,3511011327,3511013375,3511013631,3511014399,3511014655,3511015679,3511015935,3511016191,3511016703,3511016959,3511017471,3511017983,3511018239,3511019007,3511019263,3511020287,3511020543,3511022335,3511022591,3511024639,3511024895,3511025663,3511025919,3511028223,3511028479,3511030783,3511031039,3511032319,3511032575,3511034879,3511035135,3511035391,3511035903,3511036159,3511036415,3511036671,3511036927,3511038207,3511038463,3511038719,3511038975,3511039231,3511039487,3511039743,3511040255,3511040767,3511041023,3511045887,3511046655,3511048703,3511048959,3511052543,3511052799,3511053823,3511054079,3511054847,3511055103,3511055359,3511055871,3511058175,3511058687,3511060991,3511061247,3511062015,3511062271,3511062783,3511063039,3511063551,3511063807,3511064319,3511064831,3511066111,3511066367,3511070463,3511070975,3511071231,3511071487,3511076863,3511077631,3511078143,3511079167,3511082495,3511082751,3511085055,3511085311,3511086079,3511086335,3511086847,3511087103,3511140351,3511156735,3511255295,3511255551,3511256319,3511256575,3511258111,3511258367,3511259903,3511260159,3511335167,3511335423,3511357183,3511357695,3511358207,3511358463,3511363327,3511363583,3511363839,3511364095,3511364351,3511364607,3511366655,3511366911,3511367167,3511367423,3511368447,3511368703,3511368959,3511369471,3511370495,3511370751,3511372287,3511372543,3511373311,3511373567,3511375871,3511376127,3511376639,3511376895,3511377151,3511377407,3511379199,3511379455,3511384575,3511385087,3511385343,3511385599,3511386111,3511386367,3511386879,3511387135,3511388671,3511388927,3511390463,3511390719,3511391231,3511391999,3511392255,3511392511,3511394047,3511394303,3511395583,3511395839,3511396095,3511396607,3511401471,3511401983,3511402239,3511402495,3511403263,3511403519,3511404287,3511404543,3511405055,3511405311,3511406335,3511406591,3511407359,3511407615,3511407871,3511408127,3511409407,3511409663,3511409919,3511410175,3511411711,3511411967,3511412735,3511412991,3511413759,3511414015,3511414271,3511414527,3511417343,3511417599,3511812095,3511844863,3511946239,3511946495,3511951103,3511951359,3512045567,3512045823,3512046847,3512047103,3512061951,3512062207,3512072191,3512072447,3512072959,3512073215,3512139775,3512143871,3512144127,3512156159,3512176127,3512176639,3512187903,3512188927,3512197119,3512205311,3512221439,3512221695,3512231167,3512231423,3512231679,3512231935,3512232447,3512233471,3512233727,3512242175,3512242431,3512246015,3512246783,3512248319,3512248831,3512249087,3512256511,3512258559,3512263679,3512264191,3512270847,3512311039,3512311295,3512336383,3512352511,3512352767,3512369151,3512385535,3512397823,3512401919,3512418303,3512451071,3512451583,3512451839,3512457727,3512458239,3512461823,3512462335,3512466687,3512467199,3512467455,3512532991,3512559871,3512560127,3512598527,3512598783,3512599295,3512599551,3512599807,3512600063,3512600319,3512601855,3512602111,3512603903,3512604159,3512604671,3512604927,3512619519,3512620287,3512622591,3512622847,3512647679,3512655871,3512676095,3512676351,3512676607,3512676863,3512678911,3512679167,3512697599,3512697855,3512698623,3512698879,3512701951,3512702207,3512827903,3512831999,3512836095,3512840191,3512844287,3512852479,3512959231,3512959487,3512959743,3512961023,3512968191,3512968703,3512968959,3512969215,3512970239,3512983551,3512987647,3512991743,3513057279,3513188351,3513204735,3513270271,3513286655,3513294847,3513303039,3513368575,3513376767,3513450495,3513450751,3513451263,3513451519,3513451775,3513452287,3513453055,3513453311,3513453567,3513453823,3513454079,3513454335,3513455871,3513456639,3513457407,3513457663,3513459455,3513459967,3513460479,3513460735,3513461503,3513461759,3513462271,3513462783,3513466623,3513466879,3513467647,3513467903,3513469439,3513469695,3513471487,3513471999,3513473791,3513474047,3513475071,3513483263,3513500671,3513500927,3513778175,3513794559,3513802751,3513917439,3513918207,3513918463,3513919999,3513920255,3513921535,3514007551,3514040319,3514124543,3514124799,3514335743,3514335999,3514338303,3514338559,3514357247,3514357759,3514365951,3514366207,3514367999,3514385919,3514386175,3514403583,3514403839,3514433535,3514565119,3514565375,3514566911,3514567167,3514567423,3514568191,3514570751,3514571007,3514589439,3514589695,3514590207,3514590719,3514590975,3514591487,3514592255,3514593279,3514593791,3514594047,3514596863,3514597375,3514696703,3514696959,3514699007,3514699263,3514713855,3514714111,3514715135,3514715391,3514715647,3514715903,3514718463,3514719231,3514761215,3514770431,3514770943,3514773503,3514774783,3514775039,3514775295,3514775551,3514776831,3514777087,3514780159,3514780927,3514781183,3514781439,3514783231,3514783743,3514784767,3514785791,3514796287,3514796543,3514797055,3514797567,3514797823,3514798591,3514798847,3514801151,3514802175,3514810367,3514810623,3514810879,3514811135,3514812927,3514813183,3514813439,3514813695,3514815487,3514815743,3514816767,3514817023,3514817279,3514817535,3514817791,3514819583,3514820095,3514823167,3514823679,3514824191,3514826751,3514833151,3514833407,3514843135,3514993919,3514994175,3515167487,3515167743,3515211775,3515219967,3515301887,3515318271,3515326463,3515334655,3515547903,3515548159,3515549439,3515549951,3515550719,3515550975,3515551743,3515551999,3515554815,3515555071,3515558655,3515558911,3515559167,3515559423,3515560959,3515561215,3515561471,3515561983,3515563519,3515563775,3515568127,3515568639,3515569151,3515569919,3515570431,3515570687,3515572735,3515572991,3515573503,3515573759,3515574271,3515574527,3515574783,3515575039,3515577087,3515577343,3515578111,3515578367,3515578879,3515579135,3515579391,3515579647,3515581439,3515581695,3515582207,3515582463,3515585023,3515585279,3515586559,3515586815,3515587327,3515587583,3515589887,3515590143,3515591423,3515591679,3515592703,3515593215,3515593727,3515593983,3515594239,3515594495,3515595519,3515595775,3515596799,3515607551,3515608063,3515613183,3515678719,3515679999,3515680255,3515682815,3515700735,3515700991,3515711487,3515731967,3515736063,3515744255,3515760639,3515765759,3515766783,3515768831,3515769855,3515770111,3515770367,3515771903,3515772927,3515950079,3515951103,3515951359,3515956479,3515956735,3515965439,3515973631,3515990015,3516006399,3516006655,3516006911,3516007167,3516007679,3516008191,3516008447,3516010239,3516010495,3516014591,3516015103,3516015615,3516016895,3516017151,3516018687,3516020735,3516021759,3516022783,3516030975,3516031999,3516033023,3516033535,3516034047,3516035071,3516035583,3516036095,3516036607,3516037119,3516037631,3516037887,3516038143,3516039167,3516071935,3516139007,3516139263,3516170239,3516203007,3516305407,3516309503,3516334079,3516342271,3516358655,3516366847,3516370943,3516514303,3516530687,3516729087,3516729343,3516731135,3516731391,3516731647,3516731903,3516734207,3516734463,3516734975,3516735743,3516738303,3516738559,3516741375,3516741631,3516745215,3516745471,3516748287,3516748543,3516749311,3516749567,3516751615,3516751871,3516753407,3516753663,3516754687,3516755199,3516756479,3516756735,3516756991,3516757503,3516762111,3516762367,3516762623,3516763135,3516764415,3516764671,3516765695,3516765951,3516766719,3516766975,3516769535,3516769791,3516770303,3516770559,3516773119,3516773375,3516773887,3516774143,3516775167,3516775423,3516776191,3516776959,3516777983,3516778239,3516780287,3516780543,3516781055,3516781567,3516782591,3516782847,3516783359,3516783615,3516785151,3516785407,3516787199,3516787711,3516787967,3516788223,3516788735,3516788991,3516790527,3516790783,3516792063,3516792319,3516899583,3516899839,3516900351,3516900607,3516903423,3516907519,3517014015,3517018111,3517038591,3517054975,3517072383,3517072639,3517073663,3517073919,3517075711,3517075967,3517076223,3517076479,3517078271,3517078527,3517079039,3517079295,3517079551,3517079807,3517080063,3517080319,3517081343,3517081599,3517082879,3517083135,3517084671,3517084927,3517085183,3517085439,3517087743,3517094399,3517094655,3517094911,3517095167,3517095423,3517095679,3517095935,3517100031,3517112319,3517120511,3517136895,3517145087,3517149951,3517150207,3517233151,3517235199,3517382655,3517383167,3517383423,3517384703,3517385215,3517385727,3517385983,3517387775,3517388031,3517388799,3517389311,3517389567,3517389823,3517390335,3517390591,3517391103,3517391359,3517392127,3517392383,3517393663,3517394175,3517394943,3517395199,3517397503,3517397759,3517398015,3517398527,3517399295,3517399807,3517401087,3517401343,3517401599,3517401855,3517402879,3517403391,3517403903,3517404159,3517404927,3517405183,3517407231,3517407487,3517409279,3517409791,3517411071,3517411327,3517420031,3517420287,3517422079,3517422591,3517430783,3517431039,3517432063,3517432319,3517434879,3517435135,3517441279,3517441535,3517441791,3517442047,3517444095,3517444351,3517444607,3517444863,3517445119,3517445375,3517446911,3517447167,3517448191,3517448447,3517448959,3517449983,3517450239,3517450751,3517451007,3517452287,3517452543,3517453823,3517454079,3517457151,3517457407,3517458175,3517458431,3517458687,3517458943,3517459967,3517460223,3517460991,3517461247,3517461503,3517461759,3517464063,3517464319,3517465087,3517465343,3517465599,3517465855,3517466111,3517466367,3517466623,3517466879,3517468415,3517468671,3517468927,3517469183,3517470207,3517470719,3517472255,3517472511,3517472767,3517473023,3517474815,3517475071,3517475583,3517475839,3517478143,3517478399,3517480191,3517480703,3517546495,3517562879,3517582335,3517582591,3517583871,3517584127,3517585151,3517585407,3517585663,3517585919,3517586687,3517586943,3517589247,3517589503,3517590015,3517590527,3517591039,3517591295,3517595903,3517596159,3517597439,3517597695,3517644799,3517710335,3517711871,3517712383,3517715455,3517716479,3517718527,3517726719,3518058751,3518059007,3518059263,3518059519,3518059775,3518060031,3518060287,3518060543,3518061055,3518061311,3518061823,3518062079,3518062591,3518066687,3518076671,3518076927,3518166527,3518166783,3518381055,3518381311,3518381823,3518382079,3518405119,3518405375,3518405631,3518405887,3518422271,3518422527,3518424063,3518425087,3518425599,3518425855,3518426367,3518426623,3518427135,3518431231,3518439423,3518463999,3518472191,3518826751,3518827007,3518827519,3518828031,3518828543,3518828799,3518832383,3518832895,3518833919,3518834175,3518835711,3518835967,3518837759,3518838271,3518839039,3518839295,3518840063,3518840319,3518841343,3518841599,3518845695,3518845951,3518846719,3518847231,3518847487,3518847743,3518853375,3518853631,3518854143,3518854399,3518854655,3518854911,3518855679,3518855935,3518889983,3518890239,3519118079,3519118335,3519234047,3519250431,3519281151,3519283199,3519283711,3519283967,3519321855,3519322111,3519322623,3519323135,3519323647,3519324159,3519340543,3519344639,3519351551,3519351807,3519356159,3519356415,3519381503,3519397887,3519416831,3519417087,3519417343,3519418111,3519418367,3519423487,3519423743,3519447039,3519448063,3519448575,3519448831,3519449087,3519449343,3519449599,3519449855,3519450111,3519450367,3519450623,3519450879,3519451135,3519451391,3519451647,3519451903,3519452159,3519452415,3519452671,3519452927,3519453183,3519453439,3519453695,3519453951,3519454207,3519454463,3519454719,3519454975,3519455231,3519475711,3519476223,3519479807,3519480319,3519480831,3519481343,3519483903,3519484415,3519484671,3519484927,3519485183,3519545343,3519578367,3519578623,3519579135,3519579903,3519580159,3519580415,3519581439,3519581695,3519582207,3519582719,3519583743,3519583999,3519584255,3519585279,3519585535,3519585791,3519586303,3519586559,3519587327,3519587583,3519587839,3519588351,3519588607,3519588863,3519589631,3519590399,3519590655,3519590911,3519591167,3519592447,3519592959,3519594495,3519606527,3519606783,3519609087,3519609599,3519634431,3519634687,3519676415,3519709183,3519716863,3519717119,3519723519,3519724031,3519725567,3519733759,3519736831,3519737087,3519741951,3519758335,3519856639,3519868927,3519869183,3519869439,3519870207,3519870463,3519871231,3519871487,3519873023,3519874559,3519875071,3519875327,3519875583,3519882495,3519882751,3519901695,3519925247,3519925503,3519930367,3519934463,3519938559,3519938815,3519939071,3519939327,3519939583,3519939839,3519940095,3519940351,3519940607,3519940863,3519941119,3519941375,3519941631,3519941887,3519942143,3519942399,3519942655,3519942911,3519943167,3519943423,3519943679,3519943935,3519944191,3519944447,3519944703,3519944959,3519945215,3519945471,3519945727,3519945983,3519946239,3519946495,3519946751,3519948287,3519948799,3519967231,3519969279,3519971071,3519971327,3520020479,3520036863,3520042239,3520042495,3520046591,3520046847,3520049663,3520049919,3520050431,3520050687,3520058623,3520058879,3520064767,3520065023,3520066815,3520067071,3520135167,3520135679,3520137215,3520138239,3520143359,3520144383,3520153087,3520153599,3520154111,3520154367,3520156671,3520157695,3520157951,3520158719,3520159743,3520164863,3520167167,3520192511,3520200703,3520356351,3520364543,3520380927,3520389119,3520389887,3520390399,3520390655,3520391167,3520391423,3520391679,3520391935,3520392191,3520392447,3520392959,3520393215,3520409599,3520413695,3520421887,3520429055,3520429311,3520430079,3520454655,3520462847,3520618495,3520634879,3520675839,3520692223,3520899583,3520900095,3520923391,3520924159,3520924415,3520925183,3520925695,3520925951,3520926207,3520926463,3520926719,3520926975,3520927487,3520927743,3520928255,3520928511,3520928767,3520929023,3520929279,3520929791,3520937983,3520954367,3520970751,3520978943,3520994815,3520995071,3520995327,3520999423,3521003519,3521005311,3521005567,3521006847,3521007103,3521016319,3521016831,3521028095,3521032191,3521044479,3521048575,3521216511,3521232895,3521249279,3521270015,3521270271,3521314815,3521316607,3521316863,3521317631,3521317887,3521319167,3521319679,3521320959,3521321215,3521321983,3521322239,3521323263,3521323519,3521323775,3521324031,3521324799,3521325055,3521326079,3521326335,3521326847,3521327103,3521327359,3521327615,3521332223,3521332735,3521332991,3521333247,3521333759,3521334015,3521334271,3521334527,3521335551,3521336063,3521336319,3521336831,3521337855,3521338111,3521340159,3521340415,3521341439,3521341695,3521342975,3521343487,3521343743,3521343999,3521346303,3521346559,3521347583,3521363967,3521380351,3521837055,3521837311,3521838335,3521838591,3521871871,3521880063,3521904639,3521915903,3521916927,3521918207,3521919999,3521921023,3521965055,3521966079,3522006271,3522006527,3522008063,3522008575,3522036735,3522036991,3522039551,3522039807,3522041343,3522041599,3522045695,3522045951,3522047743,3522047999,3522049279,3522049535,3522051071,3522051327,3522052351,3522052607,3522054911,3522055167,3522056959,3522057215,3522057983,3522058239,3522059775,3522060031,3522060799,3522061055,3522066175,3522066431,3522068223,3522068479,3522072831,3522073087,3522073599,3522073855,3522074367,3522074623,3522075391,3522075647,3522077951,3522078207,3522081279,3522082047,3522082303,3522082559,3522084095,3522084351,3522084863,3522085119,3522086399,3522086655,3522089471,3522089727,3522091007,3522091263,3522092799,3522093055,3522093311,3522093567,3522094079,3522094335,3522096127,3522096383,3522097919,3522098175,3522098943,3522099199,3522099967,3522100223,3522101247,3522109439,3522166783,3522168831,3522174975,3522179071,3522195455,3522199551,3522349311,3522350847,3522351103,3522352127,3522353151,3522353407,3522353663,3522353919,3522354431,3522354687,3522354943,3522355199,3522854911,3522871295,3522879487,3522881535,3522883583,3522887679,3522893823,3522894847,3522937599,3522938367,3522950655,3522951167,3522951423,3522951679,3522952191,3522952703,3523215359,3523223551,3523231743,3523248127,3523277311,3523277567,3523280895,3523297279,3523317759,3523330047,3523338239,3523340287,3523341311,3523342335,3523346431,3523354623,3523362815,3523379199,3523395583,3523411967,3523477503,3523493887,3523497983,3523500031,3523502079,3523510271,3523518463,3523526655,3523530751,3523532799,3523534847,3523538943,3523543039,3523551231,3523553279,3523555327,3523557375,3523558399,3523558655,3523559423,3523575807,3523583999,3523596543,3523596799,3523597311,3523606527,3523606783,3523607039,3523608063,3523674111,3523682303,3523686399,3523688447,3523690495,3523698687,3523698943,3523699199,3523699967,3523700223,3523700735,3523739647,3523870719,3523874815,3523887103,3523888127,3523890175,3523891199,3524001791,3524132863,3524145151,3524149247,3524157439,3524161535,3524247551,3524263935,3524266495,3524266751,3524267519,3524267775,3524274175,3524274431,3524280319,3524281343,3524282367,3524283391,3524288511,3524289535,3524290559,3524291583,3524293631,3524294655,3524295679,3524296703,3524313087,3524329471,3524362239,3524370687,3524370943,3524386303,3524386559,3524395007,3524444159,3524460543,3524526079,3524591615,3524722687,3524730879,3524739071,3524743167,3524747263,3524755455,3524763647,3524788223,3524790271,3524790527,3524790783,3524791807,3524792063,3524793855,3524794111,3524794367,3524801279,3524801535,3524801791,3524802047,3524802303,3524802559,3524804863,3524809215,3524809727,3524810239,3524810495,3524812799,3524813823,3524814847,3524827135,3524827391,3524828927,3524829183,3524829439,3524829695,3524830207,3524830463,3524832511,3524832767,3524833279,3524833535,3524833791,3524834303,3524834815,3524835327,3524835839,3524836095,3524837119,3524837375,3524839167,3524839935,3524840447,3524840703,3524840959,3524841471,3524841727,3524841983,3524842495,3524842751,3524843007,3524843263,3524843519,3524843775,3524844031,3524844543,3524845567,3524845823,3524846079,3524846335,3524846591,3524847359,3524847615,3524847871,3524848127,3524848383,3524848639,3524849407,3524849663,3524849919,3524850175,3524850431,3524850687,3524851455,3524853759,3526361087,3526393855,3526395903,3526397951,3526402047,3526410239,3526414335,3526416383,3526418431,3526426623,3526557695,3526754303,3526885375,3526887167,3526887423,3526893567,3526897663,3526901759,3526909951,3526918143,3526922239,3526924287,3526926335,3526934527,3526942719,3526950911,3526951935,3526952191,3526952447,3526952959,3526953727,3526953983,3526955007,3526955263,3526955775,3526956031,3526956287,3526956799,3526957055,3526957311,3526957567,3526957823,3526958335,3526958847,3526959359,3526959615,3526959871,3526960639,3526961151,3526961407,3526961663,3526961919,3526962175,3526962431,3526962687,3526962943,3526963199,3526963711,3526964223,3526964479,3526964735,3526965503,3526966271,3526966783,3526967295,3526967551,3526967807,3526968319,3526968575,3526968831,3526969087,3526969599,3526970367,3526970879,3526971391,3526972415,3526972671,3526972927,3526973183,3526973439,3526974207,3526974463,3526979071,3526979583,3527000319,3527000575,3527002111,3527003647,3527004159,3527008255,3527016447,3527933951,3528392703,3528396799,3528400895,3528404991,3528407039,3528408063,3528408575,3528409087,3528425471,3528425983,3528426495,3528427263,3528427519,3528428031,3528429823,3528430079,3528430591,3528431103,3528431615,3528431871,3528432127,3528432639,3528435199,3528435711,3528436735,3528436991,3528437247,3528437759,3528438271,3528438783,3528439807,3528440319,3528440831,3528441855,3528445951,3528450047,3528458239,3528459007,3528459263,3528464895,3528465151,3528465407,3528470015,3528470271,3528474623,3528482815,3528491007,3528507391,3528589311,3528720383,3528785919,3528851455,3528884223,3528908799,3528911103,3528911359,3528912895,3528933375,3528933887,3528934143,3528934399,3528935423,3528935935,3528936191,3528936447,3528942079,3528942335,3528942591,3528943615,3528944639,3528945151,3528945663,3528946175,3528946687,3528949247,3528949759,3528966143,3528974335,3528978431,3528982527,3528996863,3528998911,3529042431,3529042943,3529056255,3529064447,3529064959,3529065215,3529066239,3529066495,3529066751,3529067775,3529068031,3529068799,3529069311,3529069567,3529070335,3529070591,3529072639,3529074175,3529074687,3529080831,3529089023,3529097215,3529113599,3529622527,3529629695,3529687039,3529695231,3529834495,3529849855,3530506239,3530510335,3530518527,3530522623,3530702847,3530708991,3530711039,3530713087,3530715135,3530727423,3530735615,3530739711,3530751999,3530760191,3530768383,3530776575,3530976511,3530977023,3531538431,3531546623,3531603967,3531628799,3531629055,3531650047,3531650303,3531689471,3531690239,3531691519,3531691775,3531693055,3531693567,3531695615,3531696127,3531697919,3531698175,3531698431,3531699455,3531699711,3531699967,3531704831,3531705087,3531705599,3531705855,3531709183,3531709439,3531710463,3531710975,3531711999,3531712255,3531715327,3531715583,3531717375,3531717887,3531718655,3531718911,3531721471,3531721727,3531723775,3531724031,3531724543,3531724799,3531725055,3531725311,3531727615,3531728127,3531729151,3531729407,3531734527,3531734783,3532394751,3532395007,3532395263,3532395519,3532397055,3532397311,3532397567,3532397823,3532406271,3532406527,3532421631,3532421887,3532425215,3532425471,3532425727,3532425983,3532427263,3532427519,3532428031,3532428287,3532438271,3532438527,3532443391,3532443903,3532444415,3532444671,3532449791,3532450559,3532451071,3532451327,3532452607,3532452863,3532454655,3532454911,3533190143,3533190399,3533190655,3533190911,3533210367,3533210623,3533216767,3533217023,3533225983,3533226239,3533230079,3533230335,3533230591,3533230847,3533232639,3533232895,3533233407,3533233919,3533235199,3533235455,3533235711,3533235967,3533620735,3533621247,3534447103,3534447359,3534448127,3534448383,3534448639,3534448895,3534449407,3534449663,3534450687,3534450943,3534451967,3534452223,3534452479,3534452735,3534453247,3534453503,3534749695,3534757887,3534758143,3534758399,3534758655,3534759167,3534759423,3534759935,3534760447,3534760959,3534761471,3534761727,3534761983,3534782463,3534782719,3534782975,3534783487,3534783743,3534783999,3534784255,3534784511,3534785023,3534785535,3534786047,3534786303,3534786559,3534786815,3534787327,3534787839,3534788095,3534788607,3534789119,3534789631,3534789887,3534790143,3534880767,3535273983,3535274495,3535274751,3535279103,3535279359,3535280383,3535280639,3535280895,3535281151,3535282431,3535282687,3535283199,3535283455,3535291903,3535292159,3535292671,3535292927,3535294463,3535294719,3535294975,3535295231,3535298303,3535298559,3535339519,3535355903,3535372287,3535380479,3535388671,3535405055,3535480575,3535480831,3535536127,3535619583,3535620095,3535620351,3535620607,3535621119,3535621375,3535625727,3535625983,3535655935,3535656191,3535656703,3535656959,3535657727,3535658239,3535662591,3535662847,3535664639,3535664895,3535666175,3535666431,3535666943,3535667199,3535798271,3535814655,3535822847,3535831039,3535863807,3535880191,3535896575,3535929343,3535994879,3536060415,3536322559,3536551935,3536568319,3536584703,3536674815,3536678911,3536846847,3536928767,3536945151,3536977919,3537010687,3537027071,3537047551,3537049599,3537051647,3537057791,3537059839,3537068031,3537076223,3537174527,3537190911,3537208063,3537208319,3537208831,3537209087,3537240063,3537252863,3537253119,3537300479,3537300735,3537305599,3537371135,3537526783,3537534975,3537567743,3537575935,3537641471,3537649663,3537739775,3537747967,3537895423,3538616575,3538616831,3538620927,3538621439,3538622463,3538622719,3538741247,3538741503,3538744063,3538744319,3538888447,3538888703,3538900991,3538901247,3538902527,3538902783,3538943999,3539271679,3539279615,3539279871,3539304447,3539337215,3539353599,3539388415,3539388671,3539402751,3539435519,3539439615,3539443711,3539462143,3539462911,3539463423,3539463679,3539464191,3539468287,3539648511,3539648767,3539649279,3539649535,3539650047,3539650303,3539651071,3539651839,3539652095,3539652351,3539653631,3539653887,3539654399,3539654655,3539655423,3539655679,3539656447,3539656703,3539757311,3539757567,3539760895,3539761151,3539762687,3539762943,3540174335,3540174847,3540175359,3540175615,3540176895,3540177151,3540177407,3540178175,3540179455,3540179711,3540180479,3540180991,3540181759,3540182015,3540183039,3540183295,3540184575,3540184831,3540185343,3540185855,3540188159,3540188415,3540188927,3540189183,3540648703,3540648959,3540649215,3540649471,3540654079,3540654335,3540902399,3540902655,3540904447,3540904959,3540907519,3540908031,3540908543,3540908799,3540909311,3540909823,3540943615,3540943871,3540947199,3540947455,3540948223,3540948479,3540949247,3540949503,3540958719,3540958975,3541303295,3541565439,3541696511,3542089727,3542306815,3542310911,3542311935,3542319103,3542376447,3542384639,3542474751,3542482943,3542599423,3542599679,3542847743,3542847999,3543114751,3543117823,3543134207,3543138303,3544014847,3544018943,3544145919,3544154111,3544186879,3544711167,3545235455,3546808319,3547635711,3547639807,3547856895,3547859199,3547859455,3547859711,3547859967,3547866879,3547867135,3547868927,3547869183,3547869695,3547869951,3548744703,3548744959,3548770815,3548771071,3548905471,3549120511,3549120767,3549986815,3549987327,3549987839,3549988863,3549989375,3549994239,3550180095,3550180351,3551002623,3551285247,3551289343,3551293439,3551297535,3551305727,3551309823,3551313919,3551318015,3551399935,3551404031,3552456703,3552473087,3552481279,3552501759,3552514047,3552518143,3552522239,3552526335,3552534527,3552538623,3552546815,3552550911,3552559103,3552571391,3555287039,3555295231,3555393535,3555401727,3555561471,3555565567,3555573759,3555577855,3555643391,3555647487,3556696063,3556703231,3556769791,3556786175,3556794367,3556802559,3556810751,3556818943,3556827135,3556843519,3556851711,3556868095,3556876287,3556884479,3556886527,3556888575,3556890623,3556891135,3556891647,3556892159,3556892671,3556900863,3556909055,3556925439,3556933631,3556941823,3556950015,3556958207,3556960767,3556961279,3556961535,3556961791,3556962303,3556964351,3556966399,3556974591,3556982783,3556990975,3556999167,3557007359,3557015551,3557023743,3557025535,3557025791,3557026047,3557026303,3557026815,3557027071,3557028095,3557028351,3557031935,3557040127,3557048319,3557056511,3557064703,3557072895,3557081087,3557089279,3557105663,3557107711,3557109759,3557110015,3557110271,3557111807,3557112319,3557112831,3557113087,3557113343,3557113855,3557130239,3557138431,3557146623,3557154815,3557171199,3557171455,3557171711,3557172223,3557172479,3557172735,3557172991,3557173247,3557173759,3557174015,3557174271,3557174527,3557174783,3557175039,3557175295,3557175807,3557176063,3557176319,3557176575,3557176831,3557177087,3557177343,3557177599,3557178111,3557178623,3557178879,3557179135,3557179391,3557228543,3557236735,3557244927,3557253119,3557261311,3557277695,3557282815,3557285887,3557294079,3557302271,3557310463,3557326847,3557335039,3557343231,3557351423,3557352959,3557353471,3557355519,3557355775,3557356031,3557357311,3557357567,3557359103,3557359615,3557367807,3557375999,3557384191,3557392383,3557400575,3557408767,3557416959,3557425151,3557490687,3557507071,3557507327,3557510911,3557511167,3557511423,3557512191,3557512447,3557513215,3557514239,3557514495,3557515007,3557515263,3557523455,3557531647,3557539839,3557548031,3557556223,3557564415,3557572607,3557580799,3557588991,3557597183,3557605375,3557613567,3557621759,3557629951,3557638143,3557646335,3557654527,3557670911,3557679103,3557687295,3557703679,3557711871,3557720063,3557728255,3557744639,3557752831,3557761023,3557769215,3557773311,3557775359,3557777407,3557785599,3557793791,3557801983,3557810175,3557818367,3557826559,3557834751,3557838591,3557838847,3557839103,3557840383,3557840639,3557842175,3557842431,3557842943,3557847039,3557851135,3557859327,3557859839,3557860095,3557867519,3557875711,3557883903,3557892095,3557900287,3557916671,3557924863,3557933055,3557941247,3557957631,3557965823,3557974015,3557974271,3557974527,3557974783,3557975039,3557975295,3557975551,3557975807,3557976063,3557976319,3557976575,3557977087,3557977343,3557977599,3557977855,3557978111,3557978367,3557978623,3557978879,3557979391,3557979903,3557980159,3557980415,3557980671,3557980927,3557981183,3557981439,3557981695,3557981951,3557982207,3557990399,3557998591,3558006783,3558008319,3558008575,3558010879,3558012927,3558014207,3558014975,3558023167,3558031359,3558039551,3558047743,3558055935,3558064127,3558067967,3558068223,3558068735,3558068991,3558069247,3558072319,3558073343,3558080511,3558096895,3558113279,3558114303,3558114559,3558114815,3558115327,3558118399,3558118911,3558119167,3558119423,3558121471,3558129663,3558137855,3558146047,3558154239,3558156799,3558157055,3558162431,3558170623,3558173695,3558174463,3558175743,3558176767,3558178815,3558180351,3558180607,3558187007,3558195199,3558196735,3558197247,3558203391,3558211583,3558219775,3558223871,3558227967,3558229247,3558229503,3558230783,3558231039,3558236159,3558244351,3558252543,3558260735,3558268927,3558269439,3558269695,3558270463,3558270975,3558271743,3558272767,3558273791,3558275071,3558275839,3558276095,3558276863,3558277119,3558285567,3558286079,3558286591,3558286847,3558287615,3558287871,3558288127,3558288383,3558288639,3558288895,3558289407,3558289663,3558289919,3558290175,3558290687,3558290943,3558291199,3558291455,3558292223,3558292735,3558292991,3558293247,3558293503,3558301695,3558318079,3558326271,3558326783,3558327039,3558327551,3558327807,3558328063,3558328319,3558328575,3558328831,3558329087,3558329343,3558329855,3558330111,3558330623,3558330879,3558331135,3558331391,3558331647,3558331903,3558332159,3558332415,3558332671,3558332927,3558333183,3558333439,3558333695,3558333951,3558334207,3558334463,3558342655,3558350847,3558359039,3558367231,3558371327,3558371583,3558371839,3558372095,3558372351,3558373375,3558373631,3558373887,3558374143,3558374399,3558374655,3558374911,3558375167,3558375423,3558383615,3558391807,3558399999,3558408191,3558416383,3558424575,3558440959,3558449151,3558457343,3558461951,3558462207,3558465535,3558468607,3558469119,3558469631,3558470143,3558470655,3558471167,3558471679,3558472191,3558473727,3558506495,3558514687,3558522879,3558524927,3558525183,3558525439,3558525695,3558526975,3558527743,3558531071,3558539263,3558547455,3558555647,3558572031,3558580223,3558580479,3558580735,3558583039,3558583295,3558583551,3558584319,3558585343,3558586367,3558586879,3558587135,3558587391,3558587903,3558588415,3558596607,3558596863,3558597375,3558597631,3558598655,3558598911,3558599167,3558602239,3558602751,3558604799,3558612991,3558621183,3558629375,3558637567,3558645759,3558653951,3558662143,3558670335,3558686719,3558703103,3558711295,3558719487,3558735871,3558744063,3558744319,3558744575,3558744831,3558745087,3558745343,3558745599,3558746111,3558747135,3558749183,3558751231,3558751487,3558751743,3558751999,3558752255,3558760447,3558768639,3558785023,3558801407,3558809599,3558817791,3558825983,3558834175,3558836223,3558842367,3558850559,3558850815,3558851327,3558852607,3558853887,3558854655,3558854911,3558855167,3558855935,3558856191,3558858751,3558866943,3558877951,3558878207,3558891519,3558899711,3558916095,3558924287,3558932479,3558940671,3558948863,3558957055,3558965247,3558973439,3558981631,3558989823,3558998015,3559006207,3559014399,3559022591,3559030783,3559038975,3559047167,3559055359,3559063551,3559079935,3559088127,3559096319,3559104511,3559112703,3559120895,3559129087,3559137279,3559145471,3559153663,3559163135,3559163391,3559166975,3559167231,3559168255,3559168511,3559171583,3559172095,3559172607,3559172863,3559175679,3559175935,3559178239,3559186431,3559194623,3559198463,3559198719,3559202815,3559211007,3559219199,3559227391,3559235583,3559243775,3559251967,3559260159,3559268351,3559276543,3559284735,3559286783,3559287039,3559288575,3559288831,3559291391,3559291647,3559291903,3559292159,3559292415,3559292671,3559292927,3559301119,3559305215,3559305727,3559307263,3559307519,3559308031,3559308287,3559309311,3559317503,3559325695,3559333887,3559336447,3559336703,3559342079,3559350271,3559358463,3559366655,3559374847,3559383039,3559383551,3559383807,3559384575,3559391231,3559399423,3559407615,3559423999,3559432191,3559437567,3559437823,3559440383,3559448575,3559456767,3559473151,3559489535,3559489791,3559490047,3559493375,3559493631,3559494655,3559494911,3559497727,3559505919,3559514111,3559522303,3559530495,3559538687,3559546879,3559555071,3559563263,3559571455,3559579647,3559587839,3559596031,3559604223,3559612415,3559620607,3559628799,3559636991,3559653375,3559669759,3559677951,3559686143,3559694335,3559710719,3559718911,3559727103,3559735295,3559739391,3559743487,3559745535,3559746303,3559746559,3559747071,3559747327,3559747583,3559751679,3559759871,3559768063,3559776255,3559792895,3559793151,3559793407,3559793663,3559793919,3559794175,3559794431,3559794687,3559794943,3559795199,3559795455,3559795711,3559795967,3559796223,3559796479,3559796735,3559796991,3559797247,3559797503,3559797759,3559798015,3559798271,3559798527,3559798783,3559799039,3559799551,3559799807,3559800063,3559800319,3559800575,3559800831,3559809023,3559817215,3559818751,3559819775,3559825407,3559833599,3559849983,3559858175,3559866367,3559870975,3559871487,3559871743,3559871999,3559872511,3559874559,3559882751,3559890943,3559899135,3559899391,3559900671,3559902975,3559903231,3559903743,3559905023,3559905279,3559906047,3559906559,3559906815,3559907071,3559907327,3559915519,3559923711,3559931903,3559934463,3559934719,3559938559,3559938815,3559939327,3559939583,3559940095,3559944191,3559944703,3559945727,3559945983,3559946495,3559946751,3559948287,3559956479,3559964671,3559976959,3559981055,3559984639,3559984895,3559987199,3559987711,3559988223,3559988735,3559989247,3559997439,3560005631,3560013823,3560030207,3560046591,3560054783,3560062975,3560071167,3560079359,3560087551,3560095743,3560103935,3560104959,3560105983,3560112127,3560120319,3560128511,3560144895,3560153087,3560161279,3560169471,3560177663,3560177919,3560178175,3560178431,3560178687,3560178943,3560179199,3560179455,3560179711,3560179967,3560180735,3560180991,3560181247,3560181759,3560182015,3560182271,3560182527,3560182783,3560183039,3560183295,3560183551,3560183807,3560184063,3560185343,3560185855,3560194047,3560210431,3560218623,3560226815,3560229119,3560229375,3560235007,3560243199,3560247295,3560251391,3560252159,3560252415,3560259583,3560267775,3560275967,3560281087,3560281343,3560282367,3560282623,3560285951,3560286207,3560289023,3560289279,3560308735,3560316927,3560325119,3560333311,3560341503,3560344575,3560345087,3560345599,3560348671,3560357887,3560366079,3560374271,3560382463,3560390655,3560398847,3560407039,3560421375,3560423423,3560431615,3560439807,3560440319,3560440831,3560441599,3560442623,3560442879,3560444927,3560445951,3560447487,3560447999,3560449791,3560450047,3560454655,3560455167,3560472575,3560480767,3560488959,3560497151,3560499199,3560499455,3560505343,3560513535,3560515583,3560517631,3560521727,3560529919,3560554495,3560562687,3560570879,3560579071,3560587263,3560595455,3560603647,3560611839,3560620031,3560628223,3560636415,3560644607,3560652799,3560653055,3560653311,3560653567,3560653823,3560654079,3560654335,3560654591,3560654847,3560656895,3560657407,3560657663,3560658175,3560659199,3560659455,3560659711,3560660479,3560660735,3560660991,3560669183,3560685567,3560693759,3560701951,3560702975,3560703999,3560704511,3560704767,3560705023,3560705279,3560705535,3560705791,3560706559,3560706815,3560707071,3560708095,3560710143,3560718335,3560726527,3560734719,3560742911,3560751103,3560767487,3560833023,3560841215,3560849407,3560857599,3560865791,3560882175,3560890367,3560898559,3560906751,3560923135,3560931327,3560947711,3560955903,3560964095,3560996863,3561005055,3561013247,3561021439,3561022719,3561022975,3561037823,3561046015,3561054207,3561062399,3561070591,3561070847,3561078783,3561095167,3561103359,3561103615,3561103871,3561107455,3561109503,3561111551,3561119743,3561127935,3561136127,3561144319,3561152511,3561160703,3561166847,3561167103,3561167359,3561168895,3561172991,3561177087,3561185279,3561193471,3561201663,3561209855,3561218047,3561226239,3561234431,3561240319,3561240575,3561242623,3561259007,3561267199,3561275391,3561291775,3561292031,3561292287,3561294335,3561294591,3561294847,3561297407,3561298943,3561299967,3561308159,3561314303,3561316351,3561324543,3561325567,3561326335,3561326591,3561328639,3561332735,3561332991,3561333503,3561334271,3561334527,3561335295,3561336831,3561338623,3561339135,3561339391,3561339647,3561340927,3561357311,3561357823,3561358079,3561358335,3561359359,3561361407,3561365503,3561373695,3561381887,3561390079,3561398271,3561406463,3561414655,3561422847,3561431039,3561439231,3561447423,3561455615,3561471999,3561480191,3561488383,3561496575,3561497599,3561498111,3561504767,3561512959,3561521151,3561529343,3561536767,3561537023,3561537535,3561545727,3561553919,3561562111,3561570303,3561578495,3561586687,3561588479,3561588735,3561592831,3561593343,3561593599,3561593855,3561594111,3561594879,3561603071,3561605631,3561606143,3561610239,3561610495,3561615615,3561615871,3561617407,3561617663,3561617919,3561618175,3561618431,3561618687,3561618943,3561619455,3561639423,3561639935,3561640703,3561640959,3561652223,3561668607,3561684991,3561693183,3561701375,3561709567,3561717759,3561725951,3561734143,3561750527,3561758719,3561766911,3561775103,3561783295,3561799679,3561807871,3561816063,3561823999,3561824255,3561832447,3561840639,3561848831,3561857023,3561865215,3561873407,3561881599,3561889791,3561897983,3561900287,3561900799,3561906175,3561914367,3561922559,3561928447,3561928703,3561938943,3561947135,3561963519,3561971711,3561975807,3561979903,3561988095,3562012671,3562012927,3562020863,3562029055,3562037247,3562045439,3562059263,3562059519,3562061823,3562062847,3562063871,3562064895,3562065919,3562066943,3562067967,3562068991,3562070015,3562078207,3562086399,3562088447,3562088959,3562089215,3562089471,3562090495,3562091007,3562091263,3562091519,3562092543,3562093567,3562094591,3562095103,3562098687,3562099711,3562101759,3562102783,3562103039,3562103295,3562103807,3562104831,3562105599,3562105855,3562110463,3562110719,3562110975,3562143743,3562151935,3562160127,3562168831,3562169599,3562170367,3562172415,3562173951,3562174463,3562176511,3562184703,3562192895,3562201087,3562209279,3562217471,3562221311,3562221567,3562225663,3562226431,3562233855,3562242047,3562258431,3562283007,3562285055,3562287103,3562289151,3562291199,3562307583,3562315775,3562323967,3562340351,3562348543,3562354687,3562356735,3562364927,3562373119,3562381311,3562389503,3562397695,3562398975,3562399743,3562403839,3562405887,3562414079,3562422271,3562430463,3562430719,3562430975,3562431231,3562431487,3562431743,3562432255,3562432511,3562433023,3562433279,3562433535,3562434047,3562435071,3562435583,3562438655,3562463231,3562471423,3562479615,3562487807,3562495999,3562504191,3562512383,3562520575,3562521599,3562522623,3562523647,3562523903,3562524671,3562526719,3562526975,3562527231,3562528767,3562536959,3562545151,3562553343,3562561535,3562569727,3562577919,3562586111,3562594303,3562602495,3562610687,3562618879,3562627071,3562643455,3562651647,3562659839,3562668031,3562676223,3562684415,3562692607,3562693631,3562694143,3562695679,3562696703,3562697727,3562698751,3562699007,3562699263,3562699775,3562700799,3562708991,3562717183,3562725375,3562733567,3562741759,3562758143,3562766335,3562774527,3562782719,3562790911,3562799103,3562807295,3562815487,3562823679,3562825215,3562825471,3562825727,3562831359,3562831615,3562831871,3562848255,3562856447,3562864639,3562872831,3562881023,3562889215,3562897407,3562905599,3562921983,3562930175,3562938367,3562944255,3562944511,3562946559,3562954751,3562962943,3562971135,3562987519,3562995711,3563003903,3563012095,3563020287,3563028479,3563036671,3563044863,3563053055,3563061247,3563065343,3563065599,3563065855,3563066111,3563066367,3563066623,3563066879,3563067135,3563067391,3563067647,3563067903,3563068159,3563068415,3563068671,3563068927,3563069183,3563069439,3563077631,3563085823,3563094015,3563102207,3563110399,3563113983,3563114239,3563118591,3563126783,3563134975,3563143167,3563143423,3563143679,3563143935,3563144191,3563144447,3563144703,3563144959,3563145215,3563149311,3563151359,3563159551,3563167743,3563175935,3563192319,3563200511,3563208703,3563209727,3563210239,3563224575,3563225087,3563233279,3563241471,3563257855,3563290623,3563315199,3563323391,3563331583,3563339775,3563347967,3563356159,3563364351,3563372543,3563380735,3563388927,3563397119,3563405311,3563413503,3563421695,3563438079,3563446271,3563454463,3563462655,3563462911,3563463167,3563463679,3563464191,3563464703,3563465215,3563465471,3563465727,3563466751,3563467263,3563467775,3563468287,3563468799,3563469311,3563470335,3563470591,3563470847,3563479039,3563479295,3563479551,3563479807,3563480063,3563480575,3563480831,3563481087,3563481343,3563481599,3563481855,3563482111,3563482367,3563482879,3563483135,3563483391,3563483647,3563483903,3563484159,3563484415,3563484927,3563485183,3563485439,3563485695,3563485951,3563486207,3563486463,3563486719,3563486975,3563487231,3563491327,3563492351,3563493375,3563494399,3563494911,3563495167,3563495423,3563503615,3563511807,3563519999,3563528191,3563529215,3563530239,3563530751,3563531263,3563531519,3563532287,3563532799,3563533055,3563533311,3563534335,3563535359,3563535871,3563536127,3563536383,3563544575,3563552767,3563560959,3563569151,3563577343,3563585535,3563601919,3563610111,3563618303,3563626495,3563634687,3563636479,3563636735,3563636991,3563637247,3563637503,3563638783,3563639295,3563639551,3563639807,3563640831,3563642879,3563646975,3563651071,3563683839,3563692031,3563700223,3563708415,3563716607,3563724799,3563732991,3563741183,3563749375,3563765759,3563782143,3563783167,3563784191,3563785215,3563786239,3563786751,3563787263,3563788287,3563788543,3563788799,3563789055,3563789311,3563789823,3563790335,3563798527,3563801599,3563801855,3563806719,3563814911,3563823103,3563831295,3563847679,3563847935,3563848447,3563849215,3563849727,3563850239,3563850751,3563851007,3563851775,3563854335,3563854591,3563854847,3563855359,3563855615,3563855871,3563864063,3563872255,3563880447,3563884287,3563884543,3563888639,3563896831,3563899903,3563900159,3563900415,3563900671,3563913215,3563921407,3563929599,3563937791,3563945983,3563956223,3563958271,3563962367,3563970559,3563978751,3563995135,3564003327,3564011519,3564019711,3564027903,3564044287,3564052479,3564055551,3564055807,3564059391,3564059647,3564060671,3564064767,3564065535,3564066815,3564067327,3564068863,3564077055,3564085247,3564093439,3564099327,3564099583,3564101631,3564109823,3564126207,3564133119,3564133375,3564134399,3564142591,3564150783,3564158975,3564159999,3564161279,3564162303,3564162815,3564163071,3564163327,3564163583,3564164095,3564164351,3564164863,3564165119,3564165375,3564165887,3564166655,3564166911,3564167167,3564175359,3564183551,3564185087,3564185343,3564191743,3564199935,3564202495,3564202751,3564205055,3564205311,3564205823,3564206079,3564208127,3564208383,3564208639,3564208895,3564209151,3564209407,3564209663,3564210431,3564210687,3564211967,3564212735,3564212991,3564213247,3564215551,3564215807,3564216319,3564224511,3564232703,3564240895,3564249087,3564265471,3564273663,3564306431,3564314623,3564315647,3564316671,3564316927,3564317183,3564317695,3564318719,3564319487,3564319743,3564320767,3564321791,3564322815,3564332031,3564333055,3564334079,3564334591,3564334847,3564335103,3564336127,3564337151,3564338175,3564338687,3564339199,3564339711,3564339967,3564340223,3564341247,3564341503,3564342015,3564342271,3564342527,3564342783,3564343039,3564343295,3564343807,3564344319,3564345343,3564346367,3564347391,3564347903,3564348159,3564348415,3564348671,3564349183,3564349439,3564349695,3564350207,3564350463,3564351231,3564351743,3564352511,3564352767,3564353023,3564353279,3564353535,3564353791,3564354303,3564354559,3564355583,3564363775,3564371967,3564380159,3564388351,3564396543,3564404735,3564412927,3564421119,3564429311,3564429823,3564430335,3564434175,3564434431,3564434687,3564434943,3564436479,3564437503,3564445695,3564449791,3564453887,3564462079,3564470271,3564478463,3564479487,3564480511,3564481535,3564486655,3564494847,3564495103,3564495871,3564496895,3564499455,3564499711,3564501759,3564502015,3564503039,3564511231,3564512255,3564514303,3564516351,3564517375,3564517631,3564518399,3564518655,3564518911,3564519423,3564527615,3564543999,3564560383,3564565759,3564566015,3564566271,3564566527,3564569087,3564569343,3564569855,3564570111,3564570367,3564570623,3564570879,3564571391,3564571647,3564571903,3564572415,3564572671,3564573183,3564573439,3564573951,3564574207,3564574719,3564574975,3564575231,3564575487,3564575743,3564576767,3564577023,3564577279,3564577791,3564578815,3564579839,3564580863,3564582911,3564583167,3564583423,3564583679,3564583935,3564584959,3564593151,3564601343,3564609535,3564634111,3564642303,3564650495,3564666879,3564674047,3564674303,3564675071,3564683263,3564691455,3564699647,3564709119,3564709375,3564716031,3564724223,3564732415,3564740607,3564748799,3564756991,3564765183,3564773375,3564781567,3564789759,3564797951,3564806143,3564814335,3564822527,3564830719,3564838911,3564842495,3564843007,3564847103,3564855295,3564863487,3564883455,3564883711,3564884479,3564884991,3564886783,3564887039,3564891391,3564891647,3564892159,3564895743,3564896255,3564904447,3564912639,3564913663,3564913919,3564914175,3564914431,3564914687,3564915711,3564915967,3564916223,3564916479,3564916735,3564917759,3564918271,3564918527,3564919807,3564920063,3564920319,3564920831,3564929023,3564937215,3564945407,3564961791,3564969983,3564978175,3564986367,3564994559,3565002751,3565027327,3565035519,3565042687,3565042943,3565043711,3565047807,3565048063,3565051903,3565060095,3565068287,3565076479,3565084671,3565092863,3565101055,3565109247,3565117439,3565125631,3565158399,3565223935,3565240319,3565248511,3565256703,3565289471,3565355007,3565420543,3565436927,3565453311,3565461503,3565486079,3565486335,3565486591,3565487103,3565487615,3565487871,3565488127,3565488639,3565488895,3565489151,3565489407,3565489663,3565489919,3565490175,3565490431,3565490687,3565490943,3565491199,3565491455,3565491711,3565492223,3565492479,3565492735,3565492991,3565493247,3565494015,3565494271,3565494527,3565495295,3565496575,3565496831,3565497087,3565497343,3565497599,3565498111,3565498367,3565499135,3565499391,3565499903,3565500159,3565500415,3565501439,3565501951,3565502207,3565502463,3565502719,3565502975,3565503231,3565503487,3565503743,3565503999,3565504511,3565505023,3565505279,3565510655,3565511679,3565512191,3565512703,3565513983,3565514239,3565514495,3565514751,3565515007,3565515263,3565515519,3565516031,3565516287,3565516543,3565516799,3565517055,3565517823,3565518079,3565518335,3565518591,3565518847,3565551615,3565578495,3565578751,3565682687,3565747455,3565747711,3565748223,3565762047,3565762303,3565813759,3565879295,3566010367,3566075903,3566092287,3566108671,3566141439,3566206975,3566272511,3566338047,3566354431,3566370815,3566372863,3566379007,3566387199,3566403583,3566436351,3566469119,3566534655,3566551039,3566600191,3566665727,3566704383,3566704639,3566704895,3566706175,3566706431,3566739455,3566747647,3566764031,3566796799,3566816511,3566816767,3566862335,3566895103,3566927871,3566993407,3567058943,3567124479,3567157247,3567165439,3567169535,3567173631,3567239167,3567255551,3567321087,3567322879,3567323135,3567326719,3567327231,3567336959,3567337215,3567337471,3567338495,3567339007,3567339519,3567339775,3567340543,3567341055,3567341311,3567341567,3567343359,3567343871,3567344383,3567344639,3567345151,3567345407,3567346175,3567346431,3567346943,3567347199,3567347711,3567347967,3567348223,3567348479,3567348735,3567350271,3567350527,3567350783,3567353855,3567386623,3567387135,3567387391,3567388671,3567388927,3567389439,3567389695,3567390975,3567391231,3567391999,3567392511,3567392767,3567393279,3567393535,3567393791,3567394047,3567394303,3567394815,3567395327,3567396607,3567396863,3567397631,3567397887,3567398143,3567398399,3567398655,3567402239,3567402495,3567403007,3567419391,3567420415,3567422463,3567423487,3567424511,3567425535,3567426559,3567427583,3567435775,3567452159,3567507455,3567509503,3567512575,3567513599,3567517695,3567583231,3567583487,3567583743,3567583999,3567584255,3567585023,3567586303,3567586815,3567591423,3567599615,3567615999,3567616255,3567617279,3567617535,3567618047,3567619071,3567620351,3567620607,3567621119,3567621375,3567621631,3567621887,3567622143,3567622399,3567622655,3567622911,3567623935,3567624191,3567624447,3567624959,3567625215,3567625727,3567625983,3567626239,3567626751,3567627007,3567629567,3567629823,3567634431,3567634687,3567634943,3567635455,3567635711,3567635967,3567640575,3567644671,3567647487,3567648767,3567665151,3567673343,3567681535,3567714303,3567845375,3567861759,3567878143,3567976447,3568041983,3568107519,3568140287,3568173055,3568304127,3568309759,3568310015,3568369663,3568401919,3568402431,3568431103,3568431359,3568435199,3568443391,3568476159,3568484351,3568492543,3568500735,3568566271,3568599039,3568631807,3568697343,3568730111,3568746495,3568762879,3568795647,3568803839,3568812031,3568828415,3568959487,3569001471,3569001727,3569001983,3569002751,3569012991,3569014271,3569025023,3569057791,3569059327,3569059583,3569060863,3569061375,3569068543,3569068799,3569069055,3569069311,3569069823,3569070079,3569075711,3569075967,3569076735,3569076991,3569083135,3569083391,3569083903,3569084159,3569085695,3569085951,3569090559,3569123327,3569156095,3569156863,3569157119,3569157887,3569158143,3569158655,3569159423,3569159679,3569159935,3569160191,3569160447,3569161215,3569162239,3569163519,3569164287,3569164543,3569164799,3569165567,3569166335,3569167359,3569167871,3569168639,3569168895,3569169919,3569172223,3569172479,3569176575,3569177087,3569180671,3569183231,3569183743,3569185535,3569185791,3569186559,3569187071,3569187327,3569187839,3569188863,3569221631,3569243903,3569244159,3569251071,3569251327,3569251839,3569277183,3569277439,3569287167,3569352703,3569352959,3569353215,3569353727,3569353983,3569354239,3569354495,3569354751,3569355007,3569355263,3569355519,3569355775,3569356031,3569356287,3569356543,3569356799,3569358847,3569359871,3569360383,3569360639,3569360895,3569361919,3569362943,3569403903,3569404415,3569405951,3569406207,3569406463,3569406975,3569407231,3569407487,3569407999,3569408255,3569408511,3569409023,3569409279,3569409535,3569409791,3569410047,3569414143,3569414399,3569414655,3569414911,3569415167,3569415423,3569415679,3569415935,3569416191,3569416447,3569416703,3569416959,3569417215,3569417471,3569417983,3569418495,3569418751,3569419007,3569419263,3569419519,3569419775,3569420031,3569420287,3569420543,3569420799,3569421055,3569421311,3569421823,3569422079,3569422335,3569424383,3569424639,3569425407,3569425919,3569426175,3569426431,3569453055,3569455103,3569464319,3569465343,3569483775,3569614847,3569680383,3569713151,3569729535,3569732607,3569732863,3569736191,3569736703,3569739263,3569740799,3569741311,3569741823,3569742335,3569743103,3569743359,3569743871,3569745407,3569745663,3569745919,3569811455,3569876991,3569942527,3570073599,3570081791,3570106367,3570139135,3570171903,3570204671,3570270207,3570335743,3570401279,3570466815,3570500351,3570500863,3570532351,3570597887,3570605823,3570606079,3570606847,3570607103,3570608127,3570611199,3570611455,3570614271,3570617343,3570617855,3570622463,3570626303,3570630655,3570663423,3570728959,3570729983,3570731007,3570794495,3570860031,3570892799,3570925567,3570991103,3571023871,3571056639,3571122175,3571187711,3571253247,3571254271,3571254527,3571254783,3571255039,3571255295,3571256319,3571256575,3571256831,3571257087,3571257343,3571258367,3571259391,3571259903,3571260159,3571260415,3571260671,3571261183,3571261439,3571262463,3571263487,3571263999,3571264255,3571264511,3571265535,3571266559,3571267583,3571268607,3571268863,3571269119,3571269375,3571269631,3571270655,3571270911,3571271167,3571271679,3571271935,3571272191,3571272447,3571272703,3571274751,3571275775,3571277823,3571279871,3571281919,3571282943,3571283199,3571283455,3571283711,3571283967,3571284991,3571286015,3571319807,3571320831,3571321087,3571321599,3571321855,3571322879,3571323903,3571324159,3571324415,3571324927,3571325439,3571325951,3571326975,3571327999,3571329023,3571329535,3571329791,3571330047,3571331071,3571332095,3571333119,3571334143,3571334399,3571334655,3571334911,3571335167,3571336191,3571336703,3571338239,3571339263,3571340287,3571342335,3571342591,3571343103,3571343359,3571345407,3571346431,3571347455,3571347711,3571348479,3571349503,3571349759,3571350015,3571350527,3571351039,3571352575,3571353599,3571354623,3571355647,3571358719,3571358975,3571360511,3571360767,3571362815,3571363839,3571364351,3571364607,3571364863,3571365119,3571365375,3571365887,3571368959,3571369215,3571369471,3571369727,3571369983,3571371007,3571372031,3571372543,3571372799,3571373055,3571374079,3571374335,3571374591,3571374847,3571375103,3571375359,3571376127,3571376639,3571376895,3571377151,3571379199,3571380223,3571380479,3571380735,3571380991,3571382271,3571382527,3571382783,3571383039,3571383295,3571384319,3571473151,3571473407,3571482367,3571482623,3571515391,3571548159,3571580927,3571646463,3571646975,3571647231,3571653119,3571653631,3571654655,3571655167,3571655935,3571656191,3571656703,3571657215,3571657471,3571657727,3571657983,3571658239,3571659263,3571659519,3571662335,3571662847,3571664127,3571664383,3571667967,3571668223,3571670015,3571670271,3571670527,3571671039,3571673343,3571674367,3571674623,3571674879,3571683327,3571684863,3571685631,3571686143,3571687935,3571689215,3571689471,3571689983,3571691007,3571691519,3571692031,3571692287,3571695359,3571695615,3571696127,3571696383,3571697407,3571697663,3571698175,3571698687,3571698943,3571699199,3571699711,3571699967,3571700223,3571700735,3571704319,3571705855,3571706367,3571706623,3571708927,3571709439,3571709695,3571711743,3571843071,3571974143,3571978239,3571980287,3571982335,3571994623,3571998719,3572006911,3572039679,3572056063,3572072447,3572105215,3572170751,3572203519,3572236287,3572301823,3572318207,3572326399,3572330495,3572334591,3572338687,3572340735,3572342783,3572346879,3572348927,3572350975,3572355071,3572356095,3572357119,3572358143,3572360191,3572360447,3572360703,3572361215,3572362239,3572363263,3572364287,3572365311,3572366335,3572366591,3572366847,3572367103,3572367359,3572432895,3572454911,3572455167,3572465663,3572498431,3572563967,3572572159,3572580351,3572596735,3572629503,3572695039,3572760575,3572826111,3572891647,3572957183,3573022719,3573055487,3573088255,3573153791,3573219327,3573252095,3573284863,3573415935,3573481471,3573547007,3573612543,3573743615,3573809151,3573874687,3573878783,3573879807,3573880831,3573882879,3573884927,3573886975,3573889023,3573891071,3573893119,3573893375,3573894143,3573894655,3573894911,3573895167,3573897215,3573899263,3573903359,3573905407,3573907455,3573907711,3573907967,3573908223,3573908479,3573908735,3573908991,3573909247,3573909503,3573913599,3573915647,3573917695,3573919743,3573921791,3573923839,3573925887,3573929983,3573932543,3573932799,3573934079,3573936127,3573938175,3573940223,3574005759,3574071295,3574136831,3574169599,3574202367,3574267903,3574333439,3574398975,3574464511,3574530047,3574530303,3574546431,3574546687,3574547199,3574547455,3574554879,3574555135,3574562815,3574563071,3574594047,3574594303,3574594559,3574595583,3574595839,3574596607,3574596863,3574597119,3574597631,3574598143,3574598399,3574598655,3574599679,3574599935,3574600959,3574601471,3574602239,3574602495,3574602751,3574603007,3574603263,3574603519,3574603775,3574611967,3574628351,3574661119,3574677503,3574693887,3574726655,3574759423,3574792191,3574824959,3574825215,3574825471,3574826495,3574826751,3574829055,3574829311,3574830079,3574830335,3574830591,3574830847,3574831103,3574831615,3574832127,3574832639,3574833407,3574833919,3574834431,3574834687,3574836223,3574837247,3574838271,3574838527,3574840575,3574840831,3574842879,3574843135,3574843391,3574843647,3574844159,3574844415,3574844671,3574844927,3574845183,3574845439,3574845951,3574846463,3574847231,3574848255,3574848511,3574848767,3574849023,3574849279,3574849535,3574857727,3574917375,3574917631,3574923263,3574931455,3574935551,3574939647,3574956031,3574972415,3574981631,3574981887,3574982143,3574982399,3574983167,3574983423,3574985215,3574985471,3574988799,3575054335,3575119871,3575185407,3575250943,3575316479,3575349247,3575382015,3575447551,3575513087,3575545855,3575562239,3575570175,3575570431,3575578623,3575624959,3575625215,3575644159,3575646975,3575647231,3575672575,3575672831,3575673087,3575673343,3575693311,3575697407,3575701503,3575701759,3575702271,3575702527,3575702783,3575703039,3575703295,3575703551,3575705599,3575707647,3575708671,3575709695,3575732735,3575732991,3575736319,3575736831,3575742463,3575775231,3575824383,3575832575,3575840767,3575852799,3575853055,3575853311,3575853567,3575865343,3575873535,3575906303,3575971839,3576037375,3576102911,3576103423,3576103935,3576104447,3576104959,3576105215,3576105471,3576105983,3576106239,3576106495,3576107007,3576107519,3576107775,3576108287,3576108543,3576109055,3576109311,3576110079,3576110591,3576111103,3576111615,3576111871,3576112127,3576112895,3576113151,3576114175,3576114687,3576115199,3576117247,3576119807,3576120319,3576120831,3576121599,3576122367,3576122623,3576122879,3576123135,3576123391,3576124415,3576124671,3576124927,3576125183,3576125439,3576126463,3576126975,3576127231,3576127487,3576128511,3576128767,3576129535,3576130303,3576130559,3576133631,3576133887,3576134399,3576134655,3576135167,3576135679,3576168447,3576233983,3576234751,3576235007,3576237311,3576237567,3576239103,3576239359,3576239615,3576241151,3576241407,3576241663,3576242431,3576242687,3576242943,3576243199,3576244991,3576245247,3576247807,3576248063,3576248319,3576248575,3576248831,3576255487,3576255743,3576257791,3576258047,3576259327,3576259583,3576264191,3576264447,3576299519,3576365055,3576430591,3576496127,3576561663,3576603135,3576603391,3576603647,3576603903,3576604159,3576604415,3576605183,3576605439,3576605695,3576605951,3576606207,3576606463,3576606719,3576606975,3576607231,3576607487,3576607743,3576608767,3576609023,3576620543,3576620799,3576622079,3576622335,3576623871,3576624127,3576625663,3576625919,3576626943,3576692735,3576758271,3576823807,3576889343,3576954879,3576987647,3576995327,3576995583,3576998911,3577000959,3577001215,3577001471,3577001983,3577002239,3577002751,3577003263,3577003519,3577004031,3577004287,3577004543,3577004799,3577020415,3577085951,3577151487,3577167871,3577184255,3577217023,3577282559,3577348095,3577413631,3577442303,3577442815,3577443071,3577443327,3577443583,3577443839,3577444607,3577445631,3577446399,3577479167,3577544703,3577596415,3577597439,3577610751,3577611263,3577612287,3577612543,3577612799,3577613055,3577616383,3577617151,3577617919,3577618175,3577618431,3577618687,3577620735,3577621247,3577622015,3577622271,3577623807,3577624063,3577624319,3577624575,3577626111,3577626367,3577626623,3577627135,3577627391,3577627647,3577628671,3577630719,3577630975,3577631743,3577632767,3577634303,3577634815,3577635839,3577636863,3577638143,3577638399,3577638911,3577640703,3577640959,3577641471,3577641983,3577642239,3577642495,3577643007,3577646079,3577646335,3577647103,3577648127,3577651199,3577651455,3577651967,3577652735,3577652991,3577653247,3577655295,3577656319,3577657343,3577659391,3577659903,3577660159,3577661439,3577663487,3577665279,3577667583,3577667839,3577669119,3577669631,3577670655,3577670911,3577671679,3577672191,3577673727,3577675775,3577741311,3578003455,3578265599,3578331135,3578339327,3578347519,3578363903,3578396671,3578462207,3578527743,3578658815,3578724351,3578732543,3578740735,3578757119,3578808575,3578808831,3578820607,3578820863,3578821887,3578822143,3578822655,3578855423,3578888191,3578920959,3578986495,3579002879,3579019263,3579052031,3579117567,3579183103,3579184895,3579185151,3579185407,3579185663,3579185919,3579186431,3579187455,3579187711,3579187967,3579189503,3579189759,3579190527,3579190783,3579191295,3579191551,3579193599,3579193855,3579195903,3579196159,3579199743,3579199999,3579202303,3579202559,3579206143,3579206399,3579207167,3579207423,3579208191,3579208703,3579209727,3579210751,3579214591,3579214847,3579215103,3579215359,3579215871,3579216383,3579218431,3579218943,3579219711,3579220223,3579220479,3579220735,3579220991,3579221247,3579221759,3579222015,3579226623,3579226879,3579230463,3579230719,3579231231,3579231487,3579232255,3579232511,3579237119,3579237375,3579237631,3579237887,3579240191,3579240447,3579241471,3579241727,3579241983,3579242239,3579242495,3579243007,3579244031,3579244287,3579244543,3579244799,3579245055,3579245823,3579246079,3579247615,3579247871,3579248639,3579346943,3579362303,3579362559,3579362815,3579363327,3579445247,3579478015,3579482623,3579482879,3579483135,3579483391,3579490559,3579491071,3579527167,3579543551,3579576319,3579607551,3579607807,3579609087,3579641855,3579707391,3579723775,3579740159,3579772927,3579838463,3580039167,3580039423,3580100607,3580108799,3580111103,3580111359,3580111615,3580111871,3580112383,3580112639,3580112895,3580116991,3580133375,3580135423,3580136447,3580141567,3580148735,3580149759,3580157951,3580166143,3580198911,3580199935,3580200447,3580203007,3580204031,3580205055,3580213247,3580215295,3580217343,3580219391,3580221951,3580222207,3580231679,3580231935,3580232447,3580235775,3580237311,3580237567,3580237823,3580243967,3580244991,3580246015,3580246783,3580247039,3580247807,3580248063,3580265727,3580268543,3580270591,3580271615,3580271871,3580272639,3580297215,3580329983,3580338175,3580339199,3580340223,3580342271,3580346367,3580354559,3580362751,3580624895,3580625151,3580625407,3580625663,3580625919,3580626943,3580628991,3580631039,3580631551,3580632063,3580632319,3580632575,3580632831,3580633087,3580635135,3580637183,3580638207,3580639231,3580641279,3580643327,3580645375,3580647423,3580649471,3580651519,3580653567,3580655615,3580657663,3580658431,3580658687,3580658943,3580659199,3580659455,3580663807,3580665855,3580667903,3580674047,3580675071,3580675583,3580676095,3580682239,3580684287,3580686335,3580687103,3580687359,3580687871,3580688383,3580698623,3580702719,3580706815,3580708863,3580709119,3580709375,3580709887,3580710143,3580710399,3580710911,3580715007,3580715263,3580716031,3580717055,3580718079,3580718335,3580718591,3580718847,3580719103,3580723199,3580727295,3580727551,3580727807,3580728063,3580728319,3580728831,3580729087,3580729343,3580729599,3580729855,3580730111,3580730879,3580731135,3580731391,3580732415,3580733439,3580733695,3580733951,3580734207,3580734463,3580735487,3580737535,3580738559,3580739583,3580739839,3580740095,3580740351,3580740607,3580740863,3580741119,3580741375,3580741631,3580741887,3580742911,3580743167,3580743423,3580743679,3580747775,3580751871,3580755967,3580772351,3580780543,3580805119,3580814847,3580815359,3580816895,3580817407,3580821503,3580837887,3580887039,3581149183,3581149951,3581150207,3581150463,3581150719,3581151743,3581151999,3581154047,3581154303,3581157119,3581158655,3581159423,3581161471,3581165823,3581166335,3581166591,3581166847,3581169151,3581169663,3581169919,3581170687,3581172991,3581173503,3581173759,3581196799,3581197055,3581197311,3581197567,3581197823,3581198335,3581200127,3581203967,3581214719,3581231103,3581231871,3581233151,3581233919,3581236479,3581238015,3581239295,3581241343,3581242111,3581242623,3581243391,3581244159,3581244927,3581245183,3581245439,3581245695,3581245951,3581248255,3581248511,3581253375,3581255679,3581259263,3581259775,3581260031,3581260287,3581260799,3581261311,3581261567,3581261823,3581262079,3581279999,3581280255,3581411327,3581673471,3581935615,3581943807,3581951999,3581960191,3581976575,3581984767,3581992959,3582001151,3582009343,3582017535,3582025727,3582033919,3582042111,3582050303,3582058495,3582066687,3582074879,3582076159,3582076671,3582077439,3582077695,3582077951,3582078463,3582078719,3582078975,3582080511,3582080767,3582081279,3582081535,3582081791,3582082047,3582082303,3582083071,3582085631,3582085887,3582087167,3582087423,3582087679,3582087935,3582088191,3582088703,3582088959,3582091263,3582099455,3582107647,3582115839,3582116095,3582116351,3582116863,3582117887,3582120959,3582121983,3582124031,3582132223,3582140415,3582148607,3582156799,3582164991,3582173183,3582181375,3582197759,3582203903,3582204159,3582205951,3582214143,3582222335,3582230527,3582238719,3582255103,3582263295,3582271487,3582279679,3582281727,3582282751,3582283007,3582283775,3582287871,3582296063,3582304255,3582312447,3582319871,3582320127,3582320639,3582328831,3582329087,3582329343,3582329599,3582329855,3582330111,3582330367,3582330623,3582330879,3582331135,3582331391,3582331647,3582331903,3582332159,3582332415,3582332671,3582332927,3582333183,3582333439,3582333695,3582333951,3582334207,3582334719,3582334975,3582335231,3582335487,3582335743,3582335999,3582336255,3582336511,3582336767,3582337023,3582345215,3582353407,3582361599,3582377983,3582386175,3582394367,3582402559,3582410751,3582435327,3582443519,3582451711,3582459903,3582468095,3582476287,3582480127,3582480383,3582480639,3582480895,3582481151,3582481407,3582482175,3582482431,3582482687,3582482943,3582483199,3582483455,3582483711,3582483967,3582484223,3582484479,3582492671,3582509055,3582517247,3582525439,3582533631,3582541823,3582545919,3582546431,3582550015,3582558207,3582559231,3582559743,3582559999,3582560255,3582566399,3582567423,3582567935,3582568447,3582568959,3582569471,3582571519,3582572031,3582572287,3582573311,3582574079,3582574335,3582574591,3582582783,3582590975,3582599167,3582607359,3582615551,3582623743,3582631935,3582640127,3582646271,3582647295,3582648319,3582656511,3582664703,3582672895,3582673919,3582674175,3582676479,3582676735,3582676991,3582680063,3582680319,3582681087,3582689279,3582697471,3582705663,3582706175,3582706431,3582707199,3582707711,3582708223,3582708479,3582708735,3582709759,3582710783,3582711807,3582712831,3582713855,3582714879,3582715135,3582715903,3582716927,3582717951,3582718975,3582719999,3582721023,3582722047,3582730239,3582731007,3582731263,3582732031,3582732287,3582736383,3582737407,3582738431,3582746623,3582754815,3582763007,3582771199,3582776831,3582777087,3582779391,3582787583,3582795775,3582803967,3582812159,3582820351,3582828543,3582836735,3582844927,3582853119,3582861311,3582869503,3582877695,3582885887,3582888447,3582888959,3582889471,3582890495,3582891007,3582892031,3582892543,3582892799,3582893055,3582893567,3582893823,3582894079,3582902271,3582910463,3582917119,3582917631,3582918655,3582926847,3582935039,3582943231,3582951423,3582959615,3582967807,3582975999,3582984191,3582992383,3583000575,3583008767,3583016959,3583025151,3583025407,3583025663,3583026175,3583026431,3583026687,3583027455,3583027711,3583028479,3583028735,3583029247,3583029503,3583029759,3583030015,3583031039,3583031295,3583031551,3583032319,3583032575,3583032831,3583033087,3583033343,3583041535,3583049727,3583066111,3583068927,3583069183,3583072255,3583072767,3583073791,3583074047,3583074303,3583082495,3583090687,3583098879,3583107071,3583111167,3583112191,3583115263,3583123455,3583131647,3583148031,3583156479,3583156735,3583157247,3583157759,3583158527,3583158783,3583159039,3583159807,3583160063,3583161855,3583162367,3583163903,3583164415,3583172607,3583188991,3583197183,3583205375,3583213567,3583221759,3583229951,3583238143,3583246335,3583250431,3583250943,3583251199,3583251455,3583252479,3583253503,3583254527,3583262719,3583270911,3583287295,3583295487,3583303679,3583311871,3583320063,3583328255,3583336447,3583337727,3583337983,3583344639,3583352831,3583361023,3583369215,3583377407,3583385599,3583393791,3583401983,3583410175,3583418367,3583426559,3583428607,3583434751,3583442943,3583451135,3583459327,3583467519,3583475711,3583483903,3583492095,3583508479,3583516671,3583519487,3583519743,3583524863,3583533055,3583541247,3583549439,3583557631,3583563519,3583563775,3583565823,3583566847,3583567103,3583567359,3583574015,3583582207,3583590399,3583598591,3583606783,3583639551,3583647743,3583655935,3583664127,3583680511,3583688703,3583696895,3583705087,3583713279,3583721471,3583729663,3583737855,3583738879,3583739135,3583740415,3583740927,3583741183,3583741439,3583741695,3583741951,3583742207,3583742463,3583742719,3583742975,3583743487,3583743743,3583743999,3583744255,3583744511,3583744767,3583746047,3583754239,3583762431,3583770623,3583778815,3583787007,3583795199,3583803391,3583804415,3583805439,3583805695,3583805951,3583806207,3583806719,3583806975,3583807231,3583807487,3583807743,3583807999,3583808511,3583808767,3583809279,3583809535,3583809791,3583810047,3583810559,3583810815,3583811071,3583811327,3583811583,3583819775,3583827967,3583836159,3583844351,3583852543,3583858431,3583858687,3583860735,3583868927,3583877119,3583885311,3583893503,3583901695,3583909887,3583918079,3583924735,3583926271,3583934463,3583942655,3583950847,3583959039,3583967231,3583969279,3583969791,3583970815,3583971327,3583973887,3583974399,3583975423,3583983615,3583987711,3583991807,3583992063,3583993599,3583994111,3583994367,3583995135,3583995647,3583996159,3583996927,3583997951,3583998463,3583998719,3583998975,3583999231,3583999487,3583999743,3583999999,3584001023,3584002047,3584004095,3584008191,3584016383,3584024575,3584032767,3584040959,3584049151,3584057343,3584065535,3584073727,3584081919,3584090111,3584096255,3584098303,3584106495,3584114687,3584119295,3584119551,3584120319,3584120575,3584122879,3584131071,3584139263,3584147455,3584155647,3584163839,3584172031,3584180223,3584188415,3584196607,3584204799,3584212991,3584221183,3584229375,3584245759,3584246783,3584247295,3584253951,3584262143,3584270335,3584278527,3584286719,3584289279,3584289791,3584290559,3584290815,3584291327,3584292351,3584292863,3584293375,3584294399,3584303103,3584311295,3584319487,3584327679,3584335871,3584344063,3584352255,3584360447,3584368639,3584376831,3584380159,3584380415,3584393215,3584401407,3584409599,3584417791,3584425983,3584434175,3584442367,3584443391,3584444415,3584446719,3584446975,3584447231,3584447487,3584448511,3584450047,3584450303,3584450559,3584458751,3584466943,3584467967,3584468991,3584475135,3584483327,3584491519,3584499711,3584507903,3584516095,3584524287,3584532479,3584540671,3584548863,3584549887,3584550911,3584552959,3584554495,3584557055,3584565247,3584573439,3584589823,3584598015,3584606207,3584614399,3584620543,3584621567,3584622591,3584630783,3584638975,3584647167,3584648959,3584649215,3584654079,3584654335,3584655359,3584658431,3584659455,3584661247,3584661503,3584663551,3584671743,3584688127,3584696319,3584701951,3584702207,3584704511,3584720895,3584722175,3584722431,3584724479,3584724735,3584724991,3584725247,3584725503,3584725759,3584726783,3584727039,3584728063,3584729087,3584737279,3584738303,3584738815,3584739071,3584739327,3584739839,3584740095,3584740351,3584741375,3584742399,3584742655,3584744447,3584744703,3584744959,3584745215,3584745471,3584753663,3584770047,3584778239,3584786431,3584790527,3584794623,3584802815,3584811007,3584819199,3584827391,3584835583,3584843775,3584851967,3584860159,3584868351,3584876543,3584884735,3584892927,3584893695,3584893951,3584894207,3584894719,3584894975,3584897023,3584898047,3584899071,3584900095,3584901119,3584909311,3584917503,3584925695,3584933887,3584942079,3584950271,3584958463,3584966655,3584974847,3584983039,3584991231,3584999423,3585000191,3585000447,3585001727,3585002239,3585007615,3585015807,3585023999,3585032191,3585048575,3585049599,3585049855,3585050111,3585050367,3585056767,3585064959,3585081343,3585089535,3585097727,3585098751,3585114111,3585122303,3585130495,3585138687,3585146879,3585155071,3585163263,3585171199,3585171455,3585179647,3585189887,3585190655,3585196031,3585204223,3585212415,3585220607,3585228799,3585236991,3585245183,3585247231,3585248255,3585249279,3585250303,3585251327,3585251839,3585252095,3585252351,3585253375,3585261567,3585269759,3585277951,3585286143,3585289471,3585294335,3585296383,3585297407,3585298431,3585302527,3585310719,3585318911,3585327103,3585328127,3585329151,3585330175,3585331199,3585331455,3585331711,3585332223,3585333247,3585334271,3585335295,3585343487,3585351679,3585359871,3585360383,3585362175,3585362431,3585362687,3585362943,3585363199,3585363711,3585365759,3585366015,3585368063,3585376255,3585384447,3585392639,3585400831,3585409023,3585417215,3585425407,3585433599,3585441791,3585449983,3585458175,3585466367,3585474559,3585482751,3585490943,3585499135,3585515519,3585523711,3585524223,3585524479,3585524735,3585524991,3585525247,3585525503,3585525759,3585526015,3585526271,3585526527,3585526783,3585527039,3585527295,3585527551,3585527807,3585528063,3585528319,3585528575,3585528831,3585529343,3585529855,3585531903,3585540095,3585548287,3585548799,3585549311,3585549567,3585550591,3585550847,3585551103,3585551359,3585551615,3585551871,3585552127,3585552383,3585552639,3585552895,3585553151,3585553407,3585553663,3585554175,3585554431,3585554943,3585555455,3585555711,3585555967,3585556479,3585564671,3585572863,3585581055,3585597439,3585605631,3585613823,3585622015,3585627647,3585627903,3585629183,3585630207,3585638399,3585645055,3585645311,3585646591,3585654783,3585662975,3585668863,3585669119,3585671167,3585679359,3585687551,3585693183,3585693695,3585694719,3585695231,3585695743,3585696255,3585696511,3585697279,3585697535,3585698303,3585698559,3585699583,3585699839,3585700351,3585700607,3585701119,3585701375,3585702911,3585703167,3585703935,3585712127,3585720319,3585728511,3585736703,3585741567,3585741823,3585744895,3585753087,3585761279,3585769471,3585777663,3585785855,3585794047,3585794559,3585794815,3585802239,3585810431,3585818623,3585826815,3585835007,3585835263,3585836543,3585836799,3585837055,3585837311,3585837567,3585842431,3585842687,3585843199,3585851391,3585859583,3585859839,3585860095,3585860351,3585860607,3585861119,3585861375,3585861631,3585861887,3585862143,3585862399,3585862655,3585863167,3585863423,3585863679,3585865727,3585865983,3585867775,3585875967,3585884159,3585892351,3585900543,3585906687,3585907711,3585908735,3585908991,3585909759,3585910015,3585910271,3585910527,3585910783,3585911039,3585911295,3585913087,3585913343,3585914623,3585914879,3585915135,3585915647,3585915903,3585916159,3585916671,3585916927,3585925119,3585933311,3585941503,3585949695,3585957887,3585966079,3585974271,3585982463,3585998847,3585999871,3586000127,3586000895,3586001919,3586002943,3586003967,3586004479,3586004735,3586004991,3586006015,3586007039,3586015231,3586023423,3586031615,3586039807,3586047999,3586056191,3586072575,3586088959,3586097151,3586105343,3586121727,3586129919,3586146303,3586162687,3586178815,3586179071,3586182655,3586182911,3586195455,3586203647,3586204159,3586205695,3586207743,3586211839,3586228223,3586244607,3586245119,3586246655,3586252799,3586254847,3586260991,3586261503,3586270207,3586271231,3586272255,3586272511,3586273279,3586276351,3586276863,3586277375,3586293759,3586310143,3586326527,3586332671,3586334719,3586342911,3586359295,3586375679,3586392063,3586405375,3586406399,3586408447,3586420735,3586424831,3586441215,3586453247,3586453503,3586457599,3586473983,3586490367,3586506751,3586523135,3586523391,3586523647,3586523903,3586524159,3586524415,3586524671,3586524927,3586525183,3586525695,3586525951,3586526463,3586527487,3586527743,3586527999,3586528511,3586529791,3586530047,3586530303,3586530559,3586531327,3586531839,3586532351,3586533375,3586533631,3586534143,3586535167,3586535423,3586535679,3586535935,3586536191,3586536447,3586536703,3586536959,3586537471,3586537727,3586537983,3586538495,3586538751,3586539775,3586540031,3586540287,3586540543,3586540799,3586541055,3586541311,3586541567,3586544383,3586544639,3586545919,3586546175,3586546687,3586546943,3586547199,3586547455,3586547967,3586548223,3586548479,3586548735,3586549247,3586549759,3586551807,3586552319,3586553087,3586553855,3586554623,3586554879,3586555135,3586555391,3586555903,3586572287,3586588671,3586596863,3586605055,3586621439,3586625535,3586628095,3586628351,3586630399,3586630655,3586631935,3586632191,3586632447,3586633471,3586633727,3586633983,3586634239,3586634495,3586634751,3586635007,3586635519,3586635775,3586636031,3586636287,3586636543,3586636799,3586637055,3586637311,3586637823,3586654207,3586662399,3586670591,3586675455,3586675711,3586676479,3586676735,3586678271,3586678783,3586679039,3586679295,3586679551,3586679807,3586680319,3586680831,3586681087,3586681343,3586681855,3586682111,3586682367,3586682879,3586686975,3586703359,3586719743,3586752511,3586785279,3586787071,3586787327,3586793471,3586801663,3586803455,3586803711,3586818047,3586834431,3586846975,3586847231,3586850815,3586867199,3586883583,3586899967,3586914303,3586914559,3586916351,3586924543,3586932735,3586949119,3586981887,3586998271,3587006463,3587014655,3587051007,3587051775,3587052031,3587052799,3587053055,3587053311,3587053567,3587053823,3587055615,3587063807,3587080191,3587088383,3587096575,3587121151,3587129343,3587145727,3587162111,3587178495,3587186687,3587192319,3587192575,3587194879,3587211263,3587217151,3587217407,3587219455,3587222271,3587222527,3587227647,3587228927,3587229183,3587229439,3587229695,3587229951,3587230207,3587230463,3587230975,3587231231,3587234815,3587235071,3587241471,3587241727,3587244031,3587260415,3587277567,3587277823,3587278079,3587278335,3587278591,3587279103,3587279359,3587280127,3587280383,3587281407,3587281663,3587282175,3587282687,3587282943,3587283199,3587283967,3587284479,3587284735,3587284991,3587285759,3587286015,3587286271,3587286527,3587287295,3587287807,3587288063,3587289087,3587289343,3587289599,3587289855,3587290111,3587290367,3587290623,3587290879,3587291135,3587309567,3587325951,3587342335,3587358719,3587375103,3587383295,3587391487,3587407871,3587408127,3587408383,3587424255,3587440639,3587445759,3587446271,3587457023,3587473407,3587489791,3587506175,3587538943,3587547135,3587555327,3587571711,3587579903,3587588095,3587596287,3587604479,3587620863,3587637247,3587653631,3587660799,3587661055,3587670015,3587702783,3587710975,3587719167,3587735551,3587751935,3587768319,3587769343,3587770367,3587770623,3587770879,3587771135,3587771391,3587772415,3587773439,3587774463,3587775743,3587775999,3587776255,3587776511,3587784703,3587801087,3587817471,3587833855,3587842047,3587846143,3587847167,3587850239,3587854335,3587866623,3587874815,3587883007,3587896063,3587896319,3587897855,3587898111,3587898367,3587898879,3587899135,3587899391,3587915775,3587932159,3587932415,3587948543,3587963903,3587964927,3587981311,3587997695,3588014079,3588030463,3588046847,3588063231,3588071423,3588079615,3588095999,3588104191,3588112383,3588128767,3588145151,3588153343,3588161535,3588227071,3588292607,3588308991,3588325375,3588333567,3588341759,3588349951,3588350975,3588351999,3588353023,3588353535,3588353791,3588354047,3588358143,3588374527,3588375551,3588376575,3588377599,3588379647,3588380671,3588381695,3588382719,3588383743,3588383999,3588384767,3588385791,3588386815,3588387839,3588388863,3588389119,3588389375,3588390911,3588393983,3588394495,3588407295,3588423679,3588440063,3588456447,3588464639,3588464895,3588465151,3588465663,3588466431,3588466687,3588467199,3588467455,3588467967,3588468223,3588468479,3588468735,3588468991,3588469247,3588469503,3588469759,3588470015,3588470271,3588470783,3588471039,3588471295,3588471551,3588471807,3588472063,3588472575,3588472831,3588489215,3588505599,3588521983,3588538367,3588553983,3588554239,3588554751,3588571135,3588587519,3588603647,3588603903,3588620287,3588628479,3588636671,3588653055,3588661247,3588666367,3588667391,3588668415,3588669439,3588685567,3588685823,3588702207,3588718591,3588734975,3588751359,3588767743,3588768767,3588769791,3588770815,3588771839,3588772863,3588773119,3588773375,3588773631,3588773887,3588774911,3588775935,3588776959,3588777983,3588779007,3588780031,3588781055,3588782079,3588782335,3588782591,3588782847,3588783103,3588784127,3588800511,3588800767,3588801023,3588801535,3588802047,3588802303,3588802559,3588802815,3588803071,3588803327,3588803583,3588803839,3588804095,3588804351,3588806655,3588806911,3588807167,3588808959,3588809215,3588809471,3588810239,3588810751,3588811007,3588811263,3588811519,3588812031,3588812287,3588812543,3588812799,3588813055,3588813311,3588814079,3588814335,3588814847,3588815103,3588815871,3588816127,3588816383,3588816639,3588816895,3588833279,3588849663,3588857855,3588866047,3588882431,3588890623,3588898815,3588915199,3588931583,3588947967,3588964351,3588997119,3589013503,3589021695,3589029887,3589030143,3589031423,3589031679,3589033983,3589034239,3589034495,3589037055,3589037311,3589037567,3589038079,3589040127,3589042175,3589042431,3589046271,3589079039,3589128191,3589144575,3589152767,3589160959,3589177343,3589186559,3589186815,3589188095,3589188351,3589193727,3589210111,3589211135,3589226495,3589242879,3589248511,3589248767,3589256191,3589256447,3589258495,3589258751,3589259263,3589274623,3589274879,3589275135,3589275391,3589275647,3589283839,3589284095,3589292031,3589308415,3589324799,3589341183,3589373951,3589390335,3589423103,3589423615,3589424127,3589424639,3589424895,3589425151,3589425663,3589427199,3589427711,3589428223,3589428479,3589428735,3589429247,3589429503,3589430271,3589430527,3589431807,3589432575,3589432831,3589433599,3589433855,3589434111,3589434623,3589434879,3589435135,3589435391,3589435647,3589436415,3589436671,3589436927,3589437183,3589437439,3589437951,3589438207,3589438463,3589438975,3589439487,3589455871,3589472255,3589488639,3589505023,3589521407,3589537791,3589545983,3589554175,3589570559,3589570815,3589571071,3589571327,3589571583,3589571839,3589572607,3589572863,3589573119,3589573375,3589573631,3589575679,3589575935,3589576703,3589577983,3589581055,3589581311,3589584127,3589584383,3589585919,3589586175,3589586943,3589587199,3589587455,3589587967,3589591039,3589599231,3589601279,3589603327,3589668863,3589677055,3589685247,3589718015,3589721599,3589721855,3589726463,3589726719,3589726975,3589731327,3589731583,3589734399,3589742591,3589767167,3589816319,3589820927,3589821183,3589822463,3589822719,3589825535,3589825791,3589827071,3589827583,3589828095,3589828351,3589828607,3589828863,3589829119,3589831167,3589831679,3589832191,3589832447,3589832703,3589849087,3589865471,3589881855,3589884159,3589884415,3589884671,3589884927,3589885183,3589885439,3589885695,3589885951,3589886207,3589886463,3589886719,3589886975,3589887231,3589887487,3589887743,3589887999,3589888255,3589888511,3589888767,3589889023,3589890047,3589890303,3589890559,3589891327,3589891839,3589892095,3589892351,3589892607,3589892863,3589893119,3589894143,3589896191,3589896447,3589896703,3589896959,3589897215,3589897471,3589897727,3589897983,3589898239,3589931007,3589947391,3589963775,3589971967,3589980159,3589996543,3589996799,3589997055,3589997311,3589997567,3589998591,3590002687,3590002943,3590003199,3590003455,3590003711,3590004735,3590006783,3590007039,3590007295,3590007807,3590008063,3590008319,3590008831,3590009087,3590009343,3590012927,3590029311,3590045695,3590062079,3590078463,3590094847,3590111231,3590124287,3590124543,3590127615,3590143999,3590147839,3590148095,3590150911,3590151167,3590152703,3590152959,3590153215,3590153727,3590154495,3590154751,3590157311,3590159359,3590159615,3590160127,3590160383,3590176767,3590193151,3590201343,3590209535,3590225919,3590234111,3590242303,3590244607,3590244863,3590245119,3590245375,3590245631,3590245887,3590246143,3590246399,3590247167,3590247423,3590247679,3590247935,3590249471,3590249727,3590249983,3590251519,3590251775,3590253311,3590253567,3590254079,3590254335,3590254591,3590254847,3590255103,3590255359,3590255871,3590256127,3590256639,3590257151,3590257663,3590257919,3590258175,3590258431,3590258687,3590291455,3590299647,3590307839,3590308095,3590308607,3590308863,3590309119,3590309375,3590309631,3590309887,3590310911,3590311167,3590311423,3590311679,3590311935,3590312191,3590312447,3590312959,3590313983,3590314495,3590315007,3590316031,3590316543,3590316799,3590317055,3590318079,3590320127,3590321151,3590321663,3590321919,3590322175,3590323199,3590324223,3623890943,3623891199,3623891455,3623891711,3623891967,3623892479,3623956735,3623956991,3624054783,3624056831,3624069375,3624069631,3624181759,3624182783,3624206335,3624208383,3624255487,3624257535,3624271871,3624272383,3624272639,3624272895,3624274943,3624275199,3624275455,3624276223,3624276479,3624279295,3624279551,3624281087,3624281343,3624284415,3624284927,3624285183,3624285439,3624285695,3624285951,3624286207,3624286463,3624287231,3624287487,3624287743,3624287999,3624288255,3624290303,3624292351,3624292607,3624292863,3624293119,3624293631,3624293887,3624295167,3624295423,3624295679,3624295935,3624296191,3624296447,3624296703,3624296959,3624297215,3624297471,3624298495,3624299519,3624299775,3624300031,3624300287,3624300543,3624300799,3624301055,3624301567,3624302335,3624302591,3624302847,3624303103,3624303871,3624304127,3624304383,3624304639,3624321023,3624325119,3624359935,3624361983,3624386559,3624394751,3624402943,3624411135,3624435711,3624452095,3624480767,3624484863,3624525823,3624526847,3624527871,3624528127,3624529919,3624534015,3624536319,3624536575,3624550399,3624551423,3624551679,3624551935,3624587263,3624591359,3624592383,3624593919,3624595455,3624599039,3624599551,3624714239,3624715263,3624715519,3624715775,3624716287,3624716799,3624717567,3624717823,3624718335,3624718847,3624719103,3624719615,3624719871,3624720383,3624720895,3624721663,3624721919,3624722431,3624730623,3624796159,3624828927,3624833023,3624845311,3624849407,3624984575,3624992767,3625058303,3625084159,3625084415,3625091071,3625115647,3625115903,3625117951,3625118207,3625140223,3625148415,3625168895,3625172991,3625176319,3625176575,3625242623,3625246719,3625251327,3625251583,3625255679,3625255935,3625256959,3625257471,3625257983,3625287679,3625295871,3625314559,3625314815,3625346047,3625346303,3625364223,3625364479,3625364735,3625418751,3625420031,3625420543,3625422591,3625423103,3625426943,3625460223,3625460479,3625464575,3625464831,3625467647,3625467903,3625506047,3625506303,3625506559,3625506815,3625507071,3625508095,3625508351,3625517055,3625529343,3625533439,3625538559,3625539583,3625541631,3625545727,3625549823,3625562367,3625562623,3625578495,3625582591,3625631743,3625639935,3625926655,3625943039,3626140415,3626140671,3626231807,3626232319,3626234111,3626234367,3626270719,3626287103,3626332159,3626336255,3626411775,3626412031,3626426367,3626430463,3626469375,3626471423,3626473471,3626475519,3626477567,3626491903,3626492927,3626493951,3626494975,3626498559,3626498815,3626499071,3626500095,3626508287,3626512383,3626516479,3626516991,3626524671,3626532863,3626602495,3626602751,3626603775,3626604031,3626604799,3626605055,3626614271,3626614527,3626631679,3626631935,3626634239,3626634495,3626634751,3626635263,3626635519,3626635775,3626637055,3626637567,3626638335,3626638591,3626641151,3626641407,3626643967,3626644223,3626644991,3626645247,3626648319,3626648575,3626648831,3626649087,3626651391,3626651903,3626652415,3626652671,3626653695,3626653951,3626657023,3626657279,3626657535,3626657791,3626658303,3626658559,3626659583,3626659839,3626667263,3626667519,3626669055,3626669311,3626670079,3626670335,3626671871,3626672383,3626673919,3626674175,3626675199,3626675967,3626676735,3626676991,3626677759,3626678271,3626678527,3626679039,3626680831,3626681087,3626682111,3626682623,3626683135,3626683391,3626683903,3626684159,3626684415,3626684671,3626685439,3626685695,3626688511,3626689279,3626691071,3626691327,3626691583,3626691839,3626694399,3626694655,3626695167,3626695423,3626695935,3626696191,3626764031,3626764287,3626764543,3626764799,3626766079,3626766335,3626771199,3626771455,3626772223,3626772479,3626774527,3626774783,3626778879,3626779391,3626781439,3626781695,3626782719,3626783231,3626783487,3626783743,3626786559,3626786815,3626790399,3626790655,3626791679,3626791935,3626792959,3626793215,3626794495,3626794751,3626795519,3626795775,3626800127,3626800383,3626803455,3626803711,3626804479,3626804735,3626805759,3626806015,3626808063,3626808319,3626810879,3626811135,3626811391,3626812415,3626813951,3626814207,3626814463,3626814719,3626817279,3626817535,3626820863,3626821119,3626821375,3626821631,3626827007,3626827263,3626852351,3626860543,3626893311,3626905599,3626924543,3626925055,3626925567,3626926079,3626934271,3627044863,3627048959,3627049983,3627065343,3627069439,3627073535,3627220223,3627220479,3627287551,3627287807,3627288319,3627288575,3627507711,3627510783,3627511807,3627516927,3627517951,3627519999,3627524095,3627527167,3627528191,3627531263,3627544575,3627659263,3627663359,3627679743,3627712511,3627802623,3627810815,3627992319,3627992575,3628138495,3628138751,3628139775,3628140543,3628140799,3628141055,3628141311,3628141567,3628141823,3628143615,3628144383,3628145151,3628145919,3628146175,3628147199,3628147455,3628147967,3628148479,3628148735,3628150015,3628150271,3628150527,3628150783,3628151039,3628151295,3628151551,3628151807,3628152063,3628152319,3628153087,3628153343,3628153599,3628154367,3628155135,3628155391,3628156159,3628157183,3628157439,3628157951,3628158207,3628158463,3628158719,3628158975,3628159231,3628159487,3628160255,3628160767,3628161279,3628161791,3628162047,3628162303,3628162559,3628163327,3628164095,3628165119,3628165375,3628165631,3628166143,3628167423,3628167679,3628167935,3628168191,3628168959,3628169471,3628169727,3628170495,3628179455,3628187647,3628206079,3628206335,3628206591,3628206847,3628214783,3628215039,3628221439,3628221695,3628224767,3628225023,3628225279,3628226303,3628226559,3628227583,3628227839,3628236799,3628257279,3628552191,3628556287,3628558079,3628558335,3628561407,3628561663,3628564479,3628566527,3628566783,3628567295,3628567551,3628571647,3628572159,3628572671,3628580863,3628589055,3628598271,3628598783,3628599039,3628599295,3628603391,3628609023,3628609279,3628617471,3628617727,3628619775,3628621823,3628630015,3628631807,3628634111,3628636159,3628638207,3628646399,3628655615,3628657663,3628658175,3628658431,3628658687,3628679167,3628683263,3628696575,3628697599,3628701695,3628702719,3628703231,3628703487,3628703743,3628704255,3628704511,3628704767,3628705791,3628707839,3628708863,3628709375,3628749311,3628749823,3628756223,3628756479,3628834815,3628843007,3628849663,3628850175,3629187071,3629195263,3629199359,3629203455,3629318143,3629326335,3629371391,3629375487,3629539327,3629547519,3629580287,3629588479,3629593855,3629594111,3629633279,3629633535,3629637631,3630040063,3630041599,3630045439,3630049791,3630050047,3630051071,3630051327,3630053631,3630053887,3630055679,3630055935,3630057471,3630057727,3630058495,3630058751,3630059007,3630059263,3630059775,3630060031,3630061055,3630061311,3630062591,3630062847,3630064639,3630066431,3630066687,3630066943,3630067711,3630068991,3630069247,3630069503,3630069759,3630071295,3630071551,3630072831,3630073343,3630074879,3630075135,3630082303,3630082559,3630082815,3630083071,3630085631,3630085887,3630087679,3630087935,3630088447,3630088959,3630091519,3630091775,3630093055,3630093311,3630093567,3630093823,3630096127,3630096383,3630097151,3630097663,3630101503,3630101759,3630102271,3630104575,3630141951,3630142207,3630146815,3630147071,3630148095,3630148607,3630148863,3630149119,3630151679,3630152191,3630152703,3630152959,3630156287,3630156543,3630157311,3630157567,3630159615,3630159871,3630160127,3630160383,3630161151,3630161407,3630162431,3630162687,3630163199,3630163455,3630164991,3630165247,3630165503,3630166015,3630169855,3630170111,3630293247,3630294015,3630295807,3630296063,3630297087,3630313471,3630317567,3630354431,3630358527,3630374911,3630383103,3630391295,3630395391,3630416895,3630417407,3630417663,3630417919,3630418175,3630418431,3630418943,3630419199,3630422783,3630423039,3630423551,3630423807,3630700543,3630700799,3630718975,3630727167,3630743551,3630747647,3630780415,3630784511,3630850047,3630854143,3630895615,3630895871,3630896383,3630896639,3630897663,3630897919,3630901503,3630901759,3630923775,3630924031,3630924287,3630924799,3630926335,3630926591,3630952447,3630956543,3631005695,3631014911,3631015167,3631017983,3631022079,3631096831,3631097087,3631099135,3631099391,3631112191,3631112703,3631116543,3631117567,3631117823,3631118079,3631119103,3631119615,3631120383,3631144959,3631153151,3631284223,3631316991,3631333375,3631341567,3631462143,3631462399,3631513855,3631514367,3631514623,3631515647,3631517695,3631611903,3631628287,3631644671,3631652863,3631665151,3631669247,3631677439,3631714303,3631714559,3631715839,3631716095,3631716607,3631716863,3631717119,3631717375,3631726591,3631728639,3631776511,3631776767,3631784447,3631784959,3631786495,3631787007,3631787519,3631788031,3631788543,3631789055,3631789567,3631789823,3631790079,3631791359,3631791615,3631792127,3631792639,3631793151,3631793663,3631794175,3631795199,3631795711,3631841279,3631874047,3631879935,3631880191,3631881727,3631882239,3631889663,3631890175,3631901439,3631901695,3631906815,3631911423,3631915775,3631916031,3631919103,3631920127,3631920383,3631920895,3631939583,3632005119,3632146943,3632147455,3632148223,3632148479,3632152575,3632168959,3632187391,3632188415,3632195071,3632195327,3632196607,3632196863,3632197631,3632201727,3632267263,3632267519,3632267775,3632268287,3632268799,3632269055,3632269567,3632269823,3632270079,3632270335,3632270591,3632270847,3632271359,3632271615,3632272127,3632272383,3632272639,3632272895,3632273407,3632274431,3632274943,3632283647,3632312319,3632316415,3632332799,3632357375,3632376319,3632377343,3632381951,3632390143,3632399871,3632400127,3632414719,3632422911,3632451583,3632455679,3632481279,3632481535,3632486399,3632486911,3632490751,3632491007,3632491519,3632491775,3632492031,3632492287,3632492543,3632492799,3632493055,3632493311,3632493567,3632494079,3632494847,3632495103,3632801023,3632801279,3632857087,3632861183,3632865791,3632866047,3632866303,3632866559,3632866815,3632867327,3632867583,3632867839,3632868095,3632868351,3632868607,3632868863,3632869375,3632870399,3632870911,3632872191,3632872447,3632872703,3632872959,3632881663,3632889855,3632898047,3632902143,3632971775,3632988159,3633030655,3633030911,3633034495,3633034751,3633036031,3633036287,3633336319,3633340415,3633344511,3633348607,3633378559,3633378815,3633392383,3633392639,3633405951,3633410047,3633436671,3633436927,3633437183,3633437439,3633438207,3633438463,3633449983,3633451007,3633453567,3633453823,3633454079,3633454591,3633455103,3633457919,3633458175,3633479679,3633483775,3633537023,3633541119,3633553151,3633553407,3633568767,3633569023,3633569279,3633569535,3633709055,3633711103,3633713151,3633713663,3633714175,3633715199,3633716223,3633717247,3633783551,3633783807,3633786111,3633786367,3633821695,3633821951,3633823743,3633827839,3633828095,3633858303,3633858559,3633865215,3633865727,3633872895,3633874431,3633874687,3633876991,3633881087,3633885183,3633922047,3633938431,3633971199,3634020351,3634037247,3634037503,3634037759,3634038783,3634039039,3634039551,3634040063,3634040319,3634041087,3634041343,3634042111,3634042367,3634046975,3634047231,3634050815,3634051071,3634051583,3634051839,3634053119,3634061311,3634094079,3634098175,3634167807,3634189055,3634189311,3634196479,3634206719,3634207743,3634207999,3634208767,3634257919,3634262015,3634282751,3634283007,3634284031,3634284287,3634285823,3634286079,3634287103,3634287359,3634288127,3634288383,3634288639,3634289407,3634289663,3634290431,3634290687,3634505727,3634507775,3634511871,3634515967,3634546943,3634547199,3634552831,3634556927,3634741247,3634749439,3634825471,3634825727,3634830079,3634830335,3634832383,3634832639,3634833919,3634834175,3634835455,3634835711,3634841343,3634841599,3634844159,3634844415,3634846207,3634846463,3634849279,3634849535,3634880511,3634888703,3634913279,3634921471,3634925567,3634929663,3634951935,3634952191,3634979327,3634979839,3634991359,3634991615,3634993151,3634993407,3635015679,3635015935,3635017471,3635017727,3635047423,3635048447,3635048703,3635048959,3635049215,3635049471,3635049983,3635050495,3635051263,3635051775,3635052031,3635052287,3635109887,3635113983,3635118079,3635142655,3635146751,3635159039,3635163135,3635167231,3635167487,3635167743,3635167999,3635168255,3635168511,3635168767,3635169023,3635169535,3635169791,3635170047,3635170303,3635170559,3635170815,3635171071,3635171327,3635185663,3635185919,3635234815,3635235839,3635236351,3635236863,3635237375,3635237887,3635238143,3635238655,3635238911,3635239423,3635240959,3635241983,3635242751,3635243007,3635243519,3635243775,3635244031,3635244287,3635244543,3635244799,3635245055,3635247615,3635248127,3635298303,3635322879,3635421183,3635421439,3635423231,3635424511,3635426559,3635426815,3635428607,3635428863,3635429119,3635429375,3635466239,3635468287,3635470335,3635511551,3635511807,3635512575,3635512831,3635527679,3635527935,3635528959,3635529215,3635529983,3635530751,3635531007,3635531263,3635670015,3635670271,3635691519,3635695615,3635699711,3635701759,3635702015,3635704063,3635704319,3635704831,3635705855,3635709951,3635710463,3635732479,3635736575,3635740671,3635740927,3635741439,3635741695,3635741951,3635745535,3635746047,3635748095,3635748351,3635752447,3635752703,3635765759,3635768575,3635771391,3635771647,3635771903,3635772415,3635772671,3635772927,3635773951,3635774207,3635781119,3635781631,3635783167,3635799551,3635800063,3635804159,3635804671,3635806207,3635871743,3635879935,3635892223,3635896319,3635897343,3635897855,3635898879,3635899391,3635902463,3635902719,3635903743,3635903999,3635904511,3635912703,3635924991,3635929087,3635961855,3635963903,3635964415,3635965951,3635966975,3635967999,3635970047,3636011263,3636011519,3636013055,3636013311,3636017407,3636017663,3636017919,3636018175,3636019199,3636027391,3636027647,3636028159,3636028415,3636028671,3636028927,3636029951,3636030463,3636031487,3636031743,3636032767,3636033279,3636034559,3636034815,3636035071,3636035327,3636035583,3636064255,3636068351,3636150271,3636150527,3636150783,3636156415,3636156927,3636159743,3636159999,3636162559,3636163583,3636164863,3636165119,3636165631,3636166399,3636166655,3636265215,3636265471,3636267007,3636267263,3636268799,3636269055,3636269823,3636270079,3636278271,3636278783,3636279039,3636279551,3636396031,3636461567,3636609023,3636613119,3636618239,3636618495,3636618751,3636619007,3636621055,3636621311,3636625407,3636626431,3636626943,3636627199,3636627455,3636628479,3636628991,3636812799,3636813311,3636822015,3636854783,3636887551,3636895743,3637008639,3637008895,3637033983,3637034239,3637034495,3637034751,3637035007,3637075199,3637075455,3637075967,3637080063,3637175807,3637176063,3637180671,3637180927,3637186303,3637186559,3637327871,3637329919,3637342719,3637342975,3637346303,3637350399,3637354495,3637355519,3637356543,3637358591,3637362687,3637510143,3637641215,3637665791,3637669887,3637706751,3637739519,3637757183,3637757439,3637758975,3637762559,3637762815,3637763071,3637764095,3637765887,3637766143,3637766399,3637766655,3637768191,3637821439,3637829631,3637870591,3637886975,3638165503,3638181887,3638221055,3638221311,3638222079,3638222335,3638223359,3638223615,3638225663,3638225919,3638247423,3638247679,3638248703,3638249215,3638304767,3638312959,3638370303,3638386687,3638403071,3638403327,3638403583,3638419455,3638419967,3638421247,3638421759,3638423039,3638423295,3638477823,3638478335,3638478847,3638480127,3638482687,3638482943,3638502911,3638503423,3638509567,3638534143,3638609407,3638609919,3638665215,3638665471,3638665727,3638665983,3638666239,3638666495,3638667007,3638667263,3638667519,3638667775,3638668031,3638668287,3638668543,3638697983,3638706175,3638710015,3638710271,3638745599,3638746111,3638749183,3638749439,3638753279,3638754303,3638811391,3638811647,3638811903,3638812159,3638812415,3638874111,3638878207,3638954495,3638955007,3638956287,3638956543,3638956799,3638957055,3638984703,3638992895,3638996991,3639001087,3639083007,3639148543,3639222271,3639230463,3639246847,3639248127,3639248895,3639249151,3639255039,3639259135,3639261183,3639263231,3639279615,3639283711,3639334911,3639336959,3639390207,3639394303,3639484415,3639492607,3639500799,3639508991,3639525887,3639526399,3639527423,3639529471,3639533567,3639537663,3639552767,3639553023,3639558143,3639566335,3639567359,3639567615,3639568639,3639568895,3639593983,3639595007,3639607295,3639611391,3639639039,3639640063,3639664639,3639668735,3639672831,3639681023,3639701503,3639705599,3639713791,3639730175,3639734271,3639737599,3639737855,3639902207,3639918335,3639918591,3639934975,3639955455,3639955711,3639969023,3639969279,3639970815,3639971071,3639980031,3639980543,3640000511,3640001279,3640002559,3640002815,3640003327,3640003583,3640003839,3640004095,3640004607,3640004863,3640005119,3640006143,3640006399,3640006655,3640006911,3640007423,3640007679,3640008447,3640008703,3640008959,3640009471,3640009727,3640011007,3640011263,3640011519,3640011775,3640012031,3640012287,3640012799,3640013055,3640013823,3640014079,3640014847,3640015103,3640015359,3640020991,3640022783,3640023039,3640023551,3640023807,3640024831,3640025087,3640025855,3640026111,3640028927,3640029183,3640030207,3640030463,3640032255,3640032511,3640032767,3640057855,3640066047,3640082431,3640083455,3640084223,3640085503,3640085759,3640086527,3640090623,3640091135,3640091391,3640091647,3640093439,3640093695,3640093951,3640094207,3640094463,3640094719,3640095231,3640096767,3640097023,3640097535,3640097791,3640098815,3640115199,3640123391,3640125439,3640126719,3640127231,3640130559,3640131071,3640131327,3640131583,3640197119,3640201215,3640202239,3640205311,3640209407,3640213503,3640264703,3640266751,3640287231,3640287743,3640287999,3640288255,3640289279,3640291327,3640312319,3640312575,3640318207,3640318975,3640324095,3640325119,3640336383,3640340479,3640345087,3640345343,3640345599,3640345855,3640346879,3640347135,3640347391,3640347647,3640360959,3640369151,3640410111,3640418303,3640430591,3640432639,3640438783,3640439295,3640439551,3640442879,3640446975,3640449023,3640450047,3640451071,3640453119,3640455167,3640557567,3640582143,3640647679,3640651519,3640655871,3641180159,3641188351,3641192447,3641196543,3641200639,3641204735,3641205759,3641206015,3641206271,3641206527,3641206783,3641208831,3641209855,3641210111,3641210367,3641210623,3641210879,3641211903,3641212927,3641221119,3641229311,3641237503,3641241599,3641245695,3641246719,3641247743,3641249791,3641250815,3641251839,3641253887,3641262079,3641266175,3641270271,3641278463,3641282559,3641286655,3641294847,3641298943,3641303039,3641307135,3641308671,3641308927,3641310463,3641310719,3641311231,3641315327,3641319423,3641323519,3641331711,3641335807,3641343999,3641353983,3641354239,3641355775,3641356031,3641360383,3641368575,3641368831,3641369087,3641369343,3641369855,3641370623,3641372671,3641376767,3641380863,3641384959,3641389055,3641393151,3641397247,3641401343,3641409535,3641413631,3641417727,3641421311,3641421823,3641425919,3641430015,3641434111,3641442303,3641442815,3641443583,3641444351,3641445375,3641445887,3641446399,3641450495,3641454591,3641458687,3641462783,3641466879,3641470975,3641475071,3641479167,3641483263,3641491455,3641493503,3641494015,3641494527,3641495039,3641495551,3641496063,3641498111,3641498367,3641499647,3641503743,3641507839,3641516031,3641520127,3641524223,3641528319,3641532415,3641532927,3641533183,3641533439,3641535743,3641535999,3641536511,3641540607,3641548799,3641552895,3641556991,3641561087,3641565183,3641573375,3641577471,3641581567,3641585663,3641589759,3641593855,3641594879,3641595135,3641597951,3641602047,3641606143,3641610239,3641618431,3641622527,3641626623,3641630719,3641634815,3641638911,3641643007,3641647103,3641650431,3641650687,3641651199,3641655295,3641659391,3641663487,3641667583,3641668607,3641670655,3641670911,3641671167,3641671423,3641671679,3641679871,3641681919,3641683967,3641688063,3641692159,3641696255,3641700351,3641704447,3641708543,3641712639,3641716735,3641720831,3641729023,3641733119,3641737215,3641741311,3641745407,3641749503,3641753599,3641757695,3641761791,3641765887,3641769983,3641774079,3641778175,3641782271,3641786367,3641790463,3641794559,3641798655,3641802751,3641806847,3641810943,3641819135,3641823231,3641827327,3641835519,3641839615,3641843711,3641847807,3641848831,3641849855,3641850879,3641851903,3641856255,3641856511,3641856767,3641857023,3641857279,3641857535,3641858047,3641858303,3641858559,3641858815,3641859071,3641859327,3641859583,3641859839,3641860095,3641868287,3641876479,3641880575,3641884671,3641888767,3641889791,3641890815,3641891839,3641892863,3641896959,3641901055,3641901311,3641901567,3641901823,3641902079,3641902335,3641903615,3641903871,3641904383,3641904639,3641905151,3641909247,3641913343,3641917439,3641925631,3641933823,3641937919,3641942015,3641950207,3641954303,3641958399,3641962495,3641966591,3641970687,3641978879,3641980927,3641981183,3641981439,3641981695,3641981951,3641982719,3641982975,3641991167,3641995263,3641999359,3642003455,3642007551,3642015743,3642019839,3642023935,3642028031,3642029055,3642030079,3642031103,3642031359,3642031615,3642031871,3642032127,3642036223,3642040319,3642041087,3642041343,3642048511,3642049535,3642050559,3642051583,3642052607,3642056703,3642060799,3642064895,3642065151,3642065407,3642065663,3642065919,3642068991,3642073087,3642074623,3642074879,3642077183,3642081279,3642085375,3642089471,3642093567,3642097663,3642101759,3642105855,3642109951,3642114047,3642118143,3642122239,3642126335,3642130431,3642134527,3642138623,3642142719,3642146815,3642150911,3642163199,3642167295,3642171391,3642175487,3642179583,3642187775,3642191871,3642195967,3642201343,3642201599,3642204159,3642208255,3642212351,3642216447,3642220543,3642224639,3642228735,3642232831,3642236927,3642245119,3642249215,3642253311,3642257407,3642261503,3642265599,3642269695,3642273791,3642277887,3642290175,3642294271,3642295039,3642295295,3642297343,3642297599,3642298367,3642302463,3642306559,3642310655,3642314751,3642316543,3642316799,3642317567,3642317823,3642318591,3642318847,3642322943,3642327039,3642331135,3642335231,3642339327,3642343423,3642347519,3642355711,3642359807,3642367999,3642376191,3642380287,3642384383,3642392575,3642394623,3642396671,3642404863,3642405887,3642406911,3642407935,3642408447,3642408703,3642408959,3642413055,3642415103,3642415359,3642415615,3642415871,3642416127,3642416383,3642416639,3642416895,3642417151,3642421247,3642425343,3642429439,3642433535,3642435583,3642436607,3642437119,3642437631,3642441727,3642449919,3642454015,3642458111,3642462207,3642466303,3642467327,3642467839,3642474495,3642478591,3642482687,3642486783,3642490879,3642494975,3642497023,3642499071,3642499839,3642500095,3642501119,3642503167,3642507263,3642509311,3642511359,3642515455,3642519551,3642523647,3642524415,3642524671,3642524927,3642525183,3642525439,3642525695,3642525951,3642526207,3642526463,3642526719,3642526975,3642527231,3642527487,3642527743,3642531839,3642532607,3642532863,3642535935,3642540031,3642544127,3642552319,3642553343,3642553599,3642553855,3642554111,3642554879,3642555135,3642555391,3642555647,3642555903,3642556415,3642560511,3642564607,3642568703,3642572799,3642576895,3642580991,3642585087,3642589183,3642593279,3642597375,3642601471,3642605567,3642606591,3642609663,3642613759,3642614271,3642615551,3642615807,3642616575,3642616831,3642617599,3642617855,3642621951,3642622975,3642625023,3642630143,3642634239,3642638335,3642642431,3642643455,3642644479,3642644735,3642644991,3642645503,3642645759,3642646015,3642646271,3642646527,3642650623,3642654719,3642662911,3642667007,3642671103,3642675199,3642679295,3642683391,3642687487,3642691071,3642691327,3642691583,3642695679,3642699775,3642703871,3642707967,3642711039,3642711551,3642712063,3642716159,3642720255,3642728447,3642736639,3642740735,3642744831,3642753023,3643801599,3644063743,3644325887,3644588031,3644653567,3644655615,3644656639,3644657663,3644659711,3644669951,3644678143,3644680191,3644682239,3644684287,3644686335,3644690431,3644694527,3644698623,3644702719,3644706815,3644708863,3644710911,3644711935,3644712959,3644713983,3644715007,3644715263,3644715519,3644716031,3644717055,3644717567,3644718079,3644718335,3644718591,3644718847,3644719103,3644809215,3644816639,3644817407,3644850175,3644854271,3644858367,3644862463,3644866559,3644871167,3644871423,3644874751,3644878847,3644879103,3644879359,3644882687,3644882943,3644888063,3644888831,3644889087,3644890111,3644891135,3644895231,3644899327,3644903423,3644907519,3644911615,3644915711,3644919807,3644923903,3644924159,3644924415,3644924927,3644925183,3644925439,3644925695,3644925951,3644926207,3644926719,3644927231,3644927487,3644927999,3644932095,3644936191,3644940287,3644948479,3644948735,3644948991,3644949247,3644949503,3644950527,3644950783,3644951039,3644951551,3644951807,3644952063,3644952319,3644952575,3644960767,3644964863,3644968959,3644973055,3644977151,3644981247,3644983807,3644984319,3644985343,3644989439,3644997631,3645005823,3645009919,3645014015,3645018111,3645022207,3645030143,3645030399,3645038591,3645046783,3645050879,3645054975,3645059071,3645064191,3645065215,3645065727,3645066239,3645066751,3645067263,3645071359,3645075455,3645079551,3645083647,3645087743,3645091839,3645095935,3645104127,3645112319,3645116415,3645118463,3645119231,3645119487,3645120511,3645124607,3645128703,3645132799,3645136895,3645145087,3645149183,3645161471,3645165567,3645169663,3645173759,3645177855,3645181951,3645182207,3645183231,3645183487,3645184511,3645184767,3645185791,3645186047,3645190143,3645194239,3645202431,3645206527,3645208831,3645209087,3645209855,3645210623,3645214719,3645218815,3645222911,3645227007,3645235199,3645243391,3645247487,3645251583,3645255679,3645259775,3645263871,3645267967,3645276159,3645280255,3645284351,3645288447,3645291007,3645291263,3645292543,3645296639,3645300223,3645300479,3645300735,3645301759,3645302783,3645303807,3645304831,3645308927,3645313023,3645317119,3645321215,3645325311,3645329407,3645333503,3645337599,3645337855,3645338367,3645338623,3645339903,3645340159,3645340671,3645341695,3645345791,3645349887,3645353983,3645358079,3645360127,3645362175,3645364223,3645366271,3645370367,3645374463,3645377535,3645378559,3645382655,3645386751,3645390847,3645399039,3645403135,3645407231,3645411327,3645415423,3645423615,3645427455,3645427711,3645431807,3645435903,3645439999,3645444095,3645448191,3645450495,3645450751,3645454335,3645456383,3645460479,3645464575,3645468671,3645472767,3645476863,3645480959,3645485055,3645489151,3645493247,3645501439,3645505535,3645507583,3645509631,3645509887,3645510399,3645510655,3645511679,3645513727,3645517823,3645521919,3645526015,3645530111,3645534207,3645538303,3645546495,3645550591,3645558783,3645562879,3645563135,3645564671,3645564927,3645565183,3645565439,3645565695,3645566975,3645571071,3645575167,3645579263,3645583359,3645587455,3645595647,3645603839,3645612031,3645616127,3645620223,3645624319,3645628415,3645636607,3645640703,3645644799,3645648895,3645649151,3645649407,3645649663,3645650175,3645650687,3645652991,3645657087,3645661183,3645665279,3645669375,3645669631,3645669887,3645670655,3645670911,3645675263,3645675519,3645677567,3645681663,3645685759,3645689855,3645693951,3645698047,3645702143,3645706239,3645708287,3645710335,3645714431,3645718527,3645722623,3645726719,3645727999,3645728255,3645728511,3645728767,3645730815,3645734911,3645743103,3645747199,3645751295,3645755391,3645759487,3645763583,3645767679,3645771775,3645779967,3645784063,3645788159,3645788927,3645789183,3645790719,3645790975,3645791231,3645791999,3645792255,3645796351,3645800447,3645804543,3645804799,3645805311,3645807359,3645807615,3645807871,3645808639,3645812735,3645816831,3645825023,3645828351,3645828607,3645828863,3645829119,3645833215,3645841407,3645845503,3645849599,3645857791,3645865983,3645870079,3645871103,3645872127,3645874175,3645874431,3645874687,3645878271,3645882367,3645886463,3645890559,3645894655,3645894911,3645895167,3645896191,3645896447,3645898751,3646515967,3646516223,3646947327,3647209471,3647602687,3647658751,3647659007,3647665151,3647665407,3647733759,3647864831,3647905279,3647905791,3647919103,3647919359,3647919615,3647920127,3647935999,3647936255,3647964159,3647964415,3647964671,3647965183,3647965695,3647966207,3647967231,3647968255,3647969279,3647969791,3647970303,3647971327,3647973375,3647974399,3647976447,3647977471,3647978495,3647979007,3647979519,3647980543,3647981567,3647982591,3647983615,3647984639,3647985151,3647985663,3647987711,3647987967,3647988223,3647988735,3647988991,3647989503,3647990015,3647991807,3647992063,3647992319,3647992575,3647992831,3647993087,3647993343,3647993855,3647994367,3647994879,3647995903,3648008191,3648016383,3648020479,3648024575,3648028671,3648032767,3648036863,3648040959,3648041215,3648045055,3648049151,3648053247,3648057343,3648061439,3648068095,3648068607,3648069631,3648073727,3648073983,3648075263,3648075775,3648077823,3648078079,3648079359,3648080383,3648080639,3648080895,3648081407,3648081663,3648081919,3648082175,3648084991,3648086015,3648090111,3648094207,3648102399,3648106495,3648110591,3648114687,3648118783,3648122879,3648126975,3648135167,3648135423,3648135679,3648135935,3648136191,3648136447,3648136703,3648136959,3648137215,3648137471,3648137727,3648138239,3648138495,3648138751,3648139007,3648139263,3648143359,3648147455,3648151551,3648155647,3648159743,3648163839,3648167935,3648168191,3648169983,3648170239,3648170495,3648170751,3648172031,3648176127,3648178175,3648180223,3648184319,3648192511,3648196607,3648200703,3648208895,3648212991,3648217087,3648221183,3648225279,3648228607,3648228863,3648233471,3648237567,3648241663,3648245759,3648249855,3648253951,3648258047,3648266239,3648270335,3648274431,3648278527,3648282623,3648286719,3648290815,3648299007,3648303103,3648307199,3648311295,3648323583,3648327679,3648331775,3648339967,3648344063,3648348159,3648352255,3648356351,3648360447,3648360959,3648361471,3648361983,3648362239,3648362495,3648363519,3648363775,3648364543,3648368639,3648372735,3648376831,3648380927,3648385023,3648389119,3648393215,3648393727,3648393983,3648394239,3648395007,3648395519,3648395775,3648396287,3648397311,3648405503,3648413695,3648417791,3648418047,3648418303,3648419327,3648419583,3648420095,3648420351,3648420863,3648421119,3648421375,3648421631,3648421887,3648425983,3648430079,3648432895,3648433151,3648434175,3648438271,3648442367,3648446463,3648450559,3648454655,3648458751,3648462847,3648466943,3648471039,3648475135,3648479231,3648481023,3648483327,3648487423,3648487679,3648487935,3648488191,3648488703,3648488959,3648489215,3648489471,3648489727,3648489983,3648490239,3648490495,3648490751,3648491007,3648491263,3648491519,3648495615,3648499711,3648503807,3648511999,3648516095,3648518143,3648520191,3648782335,3649044479,3649110015,3649175551,3649241087,3649306623,3649372159,3649437695,3649470463,3649471487,3649472511,3649568767,3649634303,3649748991,3649749247,3649749503,3649749759,3649750271,3649750527,3649750783,3649751039,3649751295,3649751551,3649751807,3649752063,3649752575,3649752831,3649753087,3649753343,3649753599,3649753855,3649754111,3649754367,3649754623,3649754879,3649755135,3649755391,3649755647,3649755903,3649756159,3649756415,3649756671,3649756927,3649757183,3649757439,3649764351,3649764607,3649765119,3649765375,3649830911,3649835007,3649838079,3649839103,3649840127,3649840383,3649843455,3649845247,3649845759,3649847039,3649847295,3649849343,3649855487,3649855743,3649856511,3649856767,3649857023,3649857535,3649857791,3649858047,3649858559,3649858815,3649859071,3649859583,3649863679,3649896447,3649961983,3649978367,3649994751,3650002943,3650019327,3650027519,3650093055,3650097151,3650101247,3650105343,3650106367,3650106623,3650109439,3650113535,3650117631,3650119167,3650119423,3650119679,3650120703,3650121727,3650125823,3650129919,3650134015,3650138111,3650140159,3650142207,3650150399,3650158591,3650162687,3650166783,3650170879,3650174975,3650179071,3650183167,3650187263,3650195455,3650199551,3650203647,3650207743,3650211839,3650215935,3650216191,3650216447,3650216703,3650216959,3650217983,3650219007,3650219775,3650220031,3650224127,3650224383,3650224639,3650224895,3650225151,3650225407,3650225663,3650226175,3650226431,3650226687,3650227455,3650227711,3650227967,3650228223,3650228735,3650228991,3650229247,3650229503,3650229759,3650230527,3650231295,3650231551,3650231807,3650232063,3650232319,3650236415,3650238463,3650240511,3650244607,3650246399,3650246655,3650256895,3650265087,3650269183,3650269439,3650269695,3650269951,3650271231,3650272767,3650273023,3650273279,3650277375,3650281471,3650285567,3650289663,3650290687,3650291711,3650292735,3650293759,3650297855,3650301951,3650306047,3650314239,3650318335,3650320639,3650320895,3650321407,3650322431,3650330623,3650331903,3650332927,3650333695,3650333951,3650334719,3650335231,3650335743,3650336255,3650336767,3650338815,3650342911,3650347007,3650351103,3650355199,3650359295,3650363391,3650367487,3650371583,3650375679,3650379775,3650381823,3650387967,3650388991,3650390015,3650391039,3650391807,3650392063,3650396159,3650404351,3650412543,3650417663,3650418687,3650419711,3650420735,3650424831,3650428927,3650433023,3650433535,3650433791,3650434559,3650434815,3650437119,3650441215,3650445311,3650447359,3650449407,3650453503,3650457599,3650459647,3650459903,3650460159,3650460415,3650461695,3650465791,3650469887,3650478079,3650482175,3650486271,3650502655,3650504703,3650506751,3650508799,3650510847,3650519039,3650523135,3650527231,3650534911,3650535423,3650539519,3650543615,3650551807,3650555903,3650559999,3650564095,3650568191,3650572287,3650576127,3650576383,3650576639,3650580479,3650584575,3650588671,3650592767,3650600959,3650605055,3650609151,3650610431,3650610687,3650610943,3650611199,3650613247,3650617343,3650682879,3650748415,3650789375,3650789631,3650879487,3650883839,3650884095,3650892031,3650892287,3650892543,3650912255,3650926591,3650929663,3650931967,3650932223,3650945023,3651010559,3651076095,3651108863,3651141631,3651142143,3651142399,3651148031,3651148287,3651148799,3651149311,3651149823,3651150079,3651151103,3651151615,3651151871,3651152127,3651152639,3651152895,3651153919,3651159807,3651160063,3651163135,3651163391,3651164159,3651164415,3651165439,3651165695,3651166463,3651166719,3651167231,3651167487,3651167999,3651168255,3651169023,3651169791,3651170303,3651170815,3651171327,3651172095,3651172351,3651172863,3651173375,3651173887,3651174399,3651174911,3651175167,3651175679,3651178239,3651178495,3651179007,3651179519,3651180031,3651180543,3651181311,3651181567,3651182079,3651182335,3651188991,3651190015,3651190527,3651190783,3651191295,3651192319,3651192831,3651194111,3651194367,3651194623,3651194879,3651195135,3651195391,3651198719,3651198975,3651199231,3651199487,3651199743,3651200511,3651201023,3651201279,3651201535,3651201791,3651202047,3651202303,3651202815,3651203071,3651203327,3651204351,3651204607,3651206143,3651206655,3651207167,3651211263,3651211519,3651213823,3651214335,3651217407,3651217663,3651219455,3651219967,3651230463,3651230719,3651233535,3651233791,3651272703,3651338239,3651343871,3651344127,3651344383,3651344895,3651345151,3651345407,3651346175,3651350015,3651350271,3651353087,3651353343,3651356671,3651356927,3651357183,3651357439,3651360767,3651361023,3651361791,3651362303,3651362559,3651362815,3651366143,3651366399,3651366911,3651367167,3651367679,3651367935,3651374079,3651374335,3651375103,3651375359,3651376639,3651376895,3651403775,3651534847,3651600383,3651665919,3651670015,3651674111,3651682303,3651686399,3651690495,3651694591,3651695615,3651695871,3651696639,3651698687,3651702783,3651706879,3651710975,3651715071,3651719167,3651723263,3651724287,3651725055,3651725311,3651727359,3651729407,3651747839,3651751935,3651756031,3651764223,3651772415,3651776511,3651780607,3651783167,3651783423,3651784703,3651788799,3651792895,3651796991,3651805183,3651813375,3651821567,3651825663,3651829759,3651833855,3651837951,3651842047,3651846143,3651850239,3651854335,3651858431,3651862527,3651866623,3651870719,3651874815,3651878911,3651883007,3651887103,3651891199,3651895295,3651899391,3651899647,3651899903,3651900415,3651901439,3651903487,3651907583,3651911679,3651915775,3651919871,3651921919,3651923967,3651928063,3651932159,3651936255,3651944447,3651948543,3651952639,3651953151,3651953663,3651954175,3651960831,3651964927,3651969023,3651971071,3651971583,3651972351,3651973119,3651976959,3651977215,3651985407,3651997695,3652001791,3652005887,3652009983,3652014079,3652018175,3652020991,3652021247,3652022015,3652022271,3652026367,3652031743,3652031999,3652033791,3652034047,3652034559,3652046847,3652050943,3652051711,3652051967,3652053503,3652053759,3652055039,3652059135,3652063231,3652067327,3652071423,3652075519,3652083711,3652087807,3652095999,3652100095,3652107775,3652108287,3652116479,3652120575,3652124671,3652136959,3652141055,3652144127,3652144383,3652145151,3652149247,3652153343,3652157439,3652165631,3652173823,3652176895,3652177407,3652177919,3652182015,3652190207,3652288511,3652321279,3652386815,3652485119,3652501503,3652517887,3652550655,3652580095,3652580351,3652581887,3652582399,3652583423,3652583935,3652584191,3652601855,3652603903,3652633599,3652634623,3652635647,3652647679,3652647935,3652648959,3652714495,3653238783,3653369855,3653373951,3653378047,3653382143,3653386239,3653390335,3653394431,3653402623,3653403135,3653403647,3653404671,3653405183,3653405439,3653405695,3653406719,3653406975,3653407743,3653407999,3653408255,3653409023,3653409279,3653410047,3653410815,3653414911,3653419007,3653423103,3653427199,3653431295,3653435391,3653439487,3653443583,3653447679,3653451775,3653464063,3653468159,3653472255,3653472511,3653473279,3653474303,3653475327,3653476351,3653480447,3653484543,3653484799,3653485311,3653486591,3653487103,3653487871,3653488127,3653488639,3653492735,3653500927,3653505023,3653509119,3653513215,3653515263,3653517311,3653523199,3653523455,3653524735,3653525247,3653525503,3653526015,3653526271,3653526527,3653526783,3653527039,3653527295,3653527551,3653528063,3653528575,3653529599,3653533695,3653537791,3653541887,3653545983,3653550079,3653554175,3653558271,3653566463,3653570559,3653574655,3653578751,3653582847,3653586943,3653591039,3653591295,3653591551,3653592063,3653592319,3653592575,3653592831,3653593087,3653593343,3653593599,3653593855,3653594111,3653594879,3653595135,3653599231,3653601279,3653603327,3653607423,3653607935,3653608191,3653608447,3653609471,3653609983,3653610239,3653610495,3653611519,3653615615,3653619711,3653623807,3653636095,3653640191,3653648383,3653652479,3653656575,3653660671,3653664767,3653668863,3653672959,3653677055,3653677311,3653677567,3653678847,3653679103,3653679359,3653679615,3653679871,3653680127,3653680383,3653680639,3653680895,3653681151,3653685247,3653689343,3653693439,3653697535,3653705727,3653713919,3653718015,3653722111,3653730303,3653734399,3653738495,3653746687,3653750783,3653762815,3653763071,3654025215,3654061823,3654062079,3654287359,3654611967,3654612223,3654811647,3654942719,3655073791,3655335935,3656332543,3656332799,3656630271,3656630527,3657433087,3659407359,3659413503,3659415295,3659415551,3659530239,3659595775,3659612159,3659616255,3659628543,3659661311,3659792383,3659890687,3659907071,3660054527,3660578815,3661103103,3663884031,3663884287,3663986687,3663987711,3663987967,3663989247,3663989503,3663989759,3663990271,3663990527,3663990783,3663991295,3663991551,3663991807,3663992063,3663992319,3663992575,3663993599,3663996159,3663996415,3663996671,3663997183,3663997439,3663997695,3663997951,3663998207,3663998463,3663998975,3663999487,3663999743,3663999999,3664000767,3664001023,3664001279,3664001535,3664001791,3664002047,3664002303,3664002559,3664003327,3664003583,3664003839,3664004095,3664004351,3664004607,3664004863,3664005119,3664005887,3664006143,3664006399,3664006655,3664006911,3664007167,3664008191,3664008447,3664008703,3664008959,3664010239,3664052223,3664084991,3664117759,3664248831,3664642047,3664707583,3664773119,3666870271,3667918847,3668967423,3669491711,3669557247,3669590015,3669606399,3669614591,3669616639,3669618687,3669618943,3669619711,3669620735,3669622783,3669688319,3669753855,3669780735,3669780991,3669783039,3669783551,3669822719,3669822975,3669823743,3669823999,3669824255,3669824511,3669825535,3669825791,3669827071,3669827327,3669831679,3669831935,3669851647,3669851903,3670015999,3671064575,3671130111,3671195647,3671326719,3671392255,3671457791,3671588863,3672637439,3673161727,3673686015,3673751551,3673817087,3673882623,3673948159,3674210303,3678404607,3678535679,3678666751,3678928895,3678994431,3679027199,3679059967,3679158271,3679191039,3679453183,3679584255,3679649791,3679670783,3679671039,3679682559,3679715327,3679977471,3680108543,3680124927,3680125951,3680129023,3680133119,3680137215,3680141311,3680174079,3680206847,3680239615,3680403455,3680436223,3680501759,3682598911,3684696063,3688366079,3689938943,3690070015,3690463231,3690987519,3695181823,3697278975,3697585919,3697586175,3697606655,3697655807,3697672191,3697737727,3697803263,3698327551,3698589695,3699376127,3700424703,3700752383,3700817919,3700977663,3700978687,3700979711,3700981759,3701014527,3701080063,3701211135,3701252095,3701256191,3701258239,3701260287,3701293055,3701301247,3701305343,3701309439,3701374975,3701375999,3701377023,3701380095,3701381119,3701390335,3701391359,3701391615,3701391871,3701392383,3701392639,3701392895,3701393407,3701394431,3701395455,3701396479,3701397247,3701397503,3701398527,3701399551,3701400063,3701400319,3701400575,3701401599,3701402623,3701403647,3701404671,3701405695,3701406719,3701407487,3701407743,3701473279,3704619007,3705667583,3705929727,3706060799,3706126335,3706142719,3706159103,3706191871,3706208255,3706224639,3706225663,3706226687,3706231807,3706232831,3706233343,3706234367,3706237951,3706238975,3706244095,3706244863,3706245887,3706246143,3706256895,3706257151,3706257407,3706322943,3706388479,3706781695,3706847231,3706978303,3707109375,3707174911,3707207679,3707208703,3707209727,3707211775,3707215871,3707217919,3707219967,3707222015,3707224063,3707240447,3707568127,3707633663,3707699199,3707764735,3708600319,3708616703,3708813311,3715629055,3715653631,3715654143,3715654399,3715655679,3715657727,3715661823,3715665919,3715666175,3715670015,3715671039,3715672063,3715674111,3715678207,3715694591,3715710975,3715719167,3715727359,3715729151,3715729407,3715735551,3715741695,3715743743,3715760127,3715891199,3716153343,3716169727,3716171519,3716171775,3716172031,3716172287,3716173055,3716173311,3716173567,3716173823,3716174079,3716174335,3716175615,3716176895,3716178175,3716178943,3716179967,3716181759,3716182783,3716183295,3716183551,3716184063,3716184319,3716184575,3716184831,3716185087,3716186111,3716187647,3716187903,3716218111,3716218367,3716218623,3716218879,3716415487,3716431871,3716440063,3716444159,3716446207,3716464639,3716481023,3716489215,3716493311,3716497407,3716513791,3716530175,3716538367,3716542463,3716546559,3716653055,3716653311,3716676351,3716676607,3716677631,3716808703,3718840319,3718905855,3719036927,3719823359,3720347647,3720859647,3720863743,3723493375,3725590527,3730833407,3732602879,3732668415,3732733951,3732799487,3732832255,3732865023,3732930559,3733979135,3734503423,3734765567,3734896639,3735027711,3735289855,3735388159,3735404543,3735420927,3735551999,3739222015,3739570175,3739572223,3739574271,3739680767,3739697151,3739746303,3740270591,3740925951,3741024255,3741057023,3741319167,3742367743,3742629887,3742760959,3742892031,3742957567,3742973951,3742982143,3742986239,3742988287,3742990335,3743006719,3743014911,3743016959,3743019007,3743022079,3743023103,3743027199,3743028223,3743029247,3743030271,3743035391,3743039487,3743055871,3743088639,3743096831,3743105023,3743106047,3743109119,3743113215,3743115263,3743117311,3743117567,3743117823,3743118079,3743118335,3743119359,3743120383,3743121407,3743123711,3743124223,3743124479,3743124735,3743125503,3743129599,3743129855,3743130111,3743130367,3743130623,3743130879,3743131135,3743131391,3743133695,3743134719,3743135743,3743136767,3743137791,3743154175,3743186943,3743219711,3743252479,3743260671,3743262719,3743263743,3743264767,3743268863,3743272959,3743273983,3743275007,3743276031,3743277055,3743281151,3743282175,3743283199,3743284223,3743284479,3743284991,3743285247,3743416319,3745513471,3749052415,3749053439,3749054207,3749067007,3749067263,3749117951,3749118207,3749119743,3749119999,3749122303,3749122559,3749123071,3749123583,3749131263,3749131519,3749134079,3749134335,3749135103,3749135359,3749138431,3749139199,3749169151,3749169407,3749182207,3749182463,3749183231,3749183487,3749183999,3749184255,3749184511,3749216255,3749217791,3749218047,3749225983,3749226239,3749249023,3749281791,3749314559,3749380095,3749412863,3749838847,3749839871,3749840895,3749841407,3749841919,3749842943,3749843967,3749844479,3749844991,3749846015,3749847039,3749855231,3749969919,3750232063,3750756351,3752067071,3752132607,3752133631,3752133887,3752134143,3752134399,3752134655,3752134911,3752136703,3752137727,3752138751,3752140799,3752148991,3752153087,3752157183,3752165375,3752198143,3752329215,3752853503,3753902079,3754033151,3754164223,3754229759,3754295295,3754426367,3754491903,3754688511,3754950655,3755474943,3755737087,3755868159,3755933695,3755966463,3755974655,3755976703,3755978751,3755986943,3755988991,3755990015,3755991039,3755999231,3756007423,3757047807,3757834239,3757850623,3757858815,3757862911,3757867007,3757875199,3757879295,3757891583,3757899775,3757965311,3758063615,3758079999,3758088191,3758090239,3758091263,3758092287,3758093311,3758094335,3758095359,3758095871,3758096127,3758096383,4294967295nicotine-plus-3.3.4/pynicotine/external/tinytag.py000066400000000000000000002133361461625273200223660ustar00rootroot00000000000000# tinytag - an audio meta info reader # Copyright (c) 2014-2023 Tom Wallroth # Copyright (c) 2021-2023 Mat (mathiascode) # # Sources on GitHub: # http://github.com/devsnd/tinytag/ # MIT License # Copyright (c) 2014-2023 Tom Wallroth, Mat (mathiascode) # Copyright (c) 2020-2023 Nicotine+ Contributors # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. from __future__ import division, print_function from collections import OrderedDict, defaultdict try: from collections.abc import MutableMapping except ImportError: from collections import MutableMapping from functools import reduce from io import BytesIO import base64 import codecs import io import json import operator import os import re import struct import sys DEBUG = os.environ.get('DEBUG', False) # some of the parsers can print debug info class TinyTagException(LookupError): # inherit LookupError for backwards compat pass def _read(fh, nbytes): # helper function to check if we haven't reached EOF b = fh.read(nbytes) if len(b) < nbytes: raise TinyTagException('Unexpected end of file') return b def stderr(*args): sys.stderr.write('%s\n' % ' '.join(repr(arg) for arg in args)) sys.stderr.flush() def _bytes_to_int_le(b): fmt = {1: '